@remotion/animated-emoji 4.0.187
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/.eslintrc +3 -0
- package/.turbo/turbo-build.log +4 -0
- package/LICENSE.md +49 -0
- package/README.md +18 -0
- package/bundle.ts +18 -0
- package/dist/cjs/AnimatedEmoji.d.ts +9 -0
- package/dist/cjs/AnimatedEmoji.js +17 -0
- package/dist/cjs/calculate-emoji-src.d.ts +9 -0
- package/dist/cjs/calculate-emoji-src.js +9 -0
- package/dist/cjs/emoji-data.d.ts +9 -0
- package/dist/cjs/emoji-data.js +2930 -0
- package/dist/cjs/get-available-emoji.d.ts +9 -0
- package/dist/cjs/get-available-emoji.js +8 -0
- package/dist/cjs/index.d.ts +3 -0
- package/dist/cjs/index.js +7 -0
- package/dist/cjs/is-webkit.d.ts +1 -0
- package/dist/cjs/is-webkit.js +12 -0
- package/dist/esm/index.mjs +2985 -0
- package/dist/tsconfig.tsbuildinfo +1 -0
- package/package.json +44 -0
- package/src/AnimatedEmoji.tsx +38 -0
- package/src/calculate-emoji-src.ts +21 -0
- package/src/emoji-data.ts +3346 -0
- package/src/get-available-emoji.ts +7 -0
- package/src/index.ts +3 -0
- package/src/is-webkit.ts +12 -0
- package/tsconfig.json +11 -0
|
@@ -0,0 +1,2985 @@
|
|
|
1
|
+
// src/AnimatedEmoji.tsx
|
|
2
|
+
import {Loop, OffthreadVideo, useVideoConfig} from "remotion";
|
|
3
|
+
|
|
4
|
+
// src/calculate-emoji-src.ts
|
|
5
|
+
import {staticFile} from "remotion";
|
|
6
|
+
var defaultCalculateEmojiSrc = ({
|
|
7
|
+
emoji,
|
|
8
|
+
scale,
|
|
9
|
+
format
|
|
10
|
+
}) => {
|
|
11
|
+
const extension = format === "hevc" ? "mp4" : "webm";
|
|
12
|
+
return staticFile(`${emoji}-${scale}x.${extension}`);
|
|
13
|
+
};
|
|
14
|
+
|
|
15
|
+
// src/emoji-data.ts
|
|
16
|
+
var emojis = [
|
|
17
|
+
{
|
|
18
|
+
name: "smile",
|
|
19
|
+
categories: ["Smileys and emotions"],
|
|
20
|
+
tags: [":smile:"],
|
|
21
|
+
durationInSeconds: 2.3333333333333335,
|
|
22
|
+
codepoint: "1f600"
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
name: "smile-with-big-eyes",
|
|
26
|
+
categories: ["Smileys and emotions"],
|
|
27
|
+
tags: [":smile-with-big-eyes:"],
|
|
28
|
+
durationInSeconds: 2.6666666666666665,
|
|
29
|
+
codepoint: "1f603"
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
name: "grin",
|
|
33
|
+
categories: ["Smileys and emotions"],
|
|
34
|
+
tags: [":grin:"],
|
|
35
|
+
durationInSeconds: 2.3333333333333335,
|
|
36
|
+
codepoint: "1f604"
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
name: "grinning",
|
|
40
|
+
categories: ["Smileys and emotions"],
|
|
41
|
+
tags: [":grinning:"],
|
|
42
|
+
durationInSeconds: 2.716666666666667,
|
|
43
|
+
codepoint: "1f601"
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
name: "laughing",
|
|
47
|
+
categories: ["Smileys and emotions"],
|
|
48
|
+
tags: [":laughing:"],
|
|
49
|
+
durationInSeconds: 3.0833333333333335,
|
|
50
|
+
codepoint: "1f606"
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
name: "grin-sweat",
|
|
54
|
+
categories: ["Smileys and emotions"],
|
|
55
|
+
tags: [":grin-sweat:"],
|
|
56
|
+
durationInSeconds: 2,
|
|
57
|
+
codepoint: "1f605"
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
name: "joy",
|
|
61
|
+
categories: ["Smileys and emotions"],
|
|
62
|
+
tags: [":joy:"],
|
|
63
|
+
durationInSeconds: 1.9666666666666666,
|
|
64
|
+
codepoint: "1f602"
|
|
65
|
+
},
|
|
66
|
+
{
|
|
67
|
+
name: "rofl",
|
|
68
|
+
categories: ["Smileys and emotions"],
|
|
69
|
+
tags: [":rofl:"],
|
|
70
|
+
durationInSeconds: 1,
|
|
71
|
+
codepoint: "1f923"
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
name: "loudly-crying",
|
|
75
|
+
categories: ["Smileys and emotions"],
|
|
76
|
+
tags: [":loudly-crying:"],
|
|
77
|
+
durationInSeconds: 2,
|
|
78
|
+
codepoint: "1f62d"
|
|
79
|
+
},
|
|
80
|
+
{
|
|
81
|
+
name: "wink",
|
|
82
|
+
categories: ["Smileys and emotions"],
|
|
83
|
+
tags: [":wink:"],
|
|
84
|
+
durationInSeconds: 2.5,
|
|
85
|
+
codepoint: "1f609"
|
|
86
|
+
},
|
|
87
|
+
{
|
|
88
|
+
name: "kissing",
|
|
89
|
+
categories: ["Smileys and emotions"],
|
|
90
|
+
tags: [":kissing:"],
|
|
91
|
+
durationInSeconds: 2.8666666666666667,
|
|
92
|
+
codepoint: "1f617"
|
|
93
|
+
},
|
|
94
|
+
{
|
|
95
|
+
name: "kissing-smiling-eyes",
|
|
96
|
+
categories: ["Smileys and emotions"],
|
|
97
|
+
tags: [":kissing-smiling-eyes:"],
|
|
98
|
+
durationInSeconds: 3,
|
|
99
|
+
codepoint: "1f619"
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
name: "kissing-closed-eyes",
|
|
103
|
+
categories: ["Smileys and emotions"],
|
|
104
|
+
tags: [":kissing-closed-eyes:"],
|
|
105
|
+
durationInSeconds: 1.4666666666666666,
|
|
106
|
+
codepoint: "1f61a"
|
|
107
|
+
},
|
|
108
|
+
{
|
|
109
|
+
name: "kissing-heart",
|
|
110
|
+
categories: ["Smileys and emotions"],
|
|
111
|
+
tags: [":kissing-heart:"],
|
|
112
|
+
durationInSeconds: 1.75,
|
|
113
|
+
codepoint: "1f618"
|
|
114
|
+
},
|
|
115
|
+
{
|
|
116
|
+
name: "heart-face",
|
|
117
|
+
categories: ["Smileys and emotions"],
|
|
118
|
+
tags: [":heart-face:", ":3-hearts:"],
|
|
119
|
+
durationInSeconds: 1.6333333333333333,
|
|
120
|
+
codepoint: "1f970"
|
|
121
|
+
},
|
|
122
|
+
{
|
|
123
|
+
name: "heart-eyes",
|
|
124
|
+
categories: ["Smileys and emotions"],
|
|
125
|
+
tags: [":heart-eyes:"],
|
|
126
|
+
durationInSeconds: 1.7166666666666666,
|
|
127
|
+
codepoint: "1f60d"
|
|
128
|
+
},
|
|
129
|
+
{
|
|
130
|
+
name: "star-struck",
|
|
131
|
+
categories: ["Smileys and emotions"],
|
|
132
|
+
tags: [":star-struck:"],
|
|
133
|
+
durationInSeconds: 2,
|
|
134
|
+
codepoint: "1f929"
|
|
135
|
+
},
|
|
136
|
+
{
|
|
137
|
+
name: "partying-face",
|
|
138
|
+
categories: ["Smileys and emotions"],
|
|
139
|
+
tags: [":partying-face:"],
|
|
140
|
+
durationInSeconds: 1.8,
|
|
141
|
+
codepoint: "1f973"
|
|
142
|
+
},
|
|
143
|
+
{
|
|
144
|
+
name: "melting",
|
|
145
|
+
categories: ["Smileys and emotions"],
|
|
146
|
+
tags: [":melting:"],
|
|
147
|
+
durationInSeconds: 3.25,
|
|
148
|
+
codepoint: "1fae0"
|
|
149
|
+
},
|
|
150
|
+
{
|
|
151
|
+
name: "upside-down-face",
|
|
152
|
+
categories: ["Smileys and emotions"],
|
|
153
|
+
tags: [":upside-down-face:"],
|
|
154
|
+
durationInSeconds: 1.75,
|
|
155
|
+
codepoint: "1f643"
|
|
156
|
+
},
|
|
157
|
+
{
|
|
158
|
+
name: "slightly-happy",
|
|
159
|
+
categories: ["Smileys and emotions"],
|
|
160
|
+
tags: [":slightly-happy:"],
|
|
161
|
+
durationInSeconds: 3.3333333333333335,
|
|
162
|
+
codepoint: "1f642"
|
|
163
|
+
},
|
|
164
|
+
{
|
|
165
|
+
name: "happy-cry",
|
|
166
|
+
categories: ["Smileys and emotions"],
|
|
167
|
+
tags: [":happy-cry:"],
|
|
168
|
+
durationInSeconds: 3,
|
|
169
|
+
codepoint: "1f972"
|
|
170
|
+
},
|
|
171
|
+
{
|
|
172
|
+
name: "holding-back-tears",
|
|
173
|
+
categories: ["Smileys and emotions"],
|
|
174
|
+
tags: [":holding-back-tears:"],
|
|
175
|
+
durationInSeconds: 3.8666666666666667,
|
|
176
|
+
codepoint: "1f979"
|
|
177
|
+
},
|
|
178
|
+
{
|
|
179
|
+
name: "blush",
|
|
180
|
+
categories: ["Smileys and emotions"],
|
|
181
|
+
tags: [":blush:"],
|
|
182
|
+
durationInSeconds: 2.65,
|
|
183
|
+
codepoint: "1f60a"
|
|
184
|
+
},
|
|
185
|
+
{
|
|
186
|
+
name: "warm-smile",
|
|
187
|
+
categories: ["Smileys and emotions"],
|
|
188
|
+
tags: [":warm-smile:"],
|
|
189
|
+
durationInSeconds: 2.2,
|
|
190
|
+
codepoint: "263a_fe0f"
|
|
191
|
+
},
|
|
192
|
+
{
|
|
193
|
+
name: "relieved",
|
|
194
|
+
categories: ["Smileys and emotions"],
|
|
195
|
+
tags: [":relieved:"],
|
|
196
|
+
durationInSeconds: 2.9,
|
|
197
|
+
codepoint: "1f60c"
|
|
198
|
+
},
|
|
199
|
+
{
|
|
200
|
+
name: "smirk",
|
|
201
|
+
categories: ["Smileys and emotions"],
|
|
202
|
+
tags: [":smirk:"],
|
|
203
|
+
durationInSeconds: 2,
|
|
204
|
+
codepoint: "1f60f"
|
|
205
|
+
},
|
|
206
|
+
{
|
|
207
|
+
name: "drool",
|
|
208
|
+
categories: ["Smileys and emotions"],
|
|
209
|
+
tags: [":drool:"],
|
|
210
|
+
durationInSeconds: 2.1666666666666665,
|
|
211
|
+
codepoint: "1f924"
|
|
212
|
+
},
|
|
213
|
+
{
|
|
214
|
+
name: "yum",
|
|
215
|
+
categories: ["Smileys and emotions"],
|
|
216
|
+
tags: [":yum:"],
|
|
217
|
+
durationInSeconds: 1.4166666666666667,
|
|
218
|
+
codepoint: "1f60b"
|
|
219
|
+
},
|
|
220
|
+
{
|
|
221
|
+
name: "stuck-out-tongue",
|
|
222
|
+
categories: ["Smileys and emotions"],
|
|
223
|
+
tags: [":stuck-out-tongue:"],
|
|
224
|
+
durationInSeconds: 2,
|
|
225
|
+
codepoint: "1f61b"
|
|
226
|
+
},
|
|
227
|
+
{
|
|
228
|
+
name: "squinting-tongue",
|
|
229
|
+
categories: ["Smileys and emotions"],
|
|
230
|
+
tags: [":squinting-tongue:"],
|
|
231
|
+
durationInSeconds: 1.6666666666666667,
|
|
232
|
+
codepoint: "1f61d"
|
|
233
|
+
},
|
|
234
|
+
{
|
|
235
|
+
name: "winky-tongue",
|
|
236
|
+
categories: ["Smileys and emotions"],
|
|
237
|
+
tags: [":winky-tongue:"],
|
|
238
|
+
durationInSeconds: 1.5833333333333333,
|
|
239
|
+
codepoint: "1f61c"
|
|
240
|
+
},
|
|
241
|
+
{
|
|
242
|
+
name: "zany-face",
|
|
243
|
+
categories: ["Smileys and emotions"],
|
|
244
|
+
tags: [":zany-face:"],
|
|
245
|
+
durationInSeconds: 1.8333333333333333,
|
|
246
|
+
codepoint: "1f92a"
|
|
247
|
+
},
|
|
248
|
+
{
|
|
249
|
+
name: "woozy",
|
|
250
|
+
categories: ["Smileys and emotions"],
|
|
251
|
+
tags: [":woozy:"],
|
|
252
|
+
durationInSeconds: 1.8,
|
|
253
|
+
codepoint: "1f974"
|
|
254
|
+
},
|
|
255
|
+
{
|
|
256
|
+
name: "pensive",
|
|
257
|
+
categories: ["Smileys and emotions"],
|
|
258
|
+
tags: [":pensive:"],
|
|
259
|
+
durationInSeconds: 2.6333333333333333,
|
|
260
|
+
codepoint: "1f614"
|
|
261
|
+
},
|
|
262
|
+
{
|
|
263
|
+
name: "pleading",
|
|
264
|
+
categories: ["Smileys and emotions"],
|
|
265
|
+
tags: [":pleading:"],
|
|
266
|
+
durationInSeconds: 3.433333333333333,
|
|
267
|
+
codepoint: "1f97a"
|
|
268
|
+
},
|
|
269
|
+
{
|
|
270
|
+
name: "grimacing",
|
|
271
|
+
categories: ["Smileys and emotions"],
|
|
272
|
+
tags: [":grimacing:"],
|
|
273
|
+
durationInSeconds: 2.95,
|
|
274
|
+
codepoint: "1f62c"
|
|
275
|
+
},
|
|
276
|
+
{
|
|
277
|
+
name: "expressionless",
|
|
278
|
+
categories: ["Smileys and emotions"],
|
|
279
|
+
tags: [":expressionless:"],
|
|
280
|
+
durationInSeconds: 2.5,
|
|
281
|
+
codepoint: "1f611"
|
|
282
|
+
},
|
|
283
|
+
{
|
|
284
|
+
name: "neutral-face",
|
|
285
|
+
categories: ["Smileys and emotions"],
|
|
286
|
+
tags: [":neutral-face:"],
|
|
287
|
+
durationInSeconds: 3.3333333333333335,
|
|
288
|
+
codepoint: "1f610"
|
|
289
|
+
},
|
|
290
|
+
{
|
|
291
|
+
name: "mouth-none",
|
|
292
|
+
categories: ["Smileys and emotions"],
|
|
293
|
+
tags: [":mouth-none:"],
|
|
294
|
+
durationInSeconds: 3.3333333333333335,
|
|
295
|
+
codepoint: "1f636"
|
|
296
|
+
},
|
|
297
|
+
{
|
|
298
|
+
name: "face-in-clouds",
|
|
299
|
+
categories: ["Smileys and emotions"],
|
|
300
|
+
tags: [":face-in-clouds:", ":lost:"],
|
|
301
|
+
durationInSeconds: 2.8666666666666667,
|
|
302
|
+
codepoint: "1f636_200d_1f32b_fe0f"
|
|
303
|
+
},
|
|
304
|
+
{
|
|
305
|
+
name: "dotted-line-face",
|
|
306
|
+
categories: ["Smileys and emotions"],
|
|
307
|
+
tags: [":dotted-line-face:", ":invisible:"],
|
|
308
|
+
durationInSeconds: 3.6,
|
|
309
|
+
codepoint: "1fae5"
|
|
310
|
+
},
|
|
311
|
+
{
|
|
312
|
+
name: "zipper-face",
|
|
313
|
+
categories: ["Smileys and emotions"],
|
|
314
|
+
tags: [":zipper-face:"],
|
|
315
|
+
durationInSeconds: 3.7,
|
|
316
|
+
codepoint: "1f910"
|
|
317
|
+
},
|
|
318
|
+
{
|
|
319
|
+
name: "salute",
|
|
320
|
+
categories: ["Smileys and emotions"],
|
|
321
|
+
tags: [":salute:"],
|
|
322
|
+
durationInSeconds: 2,
|
|
323
|
+
codepoint: "1fae1"
|
|
324
|
+
},
|
|
325
|
+
{
|
|
326
|
+
name: "thinking-face",
|
|
327
|
+
categories: ["Smileys and emotions"],
|
|
328
|
+
tags: [":thinking-face:"],
|
|
329
|
+
durationInSeconds: 2,
|
|
330
|
+
codepoint: "1f914"
|
|
331
|
+
},
|
|
332
|
+
{
|
|
333
|
+
name: "shushing-face",
|
|
334
|
+
categories: ["Smileys and emotions"],
|
|
335
|
+
tags: [":shushing-face:"],
|
|
336
|
+
durationInSeconds: 2,
|
|
337
|
+
codepoint: "1f92b"
|
|
338
|
+
},
|
|
339
|
+
{
|
|
340
|
+
name: "hand-over-mouth",
|
|
341
|
+
categories: ["Smileys and emotions"],
|
|
342
|
+
tags: [":hand-over-mouth:"],
|
|
343
|
+
durationInSeconds: 1.0833333333333333,
|
|
344
|
+
codepoint: "1fae2"
|
|
345
|
+
},
|
|
346
|
+
{
|
|
347
|
+
name: "smiling-eyes-with-hand-over-mouth",
|
|
348
|
+
categories: ["Smileys and emotions"],
|
|
349
|
+
tags: [":smiling-eyes-with-hand-over-mouth:", ":chuckling:"],
|
|
350
|
+
durationInSeconds: 1.8,
|
|
351
|
+
codepoint: "1f92d"
|
|
352
|
+
},
|
|
353
|
+
{
|
|
354
|
+
name: "yawn",
|
|
355
|
+
categories: ["Smileys and emotions"],
|
|
356
|
+
tags: [":yawn:"],
|
|
357
|
+
durationInSeconds: 2.35,
|
|
358
|
+
codepoint: "1f971"
|
|
359
|
+
},
|
|
360
|
+
{
|
|
361
|
+
name: "hug-face",
|
|
362
|
+
categories: ["Smileys and emotions"],
|
|
363
|
+
tags: [":hug-face:"],
|
|
364
|
+
durationInSeconds: 2,
|
|
365
|
+
codepoint: "1f917"
|
|
366
|
+
},
|
|
367
|
+
{
|
|
368
|
+
name: "peeking",
|
|
369
|
+
categories: ["Smileys and emotions"],
|
|
370
|
+
tags: [":peeking:"],
|
|
371
|
+
durationInSeconds: 3.85,
|
|
372
|
+
codepoint: "1fae3"
|
|
373
|
+
},
|
|
374
|
+
{
|
|
375
|
+
name: "screaming",
|
|
376
|
+
categories: ["Smileys and emotions"],
|
|
377
|
+
tags: [":screaming:"],
|
|
378
|
+
durationInSeconds: 1.7,
|
|
379
|
+
codepoint: "1f631"
|
|
380
|
+
},
|
|
381
|
+
{
|
|
382
|
+
name: "raised-eyebrow",
|
|
383
|
+
categories: ["Smileys and emotions"],
|
|
384
|
+
tags: [":raised-eyebrow:"],
|
|
385
|
+
durationInSeconds: 1.4333333333333333,
|
|
386
|
+
codepoint: "1f928"
|
|
387
|
+
},
|
|
388
|
+
{
|
|
389
|
+
name: "monocle",
|
|
390
|
+
categories: ["Smileys and emotions"],
|
|
391
|
+
tags: [":monocle:"],
|
|
392
|
+
durationInSeconds: 3.4,
|
|
393
|
+
codepoint: "1f9d0"
|
|
394
|
+
},
|
|
395
|
+
{
|
|
396
|
+
name: "unamused",
|
|
397
|
+
categories: ["Smileys and emotions"],
|
|
398
|
+
tags: [":unamused:"],
|
|
399
|
+
durationInSeconds: 3.2,
|
|
400
|
+
codepoint: "1f612"
|
|
401
|
+
},
|
|
402
|
+
{
|
|
403
|
+
name: "rolling-eyes",
|
|
404
|
+
categories: ["Smileys and emotions"],
|
|
405
|
+
tags: [":rolling-eyes:"],
|
|
406
|
+
durationInSeconds: 3.2666666666666666,
|
|
407
|
+
codepoint: "1f644"
|
|
408
|
+
},
|
|
409
|
+
{
|
|
410
|
+
name: "exhale",
|
|
411
|
+
categories: ["Smileys and emotions"],
|
|
412
|
+
tags: [":exhale:"],
|
|
413
|
+
durationInSeconds: 2.5,
|
|
414
|
+
codepoint: "1f62e_200d_1f4a8"
|
|
415
|
+
},
|
|
416
|
+
{
|
|
417
|
+
name: "triumph",
|
|
418
|
+
categories: ["Smileys and emotions"],
|
|
419
|
+
tags: [":triumph:"],
|
|
420
|
+
durationInSeconds: 1.5,
|
|
421
|
+
codepoint: "1f624"
|
|
422
|
+
},
|
|
423
|
+
{
|
|
424
|
+
name: "angry",
|
|
425
|
+
categories: ["Smileys and emotions"],
|
|
426
|
+
tags: [":angry:"],
|
|
427
|
+
durationInSeconds: 2,
|
|
428
|
+
codepoint: "1f620"
|
|
429
|
+
},
|
|
430
|
+
{
|
|
431
|
+
name: "rage",
|
|
432
|
+
categories: ["Smileys and emotions"],
|
|
433
|
+
tags: [":rage:"],
|
|
434
|
+
durationInSeconds: 3,
|
|
435
|
+
codepoint: "1f621"
|
|
436
|
+
},
|
|
437
|
+
{
|
|
438
|
+
name: "cursing",
|
|
439
|
+
categories: ["Smileys and emotions"],
|
|
440
|
+
tags: [":cursing:"],
|
|
441
|
+
durationInSeconds: 3,
|
|
442
|
+
codepoint: "1f92c"
|
|
443
|
+
},
|
|
444
|
+
{
|
|
445
|
+
name: "sad",
|
|
446
|
+
categories: ["Smileys and emotions"],
|
|
447
|
+
tags: [":sad:"],
|
|
448
|
+
durationInSeconds: 3,
|
|
449
|
+
codepoint: "1f61e"
|
|
450
|
+
},
|
|
451
|
+
{
|
|
452
|
+
name: "sweat",
|
|
453
|
+
categories: ["Smileys and emotions"],
|
|
454
|
+
tags: [":sweat:", ":downcast:"],
|
|
455
|
+
durationInSeconds: 2.25,
|
|
456
|
+
codepoint: "1f613"
|
|
457
|
+
},
|
|
458
|
+
{
|
|
459
|
+
name: "worried",
|
|
460
|
+
categories: ["Smileys and emotions"],
|
|
461
|
+
tags: [":worried:"],
|
|
462
|
+
durationInSeconds: 2.566666666666667,
|
|
463
|
+
codepoint: "1f61f"
|
|
464
|
+
},
|
|
465
|
+
{
|
|
466
|
+
name: "concerned",
|
|
467
|
+
categories: ["Smileys and emotions"],
|
|
468
|
+
tags: [":concerned:"],
|
|
469
|
+
durationInSeconds: 4.25,
|
|
470
|
+
codepoint: "1f625"
|
|
471
|
+
},
|
|
472
|
+
{
|
|
473
|
+
name: "cry",
|
|
474
|
+
categories: ["Smileys and emotions"],
|
|
475
|
+
tags: [":cry:"],
|
|
476
|
+
durationInSeconds: 1.8333333333333333,
|
|
477
|
+
codepoint: "1f622"
|
|
478
|
+
},
|
|
479
|
+
{
|
|
480
|
+
name: "big-frown",
|
|
481
|
+
categories: ["Smileys and emotions"],
|
|
482
|
+
tags: [":big-frown:"],
|
|
483
|
+
durationInSeconds: 2,
|
|
484
|
+
codepoint: "2639_fe0f"
|
|
485
|
+
},
|
|
486
|
+
{
|
|
487
|
+
name: "frown",
|
|
488
|
+
categories: ["Smileys and emotions"],
|
|
489
|
+
tags: [":frown:"],
|
|
490
|
+
durationInSeconds: 2.6,
|
|
491
|
+
codepoint: "1f641"
|
|
492
|
+
},
|
|
493
|
+
{
|
|
494
|
+
name: "diagonal-mouth",
|
|
495
|
+
categories: ["Smileys and emotions"],
|
|
496
|
+
tags: [":diagonal-mouth:"],
|
|
497
|
+
durationInSeconds: 2.2666666666666666,
|
|
498
|
+
codepoint: "1fae4"
|
|
499
|
+
},
|
|
500
|
+
{
|
|
501
|
+
name: "slightly-frowning",
|
|
502
|
+
categories: ["Smileys and emotions"],
|
|
503
|
+
tags: [":slightly-frowning:"],
|
|
504
|
+
durationInSeconds: 3.316666666666667,
|
|
505
|
+
codepoint: "1f615"
|
|
506
|
+
},
|
|
507
|
+
{
|
|
508
|
+
name: "anxious-with-sweat",
|
|
509
|
+
categories: ["Smileys and emotions"],
|
|
510
|
+
tags: [":anxious-with-sweat:"],
|
|
511
|
+
durationInSeconds: 2.8,
|
|
512
|
+
codepoint: "1f630"
|
|
513
|
+
},
|
|
514
|
+
{
|
|
515
|
+
name: "scared",
|
|
516
|
+
categories: ["Smileys and emotions"],
|
|
517
|
+
tags: [":scared:"],
|
|
518
|
+
durationInSeconds: 2.533333333333333,
|
|
519
|
+
codepoint: "1f628"
|
|
520
|
+
},
|
|
521
|
+
{
|
|
522
|
+
name: "anguished",
|
|
523
|
+
categories: ["Smileys and emotions"],
|
|
524
|
+
tags: [":anguished:"],
|
|
525
|
+
durationInSeconds: 2.3666666666666667,
|
|
526
|
+
codepoint: "1f627"
|
|
527
|
+
},
|
|
528
|
+
{
|
|
529
|
+
name: "gasp",
|
|
530
|
+
categories: ["Smileys and emotions"],
|
|
531
|
+
tags: [":gasp:"],
|
|
532
|
+
durationInSeconds: 3.1666666666666665,
|
|
533
|
+
codepoint: "1f626"
|
|
534
|
+
},
|
|
535
|
+
{
|
|
536
|
+
name: "mouth-open",
|
|
537
|
+
categories: ["Smileys and emotions"],
|
|
538
|
+
tags: [":mouth-open:"],
|
|
539
|
+
durationInSeconds: 2.533333333333333,
|
|
540
|
+
codepoint: "1f62e"
|
|
541
|
+
},
|
|
542
|
+
{
|
|
543
|
+
name: "surprised",
|
|
544
|
+
categories: ["Smileys and emotions"],
|
|
545
|
+
tags: [":surprised:", ":hushed:"],
|
|
546
|
+
durationInSeconds: 1.4666666666666666,
|
|
547
|
+
codepoint: "1f62f"
|
|
548
|
+
},
|
|
549
|
+
{
|
|
550
|
+
name: "astonished",
|
|
551
|
+
categories: ["Smileys and emotions"],
|
|
552
|
+
tags: [":astonished:"],
|
|
553
|
+
durationInSeconds: 2.566666666666667,
|
|
554
|
+
codepoint: "1f632"
|
|
555
|
+
},
|
|
556
|
+
{
|
|
557
|
+
name: "flushed",
|
|
558
|
+
categories: ["Smileys and emotions"],
|
|
559
|
+
tags: [":flushed:"],
|
|
560
|
+
durationInSeconds: 2,
|
|
561
|
+
codepoint: "1f633"
|
|
562
|
+
},
|
|
563
|
+
{
|
|
564
|
+
name: "mind-blown",
|
|
565
|
+
categories: ["Smileys and emotions"],
|
|
566
|
+
tags: [":mind-blown:", ":exploding-head:"],
|
|
567
|
+
durationInSeconds: 2.9,
|
|
568
|
+
codepoint: "1f92f"
|
|
569
|
+
},
|
|
570
|
+
{
|
|
571
|
+
name: "scrunched-mouth",
|
|
572
|
+
categories: ["Smileys and emotions"],
|
|
573
|
+
tags: [":scrunched-mouth:", ":confounded:", ":zigzag-mouth:"],
|
|
574
|
+
durationInSeconds: 2.033333333333333,
|
|
575
|
+
codepoint: "1f616"
|
|
576
|
+
},
|
|
577
|
+
{
|
|
578
|
+
name: "scrunched-eyes",
|
|
579
|
+
categories: ["Smileys and emotions"],
|
|
580
|
+
tags: [":scrunched-eyes:", ":persevering:"],
|
|
581
|
+
durationInSeconds: 3.25,
|
|
582
|
+
codepoint: "1f623"
|
|
583
|
+
},
|
|
584
|
+
{
|
|
585
|
+
name: "weary",
|
|
586
|
+
categories: ["Smileys and emotions"],
|
|
587
|
+
tags: [":weary:"],
|
|
588
|
+
durationInSeconds: 1.7166666666666666,
|
|
589
|
+
codepoint: "1f629"
|
|
590
|
+
},
|
|
591
|
+
{
|
|
592
|
+
name: "distraught",
|
|
593
|
+
categories: ["Smileys and emotions"],
|
|
594
|
+
tags: [":distraught:"],
|
|
595
|
+
durationInSeconds: 1.7,
|
|
596
|
+
codepoint: "1f62b"
|
|
597
|
+
},
|
|
598
|
+
{
|
|
599
|
+
name: "x-eyes",
|
|
600
|
+
categories: ["Smileys and emotions"],
|
|
601
|
+
tags: [":x-eyes:"],
|
|
602
|
+
durationInSeconds: 2.8333333333333335,
|
|
603
|
+
codepoint: "1f635"
|
|
604
|
+
},
|
|
605
|
+
{
|
|
606
|
+
name: "dizzy-face",
|
|
607
|
+
categories: ["Smileys and emotions"],
|
|
608
|
+
tags: [":dizzy-face:"],
|
|
609
|
+
durationInSeconds: 2,
|
|
610
|
+
codepoint: "1f635_200d_1f4ab"
|
|
611
|
+
},
|
|
612
|
+
{
|
|
613
|
+
name: "shaking-face",
|
|
614
|
+
categories: ["Smileys and emotions"],
|
|
615
|
+
tags: [":shaking-face:"],
|
|
616
|
+
durationInSeconds: 2.1666666666666665,
|
|
617
|
+
codepoint: "1fae8"
|
|
618
|
+
},
|
|
619
|
+
{
|
|
620
|
+
name: "cold-face",
|
|
621
|
+
categories: ["Smileys and emotions"],
|
|
622
|
+
tags: [":cold-face:"],
|
|
623
|
+
durationInSeconds: 2.033333333333333,
|
|
624
|
+
codepoint: "1f976"
|
|
625
|
+
},
|
|
626
|
+
{
|
|
627
|
+
name: "hot-face",
|
|
628
|
+
categories: ["Smileys and emotions"],
|
|
629
|
+
tags: [":hot-face:", ":sweat-face:"],
|
|
630
|
+
durationInSeconds: 1.4,
|
|
631
|
+
codepoint: "1f975"
|
|
632
|
+
},
|
|
633
|
+
{
|
|
634
|
+
name: "sick",
|
|
635
|
+
categories: ["Smileys and emotions"],
|
|
636
|
+
tags: [":sick:", ":nauseated:"],
|
|
637
|
+
durationInSeconds: 2.1333333333333333,
|
|
638
|
+
codepoint: "1f922"
|
|
639
|
+
},
|
|
640
|
+
{
|
|
641
|
+
name: "vomit",
|
|
642
|
+
categories: ["Smileys and emotions"],
|
|
643
|
+
tags: [":vomit:"],
|
|
644
|
+
durationInSeconds: 4,
|
|
645
|
+
codepoint: "1f92e"
|
|
646
|
+
},
|
|
647
|
+
{
|
|
648
|
+
name: "sleep",
|
|
649
|
+
categories: ["Smileys and emotions"],
|
|
650
|
+
tags: [":sleep:", ":tired:"],
|
|
651
|
+
durationInSeconds: 2,
|
|
652
|
+
codepoint: "1f634"
|
|
653
|
+
},
|
|
654
|
+
{
|
|
655
|
+
name: "sleepy",
|
|
656
|
+
categories: ["Smileys and emotions"],
|
|
657
|
+
tags: [":sleepy:"],
|
|
658
|
+
durationInSeconds: 2,
|
|
659
|
+
codepoint: "1f62a"
|
|
660
|
+
},
|
|
661
|
+
{
|
|
662
|
+
name: "sneeze",
|
|
663
|
+
categories: ["Smileys and emotions"],
|
|
664
|
+
tags: [":sneeze:"],
|
|
665
|
+
durationInSeconds: 2.6,
|
|
666
|
+
codepoint: "1f927"
|
|
667
|
+
},
|
|
668
|
+
{
|
|
669
|
+
name: "thermometer-face",
|
|
670
|
+
categories: ["Smileys and emotions"],
|
|
671
|
+
tags: [":thermometer-face:"],
|
|
672
|
+
durationInSeconds: 2.7,
|
|
673
|
+
codepoint: "1f912"
|
|
674
|
+
},
|
|
675
|
+
{
|
|
676
|
+
name: "bandage-face",
|
|
677
|
+
categories: ["Smileys and emotions"],
|
|
678
|
+
tags: [":bandage-face:"],
|
|
679
|
+
durationInSeconds: 3.3333333333333335,
|
|
680
|
+
codepoint: "1f915"
|
|
681
|
+
},
|
|
682
|
+
{
|
|
683
|
+
name: "mask",
|
|
684
|
+
categories: ["Smileys and emotions"],
|
|
685
|
+
tags: [":mask:"],
|
|
686
|
+
durationInSeconds: 3.2333333333333334,
|
|
687
|
+
codepoint: "1f637"
|
|
688
|
+
},
|
|
689
|
+
{
|
|
690
|
+
name: "liar",
|
|
691
|
+
categories: ["Smileys and emotions"],
|
|
692
|
+
tags: [":liar:"],
|
|
693
|
+
durationInSeconds: 2.3,
|
|
694
|
+
codepoint: "1f925"
|
|
695
|
+
},
|
|
696
|
+
{
|
|
697
|
+
name: "halo",
|
|
698
|
+
categories: ["Smileys and emotions"],
|
|
699
|
+
tags: [":halo:", ":innocent:"],
|
|
700
|
+
durationInSeconds: 3.4166666666666665,
|
|
701
|
+
codepoint: "1f607"
|
|
702
|
+
},
|
|
703
|
+
{
|
|
704
|
+
name: "cowboy",
|
|
705
|
+
categories: ["Smileys and emotions"],
|
|
706
|
+
tags: [":cowboy:"],
|
|
707
|
+
durationInSeconds: 1.6166666666666667,
|
|
708
|
+
codepoint: "1f920"
|
|
709
|
+
},
|
|
710
|
+
{
|
|
711
|
+
name: "money-face",
|
|
712
|
+
categories: ["Smileys and emotions"],
|
|
713
|
+
tags: [":money-face:"],
|
|
714
|
+
durationInSeconds: 2.3833333333333333,
|
|
715
|
+
codepoint: "1f911"
|
|
716
|
+
},
|
|
717
|
+
{
|
|
718
|
+
name: "nerd-face",
|
|
719
|
+
categories: ["Smileys and emotions"],
|
|
720
|
+
tags: [":nerd-face:"],
|
|
721
|
+
durationInSeconds: 3,
|
|
722
|
+
codepoint: "1f913"
|
|
723
|
+
},
|
|
724
|
+
{
|
|
725
|
+
name: "sunglasses-face",
|
|
726
|
+
categories: ["Smileys and emotions"],
|
|
727
|
+
tags: [":sunglasses-face:"],
|
|
728
|
+
durationInSeconds: 2.4166666666666665,
|
|
729
|
+
codepoint: "1f60e"
|
|
730
|
+
},
|
|
731
|
+
{
|
|
732
|
+
name: "disguise",
|
|
733
|
+
categories: ["Smileys and emotions"],
|
|
734
|
+
tags: [":disguise:"],
|
|
735
|
+
durationInSeconds: 3.7,
|
|
736
|
+
codepoint: "1f978"
|
|
737
|
+
},
|
|
738
|
+
{
|
|
739
|
+
name: "clown",
|
|
740
|
+
categories: ["Smileys and emotions"],
|
|
741
|
+
tags: [":clown:"],
|
|
742
|
+
durationInSeconds: 2.3,
|
|
743
|
+
codepoint: "1f921"
|
|
744
|
+
},
|
|
745
|
+
{
|
|
746
|
+
name: "imp-smile",
|
|
747
|
+
categories: ["Smileys and emotions"],
|
|
748
|
+
tags: [":imp-smile:"],
|
|
749
|
+
durationInSeconds: 3.5,
|
|
750
|
+
codepoint: "1f608"
|
|
751
|
+
},
|
|
752
|
+
{
|
|
753
|
+
name: "imp-frown",
|
|
754
|
+
categories: ["Smileys and emotions"],
|
|
755
|
+
tags: [":imp-frown:"],
|
|
756
|
+
durationInSeconds: 3.5,
|
|
757
|
+
codepoint: "1f47f"
|
|
758
|
+
},
|
|
759
|
+
{
|
|
760
|
+
name: "ghost",
|
|
761
|
+
categories: ["Smileys and emotions"],
|
|
762
|
+
tags: [":ghost:"],
|
|
763
|
+
durationInSeconds: 2.4,
|
|
764
|
+
codepoint: "1f47b"
|
|
765
|
+
},
|
|
766
|
+
{
|
|
767
|
+
name: "skull",
|
|
768
|
+
categories: ["Smileys and emotions"],
|
|
769
|
+
tags: [":skull:"],
|
|
770
|
+
durationInSeconds: 5,
|
|
771
|
+
codepoint: "1f480"
|
|
772
|
+
},
|
|
773
|
+
{
|
|
774
|
+
name: "jack-o-lantern",
|
|
775
|
+
categories: ["Smileys and emotions"],
|
|
776
|
+
tags: [":jack-o-lantern:"],
|
|
777
|
+
durationInSeconds: 3.1666666666666665,
|
|
778
|
+
codepoint: "1f383"
|
|
779
|
+
},
|
|
780
|
+
{
|
|
781
|
+
name: "poop",
|
|
782
|
+
categories: ["Smileys and emotions"],
|
|
783
|
+
tags: [":poop:"],
|
|
784
|
+
durationInSeconds: 2.4,
|
|
785
|
+
codepoint: "1f4a9"
|
|
786
|
+
},
|
|
787
|
+
{
|
|
788
|
+
name: "robot",
|
|
789
|
+
categories: ["Smileys and emotions"],
|
|
790
|
+
tags: [":robot:"],
|
|
791
|
+
durationInSeconds: 2.7333333333333334,
|
|
792
|
+
codepoint: "1f916"
|
|
793
|
+
},
|
|
794
|
+
{
|
|
795
|
+
name: "alien",
|
|
796
|
+
categories: ["Smileys and emotions"],
|
|
797
|
+
tags: [":alien:"],
|
|
798
|
+
durationInSeconds: 3.033333333333333,
|
|
799
|
+
codepoint: "1f47d"
|
|
800
|
+
},
|
|
801
|
+
{
|
|
802
|
+
name: "sun-with-face",
|
|
803
|
+
categories: ["Smileys and emotions"],
|
|
804
|
+
tags: [":sun-with-face:"],
|
|
805
|
+
durationInSeconds: 1.8666666666666667,
|
|
806
|
+
codepoint: "1f31e"
|
|
807
|
+
},
|
|
808
|
+
{
|
|
809
|
+
name: "moon-face-first-quarter",
|
|
810
|
+
categories: ["Smileys and emotions"],
|
|
811
|
+
tags: [":moon-face-first-quarter:"],
|
|
812
|
+
durationInSeconds: 4.1,
|
|
813
|
+
codepoint: "1f31b"
|
|
814
|
+
},
|
|
815
|
+
{
|
|
816
|
+
name: "moon-face-last-quarter",
|
|
817
|
+
categories: ["Smileys and emotions"],
|
|
818
|
+
tags: [":moon-face-last-quarter:"],
|
|
819
|
+
durationInSeconds: 4.233333333333333,
|
|
820
|
+
codepoint: "1f31c"
|
|
821
|
+
},
|
|
822
|
+
{
|
|
823
|
+
name: "see-no-evil-monkey",
|
|
824
|
+
categories: ["Smileys and emotions"],
|
|
825
|
+
tags: [":see-no-evil-monkey:"],
|
|
826
|
+
durationInSeconds: 2.3833333333333333,
|
|
827
|
+
codepoint: "1f648"
|
|
828
|
+
},
|
|
829
|
+
{
|
|
830
|
+
name: "hear-no-evil-monkey",
|
|
831
|
+
categories: ["Smileys and emotions"],
|
|
832
|
+
tags: [":hear-no-evil-monkey:"],
|
|
833
|
+
durationInSeconds: 2.3,
|
|
834
|
+
codepoint: "1f649"
|
|
835
|
+
},
|
|
836
|
+
{
|
|
837
|
+
name: "speak-no-evil-monkey",
|
|
838
|
+
categories: ["Smileys and emotions"],
|
|
839
|
+
tags: [":speak-no-evil-monkey:"],
|
|
840
|
+
durationInSeconds: 2.5,
|
|
841
|
+
codepoint: "1f64a"
|
|
842
|
+
},
|
|
843
|
+
{
|
|
844
|
+
name: "smiley-cat",
|
|
845
|
+
categories: ["Smileys and emotions"],
|
|
846
|
+
tags: [":smiley-cat:"],
|
|
847
|
+
durationInSeconds: 2.45,
|
|
848
|
+
codepoint: "1f63a"
|
|
849
|
+
},
|
|
850
|
+
{
|
|
851
|
+
name: "smile-cat",
|
|
852
|
+
categories: ["Smileys and emotions"],
|
|
853
|
+
tags: [":smile-cat:"],
|
|
854
|
+
durationInSeconds: 3.5,
|
|
855
|
+
codepoint: "1f638"
|
|
856
|
+
},
|
|
857
|
+
{
|
|
858
|
+
name: "joy-cat",
|
|
859
|
+
categories: ["Smileys and emotions"],
|
|
860
|
+
tags: [":joy-cat:"],
|
|
861
|
+
durationInSeconds: 2.933333333333333,
|
|
862
|
+
codepoint: "1f639"
|
|
863
|
+
},
|
|
864
|
+
{
|
|
865
|
+
name: "heart-eyes-cat",
|
|
866
|
+
categories: ["Smileys and emotions"],
|
|
867
|
+
tags: [":heart-eyes-cat:"],
|
|
868
|
+
durationInSeconds: 2.8,
|
|
869
|
+
codepoint: "1f63b"
|
|
870
|
+
},
|
|
871
|
+
{
|
|
872
|
+
name: "smirk-cat",
|
|
873
|
+
categories: ["Smileys and emotions"],
|
|
874
|
+
tags: [":smirk-cat:"],
|
|
875
|
+
durationInSeconds: 2.966666666666667,
|
|
876
|
+
codepoint: "1f63c"
|
|
877
|
+
},
|
|
878
|
+
{
|
|
879
|
+
name: "kissing-cat",
|
|
880
|
+
categories: ["Smileys and emotions"],
|
|
881
|
+
tags: [":kissing-cat:"],
|
|
882
|
+
durationInSeconds: 2.4,
|
|
883
|
+
codepoint: "1f63d"
|
|
884
|
+
},
|
|
885
|
+
{
|
|
886
|
+
name: "scream-cat",
|
|
887
|
+
categories: ["Smileys and emotions"],
|
|
888
|
+
tags: [":scream-cat:"],
|
|
889
|
+
durationInSeconds: 2.4,
|
|
890
|
+
codepoint: "1f640"
|
|
891
|
+
},
|
|
892
|
+
{
|
|
893
|
+
name: "crying-cat-face",
|
|
894
|
+
categories: ["Smileys and emotions"],
|
|
895
|
+
tags: [":crying-cat-face:"],
|
|
896
|
+
durationInSeconds: 1.7,
|
|
897
|
+
codepoint: "1f63f"
|
|
898
|
+
},
|
|
899
|
+
{
|
|
900
|
+
name: "pouting-cat",
|
|
901
|
+
categories: ["Smileys and emotions"],
|
|
902
|
+
tags: [":pouting-cat:"],
|
|
903
|
+
durationInSeconds: 2.2333333333333334,
|
|
904
|
+
codepoint: "1f63e"
|
|
905
|
+
},
|
|
906
|
+
{
|
|
907
|
+
name: "glowing-star",
|
|
908
|
+
categories: ["Smileys and emotions"],
|
|
909
|
+
tags: [":glowing-star:"],
|
|
910
|
+
durationInSeconds: 1.7833333333333334,
|
|
911
|
+
codepoint: "1f31f"
|
|
912
|
+
},
|
|
913
|
+
{
|
|
914
|
+
name: "sparkles",
|
|
915
|
+
categories: ["Smileys and emotions"],
|
|
916
|
+
tags: [":sparkles:"],
|
|
917
|
+
durationInSeconds: 2.033333333333333,
|
|
918
|
+
codepoint: "2728"
|
|
919
|
+
},
|
|
920
|
+
{
|
|
921
|
+
name: "collision",
|
|
922
|
+
categories: ["Smileys and emotions"],
|
|
923
|
+
tags: [":collision:"],
|
|
924
|
+
durationInSeconds: 1.2666666666666666,
|
|
925
|
+
codepoint: "1f4a5"
|
|
926
|
+
},
|
|
927
|
+
{
|
|
928
|
+
name: "fire",
|
|
929
|
+
categories: ["Smileys and emotions"],
|
|
930
|
+
tags: [":fire:", ":burn:", ":lit:"],
|
|
931
|
+
durationInSeconds: 1.0833333333333333,
|
|
932
|
+
codepoint: "1f525"
|
|
933
|
+
},
|
|
934
|
+
{
|
|
935
|
+
name: "100",
|
|
936
|
+
categories: ["Smileys and emotions"],
|
|
937
|
+
tags: [":100:", ":one-hundred:", ":hundred:", ":points:"],
|
|
938
|
+
durationInSeconds: 2.25,
|
|
939
|
+
codepoint: "1f4af"
|
|
940
|
+
},
|
|
941
|
+
{
|
|
942
|
+
name: "party-popper",
|
|
943
|
+
categories: ["Smileys and emotions"],
|
|
944
|
+
tags: [":party-popper:"],
|
|
945
|
+
durationInSeconds: 1.5333333333333334,
|
|
946
|
+
codepoint: "1f389"
|
|
947
|
+
},
|
|
948
|
+
{
|
|
949
|
+
name: "red-heart",
|
|
950
|
+
categories: ["Smileys and emotions"],
|
|
951
|
+
tags: [":red-heart:"],
|
|
952
|
+
durationInSeconds: 1.8333333333333333,
|
|
953
|
+
codepoint: "2764_fe0f"
|
|
954
|
+
},
|
|
955
|
+
{
|
|
956
|
+
name: "orange-heart",
|
|
957
|
+
categories: ["Smileys and emotions"],
|
|
958
|
+
tags: [":orange-heart:"],
|
|
959
|
+
durationInSeconds: 1.8333333333333333,
|
|
960
|
+
codepoint: "1f9e1"
|
|
961
|
+
},
|
|
962
|
+
{
|
|
963
|
+
name: "yellow-heart",
|
|
964
|
+
categories: ["Smileys and emotions"],
|
|
965
|
+
tags: [":yellow-heart:"],
|
|
966
|
+
durationInSeconds: 1.8333333333333333,
|
|
967
|
+
codepoint: "1f49b"
|
|
968
|
+
},
|
|
969
|
+
{
|
|
970
|
+
name: "green-heart",
|
|
971
|
+
categories: ["Smileys and emotions"],
|
|
972
|
+
tags: [":green-heart:"],
|
|
973
|
+
durationInSeconds: 1.8333333333333333,
|
|
974
|
+
codepoint: "1f49a"
|
|
975
|
+
},
|
|
976
|
+
{
|
|
977
|
+
name: "light-blue-heart",
|
|
978
|
+
categories: ["Smileys and emotions"],
|
|
979
|
+
tags: [":light-blue-heart:"],
|
|
980
|
+
durationInSeconds: 1.8333333333333333,
|
|
981
|
+
codepoint: "1fa75"
|
|
982
|
+
},
|
|
983
|
+
{
|
|
984
|
+
name: "blue-heart",
|
|
985
|
+
categories: ["Smileys and emotions"],
|
|
986
|
+
tags: [":blue-heart:"],
|
|
987
|
+
durationInSeconds: 1.8333333333333333,
|
|
988
|
+
codepoint: "1f499"
|
|
989
|
+
},
|
|
990
|
+
{
|
|
991
|
+
name: "purple-heart",
|
|
992
|
+
categories: ["Smileys and emotions"],
|
|
993
|
+
tags: [":purple-heart:"],
|
|
994
|
+
durationInSeconds: 1.8333333333333333,
|
|
995
|
+
codepoint: "1f49c"
|
|
996
|
+
},
|
|
997
|
+
{
|
|
998
|
+
name: "brown-heart",
|
|
999
|
+
categories: ["Smileys and emotions"],
|
|
1000
|
+
tags: [":brown-heart:"],
|
|
1001
|
+
durationInSeconds: 1.8333333333333333,
|
|
1002
|
+
codepoint: "1f90e"
|
|
1003
|
+
},
|
|
1004
|
+
{
|
|
1005
|
+
name: "black-heart",
|
|
1006
|
+
categories: ["Smileys and emotions"],
|
|
1007
|
+
tags: [":black-heart:"],
|
|
1008
|
+
durationInSeconds: 1.8333333333333333,
|
|
1009
|
+
codepoint: "1f5a4"
|
|
1010
|
+
},
|
|
1011
|
+
{
|
|
1012
|
+
name: "grey-heart",
|
|
1013
|
+
categories: ["Smileys and emotions"],
|
|
1014
|
+
tags: [":grey-heart:"],
|
|
1015
|
+
durationInSeconds: 1.8333333333333333,
|
|
1016
|
+
codepoint: "1fa76"
|
|
1017
|
+
},
|
|
1018
|
+
{
|
|
1019
|
+
name: "white-heart",
|
|
1020
|
+
categories: ["Smileys and emotions"],
|
|
1021
|
+
tags: [":white-heart:"],
|
|
1022
|
+
durationInSeconds: 1.8333333333333333,
|
|
1023
|
+
codepoint: "1f90d"
|
|
1024
|
+
},
|
|
1025
|
+
{
|
|
1026
|
+
name: "pink-heart",
|
|
1027
|
+
categories: ["Smileys and emotions"],
|
|
1028
|
+
tags: [":pink-heart:"],
|
|
1029
|
+
durationInSeconds: 1.8333333333333333,
|
|
1030
|
+
codepoint: "1fa77"
|
|
1031
|
+
},
|
|
1032
|
+
{
|
|
1033
|
+
name: "cupid",
|
|
1034
|
+
categories: ["Smileys and emotions"],
|
|
1035
|
+
tags: [":cupid:"],
|
|
1036
|
+
durationInSeconds: 2.466666666666667,
|
|
1037
|
+
codepoint: "1f498"
|
|
1038
|
+
},
|
|
1039
|
+
{
|
|
1040
|
+
name: "gift-heart",
|
|
1041
|
+
categories: ["Smileys and emotions"],
|
|
1042
|
+
tags: [":gift-heart:"],
|
|
1043
|
+
durationInSeconds: 4.766666666666667,
|
|
1044
|
+
codepoint: "1f49d"
|
|
1045
|
+
},
|
|
1046
|
+
{
|
|
1047
|
+
name: "sparkling-heart",
|
|
1048
|
+
categories: ["Smileys and emotions"],
|
|
1049
|
+
tags: [":sparkling-heart:"],
|
|
1050
|
+
durationInSeconds: 1,
|
|
1051
|
+
codepoint: "1f496"
|
|
1052
|
+
},
|
|
1053
|
+
{
|
|
1054
|
+
name: "heart-grow",
|
|
1055
|
+
categories: ["Smileys and emotions"],
|
|
1056
|
+
tags: [":heart-grow:"],
|
|
1057
|
+
durationInSeconds: 1.8333333333333333,
|
|
1058
|
+
codepoint: "1f497"
|
|
1059
|
+
},
|
|
1060
|
+
{
|
|
1061
|
+
name: "beating-heart",
|
|
1062
|
+
categories: ["Smileys and emotions"],
|
|
1063
|
+
tags: [":beating-heart:"],
|
|
1064
|
+
durationInSeconds: 0.8,
|
|
1065
|
+
codepoint: "1f493"
|
|
1066
|
+
},
|
|
1067
|
+
{
|
|
1068
|
+
name: "revolving-hearts",
|
|
1069
|
+
categories: ["Smileys and emotions"],
|
|
1070
|
+
tags: [":revolving-hearts:"],
|
|
1071
|
+
durationInSeconds: 1,
|
|
1072
|
+
codepoint: "1f49e"
|
|
1073
|
+
},
|
|
1074
|
+
{
|
|
1075
|
+
name: "two-hearts",
|
|
1076
|
+
categories: ["Smileys and emotions"],
|
|
1077
|
+
tags: [":two-hearts:"],
|
|
1078
|
+
durationInSeconds: 1.2333333333333334,
|
|
1079
|
+
codepoint: "1f495"
|
|
1080
|
+
},
|
|
1081
|
+
{
|
|
1082
|
+
name: "love-letter",
|
|
1083
|
+
categories: ["Smileys and emotions"],
|
|
1084
|
+
tags: [":love-letter:"],
|
|
1085
|
+
durationInSeconds: 3.066666666666667,
|
|
1086
|
+
codepoint: "1f48c"
|
|
1087
|
+
},
|
|
1088
|
+
{
|
|
1089
|
+
name: "heart-box",
|
|
1090
|
+
categories: ["Smileys and emotions"],
|
|
1091
|
+
tags: [":heart-box:"],
|
|
1092
|
+
durationInSeconds: 1.6666666666666667,
|
|
1093
|
+
codepoint: "1f49f"
|
|
1094
|
+
},
|
|
1095
|
+
{
|
|
1096
|
+
name: "heart-exclamation-point",
|
|
1097
|
+
categories: ["Smileys and emotions"],
|
|
1098
|
+
tags: [":heart-exclamation-point:"],
|
|
1099
|
+
durationInSeconds: 2.15,
|
|
1100
|
+
codepoint: "2763_fe0f"
|
|
1101
|
+
},
|
|
1102
|
+
{
|
|
1103
|
+
name: "bandaged-heart",
|
|
1104
|
+
categories: ["Smileys and emotions"],
|
|
1105
|
+
tags: [":bandaged-heart:"],
|
|
1106
|
+
durationInSeconds: 3.1666666666666665,
|
|
1107
|
+
codepoint: "2764_fe0f_200d_1fa79"
|
|
1108
|
+
},
|
|
1109
|
+
{
|
|
1110
|
+
name: "broken-heart",
|
|
1111
|
+
categories: ["Smileys and emotions"],
|
|
1112
|
+
tags: [":broken-heart:"],
|
|
1113
|
+
durationInSeconds: 3.3,
|
|
1114
|
+
codepoint: "1f494"
|
|
1115
|
+
},
|
|
1116
|
+
{
|
|
1117
|
+
name: "fire-heart",
|
|
1118
|
+
categories: ["Smileys and emotions"],
|
|
1119
|
+
tags: [":fire-heart:"],
|
|
1120
|
+
durationInSeconds: 1,
|
|
1121
|
+
codepoint: "2764_fe0f_200d_1f525"
|
|
1122
|
+
},
|
|
1123
|
+
{
|
|
1124
|
+
name: "kiss",
|
|
1125
|
+
categories: ["Smileys and emotions"],
|
|
1126
|
+
tags: [":kiss:"],
|
|
1127
|
+
durationInSeconds: 2,
|
|
1128
|
+
codepoint: "1f48b"
|
|
1129
|
+
},
|
|
1130
|
+
{
|
|
1131
|
+
name: "footprints",
|
|
1132
|
+
categories: ["Smileys and emotions"],
|
|
1133
|
+
tags: [":footprints:"],
|
|
1134
|
+
durationInSeconds: 1.0666666666666667,
|
|
1135
|
+
codepoint: "1f463"
|
|
1136
|
+
},
|
|
1137
|
+
{
|
|
1138
|
+
name: "anatomical-heart",
|
|
1139
|
+
categories: ["Smileys and emotions"],
|
|
1140
|
+
tags: [":anatomical-heart:"],
|
|
1141
|
+
durationInSeconds: 1.3,
|
|
1142
|
+
codepoint: "1fac0"
|
|
1143
|
+
},
|
|
1144
|
+
{
|
|
1145
|
+
name: "blood",
|
|
1146
|
+
categories: ["Smileys and emotions"],
|
|
1147
|
+
tags: [":blood:"],
|
|
1148
|
+
durationInSeconds: 2.1333333333333333,
|
|
1149
|
+
codepoint: "1fa78"
|
|
1150
|
+
},
|
|
1151
|
+
{
|
|
1152
|
+
name: "microbe",
|
|
1153
|
+
categories: ["Smileys and emotions"],
|
|
1154
|
+
tags: [":microbe:", ":virus:"],
|
|
1155
|
+
durationInSeconds: 1.2,
|
|
1156
|
+
codepoint: "1f9a0"
|
|
1157
|
+
},
|
|
1158
|
+
{
|
|
1159
|
+
name: "eyes",
|
|
1160
|
+
categories: ["Smileys and emotions"],
|
|
1161
|
+
tags: [":eyes:"],
|
|
1162
|
+
durationInSeconds: 2,
|
|
1163
|
+
codepoint: "1f440"
|
|
1164
|
+
},
|
|
1165
|
+
{
|
|
1166
|
+
name: "eye",
|
|
1167
|
+
categories: ["Smileys and emotions"],
|
|
1168
|
+
tags: [":eye:"],
|
|
1169
|
+
durationInSeconds: 3.966666666666667,
|
|
1170
|
+
codepoint: "1f441_fe0f"
|
|
1171
|
+
},
|
|
1172
|
+
{
|
|
1173
|
+
name: "biting-lip",
|
|
1174
|
+
categories: ["Smileys and emotions"],
|
|
1175
|
+
tags: [":biting-lip:"],
|
|
1176
|
+
durationInSeconds: 1.6,
|
|
1177
|
+
codepoint: "1fae6"
|
|
1178
|
+
},
|
|
1179
|
+
{
|
|
1180
|
+
name: "leg-mechanical",
|
|
1181
|
+
categories: ["Smileys and emotions"],
|
|
1182
|
+
tags: [":leg-mechanical:"],
|
|
1183
|
+
durationInSeconds: 1.4333333333333333,
|
|
1184
|
+
codepoint: "1f9bf"
|
|
1185
|
+
},
|
|
1186
|
+
{
|
|
1187
|
+
name: "arm-mechanical",
|
|
1188
|
+
categories: ["Smileys and emotions"],
|
|
1189
|
+
tags: [":arm-mechanical:"],
|
|
1190
|
+
durationInSeconds: 2.033333333333333,
|
|
1191
|
+
codepoint: "1f9be"
|
|
1192
|
+
},
|
|
1193
|
+
{
|
|
1194
|
+
name: "muscle",
|
|
1195
|
+
categories: ["Smileys and emotions"],
|
|
1196
|
+
tags: [":muscle:", ":flex:", ":bicep:", ":strong:"],
|
|
1197
|
+
durationInSeconds: 1.4,
|
|
1198
|
+
codepoint: "1f4aa"
|
|
1199
|
+
},
|
|
1200
|
+
{
|
|
1201
|
+
name: "muscle-skin-tone-1",
|
|
1202
|
+
categories: ["Smileys and emotions"],
|
|
1203
|
+
tags: [":muscle:", ":flex:", ":bicep:", ":strong:"],
|
|
1204
|
+
durationInSeconds: 1.4,
|
|
1205
|
+
codepoint: "1f4aa_1f3fb"
|
|
1206
|
+
},
|
|
1207
|
+
{
|
|
1208
|
+
name: "muscle-skin-tone-2",
|
|
1209
|
+
categories: ["Smileys and emotions"],
|
|
1210
|
+
tags: [":muscle:", ":flex:", ":bicep:", ":strong:"],
|
|
1211
|
+
durationInSeconds: 1.4,
|
|
1212
|
+
codepoint: "1f4aa_1f3fc"
|
|
1213
|
+
},
|
|
1214
|
+
{
|
|
1215
|
+
name: "muscle-skin-tone-3",
|
|
1216
|
+
categories: ["Smileys and emotions"],
|
|
1217
|
+
tags: [":muscle:", ":flex:", ":bicep:", ":strong:"],
|
|
1218
|
+
durationInSeconds: 1.4,
|
|
1219
|
+
codepoint: "1f4aa_1f3fd"
|
|
1220
|
+
},
|
|
1221
|
+
{
|
|
1222
|
+
name: "muscle-skin-tone-4",
|
|
1223
|
+
categories: ["Smileys and emotions"],
|
|
1224
|
+
tags: [":muscle:", ":flex:", ":bicep:", ":strong:"],
|
|
1225
|
+
durationInSeconds: 1.4,
|
|
1226
|
+
codepoint: "1f4aa_1f3fe"
|
|
1227
|
+
},
|
|
1228
|
+
{
|
|
1229
|
+
name: "muscle-skin-tone-5",
|
|
1230
|
+
categories: ["Smileys and emotions"],
|
|
1231
|
+
tags: [":muscle:", ":flex:", ":bicep:", ":strong:"],
|
|
1232
|
+
durationInSeconds: 1.4,
|
|
1233
|
+
codepoint: "1f4aa_1f3ff"
|
|
1234
|
+
},
|
|
1235
|
+
{
|
|
1236
|
+
name: "clap",
|
|
1237
|
+
categories: ["Smileys and emotions"],
|
|
1238
|
+
tags: [":clap:"],
|
|
1239
|
+
durationInSeconds: 0.31666666666666665,
|
|
1240
|
+
codepoint: "1f44f"
|
|
1241
|
+
},
|
|
1242
|
+
{
|
|
1243
|
+
name: "clap-skin-tone-1",
|
|
1244
|
+
categories: ["Smileys and emotions"],
|
|
1245
|
+
tags: [":clap:"],
|
|
1246
|
+
durationInSeconds: 0.31666666666666665,
|
|
1247
|
+
codepoint: "1f44f_1f3fb"
|
|
1248
|
+
},
|
|
1249
|
+
{
|
|
1250
|
+
name: "clap-skin-tone-2",
|
|
1251
|
+
categories: ["Smileys and emotions"],
|
|
1252
|
+
tags: [":clap:"],
|
|
1253
|
+
durationInSeconds: 0.31666666666666665,
|
|
1254
|
+
codepoint: "1f44f_1f3fc"
|
|
1255
|
+
},
|
|
1256
|
+
{
|
|
1257
|
+
name: "clap-skin-tone-3",
|
|
1258
|
+
categories: ["Smileys and emotions"],
|
|
1259
|
+
tags: [":clap:"],
|
|
1260
|
+
durationInSeconds: 0.31666666666666665,
|
|
1261
|
+
codepoint: "1f44f_1f3fd"
|
|
1262
|
+
},
|
|
1263
|
+
{
|
|
1264
|
+
name: "clap-skin-tone-4",
|
|
1265
|
+
categories: ["Smileys and emotions"],
|
|
1266
|
+
tags: [":clap:"],
|
|
1267
|
+
durationInSeconds: 0.31666666666666665,
|
|
1268
|
+
codepoint: "1f44f_1f3fe"
|
|
1269
|
+
},
|
|
1270
|
+
{
|
|
1271
|
+
name: "clap-skin-tone-5",
|
|
1272
|
+
categories: ["Smileys and emotions"],
|
|
1273
|
+
tags: [":clap:"],
|
|
1274
|
+
durationInSeconds: 0.31666666666666665,
|
|
1275
|
+
codepoint: "1f44f_1f3ff"
|
|
1276
|
+
},
|
|
1277
|
+
{
|
|
1278
|
+
name: "thumbs-up",
|
|
1279
|
+
categories: ["Smileys and emotions"],
|
|
1280
|
+
tags: [":thumbs-up:", ":+1:"],
|
|
1281
|
+
durationInSeconds: 2.6333333333333333,
|
|
1282
|
+
codepoint: "1f44d"
|
|
1283
|
+
},
|
|
1284
|
+
{
|
|
1285
|
+
name: "thumbs-up-skin-tone-1",
|
|
1286
|
+
categories: ["Smileys and emotions"],
|
|
1287
|
+
tags: [":thumbs-up:", ":+1:"],
|
|
1288
|
+
durationInSeconds: 2.6333333333333333,
|
|
1289
|
+
codepoint: "1f44d_1f3fb"
|
|
1290
|
+
},
|
|
1291
|
+
{
|
|
1292
|
+
name: "thumbs-up-skin-tone-2",
|
|
1293
|
+
categories: ["Smileys and emotions"],
|
|
1294
|
+
tags: [":thumbs-up:", ":+1:"],
|
|
1295
|
+
durationInSeconds: 2.6333333333333333,
|
|
1296
|
+
codepoint: "1f44d_1f3fc"
|
|
1297
|
+
},
|
|
1298
|
+
{
|
|
1299
|
+
name: "thumbs-up-skin-tone-3",
|
|
1300
|
+
categories: ["Smileys and emotions"],
|
|
1301
|
+
tags: [":thumbs-up:", ":+1:"],
|
|
1302
|
+
durationInSeconds: 2.6333333333333333,
|
|
1303
|
+
codepoint: "1f44d_1f3fd"
|
|
1304
|
+
},
|
|
1305
|
+
{
|
|
1306
|
+
name: "thumbs-up-skin-tone-4",
|
|
1307
|
+
categories: ["Smileys and emotions"],
|
|
1308
|
+
tags: [":thumbs-up:", ":+1:"],
|
|
1309
|
+
durationInSeconds: 2.6333333333333333,
|
|
1310
|
+
codepoint: "1f44d_1f3fe"
|
|
1311
|
+
},
|
|
1312
|
+
{
|
|
1313
|
+
name: "thumbs-up-skin-tone-5",
|
|
1314
|
+
categories: ["Smileys and emotions"],
|
|
1315
|
+
tags: [":thumbs-up:", ":+1:"],
|
|
1316
|
+
durationInSeconds: 2.6333333333333333,
|
|
1317
|
+
codepoint: "1f44d_1f3ff"
|
|
1318
|
+
},
|
|
1319
|
+
{
|
|
1320
|
+
name: "thumbs-down",
|
|
1321
|
+
categories: ["Smileys and emotions"],
|
|
1322
|
+
tags: [":thumbs-down:"],
|
|
1323
|
+
durationInSeconds: 1.2,
|
|
1324
|
+
codepoint: "1f44e"
|
|
1325
|
+
},
|
|
1326
|
+
{
|
|
1327
|
+
name: "thumbs-down-skin-tone-1",
|
|
1328
|
+
categories: ["Smileys and emotions"],
|
|
1329
|
+
tags: [":thumbs-down:"],
|
|
1330
|
+
durationInSeconds: 1.2,
|
|
1331
|
+
codepoint: "1f44e_1f3fb"
|
|
1332
|
+
},
|
|
1333
|
+
{
|
|
1334
|
+
name: "thumbs-down-skin-tone-2",
|
|
1335
|
+
categories: ["Smileys and emotions"],
|
|
1336
|
+
tags: [":thumbs-down:"],
|
|
1337
|
+
durationInSeconds: 1.2,
|
|
1338
|
+
codepoint: "1f44e_1f3fc"
|
|
1339
|
+
},
|
|
1340
|
+
{
|
|
1341
|
+
name: "thumbs-down-skin-tone-3",
|
|
1342
|
+
categories: ["Smileys and emotions"],
|
|
1343
|
+
tags: [":thumbs-down:"],
|
|
1344
|
+
durationInSeconds: 1.2,
|
|
1345
|
+
codepoint: "1f44e_1f3fd"
|
|
1346
|
+
},
|
|
1347
|
+
{
|
|
1348
|
+
name: "thumbs-down-skin-tone-4",
|
|
1349
|
+
categories: ["Smileys and emotions"],
|
|
1350
|
+
tags: [":thumbs-down:"],
|
|
1351
|
+
durationInSeconds: 1.2,
|
|
1352
|
+
codepoint: "1f44e_1f3fe"
|
|
1353
|
+
},
|
|
1354
|
+
{
|
|
1355
|
+
name: "thumbs-down-skin-tone-5",
|
|
1356
|
+
categories: ["Smileys and emotions"],
|
|
1357
|
+
tags: [":thumbs-down:"],
|
|
1358
|
+
durationInSeconds: 1.2,
|
|
1359
|
+
codepoint: "1f44e_1f3ff"
|
|
1360
|
+
},
|
|
1361
|
+
{
|
|
1362
|
+
name: "raising-hands",
|
|
1363
|
+
categories: ["Smileys and emotions"],
|
|
1364
|
+
tags: [":raising-hands:", ":hooray:"],
|
|
1365
|
+
durationInSeconds: 2,
|
|
1366
|
+
codepoint: "1f64c"
|
|
1367
|
+
},
|
|
1368
|
+
{
|
|
1369
|
+
name: "raising-hands-skin-tone-1",
|
|
1370
|
+
categories: ["Smileys and emotions"],
|
|
1371
|
+
tags: [":raising-hands:", ":hooray:"],
|
|
1372
|
+
durationInSeconds: 2,
|
|
1373
|
+
codepoint: "1f64c_1f3fb"
|
|
1374
|
+
},
|
|
1375
|
+
{
|
|
1376
|
+
name: "raising-hands-skin-tone-2",
|
|
1377
|
+
categories: ["Smileys and emotions"],
|
|
1378
|
+
tags: [":raising-hands:", ":hooray:"],
|
|
1379
|
+
durationInSeconds: 2,
|
|
1380
|
+
codepoint: "1f64c_1f3fc"
|
|
1381
|
+
},
|
|
1382
|
+
{
|
|
1383
|
+
name: "raising-hands-skin-tone-3",
|
|
1384
|
+
categories: ["Smileys and emotions"],
|
|
1385
|
+
tags: [":raising-hands:", ":hooray:"],
|
|
1386
|
+
durationInSeconds: 2,
|
|
1387
|
+
codepoint: "1f64c_1f3fd"
|
|
1388
|
+
},
|
|
1389
|
+
{
|
|
1390
|
+
name: "raising-hands-skin-tone-4",
|
|
1391
|
+
categories: ["Smileys and emotions"],
|
|
1392
|
+
tags: [":raising-hands:", ":hooray:"],
|
|
1393
|
+
durationInSeconds: 2,
|
|
1394
|
+
codepoint: "1f64c_1f3fe"
|
|
1395
|
+
},
|
|
1396
|
+
{
|
|
1397
|
+
name: "raising-hands-skin-tone-5",
|
|
1398
|
+
categories: ["Smileys and emotions"],
|
|
1399
|
+
tags: [":raising-hands:", ":hooray:"],
|
|
1400
|
+
durationInSeconds: 2,
|
|
1401
|
+
codepoint: "1f64c_1f3ff"
|
|
1402
|
+
},
|
|
1403
|
+
{
|
|
1404
|
+
name: "wave",
|
|
1405
|
+
categories: ["Smileys and emotions"],
|
|
1406
|
+
tags: [":wave:"],
|
|
1407
|
+
durationInSeconds: 0.9666666666666667,
|
|
1408
|
+
codepoint: "1f44b"
|
|
1409
|
+
},
|
|
1410
|
+
{
|
|
1411
|
+
name: "wave-skin-tone-1",
|
|
1412
|
+
categories: ["Smileys and emotions"],
|
|
1413
|
+
tags: [":wave:"],
|
|
1414
|
+
durationInSeconds: 0.9666666666666667,
|
|
1415
|
+
codepoint: "1f44b_1f3fb"
|
|
1416
|
+
},
|
|
1417
|
+
{
|
|
1418
|
+
name: "wave-skin-tone-2",
|
|
1419
|
+
categories: ["Smileys and emotions"],
|
|
1420
|
+
tags: [":wave:"],
|
|
1421
|
+
durationInSeconds: 0.9666666666666667,
|
|
1422
|
+
codepoint: "1f44b_1f3fc"
|
|
1423
|
+
},
|
|
1424
|
+
{
|
|
1425
|
+
name: "wave-skin-tone-3",
|
|
1426
|
+
categories: ["Smileys and emotions"],
|
|
1427
|
+
tags: [":wave:"],
|
|
1428
|
+
durationInSeconds: 0.9666666666666667,
|
|
1429
|
+
codepoint: "1f44b_1f3fd"
|
|
1430
|
+
},
|
|
1431
|
+
{
|
|
1432
|
+
name: "wave-skin-tone-4",
|
|
1433
|
+
categories: ["Smileys and emotions"],
|
|
1434
|
+
tags: [":wave:"],
|
|
1435
|
+
durationInSeconds: 0.9666666666666667,
|
|
1436
|
+
codepoint: "1f44b_1f3fe"
|
|
1437
|
+
},
|
|
1438
|
+
{
|
|
1439
|
+
name: "wave-skin-tone-5",
|
|
1440
|
+
categories: ["Smileys and emotions"],
|
|
1441
|
+
tags: [":wave:"],
|
|
1442
|
+
durationInSeconds: 0.9666666666666667,
|
|
1443
|
+
codepoint: "1f44b_1f3ff"
|
|
1444
|
+
},
|
|
1445
|
+
{
|
|
1446
|
+
name: "victory",
|
|
1447
|
+
categories: ["Smileys and emotions"],
|
|
1448
|
+
tags: [":victory:", ":v:", ":peace-hand:"],
|
|
1449
|
+
durationInSeconds: 1.8,
|
|
1450
|
+
codepoint: "270c_fe0f"
|
|
1451
|
+
},
|
|
1452
|
+
{
|
|
1453
|
+
name: "victory-skin-tone-1",
|
|
1454
|
+
categories: ["Smileys and emotions"],
|
|
1455
|
+
tags: [":victory:", ":v:", ":peace-hand:"],
|
|
1456
|
+
durationInSeconds: 1.8,
|
|
1457
|
+
codepoint: "270c_1f3fb"
|
|
1458
|
+
},
|
|
1459
|
+
{
|
|
1460
|
+
name: "victory-skin-tone-2",
|
|
1461
|
+
categories: ["Smileys and emotions"],
|
|
1462
|
+
tags: [":victory:", ":v:", ":peace-hand:"],
|
|
1463
|
+
durationInSeconds: 1.8,
|
|
1464
|
+
codepoint: "270c_1f3fc"
|
|
1465
|
+
},
|
|
1466
|
+
{
|
|
1467
|
+
name: "victory-skin-tone-3",
|
|
1468
|
+
categories: ["Smileys and emotions"],
|
|
1469
|
+
tags: [":victory:", ":v:", ":peace-hand:"],
|
|
1470
|
+
durationInSeconds: 1.8,
|
|
1471
|
+
codepoint: "270c_1f3fd"
|
|
1472
|
+
},
|
|
1473
|
+
{
|
|
1474
|
+
name: "victory-skin-tone-4",
|
|
1475
|
+
categories: ["Smileys and emotions"],
|
|
1476
|
+
tags: [":victory:", ":v:", ":peace-hand:"],
|
|
1477
|
+
durationInSeconds: 1.8,
|
|
1478
|
+
codepoint: "270c_1f3fe"
|
|
1479
|
+
},
|
|
1480
|
+
{
|
|
1481
|
+
name: "victory-skin-tone-5",
|
|
1482
|
+
categories: ["Smileys and emotions"],
|
|
1483
|
+
tags: [":victory:", ":v:", ":peace-hand:"],
|
|
1484
|
+
durationInSeconds: 1.8,
|
|
1485
|
+
codepoint: "270c_1f3ff"
|
|
1486
|
+
},
|
|
1487
|
+
{
|
|
1488
|
+
name: "crossed-fingers",
|
|
1489
|
+
categories: ["Smileys and emotions"],
|
|
1490
|
+
tags: [":crossed-fingers:"],
|
|
1491
|
+
durationInSeconds: 1.6666666666666667,
|
|
1492
|
+
codepoint: "1f91e"
|
|
1493
|
+
},
|
|
1494
|
+
{
|
|
1495
|
+
name: "crossed-fingers-skin-tone-1",
|
|
1496
|
+
categories: ["Smileys and emotions"],
|
|
1497
|
+
tags: [":crossed-fingers:"],
|
|
1498
|
+
durationInSeconds: 1.6666666666666667,
|
|
1499
|
+
codepoint: "1f91e_1f3fb"
|
|
1500
|
+
},
|
|
1501
|
+
{
|
|
1502
|
+
name: "crossed-fingers-skin-tone-2",
|
|
1503
|
+
categories: ["Smileys and emotions"],
|
|
1504
|
+
tags: [":crossed-fingers:"],
|
|
1505
|
+
durationInSeconds: 1.6666666666666667,
|
|
1506
|
+
codepoint: "1f91e_1f3fc"
|
|
1507
|
+
},
|
|
1508
|
+
{
|
|
1509
|
+
name: "crossed-fingers-skin-tone-3",
|
|
1510
|
+
categories: ["Smileys and emotions"],
|
|
1511
|
+
tags: [":crossed-fingers:"],
|
|
1512
|
+
durationInSeconds: 1.6666666666666667,
|
|
1513
|
+
codepoint: "1f91e_1f3fd"
|
|
1514
|
+
},
|
|
1515
|
+
{
|
|
1516
|
+
name: "crossed-fingers-skin-tone-4",
|
|
1517
|
+
categories: ["Smileys and emotions"],
|
|
1518
|
+
tags: [":crossed-fingers:"],
|
|
1519
|
+
durationInSeconds: 1.6666666666666667,
|
|
1520
|
+
codepoint: "1f91e_1f3fe"
|
|
1521
|
+
},
|
|
1522
|
+
{
|
|
1523
|
+
name: "crossed-fingers-skin-tone-5",
|
|
1524
|
+
categories: ["Smileys and emotions"],
|
|
1525
|
+
tags: [":crossed-fingers:"],
|
|
1526
|
+
durationInSeconds: 1.6666666666666667,
|
|
1527
|
+
codepoint: "1f91e_1f3ff"
|
|
1528
|
+
},
|
|
1529
|
+
{
|
|
1530
|
+
name: "index-finger",
|
|
1531
|
+
categories: ["Smileys and emotions"],
|
|
1532
|
+
tags: [":index-finger:"],
|
|
1533
|
+
durationInSeconds: 1.9666666666666666,
|
|
1534
|
+
codepoint: "261d_fe0f"
|
|
1535
|
+
},
|
|
1536
|
+
{
|
|
1537
|
+
name: "index-finger-skin-tone-1",
|
|
1538
|
+
categories: ["Smileys and emotions"],
|
|
1539
|
+
tags: [":index-finger:"],
|
|
1540
|
+
durationInSeconds: 1.9666666666666666,
|
|
1541
|
+
codepoint: "261d_1f3fb"
|
|
1542
|
+
},
|
|
1543
|
+
{
|
|
1544
|
+
name: "index-finger-skin-tone-2",
|
|
1545
|
+
categories: ["Smileys and emotions"],
|
|
1546
|
+
tags: [":index-finger:"],
|
|
1547
|
+
durationInSeconds: 1.9666666666666666,
|
|
1548
|
+
codepoint: "261d_1f3fc"
|
|
1549
|
+
},
|
|
1550
|
+
{
|
|
1551
|
+
name: "index-finger-skin-tone-3",
|
|
1552
|
+
categories: ["Smileys and emotions"],
|
|
1553
|
+
tags: [":index-finger:"],
|
|
1554
|
+
durationInSeconds: 1.9666666666666666,
|
|
1555
|
+
codepoint: "261d_1f3fd"
|
|
1556
|
+
},
|
|
1557
|
+
{
|
|
1558
|
+
name: "index-finger-skin-tone-4",
|
|
1559
|
+
categories: ["Smileys and emotions"],
|
|
1560
|
+
tags: [":index-finger:"],
|
|
1561
|
+
durationInSeconds: 1.9666666666666666,
|
|
1562
|
+
codepoint: "261d_1f3fe"
|
|
1563
|
+
},
|
|
1564
|
+
{
|
|
1565
|
+
name: "index-finger-skin-tone-5",
|
|
1566
|
+
categories: ["Smileys and emotions"],
|
|
1567
|
+
tags: [":index-finger:"],
|
|
1568
|
+
durationInSeconds: 1.9666666666666666,
|
|
1569
|
+
codepoint: "261d_1f3ff"
|
|
1570
|
+
},
|
|
1571
|
+
{
|
|
1572
|
+
name: "folded-hands",
|
|
1573
|
+
categories: ["Smileys and emotions"],
|
|
1574
|
+
tags: [
|
|
1575
|
+
":folded-hands:",
|
|
1576
|
+
":please:",
|
|
1577
|
+
":pray:",
|
|
1578
|
+
":hope:",
|
|
1579
|
+
":wish:",
|
|
1580
|
+
":thank-you:",
|
|
1581
|
+
":high-five:"
|
|
1582
|
+
],
|
|
1583
|
+
durationInSeconds: 1.5,
|
|
1584
|
+
codepoint: "1f64f"
|
|
1585
|
+
},
|
|
1586
|
+
{
|
|
1587
|
+
name: "folded-hands-skin-tone-1",
|
|
1588
|
+
categories: ["Smileys and emotions"],
|
|
1589
|
+
tags: [
|
|
1590
|
+
":folded-hands:",
|
|
1591
|
+
":please:",
|
|
1592
|
+
":pray:",
|
|
1593
|
+
":hope:",
|
|
1594
|
+
":wish:",
|
|
1595
|
+
":thank-you:",
|
|
1596
|
+
":high-five:"
|
|
1597
|
+
],
|
|
1598
|
+
durationInSeconds: 1.5,
|
|
1599
|
+
codepoint: "1f64f_1f3fb"
|
|
1600
|
+
},
|
|
1601
|
+
{
|
|
1602
|
+
name: "folded-hands-skin-tone-2",
|
|
1603
|
+
categories: ["Smileys and emotions"],
|
|
1604
|
+
tags: [
|
|
1605
|
+
":folded-hands:",
|
|
1606
|
+
":please:",
|
|
1607
|
+
":pray:",
|
|
1608
|
+
":hope:",
|
|
1609
|
+
":wish:",
|
|
1610
|
+
":thank-you:",
|
|
1611
|
+
":high-five:"
|
|
1612
|
+
],
|
|
1613
|
+
durationInSeconds: 1.5,
|
|
1614
|
+
codepoint: "1f64f_1f3fc"
|
|
1615
|
+
},
|
|
1616
|
+
{
|
|
1617
|
+
name: "folded-hands-skin-tone-3",
|
|
1618
|
+
categories: ["Smileys and emotions"],
|
|
1619
|
+
tags: [
|
|
1620
|
+
":folded-hands:",
|
|
1621
|
+
":please:",
|
|
1622
|
+
":pray:",
|
|
1623
|
+
":hope:",
|
|
1624
|
+
":wish:",
|
|
1625
|
+
":thank-you:",
|
|
1626
|
+
":high-five:"
|
|
1627
|
+
],
|
|
1628
|
+
durationInSeconds: 1.5,
|
|
1629
|
+
codepoint: "1f64f_1f3fd"
|
|
1630
|
+
},
|
|
1631
|
+
{
|
|
1632
|
+
name: "folded-hands-skin-tone-4",
|
|
1633
|
+
categories: ["Smileys and emotions"],
|
|
1634
|
+
tags: [
|
|
1635
|
+
":folded-hands:",
|
|
1636
|
+
":please:",
|
|
1637
|
+
":pray:",
|
|
1638
|
+
":hope:",
|
|
1639
|
+
":wish:",
|
|
1640
|
+
":thank-you:",
|
|
1641
|
+
":high-five:"
|
|
1642
|
+
],
|
|
1643
|
+
durationInSeconds: 1.5,
|
|
1644
|
+
codepoint: "1f64f_1f3fe"
|
|
1645
|
+
},
|
|
1646
|
+
{
|
|
1647
|
+
name: "folded-hands-skin-tone-5",
|
|
1648
|
+
categories: ["Smileys and emotions"],
|
|
1649
|
+
tags: [
|
|
1650
|
+
":folded-hands:",
|
|
1651
|
+
":please:",
|
|
1652
|
+
":pray:",
|
|
1653
|
+
":hope:",
|
|
1654
|
+
":wish:",
|
|
1655
|
+
":thank-you:",
|
|
1656
|
+
":high-five:"
|
|
1657
|
+
],
|
|
1658
|
+
durationInSeconds: 1.5,
|
|
1659
|
+
codepoint: "1f64f_1f3ff"
|
|
1660
|
+
},
|
|
1661
|
+
{
|
|
1662
|
+
name: "dancer-woman",
|
|
1663
|
+
categories: ["People"],
|
|
1664
|
+
tags: [":dancer-woman:"],
|
|
1665
|
+
durationInSeconds: 1.6,
|
|
1666
|
+
codepoint: "1f483"
|
|
1667
|
+
},
|
|
1668
|
+
{
|
|
1669
|
+
name: "dancer-woman-skin-tone-1",
|
|
1670
|
+
categories: ["People"],
|
|
1671
|
+
tags: [":dancer-woman:"],
|
|
1672
|
+
durationInSeconds: 1.6,
|
|
1673
|
+
codepoint: "1f483_1f3fb"
|
|
1674
|
+
},
|
|
1675
|
+
{
|
|
1676
|
+
name: "dancer-woman-skin-tone-2",
|
|
1677
|
+
categories: ["People"],
|
|
1678
|
+
tags: [":dancer-woman:"],
|
|
1679
|
+
durationInSeconds: 1.6,
|
|
1680
|
+
codepoint: "1f483_1f3fc"
|
|
1681
|
+
},
|
|
1682
|
+
{
|
|
1683
|
+
name: "dancer-woman-skin-tone-3",
|
|
1684
|
+
categories: ["People"],
|
|
1685
|
+
tags: [":dancer-woman:"],
|
|
1686
|
+
durationInSeconds: 1.6,
|
|
1687
|
+
codepoint: "1f483_1f3fd"
|
|
1688
|
+
},
|
|
1689
|
+
{
|
|
1690
|
+
name: "dancer-woman-skin-tone-4",
|
|
1691
|
+
categories: ["People"],
|
|
1692
|
+
tags: [":dancer-woman:"],
|
|
1693
|
+
durationInSeconds: 1.6,
|
|
1694
|
+
codepoint: "1f483_1f3fe"
|
|
1695
|
+
},
|
|
1696
|
+
{
|
|
1697
|
+
name: "dancer-woman-skin-tone-5",
|
|
1698
|
+
categories: ["People"],
|
|
1699
|
+
tags: [":dancer-woman:"],
|
|
1700
|
+
durationInSeconds: 1.6,
|
|
1701
|
+
codepoint: "1f483_1f3ff"
|
|
1702
|
+
},
|
|
1703
|
+
{
|
|
1704
|
+
name: "rose",
|
|
1705
|
+
categories: ["Animals and nature"],
|
|
1706
|
+
tags: [":rose:"],
|
|
1707
|
+
durationInSeconds: 2.4,
|
|
1708
|
+
codepoint: "1f339"
|
|
1709
|
+
},
|
|
1710
|
+
{
|
|
1711
|
+
name: "wilted-flower",
|
|
1712
|
+
categories: ["Animals and nature"],
|
|
1713
|
+
tags: [":wilted-flower:"],
|
|
1714
|
+
durationInSeconds: 2.4,
|
|
1715
|
+
codepoint: "1f940"
|
|
1716
|
+
},
|
|
1717
|
+
{
|
|
1718
|
+
name: "fallen-leaf",
|
|
1719
|
+
categories: ["Animals and nature"],
|
|
1720
|
+
tags: [":fallen-leaf:"],
|
|
1721
|
+
durationInSeconds: 3.533333333333333,
|
|
1722
|
+
codepoint: "1f342"
|
|
1723
|
+
},
|
|
1724
|
+
{
|
|
1725
|
+
name: "plant",
|
|
1726
|
+
categories: ["Animals and nature"],
|
|
1727
|
+
tags: [":plant:", ":seed:"],
|
|
1728
|
+
durationInSeconds: 5.75,
|
|
1729
|
+
codepoint: "1f331"
|
|
1730
|
+
},
|
|
1731
|
+
{
|
|
1732
|
+
name: "leaves",
|
|
1733
|
+
categories: ["Animals and nature"],
|
|
1734
|
+
tags: [":leaves:"],
|
|
1735
|
+
durationInSeconds: 1.8,
|
|
1736
|
+
codepoint: "1f343"
|
|
1737
|
+
},
|
|
1738
|
+
{
|
|
1739
|
+
name: "luck",
|
|
1740
|
+
categories: ["Animals and nature"],
|
|
1741
|
+
tags: [":luck:", ":four-leaf-clover:"],
|
|
1742
|
+
durationInSeconds: 1.8,
|
|
1743
|
+
codepoint: "1f340"
|
|
1744
|
+
},
|
|
1745
|
+
{
|
|
1746
|
+
name: "snowflake",
|
|
1747
|
+
categories: ["Animals and nature"],
|
|
1748
|
+
tags: [":snowflake:", ":winter:", ":cold:"],
|
|
1749
|
+
durationInSeconds: 4.5,
|
|
1750
|
+
codepoint: "2744_fe0f"
|
|
1751
|
+
},
|
|
1752
|
+
{
|
|
1753
|
+
name: "volcano",
|
|
1754
|
+
categories: ["Animals and nature"],
|
|
1755
|
+
tags: [":volcano:"],
|
|
1756
|
+
durationInSeconds: 1.2,
|
|
1757
|
+
codepoint: "1f30b"
|
|
1758
|
+
},
|
|
1759
|
+
{
|
|
1760
|
+
name: "sunrise",
|
|
1761
|
+
categories: ["Animals and nature"],
|
|
1762
|
+
tags: [":sunrise:"],
|
|
1763
|
+
durationInSeconds: 5,
|
|
1764
|
+
codepoint: "1f305"
|
|
1765
|
+
},
|
|
1766
|
+
{
|
|
1767
|
+
name: "sunrise-over-mountains",
|
|
1768
|
+
categories: ["Animals and nature"],
|
|
1769
|
+
tags: [":sunrise-over-mountains:"],
|
|
1770
|
+
durationInSeconds: 1.0166666666666666,
|
|
1771
|
+
codepoint: "1f304"
|
|
1772
|
+
},
|
|
1773
|
+
{
|
|
1774
|
+
name: "rainbow",
|
|
1775
|
+
categories: ["Animals and nature"],
|
|
1776
|
+
tags: [":rainbow:"],
|
|
1777
|
+
durationInSeconds: 2,
|
|
1778
|
+
codepoint: "1f308"
|
|
1779
|
+
},
|
|
1780
|
+
{
|
|
1781
|
+
name: "bubbles",
|
|
1782
|
+
categories: ["Animals and nature"],
|
|
1783
|
+
tags: [":bubbles:"],
|
|
1784
|
+
durationInSeconds: 2.3333333333333335,
|
|
1785
|
+
codepoint: "1fae7"
|
|
1786
|
+
},
|
|
1787
|
+
{
|
|
1788
|
+
name: "ocean",
|
|
1789
|
+
categories: ["Animals and nature"],
|
|
1790
|
+
tags: [":ocean:"],
|
|
1791
|
+
durationInSeconds: 1.2333333333333334,
|
|
1792
|
+
codepoint: "1f30a"
|
|
1793
|
+
},
|
|
1794
|
+
{
|
|
1795
|
+
name: "wind-face",
|
|
1796
|
+
categories: ["Animals and nature"],
|
|
1797
|
+
tags: [":wind-face:"],
|
|
1798
|
+
durationInSeconds: 1.6,
|
|
1799
|
+
codepoint: "1f32c_fe0f"
|
|
1800
|
+
},
|
|
1801
|
+
{
|
|
1802
|
+
name: "tornado",
|
|
1803
|
+
categories: ["Animals and nature"],
|
|
1804
|
+
tags: [":tornado:"],
|
|
1805
|
+
durationInSeconds: 2,
|
|
1806
|
+
codepoint: "1f32a_fe0f"
|
|
1807
|
+
},
|
|
1808
|
+
{
|
|
1809
|
+
name: "electricity",
|
|
1810
|
+
categories: ["Animals and nature"],
|
|
1811
|
+
tags: [":electricity:", ":zap:", ":lightning:"],
|
|
1812
|
+
durationInSeconds: 1.3833333333333333,
|
|
1813
|
+
codepoint: "26a1"
|
|
1814
|
+
},
|
|
1815
|
+
{
|
|
1816
|
+
name: "droplet",
|
|
1817
|
+
categories: ["Animals and nature"],
|
|
1818
|
+
tags: [":droplet:"],
|
|
1819
|
+
durationInSeconds: 1.2,
|
|
1820
|
+
codepoint: "1f4a7"
|
|
1821
|
+
},
|
|
1822
|
+
{
|
|
1823
|
+
name: "rain-cloud",
|
|
1824
|
+
categories: ["Animals and nature"],
|
|
1825
|
+
tags: [":rain-cloud:"],
|
|
1826
|
+
durationInSeconds: 3.2666666666666666,
|
|
1827
|
+
codepoint: "1f327_fe0f"
|
|
1828
|
+
},
|
|
1829
|
+
{
|
|
1830
|
+
name: "cloud-with-lightning",
|
|
1831
|
+
categories: ["Animals and nature"],
|
|
1832
|
+
tags: [":cloud-with-lightning:"],
|
|
1833
|
+
durationInSeconds: 1.4,
|
|
1834
|
+
codepoint: "1f329_fe0f"
|
|
1835
|
+
},
|
|
1836
|
+
{
|
|
1837
|
+
name: "dizzy",
|
|
1838
|
+
categories: ["Animals and nature"],
|
|
1839
|
+
tags: [":dizzy:"],
|
|
1840
|
+
durationInSeconds: 1.2,
|
|
1841
|
+
codepoint: "1f4ab"
|
|
1842
|
+
},
|
|
1843
|
+
{
|
|
1844
|
+
name: "comet",
|
|
1845
|
+
categories: ["Animals and nature"],
|
|
1846
|
+
tags: [":comet:"],
|
|
1847
|
+
durationInSeconds: 1.65,
|
|
1848
|
+
codepoint: "2604_fe0f"
|
|
1849
|
+
},
|
|
1850
|
+
{
|
|
1851
|
+
name: "globe-showing-europe-africa",
|
|
1852
|
+
categories: ["Animals and nature"],
|
|
1853
|
+
tags: [":globe-showing-Europe-Africa:"],
|
|
1854
|
+
durationInSeconds: 2.7,
|
|
1855
|
+
codepoint: "1f30d"
|
|
1856
|
+
},
|
|
1857
|
+
{
|
|
1858
|
+
name: "globe-showing-americas",
|
|
1859
|
+
categories: ["Animals and nature"],
|
|
1860
|
+
tags: [":globe-showing-Americas:"],
|
|
1861
|
+
durationInSeconds: 2.7,
|
|
1862
|
+
codepoint: "1f30e"
|
|
1863
|
+
},
|
|
1864
|
+
{
|
|
1865
|
+
name: "globe-showing-asia-australia",
|
|
1866
|
+
categories: ["Animals and nature"],
|
|
1867
|
+
tags: [":globe-showing-Asia-Australia:"],
|
|
1868
|
+
durationInSeconds: 2.7,
|
|
1869
|
+
codepoint: "1f30f"
|
|
1870
|
+
},
|
|
1871
|
+
{
|
|
1872
|
+
name: "cow-face",
|
|
1873
|
+
categories: ["Animals and nature"],
|
|
1874
|
+
tags: [":cow-face:"],
|
|
1875
|
+
durationInSeconds: 1.7666666666666666,
|
|
1876
|
+
codepoint: "1f42e"
|
|
1877
|
+
},
|
|
1878
|
+
{
|
|
1879
|
+
name: "unicorn",
|
|
1880
|
+
categories: ["Animals and nature"],
|
|
1881
|
+
tags: [":unicorn:"],
|
|
1882
|
+
durationInSeconds: 3.8,
|
|
1883
|
+
codepoint: "1f984"
|
|
1884
|
+
},
|
|
1885
|
+
{
|
|
1886
|
+
name: "lizard",
|
|
1887
|
+
categories: ["Animals and nature"],
|
|
1888
|
+
tags: [":lizard:"],
|
|
1889
|
+
durationInSeconds: 1.7,
|
|
1890
|
+
codepoint: "1f98e"
|
|
1891
|
+
},
|
|
1892
|
+
{
|
|
1893
|
+
name: "dragon",
|
|
1894
|
+
categories: ["Animals and nature"],
|
|
1895
|
+
tags: [":dragon:"],
|
|
1896
|
+
durationInSeconds: 2,
|
|
1897
|
+
codepoint: "1f409"
|
|
1898
|
+
},
|
|
1899
|
+
{
|
|
1900
|
+
name: "t-rex",
|
|
1901
|
+
categories: ["Animals and nature"],
|
|
1902
|
+
tags: [":t-rex:"],
|
|
1903
|
+
durationInSeconds: 1.55,
|
|
1904
|
+
codepoint: "1f996"
|
|
1905
|
+
},
|
|
1906
|
+
{
|
|
1907
|
+
name: "dinosaur",
|
|
1908
|
+
categories: ["Animals and nature"],
|
|
1909
|
+
tags: [":dinosaur:"],
|
|
1910
|
+
durationInSeconds: 3.3666666666666667,
|
|
1911
|
+
codepoint: "1f995"
|
|
1912
|
+
},
|
|
1913
|
+
{
|
|
1914
|
+
name: "turtle",
|
|
1915
|
+
categories: ["Animals and nature"],
|
|
1916
|
+
tags: [":turtle:"],
|
|
1917
|
+
durationInSeconds: 3.4,
|
|
1918
|
+
codepoint: "1f422"
|
|
1919
|
+
},
|
|
1920
|
+
{
|
|
1921
|
+
name: "crocodile",
|
|
1922
|
+
categories: ["Animals and nature"],
|
|
1923
|
+
tags: [":crocodile:"],
|
|
1924
|
+
durationInSeconds: 2.933333333333333,
|
|
1925
|
+
codepoint: "1f40a"
|
|
1926
|
+
},
|
|
1927
|
+
{
|
|
1928
|
+
name: "snake",
|
|
1929
|
+
categories: ["Animals and nature"],
|
|
1930
|
+
tags: [":snake:"],
|
|
1931
|
+
durationInSeconds: 3.2666666666666666,
|
|
1932
|
+
codepoint: "1f40d"
|
|
1933
|
+
},
|
|
1934
|
+
{
|
|
1935
|
+
name: "frog",
|
|
1936
|
+
categories: ["Animals and nature"],
|
|
1937
|
+
tags: [":frog:"],
|
|
1938
|
+
durationInSeconds: 4.066666666666666,
|
|
1939
|
+
codepoint: "1f438"
|
|
1940
|
+
},
|
|
1941
|
+
{
|
|
1942
|
+
name: "rabbit",
|
|
1943
|
+
categories: ["Animals and nature"],
|
|
1944
|
+
tags: [":rabbit:"],
|
|
1945
|
+
durationInSeconds: 1.3333333333333333,
|
|
1946
|
+
codepoint: "1f407"
|
|
1947
|
+
},
|
|
1948
|
+
{
|
|
1949
|
+
name: "rat",
|
|
1950
|
+
categories: ["Animals and nature"],
|
|
1951
|
+
tags: [":rat:"],
|
|
1952
|
+
durationInSeconds: 2.6333333333333333,
|
|
1953
|
+
codepoint: "1f400"
|
|
1954
|
+
},
|
|
1955
|
+
{
|
|
1956
|
+
name: "poodle",
|
|
1957
|
+
categories: ["Animals and nature"],
|
|
1958
|
+
tags: [":poodle:"],
|
|
1959
|
+
durationInSeconds: 2.8,
|
|
1960
|
+
codepoint: "1f429"
|
|
1961
|
+
},
|
|
1962
|
+
{
|
|
1963
|
+
name: "dog",
|
|
1964
|
+
categories: ["Animals and nature"],
|
|
1965
|
+
tags: [":dog:"],
|
|
1966
|
+
durationInSeconds: 2.433333333333333,
|
|
1967
|
+
codepoint: "1f415"
|
|
1968
|
+
},
|
|
1969
|
+
{
|
|
1970
|
+
name: "guide-dog",
|
|
1971
|
+
categories: ["Animals and nature"],
|
|
1972
|
+
tags: [":guide-dog:"],
|
|
1973
|
+
durationInSeconds: 2.1666666666666665,
|
|
1974
|
+
codepoint: "1f9ae"
|
|
1975
|
+
},
|
|
1976
|
+
{
|
|
1977
|
+
name: "service-dog",
|
|
1978
|
+
categories: ["Animals and nature"],
|
|
1979
|
+
tags: [":service-dog:"],
|
|
1980
|
+
durationInSeconds: 3,
|
|
1981
|
+
codepoint: "1f415_200d_1f9ba"
|
|
1982
|
+
},
|
|
1983
|
+
{
|
|
1984
|
+
name: "pig",
|
|
1985
|
+
categories: ["Animals and nature"],
|
|
1986
|
+
tags: [":pig:"],
|
|
1987
|
+
durationInSeconds: 3.566666666666667,
|
|
1988
|
+
codepoint: "1f416"
|
|
1989
|
+
},
|
|
1990
|
+
{
|
|
1991
|
+
name: "racehorse",
|
|
1992
|
+
categories: ["Animals and nature"],
|
|
1993
|
+
tags: [":racehorse:"],
|
|
1994
|
+
durationInSeconds: 0.5166666666666667,
|
|
1995
|
+
codepoint: "1f40e"
|
|
1996
|
+
},
|
|
1997
|
+
{
|
|
1998
|
+
name: "donkey",
|
|
1999
|
+
categories: ["Animals and nature"],
|
|
2000
|
+
tags: [":donkey:"],
|
|
2001
|
+
durationInSeconds: 2,
|
|
2002
|
+
codepoint: "1facf"
|
|
2003
|
+
},
|
|
2004
|
+
{
|
|
2005
|
+
name: "ox",
|
|
2006
|
+
categories: ["Animals and nature"],
|
|
2007
|
+
tags: [":ox:"],
|
|
2008
|
+
durationInSeconds: 3.3,
|
|
2009
|
+
codepoint: "1f402"
|
|
2010
|
+
},
|
|
2011
|
+
{
|
|
2012
|
+
name: "goat",
|
|
2013
|
+
categories: ["Animals and nature"],
|
|
2014
|
+
tags: [":goat:"],
|
|
2015
|
+
durationInSeconds: 2.066666666666667,
|
|
2016
|
+
codepoint: "1f410"
|
|
2017
|
+
},
|
|
2018
|
+
{
|
|
2019
|
+
name: "kangaroo",
|
|
2020
|
+
categories: ["Animals and nature"],
|
|
2021
|
+
tags: [":kangaroo:"],
|
|
2022
|
+
durationInSeconds: 1.6,
|
|
2023
|
+
codepoint: "1f998"
|
|
2024
|
+
},
|
|
2025
|
+
{
|
|
2026
|
+
name: "tiger",
|
|
2027
|
+
categories: ["Animals and nature"],
|
|
2028
|
+
tags: [":tiger:"],
|
|
2029
|
+
durationInSeconds: 5.1,
|
|
2030
|
+
codepoint: "1f405"
|
|
2031
|
+
},
|
|
2032
|
+
{
|
|
2033
|
+
name: "monkey",
|
|
2034
|
+
categories: ["Animals and nature"],
|
|
2035
|
+
tags: [":monkey:"],
|
|
2036
|
+
durationInSeconds: 1.7666666666666666,
|
|
2037
|
+
codepoint: "1f412"
|
|
2038
|
+
},
|
|
2039
|
+
{
|
|
2040
|
+
name: "gorilla",
|
|
2041
|
+
categories: ["Animals and nature"],
|
|
2042
|
+
tags: [":gorilla:"],
|
|
2043
|
+
durationInSeconds: 2.7333333333333334,
|
|
2044
|
+
codepoint: "1f98d"
|
|
2045
|
+
},
|
|
2046
|
+
{
|
|
2047
|
+
name: "orangutan",
|
|
2048
|
+
categories: ["Animals and nature"],
|
|
2049
|
+
tags: [":orangutan:"],
|
|
2050
|
+
durationInSeconds: 3.8333333333333335,
|
|
2051
|
+
codepoint: "1f9a7"
|
|
2052
|
+
},
|
|
2053
|
+
{
|
|
2054
|
+
name: "chipmunk",
|
|
2055
|
+
categories: ["Animals and nature"],
|
|
2056
|
+
tags: [":chipmunk:"],
|
|
2057
|
+
durationInSeconds: 3.066666666666667,
|
|
2058
|
+
codepoint: "1f43f_fe0f"
|
|
2059
|
+
},
|
|
2060
|
+
{
|
|
2061
|
+
name: "otter",
|
|
2062
|
+
categories: ["Animals and nature"],
|
|
2063
|
+
tags: [":otter:"],
|
|
2064
|
+
durationInSeconds: 3,
|
|
2065
|
+
codepoint: "1f9a6"
|
|
2066
|
+
},
|
|
2067
|
+
{
|
|
2068
|
+
name: "bat",
|
|
2069
|
+
categories: ["Animals and nature"],
|
|
2070
|
+
tags: [":bat:"],
|
|
2071
|
+
durationInSeconds: 1,
|
|
2072
|
+
codepoint: "1f987"
|
|
2073
|
+
},
|
|
2074
|
+
{
|
|
2075
|
+
name: "bird",
|
|
2076
|
+
categories: ["Animals and nature"],
|
|
2077
|
+
tags: [":bird:"],
|
|
2078
|
+
durationInSeconds: 3.3666666666666667,
|
|
2079
|
+
codepoint: "1f426"
|
|
2080
|
+
},
|
|
2081
|
+
{
|
|
2082
|
+
name: "black-bird",
|
|
2083
|
+
categories: ["Animals and nature"],
|
|
2084
|
+
tags: [":black-bird:"],
|
|
2085
|
+
durationInSeconds: 3.3666666666666667,
|
|
2086
|
+
codepoint: "1f426_200d_2b1b"
|
|
2087
|
+
},
|
|
2088
|
+
{
|
|
2089
|
+
name: "rooster",
|
|
2090
|
+
categories: ["Animals and nature"],
|
|
2091
|
+
tags: [":rooster:"],
|
|
2092
|
+
durationInSeconds: 2.85,
|
|
2093
|
+
codepoint: "1f413"
|
|
2094
|
+
},
|
|
2095
|
+
{
|
|
2096
|
+
name: "hatching-chick",
|
|
2097
|
+
categories: ["Animals and nature"],
|
|
2098
|
+
tags: [":hatching-chick:"],
|
|
2099
|
+
durationInSeconds: 3.466666666666667,
|
|
2100
|
+
codepoint: "1f423"
|
|
2101
|
+
},
|
|
2102
|
+
{
|
|
2103
|
+
name: "baby-chick",
|
|
2104
|
+
categories: ["Animals and nature"],
|
|
2105
|
+
tags: [":baby-chick:"],
|
|
2106
|
+
durationInSeconds: 2.2,
|
|
2107
|
+
codepoint: "1f424"
|
|
2108
|
+
},
|
|
2109
|
+
{
|
|
2110
|
+
name: "hatched-chick",
|
|
2111
|
+
categories: ["Animals and nature"],
|
|
2112
|
+
tags: [":hatched-chick:"],
|
|
2113
|
+
durationInSeconds: 2.966666666666667,
|
|
2114
|
+
codepoint: "1f425"
|
|
2115
|
+
},
|
|
2116
|
+
{
|
|
2117
|
+
name: "eagle",
|
|
2118
|
+
categories: ["Animals and nature"],
|
|
2119
|
+
tags: [":eagle:"],
|
|
2120
|
+
durationInSeconds: 1.3333333333333333,
|
|
2121
|
+
codepoint: "1f985"
|
|
2122
|
+
},
|
|
2123
|
+
{
|
|
2124
|
+
name: "peace",
|
|
2125
|
+
categories: ["Animals and nature"],
|
|
2126
|
+
tags: [":peace:", ":dove:"],
|
|
2127
|
+
durationInSeconds: 3.1666666666666665,
|
|
2128
|
+
codepoint: "1f54a_fe0f"
|
|
2129
|
+
},
|
|
2130
|
+
{
|
|
2131
|
+
name: "goose",
|
|
2132
|
+
categories: ["Animals and nature"],
|
|
2133
|
+
tags: [":goose:"],
|
|
2134
|
+
durationInSeconds: 2.4,
|
|
2135
|
+
codepoint: "1fabf"
|
|
2136
|
+
},
|
|
2137
|
+
{
|
|
2138
|
+
name: "peacock",
|
|
2139
|
+
categories: ["Animals and nature"],
|
|
2140
|
+
tags: [":peacock:"],
|
|
2141
|
+
durationInSeconds: 1.3333333333333333,
|
|
2142
|
+
codepoint: "1f99a"
|
|
2143
|
+
},
|
|
2144
|
+
{
|
|
2145
|
+
name: "seal",
|
|
2146
|
+
categories: ["Animals and nature"],
|
|
2147
|
+
tags: [":seal:"],
|
|
2148
|
+
durationInSeconds: 2.566666666666667,
|
|
2149
|
+
codepoint: "1f9ad"
|
|
2150
|
+
},
|
|
2151
|
+
{
|
|
2152
|
+
name: "shark",
|
|
2153
|
+
categories: ["Animals and nature"],
|
|
2154
|
+
tags: [":shark:"],
|
|
2155
|
+
durationInSeconds: 3.2,
|
|
2156
|
+
codepoint: "1f988"
|
|
2157
|
+
},
|
|
2158
|
+
{
|
|
2159
|
+
name: "dolphin",
|
|
2160
|
+
categories: ["Animals and nature"],
|
|
2161
|
+
tags: [":dolphin:"],
|
|
2162
|
+
durationInSeconds: 1.8333333333333333,
|
|
2163
|
+
codepoint: "1f42c"
|
|
2164
|
+
},
|
|
2165
|
+
{
|
|
2166
|
+
name: "whale",
|
|
2167
|
+
categories: ["Animals and nature"],
|
|
2168
|
+
tags: [":whale:"],
|
|
2169
|
+
durationInSeconds: 2.6333333333333333,
|
|
2170
|
+
codepoint: "1f433"
|
|
2171
|
+
},
|
|
2172
|
+
{
|
|
2173
|
+
name: "blowfish",
|
|
2174
|
+
categories: ["Animals and nature"],
|
|
2175
|
+
tags: [":blowfish:"],
|
|
2176
|
+
durationInSeconds: 2.8,
|
|
2177
|
+
codepoint: "1f421"
|
|
2178
|
+
},
|
|
2179
|
+
{
|
|
2180
|
+
name: "crab",
|
|
2181
|
+
categories: ["Animals and nature"],
|
|
2182
|
+
tags: [":crab:"],
|
|
2183
|
+
durationInSeconds: 2.3,
|
|
2184
|
+
codepoint: "1f980"
|
|
2185
|
+
},
|
|
2186
|
+
{
|
|
2187
|
+
name: "octopus",
|
|
2188
|
+
categories: ["Animals and nature"],
|
|
2189
|
+
tags: [":octopus:"],
|
|
2190
|
+
durationInSeconds: 1.6,
|
|
2191
|
+
codepoint: "1f419"
|
|
2192
|
+
},
|
|
2193
|
+
{
|
|
2194
|
+
name: "jellyfish",
|
|
2195
|
+
categories: ["Animals and nature"],
|
|
2196
|
+
tags: [":jellyfish:"],
|
|
2197
|
+
durationInSeconds: 2.533333333333333,
|
|
2198
|
+
codepoint: "1fabc"
|
|
2199
|
+
},
|
|
2200
|
+
{
|
|
2201
|
+
name: "spider",
|
|
2202
|
+
categories: ["Animals and nature"],
|
|
2203
|
+
tags: [":spider:"],
|
|
2204
|
+
durationInSeconds: 2.4,
|
|
2205
|
+
codepoint: "1f577_fe0f"
|
|
2206
|
+
},
|
|
2207
|
+
{
|
|
2208
|
+
name: "snail",
|
|
2209
|
+
categories: ["Animals and nature"],
|
|
2210
|
+
tags: [":snail:"],
|
|
2211
|
+
durationInSeconds: 2.7,
|
|
2212
|
+
codepoint: "1f40c"
|
|
2213
|
+
},
|
|
2214
|
+
{
|
|
2215
|
+
name: "ant",
|
|
2216
|
+
categories: ["Animals and nature"],
|
|
2217
|
+
tags: [":ant:"],
|
|
2218
|
+
durationInSeconds: 4.033333333333333,
|
|
2219
|
+
codepoint: "1f41c"
|
|
2220
|
+
},
|
|
2221
|
+
{
|
|
2222
|
+
name: "mosquito",
|
|
2223
|
+
categories: ["Animals and nature"],
|
|
2224
|
+
tags: [":mosquito:"],
|
|
2225
|
+
durationInSeconds: 1.8,
|
|
2226
|
+
codepoint: "1f99f"
|
|
2227
|
+
},
|
|
2228
|
+
{
|
|
2229
|
+
name: "cockroach",
|
|
2230
|
+
categories: ["Animals and nature"],
|
|
2231
|
+
tags: [":cockroach:"],
|
|
2232
|
+
durationInSeconds: 2.2,
|
|
2233
|
+
codepoint: "1fab3"
|
|
2234
|
+
},
|
|
2235
|
+
{
|
|
2236
|
+
name: "fly",
|
|
2237
|
+
categories: ["Animals and nature"],
|
|
2238
|
+
tags: [":fly:"],
|
|
2239
|
+
durationInSeconds: 2.4,
|
|
2240
|
+
codepoint: "1fab0"
|
|
2241
|
+
},
|
|
2242
|
+
{
|
|
2243
|
+
name: "bee",
|
|
2244
|
+
categories: ["Animals and nature"],
|
|
2245
|
+
tags: [":bee:"],
|
|
2246
|
+
durationInSeconds: 5.5,
|
|
2247
|
+
codepoint: "1f41d"
|
|
2248
|
+
},
|
|
2249
|
+
{
|
|
2250
|
+
name: "lady-bug",
|
|
2251
|
+
categories: ["Animals and nature"],
|
|
2252
|
+
tags: [":lady-bug:"],
|
|
2253
|
+
durationInSeconds: 5.9,
|
|
2254
|
+
codepoint: "1f41e"
|
|
2255
|
+
},
|
|
2256
|
+
{
|
|
2257
|
+
name: "butterfly",
|
|
2258
|
+
categories: ["Animals and nature"],
|
|
2259
|
+
tags: [":butterfly:"],
|
|
2260
|
+
durationInSeconds: 2.8,
|
|
2261
|
+
codepoint: "1f98b"
|
|
2262
|
+
},
|
|
2263
|
+
{
|
|
2264
|
+
name: "bug",
|
|
2265
|
+
categories: ["Animals and nature"],
|
|
2266
|
+
tags: [":bug:"],
|
|
2267
|
+
durationInSeconds: 3.933333333333333,
|
|
2268
|
+
codepoint: "1f41b"
|
|
2269
|
+
},
|
|
2270
|
+
{
|
|
2271
|
+
name: "worm",
|
|
2272
|
+
categories: ["Animals and nature"],
|
|
2273
|
+
tags: [":worm:"],
|
|
2274
|
+
durationInSeconds: 4.266666666666667,
|
|
2275
|
+
codepoint: "1fab1"
|
|
2276
|
+
},
|
|
2277
|
+
{
|
|
2278
|
+
name: "paw-prints",
|
|
2279
|
+
categories: ["Animals and nature"],
|
|
2280
|
+
tags: [":paw prints:"],
|
|
2281
|
+
durationInSeconds: 1.1,
|
|
2282
|
+
codepoint: "1f43e"
|
|
2283
|
+
},
|
|
2284
|
+
{
|
|
2285
|
+
name: "tomato",
|
|
2286
|
+
categories: ["Food and drink"],
|
|
2287
|
+
tags: [":tomato:"],
|
|
2288
|
+
durationInSeconds: 2.7666666666666666,
|
|
2289
|
+
codepoint: "1f345"
|
|
2290
|
+
},
|
|
2291
|
+
{
|
|
2292
|
+
name: "cooking",
|
|
2293
|
+
categories: ["Food and drink"],
|
|
2294
|
+
tags: [":cooking:"],
|
|
2295
|
+
durationInSeconds: 2.2,
|
|
2296
|
+
codepoint: "1f373"
|
|
2297
|
+
},
|
|
2298
|
+
{
|
|
2299
|
+
name: "spaghetti",
|
|
2300
|
+
categories: ["Food and drink"],
|
|
2301
|
+
tags: [":spaghetti:"],
|
|
2302
|
+
durationInSeconds: 2.05,
|
|
2303
|
+
codepoint: "1f35d"
|
|
2304
|
+
},
|
|
2305
|
+
{
|
|
2306
|
+
name: "steaming-bowl",
|
|
2307
|
+
categories: ["Food and drink"],
|
|
2308
|
+
tags: [":steaming-bowl:"],
|
|
2309
|
+
durationInSeconds: 1.8,
|
|
2310
|
+
codepoint: "1f35c"
|
|
2311
|
+
},
|
|
2312
|
+
{
|
|
2313
|
+
name: "popcorn",
|
|
2314
|
+
categories: ["Food and drink"],
|
|
2315
|
+
tags: [":popcorn:"],
|
|
2316
|
+
durationInSeconds: 2.8666666666666667,
|
|
2317
|
+
codepoint: "1f37f"
|
|
2318
|
+
},
|
|
2319
|
+
{
|
|
2320
|
+
name: "hot-beverage",
|
|
2321
|
+
categories: ["Food and drink"],
|
|
2322
|
+
tags: [":hot-beverage:"],
|
|
2323
|
+
durationInSeconds: 2.0166666666666666,
|
|
2324
|
+
codepoint: "2615"
|
|
2325
|
+
},
|
|
2326
|
+
{
|
|
2327
|
+
name: "clinking-beer-mugs",
|
|
2328
|
+
categories: ["Food and drink"],
|
|
2329
|
+
tags: [":clinking-beer-mugs:"],
|
|
2330
|
+
durationInSeconds: 1.7666666666666666,
|
|
2331
|
+
codepoint: "1f37b"
|
|
2332
|
+
},
|
|
2333
|
+
{
|
|
2334
|
+
name: "clinking-glasses",
|
|
2335
|
+
categories: ["Food and drink"],
|
|
2336
|
+
tags: [":clinking-glasses:"],
|
|
2337
|
+
durationInSeconds: 2.3333333333333335,
|
|
2338
|
+
codepoint: "1f942"
|
|
2339
|
+
},
|
|
2340
|
+
{
|
|
2341
|
+
name: "bottle-with-popping-cork",
|
|
2342
|
+
categories: ["Food and drink"],
|
|
2343
|
+
tags: [":bottle-with-popping-cork:"],
|
|
2344
|
+
durationInSeconds: 2.5,
|
|
2345
|
+
codepoint: "1f37e"
|
|
2346
|
+
},
|
|
2347
|
+
{
|
|
2348
|
+
name: "wine-glass",
|
|
2349
|
+
categories: ["Food and drink"],
|
|
2350
|
+
tags: [":wine-glass:"],
|
|
2351
|
+
durationInSeconds: 1.8,
|
|
2352
|
+
codepoint: "1f377"
|
|
2353
|
+
},
|
|
2354
|
+
{
|
|
2355
|
+
name: "tropical-drink",
|
|
2356
|
+
categories: ["Food and drink"],
|
|
2357
|
+
tags: [":tropical-drink:"],
|
|
2358
|
+
durationInSeconds: 3.6,
|
|
2359
|
+
codepoint: "1f379"
|
|
2360
|
+
},
|
|
2361
|
+
{
|
|
2362
|
+
name: "construction",
|
|
2363
|
+
categories: ["Travel and places"],
|
|
2364
|
+
tags: [":construction:"],
|
|
2365
|
+
durationInSeconds: 2.4,
|
|
2366
|
+
codepoint: "1f6a7"
|
|
2367
|
+
},
|
|
2368
|
+
{
|
|
2369
|
+
name: "police-car-light",
|
|
2370
|
+
categories: ["Travel and places"],
|
|
2371
|
+
tags: [":police-car-light:"],
|
|
2372
|
+
durationInSeconds: 1.6666666666666667,
|
|
2373
|
+
codepoint: "1f6a8"
|
|
2374
|
+
},
|
|
2375
|
+
{
|
|
2376
|
+
name: "bicycle",
|
|
2377
|
+
categories: ["Travel and places"],
|
|
2378
|
+
tags: [":bicycle:"],
|
|
2379
|
+
durationInSeconds: 3,
|
|
2380
|
+
codepoint: "1f6b2"
|
|
2381
|
+
},
|
|
2382
|
+
{
|
|
2383
|
+
name: "flying-saucer",
|
|
2384
|
+
categories: ["Travel and places"],
|
|
2385
|
+
tags: [":flying-saucer:"],
|
|
2386
|
+
durationInSeconds: 4.633333333333334,
|
|
2387
|
+
codepoint: "1f6f8"
|
|
2388
|
+
},
|
|
2389
|
+
{
|
|
2390
|
+
name: "rocket",
|
|
2391
|
+
categories: ["Travel and places"],
|
|
2392
|
+
tags: [":rocket:"],
|
|
2393
|
+
durationInSeconds: 0.6666666666666666,
|
|
2394
|
+
codepoint: "1f680"
|
|
2395
|
+
},
|
|
2396
|
+
{
|
|
2397
|
+
name: "airplane-departure",
|
|
2398
|
+
categories: ["Travel and places"],
|
|
2399
|
+
tags: [":airplane-departure:"],
|
|
2400
|
+
durationInSeconds: 2.1,
|
|
2401
|
+
codepoint: "1f6eb"
|
|
2402
|
+
},
|
|
2403
|
+
{
|
|
2404
|
+
name: "airplane-arrival",
|
|
2405
|
+
categories: ["Travel and places"],
|
|
2406
|
+
tags: [":airplane-arrival:"],
|
|
2407
|
+
durationInSeconds: 1.9333333333333333,
|
|
2408
|
+
codepoint: "1f6ec"
|
|
2409
|
+
},
|
|
2410
|
+
{
|
|
2411
|
+
name: "roller-coaster",
|
|
2412
|
+
categories: ["Travel and places"],
|
|
2413
|
+
tags: [":roller-coaster:"],
|
|
2414
|
+
durationInSeconds: 2.1666666666666665,
|
|
2415
|
+
codepoint: "1f3a2"
|
|
2416
|
+
},
|
|
2417
|
+
{
|
|
2418
|
+
name: "camping",
|
|
2419
|
+
categories: ["Travel and places"],
|
|
2420
|
+
tags: [":camping:"],
|
|
2421
|
+
durationInSeconds: 2.716666666666667,
|
|
2422
|
+
codepoint: "1f3d5_fe0f"
|
|
2423
|
+
},
|
|
2424
|
+
{
|
|
2425
|
+
name: "confetti-ball",
|
|
2426
|
+
categories: ["Activities and events"],
|
|
2427
|
+
tags: [":confetti-ball:"],
|
|
2428
|
+
durationInSeconds: 2.4,
|
|
2429
|
+
codepoint: "1f38a"
|
|
2430
|
+
},
|
|
2431
|
+
{
|
|
2432
|
+
name: "balloon",
|
|
2433
|
+
categories: ["Activities and events"],
|
|
2434
|
+
tags: [":balloon:"],
|
|
2435
|
+
durationInSeconds: 1.6,
|
|
2436
|
+
codepoint: "1f388"
|
|
2437
|
+
},
|
|
2438
|
+
{
|
|
2439
|
+
name: "birthday-cake",
|
|
2440
|
+
categories: ["Activities and events"],
|
|
2441
|
+
tags: [":birthday-cake:"],
|
|
2442
|
+
durationInSeconds: 2.6333333333333333,
|
|
2443
|
+
codepoint: "1f382"
|
|
2444
|
+
},
|
|
2445
|
+
{
|
|
2446
|
+
name: "wrapped-gift",
|
|
2447
|
+
categories: ["Activities and events"],
|
|
2448
|
+
tags: [":wrapped-gift:"],
|
|
2449
|
+
durationInSeconds: 2.4,
|
|
2450
|
+
codepoint: "1f381"
|
|
2451
|
+
},
|
|
2452
|
+
{
|
|
2453
|
+
name: "fireworks",
|
|
2454
|
+
categories: ["Activities and events"],
|
|
2455
|
+
tags: [":fireworks:"],
|
|
2456
|
+
durationInSeconds: 2.066666666666667,
|
|
2457
|
+
codepoint: "1f386"
|
|
2458
|
+
},
|
|
2459
|
+
{
|
|
2460
|
+
name: "pinata",
|
|
2461
|
+
categories: ["Activities and events"],
|
|
2462
|
+
tags: [":pi\xF1ata:"],
|
|
2463
|
+
durationInSeconds: 2.966666666666667,
|
|
2464
|
+
codepoint: "1fa85"
|
|
2465
|
+
},
|
|
2466
|
+
{
|
|
2467
|
+
name: "mirror-ball",
|
|
2468
|
+
categories: ["Activities and events"],
|
|
2469
|
+
tags: [":mirror-ball:", ":disco-ball:"],
|
|
2470
|
+
durationInSeconds: 1.8,
|
|
2471
|
+
codepoint: "1faa9"
|
|
2472
|
+
},
|
|
2473
|
+
{
|
|
2474
|
+
name: "soccer-ball",
|
|
2475
|
+
categories: ["Activities and events"],
|
|
2476
|
+
tags: [":soccer-ball:"],
|
|
2477
|
+
durationInSeconds: 2,
|
|
2478
|
+
codepoint: "26bd"
|
|
2479
|
+
},
|
|
2480
|
+
{
|
|
2481
|
+
name: "baseball",
|
|
2482
|
+
categories: ["Activities and events"],
|
|
2483
|
+
tags: [":baseball:"],
|
|
2484
|
+
durationInSeconds: 2.3333333333333335,
|
|
2485
|
+
codepoint: "26be"
|
|
2486
|
+
},
|
|
2487
|
+
{
|
|
2488
|
+
name: "softball",
|
|
2489
|
+
categories: ["Activities and events"],
|
|
2490
|
+
tags: [":softball:"],
|
|
2491
|
+
durationInSeconds: 2.3333333333333335,
|
|
2492
|
+
codepoint: "1f94e"
|
|
2493
|
+
},
|
|
2494
|
+
{
|
|
2495
|
+
name: "tennis",
|
|
2496
|
+
categories: ["Activities and events"],
|
|
2497
|
+
tags: [":tennis:"],
|
|
2498
|
+
durationInSeconds: 1.4,
|
|
2499
|
+
codepoint: "1f3be"
|
|
2500
|
+
},
|
|
2501
|
+
{
|
|
2502
|
+
name: "badminton",
|
|
2503
|
+
categories: ["Activities and events"],
|
|
2504
|
+
tags: [":badminton:"],
|
|
2505
|
+
durationInSeconds: 1.4,
|
|
2506
|
+
codepoint: "1f3f8"
|
|
2507
|
+
},
|
|
2508
|
+
{
|
|
2509
|
+
name: "lacrosse",
|
|
2510
|
+
categories: ["Activities and events"],
|
|
2511
|
+
tags: [":lacrosse:"],
|
|
2512
|
+
durationInSeconds: 2.6,
|
|
2513
|
+
codepoint: "1f94d"
|
|
2514
|
+
},
|
|
2515
|
+
{
|
|
2516
|
+
name: "cricket-game",
|
|
2517
|
+
categories: ["Activities and events"],
|
|
2518
|
+
tags: [":cricket-game:"],
|
|
2519
|
+
durationInSeconds: 1.4,
|
|
2520
|
+
codepoint: "1f3cf"
|
|
2521
|
+
},
|
|
2522
|
+
{
|
|
2523
|
+
name: "field-hockey",
|
|
2524
|
+
categories: ["Activities and events"],
|
|
2525
|
+
tags: [":field-hockey:"],
|
|
2526
|
+
durationInSeconds: 2.1333333333333333,
|
|
2527
|
+
codepoint: "1f3d1"
|
|
2528
|
+
},
|
|
2529
|
+
{
|
|
2530
|
+
name: "ice-hockey",
|
|
2531
|
+
categories: ["Activities and events"],
|
|
2532
|
+
tags: [":ice-hockey:"],
|
|
2533
|
+
durationInSeconds: 1.6,
|
|
2534
|
+
codepoint: "1f3d2"
|
|
2535
|
+
},
|
|
2536
|
+
{
|
|
2537
|
+
name: "direct-hit",
|
|
2538
|
+
categories: ["Activities and events"],
|
|
2539
|
+
tags: [":direct-hit:", ":target:"],
|
|
2540
|
+
durationInSeconds: 2.3333333333333335,
|
|
2541
|
+
codepoint: "1f3af"
|
|
2542
|
+
},
|
|
2543
|
+
{
|
|
2544
|
+
name: "flying-disc",
|
|
2545
|
+
categories: ["Activities and events"],
|
|
2546
|
+
tags: [":flying-disc:"],
|
|
2547
|
+
durationInSeconds: 0.8,
|
|
2548
|
+
codepoint: "1f94f"
|
|
2549
|
+
},
|
|
2550
|
+
{
|
|
2551
|
+
name: "boomerang",
|
|
2552
|
+
categories: ["Activities and events"],
|
|
2553
|
+
tags: [":boomerang:"],
|
|
2554
|
+
durationInSeconds: 1.4666666666666666,
|
|
2555
|
+
codepoint: "1fa83"
|
|
2556
|
+
},
|
|
2557
|
+
{
|
|
2558
|
+
name: "kite",
|
|
2559
|
+
categories: ["Activities and events"],
|
|
2560
|
+
tags: [":kite:"],
|
|
2561
|
+
durationInSeconds: 1.6,
|
|
2562
|
+
codepoint: "1fa81"
|
|
2563
|
+
},
|
|
2564
|
+
{
|
|
2565
|
+
name: "ping-pong",
|
|
2566
|
+
categories: ["Activities and events"],
|
|
2567
|
+
tags: [":ping-pong:"],
|
|
2568
|
+
durationInSeconds: 1.5666666666666667,
|
|
2569
|
+
codepoint: "1f3d3"
|
|
2570
|
+
},
|
|
2571
|
+
{
|
|
2572
|
+
name: "bowling",
|
|
2573
|
+
categories: ["Activities and events"],
|
|
2574
|
+
tags: [":bowling:"],
|
|
2575
|
+
durationInSeconds: 1.55,
|
|
2576
|
+
codepoint: "1f3b3"
|
|
2577
|
+
},
|
|
2578
|
+
{
|
|
2579
|
+
name: "die",
|
|
2580
|
+
categories: ["Activities and events"],
|
|
2581
|
+
tags: [":die:"],
|
|
2582
|
+
durationInSeconds: 2.033333333333333,
|
|
2583
|
+
codepoint: "1f3b2"
|
|
2584
|
+
},
|
|
2585
|
+
{
|
|
2586
|
+
name: "slot-machine",
|
|
2587
|
+
categories: ["Activities and events"],
|
|
2588
|
+
tags: [":slot-machine:"],
|
|
2589
|
+
durationInSeconds: 2,
|
|
2590
|
+
codepoint: "1f3b0"
|
|
2591
|
+
},
|
|
2592
|
+
{
|
|
2593
|
+
name: "camera-flash",
|
|
2594
|
+
categories: ["Activities and events"],
|
|
2595
|
+
tags: [":camera-flash:"],
|
|
2596
|
+
durationInSeconds: 1.2,
|
|
2597
|
+
codepoint: "1f4f8"
|
|
2598
|
+
},
|
|
2599
|
+
{
|
|
2600
|
+
name: "violin",
|
|
2601
|
+
categories: ["Activities and events"],
|
|
2602
|
+
tags: [":violin:"],
|
|
2603
|
+
durationInSeconds: 7,
|
|
2604
|
+
codepoint: "1f3bb"
|
|
2605
|
+
},
|
|
2606
|
+
{
|
|
2607
|
+
name: "drum",
|
|
2608
|
+
categories: ["Activities and events"],
|
|
2609
|
+
tags: [":drum:"],
|
|
2610
|
+
durationInSeconds: 2.7,
|
|
2611
|
+
codepoint: "1f941"
|
|
2612
|
+
},
|
|
2613
|
+
{
|
|
2614
|
+
name: "maracas",
|
|
2615
|
+
categories: ["Activities and events"],
|
|
2616
|
+
tags: [":maracas:"],
|
|
2617
|
+
durationInSeconds: 1.5333333333333334,
|
|
2618
|
+
codepoint: "1fa87"
|
|
2619
|
+
},
|
|
2620
|
+
{
|
|
2621
|
+
name: "battery-full",
|
|
2622
|
+
categories: ["Objects"],
|
|
2623
|
+
tags: [":battery-full:"],
|
|
2624
|
+
durationInSeconds: 1.7333333333333334,
|
|
2625
|
+
codepoint: "1f50b"
|
|
2626
|
+
},
|
|
2627
|
+
{
|
|
2628
|
+
name: "battery-low",
|
|
2629
|
+
categories: ["Objects"],
|
|
2630
|
+
tags: [":battery-low:"],
|
|
2631
|
+
durationInSeconds: 6.3,
|
|
2632
|
+
codepoint: "1faab"
|
|
2633
|
+
},
|
|
2634
|
+
{
|
|
2635
|
+
name: "money-with-wings",
|
|
2636
|
+
categories: ["Objects"],
|
|
2637
|
+
tags: [":money-with-wings:"],
|
|
2638
|
+
durationInSeconds: 0.8,
|
|
2639
|
+
codepoint: "1f4b8"
|
|
2640
|
+
},
|
|
2641
|
+
{
|
|
2642
|
+
name: "balance-scale",
|
|
2643
|
+
categories: ["Objects"],
|
|
2644
|
+
tags: [":balance-scale:"],
|
|
2645
|
+
durationInSeconds: 4.366666666666666,
|
|
2646
|
+
codepoint: "2696_fe0f"
|
|
2647
|
+
},
|
|
2648
|
+
{
|
|
2649
|
+
name: "light-bulb",
|
|
2650
|
+
categories: ["Objects"],
|
|
2651
|
+
tags: [":light-bulb:"],
|
|
2652
|
+
durationInSeconds: 2.4,
|
|
2653
|
+
codepoint: "1f4a1"
|
|
2654
|
+
},
|
|
2655
|
+
{
|
|
2656
|
+
name: "graduation-cap",
|
|
2657
|
+
categories: ["Objects"],
|
|
2658
|
+
tags: [":graduation-cap:"],
|
|
2659
|
+
durationInSeconds: 1.4,
|
|
2660
|
+
codepoint: "1f393"
|
|
2661
|
+
},
|
|
2662
|
+
{
|
|
2663
|
+
name: "umbrella",
|
|
2664
|
+
categories: ["Objects"],
|
|
2665
|
+
tags: [":umbrella:"],
|
|
2666
|
+
durationInSeconds: 3.3333333333333335,
|
|
2667
|
+
codepoint: "2602_fe0f"
|
|
2668
|
+
},
|
|
2669
|
+
{
|
|
2670
|
+
name: "gem-stone",
|
|
2671
|
+
categories: ["Objects"],
|
|
2672
|
+
tags: [":gem-stone:"],
|
|
2673
|
+
durationInSeconds: 1.3333333333333333,
|
|
2674
|
+
codepoint: "1f48e"
|
|
2675
|
+
},
|
|
2676
|
+
{
|
|
2677
|
+
name: "gear",
|
|
2678
|
+
categories: ["Objects"],
|
|
2679
|
+
tags: [":gear:"],
|
|
2680
|
+
durationInSeconds: 5,
|
|
2681
|
+
codepoint: "2699_fe0f"
|
|
2682
|
+
},
|
|
2683
|
+
{
|
|
2684
|
+
name: "pencil",
|
|
2685
|
+
categories: ["Objects"],
|
|
2686
|
+
tags: [":pencil:"],
|
|
2687
|
+
durationInSeconds: 2.1,
|
|
2688
|
+
codepoint: "270f_fe0f"
|
|
2689
|
+
},
|
|
2690
|
+
{
|
|
2691
|
+
name: "alarm-clock",
|
|
2692
|
+
categories: ["Objects"],
|
|
2693
|
+
tags: [":alarm-clock:"],
|
|
2694
|
+
durationInSeconds: 0.5666666666666667,
|
|
2695
|
+
codepoint: "23f0"
|
|
2696
|
+
},
|
|
2697
|
+
{
|
|
2698
|
+
name: "bellhop-bell",
|
|
2699
|
+
categories: ["Objects"],
|
|
2700
|
+
tags: [":bellhop-bell:"],
|
|
2701
|
+
durationInSeconds: 1.3333333333333333,
|
|
2702
|
+
codepoint: "1f6ce_fe0f"
|
|
2703
|
+
},
|
|
2704
|
+
{
|
|
2705
|
+
name: "bell",
|
|
2706
|
+
categories: ["Objects"],
|
|
2707
|
+
tags: [":bell:"],
|
|
2708
|
+
durationInSeconds: 0.8,
|
|
2709
|
+
codepoint: "1f514"
|
|
2710
|
+
},
|
|
2711
|
+
{
|
|
2712
|
+
name: "crystal-ball",
|
|
2713
|
+
categories: ["Objects"],
|
|
2714
|
+
tags: [":crystal-ball:"],
|
|
2715
|
+
durationInSeconds: 2.4,
|
|
2716
|
+
codepoint: "1f52e"
|
|
2717
|
+
},
|
|
2718
|
+
{
|
|
2719
|
+
name: "aries",
|
|
2720
|
+
categories: ["Symbols"],
|
|
2721
|
+
tags: [":Aries:"],
|
|
2722
|
+
durationInSeconds: 5.7,
|
|
2723
|
+
codepoint: "2648"
|
|
2724
|
+
},
|
|
2725
|
+
{
|
|
2726
|
+
name: "taurus",
|
|
2727
|
+
categories: ["Symbols"],
|
|
2728
|
+
tags: [":Taurus:"],
|
|
2729
|
+
durationInSeconds: 5.7,
|
|
2730
|
+
codepoint: "2649"
|
|
2731
|
+
},
|
|
2732
|
+
{
|
|
2733
|
+
name: "gemini",
|
|
2734
|
+
categories: ["Symbols"],
|
|
2735
|
+
tags: [":Gemini:"],
|
|
2736
|
+
durationInSeconds: 5.7,
|
|
2737
|
+
codepoint: "264a"
|
|
2738
|
+
},
|
|
2739
|
+
{
|
|
2740
|
+
name: "cancer",
|
|
2741
|
+
categories: ["Symbols"],
|
|
2742
|
+
tags: [":Cancer:"],
|
|
2743
|
+
durationInSeconds: 5.7,
|
|
2744
|
+
codepoint: "264b"
|
|
2745
|
+
},
|
|
2746
|
+
{
|
|
2747
|
+
name: "leo",
|
|
2748
|
+
categories: ["Symbols"],
|
|
2749
|
+
tags: [":Leo:"],
|
|
2750
|
+
durationInSeconds: 5.7,
|
|
2751
|
+
codepoint: "264c"
|
|
2752
|
+
},
|
|
2753
|
+
{
|
|
2754
|
+
name: "virgo",
|
|
2755
|
+
categories: ["Symbols"],
|
|
2756
|
+
tags: [":Virgo:"],
|
|
2757
|
+
durationInSeconds: 5.7,
|
|
2758
|
+
codepoint: "264d"
|
|
2759
|
+
},
|
|
2760
|
+
{
|
|
2761
|
+
name: "libra",
|
|
2762
|
+
categories: ["Symbols"],
|
|
2763
|
+
tags: [":Libra:"],
|
|
2764
|
+
durationInSeconds: 5.7,
|
|
2765
|
+
codepoint: "264e"
|
|
2766
|
+
},
|
|
2767
|
+
{
|
|
2768
|
+
name: "scorpio",
|
|
2769
|
+
categories: ["Symbols"],
|
|
2770
|
+
tags: [":Scorpio:"],
|
|
2771
|
+
durationInSeconds: 5.7,
|
|
2772
|
+
codepoint: "264f"
|
|
2773
|
+
},
|
|
2774
|
+
{
|
|
2775
|
+
name: "sagittarius",
|
|
2776
|
+
categories: ["Symbols"],
|
|
2777
|
+
tags: [":Sagittarius:"],
|
|
2778
|
+
durationInSeconds: 5.7,
|
|
2779
|
+
codepoint: "2650"
|
|
2780
|
+
},
|
|
2781
|
+
{
|
|
2782
|
+
name: "capricorn",
|
|
2783
|
+
categories: ["Symbols"],
|
|
2784
|
+
tags: [":Capricorn:"],
|
|
2785
|
+
durationInSeconds: 6.4,
|
|
2786
|
+
codepoint: "2651"
|
|
2787
|
+
},
|
|
2788
|
+
{
|
|
2789
|
+
name: "aquarius",
|
|
2790
|
+
categories: ["Symbols"],
|
|
2791
|
+
tags: [":Aquarius:"],
|
|
2792
|
+
durationInSeconds: 5.7,
|
|
2793
|
+
codepoint: "2652"
|
|
2794
|
+
},
|
|
2795
|
+
{
|
|
2796
|
+
name: "pisces",
|
|
2797
|
+
categories: ["Symbols"],
|
|
2798
|
+
tags: [":Pisces:"],
|
|
2799
|
+
durationInSeconds: 5.7,
|
|
2800
|
+
codepoint: "2653"
|
|
2801
|
+
},
|
|
2802
|
+
{
|
|
2803
|
+
name: "ophiuchus",
|
|
2804
|
+
categories: ["Symbols"],
|
|
2805
|
+
tags: [":Ophiuchus:"],
|
|
2806
|
+
durationInSeconds: 5.7,
|
|
2807
|
+
codepoint: "26ce"
|
|
2808
|
+
},
|
|
2809
|
+
{
|
|
2810
|
+
name: "exclamation",
|
|
2811
|
+
categories: ["Symbols"],
|
|
2812
|
+
tags: [":exclamation:", ":exclamation-mark:"],
|
|
2813
|
+
durationInSeconds: 3.3333333333333335,
|
|
2814
|
+
codepoint: "2757"
|
|
2815
|
+
},
|
|
2816
|
+
{
|
|
2817
|
+
name: "question",
|
|
2818
|
+
categories: ["Symbols"],
|
|
2819
|
+
tags: [":question:", ":question-mark:", ":?:"],
|
|
2820
|
+
durationInSeconds: 3.3333333333333335,
|
|
2821
|
+
codepoint: "2753"
|
|
2822
|
+
},
|
|
2823
|
+
{
|
|
2824
|
+
name: "exclamation-question-mark",
|
|
2825
|
+
categories: ["Symbols"],
|
|
2826
|
+
tags: [":exclamation-question-mark:", ":!?:"],
|
|
2827
|
+
durationInSeconds: 3.3333333333333335,
|
|
2828
|
+
codepoint: "2049_fe0f"
|
|
2829
|
+
},
|
|
2830
|
+
{
|
|
2831
|
+
name: "exclamation-double",
|
|
2832
|
+
categories: ["Symbols"],
|
|
2833
|
+
tags: [":exclamation-double:", ":!!:"],
|
|
2834
|
+
durationInSeconds: 3.3333333333333335,
|
|
2835
|
+
codepoint: "203c_fe0f"
|
|
2836
|
+
},
|
|
2837
|
+
{
|
|
2838
|
+
name: "cross-mark",
|
|
2839
|
+
categories: ["Symbols"],
|
|
2840
|
+
tags: [":cross-mark:", ":x:"],
|
|
2841
|
+
durationInSeconds: 1.9666666666666666,
|
|
2842
|
+
codepoint: "274c"
|
|
2843
|
+
},
|
|
2844
|
+
{
|
|
2845
|
+
name: "sos",
|
|
2846
|
+
categories: ["Symbols"],
|
|
2847
|
+
tags: [":sos:"],
|
|
2848
|
+
durationInSeconds: 1.6666666666666667,
|
|
2849
|
+
codepoint: "1f198"
|
|
2850
|
+
},
|
|
2851
|
+
{
|
|
2852
|
+
name: "phone-off",
|
|
2853
|
+
categories: ["Symbols"],
|
|
2854
|
+
tags: [":phone-off:"],
|
|
2855
|
+
durationInSeconds: 1.6666666666666667,
|
|
2856
|
+
codepoint: "1f4f4"
|
|
2857
|
+
},
|
|
2858
|
+
{
|
|
2859
|
+
name: "check-mark",
|
|
2860
|
+
categories: ["Symbols"],
|
|
2861
|
+
tags: [":check-mark:", ":check-mark-green:"],
|
|
2862
|
+
durationInSeconds: 1.6666666666666667,
|
|
2863
|
+
codepoint: "2705"
|
|
2864
|
+
},
|
|
2865
|
+
{
|
|
2866
|
+
name: "new",
|
|
2867
|
+
categories: ["Symbols"],
|
|
2868
|
+
tags: [":new:"],
|
|
2869
|
+
durationInSeconds: 1.6666666666666667,
|
|
2870
|
+
codepoint: "1f195"
|
|
2871
|
+
},
|
|
2872
|
+
{
|
|
2873
|
+
name: "free",
|
|
2874
|
+
categories: ["Symbols"],
|
|
2875
|
+
tags: [":free:"],
|
|
2876
|
+
durationInSeconds: 1.6666666666666667,
|
|
2877
|
+
codepoint: "1f193"
|
|
2878
|
+
},
|
|
2879
|
+
{
|
|
2880
|
+
name: "up",
|
|
2881
|
+
categories: ["Symbols"],
|
|
2882
|
+
tags: [":up!:"],
|
|
2883
|
+
durationInSeconds: 1.6666666666666667,
|
|
2884
|
+
codepoint: "1f199"
|
|
2885
|
+
},
|
|
2886
|
+
{
|
|
2887
|
+
name: "cool",
|
|
2888
|
+
categories: ["Symbols"],
|
|
2889
|
+
tags: [":cool:"],
|
|
2890
|
+
durationInSeconds: 1.6666666666666667,
|
|
2891
|
+
codepoint: "1f192"
|
|
2892
|
+
},
|
|
2893
|
+
{
|
|
2894
|
+
name: "litter",
|
|
2895
|
+
categories: ["Symbols"],
|
|
2896
|
+
tags: [":litter:"],
|
|
2897
|
+
durationInSeconds: 1.4166666666666667,
|
|
2898
|
+
codepoint: "1f6ae"
|
|
2899
|
+
},
|
|
2900
|
+
{
|
|
2901
|
+
name: "musical-notes",
|
|
2902
|
+
categories: ["Symbols"],
|
|
2903
|
+
tags: [":musical-notes:"],
|
|
2904
|
+
durationInSeconds: 1,
|
|
2905
|
+
codepoint: "1f3b6"
|
|
2906
|
+
},
|
|
2907
|
+
{
|
|
2908
|
+
name: "plus-sign",
|
|
2909
|
+
categories: ["Symbols"],
|
|
2910
|
+
tags: [":plus-sign:", ":+:"],
|
|
2911
|
+
durationInSeconds: 2.8,
|
|
2912
|
+
codepoint: "2795"
|
|
2913
|
+
},
|
|
2914
|
+
{
|
|
2915
|
+
name: "chequered-flag",
|
|
2916
|
+
categories: ["Flags"],
|
|
2917
|
+
tags: [":chequered-flag:"],
|
|
2918
|
+
durationInSeconds: 4,
|
|
2919
|
+
codepoint: "1f3c1"
|
|
2920
|
+
},
|
|
2921
|
+
{
|
|
2922
|
+
name: "triangular-flag",
|
|
2923
|
+
categories: ["Flags"],
|
|
2924
|
+
tags: [":triangular-flag:"],
|
|
2925
|
+
durationInSeconds: 3.966666666666667,
|
|
2926
|
+
codepoint: "1f6a9"
|
|
2927
|
+
},
|
|
2928
|
+
{
|
|
2929
|
+
name: "black-flag",
|
|
2930
|
+
categories: ["Flags"],
|
|
2931
|
+
tags: [":black-flag:"],
|
|
2932
|
+
durationInSeconds: 4,
|
|
2933
|
+
codepoint: "1f3f4"
|
|
2934
|
+
},
|
|
2935
|
+
{
|
|
2936
|
+
name: "white-flag",
|
|
2937
|
+
categories: ["Flags"],
|
|
2938
|
+
tags: [":white-flag:"],
|
|
2939
|
+
durationInSeconds: 4,
|
|
2940
|
+
codepoint: "1f3f3_fe0f"
|
|
2941
|
+
}
|
|
2942
|
+
];
|
|
2943
|
+
|
|
2944
|
+
// src/is-webkit.ts
|
|
2945
|
+
var isWebkit = () => {
|
|
2946
|
+
if (typeof window === "undefined") {
|
|
2947
|
+
return false;
|
|
2948
|
+
}
|
|
2949
|
+
const isSafariUserAgent = Boolean(navigator.userAgent.match(/Version\/[\d.]+.*Safari/));
|
|
2950
|
+
const isChrome = Boolean(navigator.userAgent.match(/CriOS\//));
|
|
2951
|
+
return isSafariUserAgent || isChrome;
|
|
2952
|
+
};
|
|
2953
|
+
|
|
2954
|
+
// src/AnimatedEmoji.tsx
|
|
2955
|
+
import {
|
|
2956
|
+
jsx
|
|
2957
|
+
} from "react/jsx-runtime";
|
|
2958
|
+
var AnimatedEmoji = ({
|
|
2959
|
+
emoji,
|
|
2960
|
+
scale = "1",
|
|
2961
|
+
calculateSrc = defaultCalculateEmojiSrc,
|
|
2962
|
+
...props
|
|
2963
|
+
}) => {
|
|
2964
|
+
const { fps } = useVideoConfig();
|
|
2965
|
+
const emojiData = emojis.find((e) => e.name === emoji);
|
|
2966
|
+
if (!emojiData) {
|
|
2967
|
+
throw new Error(`Emoji ${emoji} not found. Available emojis: ${emojis.map((e) => e.name).join(", ")}`);
|
|
2968
|
+
}
|
|
2969
|
+
return jsx(Loop, {
|
|
2970
|
+
durationInFrames: Math.floor(emojiData.durationInSeconds * fps),
|
|
2971
|
+
children: jsx(OffthreadVideo, {
|
|
2972
|
+
...props,
|
|
2973
|
+
src: calculateSrc({ emoji, scale, format: isWebkit() ? "hevc" : "webm" })
|
|
2974
|
+
})
|
|
2975
|
+
});
|
|
2976
|
+
};
|
|
2977
|
+
|
|
2978
|
+
// src/get-available-emoji.ts
|
|
2979
|
+
var getAvailableEmojis = () => {
|
|
2980
|
+
return emojis;
|
|
2981
|
+
};
|
|
2982
|
+
export {
|
|
2983
|
+
getAvailableEmojis,
|
|
2984
|
+
AnimatedEmoji
|
|
2985
|
+
};
|