diff --git a/.gitmodules b/.gitmodules index 9f5b0f6a76e..9000d5b618a 100644 --- a/.gitmodules +++ b/.gitmodules @@ -28,3 +28,6 @@ [submodule "external/nextcloud-tables"] path = external/nextcloud-tables url = https://github.com/nextcloud/tables +[submodule "external/emoji-metadata"] + path = external/emoji-metadata + url = https://github.com/googlefonts/emoji-metadata diff --git a/cspell.json b/cspell.json index 563b560f513..f8d8234dc74 100644 --- a/cspell.json +++ b/cspell.json @@ -16,6 +16,7 @@ "**/CHANGELOG.md", "external", "packages/dynamite/example/lib", + "packages/neon_framework/lib/src/utils/emojis.dart", "packages/neon_framework/example/web/sqflite_sw.js", "packages/neon_framework/example/web/sqlite3.wasm", "packages/neon_lints/lib", diff --git a/external/emoji-metadata b/external/emoji-metadata new file mode 160000 index 00000000000..3544a2b5ae4 --- /dev/null +++ b/external/emoji-metadata @@ -0,0 +1 @@ +Subproject commit 3544a2b5ae45dcbdebb60d954f8f5de22decf5f1 diff --git a/packages/neon_framework/generate_emojis.dart b/packages/neon_framework/generate_emojis.dart new file mode 100644 index 00000000000..21158a62b26 --- /dev/null +++ b/packages/neon_framework/generate_emojis.dart @@ -0,0 +1,225 @@ +import 'dart:convert'; + +import 'package:code_builder/code_builder.dart'; +import 'package:collection/collection.dart'; +import 'package:dart_style/dart_style.dart'; +import 'package:string_normalizer/string_normalizer.dart'; +import 'package:universal_io/io.dart'; + +/// Android 14 only supports Unicode 15.0, so we use that for now, even though newer versions are available: +/// https://developer.android.com/guide/topics/resources/internationalization#versioning-nougat +const unicodeVersion = '15_0'; + +void main() { + final formatter = DartFormatter(pageWidth: 120); + final emitter = DartEmitter( + orderDirectives: true, + useNullSafetySyntax: true, + ); + + final inputFile = File('../../external/emoji-metadata/emoji_${unicodeVersion}_ordering.json'); + final input = json.decode(inputFile.readAsStringSync()); + + final library = Library((b) { + b.docs.add('// GENERATED CODE - DO NOT MODIFY BY HAND'); + + b.body.add( + Class( + (b) => b + ..name = 'Emoji' + ..docs.add('/// Holds the metadata of a Unicode emoji.') + ..constructors.add( + Constructor( + (b) => b + ..constant = true + ..docs.add('/// Creates a new [Emoji].') + ..optionalParameters.addAll([ + Parameter( + (b) => b + ..name = 'base' + ..named = true + ..toThis = true + ..required = true, + ), + Parameter( + (b) => b + ..name = 'alternates' + ..named = true + ..toThis = true + ..required = true, + ), + Parameter( + (b) => b + ..name = 'emoticons' + ..named = true + ..toThis = true + ..required = true, + ), + Parameter( + (b) => b + ..name = 'shortcodes' + ..named = true + ..toThis = true + ..required = true, + ), + Parameter( + (b) => b + ..name = 'animated' + ..named = true + ..toThis = true + ..required = true, + ), + ]), + ), + ) + ..fields.addAll([ + Field( + (b) => b + ..name = 'base' + ..type = refer('String') + ..modifier = FieldModifier.final$ + ..docs.add('/// The base emoji symbol.'), + ), + Field( + (b) => b + ..name = 'alternates' + ..type = refer('List') + ..modifier = FieldModifier.final$ + ..docs.add('/// The associated alternate emoji symbols.'), + ), + Field( + (b) => b + ..name = 'emoticons' + ..type = refer('List') + ..modifier = FieldModifier.final$ + ..docs.add('/// The associated emoticons.'), + ), + Field( + (b) => b + ..name = 'shortcodes' + ..type = refer('List') + ..modifier = FieldModifier.final$ + ..docs.add('/// The associated short codes.'), + ), + Field( + (b) => b + ..name = 'animated' + ..type = refer('bool') + ..modifier = FieldModifier.final$ + ..docs.add('/// Whether the emoji can be animated.'), + ), + ]), + ), + ); + + final names = {}; + const groupIds = { + 'Smileys and emotions': 'smileysAndEmotions', + 'People': 'people', + 'Animals and nature': 'animalsAndNature', + 'Food and drink': 'foodAndDrink', + 'Travel and places': 'travelAndPlaces', + 'Activities and events': 'activitiesAndEvents', + 'Objects': 'objects', + 'Symbols': 'symbols', + 'Flags': 'flags', + }; + final emojiGroups = >{}; + + for (final group in (input as List).map((t) => t as Map)) { + final groupName = group['group'] as String; + final groupId = groupIds[groupName]!; + + for (final emoji in (group['emoji'] as List).map((t) => t as Map)) { + final base = String.fromCharCodes((emoji['base'] as List).cast()); + final alternates = (emoji['alternates'] as List) + .map((alternate) => String.fromCharCodes((alternate as List).cast())) + .toList(); + final emoticons = (emoji['emoticons'] as List).cast(); + final shortcodes = (emoji['shortcodes'] as List).cast(); + final animated = emoji['animated'] as bool; + + var name = ''; + for (final shortcode in shortcodes) { + name = shortcode.substring(1, shortcode.length - 1).toLowerCase(); + name = name + .split('-') + .map( + (t) => switch (t) { + '1' => 'one', + '2' => 'two', + '3' => 'three', + '4' => 'four', + '5' => 'five', + '6' => 'six', + '7' => 'seven', + '8' => 'eight', + '9' => 'nine', + _ => t, + }, + ) + .mapIndexed((i, t) => i == 0 ? t : '${t.substring(0, 1).toUpperCase()}${t.substring(1)}') + .join(); + name = StringNormalizer.normalize(name); + name = name.replaceAll(RegExp('[^a-z]', caseSensitive: false), ''); + if (name.isNotEmpty) { + break; + } + } + + if (name == 'new') { + name = r'$new'; + } + + emojiGroups[groupId] ??= []; + emojiGroups[groupId]!.add(name); + + // Some emojis are in multiple groups + if (names.containsKey(name)) { + if (names[name] != base) { + throw Exception('Conflicting name $name for different emojis: $base ${names[name]}'); + } + continue; + } + names[name] = base; + + b.body.add( + Code(''' +/// The $base emoji. +const $name = Emoji( + base: '$base', + alternates: [${alternates.isNotEmpty ? "'${alternates.join("', '")}'," : ''}], + emoticons: [${emoticons.isNotEmpty ? "'${emoticons.join("', '").replaceAll("'", r"\'").replaceAll(r'$', r'\$')}'," : ''}], + shortcodes: ['${shortcodes.join("', '")}',], + animated: $animated, +); + +'''), + ); + } + } + + for (final groupId in emojiGroups.keys) { + final emojis = emojiGroups[groupId]!; + + b.body.add( + Code(''' +/// The "${groupIds.entries.firstWhere((e) => e.value == groupId).key}" emojis. +const ${groupId}Group = [${emojis.join(', ')},]; + +'''), + ); + } + + b.body.add( + Code(''' +/// All emojis. +const all = [${emojiGroups.values.expand((t) => [...t]).join(', ')},]; + +'''), + ); + }); + + final output = library.accept(emitter).toString(); + File('lib/src/utils/emojis.dart').writeAsStringSync(formatter.format(output)); +} diff --git a/packages/neon_framework/lib/src/utils/emojis.dart b/packages/neon_framework/lib/src/utils/emojis.dart new file mode 100644 index 00000000000..34437258e1b --- /dev/null +++ b/packages/neon_framework/lib/src/utils/emojis.dart @@ -0,0 +1,24720 @@ +// GENERATED CODE - DO NOT MODIFY BY HAND + +/// Holds the metadata of a Unicode emoji. +class Emoji { + /// Creates a new [Emoji]. + const Emoji({ + required this.base, + required this.alternates, + required this.emoticons, + required this.shortcodes, + required this.animated, + }); + + /// The base emoji symbol. + final String base; + + /// The associated alternate emoji symbols. + final List alternates; + + /// The associated emoticons. + final List emoticons; + + /// The associated short codes. + final List shortcodes; + + /// Whether the emoji can be animated. + final bool animated; +} + +/// The ๐Ÿ˜€ emoji. +const smile = Emoji( + base: '๐Ÿ˜€', + alternates: [], + emoticons: [ + ':D', + ], + shortcodes: [ + ':smile:', + ], + animated: true, +); + +/// The ๐Ÿ˜ƒ emoji. +const smileWithBigEyes = Emoji( + base: '๐Ÿ˜ƒ', + alternates: [], + emoticons: [ + ':-D', + ], + shortcodes: [ + ':smile-with-big-eyes:', + ], + animated: true, +); + +/// The ๐Ÿ˜„ emoji. +const grin = Emoji( + base: '๐Ÿ˜„', + alternates: [], + emoticons: [ + '^_^', + ], + shortcodes: [ + ':grin:', + ], + animated: true, +); + +/// The ๐Ÿ˜ emoji. +const grinning = Emoji( + base: '๐Ÿ˜', + alternates: [], + emoticons: [ + '*^_^*', + ], + shortcodes: [ + ':grinning:', + ], + animated: true, +); + +/// The ๐Ÿ˜† emoji. +const laughing = Emoji( + base: '๐Ÿ˜†', + alternates: [], + emoticons: [ + 'X-D', + ], + shortcodes: [ + ':laughing:', + ], + animated: true, +); + +/// The ๐Ÿ˜… emoji. +const grinSweat = Emoji( + base: '๐Ÿ˜…', + alternates: [], + emoticons: [ + '^_^;', + ], + shortcodes: [ + ':grin-sweat:', + ], + animated: true, +); + +/// The ๐Ÿ˜‚ emoji. +const joy = Emoji( + base: '๐Ÿ˜‚', + alternates: [], + emoticons: [ + '>w<', + ], + shortcodes: [ + ':joy:', + ], + animated: true, +); + +/// The ๐Ÿคฃ emoji. +const rofl = Emoji( + base: '๐Ÿคฃ', + alternates: [], + emoticons: [ + '*>w<*', + ], + shortcodes: [ + ':rofl:', + ], + animated: true, +); + +/// The ๐Ÿ˜ญ emoji. +const loudlyCrying = Emoji( + base: '๐Ÿ˜ญ', + alternates: [], + emoticons: [ + ';_;', + ], + shortcodes: [ + ':loudly-crying:', + ], + animated: true, +); + +/// The ๐Ÿ˜‰ emoji. +const wink = Emoji( + base: '๐Ÿ˜‰', + alternates: [], + emoticons: [ + ';)', + ], + shortcodes: [ + ':wink:', + ], + animated: true, +); + +/// The ๐Ÿ˜— emoji. +const kissing = Emoji( + base: '๐Ÿ˜—', + alternates: [], + emoticons: [ + ':*', + ], + shortcodes: [ + ':kissing:', + ], + animated: true, +); + +/// The ๐Ÿ˜™ emoji. +const kissingSmilingEyes = Emoji( + base: '๐Ÿ˜™', + alternates: [], + emoticons: [ + '^3^', + ], + shortcodes: [ + ':kissing-smiling-eyes:', + ], + animated: true, +); + +/// The ๐Ÿ˜š emoji. +const kissingClosedEyes = Emoji( + base: '๐Ÿ˜š', + alternates: [], + emoticons: [ + ':**', + ], + shortcodes: [ + ':kissing-closed-eyes:', + ], + animated: true, +); + +/// The ๐Ÿ˜˜ emoji. +const kissingHeart = Emoji( + base: '๐Ÿ˜˜', + alternates: [], + emoticons: [ + ';*', + ], + shortcodes: [ + ':kissing-heart:', + ], + animated: true, +); + +/// The ๐Ÿฅฐ emoji. +const heartFace = Emoji( + base: '๐Ÿฅฐ', + alternates: [], + emoticons: [ + '<3:)', + ], + shortcodes: [ + ':heart-face:', + ':3-hearts:', + ], + animated: true, +); + +/// The ๐Ÿ˜ emoji. +const heartEyes = Emoji( + base: '๐Ÿ˜', + alternates: [], + emoticons: [ + 'โ™ฅ_โ™ฅ', + ], + shortcodes: [ + ':heart-eyes:', + ], + animated: true, +); + +/// The ๐Ÿคฉ emoji. +const starStruck = Emoji( + base: '๐Ÿคฉ', + alternates: [], + emoticons: [ + '*_*', + ], + shortcodes: [ + ':star-struck:', + ], + animated: true, +); + +/// The ๐Ÿฅณ emoji. +const partyingFace = Emoji( + base: '๐Ÿฅณ', + alternates: [], + emoticons: [ + '(๏พ‰โ—•ใƒฎโ—•)โ™ฌโ™ช', + ], + shortcodes: [ + ':partying-face:', + ], + animated: true, +); + +/// The ๐Ÿซ  emoji. +const melting = Emoji( + base: '๐Ÿซ ', + alternates: [], + emoticons: [], + shortcodes: [ + ':melting:', + ], + animated: true, +); + +/// The ๐Ÿ™ƒ emoji. +const upsideDownFace = Emoji( + base: '๐Ÿ™ƒ', + alternates: [], + emoticons: [ + '(:', + ], + shortcodes: [ + ':upside-down-face:', + ], + animated: true, +); + +/// The ๐Ÿ™‚ emoji. +const slightlyHappy = Emoji( + base: '๐Ÿ™‚', + alternates: [], + emoticons: [ + ":)', ':-)", + ], + shortcodes: [ + ':slightly-happy:', + ], + animated: true, +); + +/// The ๐Ÿฅฒ emoji. +const happyCry = Emoji( + base: '๐Ÿฅฒ', + alternates: [], + emoticons: [ + ':,)', + ], + shortcodes: [ + ':happy-cry:', + ], + animated: true, +); + +/// The ๐Ÿฅน emoji. +const holdingBackTears = Emoji( + base: '๐Ÿฅน', + alternates: [], + emoticons: [ + '(๏ผ›ไบบ๏ผ›)', + ], + shortcodes: [ + ':holding-back-tears:', + ], + animated: true, +); + +/// The ๐Ÿ˜Š emoji. +const blush = Emoji( + base: '๐Ÿ˜Š', + alternates: [], + emoticons: [], + shortcodes: [ + ':blush:', + ], + animated: true, +); + +/// The โ˜บ๏ธ emoji. +const warmSmile = Emoji( + base: 'โ˜บ๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':warm-smile:', + ], + animated: true, +); + +/// The ๐Ÿ˜Œ emoji. +const relieved = Emoji( + base: '๐Ÿ˜Œ', + alternates: [], + emoticons: [], + shortcodes: [ + ':relieved:', + ], + animated: true, +); + +/// The ๐Ÿ˜ emoji. +const smirk = Emoji( + base: '๐Ÿ˜', + alternates: [], + emoticons: [ + '>~>', + ], + shortcodes: [ + ':smirk:', + ], + animated: true, +); + +/// The ๐Ÿ˜ด emoji. +const sleep = Emoji( + base: '๐Ÿ˜ด', + alternates: [], + emoticons: [ + 'Z_Z', + ], + shortcodes: [ + ':sleep:', + ':tired:', + ], + animated: true, +); + +/// The ๐Ÿ˜ช emoji. +const sleepy = Emoji( + base: '๐Ÿ˜ช', + alternates: [], + emoticons: [ + '(-.-)zzZZ', + ], + shortcodes: [ + ':sleepy:', + ], + animated: true, +); + +/// The ๐Ÿคค emoji. +const drool = Emoji( + base: '๐Ÿคค', + alternates: [], + emoticons: [ + '(ยฏ๏นƒยฏ)', + ], + shortcodes: [ + ':drool:', + ], + animated: true, +); + +/// The ๐Ÿ˜‹ emoji. +const yum = Emoji( + base: '๐Ÿ˜‹', + alternates: [], + emoticons: [], + shortcodes: [ + ':yum:', + ], + animated: true, +); + +/// The ๐Ÿ˜› emoji. +const stuckOutTongue = Emoji( + base: '๐Ÿ˜›', + alternates: [], + emoticons: [ + ":P', ':p', ':-P', ':-p", + ], + shortcodes: [ + ':stuck-out-tongue:', + ], + animated: true, +); + +/// The ๐Ÿ˜ emoji. +const squintingTongue = Emoji( + base: '๐Ÿ˜', + alternates: [], + emoticons: [ + '>q<', + ], + shortcodes: [ + ':squinting-tongue:', + ], + animated: true, +); + +/// The ๐Ÿ˜œ emoji. +const winkyTongue = Emoji( + base: '๐Ÿ˜œ', + alternates: [], + emoticons: [ + ';p', + ], + shortcodes: [ + ':winky-tongue:', + ], + animated: true, +); + +/// The ๐Ÿคช emoji. +const zanyFace = Emoji( + base: '๐Ÿคช', + alternates: [], + emoticons: [], + shortcodes: [ + ':zany-face:', + ], + animated: true, +); + +/// The ๐Ÿฅด emoji. +const woozy = Emoji( + base: '๐Ÿฅด', + alternates: [], + emoticons: [ + '>๏นโ˜‰', + ], + shortcodes: [ + ':woozy:', + ], + animated: true, +); + +/// The ๐Ÿ˜” emoji. +const pensive = Emoji( + base: '๐Ÿ˜”', + alternates: [], + emoticons: [ + '._.', + ], + shortcodes: [ + ':pensive:', + ], + animated: true, +); + +/// The ๐Ÿฅบ emoji. +const pleading = Emoji( + base: '๐Ÿฅบ', + alternates: [], + emoticons: [ + 'โ—•๏นโ—•', + ], + shortcodes: [ + ':pleading:', + ], + animated: true, +); + +/// The ๐Ÿ˜ฌ emoji. +const grimacing = Emoji( + base: '๐Ÿ˜ฌ', + alternates: [], + emoticons: [ + ':-|', + ], + shortcodes: [ + ':grimacing:', + ], + animated: true, +); + +/// The ๐Ÿ˜‘ emoji. +const expressionless = Emoji( + base: '๐Ÿ˜‘', + alternates: [], + emoticons: [ + '-_-', + ], + shortcodes: [ + ':expressionless:', + ], + animated: true, +); + +/// The ๐Ÿ˜ emoji. +const neutralFace = Emoji( + base: '๐Ÿ˜', + alternates: [], + emoticons: [ + ':|', + ], + shortcodes: [ + ':neutral-face:', + ], + animated: true, +); + +/// The ๐Ÿ˜ถ emoji. +const mouthNone = Emoji( + base: '๐Ÿ˜ถ', + alternates: [], + emoticons: [], + shortcodes: [ + ':mouth-none:', + ], + animated: true, +); + +/// The ๐Ÿ˜ถโ€๐ŸŒซ๏ธ emoji. +const faceInClouds = Emoji( + base: '๐Ÿ˜ถโ€๐ŸŒซ๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':face-in-clouds:', + ':lost:', + ], + animated: true, +); + +/// The ๐Ÿซฅ emoji. +const dottedLineFace = Emoji( + base: '๐Ÿซฅ', + alternates: [], + emoticons: [], + shortcodes: [ + ':dotted-line-face:', + ':invisible:', + ], + animated: true, +); + +/// The ๐Ÿค emoji. +const zipperFace = Emoji( + base: '๐Ÿค', + alternates: [], + emoticons: [ + ':#', + ], + shortcodes: [ + ':zipper-face:', + ], + animated: true, +); + +/// The ๐Ÿซก emoji. +const salute = Emoji( + base: '๐Ÿซก', + alternates: [], + emoticons: [ + '(ใƒปะดใƒปใ‚๏ผ‰', + ], + shortcodes: [ + ':salute:', + ], + animated: true, +); + +/// The ๐Ÿค” emoji. +const thinkingFace = Emoji( + base: '๐Ÿค”', + alternates: [], + emoticons: [ + '=L', + ], + shortcodes: [ + ':thinking-face:', + ], + animated: true, +); + +/// The ๐Ÿคซ emoji. +const shushingFace = Emoji( + base: '๐Ÿคซ', + alternates: [], + emoticons: [ + '(๏ฟฃb๏ฟฃ)', + ], + shortcodes: [ + ':shushing-face:', + ], + animated: true, +); + +/// The ๐Ÿซข emoji. +const handOverMouth = Emoji( + base: '๐Ÿซข', + alternates: [], + emoticons: [], + shortcodes: [ + ':hand-over-mouth:', + ], + animated: true, +); + +/// The ๐Ÿคญ emoji. +const smilingEyesWithHandOverMouth = Emoji( + base: '๐Ÿคญ', + alternates: [], + emoticons: [], + shortcodes: [ + ':smiling-eyes-with-hand-over-mouth:', + ':chuckling:', + ], + animated: true, +); + +/// The ๐Ÿฅฑ emoji. +const yawn = Emoji( + base: '๐Ÿฅฑ', + alternates: [], + emoticons: [ + '~O~', + ], + shortcodes: [ + ':yawn:', + ], + animated: true, +); + +/// The ๐Ÿค— emoji. +const hugFace = Emoji( + base: '๐Ÿค—', + alternates: [], + emoticons: [ + '(^o^)/', + ], + shortcodes: [ + ':hug-face:', + ], + animated: true, +); + +/// The ๐Ÿซฃ emoji. +const peeking = Emoji( + base: '๐Ÿซฃ', + alternates: [], + emoticons: [ + '(*/ใ€‚๏ผผ)', + ], + shortcodes: [ + ':peeking:', + ], + animated: true, +); + +/// The ๐Ÿ˜ฑ emoji. +const screaming = Emoji( + base: '๐Ÿ˜ฑ', + alternates: [], + emoticons: [ + '@0@', + ], + shortcodes: [ + ':screaming:', + ], + animated: true, +); + +/// The ๐Ÿคจ emoji. +const raisedEyebrow = Emoji( + base: '๐Ÿคจ', + alternates: [], + emoticons: [ + "(', 'อืกึผ', 'อœส–อกืกึผ)", + ], + shortcodes: [ + ':raised-eyebrow:', + ], + animated: true, +); + +/// The ๐Ÿง emoji. +const monocle = Emoji( + base: '๐Ÿง', + alternates: [], + emoticons: [ + 'o~O', + ], + shortcodes: [ + ':monocle:', + ], + animated: true, +); + +/// The ๐Ÿ˜’ emoji. +const unamused = Emoji( + base: '๐Ÿ˜’', + alternates: [], + emoticons: [ + '>->', + ], + shortcodes: [ + ':unamused:', + ], + animated: true, +); + +/// The ๐Ÿ™„ emoji. +const rollingEyes = Emoji( + base: '๐Ÿ™„', + alternates: [], + emoticons: [], + shortcodes: [ + ':rolling-eyes:', + ], + animated: true, +); + +/// The ๐Ÿ˜ฎโ€๐Ÿ’จ emoji. +const exhale = Emoji( + base: '๐Ÿ˜ฎโ€๐Ÿ’จ', + alternates: [], + emoticons: [], + shortcodes: [ + ':exhale:', + ], + animated: true, +); + +/// The ๐Ÿ˜ค emoji. +const triumph = Emoji( + base: '๐Ÿ˜ค', + alternates: [], + emoticons: [ + '(((โ•ฌโ—ฃ๏นโ—ข)))', + ], + shortcodes: [ + ':triumph:', + ], + animated: true, +); + +/// The ๐Ÿ˜  emoji. +const angry = Emoji( + base: '๐Ÿ˜ ', + alternates: [], + emoticons: [ + 'X-(', + ], + shortcodes: [ + ':angry:', + ], + animated: true, +); + +/// The ๐Ÿ˜ก emoji. +const rage = Emoji( + base: '๐Ÿ˜ก', + alternates: [], + emoticons: [ + '>:O', + ], + shortcodes: [ + ':rage:', + ], + animated: true, +); + +/// The ๐Ÿคฌ emoji. +const cursing = Emoji( + base: '๐Ÿคฌ', + alternates: [], + emoticons: [ + r'#$@!', + ], + shortcodes: [ + ':cursing:', + ], + animated: true, +); + +/// The ๐Ÿ˜ž emoji. +const sad = Emoji( + base: '๐Ÿ˜ž', + alternates: [], + emoticons: [], + shortcodes: [ + ':sad:', + ], + animated: true, +); + +/// The ๐Ÿ˜“ emoji. +const sweat = Emoji( + base: '๐Ÿ˜“', + alternates: [], + emoticons: [ + '(0ใธ0)', + ], + shortcodes: [ + ':sweat:', + ':downcast:', + ], + animated: true, +); + +/// The ๐Ÿ˜Ÿ emoji. +const worried = Emoji( + base: '๐Ÿ˜Ÿ', + alternates: [], + emoticons: [ + ':S', + ], + shortcodes: [ + ':worried:', + ], + animated: true, +); + +/// The ๐Ÿ˜ฅ emoji. +const concerned = Emoji( + base: '๐Ÿ˜ฅ', + alternates: [], + emoticons: [ + "โ€ข_โ€ข'", + ], + shortcodes: [ + ':concerned:', + ], + animated: true, +); + +/// The ๐Ÿ˜ข emoji. +const cry = Emoji( + base: '๐Ÿ˜ข', + alternates: [], + emoticons: [ + ":'(", + ], + shortcodes: [ + ':cry:', + ], + animated: true, +); + +/// The โ˜น๏ธ emoji. +const bigFrown = Emoji( + base: 'โ˜น๏ธ', + alternates: [], + emoticons: [ + ':-(', + ], + shortcodes: [ + ':big-frown:', + ], + animated: true, +); + +/// The ๐Ÿ™ emoji. +const frown = Emoji( + base: '๐Ÿ™', + alternates: [], + emoticons: [ + ':(', + ], + shortcodes: [ + ':frown:', + ], + animated: true, +); + +/// The ๐Ÿซค emoji. +const diagonalMouth = Emoji( + base: '๐Ÿซค', + alternates: [], + emoticons: [ + ':/', + ], + shortcodes: [ + ':diagonal-mouth:', + ], + animated: true, +); + +/// The ๐Ÿ˜• emoji. +const slightlyFrowning = Emoji( + base: '๐Ÿ˜•', + alternates: [], + emoticons: [ + ':-/', + ], + shortcodes: [ + ':slightly-frowning:', + ], + animated: true, +); + +/// The ๐Ÿ˜ฐ emoji. +const anxiousWithSweat = Emoji( + base: '๐Ÿ˜ฐ', + alternates: [], + emoticons: [ + "D-':", + ], + shortcodes: [ + ':anxious-with-sweat:', + ], + animated: true, +); + +/// The ๐Ÿ˜จ emoji. +const scared = Emoji( + base: '๐Ÿ˜จ', + alternates: [], + emoticons: [ + 'D-:', + ], + shortcodes: [ + ':scared:', + ], + animated: true, +); + +/// The ๐Ÿ˜ง emoji. +const anguished = Emoji( + base: '๐Ÿ˜ง', + alternates: [], + emoticons: [], + shortcodes: [ + ':anguished:', + ], + animated: true, +); + +/// The ๐Ÿ˜ฆ emoji. +const gasp = Emoji( + base: '๐Ÿ˜ฆ', + alternates: [], + emoticons: [ + 'D=', + ], + shortcodes: [ + ':gasp:', + ], + animated: true, +); + +/// The ๐Ÿ˜ฎ emoji. +const mouthOpen = Emoji( + base: '๐Ÿ˜ฎ', + alternates: [], + emoticons: [ + ':O', + ], + shortcodes: [ + ':mouth-open:', + ], + animated: true, +); + +/// The ๐Ÿ˜ฏ emoji. +const surprised = Emoji( + base: '๐Ÿ˜ฏ', + alternates: [], + emoticons: [ + ':o', + ], + shortcodes: [ + ':surprised:', + ':hushed:', + ], + animated: true, +); + +/// The ๐Ÿ˜ฒ emoji. +const astonished = Emoji( + base: '๐Ÿ˜ฒ', + alternates: [], + emoticons: [], + shortcodes: [ + ':astonished:', + ], + animated: true, +); + +/// The ๐Ÿ˜ณ emoji. +const flushed = Emoji( + base: '๐Ÿ˜ณ', + alternates: [], + emoticons: [ + '8โ€‘0', + ], + shortcodes: [ + ':flushed:', + ], + animated: true, +); + +/// The ๐Ÿคฏ emoji. +const mindBlown = Emoji( + base: '๐Ÿคฏ', + alternates: [], + emoticons: [], + shortcodes: [ + ':mind-blown:', + ':exploding-head:', + ], + animated: true, +); + +/// The ๐Ÿ˜– emoji. +const scrunchedMouth = Emoji( + base: '๐Ÿ˜–', + alternates: [], + emoticons: [ + '>:[', + ], + shortcodes: [ + ':scrunched-mouth:', + ':confounded:', + ':zigzag-mouth:', + ], + animated: true, +); + +/// The ๐Ÿ˜ฃ emoji. +const scrunchedEyes = Emoji( + base: '๐Ÿ˜ฃ', + alternates: [], + emoticons: [ + '>:(', + ], + shortcodes: [ + ':scrunched-eyes:', + ':persevering:', + ], + animated: true, +); + +/// The ๐Ÿ˜ฉ emoji. +const weary = Emoji( + base: '๐Ÿ˜ฉ', + alternates: [], + emoticons: [ + 'D:', + ], + shortcodes: [ + ':weary:', + ], + animated: true, +); + +/// The ๐Ÿ˜ซ emoji. +const distraught = Emoji( + base: '๐Ÿ˜ซ', + alternates: [], + emoticons: [ + 'D-X', + ], + shortcodes: [ + ':distraught:', + ], + animated: true, +); + +/// The ๐Ÿ˜ต emoji. +const xEyes = Emoji( + base: '๐Ÿ˜ต', + alternates: [], + emoticons: [ + 'X_o', + ], + shortcodes: [ + ':x-eyes:', + ], + animated: true, +); + +/// The ๐Ÿ˜ตโ€๐Ÿ’ซ emoji. +const dizzyFace = Emoji( + base: '๐Ÿ˜ตโ€๐Ÿ’ซ', + alternates: [], + emoticons: [], + shortcodes: [ + ':dizzy-face:', + ], + animated: true, +); + +/// The ๐Ÿซจ emoji. +const shakingFace = Emoji( + base: '๐Ÿซจ', + alternates: [], + emoticons: [], + shortcodes: [ + ':shaking-face:', + ], + animated: true, +); + +/// The ๐Ÿฅถ emoji. +const coldFace = Emoji( + base: '๐Ÿฅถ', + alternates: [], + emoticons: [], + shortcodes: [ + ':cold-face:', + ], + animated: true, +); + +/// The ๐Ÿฅต emoji. +const hotFace = Emoji( + base: '๐Ÿฅต', + alternates: [], + emoticons: [], + shortcodes: [ + ':hot-face:', + ':sweat-face:', + ], + animated: true, +); + +/// The ๐Ÿคข emoji. +const sick = Emoji( + base: '๐Ÿคข', + alternates: [], + emoticons: [ + ':-###', + ], + shortcodes: [ + ':sick:', + ':nauseated:', + ], + animated: true, +); + +/// The ๐Ÿคฎ emoji. +const vomit = Emoji( + base: '๐Ÿคฎ', + alternates: [], + emoticons: [ + ':-O##', + ], + shortcodes: [ + ':vomit:', + ], + animated: true, +); + +/// The ๐Ÿคง emoji. +const sneeze = Emoji( + base: '๐Ÿคง', + alternates: [], + emoticons: [ + '(*ยดๅฐ๏ฝ€*)', + ], + shortcodes: [ + ':sneeze:', + ], + animated: true, +); + +/// The ๐Ÿค’ emoji. +const thermometerFace = Emoji( + base: '๐Ÿค’', + alternates: [], + emoticons: [], + shortcodes: [ + ':thermometer-face:', + ], + animated: true, +); + +/// The ๐Ÿค• emoji. +const bandageFace = Emoji( + base: '๐Ÿค•', + alternates: [], + emoticons: [], + shortcodes: [ + ':bandage-face:', + ], + animated: true, +); + +/// The ๐Ÿ˜ท emoji. +const mask = Emoji( + base: '๐Ÿ˜ท', + alternates: [], + emoticons: [], + shortcodes: [ + ':mask:', + ], + animated: true, +); + +/// The ๐Ÿคฅ emoji. +const liar = Emoji( + base: '๐Ÿคฅ', + alternates: [], + emoticons: [], + shortcodes: [ + ':liar:', + ], + animated: true, +); + +/// The ๐Ÿ˜‡ emoji. +const halo = Emoji( + base: '๐Ÿ˜‡', + alternates: [], + emoticons: [ + 'O:)', + ], + shortcodes: [ + ':halo:', + ':innocent:', + ], + animated: true, +); + +/// The ๐Ÿค  emoji. +const cowboy = Emoji( + base: '๐Ÿค ', + alternates: [], + emoticons: [ + '<):)', + ], + shortcodes: [ + ':cowboy:', + ], + animated: true, +); + +/// The ๐Ÿค‘ emoji. +const moneyFace = Emoji( + base: '๐Ÿค‘', + alternates: [], + emoticons: [ + r'$_$', + ], + shortcodes: [ + ':money-face:', + ], + animated: true, +); + +/// The ๐Ÿค“ emoji. +const nerdFace = Emoji( + base: '๐Ÿค“', + alternates: [], + emoticons: [ + ':-B', + ], + shortcodes: [ + ':nerd-face:', + ], + animated: true, +); + +/// The ๐Ÿ˜Ž emoji. +const sunglassesFace = Emoji( + base: '๐Ÿ˜Ž', + alternates: [], + emoticons: [ + 'B-)', + ], + shortcodes: [ + ':sunglasses-face:', + ], + animated: true, +); + +/// The ๐Ÿฅธ emoji. +const disguise = Emoji( + base: '๐Ÿฅธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':disguise:', + ], + animated: true, +); + +/// The ๐Ÿคก emoji. +const clown = Emoji( + base: '๐Ÿคก', + alternates: [], + emoticons: [ + ':o)', + ], + shortcodes: [ + ':clown:', + ], + animated: true, +); + +/// The ๐Ÿ˜ˆ emoji. +const impSmile = Emoji( + base: '๐Ÿ˜ˆ', + alternates: [], + emoticons: [ + '3:)', + ], + shortcodes: [ + ':imp-smile:', + ], + animated: true, +); + +/// The ๐Ÿ‘ฟ emoji. +const impFrown = Emoji( + base: '๐Ÿ‘ฟ', + alternates: [], + emoticons: [ + '3:(', + ], + shortcodes: [ + ':imp-frown:', + ], + animated: true, +); + +/// The ๐Ÿ‘ป emoji. +const ghost = Emoji( + base: '๐Ÿ‘ป', + alternates: [], + emoticons: [ + 'โŠ‚(ยดใƒปโ—กใƒปโŠ‚)โˆ˜หšหณยฐ', + ], + shortcodes: [ + ':ghost:', + ], + animated: true, +); + +/// The ๐ŸŽƒ emoji. +const jackOLantern = Emoji( + base: '๐ŸŽƒ', + alternates: [], + emoticons: [], + shortcodes: [ + ':jack-o-lantern:', + ], + animated: true, +); + +/// The ๐Ÿ’ฉ emoji. +const poop = Emoji( + base: '๐Ÿ’ฉ', + alternates: [], + emoticons: [ + 'เผผ^-^เผฝ', + ], + shortcodes: [ + ':poop:', + ], + animated: true, +); + +/// The ๐Ÿค– emoji. +const robot = Emoji( + base: '๐Ÿค–', + alternates: [], + emoticons: [], + shortcodes: [ + ':robot:', + ], + animated: true, +); + +/// The ๐Ÿ‘ฝ emoji. +const alien = Emoji( + base: '๐Ÿ‘ฝ', + alternates: [], + emoticons: [ + '(<>..<>)', + ], + shortcodes: [ + ':alien:', + ], + animated: true, +); + +/// The ๐Ÿ‘พ emoji. +const alienMonster = Emoji( + base: '๐Ÿ‘พ', + alternates: [], + emoticons: [], + shortcodes: [ + ':alien-monster:', + ], + animated: false, +); + +/// The ๐ŸŒ› emoji. +const moonFaceFirstQuarter = Emoji( + base: '๐ŸŒ›', + alternates: [], + emoticons: [], + shortcodes: [ + ':moon-face-first-quarter:', + ], + animated: true, +); + +/// The ๐ŸŒœ emoji. +const moonFaceLastQuarter = Emoji( + base: '๐ŸŒœ', + alternates: [], + emoticons: [], + shortcodes: [ + ':moon-face-last-quarter:', + ], + animated: true, +); + +/// The ๐ŸŒš emoji. +const moonFaceNew = Emoji( + base: '๐ŸŒš', + alternates: [], + emoticons: [ + '>_>', + ], + shortcodes: [ + ':moon-face-new:', + ], + animated: false, +); + +/// The ๐ŸŒ emoji. +const moonFaceFull = Emoji( + base: '๐ŸŒ', + alternates: [], + emoticons: [ + '<_<', + ], + shortcodes: [ + ':moon-face-full:', + ], + animated: false, +); + +/// The ๐ŸŒž emoji. +const sunWithFace = Emoji( + base: '๐ŸŒž', + alternates: [], + emoticons: [], + shortcodes: [ + ':sun-with-face:', + ], + animated: true, +); + +/// The โ˜ ๏ธ emoji. +const skullAndCrossbones = Emoji( + base: 'โ˜ ๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':skull-and-crossbones:', + ], + animated: false, +); + +/// The ๐Ÿ‘น emoji. +const ogre = Emoji( + base: '๐Ÿ‘น', + alternates: [], + emoticons: [], + shortcodes: [ + ':ogre:', + ], + animated: false, +); + +/// The ๐Ÿ‘บ emoji. +const goblin = Emoji( + base: '๐Ÿ‘บ', + alternates: [], + emoticons: [], + shortcodes: [ + ':goblin:', + ], + animated: false, +); + +/// The ๐Ÿ”ฅ emoji. +const fire = Emoji( + base: '๐Ÿ”ฅ', + alternates: [], + emoticons: [], + shortcodes: [ + ':fire:', + ':burn:', + ':lit:', + ], + animated: true, +); + +/// The ๐Ÿ’ฏ emoji. +const oneHundred = Emoji( + base: '๐Ÿ’ฏ', + alternates: [], + emoticons: [], + shortcodes: [ + ':100:', + ':one-hundred:', + ':hundred:', + ':points:', + ], + animated: true, +); + +/// The ๐Ÿ’ซ emoji. +const dizzy = Emoji( + base: '๐Ÿ’ซ', + alternates: [], + emoticons: [], + shortcodes: [ + ':dizzy:', + ], + animated: false, +); + +/// The โญ emoji. +const star = Emoji( + base: 'โญ', + alternates: [], + emoticons: [], + shortcodes: [ + ':star:', + ], + animated: false, +); + +/// The ๐ŸŒŸ emoji. +const glowingStar = Emoji( + base: '๐ŸŒŸ', + alternates: [], + emoticons: [], + shortcodes: [ + ':glowing-star:', + ], + animated: true, +); + +/// The โœจ emoji. +const sparkles = Emoji( + base: 'โœจ', + alternates: [], + emoticons: [], + shortcodes: [ + ':sparkles:', + ], + animated: true, +); + +/// The ๐Ÿ’ฅ emoji. +const collision = Emoji( + base: '๐Ÿ’ฅ', + alternates: [], + emoticons: [], + shortcodes: [ + ':collision:', + ], + animated: true, +); + +/// The ๐Ÿ’จ emoji. +const dash = Emoji( + base: '๐Ÿ’จ', + alternates: [], + emoticons: [], + shortcodes: [ + ':dash:', + ':poof:', + ], + animated: false, +); + +/// The ๐Ÿ’ฆ emoji. +const sweatDroplets = Emoji( + base: '๐Ÿ’ฆ', + alternates: [], + emoticons: [], + shortcodes: [ + ':sweat-droplets:', + ], + animated: false, +); + +/// The ๐Ÿ’ค emoji. +const zzz = Emoji( + base: '๐Ÿ’ค', + alternates: [], + emoticons: [], + shortcodes: [ + ':zzz:', + ], + animated: false, +); + +/// The ๐Ÿ•ณ๏ธ emoji. +const hole = Emoji( + base: '๐Ÿ•ณ๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':hole:', + ], + animated: false, +); + +/// The ๐ŸŽ‰ emoji. +const partyPopper = Emoji( + base: '๐ŸŽ‰', + alternates: [], + emoticons: [], + shortcodes: [ + ':party-popper:', + ], + animated: true, +); + +/// The ๐Ÿ™ˆ emoji. +const seeNoEvilMonkey = Emoji( + base: '๐Ÿ™ˆ', + alternates: [], + emoticons: [], + shortcodes: [ + ':see-no-evil-monkey:', + ], + animated: true, +); + +/// The ๐Ÿ™‰ emoji. +const hearNoEvilMonkey = Emoji( + base: '๐Ÿ™‰', + alternates: [], + emoticons: [], + shortcodes: [ + ':hear-no-evil-monkey:', + ], + animated: true, +); + +/// The ๐Ÿ™Š emoji. +const speakNoEvilMonkey = Emoji( + base: '๐Ÿ™Š', + alternates: [], + emoticons: [], + shortcodes: [ + ':speak-no-evil-monkey:', + ], + animated: true, +); + +/// The ๐Ÿ˜บ emoji. +const smileyCat = Emoji( + base: '๐Ÿ˜บ', + alternates: [], + emoticons: [ + ':3', + ], + shortcodes: [ + ':smiley-cat:', + ], + animated: true, +); + +/// The ๐Ÿ˜ธ emoji. +const smileCat = Emoji( + base: '๐Ÿ˜ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':smile-cat:', + ], + animated: true, +); + +/// The ๐Ÿ˜น emoji. +const joyCat = Emoji( + base: '๐Ÿ˜น', + alternates: [], + emoticons: [], + shortcodes: [ + ':joy-cat:', + ], + animated: true, +); + +/// The ๐Ÿ˜ป emoji. +const heartEyesCat = Emoji( + base: '๐Ÿ˜ป', + alternates: [], + emoticons: [], + shortcodes: [ + ':heart-eyes-cat:', + ], + animated: true, +); + +/// The ๐Ÿ˜ผ emoji. +const smirkCat = Emoji( + base: '๐Ÿ˜ผ', + alternates: [], + emoticons: [], + shortcodes: [ + ':smirk-cat:', + ], + animated: true, +); + +/// The ๐Ÿ˜ฝ emoji. +const kissingCat = Emoji( + base: '๐Ÿ˜ฝ', + alternates: [], + emoticons: [], + shortcodes: [ + ':kissing-cat:', + ], + animated: true, +); + +/// The ๐Ÿ™€ emoji. +const screamCat = Emoji( + base: '๐Ÿ™€', + alternates: [], + emoticons: [], + shortcodes: [ + ':scream-cat:', + ], + animated: true, +); + +/// The ๐Ÿ˜ฟ emoji. +const cryingCatFace = Emoji( + base: '๐Ÿ˜ฟ', + alternates: [], + emoticons: [], + shortcodes: [ + ':crying-cat-face:', + ], + animated: true, +); + +/// The ๐Ÿ˜พ emoji. +const poutingCat = Emoji( + base: '๐Ÿ˜พ', + alternates: [], + emoticons: [], + shortcodes: [ + ':pouting-cat:', + ], + animated: true, +); + +/// The โค๏ธ emoji. +const redHeart = Emoji( + base: 'โค๏ธ', + alternates: [], + emoticons: [ + '<3', + ], + shortcodes: [ + ':red-heart:', + ], + animated: true, +); + +/// The ๐Ÿงก emoji. +const orangeHeart = Emoji( + base: '๐Ÿงก', + alternates: [], + emoticons: [], + shortcodes: [ + ':orange-heart:', + ], + animated: true, +); + +/// The ๐Ÿ’› emoji. +const yellowHeart = Emoji( + base: '๐Ÿ’›', + alternates: [], + emoticons: [], + shortcodes: [ + ':yellow-heart:', + ], + animated: true, +); + +/// The ๐Ÿ’š emoji. +const greenHeart = Emoji( + base: '๐Ÿ’š', + alternates: [], + emoticons: [], + shortcodes: [ + ':green-heart:', + ], + animated: true, +); + +/// The ๐Ÿฉต emoji. +const lightBlueHeart = Emoji( + base: '๐Ÿฉต', + alternates: [], + emoticons: [], + shortcodes: [ + ':light-blue-heart:', + ], + animated: true, +); + +/// The ๐Ÿ’™ emoji. +const blueHeart = Emoji( + base: '๐Ÿ’™', + alternates: [], + emoticons: [], + shortcodes: [ + ':blue-heart:', + ], + animated: true, +); + +/// The ๐Ÿ’œ emoji. +const purpleHeart = Emoji( + base: '๐Ÿ’œ', + alternates: [], + emoticons: [], + shortcodes: [ + ':purple-heart:', + ], + animated: true, +); + +/// The ๐ŸคŽ emoji. +const brownHeart = Emoji( + base: '๐ŸคŽ', + alternates: [], + emoticons: [], + shortcodes: [ + ':brown-heart:', + ], + animated: true, +); + +/// The ๐Ÿ–ค emoji. +const blackHeart = Emoji( + base: '๐Ÿ–ค', + alternates: [], + emoticons: [], + shortcodes: [ + ':black-heart:', + ], + animated: true, +); + +/// The ๐Ÿฉถ emoji. +const greyHeart = Emoji( + base: '๐Ÿฉถ', + alternates: [], + emoticons: [], + shortcodes: [ + ':grey-heart:', + ], + animated: true, +); + +/// The ๐Ÿค emoji. +const whiteHeart = Emoji( + base: '๐Ÿค', + alternates: [], + emoticons: [], + shortcodes: [ + ':white-heart:', + ], + animated: true, +); + +/// The ๐Ÿฉท emoji. +const pinkHeart = Emoji( + base: '๐Ÿฉท', + alternates: [], + emoticons: [], + shortcodes: [ + ':pink-heart:', + ], + animated: true, +); + +/// The ๐Ÿ’˜ emoji. +const cupid = Emoji( + base: '๐Ÿ’˜', + alternates: [], + emoticons: [], + shortcodes: [ + ':cupid:', + ], + animated: true, +); + +/// The ๐Ÿ’ emoji. +const giftHeart = Emoji( + base: '๐Ÿ’', + alternates: [], + emoticons: [], + shortcodes: [ + ':gift-heart:', + ], + animated: true, +); + +/// The ๐Ÿ’– emoji. +const sparklingHeart = Emoji( + base: '๐Ÿ’–', + alternates: [], + emoticons: [], + shortcodes: [ + ':sparkling-heart:', + ], + animated: true, +); + +/// The ๐Ÿ’— emoji. +const heartGrow = Emoji( + base: '๐Ÿ’—', + alternates: [], + emoticons: [], + shortcodes: [ + ':heart-grow:', + ], + animated: true, +); + +/// The ๐Ÿ’“ emoji. +const beatingHeart = Emoji( + base: '๐Ÿ’“', + alternates: [], + emoticons: [], + shortcodes: [ + ':beating-heart:', + ], + animated: true, +); + +/// The ๐Ÿ’ž emoji. +const revolvingHearts = Emoji( + base: '๐Ÿ’ž', + alternates: [], + emoticons: [], + shortcodes: [ + ':revolving-hearts:', + ], + animated: true, +); + +/// The ๐Ÿ’• emoji. +const twoHearts = Emoji( + base: '๐Ÿ’•', + alternates: [], + emoticons: [ + '<3<3', + ], + shortcodes: [ + ':two-hearts:', + ], + animated: true, +); + +/// The ๐Ÿ’Œ emoji. +const loveLetter = Emoji( + base: '๐Ÿ’Œ', + alternates: [], + emoticons: [], + shortcodes: [ + ':love-letter:', + ], + animated: true, +); + +/// The ๐Ÿ’Ÿ emoji. +const heartBox = Emoji( + base: '๐Ÿ’Ÿ', + alternates: [], + emoticons: [], + shortcodes: [ + ':heart-box:', + ], + animated: false, +); + +/// The โ™ฅ๏ธ emoji. +const heart = Emoji( + base: 'โ™ฅ๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':heart:', + ], + animated: false, +); + +/// The โฃ๏ธ emoji. +const heartExclamationPoint = Emoji( + base: 'โฃ๏ธ', + alternates: [], + emoticons: [ + '<3!', + ], + shortcodes: [ + ':heart-exclamation-point:', + ], + animated: true, +); + +/// The โค๏ธโ€๐Ÿฉน emoji. +const bandagedHeart = Emoji( + base: 'โค๏ธโ€๐Ÿฉน', + alternates: [], + emoticons: [], + shortcodes: [ + ':bandaged-heart:', + ], + animated: true, +); + +/// The ๐Ÿ’” emoji. +const brokenHeart = Emoji( + base: '๐Ÿ’”', + alternates: [], + emoticons: [ + 'ใ‚œ๏ผ‰๏ฝž๏ฝž๏ฝž๏ฝž', + ], + shortcodes: [ + ':snake:', + ], + animated: true, +); + +/// The ๐Ÿธ emoji. +const frog = Emoji( + base: '๐Ÿธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':frog:', + ], + animated: true, +); + +/// The ๐Ÿ‡ emoji. +const rabbit = Emoji( + base: '๐Ÿ‡', + alternates: [], + emoticons: [], + shortcodes: [ + ':rabbit:', + ], + animated: true, +); + +/// The ๐Ÿ emoji. +const mouse = Emoji( + base: '๐Ÿ', + alternates: [], + emoticons: [ + '<:3)~', + ], + shortcodes: [ + ':mouse:', + ], + animated: false, +); + +/// The ๐Ÿ€ emoji. +const rat = Emoji( + base: '๐Ÿ€', + alternates: [], + emoticons: [], + shortcodes: [ + ':rat:', + ], + animated: true, +); + +/// The ๐Ÿˆ emoji. +const cat = Emoji( + base: '๐Ÿˆ', + alternates: [], + emoticons: [], + shortcodes: [ + ':cat:', + ], + animated: false, +); + +/// The ๐Ÿˆโ€โฌ› emoji. +const blackCat = Emoji( + base: '๐Ÿˆโ€โฌ›', + alternates: [], + emoticons: [], + shortcodes: [ + ':black-cat:', + ], + animated: false, +); + +/// The ๐Ÿฉ emoji. +const poodle = Emoji( + base: '๐Ÿฉ', + alternates: [], + emoticons: [], + shortcodes: [ + ':poodle:', + ], + animated: false, +); + +/// The ๐Ÿ• emoji. +const dog = Emoji( + base: '๐Ÿ•', + alternates: [], + emoticons: [], + shortcodes: [ + ':dog:', + ], + animated: true, +); + +/// The ๐Ÿฆฎ emoji. +const guideDog = Emoji( + base: '๐Ÿฆฎ', + alternates: [], + emoticons: [], + shortcodes: [ + ':guide-dog:', + ], + animated: false, +); + +/// The ๐Ÿ•โ€๐Ÿฆบ emoji. +const serviceDog = Emoji( + base: '๐Ÿ•โ€๐Ÿฆบ', + alternates: [], + emoticons: [], + shortcodes: [ + ':service-dog:', + ], + animated: false, +); + +/// The ๐Ÿ– emoji. +const pig = Emoji( + base: '๐Ÿ–', + alternates: [], + emoticons: [], + shortcodes: [ + ':pig:', + ], + animated: true, +); + +/// The ๐ŸŽ emoji. +const racehorse = Emoji( + base: '๐ŸŽ', + alternates: [], + emoticons: [], + shortcodes: [ + ':racehorse:', + ], + animated: true, +); + +/// The ๐Ÿซ emoji. +const donkey = Emoji( + base: '๐Ÿซ', + alternates: [], + emoticons: [], + shortcodes: [ + ':donkey:', + ], + animated: true, +); + +/// The ๐Ÿ„ emoji. +const cow = Emoji( + base: '๐Ÿ„', + alternates: [], + emoticons: [], + shortcodes: [ + ':cow:', + ], + animated: false, +); + +/// The ๐Ÿ‚ emoji. +const ox = Emoji( + base: '๐Ÿ‚', + alternates: [], + emoticons: [], + shortcodes: [ + ':ox:', + ], + animated: true, +); + +/// The ๐Ÿƒ emoji. +const waterBuffalo = Emoji( + base: '๐Ÿƒ', + alternates: [], + emoticons: [], + shortcodes: [ + ':water-buffalo:', + ], + animated: false, +); + +/// The ๐Ÿฆฌ emoji. +const bison = Emoji( + base: '๐Ÿฆฌ', + alternates: [], + emoticons: [], + shortcodes: [ + ':bison:', + ], + animated: false, +); + +/// The ๐Ÿ emoji. +const ram = Emoji( + base: '๐Ÿ', + alternates: [], + emoticons: [], + shortcodes: [ + ':ram:', + ], + animated: false, +); + +/// The ๐Ÿ‘ emoji. +const sheep = Emoji( + base: '๐Ÿ‘', + alternates: [], + emoticons: [], + shortcodes: [ + ':sheep:', + ':ewe:', + ], + animated: false, +); + +/// The ๐Ÿ emoji. +const goat = Emoji( + base: '๐Ÿ', + alternates: [], + emoticons: [], + shortcodes: [ + ':goat:', + ], + animated: true, +); + +/// The ๐ŸฆŒ emoji. +const deer = Emoji( + base: '๐ŸฆŒ', + alternates: [], + emoticons: [], + shortcodes: [ + ':deer:', + ], + animated: false, +); + +/// The ๐Ÿฆ™ emoji. +const llama = Emoji( + base: '๐Ÿฆ™', + alternates: [], + emoticons: [], + shortcodes: [ + ':llama:', + ], + animated: false, +); + +/// The ๐Ÿฆฅ emoji. +const sloth = Emoji( + base: '๐Ÿฆฅ', + alternates: [], + emoticons: [], + shortcodes: [ + ':sloth:', + ], + animated: false, +); + +/// The ๐Ÿฆ˜ emoji. +const kangaroo = Emoji( + base: '๐Ÿฆ˜', + alternates: [], + emoticons: [], + shortcodes: [ + ':kangaroo:', + ], + animated: true, +); + +/// The ๐Ÿ˜ emoji. +const elephant = Emoji( + base: '๐Ÿ˜', + alternates: [], + emoticons: [], + shortcodes: [ + ':elephant:', + ], + animated: false, +); + +/// The ๐Ÿฆฃ emoji. +const mammoth = Emoji( + base: '๐Ÿฆฃ', + alternates: [], + emoticons: [], + shortcodes: [ + ':mammoth:', + ], + animated: false, +); + +/// The ๐Ÿฆ emoji. +const rhino = Emoji( + base: '๐Ÿฆ', + alternates: [], + emoticons: [], + shortcodes: [ + ':rhino:', + ':rhinoceros:', + ], + animated: false, +); + +/// The ๐Ÿฆ› emoji. +const hippo = Emoji( + base: '๐Ÿฆ›', + alternates: [], + emoticons: [], + shortcodes: [ + ':hippo:', + ], + animated: false, +); + +/// The ๐Ÿฆ’ emoji. +const giraffe = Emoji( + base: '๐Ÿฆ’', + alternates: [], + emoticons: [], + shortcodes: [ + ':giraffe:', + ], + animated: false, +); + +/// The ๐Ÿ† emoji. +const leopard = Emoji( + base: '๐Ÿ†', + alternates: [], + emoticons: [], + shortcodes: [ + ':leopard:', + ], + animated: false, +); + +/// The ๐Ÿ… emoji. +const tiger = Emoji( + base: '๐Ÿ…', + alternates: [], + emoticons: [], + shortcodes: [ + ':tiger:', + ], + animated: true, +); + +/// The ๐Ÿ’ emoji. +const monkey = Emoji( + base: '๐Ÿ’', + alternates: [], + emoticons: [], + shortcodes: [ + ':monkey:', + ], + animated: true, +); + +/// The ๐Ÿฆ emoji. +const gorilla = Emoji( + base: '๐Ÿฆ', + alternates: [], + emoticons: [], + shortcodes: [ + ':gorilla:', + ], + animated: false, +); + +/// The ๐Ÿฆง emoji. +const orangutan = Emoji( + base: '๐Ÿฆง', + alternates: [], + emoticons: [], + shortcodes: [ + ':orangutan:', + ], + animated: false, +); + +/// The ๐Ÿช emoji. +const camel = Emoji( + base: '๐Ÿช', + alternates: [], + emoticons: [], + shortcodes: [ + ':camel:', + ], + animated: false, +); + +/// The ๐Ÿซ emoji. +const bactrianCamel = Emoji( + base: '๐Ÿซ', + alternates: [], + emoticons: [], + shortcodes: [ + ':bactrian-camel:', + ], + animated: false, +); + +/// The ๐Ÿฟ๏ธ emoji. +const chipmunk = Emoji( + base: '๐Ÿฟ๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':chipmunk:', + ], + animated: true, +); + +/// The ๐Ÿฆซ emoji. +const beaver = Emoji( + base: '๐Ÿฆซ', + alternates: [], + emoticons: [], + shortcodes: [ + ':beaver:', + ], + animated: false, +); + +/// The ๐Ÿฆจ emoji. +const skunk = Emoji( + base: '๐Ÿฆจ', + alternates: [], + emoticons: [], + shortcodes: [ + ':skunk:', + ], + animated: false, +); + +/// The ๐Ÿฆก emoji. +const badger = Emoji( + base: '๐Ÿฆก', + alternates: [], + emoticons: [], + shortcodes: [ + ':badger:', + ], + animated: false, +); + +/// The ๐Ÿฆ” emoji. +const hedgehog = Emoji( + base: '๐Ÿฆ”', + alternates: [], + emoticons: [], + shortcodes: [ + ':hedgehog:', + ], + animated: false, +); + +/// The ๐Ÿฆฆ emoji. +const otter = Emoji( + base: '๐Ÿฆฆ', + alternates: [], + emoticons: [ + '(:3๊‡คโ๊ƒณ', + ], + shortcodes: [ + ':otter:', + ], + animated: true, +); + +/// The ๐Ÿฆ‡ emoji. +const bat = Emoji( + base: '๐Ÿฆ‡', + alternates: [], + emoticons: [ + 'โŽ›โŽ(โ€ขโฑ…โ€ข)โŽ โŽž', + ], + shortcodes: [ + ':bat:', + ], + animated: true, +); + +/// The ๐Ÿชฝ emoji. +const wingfly = Emoji( + base: '๐Ÿชฝ', + alternates: [], + emoticons: [], + shortcodes: [ + ':wing:; :fly:', + ], + animated: false, +); + +/// The ๐Ÿชถ emoji. +const feather = Emoji( + base: '๐Ÿชถ', + alternates: [], + emoticons: [], + shortcodes: [ + ':feather:', + ], + animated: false, +); + +/// The ๐Ÿฆ emoji. +const bird = Emoji( + base: '๐Ÿฆ', + alternates: [], + emoticons: [], + shortcodes: [ + ':bird:', + ], + animated: false, +); + +/// The ๐Ÿฆโ€โฌ› emoji. +const blackBird = Emoji( + base: '๐Ÿฆโ€โฌ›', + alternates: [], + emoticons: [], + shortcodes: [ + ':black-bird:', + ], + animated: false, +); + +/// The ๐Ÿ“ emoji. +const rooster = Emoji( + base: '๐Ÿ“', + alternates: [], + emoticons: [], + shortcodes: [ + ':rooster:', + ], + animated: true, +); + +/// The ๐Ÿ” emoji. +const chicken = Emoji( + base: '๐Ÿ”', + alternates: [], + emoticons: [], + shortcodes: [ + ':chicken:', + ], + animated: false, +); + +/// The ๐Ÿฃ emoji. +const hatchingChick = Emoji( + base: '๐Ÿฃ', + alternates: [], + emoticons: [], + shortcodes: [ + ':hatching-chick:', + ], + animated: true, +); + +/// The ๐Ÿค emoji. +const babyChick = Emoji( + base: '๐Ÿค', + alternates: [], + emoticons: [], + shortcodes: [ + ':baby-chick:', + ], + animated: true, +); + +/// The ๐Ÿฅ emoji. +const hatchedChick = Emoji( + base: '๐Ÿฅ', + alternates: [], + emoticons: [], + shortcodes: [ + ':hatched-chick:', + ], + animated: true, +); + +/// The ๐Ÿฆ… emoji. +const eagle = Emoji( + base: '๐Ÿฆ…', + alternates: [], + emoticons: [], + shortcodes: [ + ':eagle:', + ], + animated: true, +); + +/// The ๐Ÿฆ‰ emoji. +const owl = Emoji( + base: '๐Ÿฆ‰', + alternates: [], + emoticons: [], + shortcodes: [ + ':owl:', + ], + animated: false, +); + +/// The ๐Ÿฆœ emoji. +const parrot = Emoji( + base: '๐Ÿฆœ', + alternates: [], + emoticons: [], + shortcodes: [ + ':parrot:', + ], + animated: false, +); + +/// The ๐Ÿ•Š๏ธ emoji. +const peace = Emoji( + base: '๐Ÿ•Š๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':peace:', + ':dove:', + ], + animated: true, +); + +/// The ๐Ÿฆค emoji. +const dodo = Emoji( + base: '๐Ÿฆค', + alternates: [], + emoticons: [], + shortcodes: [ + ':dodo:', + ], + animated: false, +); + +/// The ๐Ÿฆข emoji. +const swan = Emoji( + base: '๐Ÿฆข', + alternates: [], + emoticons: [], + shortcodes: [ + ':swan:', + ], + animated: false, +); + +/// The ๐Ÿฆ† emoji. +const duck = Emoji( + base: '๐Ÿฆ†', + alternates: [], + emoticons: [], + shortcodes: [ + ':duck:', + ], + animated: false, +); + +/// The ๐Ÿชฟ emoji. +const goose = Emoji( + base: '๐Ÿชฟ', + alternates: [], + emoticons: [], + shortcodes: [ + ':goose:', + ], + animated: true, +); + +/// The ๐Ÿฆฉ emoji. +const flamingo = Emoji( + base: '๐Ÿฆฉ', + alternates: [], + emoticons: [], + shortcodes: [ + ':flamingo:', + ], + animated: false, +); + +/// The ๐Ÿฆš emoji. +const peacock = Emoji( + base: '๐Ÿฆš', + alternates: [], + emoticons: [], + shortcodes: [ + ':peacock:', + ], + animated: true, +); + +/// The ๐Ÿฆƒ emoji. +const turkey = Emoji( + base: '๐Ÿฆƒ', + alternates: [], + emoticons: [], + shortcodes: [ + ':turkey:', + ], + animated: false, +); + +/// The ๐Ÿง emoji. +const penguin = Emoji( + base: '๐Ÿง', + alternates: [], + emoticons: [ + '<(")', + ], + shortcodes: [ + ':penguin:', + ], + animated: false, +); + +/// The ๐Ÿฆญ emoji. +const seal = Emoji( + base: '๐Ÿฆญ', + alternates: [], + emoticons: [], + shortcodes: [ + ':seal:', + ], + animated: true, +); + +/// The ๐Ÿฆˆ emoji. +const shark = Emoji( + base: '๐Ÿฆˆ', + alternates: [], + emoticons: [], + shortcodes: [ + ':shark:', + ], + animated: false, +); + +/// The ๐Ÿฌ emoji. +const dolphin = Emoji( + base: '๐Ÿฌ', + alternates: [], + emoticons: [], + shortcodes: [ + ':dolphin:', + ], + animated: true, +); + +/// The ๐Ÿ‹ emoji. +const humpbackWhale = Emoji( + base: '๐Ÿ‹', + alternates: [], + emoticons: [], + shortcodes: [ + ':humpback-whale:', + ], + animated: false, +); + +/// The ๐Ÿณ emoji. +const whale = Emoji( + base: '๐Ÿณ', + alternates: [], + emoticons: [], + shortcodes: [ + ':whale:', + ], + animated: true, +); + +/// The ๐ŸŸ emoji. +const fish = Emoji( + base: '๐ŸŸ', + alternates: [], + emoticons: [ + '<><', + ], + shortcodes: [ + ':fish:', + ], + animated: false, +); + +/// The ๐Ÿ  emoji. +const tropicalFish = Emoji( + base: '๐Ÿ ', + alternates: [], + emoticons: [], + shortcodes: [ + ':tropical-fish:', + ], + animated: false, +); + +/// The ๐Ÿก emoji. +const blowfish = Emoji( + base: '๐Ÿก', + alternates: [], + emoticons: [], + shortcodes: [ + ':blowfish:', + ], + animated: true, +); + +/// The ๐Ÿฆ emoji. +const shrimp = Emoji( + base: '๐Ÿฆ', + alternates: [], + emoticons: [], + shortcodes: [ + ':shrimp:', + ], + animated: false, +); + +/// The ๐Ÿฆž emoji. +const lobster = Emoji( + base: '๐Ÿฆž', + alternates: [], + emoticons: [], + shortcodes: [ + ':lobster:', + ], + animated: false, +); + +/// The ๐Ÿฆ€ emoji. +const crab = Emoji( + base: '๐Ÿฆ€', + alternates: [], + emoticons: [], + shortcodes: [ + ':crab:', + ], + animated: true, +); + +/// The ๐Ÿฆ‘ emoji. +const squid = Emoji( + base: '๐Ÿฆ‘', + alternates: [], + emoticons: [ + 'ใใ‚ณ:ๅฝก', + ], + shortcodes: [ + ':squid:', + ], + animated: false, +); + +/// The ๐Ÿ™ emoji. +const octopus = Emoji( + base: '๐Ÿ™', + alternates: [], + emoticons: [], + shortcodes: [ + ':octopus:', + ], + animated: true, +); + +/// The ๐Ÿชผ emoji. +const jellyfish = Emoji( + base: '๐Ÿชผ', + alternates: [], + emoticons: [], + shortcodes: [ + ':jellyfish:', + ], + animated: true, +); + +/// The ๐Ÿฆช emoji. +const oyster = Emoji( + base: '๐Ÿฆช', + alternates: [], + emoticons: [], + shortcodes: [ + ':oyster:', + ], + animated: false, +); + +/// The ๐Ÿชธ emoji. +const coral = Emoji( + base: '๐Ÿชธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':coral:', + ], + animated: false, +); + +/// The ๐Ÿฆ‚ emoji. +const scorpion = Emoji( + base: '๐Ÿฆ‚', + alternates: [], + emoticons: [], + shortcodes: [ + ':scorpion:', + ], + animated: false, +); + +/// The ๐Ÿ•ท๏ธ emoji. +const spider = Emoji( + base: '๐Ÿ•ท๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':spider:', + ], + animated: false, +); + +/// The ๐Ÿ•ธ๏ธ emoji. +const spiderWeb = Emoji( + base: '๐Ÿ•ธ๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':spider-web:', + ], + animated: false, +); + +/// The ๐Ÿš emoji. +const shell = Emoji( + base: '๐Ÿš', + alternates: [], + emoticons: [], + shortcodes: [ + ':shell:', + ], + animated: false, +); + +/// The ๐ŸŒ emoji. +const snail = Emoji( + base: '๐ŸŒ', + alternates: [], + emoticons: [], + shortcodes: [ + ':snail:', + ], + animated: true, +); + +/// The ๐Ÿœ emoji. +const ant = Emoji( + base: '๐Ÿœ', + alternates: [], + emoticons: [], + shortcodes: [ + ':ant:', + ], + animated: true, +); + +/// The ๐Ÿฆ— emoji. +const cricket = Emoji( + base: '๐Ÿฆ—', + alternates: [], + emoticons: [], + shortcodes: [ + ':cricket:', + ], + animated: false, +); + +/// The ๐Ÿชฒ emoji. +const beetle = Emoji( + base: '๐Ÿชฒ', + alternates: [], + emoticons: [], + shortcodes: [ + ':beetle:', + ], + animated: false, +); + +/// The ๐ŸฆŸ emoji. +const mosquito = Emoji( + base: '๐ŸฆŸ', + alternates: [], + emoticons: [], + shortcodes: [ + ':mosquito:', + ], + animated: true, +); + +/// The ๐Ÿชณ emoji. +const cockroach = Emoji( + base: '๐Ÿชณ', + alternates: [], + emoticons: [], + shortcodes: [ + ':cockroach:', + ], + animated: false, +); + +/// The ๐Ÿชฐ emoji. +const fly = Emoji( + base: '๐Ÿชฐ', + alternates: [], + emoticons: [], + shortcodes: [ + ':fly:', + ], + animated: false, +); + +/// The ๐Ÿ emoji. +const bee = Emoji( + base: '๐Ÿ', + alternates: [], + emoticons: [], + shortcodes: [ + ':bee:', + ], + animated: true, +); + +/// The ๐Ÿž emoji. +const ladyBug = Emoji( + base: '๐Ÿž', + alternates: [], + emoticons: [], + shortcodes: [ + ':lady-bug:', + ], + animated: false, +); + +/// The ๐Ÿฆ‹ emoji. +const butterfly = Emoji( + base: '๐Ÿฆ‹', + alternates: [], + emoticons: [ + 'ฮตั—ะท', + ], + shortcodes: [ + ':butterfly:', + ], + animated: true, +); + +/// The ๐Ÿ› emoji. +const bug = Emoji( + base: '๐Ÿ›', + alternates: [], + emoticons: [], + shortcodes: [ + ':bug:', + ], + animated: false, +); + +/// The ๐Ÿชฑ emoji. +const worm = Emoji( + base: '๐Ÿชฑ', + alternates: [], + emoticons: [], + shortcodes: [ + ':worm:', + ], + animated: false, +); + +/// The ๐Ÿพ emoji. +const pawprints = Emoji( + base: '๐Ÿพ', + alternates: [], + emoticons: [], + shortcodes: [ + ':paw prints:', + ], + animated: true, +); + +/// The ๐Ÿ“ emoji. +const strawberry = Emoji( + base: '๐Ÿ“', + alternates: [], + emoticons: [], + shortcodes: [ + ':strawberry:', + ], + animated: false, +); + +/// The ๐Ÿ’ emoji. +const cherries = Emoji( + base: '๐Ÿ’', + alternates: [], + emoticons: [], + shortcodes: [ + ':cherries:', + ], + animated: false, +); + +/// The ๐ŸŽ emoji. +const redApple = Emoji( + base: '๐ŸŽ', + alternates: [], + emoticons: [], + shortcodes: [ + ':red-apple:', + ], + animated: false, +); + +/// The ๐Ÿ‰ emoji. +const watermelon = Emoji( + base: '๐Ÿ‰', + alternates: [], + emoticons: [], + shortcodes: [ + ':watermelon:', + ], + animated: false, +); + +/// The ๐Ÿ‘ emoji. +const peach = Emoji( + base: '๐Ÿ‘', + alternates: [], + emoticons: [], + shortcodes: [ + ':peach:', + ], + animated: false, +); + +/// The ๐ŸŠ emoji. +const tangerine = Emoji( + base: '๐ŸŠ', + alternates: [], + emoticons: [], + shortcodes: [ + ':tangerine:', + ':orange:', + ':mandarin:', + ], + animated: false, +); + +/// The ๐Ÿฅญ emoji. +const mango = Emoji( + base: '๐Ÿฅญ', + alternates: [], + emoticons: [], + shortcodes: [ + ':mango:', + ], + animated: false, +); + +/// The ๐Ÿ emoji. +const pineapple = Emoji( + base: '๐Ÿ', + alternates: [], + emoticons: [], + shortcodes: [ + ':pineapple:', + ], + animated: false, +); + +/// The ๐ŸŒ emoji. +const banana = Emoji( + base: '๐ŸŒ', + alternates: [], + emoticons: [], + shortcodes: [ + ':banana:', + ], + animated: false, +); + +/// The ๐Ÿ‹ emoji. +const lemon = Emoji( + base: '๐Ÿ‹', + alternates: [], + emoticons: [], + shortcodes: [ + ':lemon:', + ], + animated: false, +); + +/// The ๐Ÿˆ emoji. +const melon = Emoji( + base: '๐Ÿˆ', + alternates: [], + emoticons: [], + shortcodes: [ + ':melon:', + ], + animated: false, +); + +/// The ๐Ÿ emoji. +const greenApple = Emoji( + base: '๐Ÿ', + alternates: [], + emoticons: [], + shortcodes: [ + ':green-apple:', + ], + animated: false, +); + +/// The ๐Ÿ emoji. +const pear = Emoji( + base: '๐Ÿ', + alternates: [], + emoticons: [], + shortcodes: [ + ':pear:', + ], + animated: false, +); + +/// The ๐Ÿฅ emoji. +const kiwiFruit = Emoji( + base: '๐Ÿฅ', + alternates: [], + emoticons: [], + shortcodes: [ + ':kiwi-fruit:', + ], + animated: false, +); + +/// The ๐Ÿซ’ emoji. +const olive = Emoji( + base: '๐Ÿซ’', + alternates: [], + emoticons: [], + shortcodes: [ + ':olive:', + ], + animated: false, +); + +/// The ๐Ÿซ emoji. +const blueberries = Emoji( + base: '๐Ÿซ', + alternates: [], + emoticons: [], + shortcodes: [ + ':blueberries:', + ], + animated: false, +); + +/// The ๐Ÿ‡ emoji. +const grapes = Emoji( + base: '๐Ÿ‡', + alternates: [], + emoticons: [], + shortcodes: [ + ':grapes:', + ], + animated: false, +); + +/// The ๐Ÿฅฅ emoji. +const coconut = Emoji( + base: '๐Ÿฅฅ', + alternates: [], + emoticons: [], + shortcodes: [ + ':coconut:', + ], + animated: false, +); + +/// The ๐Ÿ… emoji. +const tomato = Emoji( + base: '๐Ÿ…', + alternates: [], + emoticons: [], + shortcodes: [ + ':tomato:', + ], + animated: true, +); + +/// The ๐ŸŒถ๏ธ emoji. +const hotPepper = Emoji( + base: '๐ŸŒถ๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':hot-pepper:', + ], + animated: false, +); + +/// The ๐Ÿซš emoji. +const ginger = Emoji( + base: '๐Ÿซš', + alternates: [], + emoticons: [], + shortcodes: [ + ':ginger:', + ], + animated: false, +); + +/// The ๐Ÿฅ• emoji. +const carrot = Emoji( + base: '๐Ÿฅ•', + alternates: [], + emoticons: [], + shortcodes: [ + ':carrot:', + ], + animated: false, +); + +/// The ๐Ÿ  emoji. +const roastedSweetPotato = Emoji( + base: '๐Ÿ ', + alternates: [], + emoticons: [], + shortcodes: [ + ':roasted-sweet-potato:', + ], + animated: false, +); + +/// The ๐Ÿง… emoji. +const onion = Emoji( + base: '๐Ÿง…', + alternates: [], + emoticons: [], + shortcodes: [ + ':onion:', + ], + animated: false, +); + +/// The ๐ŸŒฝ emoji. +const earOfCorn = Emoji( + base: '๐ŸŒฝ', + alternates: [], + emoticons: [], + shortcodes: [ + ':ear-of-corn:', + ], + animated: false, +); + +/// The ๐Ÿฅฆ emoji. +const broccoli = Emoji( + base: '๐Ÿฅฆ', + alternates: [], + emoticons: [], + shortcodes: [ + ':broccoli:', + ], + animated: false, +); + +/// The ๐Ÿฅ’ emoji. +const cucumber = Emoji( + base: '๐Ÿฅ’', + alternates: [], + emoticons: [], + shortcodes: [ + ':cucumber:', + ], + animated: false, +); + +/// The ๐Ÿฅฌ emoji. +const leafyGreen = Emoji( + base: '๐Ÿฅฌ', + alternates: [], + emoticons: [], + shortcodes: [ + ':leafy-green:', + ], + animated: false, +); + +/// The ๐Ÿซ› emoji. +const peaPod = Emoji( + base: '๐Ÿซ›', + alternates: [], + emoticons: [], + shortcodes: [ + ':pea-pod:', + ], + animated: false, +); + +/// The ๐Ÿซ‘ emoji. +const bellPepper = Emoji( + base: '๐Ÿซ‘', + alternates: [], + emoticons: [], + shortcodes: [ + ':bell-pepper:', + ], + animated: false, +); + +/// The ๐Ÿฅ‘ emoji. +const avocado = Emoji( + base: '๐Ÿฅ‘', + alternates: [], + emoticons: [], + shortcodes: [ + ':avocado:', + ], + animated: false, +); + +/// The ๐Ÿ† emoji. +const eggplant = Emoji( + base: '๐Ÿ†', + alternates: [], + emoticons: [], + shortcodes: [ + ':eggplant:', + ], + animated: false, +); + +/// The ๐Ÿง„ emoji. +const garlic = Emoji( + base: '๐Ÿง„', + alternates: [], + emoticons: [], + shortcodes: [ + ':garlic:', + ], + animated: false, +); + +/// The ๐Ÿฅ” emoji. +const potato = Emoji( + base: '๐Ÿฅ”', + alternates: [], + emoticons: [], + shortcodes: [ + ':potato:', + ], + animated: false, +); + +/// The ๐Ÿซ˜ emoji. +const beans = Emoji( + base: '๐Ÿซ˜', + alternates: [], + emoticons: [], + shortcodes: [ + ':beans:', + ], + animated: false, +); + +/// The ๐ŸŒฐ emoji. +const chestnut = Emoji( + base: '๐ŸŒฐ', + alternates: [], + emoticons: [], + shortcodes: [ + ':chestnut:', + ], + animated: false, +); + +/// The ๐Ÿฅœ emoji. +const peanuts = Emoji( + base: '๐Ÿฅœ', + alternates: [], + emoticons: [], + shortcodes: [ + ':peanuts:', + ], + animated: false, +); + +/// The ๐Ÿž emoji. +const bread = Emoji( + base: '๐Ÿž', + alternates: [], + emoticons: [], + shortcodes: [ + ':bread:', + ], + animated: false, +); + +/// The ๐Ÿซ“ emoji. +const flatbread = Emoji( + base: '๐Ÿซ“', + alternates: [], + emoticons: [], + shortcodes: [ + ':flatbread:', + ], + animated: false, +); + +/// The ๐Ÿฅ emoji. +const croissant = Emoji( + base: '๐Ÿฅ', + alternates: [], + emoticons: [], + shortcodes: [ + ':croissant:', + ], + animated: false, +); + +/// The ๐Ÿฅ– emoji. +const baguetteBread = Emoji( + base: '๐Ÿฅ–', + alternates: [], + emoticons: [], + shortcodes: [ + ':baguette-bread:', + ], + animated: false, +); + +/// The ๐Ÿฅฏ emoji. +const bagel = Emoji( + base: '๐Ÿฅฏ', + alternates: [], + emoticons: [], + shortcodes: [ + ':bagel:', + ], + animated: false, +); + +/// The ๐Ÿง‡ emoji. +const waffle = Emoji( + base: '๐Ÿง‡', + alternates: [], + emoticons: [], + shortcodes: [ + ':waffle:', + ], + animated: false, +); + +/// The ๐Ÿฅž emoji. +const pancakes = Emoji( + base: '๐Ÿฅž', + alternates: [], + emoticons: [], + shortcodes: [ + ':pancakes:', + ], + animated: false, +); + +/// The ๐Ÿณ emoji. +const cooking = Emoji( + base: '๐Ÿณ', + alternates: [], + emoticons: [], + shortcodes: [ + ':cooking:', + ], + animated: false, +); + +/// The ๐Ÿฅš emoji. +const egg = Emoji( + base: '๐Ÿฅš', + alternates: [], + emoticons: [], + shortcodes: [ + ':egg:', + ], + animated: false, +); + +/// The ๐Ÿง€ emoji. +const cheeseWedge = Emoji( + base: '๐Ÿง€', + alternates: [], + emoticons: [], + shortcodes: [ + ':cheese-wedge:', + ], + animated: false, +); + +/// The ๐Ÿฅ“ emoji. +const bacon = Emoji( + base: '๐Ÿฅ“', + alternates: [], + emoticons: [], + shortcodes: [ + ':bacon:', + ], + animated: false, +); + +/// The ๐Ÿฅฉ emoji. +const cutOfMeat = Emoji( + base: '๐Ÿฅฉ', + alternates: [], + emoticons: [], + shortcodes: [ + ':cut-of-meat:', + ], + animated: false, +); + +/// The ๐Ÿ— emoji. +const poultryLeg = Emoji( + base: '๐Ÿ—', + alternates: [], + emoticons: [], + shortcodes: [ + ':poultry-leg:', + ], + animated: false, +); + +/// The ๐Ÿ– emoji. +const meatOnBone = Emoji( + base: '๐Ÿ–', + alternates: [], + emoticons: [], + shortcodes: [ + ':meat-on-bone:', + ], + animated: false, +); + +/// The ๐Ÿ” emoji. +const hamburger = Emoji( + base: '๐Ÿ”', + alternates: [], + emoticons: [], + shortcodes: [ + ':hamburger:', + ], + animated: false, +); + +/// The ๐ŸŒญ emoji. +const hotDog = Emoji( + base: '๐ŸŒญ', + alternates: [], + emoticons: [], + shortcodes: [ + ':hot-dog:', + ], + animated: false, +); + +/// The ๐Ÿฅช emoji. +const sandwich = Emoji( + base: '๐Ÿฅช', + alternates: [], + emoticons: [], + shortcodes: [ + ':sandwich:', + ], + animated: false, +); + +/// The ๐Ÿฅจ emoji. +const pretzel = Emoji( + base: '๐Ÿฅจ', + alternates: [], + emoticons: [], + shortcodes: [ + ':pretzel:', + ], + animated: false, +); + +/// The ๐ŸŸ emoji. +const frenchFries = Emoji( + base: '๐ŸŸ', + alternates: [], + emoticons: [], + shortcodes: [ + ':french-fries:', + ], + animated: false, +); + +/// The ๐Ÿ• emoji. +const pizza = Emoji( + base: '๐Ÿ•', + alternates: [], + emoticons: [], + shortcodes: [ + ':pizza:', + ], + animated: false, +); + +/// The ๐Ÿซ” emoji. +const tamale = Emoji( + base: '๐Ÿซ”', + alternates: [], + emoticons: [], + shortcodes: [ + ':tamale:', + ], + animated: false, +); + +/// The ๐ŸŒฎ emoji. +const taco = Emoji( + base: '๐ŸŒฎ', + alternates: [], + emoticons: [], + shortcodes: [ + ':taco:', + ], + animated: false, +); + +/// The ๐ŸŒฏ emoji. +const burrito = Emoji( + base: '๐ŸŒฏ', + alternates: [], + emoticons: [], + shortcodes: [ + ':burrito:', + ], + animated: false, +); + +/// The ๐Ÿฅ™ emoji. +const stuffedFlatbread = Emoji( + base: '๐Ÿฅ™', + alternates: [], + emoticons: [], + shortcodes: [ + ':stuffed-flatbread:', + ], + animated: false, +); + +/// The ๐Ÿง† emoji. +const falafel = Emoji( + base: '๐Ÿง†', + alternates: [], + emoticons: [], + shortcodes: [ + ':falafel:', + ], + animated: false, +); + +/// The ๐Ÿฅ˜ emoji. +const shallowPanOfFood = Emoji( + base: '๐Ÿฅ˜', + alternates: [], + emoticons: [], + shortcodes: [ + ':shallow-pan-of-food:', + ], + animated: false, +); + +/// The ๐Ÿ emoji. +const spaghetti = Emoji( + base: '๐Ÿ', + alternates: [], + emoticons: [], + shortcodes: [ + ':spaghetti:', + ], + animated: false, +); + +/// The ๐Ÿฅซ emoji. +const cannedFood = Emoji( + base: '๐Ÿฅซ', + alternates: [], + emoticons: [], + shortcodes: [ + ':canned-food:', + ], + animated: false, +); + +/// The ๐Ÿซ• emoji. +const fondue = Emoji( + base: '๐Ÿซ•', + alternates: [], + emoticons: [], + shortcodes: [ + ':fondue:', + ], + animated: false, +); + +/// The ๐Ÿฅฃ emoji. +const bowlWithSpoon = Emoji( + base: '๐Ÿฅฃ', + alternates: [], + emoticons: [], + shortcodes: [ + ':bowl-with-spoon:', + ], + animated: false, +); + +/// The ๐Ÿฅ— emoji. +const greenSalad = Emoji( + base: '๐Ÿฅ—', + alternates: [], + emoticons: [], + shortcodes: [ + ':green-salad:', + ], + animated: false, +); + +/// The ๐Ÿฒ emoji. +const potOfFood = Emoji( + base: '๐Ÿฒ', + alternates: [], + emoticons: [], + shortcodes: [ + ':pot-of-food:', + ], + animated: false, +); + +/// The ๐Ÿ› emoji. +const curryRice = Emoji( + base: '๐Ÿ›', + alternates: [], + emoticons: [], + shortcodes: [ + ':curry-rice:', + ], + animated: false, +); + +/// The ๐Ÿœ emoji. +const steamingBowl = Emoji( + base: '๐Ÿœ', + alternates: [], + emoticons: [], + shortcodes: [ + ':steaming-bowl:', + ], + animated: false, +); + +/// The ๐Ÿฃ emoji. +const sushi = Emoji( + base: '๐Ÿฃ', + alternates: [], + emoticons: [], + shortcodes: [ + ':sushi:', + ], + animated: false, +); + +/// The ๐Ÿค emoji. +const friedShrimp = Emoji( + base: '๐Ÿค', + alternates: [], + emoticons: [], + shortcodes: [ + ':fried-shrimp:', + ], + animated: false, +); + +/// The ๐Ÿฅก emoji. +const takeoutBox = Emoji( + base: '๐Ÿฅก', + alternates: [], + emoticons: [], + shortcodes: [ + ':takeout-box:', + ], + animated: false, +); + +/// The ๐Ÿš emoji. +const cookedRice = Emoji( + base: '๐Ÿš', + alternates: [], + emoticons: [], + shortcodes: [ + ':cooked-rice:', + ], + animated: false, +); + +/// The ๐Ÿฑ emoji. +const bentoBox = Emoji( + base: '๐Ÿฑ', + alternates: [], + emoticons: [], + shortcodes: [ + ':bento-box:', + ], + animated: false, +); + +/// The ๐ŸฅŸ emoji. +const dumpling = Emoji( + base: '๐ŸฅŸ', + alternates: [], + emoticons: [], + shortcodes: [ + ':dumpling:', + ], + animated: false, +); + +/// The ๐Ÿข emoji. +const oden = Emoji( + base: '๐Ÿข', + alternates: [], + emoticons: [], + shortcodes: [ + ':oden:', + ], + animated: false, +); + +/// The ๐Ÿ™ emoji. +const riceBall = Emoji( + base: '๐Ÿ™', + alternates: [], + emoticons: [], + shortcodes: [ + ':rice-ball:', + ], + animated: false, +); + +/// The ๐Ÿ˜ emoji. +const riceCracker = Emoji( + base: '๐Ÿ˜', + alternates: [], + emoticons: [], + shortcodes: [ + ':rice-cracker:', + ], + animated: false, +); + +/// The ๐Ÿฅ emoji. +const fishCakeWithSwirl = Emoji( + base: '๐Ÿฅ', + alternates: [], + emoticons: [], + shortcodes: [ + ':fish-cake-with-swirl:', + ], + animated: false, +); + +/// The ๐Ÿก emoji. +const dango = Emoji( + base: '๐Ÿก', + alternates: [], + emoticons: [], + shortcodes: [ + ':dango:', + ], + animated: false, +); + +/// The ๐Ÿฅ  emoji. +const fortuneCookie = Emoji( + base: '๐Ÿฅ ', + alternates: [], + emoticons: [], + shortcodes: [ + ':fortune-cookie:', + ], + animated: false, +); + +/// The ๐Ÿฅฎ emoji. +const moonCake = Emoji( + base: '๐Ÿฅฎ', + alternates: [], + emoticons: [], + shortcodes: [ + ':moon-cake:', + ], + animated: false, +); + +/// The ๐Ÿง emoji. +const shavedIce = Emoji( + base: '๐Ÿง', + alternates: [], + emoticons: [], + shortcodes: [ + ':shaved-ice:', + ], + animated: false, +); + +/// The ๐Ÿจ emoji. +const iceCream = Emoji( + base: '๐Ÿจ', + alternates: [], + emoticons: [], + shortcodes: [ + ':ice-cream:', + ], + animated: false, +); + +/// The ๐Ÿฆ emoji. +const softIceCream = Emoji( + base: '๐Ÿฆ', + alternates: [], + emoticons: [], + shortcodes: [ + ':soft-ice-cream:', + ], + animated: false, +); + +/// The ๐Ÿฅง emoji. +const pie = Emoji( + base: '๐Ÿฅง', + alternates: [], + emoticons: [], + shortcodes: [ + ':pie:', + ], + animated: false, +); + +/// The ๐Ÿฐ emoji. +const shortcake = Emoji( + base: '๐Ÿฐ', + alternates: [], + emoticons: [], + shortcodes: [ + ':shortcake:', + ], + animated: false, +); + +/// The ๐Ÿฎ emoji. +const custard = Emoji( + base: '๐Ÿฎ', + alternates: [], + emoticons: [], + shortcodes: [ + ':custard:', + ], + animated: false, +); + +/// The ๐ŸŽ‚ emoji. +const birthdayCake = Emoji( + base: '๐ŸŽ‚', + alternates: [], + emoticons: [], + shortcodes: [ + ':birthday-cake:', + ], + animated: false, +); + +/// The ๐Ÿง emoji. +const cupcake = Emoji( + base: '๐Ÿง', + alternates: [], + emoticons: [], + shortcodes: [ + ':cupcake:', + ], + animated: false, +); + +/// The ๐Ÿญ emoji. +const lollipop = Emoji( + base: '๐Ÿญ', + alternates: [], + emoticons: [], + shortcodes: [ + ':lollipop:', + ], + animated: false, +); + +/// The ๐Ÿฌ emoji. +const candy = Emoji( + base: '๐Ÿฌ', + alternates: [], + emoticons: [], + shortcodes: [ + ':candy:', + ], + animated: false, +); + +/// The ๐Ÿซ emoji. +const chocolateBar = Emoji( + base: '๐Ÿซ', + alternates: [], + emoticons: [], + shortcodes: [ + ':chocolate-bar:', + ], + animated: false, +); + +/// The ๐Ÿฉ emoji. +const doughnut = Emoji( + base: '๐Ÿฉ', + alternates: [], + emoticons: [], + shortcodes: [ + ':doughnut:', + ], + animated: false, +); + +/// The ๐Ÿช emoji. +const cookie = Emoji( + base: '๐Ÿช', + alternates: [], + emoticons: [], + shortcodes: [ + ':cookie:', + ], + animated: false, +); + +/// The ๐Ÿฏ emoji. +const honeyPot = Emoji( + base: '๐Ÿฏ', + alternates: [], + emoticons: [], + shortcodes: [ + ':honey-pot:', + ], + animated: false, +); + +/// The ๐Ÿง‚ emoji. +const salt = Emoji( + base: '๐Ÿง‚', + alternates: [], + emoticons: [], + shortcodes: [ + ':salt:', + ], + animated: false, +); + +/// The ๐Ÿงˆ emoji. +const butter = Emoji( + base: '๐Ÿงˆ', + alternates: [], + emoticons: [], + shortcodes: [ + ':butter:', + ], + animated: false, +); + +/// The ๐Ÿฟ emoji. +const popcorn = Emoji( + base: '๐Ÿฟ', + alternates: [], + emoticons: [], + shortcodes: [ + ':popcorn:', + ], + animated: true, +); + +/// The ๐ŸงŠ emoji. +const iceCube = Emoji( + base: '๐ŸงŠ', + alternates: [], + emoticons: [], + shortcodes: [ + ':ice-cube:', + ], + animated: false, +); + +/// The ๐Ÿซ™ emoji. +const jar = Emoji( + base: '๐Ÿซ™', + alternates: [], + emoticons: [], + shortcodes: [ + ':jar:', + ], + animated: false, +); + +/// The ๐Ÿฅค emoji. +const cupWithStraw = Emoji( + base: '๐Ÿฅค', + alternates: [], + emoticons: [], + shortcodes: [ + ':cup-with-straw:', + ], + animated: false, +); + +/// The ๐Ÿง‹ emoji. +const bubbleTea = Emoji( + base: '๐Ÿง‹', + alternates: [], + emoticons: [], + shortcodes: [ + ':bubble-tea:', + ':milk-tea:', + ], + animated: false, +); + +/// The ๐Ÿงƒ emoji. +const beverageBox = Emoji( + base: '๐Ÿงƒ', + alternates: [], + emoticons: [], + shortcodes: [ + ':beverage-box:', + ], + animated: false, +); + +/// The ๐Ÿฅ› emoji. +const glassOfMilk = Emoji( + base: '๐Ÿฅ›', + alternates: [], + emoticons: [], + shortcodes: [ + ':glass-of-milk:', + ], + animated: false, +); + +/// The ๐Ÿผ emoji. +const babyBottle = Emoji( + base: '๐Ÿผ', + alternates: [], + emoticons: [], + shortcodes: [ + ':baby-bottle:', + ], + animated: false, +); + +/// The ๐Ÿต emoji. +const teacupWithoutHandle = Emoji( + base: '๐Ÿต', + alternates: [], + emoticons: [], + shortcodes: [ + ':teacup-without-handle:', + ], + animated: false, +); + +/// The โ˜• emoji. +const hotBeverage = Emoji( + base: 'โ˜•', + alternates: [], + emoticons: [], + shortcodes: [ + ':hot-beverage:', + ], + animated: true, +); + +/// The ๐Ÿซ– emoji. +const teapot = Emoji( + base: '๐Ÿซ–', + alternates: [], + emoticons: [], + shortcodes: [ + ':teapot:', + ], + animated: false, +); + +/// The ๐Ÿง‰ emoji. +const mate = Emoji( + base: '๐Ÿง‰', + alternates: [], + emoticons: [], + shortcodes: [ + ':mate:', + ], + animated: false, +); + +/// The ๐Ÿบ emoji. +const beerMug = Emoji( + base: '๐Ÿบ', + alternates: [], + emoticons: [], + shortcodes: [ + ':beer-mug:', + ], + animated: false, +); + +/// The ๐Ÿป emoji. +const clinkingBeerMugs = Emoji( + base: '๐Ÿป', + alternates: [], + emoticons: [], + shortcodes: [ + ':clinking-beer-mugs:', + ], + animated: true, +); + +/// The ๐Ÿฅ‚ emoji. +const clinkingGlasses = Emoji( + base: '๐Ÿฅ‚', + alternates: [], + emoticons: [], + shortcodes: [ + ':clinking-glasses:', + ], + animated: true, +); + +/// The ๐Ÿพ emoji. +const bottleWithPoppingCork = Emoji( + base: '๐Ÿพ', + alternates: [], + emoticons: [], + shortcodes: [ + ':bottle-with-popping-cork:', + ], + animated: true, +); + +/// The ๐Ÿท emoji. +const wineGlass = Emoji( + base: '๐Ÿท', + alternates: [], + emoticons: [], + shortcodes: [ + ':wine-glass:', + ], + animated: true, +); + +/// The ๐Ÿฅƒ emoji. +const tumblerGlass = Emoji( + base: '๐Ÿฅƒ', + alternates: [], + emoticons: [], + shortcodes: [ + ':tumbler-glass:', + ], + animated: false, +); + +/// The ๐Ÿซ— emoji. +const pour = Emoji( + base: '๐Ÿซ—', + alternates: [], + emoticons: [], + shortcodes: [ + ':pour:', + ], + animated: false, +); + +/// The ๐Ÿธ emoji. +const cocktailGlass = Emoji( + base: '๐Ÿธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':cocktail-glass:', + ], + animated: false, +); + +/// The ๐Ÿน emoji. +const tropicalDrink = Emoji( + base: '๐Ÿน', + alternates: [], + emoticons: [], + shortcodes: [ + ':tropical-drink:', + ], + animated: true, +); + +/// The ๐Ÿถ emoji. +const sake = Emoji( + base: '๐Ÿถ', + alternates: [], + emoticons: [], + shortcodes: [ + ':sake:', + ], + animated: false, +); + +/// The ๐Ÿฅข emoji. +const chopsticks = Emoji( + base: '๐Ÿฅข', + alternates: [], + emoticons: [], + shortcodes: [ + ':chopsticks:', + ], + animated: false, +); + +/// The ๐Ÿด emoji. +const forkAndKnife = Emoji( + base: '๐Ÿด', + alternates: [], + emoticons: [], + shortcodes: [ + ':fork-and-knife:', + ], + animated: false, +); + +/// The ๐Ÿฅ„ emoji. +const spoon = Emoji( + base: '๐Ÿฅ„', + alternates: [], + emoticons: [], + shortcodes: [ + ':spoon:', + ], + animated: false, +); + +/// The ๐Ÿ”ช emoji. +const kitchenKnife = Emoji( + base: '๐Ÿ”ช', + alternates: [], + emoticons: [], + shortcodes: [ + ':kitchen-knife:', + ], + animated: false, +); + +/// The ๐Ÿฝ๏ธ emoji. +const forkAndKnifeWithPlate = Emoji( + base: '๐Ÿฝ๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':fork-and-knife-with-plate:', + ], + animated: false, +); + +/// The ๐Ÿ›‘ emoji. +const stopSign = Emoji( + base: '๐Ÿ›‘', + alternates: [], + emoticons: [], + shortcodes: [ + ':stop-sign:', + ], + animated: false, +); + +/// The ๐Ÿšง emoji. +const construction = Emoji( + base: '๐Ÿšง', + alternates: [], + emoticons: [], + shortcodes: [ + ':construction:', + ], + animated: false, +); + +/// The ๐Ÿšจ emoji. +const policeCarLight = Emoji( + base: '๐Ÿšจ', + alternates: [], + emoticons: [], + shortcodes: [ + ':police-car-light:', + ], + animated: true, +); + +/// The โ›ฝ emoji. +const fuelPump = Emoji( + base: 'โ›ฝ', + alternates: [], + emoticons: [], + shortcodes: [ + ':fuel-pump:', + ], + animated: false, +); + +/// The ๐Ÿ›ข๏ธ emoji. +const oilDrum = Emoji( + base: '๐Ÿ›ข๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':oil-drum:', + ], + animated: false, +); + +/// The ๐Ÿงญ emoji. +const compass = Emoji( + base: '๐Ÿงญ', + alternates: [], + emoticons: [], + shortcodes: [ + ':compass:', + ], + animated: false, +); + +/// The ๐Ÿ›ž emoji. +const wheel = Emoji( + base: '๐Ÿ›ž', + alternates: [], + emoticons: [], + shortcodes: [ + ':wheel:', + ], + animated: false, +); + +/// The ๐Ÿ›Ÿ emoji. +const ringBuoy = Emoji( + base: '๐Ÿ›Ÿ', + alternates: [], + emoticons: [], + shortcodes: [ + ':ring-buoy:', + ], + animated: false, +); + +/// The โš“ emoji. +const anchor = Emoji( + base: 'โš“', + alternates: [], + emoticons: [], + shortcodes: [ + ':anchor:', + ], + animated: false, +); + +/// The ๐Ÿš emoji. +const busStop = Emoji( + base: '๐Ÿš', + alternates: [], + emoticons: [], + shortcodes: [ + ':bus-stop:', + ], + animated: false, +); + +/// The ๐Ÿš‡ emoji. +const metro = Emoji( + base: '๐Ÿš‡', + alternates: [], + emoticons: [], + shortcodes: [ + ':metro:', + ], + animated: false, +); + +/// The ๐Ÿšฅ emoji. +const horizontalTrafficLight = Emoji( + base: '๐Ÿšฅ', + alternates: [], + emoticons: [], + shortcodes: [ + ':horizontal-traffic-light:', + ], + animated: false, +); + +/// The ๐Ÿšฆ emoji. +const verticalTrafficLight = Emoji( + base: '๐Ÿšฆ', + alternates: [], + emoticons: [], + shortcodes: [ + ':vertical-traffic-light:', + ], + animated: false, +); + +/// The ๐Ÿ›ด emoji. +const kickScooter = Emoji( + base: '๐Ÿ›ด', + alternates: [], + emoticons: [], + shortcodes: [ + ':kick-scooter:', + ], + animated: false, +); + +/// The ๐Ÿฆฝ emoji. +const manualWheelchair = Emoji( + base: '๐Ÿฆฝ', + alternates: [], + emoticons: [], + shortcodes: [ + ':manual-wheelchair:', + ], + animated: false, +); + +/// The ๐Ÿฆผ emoji. +const motorizedWheelchair = Emoji( + base: '๐Ÿฆผ', + alternates: [], + emoticons: [], + shortcodes: [ + ':motorized-wheelchair:', + ], + animated: false, +); + +/// The ๐Ÿฉผ emoji. +const crutch = Emoji( + base: '๐Ÿฉผ', + alternates: [], + emoticons: [], + shortcodes: [ + ':crutch:', + ], + animated: false, +); + +/// The ๐Ÿšฒ emoji. +const bicycle = Emoji( + base: '๐Ÿšฒ', + alternates: [], + emoticons: [], + shortcodes: [ + ':bicycle:', + ], + animated: false, +); + +/// The ๐Ÿ›ต emoji. +const motorScooter = Emoji( + base: '๐Ÿ›ต', + alternates: [], + emoticons: [], + shortcodes: [ + ':motor-scooter:', + ], + animated: false, +); + +/// The ๐Ÿ๏ธ emoji. +const motorcycle = Emoji( + base: '๐Ÿ๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':motorcycle:', + ], + animated: false, +); + +/// The ๐Ÿš™ emoji. +const sportUtilityVehicle = Emoji( + base: '๐Ÿš™', + alternates: [], + emoticons: [], + shortcodes: [ + ':sport-utility-vehicle:', + ], + animated: false, +); + +/// The ๐Ÿš— emoji. +const automobile = Emoji( + base: '๐Ÿš—', + alternates: [], + emoticons: [], + shortcodes: [ + ':automobile:', + ], + animated: false, +); + +/// The ๐Ÿ›ป emoji. +const pickupTruck = Emoji( + base: '๐Ÿ›ป', + alternates: [], + emoticons: [], + shortcodes: [ + ':pickup-truck:', + ], + animated: false, +); + +/// The ๐Ÿš emoji. +const minibus = Emoji( + base: '๐Ÿš', + alternates: [], + emoticons: [], + shortcodes: [ + ':minibus:', + ], + animated: false, +); + +/// The ๐Ÿšš emoji. +const deliveryTruck = Emoji( + base: '๐Ÿšš', + alternates: [], + emoticons: [], + shortcodes: [ + ':delivery-truck:', + ], + animated: false, +); + +/// The ๐Ÿš› emoji. +const articulatedLorry = Emoji( + base: '๐Ÿš›', + alternates: [], + emoticons: [], + shortcodes: [ + ':articulated-lorry:', + ], + animated: false, +); + +/// The ๐Ÿšœ emoji. +const tractor = Emoji( + base: '๐Ÿšœ', + alternates: [], + emoticons: [], + shortcodes: [ + ':tractor:', + ], + animated: false, +); + +/// The ๐ŸŽ๏ธ emoji. +const racingCar = Emoji( + base: '๐ŸŽ๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':racing-car:', + ], + animated: false, +); + +/// The ๐Ÿš’ emoji. +const fireEngine = Emoji( + base: '๐Ÿš’', + alternates: [], + emoticons: [], + shortcodes: [ + ':fire-engine:', + ], + animated: false, +); + +/// The ๐Ÿš‘ emoji. +const ambulance = Emoji( + base: '๐Ÿš‘', + alternates: [], + emoticons: [], + shortcodes: [ + ':ambulance:', + ], + animated: false, +); + +/// The ๐Ÿš“ emoji. +const policeCar = Emoji( + base: '๐Ÿš“', + alternates: [], + emoticons: [], + shortcodes: [ + ':police-car:', + ], + animated: false, +); + +/// The ๐Ÿš• emoji. +const taxi = Emoji( + base: '๐Ÿš•', + alternates: [], + emoticons: [], + shortcodes: [ + ':taxi:', + ], + animated: false, +); + +/// The ๐Ÿ›บ emoji. +const autoRickshaw = Emoji( + base: '๐Ÿ›บ', + alternates: [], + emoticons: [], + shortcodes: [ + ':auto-rickshaw:', + ], + animated: false, +); + +/// The ๐ŸšŒ emoji. +const bus = Emoji( + base: '๐ŸšŒ', + alternates: [], + emoticons: [], + shortcodes: [ + ':bus:', + ], + animated: false, +); + +/// The ๐Ÿšˆ emoji. +const lightRail = Emoji( + base: '๐Ÿšˆ', + alternates: [], + emoticons: [], + shortcodes: [ + ':light-rail:', + ], + animated: false, +); + +/// The ๐Ÿš emoji. +const monorail = Emoji( + base: '๐Ÿš', + alternates: [], + emoticons: [], + shortcodes: [ + ':monorail:', + ], + animated: false, +); + +/// The ๐Ÿš… emoji. +const bulletTrain = Emoji( + base: '๐Ÿš…', + alternates: [], + emoticons: [], + shortcodes: [ + ':bullet-train:', + ], + animated: false, +); + +/// The ๐Ÿš„ emoji. +const highSpeedTrain = Emoji( + base: '๐Ÿš„', + alternates: [], + emoticons: [], + shortcodes: [ + ':high-speed-train:', + ], + animated: false, +); + +/// The ๐Ÿš‚ emoji. +const locomotive = Emoji( + base: '๐Ÿš‚', + alternates: [], + emoticons: [], + shortcodes: [ + ':locomotive:', + ], + animated: false, +); + +/// The ๐Ÿšƒ emoji. +const railwayCar = Emoji( + base: '๐Ÿšƒ', + alternates: [], + emoticons: [], + shortcodes: [ + ':railway-car:', + ], + animated: false, +); + +/// The ๐Ÿš‹ emoji. +const tramCar = Emoji( + base: '๐Ÿš‹', + alternates: [], + emoticons: [], + shortcodes: [ + ':tram-car:', + ], + animated: false, +); + +/// The ๐ŸšŽ emoji. +const trolleybus = Emoji( + base: '๐ŸšŽ', + alternates: [], + emoticons: [], + shortcodes: [ + ':trolleybus:', + ], + animated: false, +); + +/// The ๐Ÿšž emoji. +const mountainRailway = Emoji( + base: '๐Ÿšž', + alternates: [], + emoticons: [], + shortcodes: [ + ':mountain-railway:', + ], + animated: false, +); + +/// The ๐ŸšŠ emoji. +const tram = Emoji( + base: '๐ŸšŠ', + alternates: [], + emoticons: [], + shortcodes: [ + ':tram:', + ], + animated: false, +); + +/// The ๐Ÿš‰ emoji. +const station = Emoji( + base: '๐Ÿš‰', + alternates: [], + emoticons: [], + shortcodes: [ + ':station:', + ], + animated: false, +); + +/// The ๐Ÿš emoji. +const busFront = Emoji( + base: '๐Ÿš', + alternates: [], + emoticons: [], + shortcodes: [ + ':bus-front:', + ], + animated: false, +); + +/// The ๐Ÿš” emoji. +const policeCarFront = Emoji( + base: '๐Ÿš”', + alternates: [], + emoticons: [], + shortcodes: [ + ':police-car-front:', + ], + animated: false, +); + +/// The ๐Ÿš˜ emoji. +const automobileFront = Emoji( + base: '๐Ÿš˜', + alternates: [], + emoticons: [], + shortcodes: [ + ':automobile-front:', + ], + animated: false, +); + +/// The ๐Ÿš– emoji. +const taxiFront = Emoji( + base: '๐Ÿš–', + alternates: [], + emoticons: [], + shortcodes: [ + ':taxi-front:', + ], + animated: false, +); + +/// The ๐Ÿš† emoji. +const train = Emoji( + base: '๐Ÿš†', + alternates: [], + emoticons: [], + shortcodes: [ + ':train:', + ], + animated: false, +); + +/// The ๐Ÿšข emoji. +const ship = Emoji( + base: '๐Ÿšข', + alternates: [], + emoticons: [], + shortcodes: [ + ':ship:', + ], + animated: false, +); + +/// The ๐Ÿ›ณ๏ธ emoji. +const passengerShip = Emoji( + base: '๐Ÿ›ณ๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':passenger-ship:', + ], + animated: false, +); + +/// The ๐Ÿ›ฅ๏ธ emoji. +const motorBoat = Emoji( + base: '๐Ÿ›ฅ๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':motor-boat:', + ], + animated: false, +); + +/// The ๐Ÿšค emoji. +const speedboat = Emoji( + base: '๐Ÿšค', + alternates: [], + emoticons: [], + shortcodes: [ + ':speedboat:', + ], + animated: false, +); + +/// The โ›ด๏ธ emoji. +const ferry = Emoji( + base: 'โ›ด๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':ferry:', + ], + animated: false, +); + +/// The โ›ต emoji. +const sailboat = Emoji( + base: 'โ›ต', + alternates: [], + emoticons: [], + shortcodes: [ + ':sailboat:', + ], + animated: false, +); + +/// The ๐Ÿ›ถ emoji. +const canoe = Emoji( + base: '๐Ÿ›ถ', + alternates: [], + emoticons: [], + shortcodes: [ + ':canoe:', + ], + animated: false, +); + +/// The ๐ŸšŸ emoji. +const suspensionRailway = Emoji( + base: '๐ŸšŸ', + alternates: [], + emoticons: [], + shortcodes: [ + ':suspension-railway:', + ], + animated: false, +); + +/// The ๐Ÿš  emoji. +const mountainCableway = Emoji( + base: '๐Ÿš ', + alternates: [], + emoticons: [], + shortcodes: [ + ':mountain-cableway:', + ], + animated: false, +); + +/// The ๐Ÿšก emoji. +const aerialTramway = Emoji( + base: '๐Ÿšก', + alternates: [], + emoticons: [], + shortcodes: [ + ':aerial-tramway:', + ], + animated: false, +); + +/// The ๐Ÿš emoji. +const helicopter = Emoji( + base: '๐Ÿš', + alternates: [], + emoticons: [], + shortcodes: [ + ':helicopter:', + ], + animated: false, +); + +/// The ๐Ÿ›ธ emoji. +const flyingSaucer = Emoji( + base: '๐Ÿ›ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':flying-saucer:', + ], + animated: true, +); + +/// The ๐Ÿš€ emoji. +const rocket = Emoji( + base: '๐Ÿš€', + alternates: [], + emoticons: [], + shortcodes: [ + ':rocket:', + ], + animated: true, +); + +/// The โœˆ๏ธ emoji. +const airplane = Emoji( + base: 'โœˆ๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':airplane:', + ], + animated: false, +); + +/// The ๐Ÿ›ซ emoji. +const airplaneDeparture = Emoji( + base: '๐Ÿ›ซ', + alternates: [], + emoticons: [], + shortcodes: [ + ':airplane-departure:', + ], + animated: true, +); + +/// The ๐Ÿ›ฌ emoji. +const airplaneArrival = Emoji( + base: '๐Ÿ›ฌ', + alternates: [], + emoticons: [], + shortcodes: [ + ':airplane-arrival:', + ], + animated: true, +); + +/// The ๐Ÿ›ฉ๏ธ emoji. +const smallAirplane = Emoji( + base: '๐Ÿ›ฉ๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':small-airplane:', + ], + animated: false, +); + +/// The ๐Ÿ› emoji. +const slide = Emoji( + base: '๐Ÿ›', + alternates: [], + emoticons: [], + shortcodes: [ + ':slide:', + ':playground:', + ], + animated: false, +); + +/// The ๐ŸŽข emoji. +const rollerCoaster = Emoji( + base: '๐ŸŽข', + alternates: [], + emoticons: [], + shortcodes: [ + ':roller-coaster:', + ], + animated: true, +); + +/// The ๐ŸŽก emoji. +const ferrisWheel = Emoji( + base: '๐ŸŽก', + alternates: [], + emoticons: [], + shortcodes: [ + ':ferris-wheel:', + ], + animated: false, +); + +/// The ๐ŸŽ  emoji. +const carouselHorse = Emoji( + base: '๐ŸŽ ', + alternates: [], + emoticons: [], + shortcodes: [ + ':carousel-horse:', + ], + animated: false, +); + +/// The ๐ŸŽช emoji. +const circusTent = Emoji( + base: '๐ŸŽช', + alternates: [], + emoticons: [], + shortcodes: [ + ':circus-tent:', + ], + animated: false, +); + +/// The ๐Ÿ—ผ emoji. +const tokyoTower = Emoji( + base: '๐Ÿ—ผ', + alternates: [], + emoticons: [], + shortcodes: [ + ':tokyo-tower:', + ], + animated: false, +); + +/// The ๐Ÿ—ฝ emoji. +const statueOfLiberty = Emoji( + base: '๐Ÿ—ฝ', + alternates: [], + emoticons: [], + shortcodes: [ + ':statue-of-Liberty:', + ], + animated: false, +); + +/// The ๐Ÿ—ฟ emoji. +const moai = Emoji( + base: '๐Ÿ—ฟ', + alternates: [], + emoticons: [], + shortcodes: [ + ':moai:', + ], + animated: false, +); + +/// The ๐Ÿ—ป emoji. +const mountFuji = Emoji( + base: '๐Ÿ—ป', + alternates: [], + emoticons: [], + shortcodes: [ + ':mount-fuji:', + ], + animated: false, +); + +/// The ๐Ÿ›๏ธ emoji. +const classicalBuilding = Emoji( + base: '๐Ÿ›๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':classical-building:', + ], + animated: false, +); + +/// The ๐Ÿ’ˆ emoji. +const barberPole = Emoji( + base: '๐Ÿ’ˆ', + alternates: [], + emoticons: [], + shortcodes: [ + ':barber-pole:', + ], + animated: false, +); + +/// The โ›ฒ emoji. +const fountain = Emoji( + base: 'โ›ฒ', + alternates: [], + emoticons: [], + shortcodes: [ + ':fountain:', + ], + animated: false, +); + +/// The โ›ฉ๏ธ emoji. +const shintoShrine = Emoji( + base: 'โ›ฉ๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':shinto-shrine:', + ], + animated: false, +); + +/// The ๐Ÿ• emoji. +const synagogue = Emoji( + base: '๐Ÿ•', + alternates: [], + emoticons: [], + shortcodes: [ + ':synagogue:', + ], + animated: false, +); + +/// The ๐Ÿ•Œ emoji. +const mosque = Emoji( + base: '๐Ÿ•Œ', + alternates: [], + emoticons: [], + shortcodes: [ + ':mosque:', + ], + animated: false, +); + +/// The ๐Ÿ•‹ emoji. +const kaaba = Emoji( + base: '๐Ÿ•‹', + alternates: [], + emoticons: [], + shortcodes: [ + ':kaaba:', + ], + animated: false, +); + +/// The ๐Ÿ›• emoji. +const hinduTemple = Emoji( + base: '๐Ÿ›•', + alternates: [], + emoticons: [], + shortcodes: [ + ':hindu-temple:', + ], + animated: false, +); + +/// The โ›ช emoji. +const church = Emoji( + base: 'โ›ช', + alternates: [], + emoticons: [], + shortcodes: [ + ':church:', + ], + animated: false, +); + +/// The ๐Ÿ’’ emoji. +const wedding = Emoji( + base: '๐Ÿ’’', + alternates: [], + emoticons: [], + shortcodes: [ + ':wedding:', + ], + animated: false, +); + +/// The ๐Ÿฉ emoji. +const loveHotel = Emoji( + base: '๐Ÿฉ', + alternates: [], + emoticons: [], + shortcodes: [ + ':love-hotel:', + ], + animated: false, +); + +/// The ๐Ÿฏ emoji. +const japaneseCastle = Emoji( + base: '๐Ÿฏ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Japanese-castle:', + ], + animated: false, +); + +/// The ๐Ÿฐ emoji. +const castle = Emoji( + base: '๐Ÿฐ', + alternates: [], + emoticons: [], + shortcodes: [ + ':castle:', + ], + animated: false, +); + +/// The ๐Ÿ—๏ธ emoji. +const constructionBuilding = Emoji( + base: '๐Ÿ—๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':construction-building:', + ], + animated: false, +); + +/// The ๐Ÿข emoji. +const officeBuilding = Emoji( + base: '๐Ÿข', + alternates: [], + emoticons: [], + shortcodes: [ + ':office-building:', + ], + animated: false, +); + +/// The ๐Ÿญ emoji. +const factory = Emoji( + base: '๐Ÿญ', + alternates: [], + emoticons: [], + shortcodes: [ + ':factory:', + ], + animated: false, +); + +/// The ๐Ÿฌ emoji. +const departmentStore = Emoji( + base: '๐Ÿฌ', + alternates: [], + emoticons: [], + shortcodes: [ + ':department-store:', + ], + animated: false, +); + +/// The ๐Ÿช emoji. +const convenienceStore = Emoji( + base: '๐Ÿช', + alternates: [], + emoticons: [], + shortcodes: [ + ':convenience-store:', + ], + animated: false, +); + +/// The ๐ŸŸ๏ธ emoji. +const stadium = Emoji( + base: '๐ŸŸ๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':stadium:', + ], + animated: false, +); + +/// The ๐Ÿฆ emoji. +const bank = Emoji( + base: '๐Ÿฆ', + alternates: [], + emoticons: [], + shortcodes: [ + ':bank:', + ], + animated: false, +); + +/// The ๐Ÿซ emoji. +const school = Emoji( + base: '๐Ÿซ', + alternates: [], + emoticons: [], + shortcodes: [ + ':school:', + ], + animated: false, +); + +/// The ๐Ÿจ emoji. +const hotel = Emoji( + base: '๐Ÿจ', + alternates: [], + emoticons: [], + shortcodes: [ + ':hotel:', + ], + animated: false, +); + +/// The ๐Ÿฃ emoji. +const japanesePostOffice = Emoji( + base: '๐Ÿฃ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Japanese-post-office:', + ], + animated: false, +); + +/// The ๐Ÿค emoji. +const postOffice = Emoji( + base: '๐Ÿค', + alternates: [], + emoticons: [], + shortcodes: [ + ':post-office:', + ], + animated: false, +); + +/// The ๐Ÿฅ emoji. +const hospital = Emoji( + base: '๐Ÿฅ', + alternates: [], + emoticons: [], + shortcodes: [ + ':hospital:', + ], + animated: false, +); + +/// The ๐Ÿš๏ธ emoji. +const derelictHouse = Emoji( + base: '๐Ÿš๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':derelict-house:', + ], + animated: false, +); + +/// The ๐Ÿ  emoji. +const house = Emoji( + base: '๐Ÿ ', + alternates: [], + emoticons: [], + shortcodes: [ + ':house:', + ], + animated: false, +); + +/// The ๐Ÿก emoji. +const houseWithGarden = Emoji( + base: '๐Ÿก', + alternates: [], + emoticons: [], + shortcodes: [ + ':house-with-garden:', + ], + animated: false, +); + +/// The ๐Ÿ˜๏ธ emoji. +const houses = Emoji( + base: '๐Ÿ˜๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':houses:', + ], + animated: false, +); + +/// The ๐Ÿ›– emoji. +const hut = Emoji( + base: '๐Ÿ›–', + alternates: [], + emoticons: [], + shortcodes: [ + ':hut:', + ], + animated: false, +); + +/// The โ›บ emoji. +const tent = Emoji( + base: 'โ›บ', + alternates: [], + emoticons: [], + shortcodes: [ + ':tent:', + ], + animated: false, +); + +/// The ๐Ÿ•๏ธ emoji. +const camping = Emoji( + base: '๐Ÿ•๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':camping:', + ], + animated: false, +); + +/// The โ›ฑ๏ธ emoji. +const umbrellaOnGround = Emoji( + base: 'โ›ฑ๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':umbrella-on-ground:', + ], + animated: false, +); + +/// The ๐Ÿ™๏ธ emoji. +const cityscape = Emoji( + base: '๐Ÿ™๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':cityscape:', + ], + animated: false, +); + +/// The ๐ŸŒ† emoji. +const sunsetCityscape = Emoji( + base: '๐ŸŒ†', + alternates: [], + emoticons: [], + shortcodes: [ + ':sunset-cityscape:', + ], + animated: false, +); + +/// The ๐ŸŒ‡ emoji. +const sunset = Emoji( + base: '๐ŸŒ‡', + alternates: [], + emoticons: [], + shortcodes: [ + ':sunset:', + ], + animated: false, +); + +/// The ๐ŸŒƒ emoji. +const nightWithStars = Emoji( + base: '๐ŸŒƒ', + alternates: [], + emoticons: [], + shortcodes: [ + ':night-with-stars:', + ], + animated: false, +); + +/// The ๐ŸŒ‰ emoji. +const bridgeAtNight = Emoji( + base: '๐ŸŒ‰', + alternates: [], + emoticons: [], + shortcodes: [ + ':bridge-at-night:', + ], + animated: false, +); + +/// The ๐ŸŒ emoji. +const foggy = Emoji( + base: '๐ŸŒ', + alternates: [], + emoticons: [], + shortcodes: [ + ':foggy:', + ], + animated: false, +); + +/// The ๐Ÿ›ค๏ธ emoji. +const railwayTrack = Emoji( + base: '๐Ÿ›ค๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':railway-track:', + ], + animated: false, +); + +/// The ๐Ÿ›ฃ๏ธ emoji. +const motorway = Emoji( + base: '๐Ÿ›ฃ๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':motorway:', + ], + animated: false, +); + +/// The ๐Ÿ—พ emoji. +const mapOfJapan = Emoji( + base: '๐Ÿ—พ', + alternates: [], + emoticons: [], + shortcodes: [ + ':map-of-Japan:', + ], + animated: false, +); + +/// The ๐Ÿ—บ๏ธ emoji. +const worldMap = Emoji( + base: '๐Ÿ—บ๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':world-map:', + ], + animated: false, +); + +/// The ๐ŸŒ emoji. +const globeWithMeridians = Emoji( + base: '๐ŸŒ', + alternates: [], + emoticons: [], + shortcodes: [ + ':globe-with-meridians:', + ], + animated: false, +); + +/// The ๐Ÿ’บ emoji. +const seat = Emoji( + base: '๐Ÿ’บ', + alternates: [], + emoticons: [], + shortcodes: [ + ':seat:', + ], + animated: false, +); + +/// The ๐Ÿงณ emoji. +const luggage = Emoji( + base: '๐Ÿงณ', + alternates: [], + emoticons: [], + shortcodes: [ + ':luggage:', + ], + animated: false, +); + +/// The ๐ŸŽŠ emoji. +const confettiBall = Emoji( + base: '๐ŸŽŠ', + alternates: [], + emoticons: [], + shortcodes: [ + ':confetti-ball:', + ], + animated: true, +); + +/// The ๐ŸŽˆ emoji. +const balloon = Emoji( + base: '๐ŸŽˆ', + alternates: [], + emoticons: [], + shortcodes: [ + ':balloon:', + ], + animated: true, +); + +/// The ๐ŸŽ€ emoji. +const ribbon = Emoji( + base: '๐ŸŽ€', + alternates: [], + emoticons: [], + shortcodes: [ + ':ribbon:', + ], + animated: false, +); + +/// The ๐ŸŽ emoji. +const wrappedGift = Emoji( + base: '๐ŸŽ', + alternates: [], + emoticons: [], + shortcodes: [ + ':wrapped-gift:', + ], + animated: false, +); + +/// The ๐ŸŽ‡ emoji. +const sparkler = Emoji( + base: '๐ŸŽ‡', + alternates: [], + emoticons: [], + shortcodes: [ + ':sparkler:', + ], + animated: false, +); + +/// The ๐ŸŽ† emoji. +const fireworks = Emoji( + base: '๐ŸŽ†', + alternates: [], + emoticons: [], + shortcodes: [ + ':fireworks:', + ], + animated: true, +); + +/// The ๐Ÿงจ emoji. +const firecracker = Emoji( + base: '๐Ÿงจ', + alternates: [], + emoticons: [], + shortcodes: [ + ':firecracker:', + ], + animated: false, +); + +/// The ๐Ÿงง emoji. +const redEnvelope = Emoji( + base: '๐Ÿงง', + alternates: [], + emoticons: [], + shortcodes: [ + ':red-envelope:', + ], + animated: false, +); + +/// The ๐Ÿช” emoji. +const diyaLamp = Emoji( + base: '๐Ÿช”', + alternates: [], + emoticons: [], + shortcodes: [ + ':diya-lamp:', + ], + animated: false, +); + +/// The ๐Ÿช… emoji. +const pinata = Emoji( + base: '๐Ÿช…', + alternates: [], + emoticons: [], + shortcodes: [ + ':piรฑata:', + ], + animated: false, +); + +/// The ๐Ÿชฉ emoji. +const mirrorBall = Emoji( + base: '๐Ÿชฉ', + alternates: [], + emoticons: [], + shortcodes: [ + ':mirror-ball:', + ':disco-ball:', + ], + animated: true, +); + +/// The ๐ŸŽ emoji. +const windChime = Emoji( + base: '๐ŸŽ', + alternates: [], + emoticons: [], + shortcodes: [ + ':wind-chime:', + ], + animated: false, +); + +/// The ๐ŸŽ emoji. +const carpStreamer = Emoji( + base: '๐ŸŽ', + alternates: [], + emoticons: [], + shortcodes: [ + ':carp-streamer:', + ], + animated: false, +); + +/// The ๐ŸŽŽ emoji. +const japaneseDolls = Emoji( + base: '๐ŸŽŽ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Japanese-dolls:', + ], + animated: false, +); + +/// The ๐ŸŽ‘ emoji. +const moonViewingCeremony = Emoji( + base: '๐ŸŽ‘', + alternates: [], + emoticons: [], + shortcodes: [ + ':moon-viewing-ceremony:', + ], + animated: false, +); + +/// The ๐ŸŽ emoji. +const pineDecoration = Emoji( + base: '๐ŸŽ', + alternates: [], + emoticons: [], + shortcodes: [ + ':pine-decoration:', + ], + animated: false, +); + +/// The ๐ŸŽ‹ emoji. +const tanabataTree = Emoji( + base: '๐ŸŽ‹', + alternates: [], + emoticons: [], + shortcodes: [ + ':tanabata-tree:', + ], + animated: false, +); + +/// The ๐ŸŽ„ emoji. +const christmasTree = Emoji( + base: '๐ŸŽ„', + alternates: [], + emoticons: [], + shortcodes: [ + ':Christmas-tree:', + ], + animated: false, +); + +/// The ๐ŸŽ—๏ธ emoji. +const reminderRibbon = Emoji( + base: '๐ŸŽ—๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':reminder-ribbon:', + ], + animated: false, +); + +/// The ๐Ÿฅ‡ emoji. +const goldMedal = Emoji( + base: '๐Ÿฅ‡', + alternates: [], + emoticons: [], + shortcodes: [ + ':gold-medal:', + ':1st-place-medal:', + ], + animated: false, +); + +/// The ๐Ÿฅˆ emoji. +const silverMedal = Emoji( + base: '๐Ÿฅˆ', + alternates: [], + emoticons: [], + shortcodes: [ + ':silver-medal:', + ':2nd-place-medal:', + ], + animated: false, +); + +/// The ๐Ÿฅ‰ emoji. +const bronzeMedal = Emoji( + base: '๐Ÿฅ‰', + alternates: [], + emoticons: [], + shortcodes: [ + ':bronze-medal:', + ':3rd-place-medal:', + ], + animated: false, +); + +/// The ๐Ÿ… emoji. +const medal = Emoji( + base: '๐Ÿ…', + alternates: [], + emoticons: [], + shortcodes: [ + ':medal:', + ], + animated: false, +); + +/// The ๐ŸŽ–๏ธ emoji. +const militaryMedal = Emoji( + base: '๐ŸŽ–๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':military-medal:', + ], + animated: false, +); + +/// The ๐Ÿ† emoji. +const trophy = Emoji( + base: '๐Ÿ†', + alternates: [], + emoticons: [], + shortcodes: [ + ':trophy:', + ], + animated: false, +); + +/// The ๐Ÿ“ข emoji. +const loudspeaker = Emoji( + base: '๐Ÿ“ข', + alternates: [], + emoticons: [], + shortcodes: [ + ':loudspeaker:', + ], + animated: false, +); + +/// The โšฝ emoji. +const soccerBall = Emoji( + base: 'โšฝ', + alternates: [], + emoticons: [], + shortcodes: [ + ':soccer-ball:', + ], + animated: true, +); + +/// The โšพ emoji. +const baseball = Emoji( + base: 'โšพ', + alternates: [], + emoticons: [], + shortcodes: [ + ':baseball:', + ], + animated: false, +); + +/// The ๐ŸฅŽ emoji. +const softball = Emoji( + base: '๐ŸฅŽ', + alternates: [], + emoticons: [], + shortcodes: [ + ':softball:', + ], + animated: false, +); + +/// The ๐Ÿ€ emoji. +const basketball = Emoji( + base: '๐Ÿ€', + alternates: [], + emoticons: [], + shortcodes: [ + ':basketball:', + ], + animated: false, +); + +/// The ๐Ÿ emoji. +const volleyball = Emoji( + base: '๐Ÿ', + alternates: [], + emoticons: [], + shortcodes: [ + ':volleyball:', + ], + animated: false, +); + +/// The ๐Ÿˆ emoji. +const americanFootball = Emoji( + base: '๐Ÿˆ', + alternates: [], + emoticons: [], + shortcodes: [ + ':american-football:', + ], + animated: false, +); + +/// The ๐Ÿ‰ emoji. +const rugbyFootball = Emoji( + base: '๐Ÿ‰', + alternates: [], + emoticons: [], + shortcodes: [ + ':rugby-football:', + ], + animated: false, +); + +/// The ๐Ÿฅ… emoji. +const goalNet = Emoji( + base: '๐Ÿฅ…', + alternates: [], + emoticons: [], + shortcodes: [ + ':goal-net:', + ], + animated: false, +); + +/// The ๐ŸŽพ emoji. +const tennis = Emoji( + base: '๐ŸŽพ', + alternates: [], + emoticons: [], + shortcodes: [ + ':tennis:', + ], + animated: false, +); + +/// The ๐Ÿธ emoji. +const badminton = Emoji( + base: '๐Ÿธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':badminton:', + ], + animated: false, +); + +/// The ๐Ÿฅ emoji. +const lacrosse = Emoji( + base: '๐Ÿฅ', + alternates: [], + emoticons: [], + shortcodes: [ + ':lacrosse:', + ], + animated: false, +); + +/// The ๐Ÿ emoji. +const cricketGame = Emoji( + base: '๐Ÿ', + alternates: [], + emoticons: [], + shortcodes: [ + ':cricket-game:', + ], + animated: false, +); + +/// The ๐Ÿ‘ emoji. +const fieldHockey = Emoji( + base: '๐Ÿ‘', + alternates: [], + emoticons: [], + shortcodes: [ + ':field-hockey:', + ], + animated: false, +); + +/// The ๐Ÿ’ emoji. +const iceHockey = Emoji( + base: '๐Ÿ’', + alternates: [], + emoticons: [], + shortcodes: [ + ':ice-hockey:', + ], + animated: false, +); + +/// The ๐ŸฅŒ emoji. +const curlingStone = Emoji( + base: '๐ŸฅŒ', + alternates: [], + emoticons: [], + shortcodes: [ + ':curling-stone:', + ], + animated: false, +); + +/// The ๐Ÿ›ท emoji. +const sled = Emoji( + base: '๐Ÿ›ท', + alternates: [], + emoticons: [], + shortcodes: [ + ':sled:', + ], + animated: false, +); + +/// The ๐ŸŽฟ emoji. +const skis = Emoji( + base: '๐ŸŽฟ', + alternates: [], + emoticons: [], + shortcodes: [ + ':skis:', + ], + animated: false, +); + +/// The โ›ธ๏ธ emoji. +const iceSkate = Emoji( + base: 'โ›ธ๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':ice-skate:', + ], + animated: false, +); + +/// The ๐Ÿ›ผ emoji. +const rollerSkates = Emoji( + base: '๐Ÿ›ผ', + alternates: [], + emoticons: [], + shortcodes: [ + ':roller-skates:', + ], + animated: false, +); + +/// The ๐Ÿฉฐ emoji. +const balletShoes = Emoji( + base: '๐Ÿฉฐ', + alternates: [], + emoticons: [], + shortcodes: [ + ':ballet-shoes:', + ], + animated: false, +); + +/// The ๐Ÿ›น emoji. +const skateboard = Emoji( + base: '๐Ÿ›น', + alternates: [], + emoticons: [], + shortcodes: [ + ':skateboard:', + ], + animated: false, +); + +/// The โ›ณ emoji. +const flagInHole = Emoji( + base: 'โ›ณ', + alternates: [], + emoticons: [], + shortcodes: [ + ':flag-in-hole:', + ], + animated: false, +); + +/// The ๐ŸŽฏ emoji. +const directHit = Emoji( + base: '๐ŸŽฏ', + alternates: [], + emoticons: [], + shortcodes: [ + ':direct-hit:', + ':target:', + ], + animated: true, +); + +/// The ๐Ÿน emoji. +const bowAndArrow = Emoji( + base: '๐Ÿน', + alternates: [], + emoticons: [], + shortcodes: [ + ':bow-and-arrow:', + ], + animated: false, +); + +/// The ๐Ÿฅ emoji. +const flyingDisc = Emoji( + base: '๐Ÿฅ', + alternates: [], + emoticons: [], + shortcodes: [ + ':flying-disc:', + ], + animated: false, +); + +/// The ๐Ÿชƒ emoji. +const boomerang = Emoji( + base: '๐Ÿชƒ', + alternates: [], + emoticons: [], + shortcodes: [ + ':boomerang:', + ], + animated: false, +); + +/// The ๐Ÿช emoji. +const kite = Emoji( + base: '๐Ÿช', + alternates: [], + emoticons: [], + shortcodes: [ + ':kite:', + ], + animated: false, +); + +/// The ๐ŸŽฃ emoji. +const fishingPole = Emoji( + base: '๐ŸŽฃ', + alternates: [], + emoticons: [], + shortcodes: [ + ':fishing-pole:', + ], + animated: false, +); + +/// The ๐Ÿคฟ emoji. +const divingMask = Emoji( + base: '๐Ÿคฟ', + alternates: [], + emoticons: [], + shortcodes: [ + ':diving-mask:', + ], + animated: false, +); + +/// The ๐Ÿฉฑ emoji. +const onePieceSwimsuit = Emoji( + base: '๐Ÿฉฑ', + alternates: [], + emoticons: [], + shortcodes: [ + ':one-piece-swimsuit:', + ], + animated: false, +); + +/// The ๐ŸŽฝ emoji. +const runningShirt = Emoji( + base: '๐ŸŽฝ', + alternates: [], + emoticons: [], + shortcodes: [ + ':running-shirt:', + ], + animated: false, +); + +/// The ๐Ÿฅ‹ emoji. +const martialArtsUniform = Emoji( + base: '๐Ÿฅ‹', + alternates: [], + emoticons: [], + shortcodes: [ + ':martial-arts-uniform:', + ], + animated: false, +); + +/// The ๐ŸฅŠ emoji. +const boxingGlove = Emoji( + base: '๐ŸฅŠ', + alternates: [], + emoticons: [], + shortcodes: [ + ':boxing-glove:', + ], + animated: false, +); + +/// The ๐ŸŽฑ emoji. +const eightBall = Emoji( + base: '๐ŸŽฑ', + alternates: [], + emoticons: [], + shortcodes: [ + ':8-ball:', + ], + animated: false, +); + +/// The ๐Ÿ“ emoji. +const pingPong = Emoji( + base: '๐Ÿ“', + alternates: [], + emoticons: [], + shortcodes: [ + ':ping-pong:', + ], + animated: false, +); + +/// The ๐ŸŽณ emoji. +const bowling = Emoji( + base: '๐ŸŽณ', + alternates: [], + emoticons: [], + shortcodes: [ + ':bowling:', + ], + animated: false, +); + +/// The โ™Ÿ๏ธ emoji. +const chessPawn = Emoji( + base: 'โ™Ÿ๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':chess-pawn:', + ], + animated: false, +); + +/// The ๐Ÿช€ emoji. +const yoYo = Emoji( + base: '๐Ÿช€', + alternates: [], + emoticons: [], + shortcodes: [ + ':yo-yo:', + ], + animated: false, +); + +/// The ๐Ÿงฉ emoji. +const jigsaw = Emoji( + base: '๐Ÿงฉ', + alternates: [], + emoticons: [], + shortcodes: [ + ':jigsaw:', + ], + animated: false, +); + +/// The ๐ŸŽฎ emoji. +const videoGame = Emoji( + base: '๐ŸŽฎ', + alternates: [], + emoticons: [], + shortcodes: [ + ':video-game:', + ], + animated: false, +); + +/// The ๐Ÿ•น๏ธ emoji. +const joystick = Emoji( + base: '๐Ÿ•น๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':joystick:', + ], + animated: false, +); + +/// The ๐Ÿ”ซ emoji. +const pistol = Emoji( + base: '๐Ÿ”ซ', + alternates: [], + emoticons: [], + shortcodes: [ + ':pistol:', + ], + animated: false, +); + +/// The ๐ŸŽฒ emoji. +const die = Emoji( + base: '๐ŸŽฒ', + alternates: [], + emoticons: [], + shortcodes: [ + ':die:', + ], + animated: false, +); + +/// The ๐ŸŽฐ emoji. +const slotMachine = Emoji( + base: '๐ŸŽฐ', + alternates: [], + emoticons: [], + shortcodes: [ + ':slot-machine:', + ], + animated: false, +); + +/// The ๐ŸŽด emoji. +const flowerPlayingCards = Emoji( + base: '๐ŸŽด', + alternates: [], + emoticons: [], + shortcodes: [ + ':flower-playing-cards:', + ], + animated: false, +); + +/// The ๐Ÿ€„ emoji. +const mahjongRedDragon = Emoji( + base: '๐Ÿ€„', + alternates: [], + emoticons: [], + shortcodes: [ + ':mahjong-red-dragon:', + ], + animated: false, +); + +/// The ๐Ÿƒ emoji. +const joker = Emoji( + base: '๐Ÿƒ', + alternates: [], + emoticons: [], + shortcodes: [ + ':joker:', + ], + animated: false, +); + +/// The ๐Ÿช„ emoji. +const wand = Emoji( + base: '๐Ÿช„', + alternates: [], + emoticons: [], + shortcodes: [ + ':wand:', + ], + animated: false, +); + +/// The ๐ŸŽฉ emoji. +const gameDie = Emoji( + base: '๐ŸŽฉ', + alternates: [], + emoticons: [], + shortcodes: [ + ':game-die:', + ], + animated: false, +); + +/// The ๐Ÿ“ท emoji. +const camera = Emoji( + base: '๐Ÿ“ท', + alternates: [], + emoticons: [], + shortcodes: [ + ':camera:', + ], + animated: false, +); + +/// The ๐Ÿ“ธ emoji. +const cameraFlash = Emoji( + base: '๐Ÿ“ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':camera-flash:', + ], + animated: false, +); + +/// The ๐Ÿ–ผ๏ธ emoji. +const framedPicture = Emoji( + base: '๐Ÿ–ผ๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':framed-picture:', + ], + animated: false, +); + +/// The ๐ŸŽจ emoji. +const artistPalette = Emoji( + base: '๐ŸŽจ', + alternates: [], + emoticons: [], + shortcodes: [ + ':artist-palette:', + ], + animated: false, +); + +/// The ๐Ÿ–Œ๏ธ emoji. +const paintbrush = Emoji( + base: '๐Ÿ–Œ๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':paintbrush:', + ], + animated: false, +); + +/// The ๐Ÿ–๏ธ emoji. +const crayon = Emoji( + base: '๐Ÿ–๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':crayon:', + ], + animated: false, +); + +/// The ๐Ÿชก emoji. +const needle = Emoji( + base: '๐Ÿชก', + alternates: [], + emoticons: [], + shortcodes: [ + ':needle:', + ], + animated: false, +); + +/// The ๐Ÿงต emoji. +const thread = Emoji( + base: '๐Ÿงต', + alternates: [], + emoticons: [], + shortcodes: [ + ':thread:', + ], + animated: false, +); + +/// The ๐Ÿงถ emoji. +const yarn = Emoji( + base: '๐Ÿงถ', + alternates: [], + emoticons: [], + shortcodes: [ + ':yarn:', + ], + animated: false, +); + +/// The ๐ŸŽน emoji. +const piano = Emoji( + base: '๐ŸŽน', + alternates: [], + emoticons: [], + shortcodes: [ + ':piano:', + ':musical-keyboard:', + ], + animated: false, +); + +/// The ๐ŸŽท emoji. +const saxophone = Emoji( + base: '๐ŸŽท', + alternates: [], + emoticons: [], + shortcodes: [ + ':saxophone:', + ], + animated: false, +); + +/// The ๐ŸŽบ emoji. +const trumpet = Emoji( + base: '๐ŸŽบ', + alternates: [], + emoticons: [], + shortcodes: [ + ':trumpet:', + ], + animated: false, +); + +/// The ๐ŸŽธ emoji. +const guitar = Emoji( + base: '๐ŸŽธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':guitar:', + ], + animated: false, +); + +/// The ๐Ÿช• emoji. +const banjo = Emoji( + base: '๐Ÿช•', + alternates: [], + emoticons: [], + shortcodes: [ + ':banjo:', + ], + animated: false, +); + +/// The ๐ŸŽป emoji. +const violin = Emoji( + base: '๐ŸŽป', + alternates: [], + emoticons: [], + shortcodes: [ + ':violin:', + ], + animated: true, +); + +/// The ๐Ÿช˜ emoji. +const longDrum = Emoji( + base: '๐Ÿช˜', + alternates: [], + emoticons: [], + shortcodes: [ + ':long-drum:', + ], + animated: false, +); + +/// The ๐Ÿฅ emoji. +const drum = Emoji( + base: '๐Ÿฅ', + alternates: [], + emoticons: [], + shortcodes: [ + ':drum:', + ], + animated: true, +); + +/// The ๐Ÿช‡ emoji. +const maracas = Emoji( + base: '๐Ÿช‡', + alternates: [], + emoticons: [], + shortcodes: [ + ':maracas:', + ], + animated: true, +); + +/// The ๐Ÿชˆ emoji. +const flute = Emoji( + base: '๐Ÿชˆ', + alternates: [], + emoticons: [], + shortcodes: [ + ':flute:', + ], + animated: false, +); + +/// The ๐Ÿช— emoji. +const accordion = Emoji( + base: '๐Ÿช—', + alternates: [], + emoticons: [], + shortcodes: [ + ':accordion:', + ], + animated: false, +); + +/// The ๐ŸŽค emoji. +const microphone = Emoji( + base: '๐ŸŽค', + alternates: [], + emoticons: [], + shortcodes: [ + ':microphone:', + ], + animated: false, +); + +/// The ๐ŸŽง emoji. +const headphone = Emoji( + base: '๐ŸŽง', + alternates: [], + emoticons: [], + shortcodes: [ + ':headphone:', + ], + animated: false, +); + +/// The ๐ŸŽš๏ธ emoji. +const levelSlider = Emoji( + base: '๐ŸŽš๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':level-slider:', + ], + animated: false, +); + +/// The ๐ŸŽ›๏ธ emoji. +const controlKnobs = Emoji( + base: '๐ŸŽ›๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':control-knobs:', + ], + animated: false, +); + +/// The ๐ŸŽ™๏ธ emoji. +const studioMicrophone = Emoji( + base: '๐ŸŽ™๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':studio-microphone:', + ], + animated: false, +); + +/// The ๐Ÿ“ป emoji. +const radio = Emoji( + base: '๐Ÿ“ป', + alternates: [], + emoticons: [], + shortcodes: [ + ':radio:', + ], + animated: false, +); + +/// The ๐Ÿ“บ emoji. +const television = Emoji( + base: '๐Ÿ“บ', + alternates: [], + emoticons: [], + shortcodes: [ + ':television:', + ], + animated: false, +); + +/// The ๐Ÿ“ผ emoji. +const videocassette = Emoji( + base: '๐Ÿ“ผ', + alternates: [], + emoticons: [], + shortcodes: [ + ':videocassette:', + ], + animated: false, +); + +/// The ๐Ÿ“น emoji. +const videoCamera = Emoji( + base: '๐Ÿ“น', + alternates: [], + emoticons: [], + shortcodes: [ + ':video-camera:', + ], + animated: false, +); + +/// The ๐Ÿ“ฝ๏ธ emoji. +const filmProjector = Emoji( + base: '๐Ÿ“ฝ๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':film-projector:', + ], + animated: false, +); + +/// The ๐ŸŽฅ emoji. +const movieCamera = Emoji( + base: '๐ŸŽฅ', + alternates: [], + emoticons: [], + shortcodes: [ + ':movie-camera:', + ], + animated: false, +); + +/// The ๐ŸŽž๏ธ emoji. +const film = Emoji( + base: '๐ŸŽž๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':film:', + ], + animated: false, +); + +/// The ๐ŸŽฌ emoji. +const clapper = Emoji( + base: '๐ŸŽฌ', + alternates: [], + emoticons: [], + shortcodes: [ + ':clapper:', + ], + animated: false, +); + +/// The ๐ŸŽญ emoji. +const performingArts = Emoji( + base: '๐ŸŽญ', + alternates: [], + emoticons: [], + shortcodes: [ + ':performing-arts:', + ], + animated: false, +); + +/// The ๐ŸŽซ emoji. +const ticket = Emoji( + base: '๐ŸŽซ', + alternates: [], + emoticons: [], + shortcodes: [ + ':ticket:', + ], + animated: false, +); + +/// The ๐ŸŽŸ๏ธ emoji. +const admissionTickets = Emoji( + base: '๐ŸŽŸ๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':admission-tickets:', + ], + animated: false, +); + +/// The ๐Ÿ“ฑ emoji. +const mobilePhone = Emoji( + base: '๐Ÿ“ฑ', + alternates: [], + emoticons: [], + shortcodes: [ + ':mobile-phone:', + ], + animated: false, +); + +/// The โ˜Ž๏ธ emoji. +const telephone = Emoji( + base: 'โ˜Ž๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':telephone:', + ], + animated: false, +); + +/// The ๐Ÿ“ž emoji. +const telephoneReceiver = Emoji( + base: '๐Ÿ“ž', + alternates: [], + emoticons: [], + shortcodes: [ + ':telephone-receiver:', + ], + animated: false, +); + +/// The ๐Ÿ“Ÿ emoji. +const pager = Emoji( + base: '๐Ÿ“Ÿ', + alternates: [], + emoticons: [], + shortcodes: [ + ':pager:', + ], + animated: false, +); + +/// The ๐Ÿ“  emoji. +const faxMachine = Emoji( + base: '๐Ÿ“ ', + alternates: [], + emoticons: [], + shortcodes: [ + ':fax-machine:', + ], + animated: false, +); + +/// The ๐Ÿ”Œ emoji. +const electricPlug = Emoji( + base: '๐Ÿ”Œ', + alternates: [], + emoticons: [], + shortcodes: [ + ':electric-plug:', + ], + animated: false, +); + +/// The ๐Ÿ”‹ emoji. +const batteryFull = Emoji( + base: '๐Ÿ”‹', + alternates: [], + emoticons: [], + shortcodes: [ + ':battery-full:', + ], + animated: true, +); + +/// The ๐Ÿชซ emoji. +const batteryLow = Emoji( + base: '๐Ÿชซ', + alternates: [], + emoticons: [], + shortcodes: [ + ':battery-low:', + ], + animated: true, +); + +/// The ๐Ÿ–ฒ๏ธ emoji. +const trackball = Emoji( + base: '๐Ÿ–ฒ๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':trackball:', + ], + animated: false, +); + +/// The ๐Ÿ’ฝ emoji. +const computerDisk = Emoji( + base: '๐Ÿ’ฝ', + alternates: [], + emoticons: [], + shortcodes: [ + ':computer-disk:', + ], + animated: false, +); + +/// The ๐Ÿ’พ emoji. +const floppyDisk = Emoji( + base: '๐Ÿ’พ', + alternates: [], + emoticons: [], + shortcodes: [ + ':floppy-disk:', + ], + animated: false, +); + +/// The ๐Ÿ’ฟ emoji. +const opticalDisk = Emoji( + base: '๐Ÿ’ฟ', + alternates: [], + emoticons: [], + shortcodes: [ + ':optical-disk:', + ], + animated: false, +); + +/// The ๐Ÿ“€ emoji. +const dvd = Emoji( + base: '๐Ÿ“€', + alternates: [], + emoticons: [], + shortcodes: [ + ':dvd:', + ], + animated: false, +); + +/// The ๐Ÿ–ฅ๏ธ emoji. +const desktopComputer = Emoji( + base: '๐Ÿ–ฅ๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':desktop-computer:', + ], + animated: false, +); + +/// The ๐Ÿ’ป emoji. +const laptopComputer = Emoji( + base: '๐Ÿ’ป', + alternates: [], + emoticons: [], + shortcodes: [ + ':laptop-computer:', + ], + animated: false, +); + +/// The โŒจ๏ธ emoji. +const keyboard = Emoji( + base: 'โŒจ๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':keyboard:', + ], + animated: false, +); + +/// The ๐Ÿ–จ๏ธ emoji. +const printer = Emoji( + base: '๐Ÿ–จ๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':printer:', + ], + animated: false, +); + +/// The ๐Ÿ–ฑ๏ธ emoji. +const computerMouse = Emoji( + base: '๐Ÿ–ฑ๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':computer-mouse:', + ], + animated: false, +); + +/// The ๐Ÿช™ emoji. +const coin = Emoji( + base: '๐Ÿช™', + alternates: [], + emoticons: [], + shortcodes: [ + ':coin:', + ], + animated: false, +); + +/// The ๐Ÿ’ธ emoji. +const moneyWithWings = Emoji( + base: '๐Ÿ’ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':money-with-wings:', + ], + animated: true, +); + +/// The ๐Ÿ’ต emoji. +const dollar = Emoji( + base: '๐Ÿ’ต', + alternates: [], + emoticons: [], + shortcodes: [ + ':dollar:', + ], + animated: false, +); + +/// The ๐Ÿ’ด emoji. +const yen = Emoji( + base: '๐Ÿ’ด', + alternates: [], + emoticons: [], + shortcodes: [ + ':yen:', + ], + animated: false, +); + +/// The ๐Ÿ’ถ emoji. +const euro = Emoji( + base: '๐Ÿ’ถ', + alternates: [], + emoticons: [], + shortcodes: [ + ':euro:', + ], + animated: false, +); + +/// The ๐Ÿ’ท emoji. +const pound = Emoji( + base: '๐Ÿ’ท', + alternates: [], + emoticons: [], + shortcodes: [ + ':pound:', + ], + animated: false, +); + +/// The ๐Ÿ’ณ emoji. +const creditCard = Emoji( + base: '๐Ÿ’ณ', + alternates: [], + emoticons: [], + shortcodes: [ + ':credit-card:', + ], + animated: false, +); + +/// The ๐Ÿ’ฐ emoji. +const moneyBag = Emoji( + base: '๐Ÿ’ฐ', + alternates: [], + emoticons: [], + shortcodes: [ + ':money-bag:', + ], + animated: false, +); + +/// The ๐Ÿงพ emoji. +const receipt = Emoji( + base: '๐Ÿงพ', + alternates: [], + emoticons: [], + shortcodes: [ + ':receipt:', + ], + animated: false, +); + +/// The ๐Ÿงฎ emoji. +const abacus = Emoji( + base: '๐Ÿงฎ', + alternates: [], + emoticons: [], + shortcodes: [ + ':abacus:', + ], + animated: false, +); + +/// The โš–๏ธ emoji. +const balanceScale = Emoji( + base: 'โš–๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':balance-scale:', + ], + animated: false, +); + +/// The ๐Ÿ›’ emoji. +const shoppingCart = Emoji( + base: '๐Ÿ›’', + alternates: [], + emoticons: [], + shortcodes: [ + ':shopping-cart:', + ], + animated: false, +); + +/// The ๐Ÿ›๏ธ emoji. +const shoppingBags = Emoji( + base: '๐Ÿ›๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':shopping-bags:', + ], + animated: false, +); + +/// The ๐Ÿ•ฏ๏ธ emoji. +const candle = Emoji( + base: '๐Ÿ•ฏ๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':candle:', + ], + animated: false, +); + +/// The ๐Ÿ’ก emoji. +const lightBulb = Emoji( + base: '๐Ÿ’ก', + alternates: [], + emoticons: [], + shortcodes: [ + ':light-bulb:', + ], + animated: true, +); + +/// The ๐Ÿ”ฆ emoji. +const flashlight = Emoji( + base: '๐Ÿ”ฆ', + alternates: [], + emoticons: [], + shortcodes: [ + ':flashlight:', + ], + animated: false, +); + +/// The ๐Ÿฎ emoji. +const redPaperLantern = Emoji( + base: '๐Ÿฎ', + alternates: [], + emoticons: [], + shortcodes: [ + ':red-paper-lantern:', + ], + animated: false, +); + +/// The ๐Ÿงฑ emoji. +const bricks = Emoji( + base: '๐Ÿงฑ', + alternates: [], + emoticons: [], + shortcodes: [ + ':bricks:', + ], + animated: false, +); + +/// The ๐ŸชŸ emoji. +const window = Emoji( + base: '๐ŸชŸ', + alternates: [], + emoticons: [], + shortcodes: [ + ':window:', + ], + animated: false, +); + +/// The ๐Ÿชž emoji. +const mirror = Emoji( + base: '๐Ÿชž', + alternates: [], + emoticons: [], + shortcodes: [ + ':mirror:', + ], + animated: false, +); + +/// The ๐Ÿšช emoji. +const door = Emoji( + base: '๐Ÿšช', + alternates: [], + emoticons: [], + shortcodes: [ + ':door:', + ], + animated: false, +); + +/// The ๐Ÿช‘ emoji. +const chair = Emoji( + base: '๐Ÿช‘', + alternates: [], + emoticons: [], + shortcodes: [ + ':chair:', + ], + animated: false, +); + +/// The ๐Ÿ›๏ธ emoji. +const bed = Emoji( + base: '๐Ÿ›๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':bed:', + ], + animated: false, +); + +/// The ๐Ÿ›‹๏ธ emoji. +const couchAndLamp = Emoji( + base: '๐Ÿ›‹๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':couch-and-lamp:', + ], + animated: false, +); + +/// The ๐Ÿšฟ emoji. +const shower = Emoji( + base: '๐Ÿšฟ', + alternates: [], + emoticons: [], + shortcodes: [ + ':shower:', + ], + animated: false, +); + +/// The ๐Ÿ› emoji. +const bathtub = Emoji( + base: '๐Ÿ›', + alternates: [], + emoticons: [], + shortcodes: [ + ':bathtub:', + ], + animated: false, +); + +/// The ๐Ÿšฝ emoji. +const toilet = Emoji( + base: '๐Ÿšฝ', + alternates: [], + emoticons: [], + shortcodes: [ + ':toilet:', + ], + animated: false, +); + +/// The ๐Ÿงป emoji. +const rollOfPaper = Emoji( + base: '๐Ÿงป', + alternates: [], + emoticons: [], + shortcodes: [ + ':roll-of-paper:', + ], + animated: false, +); + +/// The ๐Ÿช  emoji. +const plunger = Emoji( + base: '๐Ÿช ', + alternates: [], + emoticons: [], + shortcodes: [ + ':plunger:', + ], + animated: false, +); + +/// The ๐Ÿงธ emoji. +const teddyBear = Emoji( + base: '๐Ÿงธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':teddy-bear:', + ], + animated: false, +); + +/// The ๐Ÿช† emoji. +const nestingDoll = Emoji( + base: '๐Ÿช†', + alternates: [], + emoticons: [], + shortcodes: [ + ':nesting-doll:', + ], + animated: false, +); + +/// The ๐Ÿงท emoji. +const safetyPin = Emoji( + base: '๐Ÿงท', + alternates: [], + emoticons: [], + shortcodes: [ + ':safety-pin:', + ], + animated: false, +); + +/// The ๐Ÿชข emoji. +const knot = Emoji( + base: '๐Ÿชข', + alternates: [], + emoticons: [], + shortcodes: [ + ':knot:', + ], + animated: false, +); + +/// The ๐Ÿงน emoji. +const broom = Emoji( + base: '๐Ÿงน', + alternates: [], + emoticons: [], + shortcodes: [ + ':broom:', + ], + animated: false, +); + +/// The ๐Ÿงด emoji. +const lotionBottle = Emoji( + base: '๐Ÿงด', + alternates: [], + emoticons: [], + shortcodes: [ + ':lotion-bottle:', + ], + animated: false, +); + +/// The ๐Ÿงฝ emoji. +const sponge = Emoji( + base: '๐Ÿงฝ', + alternates: [], + emoticons: [], + shortcodes: [ + ':sponge:', + ], + animated: false, +); + +/// The ๐Ÿงผ emoji. +const soap = Emoji( + base: '๐Ÿงผ', + alternates: [], + emoticons: [], + shortcodes: [ + ':soap:', + ], + animated: false, +); + +/// The ๐Ÿชฅ emoji. +const toothbrush = Emoji( + base: '๐Ÿชฅ', + alternates: [], + emoticons: [], + shortcodes: [ + ':toothbrush:', + ], + animated: false, +); + +/// The ๐Ÿช’ emoji. +const razor = Emoji( + base: '๐Ÿช’', + alternates: [], + emoticons: [], + shortcodes: [ + ':razor:', + ], + animated: false, +); + +/// The ๐Ÿชฎ emoji. +const hairPick = Emoji( + base: '๐Ÿชฎ', + alternates: [], + emoticons: [], + shortcodes: [ + ':hair-pick:', + ], + animated: false, +); + +/// The ๐Ÿงบ emoji. +const basket = Emoji( + base: '๐Ÿงบ', + alternates: [], + emoticons: [], + shortcodes: [ + ':basket:', + ], + animated: false, +); + +/// The ๐Ÿงฆ emoji. +const socks = Emoji( + base: '๐Ÿงฆ', + alternates: [], + emoticons: [], + shortcodes: [ + ':socks:', + ], + animated: false, +); + +/// The ๐Ÿงค emoji. +const gloves = Emoji( + base: '๐Ÿงค', + alternates: [], + emoticons: [], + shortcodes: [ + ':gloves:', + ], + animated: false, +); + +/// The ๐Ÿงฃ emoji. +const scarf = Emoji( + base: '๐Ÿงฃ', + alternates: [], + emoticons: [], + shortcodes: [ + ':scarf:', + ], + animated: false, +); + +/// The ๐Ÿ‘– emoji. +const jeans = Emoji( + base: '๐Ÿ‘–', + alternates: [], + emoticons: [], + shortcodes: [ + ':jeans:', + ], + animated: false, +); + +/// The ๐Ÿ‘• emoji. +const tShirt = Emoji( + base: '๐Ÿ‘•', + alternates: [], + emoticons: [], + shortcodes: [ + ':t-shirt:', + ], + animated: false, +); + +/// The ๐Ÿ‘š emoji. +const womansClothes = Emoji( + base: '๐Ÿ‘š', + alternates: [], + emoticons: [], + shortcodes: [ + ':womanโ€™s-clothes:', + ], + animated: false, +); + +/// The ๐Ÿ‘” emoji. +const necktie = Emoji( + base: '๐Ÿ‘”', + alternates: [], + emoticons: [], + shortcodes: [ + ':necktie:', + ], + animated: false, +); + +/// The ๐Ÿ‘— emoji. +const dress = Emoji( + base: '๐Ÿ‘—', + alternates: [], + emoticons: [], + shortcodes: [ + ':dress:', + ], + animated: false, +); + +/// The ๐Ÿ‘˜ emoji. +const kimono = Emoji( + base: '๐Ÿ‘˜', + alternates: [], + emoticons: [], + shortcodes: [ + ':kimono:', + ], + animated: false, +); + +/// The ๐Ÿฅป emoji. +const sari = Emoji( + base: '๐Ÿฅป', + alternates: [], + emoticons: [], + shortcodes: [ + ':sari:', + ], + animated: false, +); + +/// The ๐Ÿ‘™ emoji. +const bikini = Emoji( + base: '๐Ÿ‘™', + alternates: [], + emoticons: [], + shortcodes: [ + ':bikini:', + ], + animated: false, +); + +/// The ๐Ÿฉณ emoji. +const shorts = Emoji( + base: '๐Ÿฉณ', + alternates: [], + emoticons: [], + shortcodes: [ + ':shorts:', + ], + animated: false, +); + +/// The ๐Ÿฉฒ emoji. +const swimBrief = Emoji( + base: '๐Ÿฉฒ', + alternates: [], + emoticons: [], + shortcodes: [ + ':swim-brief:', + ], + animated: false, +); + +/// The ๐Ÿงฅ emoji. +const coat = Emoji( + base: '๐Ÿงฅ', + alternates: [], + emoticons: [], + shortcodes: [ + ':coat:', + ], + animated: false, +); + +/// The ๐Ÿฅผ emoji. +const labCoat = Emoji( + base: '๐Ÿฅผ', + alternates: [], + emoticons: [], + shortcodes: [ + ':lab-coat:', + ], + animated: false, +); + +/// The ๐Ÿฆบ emoji. +const safetyVest = Emoji( + base: '๐Ÿฆบ', + alternates: [], + emoticons: [], + shortcodes: [ + ':safety-vest:', + ], + animated: false, +); + +/// The โ›‘๏ธ emoji. +const rescueWorkersHelmet = Emoji( + base: 'โ›‘๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':rescue-workerโ€™s-helmet:', + ], + animated: false, +); + +/// The ๐Ÿช– emoji. +const militaryHelmet = Emoji( + base: '๐Ÿช–', + alternates: [], + emoticons: [], + shortcodes: [ + ':military-helmet:', + ], + animated: false, +); + +/// The ๐ŸŽ“ emoji. +const graduationCap = Emoji( + base: '๐ŸŽ“', + alternates: [], + emoticons: [], + shortcodes: [ + ':graduation-cap:', + ], + animated: true, +); + +/// The ๐ŸŽฉ emoji. +const topHat = Emoji( + base: '๐ŸŽฉ', + alternates: [], + emoticons: [], + shortcodes: [ + ':top-hat:', + ], + animated: false, +); + +/// The ๐Ÿ‘’ emoji. +const womansHat = Emoji( + base: '๐Ÿ‘’', + alternates: [], + emoticons: [], + shortcodes: [ + ':womanโ€™s-hat:', + ], + animated: false, +); + +/// The ๐Ÿงข emoji. +const billedCap = Emoji( + base: '๐Ÿงข', + alternates: [], + emoticons: [], + shortcodes: [ + ':billed-cap:', + ], + animated: false, +); + +/// The ๐Ÿ‘‘ emoji. +const crown = Emoji( + base: '๐Ÿ‘‘', + alternates: [], + emoticons: [], + shortcodes: [ + ':crown:', + ], + animated: false, +); + +/// The ๐Ÿชญ emoji. +const fan = Emoji( + base: '๐Ÿชญ', + alternates: [], + emoticons: [], + shortcodes: [ + ':fan:', + ], + animated: false, +); + +/// The ๐ŸŽ’ emoji. +const schoolBackpack = Emoji( + base: '๐ŸŽ’', + alternates: [], + emoticons: [], + shortcodes: [ + ':school-backpack:', + ], + animated: false, +); + +/// The ๐Ÿ‘ emoji. +const clutchBag = Emoji( + base: '๐Ÿ‘', + alternates: [], + emoticons: [], + shortcodes: [ + ':clutch-bag:', + ], + animated: false, +); + +/// The ๐Ÿ‘› emoji. +const purse = Emoji( + base: '๐Ÿ‘›', + alternates: [], + emoticons: [], + shortcodes: [ + ':purse:', + ], + animated: false, +); + +/// The ๐Ÿ‘œ emoji. +const handbag = Emoji( + base: '๐Ÿ‘œ', + alternates: [], + emoticons: [], + shortcodes: [ + ':handbag:', + ], + animated: false, +); + +/// The ๐Ÿ’ผ emoji. +const briefcase = Emoji( + base: '๐Ÿ’ผ', + alternates: [], + emoticons: [], + shortcodes: [ + ':briefcase:', + ], + animated: false, +); + +/// The โ˜‚๏ธ emoji. +const umbrella = Emoji( + base: 'โ˜‚๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':umbrella:', + ], + animated: true, +); + +/// The ๐ŸŒ‚ emoji. +const closedUmbrella = Emoji( + base: '๐ŸŒ‚', + alternates: [], + emoticons: [], + shortcodes: [ + ':closed-umbrella:', + ], + animated: false, +); + +/// The ๐Ÿ’ emoji. +const ring = Emoji( + base: '๐Ÿ’', + alternates: [], + emoticons: [], + shortcodes: [ + ':ring:', + ], + animated: false, +); + +/// The ๐Ÿ’Ž emoji. +const gemStone = Emoji( + base: '๐Ÿ’Ž', + alternates: [], + emoticons: [], + shortcodes: [ + ':gem-stone:', + ], + animated: true, +); + +/// The ๐Ÿ’„ emoji. +const lipstick = Emoji( + base: '๐Ÿ’„', + alternates: [], + emoticons: [], + shortcodes: [ + ':lipstick:', + ], + animated: false, +); + +/// The ๐Ÿ‘  emoji. +const highHeeledShoe = Emoji( + base: '๐Ÿ‘ ', + alternates: [], + emoticons: [], + shortcodes: [ + ':high-heeled-shoe:', + ], + animated: false, +); + +/// The ๐Ÿ‘Ÿ emoji. +const runningShoe = Emoji( + base: '๐Ÿ‘Ÿ', + alternates: [], + emoticons: [], + shortcodes: [ + ':running-shoe:', + ], + animated: false, +); + +/// The ๐Ÿ‘ž emoji. +const mansShoe = Emoji( + base: '๐Ÿ‘ž', + alternates: [], + emoticons: [], + shortcodes: [ + ':manโ€™s-shoe:', + ], + animated: false, +); + +/// The ๐Ÿฅฟ emoji. +const flatShoe = Emoji( + base: '๐Ÿฅฟ', + alternates: [], + emoticons: [], + shortcodes: [ + ':flat-shoe:', + ], + animated: false, +); + +/// The ๐Ÿฉด emoji. +const flipFlop = Emoji( + base: '๐Ÿฉด', + alternates: [], + emoticons: [], + shortcodes: [ + ':flip-flop:', + ':thong-sandal:', + ], + animated: false, +); + +/// The ๐Ÿ‘ก emoji. +const sandal = Emoji( + base: '๐Ÿ‘ก', + alternates: [], + emoticons: [], + shortcodes: [ + ':sandal:', + ], + animated: false, +); + +/// The ๐Ÿ‘ข emoji. +const boot = Emoji( + base: '๐Ÿ‘ข', + alternates: [], + emoticons: [], + shortcodes: [ + ':boot:', + ], + animated: false, +); + +/// The ๐Ÿฅพ emoji. +const hikingBoot = Emoji( + base: '๐Ÿฅพ', + alternates: [], + emoticons: [], + shortcodes: [ + ':hiking-boot:', + ], + animated: false, +); + +/// The ๐Ÿฆฏ emoji. +const probingCane = Emoji( + base: '๐Ÿฆฏ', + alternates: [], + emoticons: [], + shortcodes: [ + ':probing-cane:', + ], + animated: false, +); + +/// The ๐Ÿ•ถ๏ธ emoji. +const sunglasses = Emoji( + base: '๐Ÿ•ถ๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':sunglasses:', + ], + animated: false, +); + +/// The ๐Ÿ‘“ emoji. +const glasses = Emoji( + base: '๐Ÿ‘“', + alternates: [], + emoticons: [], + shortcodes: [ + ':glasses:', + ], + animated: false, +); + +/// The ๐Ÿฅฝ emoji. +const goggles = Emoji( + base: '๐Ÿฅฝ', + alternates: [], + emoticons: [], + shortcodes: [ + ':goggles:', + ], + animated: false, +); + +/// The โš—๏ธ emoji. +const alembic = Emoji( + base: 'โš—๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':alembic:', + ], + animated: false, +); + +/// The ๐Ÿงซ emoji. +const petriDish = Emoji( + base: '๐Ÿงซ', + alternates: [], + emoticons: [], + shortcodes: [ + ':petri-dish:', + ], + animated: false, +); + +/// The ๐Ÿงช emoji. +const testTube = Emoji( + base: '๐Ÿงช', + alternates: [], + emoticons: [], + shortcodes: [ + ':test-tube:', + ], + animated: false, +); + +/// The ๐Ÿ’‰ emoji. +const syringe = Emoji( + base: '๐Ÿ’‰', + alternates: [], + emoticons: [], + shortcodes: [ + ':syringe:', + ], + animated: false, +); + +/// The ๐Ÿ’Š emoji. +const pill = Emoji( + base: '๐Ÿ’Š', + alternates: [], + emoticons: [], + shortcodes: [ + ':pill:', + ], + animated: false, +); + +/// The ๐Ÿฉน emoji. +const adhesiveBandage = Emoji( + base: '๐Ÿฉน', + alternates: [], + emoticons: [], + shortcodes: [ + ':adhesive-bandage:', + ], + animated: false, +); + +/// The ๐Ÿฉบ emoji. +const stethoscope = Emoji( + base: '๐Ÿฉบ', + alternates: [], + emoticons: [], + shortcodes: [ + ':stethoscope:', + ], + animated: false, +); + +/// The ๐Ÿฉป emoji. +const xRay = Emoji( + base: '๐Ÿฉป', + alternates: [], + emoticons: [], + shortcodes: [ + ':x-ray:', + ], + animated: false, +); + +/// The ๐Ÿงฌ emoji. +const dna = Emoji( + base: '๐Ÿงฌ', + alternates: [], + emoticons: [], + shortcodes: [ + ':dna:', + ], + animated: false, +); + +/// The ๐Ÿ”ญ emoji. +const telescope = Emoji( + base: '๐Ÿ”ญ', + alternates: [], + emoticons: [], + shortcodes: [ + ':telescope:', + ], + animated: false, +); + +/// The ๐Ÿ”ฌ emoji. +const microscope = Emoji( + base: '๐Ÿ”ฌ', + alternates: [], + emoticons: [], + shortcodes: [ + ':microscope:', + ], + animated: false, +); + +/// The ๐Ÿ“ก emoji. +const satelliteAntenna = Emoji( + base: '๐Ÿ“ก', + alternates: [], + emoticons: [], + shortcodes: [ + ':satellite-antenna:', + ], + animated: false, +); + +/// The ๐Ÿ›ฐ๏ธ emoji. +const satellite = Emoji( + base: '๐Ÿ›ฐ๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':satellite:', + ], + animated: false, +); + +/// The ๐Ÿงฏ emoji. +const fireExtinguisher = Emoji( + base: '๐Ÿงฏ', + alternates: [], + emoticons: [], + shortcodes: [ + ':fire-extinguisher:', + ], + animated: false, +); + +/// The ๐Ÿช“ emoji. +const axe = Emoji( + base: '๐Ÿช“', + alternates: [], + emoticons: [], + shortcodes: [ + ':axe:', + ], + animated: false, +); + +/// The ๐Ÿชœ emoji. +const ladder = Emoji( + base: '๐Ÿชœ', + alternates: [], + emoticons: [], + shortcodes: [ + ':ladder:', + ], + animated: false, +); + +/// The ๐Ÿชฃ emoji. +const bucket = Emoji( + base: '๐Ÿชฃ', + alternates: [], + emoticons: [], + shortcodes: [ + ':bucket:', + ], + animated: false, +); + +/// The ๐Ÿช emoji. +const hook = Emoji( + base: '๐Ÿช', + alternates: [], + emoticons: [], + shortcodes: [ + ':hook:', + ], + animated: false, +); + +/// The ๐Ÿงฒ emoji. +const magnet = Emoji( + base: '๐Ÿงฒ', + alternates: [], + emoticons: [], + shortcodes: [ + ':magnet:', + ], + animated: false, +); + +/// The ๐Ÿงฐ emoji. +const toolbox = Emoji( + base: '๐Ÿงฐ', + alternates: [], + emoticons: [], + shortcodes: [ + ':toolbox:', + ], + animated: false, +); + +/// The ๐Ÿ—œ๏ธ emoji. +const clamp = Emoji( + base: '๐Ÿ—œ๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':clamp:', + ], + animated: false, +); + +/// The ๐Ÿ”ฉ emoji. +const nutAndBolt = Emoji( + base: '๐Ÿ”ฉ', + alternates: [], + emoticons: [], + shortcodes: [ + ':nut-and-bolt:', + ], + animated: false, +); + +/// The ๐Ÿช› emoji. +const screwdriver = Emoji( + base: '๐Ÿช›', + alternates: [], + emoticons: [], + shortcodes: [ + ':screwdriver:', + ], + animated: false, +); + +/// The ๐Ÿชš emoji. +const saw = Emoji( + base: '๐Ÿชš', + alternates: [], + emoticons: [], + shortcodes: [ + ':saw:', + ], + animated: false, +); + +/// The ๐Ÿ”ง emoji. +const wrench = Emoji( + base: '๐Ÿ”ง', + alternates: [], + emoticons: [], + shortcodes: [ + ':wrench:', + ], + animated: false, +); + +/// The ๐Ÿ”จ emoji. +const hammer = Emoji( + base: '๐Ÿ”จ', + alternates: [], + emoticons: [], + shortcodes: [ + ':hammer:', + ], + animated: false, +); + +/// The โš’๏ธ emoji. +const hammerAndPick = Emoji( + base: 'โš’๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':hammer-and-pick:', + ], + animated: false, +); + +/// The ๐Ÿ› ๏ธ emoji. +const hammerAndWrench = Emoji( + base: '๐Ÿ› ๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':hammer-and-wrench:', + ], + animated: false, +); + +/// The โ›๏ธ emoji. +const pick = Emoji( + base: 'โ›๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':pick:', + ], + animated: false, +); + +/// The โš™๏ธ emoji. +const gear = Emoji( + base: 'โš™๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':gear:', + ], + animated: false, +); + +/// The ๐Ÿ”— emoji. +const link = Emoji( + base: '๐Ÿ”—', + alternates: [], + emoticons: [], + shortcodes: [ + ':link:', + ], + animated: false, +); + +/// The โ›“๏ธ emoji. +const chains = Emoji( + base: 'โ›“๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':chains:', + ], + animated: false, +); + +/// The ๐Ÿ“Ž emoji. +const paperclip = Emoji( + base: '๐Ÿ“Ž', + alternates: [], + emoticons: [], + shortcodes: [ + ':paperclip:', + ], + animated: false, +); + +/// The ๐Ÿ–‡๏ธ emoji. +const linkedPaperclips = Emoji( + base: '๐Ÿ–‡๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':linked-paperclips:', + ], + animated: false, +); + +/// The ๐Ÿ“ emoji. +const straightRuler = Emoji( + base: '๐Ÿ“', + alternates: [], + emoticons: [], + shortcodes: [ + ':straight-ruler:', + ], + animated: false, +); + +/// The ๐Ÿ“ emoji. +const triangularRuler = Emoji( + base: '๐Ÿ“', + alternates: [], + emoticons: [], + shortcodes: [ + ':triangular-ruler:', + ], + animated: false, +); + +/// The ๐Ÿ–Š๏ธ emoji. +const pen = Emoji( + base: '๐Ÿ–Š๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':pen:', + ], + animated: false, +); + +/// The ๐Ÿ–‹๏ธ emoji. +const fountainPen = Emoji( + base: '๐Ÿ–‹๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':fountain-pen:', + ], + animated: false, +); + +/// The โœ’๏ธ emoji. +const blackNib = Emoji( + base: 'โœ’๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':black-nib:', + ], + animated: false, +); + +/// The โœ๏ธ emoji. +const pencil = Emoji( + base: 'โœ๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':pencil:', + ], + animated: false, +); + +/// The ๐Ÿ“ emoji. +const memo = Emoji( + base: '๐Ÿ“', + alternates: [], + emoticons: [], + shortcodes: [ + ':memo:', + ], + animated: false, +); + +/// The ๐Ÿ“– emoji. +const openBook = Emoji( + base: '๐Ÿ“–', + alternates: [], + emoticons: [], + shortcodes: [ + ':open-book:', + ], + animated: false, +); + +/// The ๐Ÿ“š emoji. +const books = Emoji( + base: '๐Ÿ“š', + alternates: [], + emoticons: [], + shortcodes: [ + ':books:', + ], + animated: false, +); + +/// The ๐Ÿ“’ emoji. +const ledger = Emoji( + base: '๐Ÿ“’', + alternates: [], + emoticons: [], + shortcodes: [ + ':ledger:', + ], + animated: false, +); + +/// The ๐Ÿ“” emoji. +const notebookWithDecorativeCover = Emoji( + base: '๐Ÿ“”', + alternates: [], + emoticons: [], + shortcodes: [ + ':notebook-with-decorative-cover:', + ], + animated: false, +); + +/// The ๐Ÿ“• emoji. +const closedBook = Emoji( + base: '๐Ÿ“•', + alternates: [], + emoticons: [], + shortcodes: [ + ':closed-book:', + ], + animated: false, +); + +/// The ๐Ÿ““ emoji. +const notebook = Emoji( + base: '๐Ÿ““', + alternates: [], + emoticons: [], + shortcodes: [ + ':notebook:', + ], + animated: false, +); + +/// The ๐Ÿ“— emoji. +const greenBook = Emoji( + base: '๐Ÿ“—', + alternates: [], + emoticons: [], + shortcodes: [ + ':green-book:', + ], + animated: false, +); + +/// The ๐Ÿ“˜ emoji. +const blueBook = Emoji( + base: '๐Ÿ“˜', + alternates: [], + emoticons: [], + shortcodes: [ + ':blue-book:', + ], + animated: false, +); + +/// The ๐Ÿ“™ emoji. +const orangeBook = Emoji( + base: '๐Ÿ“™', + alternates: [], + emoticons: [], + shortcodes: [ + ':orange-book:', + ], + animated: false, +); + +/// The ๐Ÿ”– emoji. +const bookmark = Emoji( + base: '๐Ÿ”–', + alternates: [], + emoticons: [], + shortcodes: [ + ':bookmark:', + ], + animated: false, +); + +/// The ๐Ÿ—’๏ธ emoji. +const spiralNotepad = Emoji( + base: '๐Ÿ—’๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':spiral-notepad:', + ], + animated: false, +); + +/// The ๐Ÿ“„ emoji. +const pageFacingUp = Emoji( + base: '๐Ÿ“„', + alternates: [], + emoticons: [], + shortcodes: [ + ':page-facing-up:', + ], + animated: false, +); + +/// The ๐Ÿ“ƒ emoji. +const pageWithCurl = Emoji( + base: '๐Ÿ“ƒ', + alternates: [], + emoticons: [], + shortcodes: [ + ':page-with-curl:', + ], + animated: false, +); + +/// The ๐Ÿ“‹ emoji. +const clipboard = Emoji( + base: '๐Ÿ“‹', + alternates: [], + emoticons: [], + shortcodes: [ + ':clipboard:', + ], + animated: false, +); + +/// The ๐Ÿ“‘ emoji. +const bookmarkTabs = Emoji( + base: '๐Ÿ“‘', + alternates: [], + emoticons: [], + shortcodes: [ + ':bookmark-tabs:', + ], + animated: false, +); + +/// The ๐Ÿ“‚ emoji. +const openFileFolder = Emoji( + base: '๐Ÿ“‚', + alternates: [], + emoticons: [], + shortcodes: [ + ':open-file-folder:', + ], + animated: false, +); + +/// The ๐Ÿ“ emoji. +const fileFolder = Emoji( + base: '๐Ÿ“', + alternates: [], + emoticons: [], + shortcodes: [ + ':file-folder:', + ], + animated: false, +); + +/// The ๐Ÿ—‚๏ธ emoji. +const cardIndexDividers = Emoji( + base: '๐Ÿ—‚๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':card-index-dividers:', + ], + animated: false, +); + +/// The ๐Ÿ—ƒ๏ธ emoji. +const cardFileBox = Emoji( + base: '๐Ÿ—ƒ๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':card-file-box:', + ], + animated: false, +); + +/// The ๐Ÿ—„๏ธ emoji. +const fileCabinet = Emoji( + base: '๐Ÿ—„๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':file-cabinet:', + ], + animated: false, +); + +/// The ๐Ÿ“Š emoji. +const barChart = Emoji( + base: '๐Ÿ“Š', + alternates: [], + emoticons: [], + shortcodes: [ + ':bar-chart:', + ], + animated: false, +); + +/// The ๐Ÿ“ˆ emoji. +const chartIncreasing = Emoji( + base: '๐Ÿ“ˆ', + alternates: [], + emoticons: [], + shortcodes: [ + ':chart-increasing:', + ], + animated: false, +); + +/// The ๐Ÿ“‰ emoji. +const chartDecreasing = Emoji( + base: '๐Ÿ“‰', + alternates: [], + emoticons: [], + shortcodes: [ + ':chart-decreasing:', + ], + animated: false, +); + +/// The ๐Ÿ“‡ emoji. +const cardIndex = Emoji( + base: '๐Ÿ“‡', + alternates: [], + emoticons: [], + shortcodes: [ + ':card-index:', + ], + animated: false, +); + +/// The ๐Ÿชช emoji. +const id = Emoji( + base: '๐Ÿชช', + alternates: [], + emoticons: [], + shortcodes: [ + ':id:', + ], + animated: false, +); + +/// The ๐Ÿ“Œ emoji. +const pushpin = Emoji( + base: '๐Ÿ“Œ', + alternates: [], + emoticons: [], + shortcodes: [ + ':pushpin:', + ], + animated: false, +); + +/// The ๐Ÿ“ emoji. +const roundPushpin = Emoji( + base: '๐Ÿ“', + alternates: [], + emoticons: [], + shortcodes: [ + ':round-pushpin:', + ], + animated: false, +); + +/// The โœ‚๏ธ emoji. +const scissors = Emoji( + base: 'โœ‚๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':scissors:', + ], + animated: false, +); + +/// The ๐Ÿ—‘๏ธ emoji. +const wastebasket = Emoji( + base: '๐Ÿ—‘๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':wastebasket:', + ], + animated: false, +); + +/// The ๐Ÿ“ฐ emoji. +const newspaper = Emoji( + base: '๐Ÿ“ฐ', + alternates: [], + emoticons: [], + shortcodes: [ + ':newspaper:', + ], + animated: false, +); + +/// The ๐Ÿ—ž๏ธ emoji. +const rolledUpNewspaper = Emoji( + base: '๐Ÿ—ž๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':rolled-up-newspaper:', + ], + animated: false, +); + +/// The ๐Ÿท๏ธ emoji. +const label = Emoji( + base: '๐Ÿท๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':label:', + ], + animated: false, +); + +/// The ๐Ÿ“ฆ emoji. +const package = Emoji( + base: '๐Ÿ“ฆ', + alternates: [], + emoticons: [], + shortcodes: [ + ':package:', + ], + animated: false, +); + +/// The ๐Ÿ“ซ emoji. +const closedMailboxWithRaised = Emoji( + base: '๐Ÿ“ซ', + alternates: [], + emoticons: [], + shortcodes: [ + ':closed-mailbox-with-raised:', + ], + animated: false, +); + +/// The ๐Ÿ“ช emoji. +const closedMailboxWithLowered = Emoji( + base: '๐Ÿ“ช', + alternates: [], + emoticons: [], + shortcodes: [ + ':closed-mailbox-with-lowered:', + ], + animated: false, +); + +/// The ๐Ÿ“ฌ emoji. +const openMailboxWithRaised = Emoji( + base: '๐Ÿ“ฌ', + alternates: [], + emoticons: [], + shortcodes: [ + ':open-mailbox-with-raised:', + ], + animated: false, +); + +/// The ๐Ÿ“ญ emoji. +const openMailboxWithLowered = Emoji( + base: '๐Ÿ“ญ', + alternates: [], + emoticons: [], + shortcodes: [ + ':open-mailbox-with-lowered:', + ], + animated: false, +); + +/// The ๐Ÿ“ฎ emoji. +const postbox = Emoji( + base: '๐Ÿ“ฎ', + alternates: [], + emoticons: [], + shortcodes: [ + ':postbox:', + ], + animated: false, +); + +/// The โœ‰๏ธ emoji. +const envelope = Emoji( + base: 'โœ‰๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':envelope:', + ], + animated: false, +); + +/// The ๐Ÿ“ง emoji. +const eMail = Emoji( + base: '๐Ÿ“ง', + alternates: [], + emoticons: [], + shortcodes: [ + ':e-mail:', + ], + animated: false, +); + +/// The ๐Ÿ“ฉ emoji. +const envelopeWithArrow = Emoji( + base: '๐Ÿ“ฉ', + alternates: [], + emoticons: [], + shortcodes: [ + ':envelope-with-arrow:', + ], + animated: false, +); + +/// The ๐Ÿ“จ emoji. +const incomingEnvelope = Emoji( + base: '๐Ÿ“จ', + alternates: [], + emoticons: [], + shortcodes: [ + ':incoming-envelope:', + ], + animated: false, +); + +/// The ๐Ÿ“ค emoji. +const outboxTray = Emoji( + base: '๐Ÿ“ค', + alternates: [], + emoticons: [], + shortcodes: [ + ':outbox-tray:', + ], + animated: false, +); + +/// The ๐Ÿ“ฅ emoji. +const inboxTray = Emoji( + base: '๐Ÿ“ฅ', + alternates: [], + emoticons: [], + shortcodes: [ + ':inbox-tray:', + ], + animated: false, +); + +/// The ๐Ÿ—ณ๏ธ emoji. +const ballotBox = Emoji( + base: '๐Ÿ—ณ๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':ballot-box:', + ], + animated: false, +); + +/// The ๐Ÿ•› emoji. +const twelveOClock = Emoji( + base: '๐Ÿ•›', + alternates: [], + emoticons: [], + shortcodes: [ + ':twelve-o-clock:', + ], + animated: false, +); + +/// The ๐Ÿ•ง emoji. +const twelveThirty = Emoji( + base: '๐Ÿ•ง', + alternates: [], + emoticons: [], + shortcodes: [ + ':twelve-thirty:', + ], + animated: false, +); + +/// The ๐Ÿ• emoji. +const oneOClock = Emoji( + base: '๐Ÿ•', + alternates: [], + emoticons: [], + shortcodes: [ + ':one-o-clock:', + ], + animated: false, +); + +/// The ๐Ÿ•œ emoji. +const oneThirty = Emoji( + base: '๐Ÿ•œ', + alternates: [], + emoticons: [], + shortcodes: [ + ':one-thirty:', + ], + animated: false, +); + +/// The ๐Ÿ•‘ emoji. +const twoOClock = Emoji( + base: '๐Ÿ•‘', + alternates: [], + emoticons: [], + shortcodes: [ + ':two-o-clock:', + ], + animated: false, +); + +/// The ๐Ÿ• emoji. +const twoThirty = Emoji( + base: '๐Ÿ•', + alternates: [], + emoticons: [], + shortcodes: [ + ':two-thirty:', + ], + animated: false, +); + +/// The ๐Ÿ•’ emoji. +const threeOClock = Emoji( + base: '๐Ÿ•’', + alternates: [], + emoticons: [], + shortcodes: [ + ':three-o-clock:', + ], + animated: false, +); + +/// The ๐Ÿ•ž emoji. +const threeThirty = Emoji( + base: '๐Ÿ•ž', + alternates: [], + emoticons: [], + shortcodes: [ + ':three-thirty:', + ], + animated: false, +); + +/// The ๐Ÿ•“ emoji. +const fourOClock = Emoji( + base: '๐Ÿ•“', + alternates: [], + emoticons: [], + shortcodes: [ + ':four-o-clock:', + ], + animated: false, +); + +/// The ๐Ÿ•Ÿ emoji. +const fourThirty = Emoji( + base: '๐Ÿ•Ÿ', + alternates: [], + emoticons: [], + shortcodes: [ + ':four-thirty:', + ], + animated: false, +); + +/// The ๐Ÿ•” emoji. +const fiveOClock = Emoji( + base: '๐Ÿ•”', + alternates: [], + emoticons: [], + shortcodes: [ + ':five-o-clock:', + ], + animated: false, +); + +/// The ๐Ÿ•  emoji. +const fiveThirty = Emoji( + base: '๐Ÿ• ', + alternates: [], + emoticons: [], + shortcodes: [ + ':five-thirty:', + ], + animated: false, +); + +/// The ๐Ÿ•• emoji. +const sixOClock = Emoji( + base: '๐Ÿ••', + alternates: [], + emoticons: [], + shortcodes: [ + ':six-o-clock:', + ], + animated: false, +); + +/// The ๐Ÿ•ก emoji. +const sixThirty = Emoji( + base: '๐Ÿ•ก', + alternates: [], + emoticons: [], + shortcodes: [ + ':six-thirty:', + ], + animated: false, +); + +/// The ๐Ÿ•– emoji. +const sevenOClock = Emoji( + base: '๐Ÿ•–', + alternates: [], + emoticons: [], + shortcodes: [ + ':seven-o-clock:', + ], + animated: false, +); + +/// The ๐Ÿ•ข emoji. +const sevenThirty = Emoji( + base: '๐Ÿ•ข', + alternates: [], + emoticons: [], + shortcodes: [ + ':seven-thirty:', + ], + animated: false, +); + +/// The ๐Ÿ•— emoji. +const eightOClock = Emoji( + base: '๐Ÿ•—', + alternates: [], + emoticons: [], + shortcodes: [ + ':eight-o-clock:', + ], + animated: false, +); + +/// The ๐Ÿ•ฃ emoji. +const eightThirty = Emoji( + base: '๐Ÿ•ฃ', + alternates: [], + emoticons: [], + shortcodes: [ + ':eight-thirty:', + ], + animated: false, +); + +/// The ๐Ÿ•˜ emoji. +const nineOClock = Emoji( + base: '๐Ÿ•˜', + alternates: [], + emoticons: [], + shortcodes: [ + ':nine-o-clock:', + ], + animated: false, +); + +/// The ๐Ÿ•ค emoji. +const nineThirty = Emoji( + base: '๐Ÿ•ค', + alternates: [], + emoticons: [], + shortcodes: [ + ':nine-thirty:', + ], + animated: false, +); + +/// The ๐Ÿ•™ emoji. +const tenOClock = Emoji( + base: '๐Ÿ•™', + alternates: [], + emoticons: [], + shortcodes: [ + ':ten-o-clock:', + ], + animated: false, +); + +/// The ๐Ÿ•ฅ emoji. +const tenThirty = Emoji( + base: '๐Ÿ•ฅ', + alternates: [], + emoticons: [], + shortcodes: [ + ':ten-thirty:', + ], + animated: false, +); + +/// The ๐Ÿ•š emoji. +const elevenOClock = Emoji( + base: '๐Ÿ•š', + alternates: [], + emoticons: [], + shortcodes: [ + ':eleven-o-clock:', + ], + animated: false, +); + +/// The ๐Ÿ•ฆ emoji. +const elevenThirty = Emoji( + base: '๐Ÿ•ฆ', + alternates: [], + emoticons: [], + shortcodes: [ + ':eleven-thirty:', + ], + animated: false, +); + +/// The โฑ๏ธ emoji. +const stopwatch = Emoji( + base: 'โฑ๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':stopwatch:', + ], + animated: false, +); + +/// The โŒš emoji. +const watch = Emoji( + base: 'โŒš', + alternates: [], + emoticons: [], + shortcodes: [ + ':watch:', + ], + animated: false, +); + +/// The ๐Ÿ•ฐ๏ธ emoji. +const mantelpieceClock = Emoji( + base: '๐Ÿ•ฐ๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':mantelpiece-clock:', + ], + animated: false, +); + +/// The โŒ› emoji. +const hourglassDone = Emoji( + base: 'โŒ›', + alternates: [], + emoticons: [], + shortcodes: [ + ':hourglass-done:', + ], + animated: false, +); + +/// The โณ emoji. +const hourglassNotDone = Emoji( + base: 'โณ', + alternates: [], + emoticons: [], + shortcodes: [ + ':hourglass-not-done:', + ], + animated: false, +); + +/// The โฒ๏ธ emoji. +const timerClock = Emoji( + base: 'โฒ๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':timer-clock:', + ], + animated: false, +); + +/// The โฐ emoji. +const alarmClock = Emoji( + base: 'โฐ', + alternates: [], + emoticons: [], + shortcodes: [ + ':alarm-clock:', + ], + animated: true, +); + +/// The ๐Ÿ“… emoji. +const calendar = Emoji( + base: '๐Ÿ“…', + alternates: [], + emoticons: [], + shortcodes: [ + ':calendar:', + ], + animated: false, +); + +/// The ๐Ÿ“† emoji. +const tearOffCalendar = Emoji( + base: '๐Ÿ“†', + alternates: [], + emoticons: [], + shortcodes: [ + ':tear-off-calendar:', + ], + animated: false, +); + +/// The ๐Ÿ—“๏ธ emoji. +const spiralCalendar = Emoji( + base: '๐Ÿ—“๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':spiral-calendar:', + ], + animated: false, +); + +/// The ๐Ÿชง emoji. +const placard = Emoji( + base: '๐Ÿชง', + alternates: [], + emoticons: [], + shortcodes: [ + ':placard:', + ], + animated: false, +); + +/// The ๐Ÿ›Ž๏ธ emoji. +const bellhopBell = Emoji( + base: '๐Ÿ›Ž๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':bellhop-bell:', + ], + animated: true, +); + +/// The ๐Ÿ”” emoji. +const bell = Emoji( + base: '๐Ÿ””', + alternates: [], + emoticons: [], + shortcodes: [ + ':bell:', + ], + animated: true, +); + +/// The ๐Ÿ“ฏ emoji. +const postalHorn = Emoji( + base: '๐Ÿ“ฏ', + alternates: [], + emoticons: [], + shortcodes: [ + ':postal-horn:', + ], + animated: false, +); + +/// The ๐Ÿ“ฃ emoji. +const megaphone = Emoji( + base: '๐Ÿ“ฃ', + alternates: [], + emoticons: [], + shortcodes: [ + ':megaphone:', + ], + animated: false, +); + +/// The ๐Ÿ” emoji. +const magnifyingGlassTiltedLeft = Emoji( + base: '๐Ÿ”', + alternates: [], + emoticons: [], + shortcodes: [ + ':magnifying-glass-tilted-left:', + ], + animated: false, +); + +/// The ๐Ÿ”Ž emoji. +const magnifyingGlassTiltedRight = Emoji( + base: '๐Ÿ”Ž', + alternates: [], + emoticons: [], + shortcodes: [ + ':magnifying-glass-tilted-right:', + ], + animated: false, +); + +/// The ๐Ÿ”ฎ emoji. +const crystalBall = Emoji( + base: '๐Ÿ”ฎ', + alternates: [], + emoticons: [], + shortcodes: [ + ':crystal-ball:', + ], + animated: false, +); + +/// The ๐Ÿงฟ emoji. +const evilEye = Emoji( + base: '๐Ÿงฟ', + alternates: [], + emoticons: [], + shortcodes: [ + ':evil-eye:', + ':nazar-amulet:', + ], + animated: false, +); + +/// The ๐Ÿชฌ emoji. +const hamsa = Emoji( + base: '๐Ÿชฌ', + alternates: [], + emoticons: [], + shortcodes: [ + ':hamsa:', + ], + animated: false, +); + +/// The ๐Ÿ“ฟ emoji. +const prayerBeads = Emoji( + base: '๐Ÿ“ฟ', + alternates: [], + emoticons: [], + shortcodes: [ + ':prayer-beads:', + ], + animated: false, +); + +/// The ๐Ÿบ emoji. +const amphora = Emoji( + base: '๐Ÿบ', + alternates: [], + emoticons: [], + shortcodes: [ + ':amphora:', + ], + animated: false, +); + +/// The โšฑ๏ธ emoji. +const urn = Emoji( + base: 'โšฑ๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':urn:', + ], + animated: false, +); + +/// The โšฐ๏ธ emoji. +const coffin = Emoji( + base: 'โšฐ๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':coffin:', + ], + animated: false, +); + +/// The ๐Ÿชฆ emoji. +const headstone = Emoji( + base: '๐Ÿชฆ', + alternates: [], + emoticons: [], + shortcodes: [ + ':headstone:', + ], + animated: false, +); + +/// The ๐Ÿšฌ emoji. +const cigarette = Emoji( + base: '๐Ÿšฌ', + alternates: [], + emoticons: [], + shortcodes: [ + ':cigarette:', + ], + animated: false, +); + +/// The ๐Ÿ’ฃ emoji. +const bomb = Emoji( + base: '๐Ÿ’ฃ', + alternates: [], + emoticons: [], + shortcodes: [ + ':bomb:', + ], + animated: false, +); + +/// The ๐Ÿชค emoji. +const mouseTrap = Emoji( + base: '๐Ÿชค', + alternates: [], + emoticons: [], + shortcodes: [ + ':mouse-trap:', + ], + animated: false, +); + +/// The ๐Ÿ“œ emoji. +const scroll = Emoji( + base: '๐Ÿ“œ', + alternates: [], + emoticons: [], + shortcodes: [ + ':scroll:', + ], + animated: false, +); + +/// The โš”๏ธ emoji. +const crossedSwords = Emoji( + base: 'โš”๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':crossed-swords:', + ], + animated: false, +); + +/// The ๐Ÿ—ก๏ธ emoji. +const dagger = Emoji( + base: '๐Ÿ—ก๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':dagger:', + ], + animated: false, +); + +/// The ๐Ÿ›ก๏ธ emoji. +const shield = Emoji( + base: '๐Ÿ›ก๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':shield:', + ], + animated: false, +); + +/// The ๐Ÿ—๏ธ emoji. +const oldKey = Emoji( + base: '๐Ÿ—๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':old-key:', + ], + animated: false, +); + +/// The ๐Ÿ”‘ emoji. +const key = Emoji( + base: '๐Ÿ”‘', + alternates: [], + emoticons: [], + shortcodes: [ + ':key:', + ], + animated: false, +); + +/// The ๐Ÿ” emoji. +const lockWithKey = Emoji( + base: '๐Ÿ”', + alternates: [], + emoticons: [], + shortcodes: [ + ':lock-with-key:', + ], + animated: false, +); + +/// The ๐Ÿ” emoji. +const lockWithPen = Emoji( + base: '๐Ÿ”', + alternates: [], + emoticons: [], + shortcodes: [ + ':lock-with-pen:', + ], + animated: false, +); + +/// The ๐Ÿ”’ emoji. +const locked = Emoji( + base: '๐Ÿ”’', + alternates: [], + emoticons: [], + shortcodes: [ + ':locked:', + ], + animated: false, +); + +/// The ๐Ÿ”“ emoji. +const unlocked = Emoji( + base: '๐Ÿ”“', + alternates: [], + emoticons: [], + shortcodes: [ + ':unlocked:', + ], + animated: false, +); + +/// The ๐Ÿ”ด emoji. +const redCircle = Emoji( + base: '๐Ÿ”ด', + alternates: [], + emoticons: [], + shortcodes: [ + ':red-circle:', + ], + animated: false, +); + +/// The ๐ŸŸ  emoji. +const orangeCircle = Emoji( + base: '๐ŸŸ ', + alternates: [], + emoticons: [], + shortcodes: [ + ':orange-circle:', + ], + animated: false, +); + +/// The ๐ŸŸก emoji. +const yellowCircle = Emoji( + base: '๐ŸŸก', + alternates: [], + emoticons: [], + shortcodes: [ + ':yellow-circle:', + ], + animated: false, +); + +/// The ๐ŸŸข emoji. +const greenCircle = Emoji( + base: '๐ŸŸข', + alternates: [], + emoticons: [], + shortcodes: [ + ':green-circle:', + ], + animated: false, +); + +/// The ๐Ÿ”ต emoji. +const blueCircle = Emoji( + base: '๐Ÿ”ต', + alternates: [], + emoticons: [], + shortcodes: [ + ':blue-circle:', + ], + animated: false, +); + +/// The ๐ŸŸฃ emoji. +const purpleCircle = Emoji( + base: '๐ŸŸฃ', + alternates: [], + emoticons: [], + shortcodes: [ + ':purple-circle:', + ], + animated: false, +); + +/// The ๐ŸŸค emoji. +const brownCircle = Emoji( + base: '๐ŸŸค', + alternates: [], + emoticons: [], + shortcodes: [ + ':brown-circle:', + ], + animated: false, +); + +/// The โšซ emoji. +const blackCircle = Emoji( + base: 'โšซ', + alternates: [], + emoticons: [], + shortcodes: [ + ':black-circle:', + ], + animated: false, +); + +/// The โšช emoji. +const whiteCircle = Emoji( + base: 'โšช', + alternates: [], + emoticons: [], + shortcodes: [ + ':white-circle:', + ], + animated: false, +); + +/// The ๐ŸŸฅ emoji. +const redSquare = Emoji( + base: '๐ŸŸฅ', + alternates: [], + emoticons: [], + shortcodes: [ + ':red-square:', + ], + animated: false, +); + +/// The ๐ŸŸง emoji. +const orangeSquare = Emoji( + base: '๐ŸŸง', + alternates: [], + emoticons: [], + shortcodes: [ + ':orange-square:', + ], + animated: false, +); + +/// The ๐ŸŸจ emoji. +const yellowSquare = Emoji( + base: '๐ŸŸจ', + alternates: [], + emoticons: [], + shortcodes: [ + ':yellow-square:', + ], + animated: false, +); + +/// The ๐ŸŸฉ emoji. +const greenSquare = Emoji( + base: '๐ŸŸฉ', + alternates: [], + emoticons: [], + shortcodes: [ + ':green-square:', + ], + animated: false, +); + +/// The ๐ŸŸฆ emoji. +const blueSquare = Emoji( + base: '๐ŸŸฆ', + alternates: [], + emoticons: [], + shortcodes: [ + ':blue-square:', + ], + animated: false, +); + +/// The ๐ŸŸช emoji. +const purpleSquare = Emoji( + base: '๐ŸŸช', + alternates: [], + emoticons: [], + shortcodes: [ + ':purple-square:', + ], + animated: false, +); + +/// The ๐ŸŸซ emoji. +const brownSquare = Emoji( + base: '๐ŸŸซ', + alternates: [], + emoticons: [], + shortcodes: [ + ':brown-square:', + ], + animated: false, +); + +/// The โฌ› emoji. +const blackSquare = Emoji( + base: 'โฌ›', + alternates: [], + emoticons: [], + shortcodes: [ + ':black-square:', + ], + animated: false, +); + +/// The โฌœ emoji. +const whiteSquare = Emoji( + base: 'โฌœ', + alternates: [], + emoticons: [], + shortcodes: [ + ':white-square:', + ], + animated: false, +); + +/// The ๐Ÿฉถ emoji. +const grayHeart = Emoji( + base: '๐Ÿฉถ', + alternates: [], + emoticons: [], + shortcodes: [ + ':gray-heart:', + ], + animated: true, +); + +/// The โ™ฆ๏ธ emoji. +const diamond = Emoji( + base: 'โ™ฆ๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':diamond:', + ], + animated: false, +); + +/// The โ™ฃ๏ธ emoji. +const club = Emoji( + base: 'โ™ฃ๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':club:', + ], + animated: false, +); + +/// The โ™ ๏ธ emoji. +const spade = Emoji( + base: 'โ™ ๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':spade:', + ], + animated: false, +); + +/// The โ™ˆ emoji. +const aries = Emoji( + base: 'โ™ˆ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Aries:', + ], + animated: true, +); + +/// The โ™‰ emoji. +const taurus = Emoji( + base: 'โ™‰', + alternates: [], + emoticons: [], + shortcodes: [ + ':Taurus:', + ], + animated: true, +); + +/// The โ™Š emoji. +const gemini = Emoji( + base: 'โ™Š', + alternates: [], + emoticons: [], + shortcodes: [ + ':Gemini:', + ], + animated: true, +); + +/// The โ™‹ emoji. +const cancer = Emoji( + base: 'โ™‹', + alternates: [], + emoticons: [], + shortcodes: [ + ':Cancer:', + ], + animated: true, +); + +/// The โ™Œ emoji. +const leo = Emoji( + base: 'โ™Œ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Leo:', + ], + animated: true, +); + +/// The โ™ emoji. +const virgo = Emoji( + base: 'โ™', + alternates: [], + emoticons: [], + shortcodes: [ + ':Virgo:', + ], + animated: true, +); + +/// The โ™Ž emoji. +const libra = Emoji( + base: 'โ™Ž', + alternates: [], + emoticons: [], + shortcodes: [ + ':Libra:', + ], + animated: true, +); + +/// The โ™ emoji. +const scorpio = Emoji( + base: 'โ™', + alternates: [], + emoticons: [], + shortcodes: [ + ':Scorpio:', + ], + animated: true, +); + +/// The โ™ emoji. +const sagittarius = Emoji( + base: 'โ™', + alternates: [], + emoticons: [], + shortcodes: [ + ':Sagittarius:', + ], + animated: true, +); + +/// The โ™‘ emoji. +const capricorn = Emoji( + base: 'โ™‘', + alternates: [], + emoticons: [], + shortcodes: [ + ':Capricorn:', + ], + animated: true, +); + +/// The โ™’ emoji. +const aquarius = Emoji( + base: 'โ™’', + alternates: [], + emoticons: [], + shortcodes: [ + ':Aquarius:', + ], + animated: true, +); + +/// The โ™“ emoji. +const pisces = Emoji( + base: 'โ™“', + alternates: [], + emoticons: [], + shortcodes: [ + ':Pisces:', + ], + animated: true, +); + +/// The โ›Ž emoji. +const ophiuchus = Emoji( + base: 'โ›Ž', + alternates: [], + emoticons: [], + shortcodes: [ + ':Ophiuchus:', + ], + animated: true, +); + +/// The โ™€๏ธ emoji. +const femaleSign = Emoji( + base: 'โ™€๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':female-sign:', + ], + animated: false, +); + +/// The โ™‚๏ธ emoji. +const maleSign = Emoji( + base: 'โ™‚๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':male-sign:', + ], + animated: false, +); + +/// The โšง๏ธ emoji. +const transSign = Emoji( + base: 'โšง๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':trans-sign:', + ], + animated: false, +); + +/// The ๐Ÿ’ญ emoji. +const thoughtBubble = Emoji( + base: '๐Ÿ’ญ', + alternates: [], + emoticons: [], + shortcodes: [ + ':thought-bubble:', + ':thought-balloon:', + ], + animated: false, +); + +/// The ๐Ÿ—ฏ๏ธ emoji. +const angerBubble = Emoji( + base: '๐Ÿ—ฏ๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':anger-bubble:', + ], + animated: false, +); + +/// The ๐Ÿ’ฌ emoji. +const speechBubble = Emoji( + base: '๐Ÿ’ฌ', + alternates: [], + emoticons: [], + shortcodes: [ + ':speech-bubble:', + ], + animated: false, +); + +/// The ๐Ÿ—จ๏ธ emoji. +const speechBubbleLeftwards = Emoji( + base: '๐Ÿ—จ๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':speech-bubble-leftwards:', + ], + animated: false, +); + +/// The โ• emoji. +const exclamationMarkWhite = Emoji( + base: 'โ•', + alternates: [], + emoticons: [], + shortcodes: [ + ':exclamation-mark-white:', + ], + animated: false, +); + +/// The โ— emoji. +const exclamation = Emoji( + base: 'โ—', + alternates: [], + emoticons: [], + shortcodes: [ + ':exclamation:', + ':exclamation-mark:', + ], + animated: false, +); + +/// The โ” emoji. +const questionMarkWhite = Emoji( + base: 'โ”', + alternates: [], + emoticons: [], + shortcodes: [ + ':question-mark-white:', + ], + animated: false, +); + +/// The โ“ emoji. +const question = Emoji( + base: 'โ“', + alternates: [], + emoticons: [], + shortcodes: [ + ':question:', + ':question-mark:', + ':?:', + ], + animated: false, +); + +/// The โ‰๏ธ emoji. +const exclamationQuestionMark = Emoji( + base: 'โ‰๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':exclamation-question-mark:', + ':!?:', + ], + animated: false, +); + +/// The โ€ผ๏ธ emoji. +const exclamationDouble = Emoji( + base: 'โ€ผ๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':exclamation-double:', + ':!!:', + ], + animated: true, +); + +/// The โญ• emoji. +const largeCircle = Emoji( + base: 'โญ•', + alternates: [], + emoticons: [], + shortcodes: [ + ':large-circle:', + ], + animated: false, +); + +/// The โŒ emoji. +const x = Emoji( + base: 'โŒ', + alternates: [], + emoticons: [], + shortcodes: [ + ':x:', + ':cross-mark:', + ], + animated: true, +); + +/// The ๐Ÿšซ emoji. +const prohibited = Emoji( + base: '๐Ÿšซ', + alternates: [], + emoticons: [], + shortcodes: [ + ':prohibited:', + ], + animated: false, +); + +/// The ๐Ÿšณ emoji. +const noBicycles = Emoji( + base: '๐Ÿšณ', + alternates: [], + emoticons: [], + shortcodes: [ + ':no-bicycles:', + ], + animated: false, +); + +/// The ๐Ÿšญ emoji. +const noSmoking = Emoji( + base: '๐Ÿšญ', + alternates: [], + emoticons: [], + shortcodes: [ + ':no-smoking:', + ], + animated: false, +); + +/// The ๐Ÿšฏ emoji. +const noLittering = Emoji( + base: '๐Ÿšฏ', + alternates: [], + emoticons: [], + shortcodes: [ + ':no-littering:', + ], + animated: false, +); + +/// The ๐Ÿšฑ emoji. +const nonPotableWater = Emoji( + base: '๐Ÿšฑ', + alternates: [], + emoticons: [], + shortcodes: [ + ':non-potable-water:', + ], + animated: false, +); + +/// The ๐Ÿšท emoji. +const noPedestrians = Emoji( + base: '๐Ÿšท', + alternates: [], + emoticons: [], + shortcodes: [ + ':no-pedestrians:', + ], + animated: false, +); + +/// The ๐Ÿ“ต emoji. +const noMobilePhones = Emoji( + base: '๐Ÿ“ต', + alternates: [], + emoticons: [], + shortcodes: [ + ':no-mobile-phones:', + ], + animated: false, +); + +/// The ๐Ÿ”ž emoji. +const noUnderEighteen = Emoji( + base: '๐Ÿ”ž', + alternates: [], + emoticons: [], + shortcodes: [ + ':no-under-eighteen:', + ], + animated: false, +); + +/// The ๐Ÿ”• emoji. +const noSound = Emoji( + base: '๐Ÿ”•', + alternates: [], + emoticons: [], + shortcodes: [ + ':no-sound:', + ':no-bell:', + ], + animated: false, +); + +/// The ๐Ÿ”‡ emoji. +const mute = Emoji( + base: '๐Ÿ”‡', + alternates: [], + emoticons: [], + shortcodes: [ + ':mute:', + ], + animated: false, +); + +/// The ๐Ÿ…ฐ๏ธ emoji. +const aButton = Emoji( + base: '๐Ÿ…ฐ๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':a-button:', + ':blood-type-a:', + ], + animated: false, +); + +/// The ๐Ÿ†Ž emoji. +const abButton = Emoji( + base: '๐Ÿ†Ž', + alternates: [], + emoticons: [], + shortcodes: [ + ':ab-button:', + ':blood-type-ab:', + ], + animated: false, +); + +/// The ๐Ÿ…ฑ๏ธ emoji. +const bButton = Emoji( + base: '๐Ÿ…ฑ๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':b-button:', + ':blood-type-b:', + ], + animated: false, +); + +/// The ๐Ÿ…พ๏ธ emoji. +const oButton = Emoji( + base: '๐Ÿ…พ๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':o-button:', + ':blood-type-o:', + ], + animated: false, +); + +/// The ๐Ÿ†‘ emoji. +const clButton = Emoji( + base: '๐Ÿ†‘', + alternates: [], + emoticons: [], + shortcodes: [ + ':cl-button:', + ], + animated: false, +); + +/// The ๐Ÿ†˜ emoji. +const sos = Emoji( + base: '๐Ÿ†˜', + alternates: [], + emoticons: [], + shortcodes: [ + ':sos:', + ], + animated: false, +); + +/// The ๐Ÿ›‘ emoji. +const stop = Emoji( + base: '๐Ÿ›‘', + alternates: [], + emoticons: [], + shortcodes: [ + ':stop:', + ], + animated: false, +); + +/// The โ›” emoji. +const noEntry = Emoji( + base: 'โ›”', + alternates: [], + emoticons: [], + shortcodes: [ + ':no-entry:', + ], + animated: false, +); + +/// The ๐Ÿ“› emoji. +const nameBadge = Emoji( + base: '๐Ÿ“›', + alternates: [], + emoticons: [], + shortcodes: [ + ':name-badge:', + ], + animated: false, +); + +/// The โ™จ๏ธ emoji. +const hotSprings = Emoji( + base: 'โ™จ๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':hot-springs:', + ], + animated: false, +); + +/// The ๐Ÿ’ข emoji. +const anger = Emoji( + base: '๐Ÿ’ข', + alternates: [], + emoticons: [], + shortcodes: [ + ':anger:', + ], + animated: false, +); + +/// The ๐Ÿ”ป emoji. +const trianglePointedDown = Emoji( + base: '๐Ÿ”ป', + alternates: [], + emoticons: [], + shortcodes: [ + ':triangle-pointed-down:', + ], + animated: false, +); + +/// The ๐Ÿ”บ emoji. +const trianglePointedUp = Emoji( + base: '๐Ÿ”บ', + alternates: [], + emoticons: [], + shortcodes: [ + ':triangle-pointed-up:', + ], + animated: false, +); + +/// The ๐Ÿ‰ emoji. +const bargain = Emoji( + base: '๐Ÿ‰', + alternates: [], + emoticons: [], + shortcodes: [ + ':bargain:', + ], + animated: false, +); + +/// The ใŠ™๏ธ emoji. +const secret = Emoji( + base: 'ใŠ™๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':secret:', + ], + animated: false, +); + +/// The ใŠ—๏ธ emoji. +const congratulations = Emoji( + base: 'ใŠ—๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':congratulations:', + ], + animated: false, +); + +/// The ๐Ÿˆด emoji. +const passingGrade = Emoji( + base: '๐Ÿˆด', + alternates: [], + emoticons: [], + shortcodes: [ + ':passing-grade:', + ], + animated: false, +); + +/// The ๐Ÿˆต emoji. +const noVacancy = Emoji( + base: '๐Ÿˆต', + alternates: [], + emoticons: [], + shortcodes: [ + ':no-vacancy:', + ], + animated: false, +); + +/// The ๐Ÿˆน emoji. +const discount = Emoji( + base: '๐Ÿˆน', + alternates: [], + emoticons: [], + shortcodes: [ + ':discount:', + ], + animated: false, +); + +/// The ๐Ÿˆฒ emoji. +const prohibitedButton = Emoji( + base: '๐Ÿˆฒ', + alternates: [], + emoticons: [], + shortcodes: [ + ':prohibited-button:', + ], + animated: false, +); + +/// The ๐Ÿ‰‘ emoji. +const accept = Emoji( + base: '๐Ÿ‰‘', + alternates: [], + emoticons: [], + shortcodes: [ + ':accept:', + ], + animated: false, +); + +/// The ๐Ÿˆถ emoji. +const notFreeOfCharge = Emoji( + base: '๐Ÿˆถ', + alternates: [], + emoticons: [], + shortcodes: [ + ':not-free-of-charge:', + ], + animated: false, +); + +/// The ๐Ÿˆš emoji. +const freeOfCharge = Emoji( + base: '๐Ÿˆš', + alternates: [], + emoticons: [], + shortcodes: [ + ':free-of-charge:', + ], + animated: false, +); + +/// The ๐Ÿˆธ emoji. +const application = Emoji( + base: '๐Ÿˆธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':application:', + ], + animated: false, +); + +/// The ๐Ÿˆบ emoji. +const openForBusiness = Emoji( + base: '๐Ÿˆบ', + alternates: [], + emoticons: [], + shortcodes: [ + ':open-for-business:', + ], + animated: false, +); + +/// The ๐Ÿˆท๏ธ emoji. +const monthlyAmount = Emoji( + base: '๐Ÿˆท๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':monthly-amount:', + ], + animated: false, +); + +/// The โœด๏ธ emoji. +const eightPointedStar = Emoji( + base: 'โœด๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':eight-pointed-star:', + ], + animated: false, +); + +/// The ๐Ÿ”ถ emoji. +const diamondOrangeLarge = Emoji( + base: '๐Ÿ”ถ', + alternates: [], + emoticons: [], + shortcodes: [ + ':diamond-orange-large:', + ], + animated: false, +); + +/// The ๐Ÿ”ธ emoji. +const diamondOrangeSmall = Emoji( + base: '๐Ÿ”ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':diamond-orange-small:', + ], + animated: false, +); + +/// The ๐Ÿ”† emoji. +const bright = Emoji( + base: '๐Ÿ”†', + alternates: [], + emoticons: [], + shortcodes: [ + ':bright:', + ':brightness:', + ], + animated: false, +); + +/// The ๐Ÿ”… emoji. +const dim = Emoji( + base: '๐Ÿ”…', + alternates: [], + emoticons: [], + shortcodes: [ + ':dim:', + ':dimness:', + ], + animated: false, +); + +/// The ๐Ÿ†š emoji. +const vs = Emoji( + base: '๐Ÿ†š', + alternates: [], + emoticons: [], + shortcodes: [ + ':vs:', + ], + animated: false, +); + +/// The ๐ŸŽฆ emoji. +const cinema = Emoji( + base: '๐ŸŽฆ', + alternates: [], + emoticons: [], + shortcodes: [ + ':cinema:', + ], + animated: false, +); + +/// The ๐Ÿ“ถ emoji. +const signalStrength = Emoji( + base: '๐Ÿ“ถ', + alternates: [], + emoticons: [], + shortcodes: [ + ':signal-strength:', + ], + animated: false, +); + +/// The ๐Ÿ” emoji. +const repeat = Emoji( + base: '๐Ÿ”', + alternates: [], + emoticons: [], + shortcodes: [ + ':repeat:', + ], + animated: false, +); + +/// The ๐Ÿ”‚ emoji. +const repeatOne = Emoji( + base: '๐Ÿ”‚', + alternates: [], + emoticons: [], + shortcodes: [ + ':repeat-one:', + ], + animated: false, +); + +/// The ๐Ÿ”€ emoji. +const shuffle = Emoji( + base: '๐Ÿ”€', + alternates: [], + emoticons: [], + shortcodes: [ + ':shuffle:', + ':twisted-rightwards-arrows:', + ], + animated: false, +); + +/// The โ–ถ๏ธ emoji. +const arrowForward = Emoji( + base: 'โ–ถ๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':arrow-forward:', + ':play-button:', + ], + animated: false, +); + +/// The โฉ emoji. +const fastForward = Emoji( + base: 'โฉ', + alternates: [], + emoticons: [], + shortcodes: [ + ':fast-forward:', + ], + animated: false, +); + +/// The โญ๏ธ emoji. +const nextTrack = Emoji( + base: 'โญ๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':next-track:', + ':play-next:', + ':next:', + ':right-pointing-double-triangle-with-vertical-bar:', + ], + animated: false, +); + +/// The โฏ๏ธ emoji. +const playOrPause = Emoji( + base: 'โฏ๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':play-or-pause:', + ':right-pointing-triangle-with-double-vertical-bar:', + ], + animated: false, +); + +/// The โ—€๏ธ emoji. +const reverse = Emoji( + base: 'โ—€๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':reverse:', + ':leftwards-triangle:', + ':arrow-backward:', + ], + animated: false, +); + +/// The โช emoji. +const rewind = Emoji( + base: 'โช', + alternates: [], + emoticons: [], + shortcodes: [ + ':rewind:', + ':leftwards-double-triangles:', + ], + animated: false, +); + +/// The โฎ๏ธ emoji. +const previous = Emoji( + base: 'โฎ๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':previous:', + ':left-pointing-double-triangle-with-vertical-bar:', + ], + animated: false, +); + +/// The ๐Ÿ”ผ emoji. +const upwards = Emoji( + base: '๐Ÿ”ผ', + alternates: [], + emoticons: [], + shortcodes: [ + ':upwards:', + ':arrow-up:', + ':triangle-up:', + ], + animated: false, +); + +/// The โซ emoji. +const fastUp = Emoji( + base: 'โซ', + alternates: [], + emoticons: [], + shortcodes: [ + ':fast-up:', + ':double-triangle-up:', + ], + animated: false, +); + +/// The ๐Ÿ”ฝ emoji. +const downwards = Emoji( + base: '๐Ÿ”ฝ', + alternates: [], + emoticons: [], + shortcodes: [ + ':downwards:', + ':arrow-down:', + ':triangle-down:', + ], + animated: false, +); + +/// The โฌ emoji. +const fastDown = Emoji( + base: 'โฌ', + alternates: [], + emoticons: [], + shortcodes: [ + ':fast-down:', + ':double-triangle-down:', + ], + animated: false, +); + +/// The โธ๏ธ emoji. +const pause = Emoji( + base: 'โธ๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':pause:', + ':double-vertical-bar:', + ], + animated: false, +); + +/// The โน๏ธ emoji. +const stopButton = Emoji( + base: 'โน๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':stop-button:', + ':square-button:', + ], + animated: false, +); + +/// The โบ๏ธ emoji. +const record = Emoji( + base: 'โบ๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':record:', + ], + animated: false, +); + +/// The โ๏ธ emoji. +const eject = Emoji( + base: 'โ๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':eject:', + ':triangle-up-with-horizontal-bar:', + ], + animated: false, +); + +/// The ๐Ÿ“ด emoji. +const phoneOff = Emoji( + base: '๐Ÿ“ด', + alternates: [], + emoticons: [], + shortcodes: [ + ':phone-off:', + ], + animated: false, +); + +/// The ๐Ÿ›œ emoji. +const wireless = Emoji( + base: '๐Ÿ›œ', + alternates: [], + emoticons: [], + shortcodes: [ + ':wireless:', + ], + animated: false, +); + +/// The ๐Ÿ“ณ emoji. +const vibration = Emoji( + base: '๐Ÿ“ณ', + alternates: [], + emoticons: [], + shortcodes: [ + ':vibration:', + ':vibration-mode:', + ], + animated: false, +); + +/// The ๐Ÿ“ฒ emoji. +const phoneWithArrow = Emoji( + base: '๐Ÿ“ฒ', + alternates: [], + emoticons: [], + shortcodes: [ + ':phone-with-arrow:', + ], + animated: false, +); + +/// The ๐Ÿ”ˆ emoji. +const lowVolume = Emoji( + base: '๐Ÿ”ˆ', + alternates: [], + emoticons: [], + shortcodes: [ + ':low-volume:', + ':speaker-low-volume:', + ], + animated: false, +); + +/// The ๐Ÿ”‰ emoji. +const mediumVolume = Emoji( + base: '๐Ÿ”‰', + alternates: [], + emoticons: [], + shortcodes: [ + ':medium-volume:', + ':speaker-medium-volume:', + ], + animated: false, +); + +/// The ๐Ÿ”Š emoji. +const highVolume = Emoji( + base: '๐Ÿ”Š', + alternates: [], + emoticons: [], + shortcodes: [ + ':high-volume:', + ':speaker-high-volume:', + ], + animated: false, +); + +/// The ๐ŸŽผ emoji. +const musicalScore = Emoji( + base: '๐ŸŽผ', + alternates: [], + emoticons: [], + shortcodes: [ + ':musical-score:', + ':treble-clef:', + ], + animated: false, +); + +/// The ๐ŸŽต emoji. +const musicalNote = Emoji( + base: '๐ŸŽต', + alternates: [], + emoticons: [], + shortcodes: [ + ':musical-note:', + ], + animated: false, +); + +/// The ๐ŸŽถ emoji. +const musicalNotes = Emoji( + base: '๐ŸŽถ', + alternates: [], + emoticons: [], + shortcodes: [ + ':musical-notes:', + ], + animated: true, +); + +/// The โ˜ข๏ธ emoji. +const radioactive = Emoji( + base: 'โ˜ข๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':radioactive:', + ], + animated: false, +); + +/// The โ˜ฃ๏ธ emoji. +const biohazard = Emoji( + base: 'โ˜ฃ๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':biohazard:', + ], + animated: false, +); + +/// The โš ๏ธ emoji. +const warning = Emoji( + base: 'โš ๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':warning:', + ], + animated: false, +); + +/// The ๐Ÿšธ emoji. +const childrenCrossing = Emoji( + base: '๐Ÿšธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':children-crossing:', + ], + animated: false, +); + +/// The โšœ๏ธ emoji. +const fleurDeLis = Emoji( + base: 'โšœ๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':fleur-de-lis:', + ], + animated: false, +); + +/// The ๐Ÿ”ฑ emoji. +const tridentEmblem = Emoji( + base: '๐Ÿ”ฑ', + alternates: [], + emoticons: [], + shortcodes: [ + ':trident-emblem:', + ], + animated: false, +); + +/// The ใ€ฝ๏ธ emoji. +const partAlternationMark = Emoji( + base: 'ใ€ฝ๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':part-alternation-mark:', + ], + animated: false, +); + +/// The ๐Ÿ”ฐ emoji. +const japaneseSymbolForBeginner = Emoji( + base: '๐Ÿ”ฐ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Japanese-symbol-for-beginner:', + ':beginner:', + ], + animated: false, +); + +/// The โœณ๏ธ emoji. +const eightSpokedAsterisk = Emoji( + base: 'โœณ๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':eight-spoked-asterisk:', + ], + animated: false, +); + +/// The โ‡๏ธ emoji. +const sparkle = Emoji( + base: 'โ‡๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':sparkle:', + ], + animated: false, +); + +/// The โ™ป๏ธ emoji. +const recyclingSymbol = Emoji( + base: 'โ™ป๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':recycling-symbol:', + ], + animated: false, +); + +/// The ๐Ÿ’ฑ emoji. +const currencyExchange = Emoji( + base: '๐Ÿ’ฑ', + alternates: [], + emoticons: [], + shortcodes: [ + ':currency-exchange:', + ], + animated: false, +); + +/// The ๐Ÿ’ฒ emoji. +const dollarSign = Emoji( + base: '๐Ÿ’ฒ', + alternates: [], + emoticons: [], + shortcodes: [ + ':dollar-sign:', + ], + animated: false, +); + +/// The ๐Ÿ’น emoji. +const chartIncreasingWithYen = Emoji( + base: '๐Ÿ’น', + alternates: [], + emoticons: [], + shortcodes: [ + ':chart-increasing-with-yen:', + ], + animated: false, +); + +/// The ๐Ÿˆฏ emoji. +const reserved = Emoji( + base: '๐Ÿˆฏ', + alternates: [], + emoticons: [], + shortcodes: [ + ':reserved:', + ], + animated: false, +); + +/// The โŽ emoji. +const xMark = Emoji( + base: 'โŽ', + alternates: [], + emoticons: [], + shortcodes: [ + ':x-mark:', + ':cross mark button:', + ':no-mark:', + ], + animated: false, +); + +/// The โœ… emoji. +const checkMark = Emoji( + base: 'โœ…', + alternates: [], + emoticons: [], + shortcodes: [ + ':check-mark:', + ':check-mark-green:', + ], + animated: true, +); + +/// The โœ”๏ธ emoji. +const checkMarkBlack = Emoji( + base: 'โœ”๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':check-mark-black:', + ], + animated: false, +); + +/// The โ˜‘๏ธ emoji. +const checkMarkButton = Emoji( + base: 'โ˜‘๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':check-mark-button:', + ':vote:', + ], + animated: false, +); + +/// The โฌ†๏ธ emoji. +const upArrow = Emoji( + base: 'โฌ†๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':up-arrow:', + ], + animated: false, +); + +/// The โ†—๏ธ emoji. +const upRightArrow = Emoji( + base: 'โ†—๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':up-right-arrow:', + ], + animated: false, +); + +/// The โžก๏ธ emoji. +const rightArrow = Emoji( + base: 'โžก๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':right-arrow:', + ], + animated: false, +); + +/// The โ†˜๏ธ emoji. +const downRightArrow = Emoji( + base: 'โ†˜๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':down-right-arrow:', + ], + animated: false, +); + +/// The โฌ‡๏ธ emoji. +const downArrow = Emoji( + base: 'โฌ‡๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':down-arrow:', + ], + animated: false, +); + +/// The โ†™๏ธ emoji. +const downLeftArrow = Emoji( + base: 'โ†™๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':down-left-arrow:', + ], + animated: false, +); + +/// The โฌ…๏ธ emoji. +const leftArrow = Emoji( + base: 'โฌ…๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':left-arrow:', + ], + animated: false, +); + +/// The โ†–๏ธ emoji. +const upLeftArrow = Emoji( + base: 'โ†–๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':up-left-arrow:', + ], + animated: false, +); + +/// The โ†•๏ธ emoji. +const upDownArrow = Emoji( + base: 'โ†•๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':up-down-arrow:', + ], + animated: false, +); + +/// The โ†”๏ธ emoji. +const leftRightArrow = Emoji( + base: 'โ†”๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':left-right-arrow:', + ], + animated: false, +); + +/// The โ†ฉ๏ธ emoji. +const rightArrowCurvingLeft = Emoji( + base: 'โ†ฉ๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':right-arrow-curving-left:', + ], + animated: false, +); + +/// The โ†ช๏ธ emoji. +const leftArrowCurvingRight = Emoji( + base: 'โ†ช๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':left-arrow-curving-right:', + ], + animated: false, +); + +/// The โคด๏ธ emoji. +const rightArrowCurvingUp = Emoji( + base: 'โคด๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':right-arrow-curving-up:', + ], + animated: false, +); + +/// The โคต๏ธ emoji. +const rightArrowCurvingDown = Emoji( + base: 'โคต๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':right-arrow-curving-down:', + ], + animated: false, +); + +/// The ๐Ÿ”ƒ emoji. +const clockwiseArrows = Emoji( + base: '๐Ÿ”ƒ', + alternates: [], + emoticons: [], + shortcodes: [ + ':clockwise-arrows:', + ], + animated: false, +); + +/// The ๐Ÿ”„ emoji. +const counterclockwiseArrows = Emoji( + base: '๐Ÿ”„', + alternates: [], + emoticons: [], + shortcodes: [ + ':counterclockwise-arrows:', + ], + animated: false, +); + +/// The ๐Ÿ”™ emoji. +const back = Emoji( + base: '๐Ÿ”™', + alternates: [], + emoticons: [], + shortcodes: [ + ':back:', + ':arrow-back:', + ], + animated: false, +); + +/// The ๐Ÿ”› emoji. +const on = Emoji( + base: '๐Ÿ”›', + alternates: [], + emoticons: [], + shortcodes: [ + ':on:', + ':arrow-on:', + ], + animated: false, +); + +/// The ๐Ÿ” emoji. +const top = Emoji( + base: '๐Ÿ”', + alternates: [], + emoticons: [], + shortcodes: [ + ':top:', + ':arrow-top:', + ], + animated: false, +); + +/// The ๐Ÿ”š emoji. +const end = Emoji( + base: '๐Ÿ”š', + alternates: [], + emoticons: [], + shortcodes: [ + ':end:', + ':arrow-end:', + ], + animated: false, +); + +/// The ๐Ÿ”œ emoji. +const soon = Emoji( + base: '๐Ÿ”œ', + alternates: [], + emoticons: [], + shortcodes: [ + ':soon:', + ':arrow-soon:', + ], + animated: false, +); + +/// The ๐Ÿ†• emoji. +const $new = Emoji( + base: '๐Ÿ†•', + alternates: [], + emoticons: [], + shortcodes: [ + ':new:', + ], + animated: false, +); + +/// The ๐Ÿ†“ emoji. +const free = Emoji( + base: '๐Ÿ†“', + alternates: [], + emoticons: [], + shortcodes: [ + ':free:', + ], + animated: false, +); + +/// The ๐Ÿ†™ emoji. +const up = Emoji( + base: '๐Ÿ†™', + alternates: [], + emoticons: [], + shortcodes: [ + ':up!:', + ], + animated: false, +); + +/// The ๐Ÿ†— emoji. +const okButton = Emoji( + base: '๐Ÿ†—', + alternates: [], + emoticons: [], + shortcodes: [ + ':ok-button:', + ], + animated: false, +); + +/// The ๐Ÿ†’ emoji. +const cool = Emoji( + base: '๐Ÿ†’', + alternates: [], + emoticons: [], + shortcodes: [ + ':cool:', + ], + animated: true, +); + +/// The ๐Ÿ†– emoji. +const ng = Emoji( + base: '๐Ÿ†–', + alternates: [], + emoticons: [], + shortcodes: [ + ':ng:', + ], + animated: false, +); + +/// The โ„น๏ธ emoji. +const information = Emoji( + base: 'โ„น๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':information:', + ], + animated: false, +); + +/// The ๐Ÿ…ฟ๏ธ emoji. +const parking = Emoji( + base: '๐Ÿ…ฟ๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Parking:', + ], + animated: false, +); + +/// The ๐Ÿˆ emoji. +const here = Emoji( + base: '๐Ÿˆ', + alternates: [], + emoticons: [], + shortcodes: [ + ':here:', + ], + animated: false, +); + +/// The ๐Ÿˆ‚๏ธ emoji. +const serviceCharge = Emoji( + base: '๐Ÿˆ‚๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':service-charge:', + ], + animated: false, +); + +/// The ๐Ÿˆณ emoji. +const vacancy = Emoji( + base: '๐Ÿˆณ', + alternates: [], + emoticons: [], + shortcodes: [ + ':vacancy:', + ], + animated: false, +); + +/// The ๐Ÿ”ฃ emoji. +const symbols = Emoji( + base: '๐Ÿ”ฃ', + alternates: [], + emoticons: [], + shortcodes: [ + ':symbols:', + ], + animated: false, +); + +/// The ๐Ÿ”ค emoji. +const letters = Emoji( + base: '๐Ÿ”ค', + alternates: [], + emoticons: [], + shortcodes: [ + ':letters:', + ':abc:', + ], + animated: false, +); + +/// The ๐Ÿ”  emoji. +const uppercaseLetters = Emoji( + base: '๐Ÿ” ', + alternates: [], + emoticons: [], + shortcodes: [ + ':uppercase-letters:', + ], + animated: false, +); + +/// The ๐Ÿ”ก emoji. +const lowercaseLetters = Emoji( + base: '๐Ÿ”ก', + alternates: [], + emoticons: [], + shortcodes: [ + ':lowercase-letters:', + ], + animated: false, +); + +/// The ๐Ÿ”ข emoji. +const numbers = Emoji( + base: '๐Ÿ”ข', + alternates: [], + emoticons: [], + shortcodes: [ + ':numbers:', + ], + animated: false, +); + +/// The #๏ธโƒฃ emoji. +const numberSign = Emoji( + base: '#๏ธโƒฃ', + alternates: [], + emoticons: [], + shortcodes: [ + ':#:', + ':number-sign:', + ], + animated: false, +); + +/// The *๏ธโƒฃ emoji. +const asterisk = Emoji( + base: '*๏ธโƒฃ', + alternates: [], + emoticons: [], + shortcodes: [ + ':asterisk:', + ':keycap-asterisk:', + ], + animated: false, +); + +/// The 0๏ธโƒฃ emoji. +const zero = Emoji( + base: '0๏ธโƒฃ', + alternates: [], + emoticons: [], + shortcodes: [ + ':zero:', + ':keycap-zero:', + ], + animated: false, +); + +/// The 1๏ธโƒฃ emoji. +const one = Emoji( + base: '1๏ธโƒฃ', + alternates: [], + emoticons: [], + shortcodes: [ + ':one:', + ':keycap-one:', + ], + animated: false, +); + +/// The 2๏ธโƒฃ emoji. +const two = Emoji( + base: '2๏ธโƒฃ', + alternates: [], + emoticons: [], + shortcodes: [ + ':two:', + ':keycap-two:', + ], + animated: false, +); + +/// The 3๏ธโƒฃ emoji. +const three = Emoji( + base: '3๏ธโƒฃ', + alternates: [], + emoticons: [], + shortcodes: [ + ':three:', + ':keycap-three:', + ], + animated: false, +); + +/// The 4๏ธโƒฃ emoji. +const four = Emoji( + base: '4๏ธโƒฃ', + alternates: [], + emoticons: [], + shortcodes: [ + ':four:', + ':keycap-four:', + ], + animated: false, +); + +/// The 5๏ธโƒฃ emoji. +const five = Emoji( + base: '5๏ธโƒฃ', + alternates: [], + emoticons: [], + shortcodes: [ + ':five:', + ':keycap-five:', + ], + animated: false, +); + +/// The 6๏ธโƒฃ emoji. +const six = Emoji( + base: '6๏ธโƒฃ', + alternates: [], + emoticons: [], + shortcodes: [ + ':six:', + ':keycap-six:', + ], + animated: false, +); + +/// The 7๏ธโƒฃ emoji. +const seven = Emoji( + base: '7๏ธโƒฃ', + alternates: [], + emoticons: [], + shortcodes: [ + ':seven:', + ':keycap-seven:', + ], + animated: false, +); + +/// The 8๏ธโƒฃ emoji. +const eight = Emoji( + base: '8๏ธโƒฃ', + alternates: [], + emoticons: [], + shortcodes: [ + ':eight:', + ':keycap-eight:', + ], + animated: false, +); + +/// The 9๏ธโƒฃ emoji. +const nine = Emoji( + base: '9๏ธโƒฃ', + alternates: [], + emoticons: [], + shortcodes: [ + ':nine:', + ':keycap-nine:', + ], + animated: false, +); + +/// The ๐Ÿ”Ÿ emoji. +const ten = Emoji( + base: '๐Ÿ”Ÿ', + alternates: [], + emoticons: [], + shortcodes: [ + ':ten:', + ':keycap-ten:', + ], + animated: false, +); + +/// The ๐Ÿ’  emoji. +const diamondJewel = Emoji( + base: '๐Ÿ’ ', + alternates: [], + emoticons: [], + shortcodes: [ + ':diamond-jewel:', + ], + animated: false, +); + +/// The ๐Ÿ”ท emoji. +const blueDiamondLarge = Emoji( + base: '๐Ÿ”ท', + alternates: [], + emoticons: [], + shortcodes: [ + ':blue-diamond-large:', + ], + animated: false, +); + +/// The ๐Ÿ”น emoji. +const blueDiamondSmall = Emoji( + base: '๐Ÿ”น', + alternates: [], + emoticons: [], + shortcodes: [ + ':blue-diamond-small:', + ], + animated: false, +); + +/// The ๐ŸŒ emoji. +const globe = Emoji( + base: '๐ŸŒ', + alternates: [], + emoticons: [], + shortcodes: [ + ':globe:', + ], + animated: false, +); + +/// The ๐Ÿง emoji. +const atm = Emoji( + base: '๐Ÿง', + alternates: [], + emoticons: [], + shortcodes: [ + ':ATM:', + ], + animated: false, +); + +/// The โ“‚๏ธ emoji. +const metroSign = Emoji( + base: 'โ“‚๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':metro-sign:', + ':circled-m:', + ], + animated: false, +); + +/// The ๐Ÿšพ emoji. +const waterCloset = Emoji( + base: '๐Ÿšพ', + alternates: [], + emoticons: [], + shortcodes: [ + ':water-closet:', + ], + animated: false, +); + +/// The ๐Ÿšป emoji. +const restroom = Emoji( + base: '๐Ÿšป', + alternates: [], + emoticons: [], + shortcodes: [ + ':restroom:', + ], + animated: false, +); + +/// The ๐Ÿšน emoji. +const mensRoom = Emoji( + base: '๐Ÿšน', + alternates: [], + emoticons: [], + shortcodes: [ + ':mens-room:', + ], + animated: false, +); + +/// The ๐Ÿšบ emoji. +const womensRoom = Emoji( + base: '๐Ÿšบ', + alternates: [], + emoticons: [], + shortcodes: [ + ':womens-room:', + ], + animated: false, +); + +/// The โ™ฟ emoji. +const wheelchairSymbol = Emoji( + base: 'โ™ฟ', + alternates: [], + emoticons: [], + shortcodes: [ + ':wheelchair-symbol:', + ], + animated: false, +); + +/// The ๐Ÿšผ emoji. +const babySymbol = Emoji( + base: '๐Ÿšผ', + alternates: [], + emoticons: [], + shortcodes: [ + ':baby-symbol:', + ], + animated: false, +); + +/// The ๐Ÿ›— emoji. +const elevator = Emoji( + base: '๐Ÿ›—', + alternates: [], + emoticons: [], + shortcodes: [ + ':elevator:', + ], + animated: false, +); + +/// The ๐Ÿšฎ emoji. +const litter = Emoji( + base: '๐Ÿšฎ', + alternates: [], + emoticons: [], + shortcodes: [ + ':litter:', + ], + animated: false, +); + +/// The ๐Ÿšฐ emoji. +const waterFaucet = Emoji( + base: '๐Ÿšฐ', + alternates: [], + emoticons: [], + shortcodes: [ + ':water-faucet:', + ], + animated: false, +); + +/// The ๐Ÿ›‚ emoji. +const passportControl = Emoji( + base: '๐Ÿ›‚', + alternates: [], + emoticons: [], + shortcodes: [ + ':passport-control:', + ], + animated: false, +); + +/// The ๐Ÿ›ƒ emoji. +const customs = Emoji( + base: '๐Ÿ›ƒ', + alternates: [], + emoticons: [], + shortcodes: [ + ':customs:', + ], + animated: false, +); + +/// The ๐Ÿ›„ emoji. +const baggageClaim = Emoji( + base: '๐Ÿ›„', + alternates: [], + emoticons: [], + shortcodes: [ + ':baggage-claim:', + ], + animated: false, +); + +/// The ๐Ÿ›… emoji. +const leftLuggage = Emoji( + base: '๐Ÿ›…', + alternates: [], + emoticons: [], + shortcodes: [ + ':left-luggage:', + ], + animated: false, +); + +/// The โš›๏ธ emoji. +const atomSymbol = Emoji( + base: 'โš›๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':atom-symbol:', + ], + animated: false, +); + +/// The ๐Ÿ› emoji. +const placeOfWorship = Emoji( + base: '๐Ÿ›', + alternates: [], + emoticons: [], + shortcodes: [ + ':place-of-worship:', + ], + animated: false, +); + +/// The ๐Ÿ•‰๏ธ emoji. +const om = Emoji( + base: '๐Ÿ•‰๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':om:', + ], + animated: false, +); + +/// The โ˜ธ๏ธ emoji. +const wheelOfDharma = Emoji( + base: 'โ˜ธ๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':wheel-of-dharma:', + ], + animated: false, +); + +/// The โ˜ฎ๏ธ emoji. +const peaceSymbol = Emoji( + base: 'โ˜ฎ๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':peace-symbol:', + ], + animated: false, +); + +/// The โ˜ฏ๏ธ emoji. +const yinYang = Emoji( + base: 'โ˜ฏ๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':yin-yang:', + ], + animated: false, +); + +/// The โ˜ช๏ธ emoji. +const starAndCrescent = Emoji( + base: 'โ˜ช๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':star-and-crescent:', + ], + animated: false, +); + +/// The ๐Ÿชฏ emoji. +const khanda = Emoji( + base: '๐Ÿชฏ', + alternates: [], + emoticons: [], + shortcodes: [ + ':khanda:', + ], + animated: false, +); + +/// The โœ๏ธ emoji. +const latinCross = Emoji( + base: 'โœ๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':latin-cross:', + ], + animated: false, +); + +/// The โ˜ฆ๏ธ emoji. +const orthodoxCross = Emoji( + base: 'โ˜ฆ๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':orthodox-cross:', + ], + animated: false, +); + +/// The โœก๏ธ emoji. +const starOfDavid = Emoji( + base: 'โœก๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':star-of-David:', + ], + animated: false, +); + +/// The ๐Ÿ”ฏ emoji. +const starOfDavidWithDot = Emoji( + base: '๐Ÿ”ฏ', + alternates: [], + emoticons: [], + shortcodes: [ + ':star-of-david-with-dot:', + ], + animated: false, +); + +/// The ๐Ÿ•Ž emoji. +const menorah = Emoji( + base: '๐Ÿ•Ž', + alternates: [], + emoticons: [], + shortcodes: [ + ':menorah:', + ], + animated: false, +); + +/// The โ™พ๏ธ emoji. +const infinity = Emoji( + base: 'โ™พ๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':infinity:', + ], + animated: false, +); + +/// The ๐Ÿ†” emoji. +const idButton = Emoji( + base: '๐Ÿ†”', + alternates: [], + emoticons: [], + shortcodes: [ + ':id-button:', + ], + animated: false, +); + +/// The โš•๏ธ emoji. +const medicalSymbol = Emoji( + base: 'โš•๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':medical-symbol:', + ], + animated: false, +); + +/// The โœ–๏ธ emoji. +const multiplicationX = Emoji( + base: 'โœ–๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':multiplication-x:', + ], + animated: false, +); + +/// The โž• emoji. +const plusSign = Emoji( + base: 'โž•', + alternates: [], + emoticons: [], + shortcodes: [ + ':plus-sign:', + ':+:', + ], + animated: true, +); + +/// The โž– emoji. +const minusSign = Emoji( + base: 'โž–', + alternates: [], + emoticons: [], + shortcodes: [ + ':minus-sign:', + ':-:', + ], + animated: false, +); + +/// The โž— emoji. +const divisionSign = Emoji( + base: 'โž—', + alternates: [], + emoticons: [], + shortcodes: [ + ':division-sign:', + ], + animated: false, +); + +/// The ๐ŸŸฐ emoji. +const equalsSign = Emoji( + base: '๐ŸŸฐ', + alternates: [], + emoticons: [], + shortcodes: [ + ':equals-sign:', + ':=:', + ], + animated: false, +); + +/// The โžฐ emoji. +const curlyLoop = Emoji( + base: 'โžฐ', + alternates: [], + emoticons: [], + shortcodes: [ + ':curly-loop:', + ], + animated: false, +); + +/// The โžฟ emoji. +const curlyLoopDouble = Emoji( + base: 'โžฟ', + alternates: [], + emoticons: [], + shortcodes: [ + ':curly-loop-double:', + ], + animated: false, +); + +/// The ใ€ฐ๏ธ emoji. +const wavyDash = Emoji( + base: 'ใ€ฐ๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':wavy-dash:', + ], + animated: false, +); + +/// The ยฉ๏ธ emoji. +const copyright = Emoji( + base: 'ยฉ๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':copyright:', + ], + animated: false, +); + +/// The ยฎ๏ธ emoji. +const registered = Emoji( + base: 'ยฎ๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':registered:', + ], + animated: false, +); + +/// The โ„ข๏ธ emoji. +const tradeMark = Emoji( + base: 'โ„ข๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':trade-mark:', + ], + animated: false, +); + +/// The ๐Ÿ”˜ emoji. +const radioButton = Emoji( + base: '๐Ÿ”˜', + alternates: [], + emoticons: [], + shortcodes: [ + ':radio-button:', + ], + animated: false, +); + +/// The ๐Ÿ”ณ emoji. +const whiteSquareButton = Emoji( + base: '๐Ÿ”ณ', + alternates: [], + emoticons: [], + shortcodes: [ + ':white-square-button:', + ], + animated: false, +); + +/// The โ—ผ๏ธ emoji. +const blackSquareMedium = Emoji( + base: 'โ—ผ๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':black-square-medium:', + ], + animated: false, +); + +/// The โ—พ emoji. +const blackSquareMediumSmall = Emoji( + base: 'โ—พ', + alternates: [], + emoticons: [], + shortcodes: [ + ':black-square-medium-small:', + ], + animated: false, +); + +/// The โ–ช๏ธ emoji. +const blackSquareSmall = Emoji( + base: 'โ–ช๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':black-square-small:', + ], + animated: false, +); + +/// The ๐Ÿ”ฒ emoji. +const buttonBlackSquare = Emoji( + base: '๐Ÿ”ฒ', + alternates: [], + emoticons: [], + shortcodes: [ + ':button-black-square:', + ], + animated: false, +); + +/// The โ—ป๏ธ emoji. +const whiteSquareMedium = Emoji( + base: 'โ—ป๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':white-square-medium:', + ], + animated: false, +); + +/// The โ—ฝ emoji. +const whiteSquareMediumSmall = Emoji( + base: 'โ—ฝ', + alternates: [], + emoticons: [], + shortcodes: [ + ':white-square-medium-small:', + ], + animated: false, +); + +/// The โ–ซ๏ธ emoji. +const whiteSquareSmall = Emoji( + base: 'โ–ซ๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':white-square-small:', + ], + animated: false, +); + +/// The ๐Ÿ‘๏ธโ€๐Ÿ—จ๏ธ emoji. +const eyeBubble = Emoji( + base: '๐Ÿ‘๏ธโ€๐Ÿ—จ๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':eye-bubble:', + ], + animated: false, +); + +/// The ๐Ÿ emoji. +const chequeredFlag = Emoji( + base: '๐Ÿ', + alternates: [], + emoticons: [], + shortcodes: [ + ':chequered-flag:', + ], + animated: true, +); + +/// The ๐Ÿšฉ emoji. +const triangularFlag = Emoji( + base: '๐Ÿšฉ', + alternates: [], + emoticons: [], + shortcodes: [ + ':triangular-flag:', + ], + animated: false, +); + +/// The ๐ŸŽŒ emoji. +const crossedFlags = Emoji( + base: '๐ŸŽŒ', + alternates: [], + emoticons: [], + shortcodes: [ + ':crossed-flags:', + ], + animated: false, +); + +/// The ๐Ÿด emoji. +const blackFlag = Emoji( + base: '๐Ÿด', + alternates: [], + emoticons: [], + shortcodes: [ + ':black-flag:', + ], + animated: false, +); + +/// The ๐Ÿณ๏ธ emoji. +const whiteFlag = Emoji( + base: '๐Ÿณ๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':white-flag:', + ], + animated: false, +); + +/// The ๐Ÿณ๏ธโ€๐ŸŒˆ emoji. +const rainbowFlag = Emoji( + base: '๐Ÿณ๏ธโ€๐ŸŒˆ', + alternates: [], + emoticons: [], + shortcodes: [ + ':rainbow-flag:', + ], + animated: false, +); + +/// The ๐Ÿณ๏ธโ€โšง๏ธ emoji. +const transFlag = Emoji( + base: '๐Ÿณ๏ธโ€โšง๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':trans-flag:', + ], + animated: false, +); + +/// The ๐Ÿดโ€โ˜ ๏ธ emoji. +const pirateFlag = Emoji( + base: '๐Ÿดโ€โ˜ ๏ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':pirate-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ฆ๐Ÿ‡จ emoji. +const ascensionIslandFlag = Emoji( + base: '๐Ÿ‡ฆ๐Ÿ‡จ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Ascension-Island-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ฆ๐Ÿ‡ฉ emoji. +const andorraFlag = Emoji( + base: '๐Ÿ‡ฆ๐Ÿ‡ฉ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Andorra-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ฆ๐Ÿ‡ช emoji. +const unitedArabEmiratesFlag = Emoji( + base: '๐Ÿ‡ฆ๐Ÿ‡ช', + alternates: [], + emoticons: [], + shortcodes: [ + ':United-Arab-Emirates-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ฆ๐Ÿ‡ซ emoji. +const afghanistanFlag = Emoji( + base: '๐Ÿ‡ฆ๐Ÿ‡ซ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Afghanistan-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ฆ๐Ÿ‡ฌ emoji. +const antiguaBarbudaFlag = Emoji( + base: '๐Ÿ‡ฆ๐Ÿ‡ฌ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Antigua-Barbuda-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ฆ๐Ÿ‡ฎ emoji. +const anguillaFlag = Emoji( + base: '๐Ÿ‡ฆ๐Ÿ‡ฎ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Anguilla-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ฆ๐Ÿ‡ฑ emoji. +const albaniaFlag = Emoji( + base: '๐Ÿ‡ฆ๐Ÿ‡ฑ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Albania-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ฆ๐Ÿ‡ฒ emoji. +const armeniaFlag = Emoji( + base: '๐Ÿ‡ฆ๐Ÿ‡ฒ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Armenia-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ฆ๐Ÿ‡ด emoji. +const angolaFlag = Emoji( + base: '๐Ÿ‡ฆ๐Ÿ‡ด', + alternates: [], + emoticons: [], + shortcodes: [ + ':Angola-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ฆ๐Ÿ‡ถ emoji. +const antarcticaFlag = Emoji( + base: '๐Ÿ‡ฆ๐Ÿ‡ถ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Antarctica-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ฆ๐Ÿ‡ท emoji. +const argentinaFlag = Emoji( + base: '๐Ÿ‡ฆ๐Ÿ‡ท', + alternates: [], + emoticons: [], + shortcodes: [ + ':Argentina-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ฆ๐Ÿ‡ธ emoji. +const americanSamoaFlag = Emoji( + base: '๐Ÿ‡ฆ๐Ÿ‡ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':American-Samoa-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ฆ๐Ÿ‡น emoji. +const austriaFlag = Emoji( + base: '๐Ÿ‡ฆ๐Ÿ‡น', + alternates: [], + emoticons: [], + shortcodes: [ + ':Austria-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ฆ๐Ÿ‡บ emoji. +const australiaFlag = Emoji( + base: '๐Ÿ‡ฆ๐Ÿ‡บ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Australia-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ฆ๐Ÿ‡ผ emoji. +const arubaFlag = Emoji( + base: '๐Ÿ‡ฆ๐Ÿ‡ผ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Aruba-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ฆ๐Ÿ‡ฝ emoji. +const alandIslandsFlag = Emoji( + base: '๐Ÿ‡ฆ๐Ÿ‡ฝ', + alternates: [], + emoticons: [], + shortcodes: [ + ':ร…land-Islands-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ฆ๐Ÿ‡ฟ emoji. +const azerbaijanFlag = Emoji( + base: '๐Ÿ‡ฆ๐Ÿ‡ฟ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Azerbaijan-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ง๐Ÿ‡ฆ emoji. +const bosniaHerzegovinaFlag = Emoji( + base: '๐Ÿ‡ง๐Ÿ‡ฆ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Bosnia-Herzegovina-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ง๐Ÿ‡ง emoji. +const barbadosFlag = Emoji( + base: '๐Ÿ‡ง๐Ÿ‡ง', + alternates: [], + emoticons: [], + shortcodes: [ + ':Barbados-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ง๐Ÿ‡ฉ emoji. +const bangladeshFlag = Emoji( + base: '๐Ÿ‡ง๐Ÿ‡ฉ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Bangladesh-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ง๐Ÿ‡ช emoji. +const belgiumFlag = Emoji( + base: '๐Ÿ‡ง๐Ÿ‡ช', + alternates: [], + emoticons: [], + shortcodes: [ + ':Belgium-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ง๐Ÿ‡ซ emoji. +const burkinaFasoFlag = Emoji( + base: '๐Ÿ‡ง๐Ÿ‡ซ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Burkina-Faso-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ง๐Ÿ‡ฌ emoji. +const bulgariaFlag = Emoji( + base: '๐Ÿ‡ง๐Ÿ‡ฌ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Bulgaria-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ง๐Ÿ‡ญ emoji. +const bahrainFlag = Emoji( + base: '๐Ÿ‡ง๐Ÿ‡ญ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Bahrain-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ง๐Ÿ‡ฎ emoji. +const burundiFlag = Emoji( + base: '๐Ÿ‡ง๐Ÿ‡ฎ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Burundi-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ง๐Ÿ‡ฏ emoji. +const beninFlag = Emoji( + base: '๐Ÿ‡ง๐Ÿ‡ฏ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Benin-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ง๐Ÿ‡ฑ emoji. +const stBarthelemyFlag = Emoji( + base: '๐Ÿ‡ง๐Ÿ‡ฑ', + alternates: [], + emoticons: [], + shortcodes: [ + ':St-Barthรฉlemy-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ง๐Ÿ‡ฒ emoji. +const bermudaFlag = Emoji( + base: '๐Ÿ‡ง๐Ÿ‡ฒ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Bermuda-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ง๐Ÿ‡ณ emoji. +const bruneiFlag = Emoji( + base: '๐Ÿ‡ง๐Ÿ‡ณ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Brunei-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ง๐Ÿ‡ด emoji. +const boliviaFlag = Emoji( + base: '๐Ÿ‡ง๐Ÿ‡ด', + alternates: [], + emoticons: [], + shortcodes: [ + ':Bolivia-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ง๐Ÿ‡ถ emoji. +const caribbeanNetherlandsFlag = Emoji( + base: '๐Ÿ‡ง๐Ÿ‡ถ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Caribbean-Netherlands-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ง๐Ÿ‡ท emoji. +const brazilFlag = Emoji( + base: '๐Ÿ‡ง๐Ÿ‡ท', + alternates: [], + emoticons: [], + shortcodes: [ + ':Brazil-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ง๐Ÿ‡ธ emoji. +const bahamasFlag = Emoji( + base: '๐Ÿ‡ง๐Ÿ‡ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Bahamas-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ง๐Ÿ‡น emoji. +const bhutanFlag = Emoji( + base: '๐Ÿ‡ง๐Ÿ‡น', + alternates: [], + emoticons: [], + shortcodes: [ + ':Bhutan-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ง๐Ÿ‡ป emoji. +const bouvetIslandFlag = Emoji( + base: '๐Ÿ‡ง๐Ÿ‡ป', + alternates: [], + emoticons: [], + shortcodes: [ + ':Bouvet-Island-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ง๐Ÿ‡ผ emoji. +const botswanaFlag = Emoji( + base: '๐Ÿ‡ง๐Ÿ‡ผ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Botswana-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ง๐Ÿ‡พ emoji. +const belarusFlag = Emoji( + base: '๐Ÿ‡ง๐Ÿ‡พ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Belarus-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ง๐Ÿ‡ฟ emoji. +const belizeFlag = Emoji( + base: '๐Ÿ‡ง๐Ÿ‡ฟ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Belize-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡จ๐Ÿ‡ฆ emoji. +const canadaFlag = Emoji( + base: '๐Ÿ‡จ๐Ÿ‡ฆ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Canada-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡จ๐Ÿ‡จ emoji. +const cocosIslandsFlag = Emoji( + base: '๐Ÿ‡จ๐Ÿ‡จ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Cocos-Islands-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡จ๐Ÿ‡ฉ emoji. +const congoKinshasaFlag = Emoji( + base: '๐Ÿ‡จ๐Ÿ‡ฉ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Congo-Kinshasa-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡จ๐Ÿ‡ซ emoji. +const centralAfricanRepublicFlag = Emoji( + base: '๐Ÿ‡จ๐Ÿ‡ซ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Central-African-Republic-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡จ๐Ÿ‡ฌ emoji. +const congoBrazzavilleFlag = Emoji( + base: '๐Ÿ‡จ๐Ÿ‡ฌ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Congo-Brazzaville-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡จ๐Ÿ‡ญ emoji. +const switzerlandFlag = Emoji( + base: '๐Ÿ‡จ๐Ÿ‡ญ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Switzerland-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡จ๐Ÿ‡ฎ emoji. +const coteDivoireFlag = Emoji( + base: '๐Ÿ‡จ๐Ÿ‡ฎ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Cรดte-dโ€™Ivoire-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡จ๐Ÿ‡ฐ emoji. +const cookIslandsFlag = Emoji( + base: '๐Ÿ‡จ๐Ÿ‡ฐ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Cook-Islands-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡จ๐Ÿ‡ฑ emoji. +const chileFlag = Emoji( + base: '๐Ÿ‡จ๐Ÿ‡ฑ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Chile-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡จ๐Ÿ‡ฒ emoji. +const cameroonFlag = Emoji( + base: '๐Ÿ‡จ๐Ÿ‡ฒ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Cameroon-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡จ๐Ÿ‡ณ emoji. +const chinaFlag = Emoji( + base: '๐Ÿ‡จ๐Ÿ‡ณ', + alternates: [], + emoticons: [], + shortcodes: [ + ':China-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡จ๐Ÿ‡ด emoji. +const colombiaFlag = Emoji( + base: '๐Ÿ‡จ๐Ÿ‡ด', + alternates: [], + emoticons: [], + shortcodes: [ + ':Colombia-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡จ๐Ÿ‡ต emoji. +const clippertonIslandFlag = Emoji( + base: '๐Ÿ‡จ๐Ÿ‡ต', + alternates: [], + emoticons: [], + shortcodes: [ + ':Clipperton-Island-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡จ๐Ÿ‡ท emoji. +const costaRicaFlag = Emoji( + base: '๐Ÿ‡จ๐Ÿ‡ท', + alternates: [], + emoticons: [], + shortcodes: [ + ':Costa-Rica-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡จ๐Ÿ‡บ emoji. +const cubaFlag = Emoji( + base: '๐Ÿ‡จ๐Ÿ‡บ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Cuba-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡จ๐Ÿ‡ป emoji. +const capeVerdeFlag = Emoji( + base: '๐Ÿ‡จ๐Ÿ‡ป', + alternates: [], + emoticons: [], + shortcodes: [ + ':Cape-Verde-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡จ๐Ÿ‡ผ emoji. +const curacaoFlag = Emoji( + base: '๐Ÿ‡จ๐Ÿ‡ผ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Curaรงao-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡จ๐Ÿ‡ฝ emoji. +const christmasIslandFlag = Emoji( + base: '๐Ÿ‡จ๐Ÿ‡ฝ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Christmas-Island-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡จ๐Ÿ‡พ emoji. +const cyprusFlag = Emoji( + base: '๐Ÿ‡จ๐Ÿ‡พ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Cyprus-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡จ๐Ÿ‡ฟ emoji. +const czechiaFlag = Emoji( + base: '๐Ÿ‡จ๐Ÿ‡ฟ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Czechia-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ฉ๐Ÿ‡ช emoji. +const germanyFlag = Emoji( + base: '๐Ÿ‡ฉ๐Ÿ‡ช', + alternates: [], + emoticons: [], + shortcodes: [ + ':Germany-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ฉ๐Ÿ‡ฌ emoji. +const diegoGarciaFlag = Emoji( + base: '๐Ÿ‡ฉ๐Ÿ‡ฌ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Diego-Garcia-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ฉ๐Ÿ‡ฏ emoji. +const djiboutiFlag = Emoji( + base: '๐Ÿ‡ฉ๐Ÿ‡ฏ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Djibouti-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ฉ๐Ÿ‡ฐ emoji. +const denmarkFlag = Emoji( + base: '๐Ÿ‡ฉ๐Ÿ‡ฐ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Denmark-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ฉ๐Ÿ‡ฒ emoji. +const dominicaFlag = Emoji( + base: '๐Ÿ‡ฉ๐Ÿ‡ฒ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Dominica-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ฉ๐Ÿ‡ด emoji. +const dominicanrepublicFlag = Emoji( + base: '๐Ÿ‡ฉ๐Ÿ‡ด', + alternates: [], + emoticons: [], + shortcodes: [ + ':Dominican Republic-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ฉ๐Ÿ‡ฟ emoji. +const algeriaFlag = Emoji( + base: '๐Ÿ‡ฉ๐Ÿ‡ฟ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Algeria-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ช๐Ÿ‡ฆ emoji. +const ceutaMelillaFlag = Emoji( + base: '๐Ÿ‡ช๐Ÿ‡ฆ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Ceuta-Melilla-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ช๐Ÿ‡จ emoji. +const ecuadorFlag = Emoji( + base: '๐Ÿ‡ช๐Ÿ‡จ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Ecuador-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ช๐Ÿ‡ช emoji. +const estoniaFlag = Emoji( + base: '๐Ÿ‡ช๐Ÿ‡ช', + alternates: [], + emoticons: [], + shortcodes: [ + ':Estonia-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ช๐Ÿ‡ฌ emoji. +const egyptFlag = Emoji( + base: '๐Ÿ‡ช๐Ÿ‡ฌ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Egypt-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ช๐Ÿ‡ญ emoji. +const westernSaharaFlag = Emoji( + base: '๐Ÿ‡ช๐Ÿ‡ญ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Western-Sahara-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ช๐Ÿ‡ท emoji. +const eritreaFlag = Emoji( + base: '๐Ÿ‡ช๐Ÿ‡ท', + alternates: [], + emoticons: [], + shortcodes: [ + ':Eritrea-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ช๐Ÿ‡ธ emoji. +const spainFlag = Emoji( + base: '๐Ÿ‡ช๐Ÿ‡ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Spain-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ช๐Ÿ‡น emoji. +const ethiopiaFlag = Emoji( + base: '๐Ÿ‡ช๐Ÿ‡น', + alternates: [], + emoticons: [], + shortcodes: [ + ':Ethiopia-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ช๐Ÿ‡บ emoji. +const europeanUnionFlag = Emoji( + base: '๐Ÿ‡ช๐Ÿ‡บ', + alternates: [], + emoticons: [], + shortcodes: [ + ':European-Union-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ซ๐Ÿ‡ฎ emoji. +const finlandFlag = Emoji( + base: '๐Ÿ‡ซ๐Ÿ‡ฎ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Finland-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ซ๐Ÿ‡ฏ emoji. +const fijiFlag = Emoji( + base: '๐Ÿ‡ซ๐Ÿ‡ฏ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Fiji-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ซ๐Ÿ‡ฐ emoji. +const falklandIslandsFlag = Emoji( + base: '๐Ÿ‡ซ๐Ÿ‡ฐ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Falkland-Islands-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ซ๐Ÿ‡ฒ emoji. +const micronesiaFlag = Emoji( + base: '๐Ÿ‡ซ๐Ÿ‡ฒ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Micronesia-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ซ๐Ÿ‡ด emoji. +const faroeIslandsFlag = Emoji( + base: '๐Ÿ‡ซ๐Ÿ‡ด', + alternates: [], + emoticons: [], + shortcodes: [ + ':Faroe-Islands-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ซ๐Ÿ‡ท emoji. +const franceFlag = Emoji( + base: '๐Ÿ‡ซ๐Ÿ‡ท', + alternates: [], + emoticons: [], + shortcodes: [ + ':France-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ฌ๐Ÿ‡ฆ emoji. +const gabonFlag = Emoji( + base: '๐Ÿ‡ฌ๐Ÿ‡ฆ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Gabon-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ฌ๐Ÿ‡ง emoji. +const unitedKingdomFlag = Emoji( + base: '๐Ÿ‡ฌ๐Ÿ‡ง', + alternates: [], + emoticons: [], + shortcodes: [ + ':United-Kingdom-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ฌ๐Ÿ‡ฉ emoji. +const grenadaFlag = Emoji( + base: '๐Ÿ‡ฌ๐Ÿ‡ฉ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Grenada-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ฌ๐Ÿ‡ช emoji. +const georgiaFlag = Emoji( + base: '๐Ÿ‡ฌ๐Ÿ‡ช', + alternates: [], + emoticons: [], + shortcodes: [ + ':Georgia-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ฌ๐Ÿ‡ซ emoji. +const frenchguianaFlag = Emoji( + base: '๐Ÿ‡ฌ๐Ÿ‡ซ', + alternates: [], + emoticons: [], + shortcodes: [ + ':French Guiana-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ฌ๐Ÿ‡ฌ emoji. +const guernseyFlag = Emoji( + base: '๐Ÿ‡ฌ๐Ÿ‡ฌ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Guernsey-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ฌ๐Ÿ‡ญ emoji. +const ghanaFlag = Emoji( + base: '๐Ÿ‡ฌ๐Ÿ‡ญ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Ghana-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ฌ๐Ÿ‡ฎ emoji. +const gibraltarFlag = Emoji( + base: '๐Ÿ‡ฌ๐Ÿ‡ฎ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Gibraltar-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ฌ๐Ÿ‡ฑ emoji. +const greenlandFlag = Emoji( + base: '๐Ÿ‡ฌ๐Ÿ‡ฑ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Greenland-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ฌ๐Ÿ‡ฒ emoji. +const gambiaFlag = Emoji( + base: '๐Ÿ‡ฌ๐Ÿ‡ฒ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Gambia-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ฌ๐Ÿ‡ณ emoji. +const guineaFlag = Emoji( + base: '๐Ÿ‡ฌ๐Ÿ‡ณ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Guinea-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ฌ๐Ÿ‡ต emoji. +const guadeloupeFlag = Emoji( + base: '๐Ÿ‡ฌ๐Ÿ‡ต', + alternates: [], + emoticons: [], + shortcodes: [ + ':Guadeloupe-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ฌ๐Ÿ‡ถ emoji. +const equatorialGuineaFlag = Emoji( + base: '๐Ÿ‡ฌ๐Ÿ‡ถ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Equatorial-Guinea-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ฌ๐Ÿ‡ท emoji. +const greeceFlag = Emoji( + base: '๐Ÿ‡ฌ๐Ÿ‡ท', + alternates: [], + emoticons: [], + shortcodes: [ + ':Greece-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ฌ๐Ÿ‡ธ emoji. +const southGeorgiaSouthFlag = Emoji( + base: '๐Ÿ‡ฌ๐Ÿ‡ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':South-Georgia-South-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ฌ๐Ÿ‡น emoji. +const guatemalaFlag = Emoji( + base: '๐Ÿ‡ฌ๐Ÿ‡น', + alternates: [], + emoticons: [], + shortcodes: [ + ':Guatemala-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ฌ๐Ÿ‡บ emoji. +const guamFlag = Emoji( + base: '๐Ÿ‡ฌ๐Ÿ‡บ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Guam-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ฌ๐Ÿ‡ผ emoji. +const guineaBissauFlag = Emoji( + base: '๐Ÿ‡ฌ๐Ÿ‡ผ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Guinea-Bissau-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ฌ๐Ÿ‡พ emoji. +const guyanaFlag = Emoji( + base: '๐Ÿ‡ฌ๐Ÿ‡พ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Guyana-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ญ๐Ÿ‡ฐ emoji. +const hongKongSarChinaFlag = Emoji( + base: '๐Ÿ‡ญ๐Ÿ‡ฐ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Hong-Kong-SAR-China-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ญ๐Ÿ‡ฒ emoji. +const heardMcdonaldislandsFlag = Emoji( + base: '๐Ÿ‡ญ๐Ÿ‡ฒ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Heard-McDonald Islands-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ญ๐Ÿ‡ณ emoji. +const hondurasFlag = Emoji( + base: '๐Ÿ‡ญ๐Ÿ‡ณ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Honduras-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ญ๐Ÿ‡ท emoji. +const croatiaFlag = Emoji( + base: '๐Ÿ‡ญ๐Ÿ‡ท', + alternates: [], + emoticons: [], + shortcodes: [ + ':Croatia-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ญ๐Ÿ‡น emoji. +const haitiFlag = Emoji( + base: '๐Ÿ‡ญ๐Ÿ‡น', + alternates: [], + emoticons: [], + shortcodes: [ + ':Haiti-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ญ๐Ÿ‡บ emoji. +const hungaryFlag = Emoji( + base: '๐Ÿ‡ญ๐Ÿ‡บ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Hungary-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ฎ๐Ÿ‡จ emoji. +const canaryIslandsFlag = Emoji( + base: '๐Ÿ‡ฎ๐Ÿ‡จ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Canary-Islands-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ฎ๐Ÿ‡ฉ emoji. +const indonesiaFlag = Emoji( + base: '๐Ÿ‡ฎ๐Ÿ‡ฉ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Indonesia-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ฎ๐Ÿ‡ช emoji. +const irelandFlag = Emoji( + base: '๐Ÿ‡ฎ๐Ÿ‡ช', + alternates: [], + emoticons: [], + shortcodes: [ + ':Ireland-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ฎ๐Ÿ‡ฑ emoji. +const israelFlag = Emoji( + base: '๐Ÿ‡ฎ๐Ÿ‡ฑ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Israel-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ฎ๐Ÿ‡ฒ emoji. +const isleOfManFlag = Emoji( + base: '๐Ÿ‡ฎ๐Ÿ‡ฒ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Isle-of-Man-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ฎ๐Ÿ‡ณ emoji. +const indiaFlag = Emoji( + base: '๐Ÿ‡ฎ๐Ÿ‡ณ', + alternates: [], + emoticons: [], + shortcodes: [ + ':India-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ฎ๐Ÿ‡ด emoji. +const britishIndianOceanTerritoryFlag = Emoji( + base: '๐Ÿ‡ฎ๐Ÿ‡ด', + alternates: [], + emoticons: [], + shortcodes: [ + ':British-Indian-Ocean-Territory-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ฎ๐Ÿ‡ถ emoji. +const iraqFlag = Emoji( + base: '๐Ÿ‡ฎ๐Ÿ‡ถ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Iraq-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ฎ๐Ÿ‡ท emoji. +const iranFlag = Emoji( + base: '๐Ÿ‡ฎ๐Ÿ‡ท', + alternates: [], + emoticons: [], + shortcodes: [ + ':Iran-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ฎ๐Ÿ‡ธ emoji. +const icelandFlag = Emoji( + base: '๐Ÿ‡ฎ๐Ÿ‡ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Iceland-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ฎ๐Ÿ‡น emoji. +const italyFlag = Emoji( + base: '๐Ÿ‡ฎ๐Ÿ‡น', + alternates: [], + emoticons: [], + shortcodes: [ + ':Italy-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ฏ๐Ÿ‡ช emoji. +const jerseyFlag = Emoji( + base: '๐Ÿ‡ฏ๐Ÿ‡ช', + alternates: [], + emoticons: [], + shortcodes: [ + ':Jersey-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ฏ๐Ÿ‡ฒ emoji. +const jamaicaFlag = Emoji( + base: '๐Ÿ‡ฏ๐Ÿ‡ฒ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Jamaica-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ฏ๐Ÿ‡ด emoji. +const jordanFlag = Emoji( + base: '๐Ÿ‡ฏ๐Ÿ‡ด', + alternates: [], + emoticons: [], + shortcodes: [ + ':Jordan-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ฏ๐Ÿ‡ต emoji. +const japanFlag = Emoji( + base: '๐Ÿ‡ฏ๐Ÿ‡ต', + alternates: [], + emoticons: [], + shortcodes: [ + ':Japan-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ฐ๐Ÿ‡ช emoji. +const kenyaFlag = Emoji( + base: '๐Ÿ‡ฐ๐Ÿ‡ช', + alternates: [], + emoticons: [], + shortcodes: [ + ':Kenya-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ฐ๐Ÿ‡ฌ emoji. +const kyrgyzstanFlag = Emoji( + base: '๐Ÿ‡ฐ๐Ÿ‡ฌ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Kyrgyzstan-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ฐ๐Ÿ‡ญ emoji. +const cambodiaFlag = Emoji( + base: '๐Ÿ‡ฐ๐Ÿ‡ญ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Cambodia-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ฐ๐Ÿ‡ฎ emoji. +const kiribatiFlag = Emoji( + base: '๐Ÿ‡ฐ๐Ÿ‡ฎ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Kiribati-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ฐ๐Ÿ‡ฒ emoji. +const comorosFlag = Emoji( + base: '๐Ÿ‡ฐ๐Ÿ‡ฒ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Comoros-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ฐ๐Ÿ‡ณ emoji. +const stkittsnevisFlag = Emoji( + base: '๐Ÿ‡ฐ๐Ÿ‡ณ', + alternates: [], + emoticons: [], + shortcodes: [ + ':St. Kitts & Nevis-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ฐ๐Ÿ‡ต emoji. +const northkoreaFlag = Emoji( + base: '๐Ÿ‡ฐ๐Ÿ‡ต', + alternates: [], + emoticons: [], + shortcodes: [ + ':North Korea-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ฐ๐Ÿ‡ท emoji. +const southkoreaFlag = Emoji( + base: '๐Ÿ‡ฐ๐Ÿ‡ท', + alternates: [], + emoticons: [], + shortcodes: [ + ':South Korea-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ฐ๐Ÿ‡ผ emoji. +const kuwaitFlag = Emoji( + base: '๐Ÿ‡ฐ๐Ÿ‡ผ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Kuwait-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ฐ๐Ÿ‡พ emoji. +const caymanislandsFlag = Emoji( + base: '๐Ÿ‡ฐ๐Ÿ‡พ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Cayman Islands-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ฐ๐Ÿ‡ฟ emoji. +const kazakhstanFlag = Emoji( + base: '๐Ÿ‡ฐ๐Ÿ‡ฟ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Kazakhstan-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ฑ๐Ÿ‡ฆ emoji. +const laosFlag = Emoji( + base: '๐Ÿ‡ฑ๐Ÿ‡ฆ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Laos-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ฑ๐Ÿ‡ง emoji. +const lebanonFlag = Emoji( + base: '๐Ÿ‡ฑ๐Ÿ‡ง', + alternates: [], + emoticons: [], + shortcodes: [ + ':Lebanon-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ฑ๐Ÿ‡จ emoji. +const stluciaFlag = Emoji( + base: '๐Ÿ‡ฑ๐Ÿ‡จ', + alternates: [], + emoticons: [], + shortcodes: [ + ':St. Lucia-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ฑ๐Ÿ‡ฎ emoji. +const liechtensteinFlag = Emoji( + base: '๐Ÿ‡ฑ๐Ÿ‡ฎ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Liechtenstein-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ฑ๐Ÿ‡ฐ emoji. +const srilankaFlag = Emoji( + base: '๐Ÿ‡ฑ๐Ÿ‡ฐ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Sri Lanka-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ฑ๐Ÿ‡ท emoji. +const liberiaFlag = Emoji( + base: '๐Ÿ‡ฑ๐Ÿ‡ท', + alternates: [], + emoticons: [], + shortcodes: [ + ':Liberia-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ฑ๐Ÿ‡ธ emoji. +const lesothoFlag = Emoji( + base: '๐Ÿ‡ฑ๐Ÿ‡ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Lesotho-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ฑ๐Ÿ‡น emoji. +const lithuaniaFlag = Emoji( + base: '๐Ÿ‡ฑ๐Ÿ‡น', + alternates: [], + emoticons: [], + shortcodes: [ + ':Lithuania-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ฑ๐Ÿ‡บ emoji. +const luxembourgFlag = Emoji( + base: '๐Ÿ‡ฑ๐Ÿ‡บ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Luxembourg-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ฑ๐Ÿ‡ป emoji. +const latviaFlag = Emoji( + base: '๐Ÿ‡ฑ๐Ÿ‡ป', + alternates: [], + emoticons: [], + shortcodes: [ + ':Latvia-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ฑ๐Ÿ‡พ emoji. +const libyaFlag = Emoji( + base: '๐Ÿ‡ฑ๐Ÿ‡พ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Libya-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ฒ๐Ÿ‡ฆ emoji. +const moroccoFlag = Emoji( + base: '๐Ÿ‡ฒ๐Ÿ‡ฆ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Morocco-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ฒ๐Ÿ‡จ emoji. +const monacoFlag = Emoji( + base: '๐Ÿ‡ฒ๐Ÿ‡จ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Monaco-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ฒ๐Ÿ‡ฉ emoji. +const moldovaFlag = Emoji( + base: '๐Ÿ‡ฒ๐Ÿ‡ฉ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Moldova-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ฒ๐Ÿ‡ช emoji. +const montenegroFlag = Emoji( + base: '๐Ÿ‡ฒ๐Ÿ‡ช', + alternates: [], + emoticons: [], + shortcodes: [ + ':Montenegro-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ฒ๐Ÿ‡ซ emoji. +const stMartinFlag = Emoji( + base: '๐Ÿ‡ฒ๐Ÿ‡ซ', + alternates: [], + emoticons: [], + shortcodes: [ + ':St-Martin-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ฒ๐Ÿ‡ฌ emoji. +const madagascarFlag = Emoji( + base: '๐Ÿ‡ฒ๐Ÿ‡ฌ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Madagascar-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ฒ๐Ÿ‡ญ emoji. +const marshallIslandsFlag = Emoji( + base: '๐Ÿ‡ฒ๐Ÿ‡ญ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Marshall-Islands-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ฒ๐Ÿ‡ฐ emoji. +const macedoniaFlag = Emoji( + base: '๐Ÿ‡ฒ๐Ÿ‡ฐ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Macedonia-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ฒ๐Ÿ‡ฑ emoji. +const maliFlag = Emoji( + base: '๐Ÿ‡ฒ๐Ÿ‡ฑ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Mali-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ฒ๐Ÿ‡ฒ emoji. +const myanmarFlag = Emoji( + base: '๐Ÿ‡ฒ๐Ÿ‡ฒ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Myanmar-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ฒ๐Ÿ‡ณ emoji. +const mongoliaFlag = Emoji( + base: '๐Ÿ‡ฒ๐Ÿ‡ณ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Mongolia-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ฒ๐Ÿ‡ด emoji. +const macauSarChinaFlag = Emoji( + base: '๐Ÿ‡ฒ๐Ÿ‡ด', + alternates: [], + emoticons: [], + shortcodes: [ + ':Macau-SAR-China-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ฒ๐Ÿ‡ต emoji. +const northernMarianaIslandsFlag = Emoji( + base: '๐Ÿ‡ฒ๐Ÿ‡ต', + alternates: [], + emoticons: [], + shortcodes: [ + ':Northern-Mariana-Islands-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ฒ๐Ÿ‡ถ emoji. +const martiniqueFlag = Emoji( + base: '๐Ÿ‡ฒ๐Ÿ‡ถ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Martinique-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ฒ๐Ÿ‡ท emoji. +const mauritaniaFlag = Emoji( + base: '๐Ÿ‡ฒ๐Ÿ‡ท', + alternates: [], + emoticons: [], + shortcodes: [ + ':Mauritania-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ฒ๐Ÿ‡ธ emoji. +const montserratFlag = Emoji( + base: '๐Ÿ‡ฒ๐Ÿ‡ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Montserrat-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ฒ๐Ÿ‡น emoji. +const maltaFlag = Emoji( + base: '๐Ÿ‡ฒ๐Ÿ‡น', + alternates: [], + emoticons: [], + shortcodes: [ + ':Malta-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ฒ๐Ÿ‡บ emoji. +const mauritiusFlag = Emoji( + base: '๐Ÿ‡ฒ๐Ÿ‡บ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Mauritius-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ฒ๐Ÿ‡ป emoji. +const maldivesFlag = Emoji( + base: '๐Ÿ‡ฒ๐Ÿ‡ป', + alternates: [], + emoticons: [], + shortcodes: [ + ':Maldives-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ฒ๐Ÿ‡ผ emoji. +const malawiFlag = Emoji( + base: '๐Ÿ‡ฒ๐Ÿ‡ผ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Malawi-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ฒ๐Ÿ‡ฝ emoji. +const mexicoFlag = Emoji( + base: '๐Ÿ‡ฒ๐Ÿ‡ฝ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Mexico-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ฒ๐Ÿ‡พ emoji. +const malaysiaFlag = Emoji( + base: '๐Ÿ‡ฒ๐Ÿ‡พ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Malaysia-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ฒ๐Ÿ‡ฟ emoji. +const mozambiqueFlag = Emoji( + base: '๐Ÿ‡ฒ๐Ÿ‡ฟ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Mozambique-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ณ๐Ÿ‡ฆ emoji. +const namibiaFlag = Emoji( + base: '๐Ÿ‡ณ๐Ÿ‡ฆ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Namibia-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ณ๐Ÿ‡จ emoji. +const newCaledoniaFlag = Emoji( + base: '๐Ÿ‡ณ๐Ÿ‡จ', + alternates: [], + emoticons: [], + shortcodes: [ + ':New-Caledonia-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ณ๐Ÿ‡ช emoji. +const nigerFlag = Emoji( + base: '๐Ÿ‡ณ๐Ÿ‡ช', + alternates: [], + emoticons: [], + shortcodes: [ + ':Niger-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ณ๐Ÿ‡ซ emoji. +const norfolkIslandFlag = Emoji( + base: '๐Ÿ‡ณ๐Ÿ‡ซ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Norfolk-Island-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ณ๐Ÿ‡ฌ emoji. +const nigeriaFlag = Emoji( + base: '๐Ÿ‡ณ๐Ÿ‡ฌ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Nigeria-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ณ๐Ÿ‡ฎ emoji. +const nicaraguaFlag = Emoji( + base: '๐Ÿ‡ณ๐Ÿ‡ฎ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Nicaragua-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ณ๐Ÿ‡ฑ emoji. +const netherlandsFlag = Emoji( + base: '๐Ÿ‡ณ๐Ÿ‡ฑ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Netherlands-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ณ๐Ÿ‡ด emoji. +const norwayFlag = Emoji( + base: '๐Ÿ‡ณ๐Ÿ‡ด', + alternates: [], + emoticons: [], + shortcodes: [ + ':Norway-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ณ๐Ÿ‡ต emoji. +const nepalFlag = Emoji( + base: '๐Ÿ‡ณ๐Ÿ‡ต', + alternates: [], + emoticons: [], + shortcodes: [ + ':Nepal-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ณ๐Ÿ‡ท emoji. +const nauruFlag = Emoji( + base: '๐Ÿ‡ณ๐Ÿ‡ท', + alternates: [], + emoticons: [], + shortcodes: [ + ':Nauru-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ณ๐Ÿ‡บ emoji. +const niueFlag = Emoji( + base: '๐Ÿ‡ณ๐Ÿ‡บ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Niue-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ณ๐Ÿ‡ฟ emoji. +const newZealandFlag = Emoji( + base: '๐Ÿ‡ณ๐Ÿ‡ฟ', + alternates: [], + emoticons: [], + shortcodes: [ + ':New-Zealand-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ด๐Ÿ‡ฒ emoji. +const omanFlag = Emoji( + base: '๐Ÿ‡ด๐Ÿ‡ฒ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Oman-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ต๐Ÿ‡ฆ emoji. +const panamaFlag = Emoji( + base: '๐Ÿ‡ต๐Ÿ‡ฆ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Panama-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ต๐Ÿ‡ช emoji. +const peruFlag = Emoji( + base: '๐Ÿ‡ต๐Ÿ‡ช', + alternates: [], + emoticons: [], + shortcodes: [ + ':Peru-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ต๐Ÿ‡ซ emoji. +const frenchPolynesiaFlag = Emoji( + base: '๐Ÿ‡ต๐Ÿ‡ซ', + alternates: [], + emoticons: [], + shortcodes: [ + ':French-Polynesia-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ต๐Ÿ‡ฌ emoji. +const papuaNewGuineaFlag = Emoji( + base: '๐Ÿ‡ต๐Ÿ‡ฌ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Papua-New-Guinea-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ต๐Ÿ‡ญ emoji. +const philippinesFlag = Emoji( + base: '๐Ÿ‡ต๐Ÿ‡ญ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Philippines-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ต๐Ÿ‡ฐ emoji. +const pakistanFlag = Emoji( + base: '๐Ÿ‡ต๐Ÿ‡ฐ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Pakistan-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ต๐Ÿ‡ฑ emoji. +const polandFlag = Emoji( + base: '๐Ÿ‡ต๐Ÿ‡ฑ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Poland-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ต๐Ÿ‡ฒ emoji. +const stPierreMiquelonFlag = Emoji( + base: '๐Ÿ‡ต๐Ÿ‡ฒ', + alternates: [], + emoticons: [], + shortcodes: [ + ':St-Pierre-Miquelon-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ต๐Ÿ‡ณ emoji. +const pitcairnIslandsFlag = Emoji( + base: '๐Ÿ‡ต๐Ÿ‡ณ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Pitcairn-Islands-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ต๐Ÿ‡ท emoji. +const puertoRicoFlag = Emoji( + base: '๐Ÿ‡ต๐Ÿ‡ท', + alternates: [], + emoticons: [], + shortcodes: [ + ':Puerto-Rico-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ต๐Ÿ‡ธ emoji. +const palestinianTerritoriesFlag = Emoji( + base: '๐Ÿ‡ต๐Ÿ‡ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Palestinian-Territories-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ต๐Ÿ‡น emoji. +const portugalFlag = Emoji( + base: '๐Ÿ‡ต๐Ÿ‡น', + alternates: [], + emoticons: [], + shortcodes: [ + ':Portugal-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ต๐Ÿ‡ผ emoji. +const palauFlag = Emoji( + base: '๐Ÿ‡ต๐Ÿ‡ผ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Palau-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ต๐Ÿ‡พ emoji. +const paraguayFlag = Emoji( + base: '๐Ÿ‡ต๐Ÿ‡พ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Paraguay-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ถ๐Ÿ‡ฆ emoji. +const qatarFlag = Emoji( + base: '๐Ÿ‡ถ๐Ÿ‡ฆ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Qatar-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ท๐Ÿ‡ช emoji. +const reunionFlag = Emoji( + base: '๐Ÿ‡ท๐Ÿ‡ช', + alternates: [], + emoticons: [], + shortcodes: [ + ':Rรฉunion-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ท๐Ÿ‡ด emoji. +const romaniaFlag = Emoji( + base: '๐Ÿ‡ท๐Ÿ‡ด', + alternates: [], + emoticons: [], + shortcodes: [ + ':Romania-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ท๐Ÿ‡ธ emoji. +const serbiaFlag = Emoji( + base: '๐Ÿ‡ท๐Ÿ‡ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Serbia-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ท๐Ÿ‡บ emoji. +const russiaFlag = Emoji( + base: '๐Ÿ‡ท๐Ÿ‡บ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Russia-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ท๐Ÿ‡ผ emoji. +const rwandaFlag = Emoji( + base: '๐Ÿ‡ท๐Ÿ‡ผ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Rwanda-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ธ๐Ÿ‡ฆ emoji. +const saudiArabiaFlag = Emoji( + base: '๐Ÿ‡ธ๐Ÿ‡ฆ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Saudi-Arabia-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ธ๐Ÿ‡ง emoji. +const solomonIslandsFlag = Emoji( + base: '๐Ÿ‡ธ๐Ÿ‡ง', + alternates: [], + emoticons: [], + shortcodes: [ + ':Solomon-Islands-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ธ๐Ÿ‡จ emoji. +const seychellesFlag = Emoji( + base: '๐Ÿ‡ธ๐Ÿ‡จ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Seychelles-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ธ๐Ÿ‡ฉ emoji. +const sudanFlag = Emoji( + base: '๐Ÿ‡ธ๐Ÿ‡ฉ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Sudan-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ธ๐Ÿ‡ช emoji. +const swedenFlag = Emoji( + base: '๐Ÿ‡ธ๐Ÿ‡ช', + alternates: [], + emoticons: [], + shortcodes: [ + ':Sweden-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ธ๐Ÿ‡ฌ emoji. +const singaporeFlag = Emoji( + base: '๐Ÿ‡ธ๐Ÿ‡ฌ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Singapore-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ธ๐Ÿ‡ญ emoji. +const stHelenaFlag = Emoji( + base: '๐Ÿ‡ธ๐Ÿ‡ญ', + alternates: [], + emoticons: [], + shortcodes: [ + ':St-Helena-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ธ๐Ÿ‡ฎ emoji. +const sloveniaFlag = Emoji( + base: '๐Ÿ‡ธ๐Ÿ‡ฎ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Slovenia-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ธ๐Ÿ‡ฏ emoji. +const svalbardJanmayenFlag = Emoji( + base: '๐Ÿ‡ธ๐Ÿ‡ฏ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Svalbard-Jan Mayen-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ธ๐Ÿ‡ฐ emoji. +const slovakiaFlag = Emoji( + base: '๐Ÿ‡ธ๐Ÿ‡ฐ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Slovakia-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ธ๐Ÿ‡ฑ emoji. +const sierraLeoneFlag = Emoji( + base: '๐Ÿ‡ธ๐Ÿ‡ฑ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Sierra-Leone-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ธ๐Ÿ‡ฒ emoji. +const sanMarinoFlag = Emoji( + base: '๐Ÿ‡ธ๐Ÿ‡ฒ', + alternates: [], + emoticons: [], + shortcodes: [ + ':San-Marino-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ธ๐Ÿ‡ณ emoji. +const senegalFlag = Emoji( + base: '๐Ÿ‡ธ๐Ÿ‡ณ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Senegal-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ธ๐Ÿ‡ด emoji. +const somaliaFlag = Emoji( + base: '๐Ÿ‡ธ๐Ÿ‡ด', + alternates: [], + emoticons: [], + shortcodes: [ + ':Somalia-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ธ๐Ÿ‡ท emoji. +const surinameFlag = Emoji( + base: '๐Ÿ‡ธ๐Ÿ‡ท', + alternates: [], + emoticons: [], + shortcodes: [ + ':Suriname-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ธ๐Ÿ‡ธ emoji. +const southSudanFlag = Emoji( + base: '๐Ÿ‡ธ๐Ÿ‡ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':South-Sudan-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ธ๐Ÿ‡น emoji. +const saoTomePrincipeFlag = Emoji( + base: '๐Ÿ‡ธ๐Ÿ‡น', + alternates: [], + emoticons: [], + shortcodes: [ + ':Sรฃo-Tomรฉ-Prรญncipe-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ธ๐Ÿ‡ป emoji. +const elSalvadorFlag = Emoji( + base: '๐Ÿ‡ธ๐Ÿ‡ป', + alternates: [], + emoticons: [], + shortcodes: [ + ':El-Salvador-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ธ๐Ÿ‡ฝ emoji. +const sintMaartenFlag = Emoji( + base: '๐Ÿ‡ธ๐Ÿ‡ฝ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Sint-Maarten-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ธ๐Ÿ‡พ emoji. +const syriaFlag = Emoji( + base: '๐Ÿ‡ธ๐Ÿ‡พ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Syria-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ธ๐Ÿ‡ฟ emoji. +const swazilandFlag = Emoji( + base: '๐Ÿ‡ธ๐Ÿ‡ฟ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Swaziland-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡น๐Ÿ‡ฆ emoji. +const tristanDaCunhaFlag = Emoji( + base: '๐Ÿ‡น๐Ÿ‡ฆ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Tristan-da-Cunha-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡น๐Ÿ‡จ emoji. +const turksCaicosislandsFlag = Emoji( + base: '๐Ÿ‡น๐Ÿ‡จ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Turks-Caicos Islands-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡น๐Ÿ‡ฉ emoji. +const chadFlag = Emoji( + base: '๐Ÿ‡น๐Ÿ‡ฉ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Chad-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡น๐Ÿ‡ซ emoji. +const frenchSouthernTerritoriesFlag = Emoji( + base: '๐Ÿ‡น๐Ÿ‡ซ', + alternates: [], + emoticons: [], + shortcodes: [ + ':French-Southern-Territories-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡น๐Ÿ‡ฌ emoji. +const togoFlag = Emoji( + base: '๐Ÿ‡น๐Ÿ‡ฌ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Togo-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡น๐Ÿ‡ญ emoji. +const thailandFlag = Emoji( + base: '๐Ÿ‡น๐Ÿ‡ญ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Thailand-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡น๐Ÿ‡ฏ emoji. +const tajikistanFlag = Emoji( + base: '๐Ÿ‡น๐Ÿ‡ฏ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Tajikistan-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡น๐Ÿ‡ฐ emoji. +const tokelauFlag = Emoji( + base: '๐Ÿ‡น๐Ÿ‡ฐ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Tokelau-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡น๐Ÿ‡ฑ emoji. +const timorLesteFlag = Emoji( + base: '๐Ÿ‡น๐Ÿ‡ฑ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Timor-Leste-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡น๐Ÿ‡ฒ emoji. +const turkmenistanFlag = Emoji( + base: '๐Ÿ‡น๐Ÿ‡ฒ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Turkmenistan-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡น๐Ÿ‡ณ emoji. +const tunisiaFlag = Emoji( + base: '๐Ÿ‡น๐Ÿ‡ณ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Tunisia-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡น๐Ÿ‡ด emoji. +const tongaFlag = Emoji( + base: '๐Ÿ‡น๐Ÿ‡ด', + alternates: [], + emoticons: [], + shortcodes: [ + ':Tonga-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡น๐Ÿ‡ท emoji. +const turkeyFlag = Emoji( + base: '๐Ÿ‡น๐Ÿ‡ท', + alternates: [], + emoticons: [], + shortcodes: [ + ':Turkey-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡น๐Ÿ‡น emoji. +const trinidadTobagoFlag = Emoji( + base: '๐Ÿ‡น๐Ÿ‡น', + alternates: [], + emoticons: [], + shortcodes: [ + ':Trinidad-Tobago-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡น๐Ÿ‡ป emoji. +const tuvaluFlag = Emoji( + base: '๐Ÿ‡น๐Ÿ‡ป', + alternates: [], + emoticons: [], + shortcodes: [ + ':Tuvalu-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡น๐Ÿ‡ผ emoji. +const taiwanFlag = Emoji( + base: '๐Ÿ‡น๐Ÿ‡ผ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Taiwan-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡น๐Ÿ‡ฟ emoji. +const tanzaniaFlag = Emoji( + base: '๐Ÿ‡น๐Ÿ‡ฟ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Tanzania-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡บ๐Ÿ‡ฆ emoji. +const ukraineFlag = Emoji( + base: '๐Ÿ‡บ๐Ÿ‡ฆ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Ukraine-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡บ๐Ÿ‡ฌ emoji. +const ugandaFlag = Emoji( + base: '๐Ÿ‡บ๐Ÿ‡ฌ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Uganda-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡บ๐Ÿ‡ฒ emoji. +const usOutlyingislandsFlag = Emoji( + base: '๐Ÿ‡บ๐Ÿ‡ฒ', + alternates: [], + emoticons: [], + shortcodes: [ + ':US-Outlying Islands-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡บ๐Ÿ‡ณ emoji. +const unitedNationsFlag = Emoji( + base: '๐Ÿ‡บ๐Ÿ‡ณ', + alternates: [], + emoticons: [], + shortcodes: [ + ':United-Nations-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡บ๐Ÿ‡ธ emoji. +const unitedStatesFlag = Emoji( + base: '๐Ÿ‡บ๐Ÿ‡ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':United-States-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡บ๐Ÿ‡พ emoji. +const uruguayFlag = Emoji( + base: '๐Ÿ‡บ๐Ÿ‡พ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Uruguay-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡บ๐Ÿ‡ฟ emoji. +const uzbekistanFlag = Emoji( + base: '๐Ÿ‡บ๐Ÿ‡ฟ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Uzbekistan-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ป๐Ÿ‡ฆ emoji. +const vaticancityFlag = Emoji( + base: '๐Ÿ‡ป๐Ÿ‡ฆ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Vatican City-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ป๐Ÿ‡จ emoji. +const stVincentGrenadinesFlag = Emoji( + base: '๐Ÿ‡ป๐Ÿ‡จ', + alternates: [], + emoticons: [], + shortcodes: [ + ':St-Vincent-Grenadines-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ป๐Ÿ‡ช emoji. +const venezuelaFlag = Emoji( + base: '๐Ÿ‡ป๐Ÿ‡ช', + alternates: [], + emoticons: [], + shortcodes: [ + ':Venezuela-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ป๐Ÿ‡ฌ emoji. +const britishVirginislandsFlag = Emoji( + base: '๐Ÿ‡ป๐Ÿ‡ฌ', + alternates: [], + emoticons: [], + shortcodes: [ + ':British-Virgin Islands-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ป๐Ÿ‡ฎ emoji. +const usVirginIslandsFlag = Emoji( + base: '๐Ÿ‡ป๐Ÿ‡ฎ', + alternates: [], + emoticons: [], + shortcodes: [ + ':US-Virgin-Islands-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ป๐Ÿ‡ณ emoji. +const vietnamFlag = Emoji( + base: '๐Ÿ‡ป๐Ÿ‡ณ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Vietnam-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ป๐Ÿ‡บ emoji. +const vanuatuFlag = Emoji( + base: '๐Ÿ‡ป๐Ÿ‡บ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Vanuatu-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ผ๐Ÿ‡ซ emoji. +const wallisFutunaFlag = Emoji( + base: '๐Ÿ‡ผ๐Ÿ‡ซ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Wallis-Futuna-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ผ๐Ÿ‡ธ emoji. +const samoaFlag = Emoji( + base: '๐Ÿ‡ผ๐Ÿ‡ธ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Samoa-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ฝ๐Ÿ‡ฐ emoji. +const kosovoFlag = Emoji( + base: '๐Ÿ‡ฝ๐Ÿ‡ฐ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Kosovo-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡พ๐Ÿ‡ช emoji. +const yemenFlag = Emoji( + base: '๐Ÿ‡พ๐Ÿ‡ช', + alternates: [], + emoticons: [], + shortcodes: [ + ':Yemen-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡พ๐Ÿ‡น emoji. +const mayotteFlag = Emoji( + base: '๐Ÿ‡พ๐Ÿ‡น', + alternates: [], + emoticons: [], + shortcodes: [ + ':Mayotte-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ฟ๐Ÿ‡ฆ emoji. +const southAfricaFlag = Emoji( + base: '๐Ÿ‡ฟ๐Ÿ‡ฆ', + alternates: [], + emoticons: [], + shortcodes: [ + ':South-Africa-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ฟ๐Ÿ‡ฒ emoji. +const zambiaFlag = Emoji( + base: '๐Ÿ‡ฟ๐Ÿ‡ฒ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Zambia-flag:', + ], + animated: false, +); + +/// The ๐Ÿ‡ฟ๐Ÿ‡ผ emoji. +const zimbabweFlag = Emoji( + base: '๐Ÿ‡ฟ๐Ÿ‡ผ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Zimbabwe-flag:', + ], + animated: false, +); + +/// The ๐Ÿด๓ ง๓ ข๓ ฅ๓ ฎ๓ ง๓ ฟ emoji. +const englandFlag = Emoji( + base: '๐Ÿด๓ ง๓ ข๓ ฅ๓ ฎ๓ ง๓ ฟ', + alternates: [], + emoticons: [], + shortcodes: [ + ':England-flag:', + ], + animated: false, +); + +/// The ๐Ÿด๓ ง๓ ข๓ ณ๓ ฃ๓ ด๓ ฟ emoji. +const scotlandFlag = Emoji( + base: '๐Ÿด๓ ง๓ ข๓ ณ๓ ฃ๓ ด๓ ฟ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Scotland-flag:', + ], + animated: false, +); + +/// The ๐Ÿด๓ ง๓ ข๓ ท๓ ฌ๓ ณ๓ ฟ emoji. +const walesFlag = Emoji( + base: '๐Ÿด๓ ง๓ ข๓ ท๓ ฌ๓ ณ๓ ฟ', + alternates: [], + emoticons: [], + shortcodes: [ + ':Wales-flag:', + ], + animated: false, +); + +/// The "Smileys and emotions" emojis. +const smileysAndEmotionsGroup = [ + smile, + smileWithBigEyes, + grin, + grinning, + laughing, + grinSweat, + joy, + rofl, + loudlyCrying, + wink, + kissing, + kissingSmilingEyes, + kissingClosedEyes, + kissingHeart, + heartFace, + heartEyes, + starStruck, + partyingFace, + melting, + upsideDownFace, + slightlyHappy, + happyCry, + holdingBackTears, + blush, + warmSmile, + relieved, + smirk, + sleep, + sleepy, + drool, + yum, + stuckOutTongue, + squintingTongue, + winkyTongue, + zanyFace, + woozy, + pensive, + pleading, + grimacing, + expressionless, + neutralFace, + mouthNone, + faceInClouds, + dottedLineFace, + zipperFace, + salute, + thinkingFace, + shushingFace, + handOverMouth, + smilingEyesWithHandOverMouth, + yawn, + hugFace, + peeking, + screaming, + raisedEyebrow, + monocle, + unamused, + rollingEyes, + exhale, + triumph, + angry, + rage, + cursing, + sad, + sweat, + worried, + concerned, + cry, + bigFrown, + frown, + diagonalMouth, + slightlyFrowning, + anxiousWithSweat, + scared, + anguished, + gasp, + mouthOpen, + surprised, + astonished, + flushed, + mindBlown, + scrunchedMouth, + scrunchedEyes, + weary, + distraught, + xEyes, + dizzyFace, + shakingFace, + coldFace, + hotFace, + sick, + vomit, + sneeze, + thermometerFace, + bandageFace, + mask, + liar, + halo, + cowboy, + moneyFace, + nerdFace, + sunglassesFace, + disguise, + clown, + impSmile, + impFrown, + ghost, + jackOLantern, + poop, + robot, + alien, + alienMonster, + moonFaceFirstQuarter, + moonFaceLastQuarter, + moonFaceNew, + moonFaceFull, + sunWithFace, + skullAndCrossbones, + ogre, + goblin, + fire, + oneHundred, + dizzy, + star, + glowingStar, + sparkles, + collision, + dash, + sweatDroplets, + zzz, + hole, + partyPopper, + seeNoEvilMonkey, + hearNoEvilMonkey, + speakNoEvilMonkey, + smileyCat, + smileCat, + joyCat, + heartEyesCat, + smirkCat, + kissingCat, + screamCat, + cryingCatFace, + poutingCat, + redHeart, + orangeHeart, + yellowHeart, + greenHeart, + lightBlueHeart, + blueHeart, + purpleHeart, + brownHeart, + blackHeart, + greyHeart, + whiteHeart, + pinkHeart, + cupid, + giftHeart, + sparklingHeart, + heartGrow, + beatingHeart, + revolvingHearts, + twoHearts, + loveLetter, + heartBox, + heart, + heartExclamationPoint, + bandagedHeart, + brokenHeart, + fireHeart, + kiss, + hugging, + bustsInSilhouette, + bustInSilhouette, + speakingHead, + footprints, + brain, + anatomicalHeart, + lungs, + blood, + microbe, + tooth, + bone, + skull, + eyes, + eye, + mouth, + bitingLip, + tongue, + nose, + ear, + hearingAid, + foot, + leg, + legMechanical, + armMechanical, + muscle, + clap, + thumbsUp, + thumbsDown, + heartHands, + raisingHands, + openHands, + palmsUp, + handshake, + fistRightwards, + fistLeftwards, + raisedFist, + fist, + palmDown, + palmUp, + rightwardsHand, + leftwardsHand, + pushRightwards, + pushLeftwards, + wave, + backHand, + palm, + raisedHand, + vulcan, + loveYouGesture, + metal, + v, + crossedFingers, + handWithIndexFingerAndThumbCrossed, + callMeHand, + pinchedFingers, + pinch, + ok, + pointing, + pointRight, + pointLeft, + indexFinger, + pointUp, + pointDown, + middleFinger, + writingHand, + selfie, + foldedHands, + nailCare, +]; + +/// The "People" emojis. +const peopleGroup = [ + bow, + raisingHand, + tippingHand, + gestureOk, + noGesture, + shrug, + facepalm, + frowning, + pouting, + deaf, + massage, + haircut, + sauna, + bathe, + inBed, + yoga, + walkingWithCane, + personInMotorizedWheelchair, + personInManualWheelchair, + kneeling, + standing, + walking, + running, + cartwheel, + liftingWeights, + bouncingBall, + handball, + biking, + mountainBiking, + climbing, + wrestling, + juggling, + golfing, + horseRacing, + fencing, + skier, + snowboarder, + parachute, + surfing, + rowingBoat, + swimming, + waterPolo, + merperson, + fairy, + genie, + elf, + mage, + vampire, + zombie, + troll, + superhero, + supervillain, + ninja, + mxClaus, + angel, + guard, + royalty, + tuxedo, + veil, + astronaut, + constructionWorker, + police, + detective, + pilot, + scientist, + healthWorker, + mechanic, + factoryWorker, + firefighter, + farmer, + teacher, + student, + officeWorker, + judge, + technologist, + singer, + artist, + cook, + turban, + headscarf, + guaPiMao, + baby, + child, + adult, + elder, + whiteHair, + redHair, + blondHair, + curlyHair, + bald, + beard, + levitatingSuit, + dancerWoman, + dancerMan, + bunnyEars, + holdingHands, + holdingHandsWomen, + holdingHandsMen, + holdingHandsWomanAndMan, + kissPeople, + kissWomanAndMan, + kissManAndMan, + kissWomanAndWoman, + peopleWithHeart, + heartWithWomanAndMan, + heartWithManAndMan, + heartWithWomanAndWoman, + pregnant, + breastFeeding, + personFeedingBaby, + family, +]; + +/// The "Animals and nature" emojis. +const animalsAndNatureGroup = [ + bouquet, + rose, + wiltedFlower, + hibiscus, + tulip, + lotus, + cherryBlossom, + whiteFlower, + rosette, + hyacinth, + sunflower, + blossom, + fallenLeaf, + mapleLeaf, + mushroom, + earOfRice, + plant, + herb, + leaves, + shamrock, + luck, + pottedPlant, + cactus, + palmTree, + deciduousTree, + evergreenTree, + wood, + nest, + nestWithEggs, + rock, + mountain, + snowMountain, + snowflake, + snowmanWithSnow, + snowman, + fog, + thermometer, + fire, + volcano, + desert, + nationalPark, + desertIsland, + beach, + sunrise, + sunriseOverMountains, + rainbow, + bubbles, + ocean, + windFace, + cyclone, + tornado, + electricity, + umbrellaInRain, + droplet, + rainCloud, + cloudWithLightning, + cloudWithLightningAndRain, + cloudWithSnow, + cloud, + sunBehindRainCloud, + sunBehindLargeCloud, + partlySunny, + sunBehindSmallCloud, + sunny, + sunWithFace, + moonFaceFull, + moonFaceNew, + moonFaceLastQuarter, + moonFaceFirstQuarter, + star, + glowingStar, + sparkles, + dizzy, + crescentMoon, + comet, + hole, + shootingStar, + milkyWay, + globeShowingEuropeAfrica, + globeShowingAmericas, + globeShowingAsiaAustralia, + ringedPlanet, + newMoon, + waxingCrescentMoon, + firstQuarterMoon, + waxingGibbousMoon, + fullMoon, + waningGibbousMoon, + lastQuarterMoon, + waningCrescentMoon, + seeNoEvilMonkey, + hearNoEvilMonkey, + speakNoEvilMonkey, + monkeyFace, + lionFace, + tigerFace, + catFace, + dogFace, + wolf, + bearFace, + polarBear, + koala, + panda, + hamster, + mouseFace, + rabbitFace, + foxFace, + raccoon, + cowFace, + pigFace, + snout, + boar, + zebra, + unicorn, + horseFace, + moose, + dragonFace, + lizard, + dragon, + tRex, + dinosaur, + turtle, + crocodile, + snake, + frog, + rabbit, + mouse, + rat, + cat, + blackCat, + poodle, + dog, + guideDog, + serviceDog, + pig, + racehorse, + donkey, + cow, + ox, + waterBuffalo, + bison, + ram, + sheep, + goat, + deer, + llama, + sloth, + kangaroo, + elephant, + mammoth, + rhino, + hippo, + giraffe, + leopard, + tiger, + monkey, + gorilla, + orangutan, + camel, + bactrianCamel, + chipmunk, + beaver, + skunk, + badger, + hedgehog, + otter, + bat, + wingfly, + feather, + bird, + blackBird, + rooster, + chicken, + hatchingChick, + babyChick, + hatchedChick, + eagle, + owl, + parrot, + peace, + dodo, + swan, + duck, + goose, + flamingo, + peacock, + turkey, + penguin, + seal, + shark, + dolphin, + humpbackWhale, + whale, + fish, + tropicalFish, + blowfish, + shrimp, + lobster, + crab, + squid, + octopus, + jellyfish, + oyster, + coral, + scorpion, + spider, + spiderWeb, + shell, + snail, + ant, + cricket, + beetle, + mosquito, + cockroach, + fly, + bee, + ladyBug, + butterfly, + bug, + worm, + microbe, + pawprints, +]; + +/// The "Food and drink" emojis. +const foodAndDrinkGroup = [ + strawberry, + cherries, + redApple, + watermelon, + peach, + tangerine, + mango, + pineapple, + banana, + lemon, + melon, + greenApple, + pear, + kiwiFruit, + olive, + blueberries, + grapes, + coconut, + tomato, + hotPepper, + ginger, + carrot, + roastedSweetPotato, + onion, + earOfCorn, + broccoli, + cucumber, + leafyGreen, + peaPod, + bellPepper, + avocado, + eggplant, + garlic, + potato, + beans, + chestnut, + peanuts, + bread, + flatbread, + croissant, + baguetteBread, + bagel, + waffle, + pancakes, + cooking, + egg, + cheeseWedge, + bacon, + cutOfMeat, + poultryLeg, + meatOnBone, + hamburger, + hotDog, + sandwich, + pretzel, + frenchFries, + pizza, + tamale, + taco, + burrito, + stuffedFlatbread, + falafel, + shallowPanOfFood, + spaghetti, + cannedFood, + fondue, + bowlWithSpoon, + greenSalad, + potOfFood, + curryRice, + steamingBowl, + oyster, + lobster, + sushi, + friedShrimp, + takeoutBox, + cookedRice, + bentoBox, + dumpling, + oden, + riceBall, + riceCracker, + fishCakeWithSwirl, + dango, + fortuneCookie, + moonCake, + shavedIce, + iceCream, + softIceCream, + pie, + shortcake, + custard, + birthdayCake, + cupcake, + lollipop, + candy, + chocolateBar, + doughnut, + cookie, + honeyPot, + salt, + butter, + popcorn, + iceCube, + jar, + cupWithStraw, + bubbleTea, + beverageBox, + glassOfMilk, + babyBottle, + teacupWithoutHandle, + hotBeverage, + teapot, + mate, + beerMug, + clinkingBeerMugs, + clinkingGlasses, + bottleWithPoppingCork, + wineGlass, + tumblerGlass, + pour, + cocktailGlass, + tropicalDrink, + sake, + chopsticks, + forkAndKnife, + spoon, + kitchenKnife, + forkAndKnifeWithPlate, +]; + +/// The "Travel and places" emojis. +const travelAndPlacesGroup = [ + stopSign, + construction, + policeCarLight, + fuelPump, + oilDrum, + compass, + wheel, + ringBuoy, + anchor, + busStop, + metro, + horizontalTrafficLight, + verticalTrafficLight, + kickScooter, + manualWheelchair, + motorizedWheelchair, + crutch, + bicycle, + motorScooter, + motorcycle, + sportUtilityVehicle, + automobile, + pickupTruck, + minibus, + deliveryTruck, + articulatedLorry, + tractor, + racingCar, + fireEngine, + ambulance, + policeCar, + taxi, + autoRickshaw, + bus, + lightRail, + monorail, + bulletTrain, + highSpeedTrain, + locomotive, + railwayCar, + tramCar, + trolleybus, + mountainRailway, + tram, + station, + busFront, + policeCarFront, + automobileFront, + taxiFront, + train, + ship, + passengerShip, + motorBoat, + speedboat, + ferry, + sailboat, + canoe, + suspensionRailway, + mountainCableway, + aerialTramway, + helicopter, + flyingSaucer, + rocket, + airplane, + airplaneDeparture, + airplaneArrival, + smallAirplane, + slide, + rollerCoaster, + ferrisWheel, + carouselHorse, + circusTent, + tokyoTower, + statueOfLiberty, + moai, + mountFuji, + classicalBuilding, + barberPole, + fountain, + shintoShrine, + synagogue, + mosque, + kaaba, + hinduTemple, + church, + wedding, + loveHotel, + japaneseCastle, + castle, + constructionBuilding, + officeBuilding, + factory, + departmentStore, + convenienceStore, + stadium, + bank, + school, + hotel, + japanesePostOffice, + postOffice, + hospital, + derelictHouse, + house, + houseWithGarden, + houses, + hut, + tent, + camping, + umbrellaOnGround, + cityscape, + sunsetCityscape, + sunset, + nightWithStars, + bridgeAtNight, + foggy, + railwayTrack, + motorway, + mapOfJapan, + worldMap, + globeWithMeridians, + seat, + luggage, +]; + +/// The "Activities and events" emojis. +const activitiesAndEventsGroup = [ + partyPopper, + confettiBall, + balloon, + birthdayCake, + ribbon, + wrappedGift, + sparkler, + fireworks, + firecracker, + redEnvelope, + diyaLamp, + pinata, + mirrorBall, + windChime, + carpStreamer, + japaneseDolls, + moonViewingCeremony, + pineDecoration, + tanabataTree, + christmasTree, + jackOLantern, + reminderRibbon, + goldMedal, + silverMedal, + bronzeMedal, + medal, + militaryMedal, + trophy, + loudspeaker, + soccerBall, + baseball, + softball, + basketball, + volleyball, + americanFootball, + rugbyFootball, + goalNet, + tennis, + badminton, + lacrosse, + cricketGame, + fieldHockey, + iceHockey, + curlingStone, + sled, + skis, + iceSkate, + rollerSkates, + balletShoes, + skateboard, + flagInHole, + directHit, + bowAndArrow, + flyingDisc, + boomerang, + kite, + fishingPole, + divingMask, + onePieceSwimsuit, + runningShirt, + martialArtsUniform, + boxingGlove, + eightBall, + pingPong, + bowling, + chessPawn, + yoYo, + jigsaw, + videoGame, + joystick, + alienMonster, + pistol, + die, + slotMachine, + flowerPlayingCards, + mahjongRedDragon, + joker, + wand, + gameDie, + camera, + cameraFlash, + framedPicture, + artistPalette, + paintbrush, + crayon, + needle, + thread, + yarn, + piano, + saxophone, + trumpet, + guitar, + banjo, + violin, + longDrum, + drum, + maracas, + flute, + accordion, + microphone, + headphone, + levelSlider, + controlKnobs, + studioMicrophone, + radio, + television, + videocassette, + videoCamera, + filmProjector, + movieCamera, + film, + clapper, + performingArts, + ticket, + admissionTickets, +]; + +/// The "Objects" emojis. +const objectsGroup = [ + mobilePhone, + telephone, + telephoneReceiver, + pager, + faxMachine, + electricPlug, + batteryFull, + batteryLow, + trackball, + computerDisk, + floppyDisk, + opticalDisk, + dvd, + desktopComputer, + laptopComputer, + keyboard, + printer, + computerMouse, + coin, + moneyWithWings, + dollar, + yen, + euro, + pound, + creditCard, + moneyBag, + receipt, + abacus, + balanceScale, + shoppingCart, + shoppingBags, + candle, + lightBulb, + flashlight, + redPaperLantern, + bricks, + window, + mirror, + door, + chair, + bed, + couchAndLamp, + shower, + bathtub, + toilet, + rollOfPaper, + plunger, + teddyBear, + nestingDoll, + safetyPin, + knot, + broom, + lotionBottle, + sponge, + soap, + toothbrush, + razor, + hairPick, + basket, + socks, + gloves, + scarf, + jeans, + tShirt, + runningShirt, + womansClothes, + necktie, + dress, + kimono, + sari, + onePieceSwimsuit, + bikini, + shorts, + swimBrief, + coat, + labCoat, + safetyVest, + rescueWorkersHelmet, + militaryHelmet, + graduationCap, + topHat, + womansHat, + billedCap, + crown, + fan, + schoolBackpack, + clutchBag, + purse, + handbag, + briefcase, + luggage, + umbrella, + closedUmbrella, + ring, + gemStone, + lipstick, + highHeeledShoe, + runningShoe, + mansShoe, + flatShoe, + flipFlop, + sandal, + boot, + hikingBoot, + probingCane, + sunglasses, + glasses, + goggles, + alembic, + petriDish, + testTube, + thermometer, + syringe, + pill, + adhesiveBandage, + stethoscope, + xRay, + dna, + telescope, + microscope, + satelliteAntenna, + satellite, + fireExtinguisher, + axe, + ladder, + bucket, + hook, + magnet, + toolbox, + clamp, + nutAndBolt, + screwdriver, + saw, + wrench, + hammer, + hammerAndPick, + hammerAndWrench, + pick, + gear, + link, + chains, + paperclip, + linkedPaperclips, + straightRuler, + triangularRuler, + paintbrush, + crayon, + pen, + fountainPen, + blackNib, + pencil, + memo, + openBook, + books, + ledger, + notebookWithDecorativeCover, + closedBook, + notebook, + greenBook, + blueBook, + orangeBook, + bookmark, + spiralNotepad, + pageFacingUp, + pageWithCurl, + clipboard, + bookmarkTabs, + openFileFolder, + fileFolder, + cardIndexDividers, + cardFileBox, + fileCabinet, + barChart, + chartIncreasing, + chartDecreasing, + cardIndex, + id, + pushpin, + roundPushpin, + scissors, + wastebasket, + newspaper, + rolledUpNewspaper, + label, + package, + closedMailboxWithRaised, + closedMailboxWithLowered, + openMailboxWithRaised, + openMailboxWithLowered, + postbox, + envelope, + eMail, + envelopeWithArrow, + incomingEnvelope, + loveLetter, + outboxTray, + inboxTray, + ballotBox, + twelveOClock, + twelveThirty, + oneOClock, + oneThirty, + twoOClock, + twoThirty, + threeOClock, + threeThirty, + fourOClock, + fourThirty, + fiveOClock, + fiveThirty, + sixOClock, + sixThirty, + sevenOClock, + sevenThirty, + eightOClock, + eightThirty, + nineOClock, + nineThirty, + tenOClock, + tenThirty, + elevenOClock, + elevenThirty, + stopwatch, + watch, + mantelpieceClock, + hourglassDone, + hourglassNotDone, + timerClock, + alarmClock, + calendar, + tearOffCalendar, + spiralCalendar, + placard, + bellhopBell, + bell, + postalHorn, + loudspeaker, + megaphone, + magnifyingGlassTiltedLeft, + magnifyingGlassTiltedRight, + crystalBall, + evilEye, + hamsa, + prayerBeads, + amphora, + urn, + coffin, + headstone, + cigarette, + bomb, + mouseTrap, + scroll, + crossedSwords, + dagger, + shield, + oldKey, + key, + lockWithKey, + lockWithPen, + locked, + unlocked, +]; + +/// The "Symbols" emojis. +const symbolsGroup = [ + redCircle, + orangeCircle, + yellowCircle, + greenCircle, + blueCircle, + purpleCircle, + brownCircle, + blackCircle, + whiteCircle, + redSquare, + orangeSquare, + yellowSquare, + greenSquare, + blueSquare, + purpleSquare, + brownSquare, + blackSquare, + whiteSquare, + redHeart, + orangeHeart, + yellowHeart, + greenHeart, + blueHeart, + purpleHeart, + brownHeart, + blackHeart, + whiteHeart, + pinkHeart, + lightBlueHeart, + grayHeart, + heart, + diamond, + club, + spade, + aries, + taurus, + gemini, + cancer, + leo, + virgo, + libra, + scorpio, + sagittarius, + capricorn, + aquarius, + pisces, + ophiuchus, + femaleSign, + maleSign, + transSign, + thoughtBubble, + angerBubble, + speechBubble, + speechBubbleLeftwards, + exclamationMarkWhite, + exclamation, + questionMarkWhite, + question, + exclamationQuestionMark, + exclamationDouble, + largeCircle, + x, + prohibited, + noBicycles, + noSmoking, + noLittering, + nonPotableWater, + noPedestrians, + noMobilePhones, + noUnderEighteen, + noSound, + mute, + aButton, + abButton, + bButton, + oButton, + clButton, + sos, + stop, + noEntry, + nameBadge, + hotSprings, + anger, + trianglePointedDown, + trianglePointedUp, + bargain, + secret, + congratulations, + passingGrade, + noVacancy, + discount, + prohibitedButton, + accept, + notFreeOfCharge, + freeOfCharge, + application, + openForBusiness, + monthlyAmount, + eightPointedStar, + diamondOrangeLarge, + diamondOrangeSmall, + bright, + dim, + vs, + cinema, + signalStrength, + repeat, + repeatOne, + shuffle, + arrowForward, + fastForward, + nextTrack, + playOrPause, + reverse, + rewind, + previous, + upwards, + fastUp, + downwards, + fastDown, + pause, + stopButton, + record, + eject, + phoneOff, + wireless, + vibration, + phoneWithArrow, + lowVolume, + mediumVolume, + highVolume, + musicalScore, + musicalNote, + musicalNotes, + radioactive, + biohazard, + warning, + childrenCrossing, + fleurDeLis, + tridentEmblem, + partAlternationMark, + japaneseSymbolForBeginner, + eightSpokedAsterisk, + sparkle, + recyclingSymbol, + currencyExchange, + dollarSign, + chartIncreasingWithYen, + reserved, + xMark, + checkMark, + checkMarkBlack, + checkMarkButton, + upArrow, + upRightArrow, + rightArrow, + downRightArrow, + downArrow, + downLeftArrow, + leftArrow, + upLeftArrow, + upDownArrow, + leftRightArrow, + rightArrowCurvingLeft, + leftArrowCurvingRight, + rightArrowCurvingUp, + rightArrowCurvingDown, + clockwiseArrows, + counterclockwiseArrows, + back, + on, + top, + end, + soon, + $new, + free, + up, + okButton, + cool, + ng, + information, + parking, + here, + serviceCharge, + vacancy, + symbols, + letters, + uppercaseLetters, + lowercaseLetters, + numbers, + numberSign, + asterisk, + zero, + one, + two, + three, + four, + five, + six, + seven, + eight, + nine, + ten, + diamondJewel, + blueDiamondLarge, + blueDiamondSmall, + globe, + atm, + metroSign, + waterCloset, + restroom, + mensRoom, + womensRoom, + wheelchairSymbol, + babySymbol, + elevator, + litter, + waterFaucet, + passportControl, + customs, + baggageClaim, + leftLuggage, + heartBox, + atomSymbol, + placeOfWorship, + om, + wheelOfDharma, + peaceSymbol, + yinYang, + starAndCrescent, + khanda, + latinCross, + orthodoxCross, + starOfDavid, + starOfDavidWithDot, + menorah, + infinity, + idButton, + medicalSymbol, + multiplicationX, + plusSign, + minusSign, + divisionSign, + equalsSign, + curlyLoop, + curlyLoopDouble, + wavyDash, + copyright, + registered, + tradeMark, + radioButton, + whiteSquareButton, + blackSquareMedium, + blackSquareMediumSmall, + blackSquareSmall, + buttonBlackSquare, + whiteSquareMedium, + whiteSquareMediumSmall, + whiteSquareSmall, + eyeBubble, +]; + +/// The "Flags" emojis. +const flagsGroup = [ + chequeredFlag, + triangularFlag, + crossedFlags, + blackFlag, + whiteFlag, + rainbowFlag, + transFlag, + pirateFlag, + ascensionIslandFlag, + andorraFlag, + unitedArabEmiratesFlag, + afghanistanFlag, + antiguaBarbudaFlag, + anguillaFlag, + albaniaFlag, + armeniaFlag, + angolaFlag, + antarcticaFlag, + argentinaFlag, + americanSamoaFlag, + austriaFlag, + australiaFlag, + arubaFlag, + alandIslandsFlag, + azerbaijanFlag, + bosniaHerzegovinaFlag, + barbadosFlag, + bangladeshFlag, + belgiumFlag, + burkinaFasoFlag, + bulgariaFlag, + bahrainFlag, + burundiFlag, + beninFlag, + stBarthelemyFlag, + bermudaFlag, + bruneiFlag, + boliviaFlag, + caribbeanNetherlandsFlag, + brazilFlag, + bahamasFlag, + bhutanFlag, + bouvetIslandFlag, + botswanaFlag, + belarusFlag, + belizeFlag, + canadaFlag, + cocosIslandsFlag, + congoKinshasaFlag, + centralAfricanRepublicFlag, + congoBrazzavilleFlag, + switzerlandFlag, + coteDivoireFlag, + cookIslandsFlag, + chileFlag, + cameroonFlag, + chinaFlag, + colombiaFlag, + clippertonIslandFlag, + costaRicaFlag, + cubaFlag, + capeVerdeFlag, + curacaoFlag, + christmasIslandFlag, + cyprusFlag, + czechiaFlag, + germanyFlag, + diegoGarciaFlag, + djiboutiFlag, + denmarkFlag, + dominicaFlag, + dominicanrepublicFlag, + algeriaFlag, + ceutaMelillaFlag, + ecuadorFlag, + estoniaFlag, + egyptFlag, + westernSaharaFlag, + eritreaFlag, + spainFlag, + ethiopiaFlag, + europeanUnionFlag, + finlandFlag, + fijiFlag, + falklandIslandsFlag, + micronesiaFlag, + faroeIslandsFlag, + franceFlag, + gabonFlag, + unitedKingdomFlag, + grenadaFlag, + georgiaFlag, + frenchguianaFlag, + guernseyFlag, + ghanaFlag, + gibraltarFlag, + greenlandFlag, + gambiaFlag, + guineaFlag, + guadeloupeFlag, + equatorialGuineaFlag, + greeceFlag, + southGeorgiaSouthFlag, + guatemalaFlag, + guamFlag, + guineaBissauFlag, + guyanaFlag, + hongKongSarChinaFlag, + heardMcdonaldislandsFlag, + hondurasFlag, + croatiaFlag, + haitiFlag, + hungaryFlag, + canaryIslandsFlag, + indonesiaFlag, + irelandFlag, + israelFlag, + isleOfManFlag, + indiaFlag, + britishIndianOceanTerritoryFlag, + iraqFlag, + iranFlag, + icelandFlag, + italyFlag, + jerseyFlag, + jamaicaFlag, + jordanFlag, + japanFlag, + kenyaFlag, + kyrgyzstanFlag, + cambodiaFlag, + kiribatiFlag, + comorosFlag, + stkittsnevisFlag, + northkoreaFlag, + southkoreaFlag, + kuwaitFlag, + caymanislandsFlag, + kazakhstanFlag, + laosFlag, + lebanonFlag, + stluciaFlag, + liechtensteinFlag, + srilankaFlag, + liberiaFlag, + lesothoFlag, + lithuaniaFlag, + luxembourgFlag, + latviaFlag, + libyaFlag, + moroccoFlag, + monacoFlag, + moldovaFlag, + montenegroFlag, + stMartinFlag, + madagascarFlag, + marshallIslandsFlag, + macedoniaFlag, + maliFlag, + myanmarFlag, + mongoliaFlag, + macauSarChinaFlag, + northernMarianaIslandsFlag, + martiniqueFlag, + mauritaniaFlag, + montserratFlag, + maltaFlag, + mauritiusFlag, + maldivesFlag, + malawiFlag, + mexicoFlag, + malaysiaFlag, + mozambiqueFlag, + namibiaFlag, + newCaledoniaFlag, + nigerFlag, + norfolkIslandFlag, + nigeriaFlag, + nicaraguaFlag, + netherlandsFlag, + norwayFlag, + nepalFlag, + nauruFlag, + niueFlag, + newZealandFlag, + omanFlag, + panamaFlag, + peruFlag, + frenchPolynesiaFlag, + papuaNewGuineaFlag, + philippinesFlag, + pakistanFlag, + polandFlag, + stPierreMiquelonFlag, + pitcairnIslandsFlag, + puertoRicoFlag, + palestinianTerritoriesFlag, + portugalFlag, + palauFlag, + paraguayFlag, + qatarFlag, + reunionFlag, + romaniaFlag, + serbiaFlag, + russiaFlag, + rwandaFlag, + saudiArabiaFlag, + solomonIslandsFlag, + seychellesFlag, + sudanFlag, + swedenFlag, + singaporeFlag, + stHelenaFlag, + sloveniaFlag, + svalbardJanmayenFlag, + slovakiaFlag, + sierraLeoneFlag, + sanMarinoFlag, + senegalFlag, + somaliaFlag, + surinameFlag, + southSudanFlag, + saoTomePrincipeFlag, + elSalvadorFlag, + sintMaartenFlag, + syriaFlag, + swazilandFlag, + tristanDaCunhaFlag, + turksCaicosislandsFlag, + chadFlag, + frenchSouthernTerritoriesFlag, + togoFlag, + thailandFlag, + tajikistanFlag, + tokelauFlag, + timorLesteFlag, + turkmenistanFlag, + tunisiaFlag, + tongaFlag, + turkeyFlag, + trinidadTobagoFlag, + tuvaluFlag, + taiwanFlag, + tanzaniaFlag, + ukraineFlag, + ugandaFlag, + usOutlyingislandsFlag, + unitedNationsFlag, + unitedStatesFlag, + uruguayFlag, + uzbekistanFlag, + vaticancityFlag, + stVincentGrenadinesFlag, + venezuelaFlag, + britishVirginislandsFlag, + usVirginIslandsFlag, + vietnamFlag, + vanuatuFlag, + wallisFutunaFlag, + samoaFlag, + kosovoFlag, + yemenFlag, + mayotteFlag, + southAfricaFlag, + zambiaFlag, + zimbabweFlag, + englandFlag, + scotlandFlag, + walesFlag, +]; + +/// All emojis. +const all = [ + smile, + smileWithBigEyes, + grin, + grinning, + laughing, + grinSweat, + joy, + rofl, + loudlyCrying, + wink, + kissing, + kissingSmilingEyes, + kissingClosedEyes, + kissingHeart, + heartFace, + heartEyes, + starStruck, + partyingFace, + melting, + upsideDownFace, + slightlyHappy, + happyCry, + holdingBackTears, + blush, + warmSmile, + relieved, + smirk, + sleep, + sleepy, + drool, + yum, + stuckOutTongue, + squintingTongue, + winkyTongue, + zanyFace, + woozy, + pensive, + pleading, + grimacing, + expressionless, + neutralFace, + mouthNone, + faceInClouds, + dottedLineFace, + zipperFace, + salute, + thinkingFace, + shushingFace, + handOverMouth, + smilingEyesWithHandOverMouth, + yawn, + hugFace, + peeking, + screaming, + raisedEyebrow, + monocle, + unamused, + rollingEyes, + exhale, + triumph, + angry, + rage, + cursing, + sad, + sweat, + worried, + concerned, + cry, + bigFrown, + frown, + diagonalMouth, + slightlyFrowning, + anxiousWithSweat, + scared, + anguished, + gasp, + mouthOpen, + surprised, + astonished, + flushed, + mindBlown, + scrunchedMouth, + scrunchedEyes, + weary, + distraught, + xEyes, + dizzyFace, + shakingFace, + coldFace, + hotFace, + sick, + vomit, + sneeze, + thermometerFace, + bandageFace, + mask, + liar, + halo, + cowboy, + moneyFace, + nerdFace, + sunglassesFace, + disguise, + clown, + impSmile, + impFrown, + ghost, + jackOLantern, + poop, + robot, + alien, + alienMonster, + moonFaceFirstQuarter, + moonFaceLastQuarter, + moonFaceNew, + moonFaceFull, + sunWithFace, + skullAndCrossbones, + ogre, + goblin, + fire, + oneHundred, + dizzy, + star, + glowingStar, + sparkles, + collision, + dash, + sweatDroplets, + zzz, + hole, + partyPopper, + seeNoEvilMonkey, + hearNoEvilMonkey, + speakNoEvilMonkey, + smileyCat, + smileCat, + joyCat, + heartEyesCat, + smirkCat, + kissingCat, + screamCat, + cryingCatFace, + poutingCat, + redHeart, + orangeHeart, + yellowHeart, + greenHeart, + lightBlueHeart, + blueHeart, + purpleHeart, + brownHeart, + blackHeart, + greyHeart, + whiteHeart, + pinkHeart, + cupid, + giftHeart, + sparklingHeart, + heartGrow, + beatingHeart, + revolvingHearts, + twoHearts, + loveLetter, + heartBox, + heart, + heartExclamationPoint, + bandagedHeart, + brokenHeart, + fireHeart, + kiss, + hugging, + bustsInSilhouette, + bustInSilhouette, + speakingHead, + footprints, + brain, + anatomicalHeart, + lungs, + blood, + microbe, + tooth, + bone, + skull, + eyes, + eye, + mouth, + bitingLip, + tongue, + nose, + ear, + hearingAid, + foot, + leg, + legMechanical, + armMechanical, + muscle, + clap, + thumbsUp, + thumbsDown, + heartHands, + raisingHands, + openHands, + palmsUp, + handshake, + fistRightwards, + fistLeftwards, + raisedFist, + fist, + palmDown, + palmUp, + rightwardsHand, + leftwardsHand, + pushRightwards, + pushLeftwards, + wave, + backHand, + palm, + raisedHand, + vulcan, + loveYouGesture, + metal, + v, + crossedFingers, + handWithIndexFingerAndThumbCrossed, + callMeHand, + pinchedFingers, + pinch, + ok, + pointing, + pointRight, + pointLeft, + indexFinger, + pointUp, + pointDown, + middleFinger, + writingHand, + selfie, + foldedHands, + nailCare, + bow, + raisingHand, + tippingHand, + gestureOk, + noGesture, + shrug, + facepalm, + frowning, + pouting, + deaf, + massage, + haircut, + sauna, + bathe, + inBed, + yoga, + walkingWithCane, + personInMotorizedWheelchair, + personInManualWheelchair, + kneeling, + standing, + walking, + running, + cartwheel, + liftingWeights, + bouncingBall, + handball, + biking, + mountainBiking, + climbing, + wrestling, + juggling, + golfing, + horseRacing, + fencing, + skier, + snowboarder, + parachute, + surfing, + rowingBoat, + swimming, + waterPolo, + merperson, + fairy, + genie, + elf, + mage, + vampire, + zombie, + troll, + superhero, + supervillain, + ninja, + mxClaus, + angel, + guard, + royalty, + tuxedo, + veil, + astronaut, + constructionWorker, + police, + detective, + pilot, + scientist, + healthWorker, + mechanic, + factoryWorker, + firefighter, + farmer, + teacher, + student, + officeWorker, + judge, + technologist, + singer, + artist, + cook, + turban, + headscarf, + guaPiMao, + baby, + child, + adult, + elder, + whiteHair, + redHair, + blondHair, + curlyHair, + bald, + beard, + levitatingSuit, + dancerWoman, + dancerMan, + bunnyEars, + holdingHands, + holdingHandsWomen, + holdingHandsMen, + holdingHandsWomanAndMan, + kissPeople, + kissWomanAndMan, + kissManAndMan, + kissWomanAndWoman, + peopleWithHeart, + heartWithWomanAndMan, + heartWithManAndMan, + heartWithWomanAndWoman, + pregnant, + breastFeeding, + personFeedingBaby, + family, + bouquet, + rose, + wiltedFlower, + hibiscus, + tulip, + lotus, + cherryBlossom, + whiteFlower, + rosette, + hyacinth, + sunflower, + blossom, + fallenLeaf, + mapleLeaf, + mushroom, + earOfRice, + plant, + herb, + leaves, + shamrock, + luck, + pottedPlant, + cactus, + palmTree, + deciduousTree, + evergreenTree, + wood, + nest, + nestWithEggs, + rock, + mountain, + snowMountain, + snowflake, + snowmanWithSnow, + snowman, + fog, + thermometer, + fire, + volcano, + desert, + nationalPark, + desertIsland, + beach, + sunrise, + sunriseOverMountains, + rainbow, + bubbles, + ocean, + windFace, + cyclone, + tornado, + electricity, + umbrellaInRain, + droplet, + rainCloud, + cloudWithLightning, + cloudWithLightningAndRain, + cloudWithSnow, + cloud, + sunBehindRainCloud, + sunBehindLargeCloud, + partlySunny, + sunBehindSmallCloud, + sunny, + sunWithFace, + moonFaceFull, + moonFaceNew, + moonFaceLastQuarter, + moonFaceFirstQuarter, + star, + glowingStar, + sparkles, + dizzy, + crescentMoon, + comet, + hole, + shootingStar, + milkyWay, + globeShowingEuropeAfrica, + globeShowingAmericas, + globeShowingAsiaAustralia, + ringedPlanet, + newMoon, + waxingCrescentMoon, + firstQuarterMoon, + waxingGibbousMoon, + fullMoon, + waningGibbousMoon, + lastQuarterMoon, + waningCrescentMoon, + seeNoEvilMonkey, + hearNoEvilMonkey, + speakNoEvilMonkey, + monkeyFace, + lionFace, + tigerFace, + catFace, + dogFace, + wolf, + bearFace, + polarBear, + koala, + panda, + hamster, + mouseFace, + rabbitFace, + foxFace, + raccoon, + cowFace, + pigFace, + snout, + boar, + zebra, + unicorn, + horseFace, + moose, + dragonFace, + lizard, + dragon, + tRex, + dinosaur, + turtle, + crocodile, + snake, + frog, + rabbit, + mouse, + rat, + cat, + blackCat, + poodle, + dog, + guideDog, + serviceDog, + pig, + racehorse, + donkey, + cow, + ox, + waterBuffalo, + bison, + ram, + sheep, + goat, + deer, + llama, + sloth, + kangaroo, + elephant, + mammoth, + rhino, + hippo, + giraffe, + leopard, + tiger, + monkey, + gorilla, + orangutan, + camel, + bactrianCamel, + chipmunk, + beaver, + skunk, + badger, + hedgehog, + otter, + bat, + wingfly, + feather, + bird, + blackBird, + rooster, + chicken, + hatchingChick, + babyChick, + hatchedChick, + eagle, + owl, + parrot, + peace, + dodo, + swan, + duck, + goose, + flamingo, + peacock, + turkey, + penguin, + seal, + shark, + dolphin, + humpbackWhale, + whale, + fish, + tropicalFish, + blowfish, + shrimp, + lobster, + crab, + squid, + octopus, + jellyfish, + oyster, + coral, + scorpion, + spider, + spiderWeb, + shell, + snail, + ant, + cricket, + beetle, + mosquito, + cockroach, + fly, + bee, + ladyBug, + butterfly, + bug, + worm, + microbe, + pawprints, + strawberry, + cherries, + redApple, + watermelon, + peach, + tangerine, + mango, + pineapple, + banana, + lemon, + melon, + greenApple, + pear, + kiwiFruit, + olive, + blueberries, + grapes, + coconut, + tomato, + hotPepper, + ginger, + carrot, + roastedSweetPotato, + onion, + earOfCorn, + broccoli, + cucumber, + leafyGreen, + peaPod, + bellPepper, + avocado, + eggplant, + garlic, + potato, + beans, + chestnut, + peanuts, + bread, + flatbread, + croissant, + baguetteBread, + bagel, + waffle, + pancakes, + cooking, + egg, + cheeseWedge, + bacon, + cutOfMeat, + poultryLeg, + meatOnBone, + hamburger, + hotDog, + sandwich, + pretzel, + frenchFries, + pizza, + tamale, + taco, + burrito, + stuffedFlatbread, + falafel, + shallowPanOfFood, + spaghetti, + cannedFood, + fondue, + bowlWithSpoon, + greenSalad, + potOfFood, + curryRice, + steamingBowl, + oyster, + lobster, + sushi, + friedShrimp, + takeoutBox, + cookedRice, + bentoBox, + dumpling, + oden, + riceBall, + riceCracker, + fishCakeWithSwirl, + dango, + fortuneCookie, + moonCake, + shavedIce, + iceCream, + softIceCream, + pie, + shortcake, + custard, + birthdayCake, + cupcake, + lollipop, + candy, + chocolateBar, + doughnut, + cookie, + honeyPot, + salt, + butter, + popcorn, + iceCube, + jar, + cupWithStraw, + bubbleTea, + beverageBox, + glassOfMilk, + babyBottle, + teacupWithoutHandle, + hotBeverage, + teapot, + mate, + beerMug, + clinkingBeerMugs, + clinkingGlasses, + bottleWithPoppingCork, + wineGlass, + tumblerGlass, + pour, + cocktailGlass, + tropicalDrink, + sake, + chopsticks, + forkAndKnife, + spoon, + kitchenKnife, + forkAndKnifeWithPlate, + stopSign, + construction, + policeCarLight, + fuelPump, + oilDrum, + compass, + wheel, + ringBuoy, + anchor, + busStop, + metro, + horizontalTrafficLight, + verticalTrafficLight, + kickScooter, + manualWheelchair, + motorizedWheelchair, + crutch, + bicycle, + motorScooter, + motorcycle, + sportUtilityVehicle, + automobile, + pickupTruck, + minibus, + deliveryTruck, + articulatedLorry, + tractor, + racingCar, + fireEngine, + ambulance, + policeCar, + taxi, + autoRickshaw, + bus, + lightRail, + monorail, + bulletTrain, + highSpeedTrain, + locomotive, + railwayCar, + tramCar, + trolleybus, + mountainRailway, + tram, + station, + busFront, + policeCarFront, + automobileFront, + taxiFront, + train, + ship, + passengerShip, + motorBoat, + speedboat, + ferry, + sailboat, + canoe, + suspensionRailway, + mountainCableway, + aerialTramway, + helicopter, + flyingSaucer, + rocket, + airplane, + airplaneDeparture, + airplaneArrival, + smallAirplane, + slide, + rollerCoaster, + ferrisWheel, + carouselHorse, + circusTent, + tokyoTower, + statueOfLiberty, + moai, + mountFuji, + classicalBuilding, + barberPole, + fountain, + shintoShrine, + synagogue, + mosque, + kaaba, + hinduTemple, + church, + wedding, + loveHotel, + japaneseCastle, + castle, + constructionBuilding, + officeBuilding, + factory, + departmentStore, + convenienceStore, + stadium, + bank, + school, + hotel, + japanesePostOffice, + postOffice, + hospital, + derelictHouse, + house, + houseWithGarden, + houses, + hut, + tent, + camping, + umbrellaOnGround, + cityscape, + sunsetCityscape, + sunset, + nightWithStars, + bridgeAtNight, + foggy, + railwayTrack, + motorway, + mapOfJapan, + worldMap, + globeWithMeridians, + seat, + luggage, + partyPopper, + confettiBall, + balloon, + birthdayCake, + ribbon, + wrappedGift, + sparkler, + fireworks, + firecracker, + redEnvelope, + diyaLamp, + pinata, + mirrorBall, + windChime, + carpStreamer, + japaneseDolls, + moonViewingCeremony, + pineDecoration, + tanabataTree, + christmasTree, + jackOLantern, + reminderRibbon, + goldMedal, + silverMedal, + bronzeMedal, + medal, + militaryMedal, + trophy, + loudspeaker, + soccerBall, + baseball, + softball, + basketball, + volleyball, + americanFootball, + rugbyFootball, + goalNet, + tennis, + badminton, + lacrosse, + cricketGame, + fieldHockey, + iceHockey, + curlingStone, + sled, + skis, + iceSkate, + rollerSkates, + balletShoes, + skateboard, + flagInHole, + directHit, + bowAndArrow, + flyingDisc, + boomerang, + kite, + fishingPole, + divingMask, + onePieceSwimsuit, + runningShirt, + martialArtsUniform, + boxingGlove, + eightBall, + pingPong, + bowling, + chessPawn, + yoYo, + jigsaw, + videoGame, + joystick, + alienMonster, + pistol, + die, + slotMachine, + flowerPlayingCards, + mahjongRedDragon, + joker, + wand, + gameDie, + camera, + cameraFlash, + framedPicture, + artistPalette, + paintbrush, + crayon, + needle, + thread, + yarn, + piano, + saxophone, + trumpet, + guitar, + banjo, + violin, + longDrum, + drum, + maracas, + flute, + accordion, + microphone, + headphone, + levelSlider, + controlKnobs, + studioMicrophone, + radio, + television, + videocassette, + videoCamera, + filmProjector, + movieCamera, + film, + clapper, + performingArts, + ticket, + admissionTickets, + mobilePhone, + telephone, + telephoneReceiver, + pager, + faxMachine, + electricPlug, + batteryFull, + batteryLow, + trackball, + computerDisk, + floppyDisk, + opticalDisk, + dvd, + desktopComputer, + laptopComputer, + keyboard, + printer, + computerMouse, + coin, + moneyWithWings, + dollar, + yen, + euro, + pound, + creditCard, + moneyBag, + receipt, + abacus, + balanceScale, + shoppingCart, + shoppingBags, + candle, + lightBulb, + flashlight, + redPaperLantern, + bricks, + window, + mirror, + door, + chair, + bed, + couchAndLamp, + shower, + bathtub, + toilet, + rollOfPaper, + plunger, + teddyBear, + nestingDoll, + safetyPin, + knot, + broom, + lotionBottle, + sponge, + soap, + toothbrush, + razor, + hairPick, + basket, + socks, + gloves, + scarf, + jeans, + tShirt, + runningShirt, + womansClothes, + necktie, + dress, + kimono, + sari, + onePieceSwimsuit, + bikini, + shorts, + swimBrief, + coat, + labCoat, + safetyVest, + rescueWorkersHelmet, + militaryHelmet, + graduationCap, + topHat, + womansHat, + billedCap, + crown, + fan, + schoolBackpack, + clutchBag, + purse, + handbag, + briefcase, + luggage, + umbrella, + closedUmbrella, + ring, + gemStone, + lipstick, + highHeeledShoe, + runningShoe, + mansShoe, + flatShoe, + flipFlop, + sandal, + boot, + hikingBoot, + probingCane, + sunglasses, + glasses, + goggles, + alembic, + petriDish, + testTube, + thermometer, + syringe, + pill, + adhesiveBandage, + stethoscope, + xRay, + dna, + telescope, + microscope, + satelliteAntenna, + satellite, + fireExtinguisher, + axe, + ladder, + bucket, + hook, + magnet, + toolbox, + clamp, + nutAndBolt, + screwdriver, + saw, + wrench, + hammer, + hammerAndPick, + hammerAndWrench, + pick, + gear, + link, + chains, + paperclip, + linkedPaperclips, + straightRuler, + triangularRuler, + paintbrush, + crayon, + pen, + fountainPen, + blackNib, + pencil, + memo, + openBook, + books, + ledger, + notebookWithDecorativeCover, + closedBook, + notebook, + greenBook, + blueBook, + orangeBook, + bookmark, + spiralNotepad, + pageFacingUp, + pageWithCurl, + clipboard, + bookmarkTabs, + openFileFolder, + fileFolder, + cardIndexDividers, + cardFileBox, + fileCabinet, + barChart, + chartIncreasing, + chartDecreasing, + cardIndex, + id, + pushpin, + roundPushpin, + scissors, + wastebasket, + newspaper, + rolledUpNewspaper, + label, + package, + closedMailboxWithRaised, + closedMailboxWithLowered, + openMailboxWithRaised, + openMailboxWithLowered, + postbox, + envelope, + eMail, + envelopeWithArrow, + incomingEnvelope, + loveLetter, + outboxTray, + inboxTray, + ballotBox, + twelveOClock, + twelveThirty, + oneOClock, + oneThirty, + twoOClock, + twoThirty, + threeOClock, + threeThirty, + fourOClock, + fourThirty, + fiveOClock, + fiveThirty, + sixOClock, + sixThirty, + sevenOClock, + sevenThirty, + eightOClock, + eightThirty, + nineOClock, + nineThirty, + tenOClock, + tenThirty, + elevenOClock, + elevenThirty, + stopwatch, + watch, + mantelpieceClock, + hourglassDone, + hourglassNotDone, + timerClock, + alarmClock, + calendar, + tearOffCalendar, + spiralCalendar, + placard, + bellhopBell, + bell, + postalHorn, + loudspeaker, + megaphone, + magnifyingGlassTiltedLeft, + magnifyingGlassTiltedRight, + crystalBall, + evilEye, + hamsa, + prayerBeads, + amphora, + urn, + coffin, + headstone, + cigarette, + bomb, + mouseTrap, + scroll, + crossedSwords, + dagger, + shield, + oldKey, + key, + lockWithKey, + lockWithPen, + locked, + unlocked, + redCircle, + orangeCircle, + yellowCircle, + greenCircle, + blueCircle, + purpleCircle, + brownCircle, + blackCircle, + whiteCircle, + redSquare, + orangeSquare, + yellowSquare, + greenSquare, + blueSquare, + purpleSquare, + brownSquare, + blackSquare, + whiteSquare, + redHeart, + orangeHeart, + yellowHeart, + greenHeart, + blueHeart, + purpleHeart, + brownHeart, + blackHeart, + whiteHeart, + pinkHeart, + lightBlueHeart, + grayHeart, + heart, + diamond, + club, + spade, + aries, + taurus, + gemini, + cancer, + leo, + virgo, + libra, + scorpio, + sagittarius, + capricorn, + aquarius, + pisces, + ophiuchus, + femaleSign, + maleSign, + transSign, + thoughtBubble, + angerBubble, + speechBubble, + speechBubbleLeftwards, + exclamationMarkWhite, + exclamation, + questionMarkWhite, + question, + exclamationQuestionMark, + exclamationDouble, + largeCircle, + x, + prohibited, + noBicycles, + noSmoking, + noLittering, + nonPotableWater, + noPedestrians, + noMobilePhones, + noUnderEighteen, + noSound, + mute, + aButton, + abButton, + bButton, + oButton, + clButton, + sos, + stop, + noEntry, + nameBadge, + hotSprings, + anger, + trianglePointedDown, + trianglePointedUp, + bargain, + secret, + congratulations, + passingGrade, + noVacancy, + discount, + prohibitedButton, + accept, + notFreeOfCharge, + freeOfCharge, + application, + openForBusiness, + monthlyAmount, + eightPointedStar, + diamondOrangeLarge, + diamondOrangeSmall, + bright, + dim, + vs, + cinema, + signalStrength, + repeat, + repeatOne, + shuffle, + arrowForward, + fastForward, + nextTrack, + playOrPause, + reverse, + rewind, + previous, + upwards, + fastUp, + downwards, + fastDown, + pause, + stopButton, + record, + eject, + phoneOff, + wireless, + vibration, + phoneWithArrow, + lowVolume, + mediumVolume, + highVolume, + musicalScore, + musicalNote, + musicalNotes, + radioactive, + biohazard, + warning, + childrenCrossing, + fleurDeLis, + tridentEmblem, + partAlternationMark, + japaneseSymbolForBeginner, + eightSpokedAsterisk, + sparkle, + recyclingSymbol, + currencyExchange, + dollarSign, + chartIncreasingWithYen, + reserved, + xMark, + checkMark, + checkMarkBlack, + checkMarkButton, + upArrow, + upRightArrow, + rightArrow, + downRightArrow, + downArrow, + downLeftArrow, + leftArrow, + upLeftArrow, + upDownArrow, + leftRightArrow, + rightArrowCurvingLeft, + leftArrowCurvingRight, + rightArrowCurvingUp, + rightArrowCurvingDown, + clockwiseArrows, + counterclockwiseArrows, + back, + on, + top, + end, + soon, + $new, + free, + up, + okButton, + cool, + ng, + information, + parking, + here, + serviceCharge, + vacancy, + symbols, + letters, + uppercaseLetters, + lowercaseLetters, + numbers, + numberSign, + asterisk, + zero, + one, + two, + three, + four, + five, + six, + seven, + eight, + nine, + ten, + diamondJewel, + blueDiamondLarge, + blueDiamondSmall, + globe, + atm, + metroSign, + waterCloset, + restroom, + mensRoom, + womensRoom, + wheelchairSymbol, + babySymbol, + elevator, + litter, + waterFaucet, + passportControl, + customs, + baggageClaim, + leftLuggage, + heartBox, + atomSymbol, + placeOfWorship, + om, + wheelOfDharma, + peaceSymbol, + yinYang, + starAndCrescent, + khanda, + latinCross, + orthodoxCross, + starOfDavid, + starOfDavidWithDot, + menorah, + infinity, + idButton, + medicalSymbol, + multiplicationX, + plusSign, + minusSign, + divisionSign, + equalsSign, + curlyLoop, + curlyLoopDouble, + wavyDash, + copyright, + registered, + tradeMark, + radioButton, + whiteSquareButton, + blackSquareMedium, + blackSquareMediumSmall, + blackSquareSmall, + buttonBlackSquare, + whiteSquareMedium, + whiteSquareMediumSmall, + whiteSquareSmall, + eyeBubble, + chequeredFlag, + triangularFlag, + crossedFlags, + blackFlag, + whiteFlag, + rainbowFlag, + transFlag, + pirateFlag, + ascensionIslandFlag, + andorraFlag, + unitedArabEmiratesFlag, + afghanistanFlag, + antiguaBarbudaFlag, + anguillaFlag, + albaniaFlag, + armeniaFlag, + angolaFlag, + antarcticaFlag, + argentinaFlag, + americanSamoaFlag, + austriaFlag, + australiaFlag, + arubaFlag, + alandIslandsFlag, + azerbaijanFlag, + bosniaHerzegovinaFlag, + barbadosFlag, + bangladeshFlag, + belgiumFlag, + burkinaFasoFlag, + bulgariaFlag, + bahrainFlag, + burundiFlag, + beninFlag, + stBarthelemyFlag, + bermudaFlag, + bruneiFlag, + boliviaFlag, + caribbeanNetherlandsFlag, + brazilFlag, + bahamasFlag, + bhutanFlag, + bouvetIslandFlag, + botswanaFlag, + belarusFlag, + belizeFlag, + canadaFlag, + cocosIslandsFlag, + congoKinshasaFlag, + centralAfricanRepublicFlag, + congoBrazzavilleFlag, + switzerlandFlag, + coteDivoireFlag, + cookIslandsFlag, + chileFlag, + cameroonFlag, + chinaFlag, + colombiaFlag, + clippertonIslandFlag, + costaRicaFlag, + cubaFlag, + capeVerdeFlag, + curacaoFlag, + christmasIslandFlag, + cyprusFlag, + czechiaFlag, + germanyFlag, + diegoGarciaFlag, + djiboutiFlag, + denmarkFlag, + dominicaFlag, + dominicanrepublicFlag, + algeriaFlag, + ceutaMelillaFlag, + ecuadorFlag, + estoniaFlag, + egyptFlag, + westernSaharaFlag, + eritreaFlag, + spainFlag, + ethiopiaFlag, + europeanUnionFlag, + finlandFlag, + fijiFlag, + falklandIslandsFlag, + micronesiaFlag, + faroeIslandsFlag, + franceFlag, + gabonFlag, + unitedKingdomFlag, + grenadaFlag, + georgiaFlag, + frenchguianaFlag, + guernseyFlag, + ghanaFlag, + gibraltarFlag, + greenlandFlag, + gambiaFlag, + guineaFlag, + guadeloupeFlag, + equatorialGuineaFlag, + greeceFlag, + southGeorgiaSouthFlag, + guatemalaFlag, + guamFlag, + guineaBissauFlag, + guyanaFlag, + hongKongSarChinaFlag, + heardMcdonaldislandsFlag, + hondurasFlag, + croatiaFlag, + haitiFlag, + hungaryFlag, + canaryIslandsFlag, + indonesiaFlag, + irelandFlag, + israelFlag, + isleOfManFlag, + indiaFlag, + britishIndianOceanTerritoryFlag, + iraqFlag, + iranFlag, + icelandFlag, + italyFlag, + jerseyFlag, + jamaicaFlag, + jordanFlag, + japanFlag, + kenyaFlag, + kyrgyzstanFlag, + cambodiaFlag, + kiribatiFlag, + comorosFlag, + stkittsnevisFlag, + northkoreaFlag, + southkoreaFlag, + kuwaitFlag, + caymanislandsFlag, + kazakhstanFlag, + laosFlag, + lebanonFlag, + stluciaFlag, + liechtensteinFlag, + srilankaFlag, + liberiaFlag, + lesothoFlag, + lithuaniaFlag, + luxembourgFlag, + latviaFlag, + libyaFlag, + moroccoFlag, + monacoFlag, + moldovaFlag, + montenegroFlag, + stMartinFlag, + madagascarFlag, + marshallIslandsFlag, + macedoniaFlag, + maliFlag, + myanmarFlag, + mongoliaFlag, + macauSarChinaFlag, + northernMarianaIslandsFlag, + martiniqueFlag, + mauritaniaFlag, + montserratFlag, + maltaFlag, + mauritiusFlag, + maldivesFlag, + malawiFlag, + mexicoFlag, + malaysiaFlag, + mozambiqueFlag, + namibiaFlag, + newCaledoniaFlag, + nigerFlag, + norfolkIslandFlag, + nigeriaFlag, + nicaraguaFlag, + netherlandsFlag, + norwayFlag, + nepalFlag, + nauruFlag, + niueFlag, + newZealandFlag, + omanFlag, + panamaFlag, + peruFlag, + frenchPolynesiaFlag, + papuaNewGuineaFlag, + philippinesFlag, + pakistanFlag, + polandFlag, + stPierreMiquelonFlag, + pitcairnIslandsFlag, + puertoRicoFlag, + palestinianTerritoriesFlag, + portugalFlag, + palauFlag, + paraguayFlag, + qatarFlag, + reunionFlag, + romaniaFlag, + serbiaFlag, + russiaFlag, + rwandaFlag, + saudiArabiaFlag, + solomonIslandsFlag, + seychellesFlag, + sudanFlag, + swedenFlag, + singaporeFlag, + stHelenaFlag, + sloveniaFlag, + svalbardJanmayenFlag, + slovakiaFlag, + sierraLeoneFlag, + sanMarinoFlag, + senegalFlag, + somaliaFlag, + surinameFlag, + southSudanFlag, + saoTomePrincipeFlag, + elSalvadorFlag, + sintMaartenFlag, + syriaFlag, + swazilandFlag, + tristanDaCunhaFlag, + turksCaicosislandsFlag, + chadFlag, + frenchSouthernTerritoriesFlag, + togoFlag, + thailandFlag, + tajikistanFlag, + tokelauFlag, + timorLesteFlag, + turkmenistanFlag, + tunisiaFlag, + tongaFlag, + turkeyFlag, + trinidadTobagoFlag, + tuvaluFlag, + taiwanFlag, + tanzaniaFlag, + ukraineFlag, + ugandaFlag, + usOutlyingislandsFlag, + unitedNationsFlag, + unitedStatesFlag, + uruguayFlag, + uzbekistanFlag, + vaticancityFlag, + stVincentGrenadinesFlag, + venezuelaFlag, + britishVirginislandsFlag, + usVirginIslandsFlag, + vietnamFlag, + vanuatuFlag, + wallisFutunaFlag, + samoaFlag, + kosovoFlag, + yemenFlag, + mayotteFlag, + southAfricaFlag, + zambiaFlag, + zimbabweFlag, + englandFlag, + scotlandFlag, + walesFlag, +]; diff --git a/packages/neon_framework/pubspec.yaml b/packages/neon_framework/pubspec.yaml index b3081dcbc0a..aaac395bbfd 100644 --- a/packages/neon_framework/pubspec.yaml +++ b/packages/neon_framework/pubspec.yaml @@ -102,6 +102,7 @@ dev_dependencies: permission_handler_platform_interface: ^4.2.3 plugin_platform_interface: ^2.1.8 shared_preferences: ^2.3.3 + string_normalizer: ^0.3.1 url_launcher_platform_interface: ^2.3.2 vector_graphics_compiler: ^1.1.15 version: ^3.0.2 diff --git a/tool/generate-assets.sh b/tool/generate-assets.sh index f5e9c865488..e0af9a211d9 100755 --- a/tool/generate-assets.sh +++ b/tool/generate-assets.sh @@ -85,6 +85,9 @@ done < <(find external/nextcloud-server/{core/img,apps/*/img} -name "*.svg" -not ( cd packages/neon_framework precompile_assets + + fvm dart generate_emojis.dart + fvm dart fix --apply lib/src/utils/emojis.dart ) copy_app_svg dashboard external/nextcloud-server/apps/dashboard