[Pkg-javascript-commits] [node-emojis-list] 01/02: Import Upstream version 2.1.0

Thorsten Alteholz alteholz at moszumanska.debian.org
Wed Nov 16 19:15:55 UTC 2016


This is an automated email from the git hooks/post-receive script.

alteholz pushed a commit to branch master
in repository node-emojis-list.

commit a31edb466ce1e93723375ecb1878a90003a70bb7
Author: Thorsten Alteholz <debian at alteholz.de>
Date:   Wed Nov 16 20:15:48 2016 +0100

    Import Upstream version 2.1.0
---
 .bumpedrc           |   36 +
 .editorconfig       |   22 +
 .gitattributes      |    1 +
 .gitignore          |   33 +
 .npmignore          |   16 +
 .npmrc              |    1 +
 .travis.yml         |    6 +
 CHANGELOG.md        |   70 ++
 LICENSE.md          |    9 +
 README.md           |   48 +
 bower.json          |   36 +
 dist/emojis-list.js |    6 +
 dist/example.html   |   14 +
 gulpfile.coffee     |   47 +
 index.js            | 2479 +++++++++++++++++++++++++++++++++++++++++++++++++++
 package.json        |   51 ++
 update.js           |   36 +
 17 files changed, 2911 insertions(+)

diff --git a/.bumpedrc b/.bumpedrc
new file mode 100644
index 0000000..931eb88
--- /dev/null
+++ b/.bumpedrc
@@ -0,0 +1,36 @@
+files: [
+  'package.json'
+  'bower.json'
+]
+
+plugins:
+
+  prerelease:
+
+    'Linting config files':
+      plugin: 'bumped-finepack'
+
+  postrelease:
+
+    'Compiling browser version':
+      plugin: 'bumped-terminal'
+      command: 'gulp'
+
+    'Generating CHANGELOG file':
+      plugin: 'bumped-changelog'
+
+    'Commiting new version':
+      plugin: 'bumped-terminal'
+      command: 'git add CHANGELOG.md bower.json package.json dist && git commit -m "Release $newVersion"'
+
+    'Detecting problem before publish':
+      plugin: 'bumped-terminal'
+      command: 'git-dirty && npm test'
+
+    'Publishing tag at Github':
+      plugin: 'bumped-terminal'
+      command: 'git tag $newVersion && git push && git push --tags'
+
+    'Publishing at NPM':
+      plugin: 'bumped-terminal'
+      command: 'npm publish'
diff --git a/.editorconfig b/.editorconfig
new file mode 100755
index 0000000..0d8138e
--- /dev/null
+++ b/.editorconfig
@@ -0,0 +1,22 @@
+# http://editorconfig.org
+
+root = true
+
+[*]
+indent_style = space
+indent_size = 2
+end_of_line = lf
+charset = utf-8
+trim_trailing_whitespace = true
+insert_final_newline = true
+max_line_length = 80
+indent_brace_style = 1TBS
+spaces_around_operators = true
+quote_type = auto
+
+[package.json]
+indent_style = space
+indent_size = 2
+
+[*.md]
+trim_trailing_whitespace = false
diff --git a/.gitattributes b/.gitattributes
new file mode 100755
index 0000000..176a458
--- /dev/null
+++ b/.gitattributes
@@ -0,0 +1 @@
+* text=auto
diff --git a/.gitignore b/.gitignore
new file mode 100755
index 0000000..733c471
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,33 @@
+############################
+# npm
+############################
+node_modules
+npm-debug.log
+
+
+############################
+# tmp, editor & OS files
+############################
+.tmp
+*.swo
+*.swp
+*.swn
+*.swm
+.DS_STORE
+*#
+*~
+.idea
+nbproject
+
+
+############################
+# Tests
+############################
+testApp
+coverage
+
+
+############################
+# Other
+############################
+.node_history
diff --git a/.npmignore b/.npmignore
new file mode 100755
index 0000000..7ec7473
--- /dev/null
+++ b/.npmignore
@@ -0,0 +1,16 @@
+.idea
+.project
+*.sublime-*
+.DS_Store
+*.seed
+*.log
+*.csv
+*.dat
+*.out
+*.pid
+*.swp
+*.swo
+node_modules
+coverage
+*.tgz
+*.xml
diff --git a/.npmrc b/.npmrc
new file mode 100644
index 0000000..4d936e8
--- /dev/null
+++ b/.npmrc
@@ -0,0 +1 @@
+unsafe-perm=true
diff --git a/.travis.yml b/.travis.yml
new file mode 100755
index 0000000..97bccea
--- /dev/null
+++ b/.travis.yml
@@ -0,0 +1,6 @@
+language: node_js
+node_js:
+  - "0.12"
+  - "0.11"
+  - "0.10"
+  - "iojs"
diff --git a/CHANGELOG.md b/CHANGELOG.md
new file mode 100644
index 0000000..d81a55c
--- /dev/null
+++ b/CHANGELOG.md
@@ -0,0 +1,70 @@
+<a name="2.1.0"></a>
+# 2.1.0 (2016-10-03)
+
+* Fetch new emoji ([7dbe84d](https://github.com/kikobeats/emojis-list/commit/7dbe84d))
+
+
+
+<a name="2.0.1"></a>
+## 2.0.1 (2016-05-12)
+
+* Fix typo ([3808909](https://github.com/kikobeats/emojis-list/commit/3808909))
+
+
+
+<a name="2.0.0"></a>
+# 2.0.0 (2016-05-12)
+
+* Add update script ([f846dd6](https://github.com/kikobeats/emojis-list/commit/f846dd6))
+* Block dependencies in last version ([1d9e0a5](https://github.com/kikobeats/emojis-list/commit/1d9e0a5))
+* Extract main file name ([9ffe7bb](https://github.com/kikobeats/emojis-list/commit/9ffe7bb))
+* Remove unnecessary files ([4c34729](https://github.com/kikobeats/emojis-list/commit/4c34729))
+* Update docs, special webpack setup is not necessary ([c4aefe9](https://github.com/kikobeats/emojis-list/commit/c4aefe9))
+* Update example ([1e2ae03](https://github.com/kikobeats/emojis-list/commit/1e2ae03))
+* Update how to generate emojis array ([b56bad9](https://github.com/kikobeats/emojis-list/commit/b56bad9))
+* Update main file based in the new interface ([996fccb](https://github.com/kikobeats/emojis-list/commit/996fccb))
+
+
+
+<a name="1.0.3"></a>
+## 1.0.3 (2016-05-12)
+
+* Add standard as linter ([5e939d6](https://github.com/kikobeats/emojis-list/commit/5e939d6))
+* Change interface ([16bc0c0](https://github.com/kikobeats/emojis-list/commit/16bc0c0))
+* Generate emoji file ([fbcf8e9](https://github.com/kikobeats/emojis-list/commit/fbcf8e9))
+* Remove unnecessary special doc ([2b12bec](https://github.com/kikobeats/emojis-list/commit/2b12bec))
+* chore(package): update browserify to version 13.0.1 ([e2c98bf](https://github.com/kikobeats/emojis-list/commit/e2c98bf))
+* chore(package): update gulp-header to version 1.8.1 ([28de793](https://github.com/kikobeats/emojis-list/commit/28de793))
+
+
+
+<a name="1.0.2"></a>
+## 1.0.2 (2016-05-05)
+
+* fixed #2 ([9a6abe7](https://github.com/kikobeats/emojis-list/commit/9a6abe7)), closes [#2](https://github.com/kikobeats/emojis-list/issues/2)
+* Fomar using standard ([5202f9f](https://github.com/kikobeats/emojis-list/commit/5202f9f))
+* Update badge ([53fad9b](https://github.com/kikobeats/emojis-list/commit/53fad9b))
+
+
+
+<a name="1.0.1"></a>
+## 1.0.1 (2016-04-13)
+
+* lock versions ([4a5d82e](https://github.com/kikobeats/emojis-list/commit/4a5d82e))
+* setup devDependencies ([d1de0fc](https://github.com/kikobeats/emojis-list/commit/d1de0fc))
+* update bumped ([9941038](https://github.com/kikobeats/emojis-list/commit/9941038))
+* Update package.json ([6c14b74](https://github.com/kikobeats/emojis-list/commit/6c14b74))
+* Update README.md ([1d9beeb](https://github.com/kikobeats/emojis-list/commit/1d9beeb))
+* Update README.md ([73f215e](https://github.com/kikobeats/emojis-list/commit/73f215e))
+* Update tests ([a94f7dc](https://github.com/kikobeats/emojis-list/commit/a94f7dc))
+
+
+
+<a name="1.0.0"></a>
+# 1.0.0 (2015-05-12)
+
+* first commit ([a65b79d](https://github.com/kikobeats/emojis-list/commit/a65b79d))
+* updated ([9f0564c](https://github.com/kikobeats/emojis-list/commit/9f0564c))
+
+
+
diff --git a/LICENSE.md b/LICENSE.md
new file mode 100755
index 0000000..c0928ae
--- /dev/null
+++ b/LICENSE.md
@@ -0,0 +1,9 @@
+The MIT License (MIT)
+
+Copyright © 2015 Kiko Beats
+
+Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
diff --git a/README.md b/README.md
new file mode 100755
index 0000000..1de02f9
--- /dev/null
+++ b/README.md
@@ -0,0 +1,48 @@
+# emojis-list
+
+[![Dependency status](http://img.shields.io/david/Kikobeats/emojis-list.svg?style=flat-square)](https://david-dm.org/Kikobeats/emojis-list)
+[![Dev Dependencies Status](http://img.shields.io/david/dev/Kikobeats/emojis-list.svg?style=flat-square)](https://david-dm.org/Kikobeats/emojis-list#info=devDependencies)
+[![NPM Status](http://img.shields.io/npm/dm/emojis-list.svg?style=flat-square)](https://www.npmjs.org/package/emojis-list)
+[![Donate](https://img.shields.io/badge/donate-paypal-blue.svg?style=flat-square)](https://paypal.me/kikobeats)
+
+> Complete list of standard Unicode Hex Character Code that represent emojis.
+
+**NOTE**: The lists is related with the Unicode Hex Character Code. The representation of the emoji depend of the system. Will be possible that the system don't have all the representations.
+
+## Install
+
+```bash
+npm install emojis-list --save
+```
+
+If you want to use in the browser (powered by [Browserify](http://browserify.org/)):
+
+```bash
+bower install emojis-list --save
+```
+
+and later link in your HTML:
+
+```html
+<script src="bower_components/emojis-list/dist/emojis-list.js"></script>
+```
+
+## Usage
+
+```
+var emojis = require('emojis-list');
+console.log(emojis[0]);
+// => 🀄
+```
+
+## Related
+
+* [emojis-unicode](https://github.com/Kikobeats/emojis-unicode) – Complete list of standard Unicode codes that represent emojis.
+* [emojis-keywords](https://github.com/Kikobeats/emojis-keywords) – Complete list of am emoji shortcuts.
+* [is-emoji-keyword](https://github.com/Kikobeats/is-emoji-keyword) – Check if a word is a emoji shortcut.
+* [is-standard-emoji](https://github.com/kikobeats/is-standard-emoji) – Simply way to check if a emoji is a standard emoji.
+* [trim-emoji](https://github.com/Kikobeats/trim-emoji) – Deletes ':' from the begin and the end of an emoji shortcut.
+
+## License
+
+MIT © [Kiko Beats](http://www.kikobeats.com)
diff --git a/bower.json b/bower.json
new file mode 100644
index 0000000..e52d258
--- /dev/null
+++ b/bower.json
@@ -0,0 +1,36 @@
+{
+  "name": "emojis-list",
+  "description": "Complete list of standard emojis.",
+  "homepage": "https://github.com/Kikobeats/emojis-list",
+  "version": "2.1.0",
+  "main": "./dist/emojis-list.js",
+  "authors": [
+    {
+      "name": "Kiko Beats",
+      "email": "josefrancisco.verdu at gmail.com",
+      "homepage": "https://github.com/Kikobeats"
+    }
+  ],
+  "repository": {
+    "type": "git",
+    "url": "git+https://github.com/kikobeats/emojis-list.git"
+  },
+  "bugs": {
+    "url": "https://github.com/Kikobeats/emojis-list/issues"
+  },
+  "keywords": [
+    "archive",
+    "complete",
+    "emoji",
+    "list",
+    "standard"
+  ],
+  "ignore": [
+    "**/.*",
+    "bower_components",
+    "node_modules",
+    "test",
+    "tests"
+  ],
+  "license": "MIT"
+}
diff --git a/dist/emojis-list.js b/dist/emojis-list.js
new file mode 100644
index 0000000..98bd039
--- /dev/null
+++ b/dist/emojis-list.js
@@ -0,0 +1,6 @@
+/**
+ * emojis-list - Complete list of standard emojis.
+ * @version v2.1.0
+ * @link    https://github.com/Kikobeats/emojis-list
+ * @license MIT
+ */require=function r(e,n,t){function o(u,f){if(!n[u]){if(!e[u]){var c="function"==typeof require&&require;if(!f&&c)return c(u,!0);if(i)return i(u,!0);var a=new Error("Cannot find module '"+u+"'");throw a.code="MODULE_NOT_FOUND",a}var p=n[u]={exports:{}};e[u][0].call(p.exports,function(r){var n=e[u][1][r];return o(n?n:r)},p,p.exports,r,e,n,t)}return n[u].exports}for(var i="function"==typeof require&&require,u=0;u<t.length;u++)o(t[u]);return o}({"emojis-list":[function(r,e,n){e.exports=[" [...]
\ No newline at end of file
diff --git a/dist/example.html b/dist/example.html
new file mode 100644
index 0000000..45c9eb7
--- /dev/null
+++ b/dist/example.html
@@ -0,0 +1,14 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+  <meta charset="UTF-8">
+  <title>emoji-keywords</title>
+</head>
+<body>
+  <script src="emojis-list.js" type="text/javascript" charset="utf-8"></script>
+  <script>
+    var emojis = require('emojis-list')
+    console.log(emojis[0])
+  </script>
+</body>
+</html>
diff --git a/gulpfile.coffee b/gulpfile.coffee
new file mode 100644
index 0000000..0a79688
--- /dev/null
+++ b/gulpfile.coffee
@@ -0,0 +1,47 @@
+'use strict'
+
+# -- Dependencies --------------------------------------------------------------
+
+gulp       = require 'gulp'
+gutil      = require 'gulp-util'
+browserify = require 'browserify'
+header     = require 'gulp-header'
+uglify     = require 'gulp-uglify'
+buffer     = require 'vinyl-buffer'
+pkg        = require './package.json'
+source     = require 'vinyl-source-stream'
+
+# -- Files ---------------------------------------------------------------------
+
+src =
+  main: './index.js'
+
+module =
+  filename : "#{pkg.name}.js"
+  shortcut : "#{pkg.name}"
+  dist     : 'dist'
+
+banner = [
+           "/**"
+           " * <%= pkg.name %> - <%= pkg.description %>"
+           " * @version v<%= pkg.version %>"
+           " * @link    <%= pkg.homepage %>"
+           " * @license <%= pkg.license %>"
+           " */"].join("\n")
+
+# -- Tasks ---------------------------------------------------------------------
+
+gulp.task 'browserify', ->
+  browserify
+      extensions: ['.js']
+    .require(src.main, { expose: module.shortcut})
+    .bundle()
+  .pipe source module.filename
+  .pipe buffer()
+  .pipe uglify()
+  .pipe header banner, pkg: pkg
+  .pipe gulp.dest module.dist
+
+gulp.task 'default', ->
+  gulp.start 'browserify'
+  return
diff --git a/index.js b/index.js
new file mode 100644
index 0000000..d59beab
--- /dev/null
+++ b/index.js
@@ -0,0 +1,2479 @@
+module.exports = [
+  "🀄",
+  "🃏",
+  "🅰",
+  "🅱",
+  "🅾",
+  "🅿",
+  "🆎",
+  "🆑",
+  "🆒",
+  "🆓",
+  "🆔",
+  "🆕",
+  "🆖",
+  "🆗",
+  "🆘",
+  "🆙",
+  "🆚",
+  "🇦🇨",
+  "🇦🇩",
+  "🇦🇪",
+  "🇦🇫",
+  "🇦🇬",
+  "🇦🇮",
+  "🇦🇱",
+  "🇦🇲",
+  "🇦🇴",
+  "🇦🇶",
+  "🇦🇷",
+  "🇦🇸",
+  "🇦🇹",
+  "🇦🇺",
+  "🇦🇼",
+  "🇦🇽",
+  "🇦🇿",
+  "🇦",
+  "🇧🇦",
+  "🇧🇧",
+  "🇧🇩",
+  "🇧🇪",
+  "🇧🇫",
+  "🇧🇬",
+  "🇧🇭",
+  "🇧🇮",
+  "🇧🇯",
+  "🇧🇱",
+  "🇧🇲",
+  "🇧🇳",
+  "🇧🇴",
+  "🇧🇶",
+  "🇧🇷",
+  "🇧🇸",
+  "🇧🇹",
+  "🇧🇻",
+  "🇧🇼",
+  "🇧🇾",
+  "🇧🇿",
+  "🇧",
+  "🇨🇦",
+  "🇨🇨",
+  "🇨🇩",
+  "🇨🇫",
+  "🇨🇬",
+  "🇨🇭",
+  "🇨🇮",
+  "🇨🇰",
+  "🇨🇱",
+  "🇨🇲",
+  "🇨🇳",
+  "🇨🇴",
+  "🇨🇵",
+  "🇨🇷",
+  "🇨🇺",
+  "🇨🇻",
+  "🇨🇼",
+  "🇨🇽",
+  "🇨🇾",
+  "🇨🇿",
+  "🇨",
+  "🇩🇪",
+  "🇩🇬",
+  "🇩🇯",
+  "🇩🇰",
+  "🇩🇲",
+  "🇩🇴",
+  "🇩🇿",
+  "🇩",
+  "🇪🇦",
+  "🇪🇨",
+  "🇪🇪",
+  "🇪🇬",
+  "🇪🇭",
+  "🇪🇷",
+  "🇪🇸",
+  "🇪🇹",
+  "🇪🇺",
+  "🇪",
+  "🇫🇮",
+  "🇫🇯",
+  "🇫🇰",
+  "🇫🇲",
+  "🇫🇴",
+  "🇫🇷",
+  "🇫",
+  "🇬🇦",
+  "🇬🇧",
+  "🇬🇩",
+  "🇬🇪",
+  "🇬🇫",
+  "🇬🇬",
+  "🇬🇭",
+  "🇬🇮",
+  "🇬🇱",
+  "🇬🇲",
+  "🇬🇳",
+  "🇬🇵",
+  "🇬🇶",
+  "🇬🇷",
+  "🇬🇸",
+  "🇬🇹",
+  "🇬🇺",
+  "🇬🇼",
+  "🇬🇾",
+  "🇬",
+  "🇭🇰",
+  "🇭🇲",
+  "🇭🇳",
+  "🇭🇷",
+  "🇭🇹",
+  "🇭🇺",
+  "🇭",
+  "🇮🇨",
+  "🇮🇩",
+  "🇮🇪",
+  "🇮🇱",
+  "🇮🇲",
+  "🇮🇳",
+  "🇮🇴",
+  "🇮🇶",
+  "🇮🇷",
+  "🇮🇸",
+  "🇮🇹",
+  "🇮",
+  "🇯🇪",
+  "🇯🇲",
+  "🇯🇴",
+  "🇯🇵",
+  "🇯",
+  "🇰🇪",
+  "🇰🇬",
+  "🇰🇭",
+  "🇰🇮",
+  "🇰🇲",
+  "🇰🇳",
+  "🇰🇵",
+  "🇰🇷",
+  "🇰🇼",
+  "🇰🇾",
+  "🇰🇿",
+  "🇰",
+  "🇱🇦",
+  "🇱🇧",
+  "🇱🇨",
+  "🇱🇮",
+  "🇱🇰",
+  "🇱🇷",
+  "🇱🇸",
+  "🇱🇹",
+  "🇱🇺",
+  "🇱🇻",
+  "🇱🇾",
+  "🇱",
+  "🇲🇦",
+  "🇲🇨",
+  "🇲🇩",
+  "🇲🇪",
+  "🇲🇫",
+  "🇲🇬",
+  "🇲🇭",
+  "🇲🇰",
+  "🇲🇱",
+  "🇲🇲",
+  "🇲🇳",
+  "🇲🇴",
+  "🇲🇵",
+  "🇲🇶",
+  "🇲🇷",
+  "🇲🇸",
+  "🇲🇹",
+  "🇲🇺",
+  "🇲🇻",
+  "🇲🇼",
+  "🇲🇽",
+  "🇲🇾",
+  "🇲🇿",
+  "🇲",
+  "🇳🇦",
+  "🇳🇨",
+  "🇳🇪",
+  "🇳🇫",
+  "🇳🇬",
+  "🇳🇮",
+  "🇳🇱",
+  "🇳🇴",
+  "🇳🇵",
+  "🇳🇷",
+  "🇳🇺",
+  "🇳🇿",
+  "🇳",
+  "🇴🇲",
+  "🇴",
+  "🇵🇦",
+  "🇵🇪",
+  "🇵🇫",
+  "🇵🇬",
+  "🇵🇭",
+  "🇵🇰",
+  "🇵🇱",
+  "🇵🇲",
+  "🇵🇳",
+  "🇵🇷",
+  "🇵🇸",
+  "🇵🇹",
+  "🇵🇼",
+  "🇵🇾",
+  "🇵",
+  "🇶🇦",
+  "🇶",
+  "🇷🇪",
+  "🇷🇴",
+  "🇷🇸",
+  "🇷🇺",
+  "🇷🇼",
+  "🇷",
+  "🇸🇦",
+  "🇸🇧",
+  "🇸🇨",
+  "🇸🇩",
+  "🇸🇪",
+  "🇸🇬",
+  "🇸🇭",
+  "🇸🇮",
+  "🇸🇯",
+  "🇸🇰",
+  "🇸🇱",
+  "🇸🇲",
+  "🇸🇳",
+  "🇸🇴",
+  "🇸🇷",
+  "🇸🇸",
+  "🇸🇹",
+  "🇸🇻",
+  "🇸🇽",
+  "🇸🇾",
+  "🇸🇿",
+  "🇸",
+  "🇹🇦",
+  "🇹🇨",
+  "🇹🇩",
+  "🇹🇫",
+  "🇹🇬",
+  "🇹🇭",
+  "🇹🇯",
+  "🇹🇰",
+  "🇹🇱",
+  "🇹🇲",
+  "🇹🇳",
+  "🇹🇴",
+  "🇹🇷",
+  "🇹🇹",
+  "🇹🇻",
+  "🇹🇼",
+  "🇹🇿",
+  "🇹",
+  "🇺🇦",
+  "🇺🇬",
+  "🇺🇲",
+  "🇺🇳",
+  "🇺🇸",
+  "🇺🇾",
+  "🇺🇿",
+  "🇺",
+  "🇻🇦",
+  "🇻🇨",
+  "🇻🇪",
+  "🇻🇬",
+  "🇻🇮",
+  "🇻🇳",
+  "🇻🇺",
+  "🇻",
+  "🇼🇫",
+  "🇼🇸",
+  "🇼",
+  "🇽🇰",
+  "🇽",
+  "🇾🇪",
+  "🇾🇹",
+  "🇾",
+  "🇿🇦",
+  "🇿🇲",
+  "🇿🇼",
+  "🇿",
+  "🈁",
+  "🈂",
+  "🈚",
+  "🈯",
+  "🈲",
+  "🈳",
+  "🈴",
+  "🈵",
+  "🈶",
+  "🈷",
+  "🈸",
+  "🈹",
+  "🈺",
+  "🉐",
+  "🉑",
+  "🌀",
+  "🌁",
+  "🌂",
+  "🌃",
+  "🌄",
+  "🌅",
+  "🌆",
+  "🌇",
+  "🌈",
+  "🌉",
+  "🌊",
+  "🌋",
+  "🌌",
+  "🌍",
+  "🌎",
+  "🌏",
+  "🌐",
+  "🌑",
+  "🌒",
+  "🌓",
+  "🌔",
+  "🌕",
+  "🌖",
+  "🌗",
+  "🌘",
+  "🌙",
+  "🌚",
+  "🌛",
+  "🌜",
+  "🌝",
+  "🌞",
+  "🌟",
+  "🌠",
+  "🌡",
+  "🌤",
+  "🌥",
+  "🌦",
+  "🌧",
+  "🌨",
+  "🌩",
+  "🌪",
+  "🌫",
+  "🌬",
+  "🌭",
+  "🌮",
+  "🌯",
+  "🌰",
+  "🌱",
+  "🌲",
+  "🌳",
+  "🌴",
+  "🌵",
+  "🌶",
+  "🌷",
+  "🌸",
+  "🌹",
+  "🌺",
+  "🌻",
+  "🌼",
+  "🌽",
+  "🌾",
+  "🌿",
+  "🍀",
+  "🍁",
+  "🍂",
+  "🍃",
+  "🍄",
+  "🍅",
+  "🍆",
+  "🍇",
+  "🍈",
+  "🍉",
+  "🍊",
+  "🍋",
+  "🍌",
+  "🍍",
+  "🍎",
+  "🍏",
+  "🍐",
+  "🍑",
+  "🍒",
+  "🍓",
+  "🍔",
+  "🍕",
+  "🍖",
+  "🍗",
+  "🍘",
+  "🍙",
+  "🍚",
+  "🍛",
+  "🍜",
+  "🍝",
+  "🍞",
+  "🍟",
+  "🍠",
+  "🍡",
+  "🍢",
+  "🍣",
+  "🍤",
+  "🍥",
+  "🍦",
+  "🍧",
+  "🍨",
+  "🍩",
+  "🍪",
+  "🍫",
+  "🍬",
+  "🍭",
+  "🍮",
+  "🍯",
+  "🍰",
+  "🍱",
+  "🍲",
+  "🍳",
+  "🍴",
+  "🍵",
+  "🍶",
+  "🍷",
+  "🍸",
+  "🍹",
+  "🍺",
+  "🍻",
+  "🍼",
+  "🍽",
+  "🍾",
+  "🍿",
+  "🎀",
+  "🎁",
+  "🎂",
+  "🎃",
+  "🎄",
+  "🎅🏻",
+  "🎅🏼",
+  "🎅🏽",
+  "🎅🏾",
+  "🎅🏿",
+  "🎅",
+  "🎆",
+  "🎇",
+  "🎈",
+  "🎉",
+  "🎊",
+  "🎋",
+  "🎌",
+  "🎍",
+  "🎎",
+  "🎏",
+  "🎐",
+  "🎑",
+  "🎒",
+  "🎓",
+  "🎖",
+  "🎗",
+  "🎙",
+  "🎚",
+  "🎛",
+  "🎞",
+  "🎟",
+  "🎠",
+  "🎡",
+  "🎢",
+  "🎣",
+  "🎤",
+  "🎥",
+  "🎦",
+  "🎧",
+  "🎨",
+  "🎩",
+  "🎪",
+  "🎫",
+  "🎬",
+  "🎭",
+  "🎮",
+  "🎯",
+  "🎰",
+  "🎱",
+  "🎲",
+  "🎳",
+  "🎴",
+  "🎵",
+  "🎶",
+  "🎷",
+  "🎸",
+  "🎹",
+  "🎺",
+  "🎻",
+  "🎼",
+  "🎽",
+  "🎾",
+  "🎿",
+  "🏀",
+  "🏁",
+  "🏂🏻",
+  "🏂🏼",
+  "🏂🏽",
+  "🏂🏾",
+  "🏂🏿",
+  "🏂",
+  "🏃🏻‍♀️",
+  "🏃🏻‍♂️",
+  "🏃🏻",
+  "🏃🏼‍♀️",
+  "🏃🏼‍♂️",
+  "🏃🏼",
+  "🏃🏽‍♀️",
+  "🏃🏽‍♂️",
+  "🏃🏽",
+  "🏃🏾‍♀️",
+  "🏃🏾‍♂️",
+  "🏃🏾",
+  "🏃🏿‍♀️",
+  "🏃🏿‍♂️",
+  "🏃🏿",
+  "🏃‍♀️",
+  "🏃‍♂️",
+  "🏃",
+  "🏄🏻‍♀️",
+  "🏄🏻‍♂️",
+  "🏄🏻",
+  "🏄🏼‍♀️",
+  "🏄🏼‍♂️",
+  "🏄🏼",
+  "🏄🏽‍♀️",
+  "🏄🏽‍♂️",
+  "🏄🏽",
+  "🏄🏾‍♀️",
+  "🏄🏾‍♂️",
+  "🏄🏾",
+  "🏄🏿‍♀️",
+  "🏄🏿‍♂️",
+  "🏄🏿",
+  "🏄‍♀️",
+  "🏄‍♂️",
+  "🏄",
+  "🏅",
+  "🏆",
+  "🏇🏻",
+  "🏇🏼",
+  "🏇🏽",
+  "🏇🏾",
+  "🏇🏿",
+  "🏇",
+  "🏈",
+  "🏉",
+  "🏊🏻‍♀️",
+  "🏊🏻‍♂️",
+  "🏊🏻",
+  "🏊🏼‍♀️",
+  "🏊🏼‍♂️",
+  "🏊🏼",
+  "🏊🏽‍♀️",
+  "🏊🏽‍♂️",
+  "🏊🏽",
+  "🏊🏾‍♀️",
+  "🏊🏾‍♂️",
+  "🏊🏾",
+  "🏊🏿‍♀️",
+  "🏊🏿‍♂️",
+  "🏊🏿",
+  "🏊‍♀️",
+  "🏊‍♂️",
+  "🏊",
+  "🏋🏻‍♀️",
+  "🏋🏻‍♂️",
+  "🏋🏻",
+  "🏋🏼‍♀️",
+  "🏋🏼‍♂️",
+  "🏋🏼",
+  "🏋🏽‍♀️",
+  "🏋🏽‍♂️",
+  "🏋🏽",
+  "🏋🏾‍♀️",
+  "🏋🏾‍♂️",
+  "🏋🏾",
+  "🏋🏿‍♀️",
+  "🏋🏿‍♂️",
+  "🏋🏿",
+  "🏋️‍♀️",
+  "🏋️‍♂️",
+  "🏋",
+  "🏌🏻‍♀️",
+  "🏌🏻‍♂️",
+  "🏌🏻",
+  "🏌🏼‍♀️",
+  "🏌🏼‍♂️",
+  "🏌🏼",
+  "🏌🏽‍♀️",
+  "🏌🏽‍♂️",
+  "🏌🏽",
+  "🏌🏾‍♀️",
+  "🏌🏾‍♂️",
+  "🏌🏾",
+  "🏌🏿‍♀️",
+  "🏌🏿‍♂️",
+  "🏌🏿",
+  "🏌️‍♀️",
+  "🏌️‍♂️",
+  "🏌",
+  "🏍",
+  "🏎",
+  "🏏",
+  "🏐",
+  "🏑",
+  "🏒",
+  "🏓",
+  "🏔",
+  "🏕",
+  "🏖",
+  "🏗",
+  "🏘",
+  "🏙",
+  "🏚",
+  "🏛",
+  "🏜",
+  "🏝",
+  "🏞",
+  "🏟",
+  "🏠",
+  "🏡",
+  "🏢",
+  "🏣",
+  "🏤",
+  "🏥",
+  "🏦",
+  "🏧",
+  "🏨",
+  "🏩",
+  "🏪",
+  "🏫",
+  "🏬",
+  "🏭",
+  "🏮",
+  "🏯",
+  "🏰",
+  "🏳️‍🌈",
+  "🏳",
+  "🏴‍☠️",
+  "🏴",
+  "🏵",
+  "🏷",
+  "🏸",
+  "🏹",
+  "🏺",
+  "🏻",
+  "🏼",
+  "🏽",
+  "🏾",
+  "🏿",
+  "🐀",
+  "🐁",
+  "🐂",
+  "🐃",
+  "🐄",
+  "🐅",
+  "🐆",
+  "🐇",
+  "🐈",
+  "🐉",
+  "🐊",
+  "🐋",
+  "🐌",
+  "🐍",
+  "🐎",
+  "🐏",
+  "🐐",
+  "🐑",
+  "🐒",
+  "🐓",
+  "🐔",
+  "🐕",
+  "🐖",
+  "🐗",
+  "🐘",
+  "🐙",
+  "🐚",
+  "🐛",
+  "🐜",
+  "🐝",
+  "🐞",
+  "🐟",
+  "🐠",
+  "🐡",
+  "🐢",
+  "🐣",
+  "🐤",
+  "🐥",
+  "🐦",
+  "🐧",
+  "🐨",
+  "🐩",
+  "🐪",
+  "🐫",
+  "🐬",
+  "🐭",
+  "🐮",
+  "🐯",
+  "🐰",
+  "🐱",
+  "🐲",
+  "🐳",
+  "🐴",
+  "🐵",
+  "🐶",
+  "🐷",
+  "🐸",
+  "🐹",
+  "🐺",
+  "🐻",
+  "🐼",
+  "🐽",
+  "🐾",
+  "🐿",
+  "👀",
+  "👁‍🗨",
+  "👁",
+  "👂🏻",
+  "👂🏼",
+  "👂🏽",
+  "👂🏾",
+  "👂🏿",
+  "👂",
+  "👃🏻",
+  "👃🏼",
+  "👃🏽",
+  "👃🏾",
+  "👃🏿",
+  "👃",
+  "👄",
+  "👅",
+  "👆🏻",
+  "👆🏼",
+  "👆🏽",
+  "👆🏾",
+  "👆🏿",
+  "👆",
+  "👇🏻",
+  "👇🏼",
+  "👇🏽",
+  "👇🏾",
+  "👇🏿",
+  "👇",
+  "👈🏻",
+  "👈🏼",
+  "👈🏽",
+  "👈🏾",
+  "👈🏿",
+  "👈",
+  "👉🏻",
+  "👉🏼",
+  "👉🏽",
+  "👉🏾",
+  "👉🏿",
+  "👉",
+  "👊🏻",
+  "👊🏼",
+  "👊🏽",
+  "👊🏾",
+  "👊🏿",
+  "👊",
+  "👋🏻",
+  "👋🏼",
+  "👋🏽",
+  "👋🏾",
+  "👋🏿",
+  "👋",
+  "👌🏻",
+  "👌🏼",
+  "👌🏽",
+  "👌🏾",
+  "👌🏿",
+  "👌",
+  "👍🏻",
+  "👍🏼",
+  "👍🏽",
+  "👍🏾",
+  "👍🏿",
+  "👍",
+  "👎🏻",
+  "👎🏼",
+  "👎🏽",
+  "👎🏾",
+  "👎🏿",
+  "👎",
+  "👏🏻",
+  "👏🏼",
+  "👏🏽",
+  "👏🏾",
+  "👏🏿",
+  "👏",
+  "👐🏻",
+  "👐🏼",
+  "👐🏽",
+  "👐🏾",
+  "👐🏿",
+  "👐",
+  "👑",
+  "👒",
+  "👓",
+  "👔",
+  "👕",
+  "👖",
+  "👗",
+  "👘",
+  "👙",
+  "👚",
+  "👛",
+  "👜",
+  "👝",
+  "👞",
+  "👟",
+  "👠",
+  "👡",
+  "👢",
+  "👣",
+  "👤",
+  "👥",
+  "👦🏻",
+  "👦🏼",
+  "👦🏽",
+  "👦🏾",
+  "👦🏿",
+  "👦",
+  "👧🏻",
+  "👧🏼",
+  "👧🏽",
+  "👧🏾",
+  "👧🏿",
+  "👧",
+  "👨🏻‍🌾",
+  "👨🏻‍🍳",
+  "👨🏻‍🎓",
+  "👨🏻‍🎤",
+  "👨🏻‍🎨",
+  "👨🏻‍🏫",
+  "👨🏻‍🏭",
+  "👨🏻‍💻",
+  "👨🏻‍💼",
+  "👨🏻‍🔧",
+  "👨🏻‍🔬",
+  "👨🏻‍🚀",
+  "👨🏻‍🚒",
+  "👨🏻‍⚕️",
+  "👨🏻‍⚖️",
+  "👨🏻‍✈️",
+  "👨🏻",
+  "👨🏼‍🌾",
+  "👨🏼‍🍳",
+  "👨🏼‍🎓",
+  "👨🏼‍🎤",
+  "👨🏼‍🎨",
+  "👨🏼‍🏫",
+  "👨🏼‍🏭",
+  "👨🏼‍💻",
+  "👨🏼‍💼",
+  "👨🏼‍🔧",
+  "👨🏼‍🔬",
+  "👨🏼‍🚀",
+  "👨🏼‍🚒",
+  "👨🏼‍⚕️",
+  "👨🏼‍⚖️",
+  "👨🏼‍✈️",
+  "👨🏼",
+  "👨🏽‍🌾",
+  "👨🏽‍🍳",
+  "👨🏽‍🎓",
+  "👨🏽‍🎤",
+  "👨🏽‍🎨",
+  "👨🏽‍🏫",
+  "👨🏽‍🏭",
+  "👨🏽‍💻",
+  "👨🏽‍💼",
+  "👨🏽‍🔧",
+  "👨🏽‍🔬",
+  "👨🏽‍🚀",
+  "👨🏽‍🚒",
+  "👨🏽‍⚕️",
+  "👨🏽‍⚖️",
+  "👨🏽‍✈️",
+  "👨🏽",
+  "👨🏾‍🌾",
+  "👨🏾‍🍳",
+  "👨🏾‍🎓",
+  "👨🏾‍🎤",
+  "👨🏾‍🎨",
+  "👨🏾‍🏫",
+  "👨🏾‍🏭",
+  "👨🏾‍💻",
+  "👨🏾‍💼",
+  "👨🏾‍🔧",
+  "👨🏾‍🔬",
+  "👨🏾‍🚀",
+  "👨🏾‍🚒",
+  "👨🏾‍⚕️",
+  "👨🏾‍⚖️",
+  "👨🏾‍✈️",
+  "👨🏾",
+  "👨🏿‍🌾",
+  "👨🏿‍🍳",
+  "👨🏿‍🎓",
+  "👨🏿‍🎤",
+  "👨🏿‍🎨",
+  "👨🏿‍🏫",
+  "👨🏿‍🏭",
+  "👨🏿‍💻",
+  "👨🏿‍💼",
+  "👨🏿‍🔧",
+  "👨🏿‍🔬",
+  "👨🏿‍🚀",
+  "👨🏿‍🚒",
+  "👨🏿‍⚕️",
+  "👨🏿‍⚖️",
+  "👨🏿‍✈️",
+  "👨🏿",
+  "👨‍🌾",
+  "👨‍🍳",
+  "👨‍🎓",
+  "👨‍🎤",
+  "👨‍🎨",
+  "👨‍🏫",
+  "👨‍🏭",
+  "👨‍👦‍👦",
+  "👨‍👦",
+  "👨‍👧‍👦",
+  "👨‍👧‍👧",
+  "👨‍👧",
+  "👨‍👨‍👦‍👦",
+  "👨‍👨‍👦",
+  "👨‍👨‍👧‍👦",
+  "👨‍👨‍👧‍👧",
+  "👨‍👨‍👧",
+  "👨‍👩‍👦‍👦",
+  "👨‍👩‍👦",
+  "👨‍👩‍👧‍👦",
+  "👨‍👩‍👧‍👧",
+  "👨‍👩‍👧",
+  "👨‍💻",
+  "👨‍💼",
+  "👨‍🔧",
+  "👨‍🔬",
+  "👨‍🚀",
+  "👨‍🚒",
+  "👨‍⚕️",
+  "👨‍⚖️",
+  "👨‍✈️",
+  "👨‍❤️‍👨",
+  "👨‍❤️‍💋‍👨",
+  "👨",
+  "👩🏻‍🌾",
+  "👩🏻‍🍳",
+  "👩🏻‍🎓",
+  "👩🏻‍🎤",
+  "👩🏻‍🎨",
+  "👩🏻‍🏫",
+  "👩🏻‍🏭",
+  "👩🏻‍💻",
+  "👩🏻‍💼",
+  "👩🏻‍🔧",
+  "👩🏻‍🔬",
+  "👩🏻‍🚀",
+  "👩🏻‍🚒",
+  "👩🏻‍⚕️",
+  "👩🏻‍⚖️",
+  "👩🏻‍✈️",
+  "👩🏻",
+  "👩🏼‍🌾",
+  "👩🏼‍🍳",
+  "👩🏼‍🎓",
+  "👩🏼‍🎤",
+  "👩🏼‍🎨",
+  "👩🏼‍🏫",
+  "👩🏼‍🏭",
+  "👩🏼‍💻",
+  "👩🏼‍💼",
+  "👩🏼‍🔧",
+  "👩🏼‍🔬",
+  "👩🏼‍🚀",
+  "👩🏼‍🚒",
+  "👩🏼‍⚕️",
+  "👩🏼‍⚖️",
+  "👩🏼‍✈️",
+  "👩🏼",
+  "👩🏽‍🌾",
+  "👩🏽‍🍳",
+  "👩🏽‍🎓",
+  "👩🏽‍🎤",
+  "👩🏽‍🎨",
+  "👩🏽‍🏫",
+  "👩🏽‍🏭",
+  "👩🏽‍💻",
+  "👩🏽‍💼",
+  "👩🏽‍🔧",
+  "👩🏽‍🔬",
+  "👩🏽‍🚀",
+  "👩🏽‍🚒",
+  "👩🏽‍⚕️",
+  "👩🏽‍⚖️",
+  "👩🏽‍✈️",
+  "👩🏽",
+  "👩🏾‍🌾",
+  "👩🏾‍🍳",
+  "👩🏾‍🎓",
+  "👩🏾‍🎤",
+  "👩🏾‍🎨",
+  "👩🏾‍🏫",
+  "👩🏾‍🏭",
+  "👩🏾‍💻",
+  "👩🏾‍💼",
+  "👩🏾‍🔧",
+  "👩🏾‍🔬",
+  "👩🏾‍🚀",
+  "👩🏾‍🚒",
+  "👩🏾‍⚕️",
+  "👩🏾‍⚖️",
+  "👩🏾‍✈️",
+  "👩🏾",
+  "👩🏿‍🌾",
+  "👩🏿‍🍳",
+  "👩🏿‍🎓",
+  "👩🏿‍🎤",
+  "👩🏿‍🎨",
+  "👩🏿‍🏫",
+  "👩🏿‍🏭",
+  "👩🏿‍💻",
+  "👩🏿‍💼",
+  "👩🏿‍🔧",
+  "👩🏿‍🔬",
+  "👩🏿‍🚀",
+  "👩🏿‍🚒",
+  "👩🏿‍⚕️",
+  "👩🏿‍⚖️",
+  "👩🏿‍✈️",
+  "👩🏿",
+  "👩‍🌾",
+  "👩‍🍳",
+  "👩‍🎓",
+  "👩‍🎤",
+  "👩‍🎨",
+  "👩‍🏫",
+  "👩‍🏭",
+  "👩‍👦‍👦",
+  "👩‍👦",
+  "👩‍👧‍👦",
+  "👩‍👧‍👧",
+  "👩‍👧",
+  "👩‍👩‍👦‍👦",
+  "👩‍👩‍👦",
+  "👩‍👩‍👧‍👦",
+  "👩‍👩‍👧‍👧",
+  "👩‍👩‍👧",
+  "👩‍💻",
+  "👩‍💼",
+  "👩‍🔧",
+  "👩‍🔬",
+  "👩‍🚀",
+  "👩‍🚒",
+  "👩‍⚕️",
+  "👩‍⚖️",
+  "👩‍✈️",
+  "👩‍❤️‍👨",
+  "👩‍❤️‍👩",
+  "👩‍❤️‍💋‍👨",
+  "👩‍❤️‍💋‍👩",
+  "👩",
+  "👪🏻",
+  "👪🏼",
+  "👪🏽",
+  "👪🏾",
+  "👪🏿",
+  "👪",
+  "👫🏻",
+  "👫🏼",
+  "👫🏽",
+  "👫🏾",
+  "👫🏿",
+  "👫",
+  "👬🏻",
+  "👬🏼",
+  "👬🏽",
+  "👬🏾",
+  "👬🏿",
+  "👬",
+  "👭🏻",
+  "👭🏼",
+  "👭🏽",
+  "👭🏾",
+  "👭🏿",
+  "👭",
+  "👮🏻‍♀️",
+  "👮🏻‍♂️",
+  "👮🏻",
+  "👮🏼‍♀️",
+  "👮🏼‍♂️",
+  "👮🏼",
+  "👮🏽‍♀️",
+  "👮🏽‍♂️",
+  "👮🏽",
+  "👮🏾‍♀️",
+  "👮🏾‍♂️",
+  "👮🏾",
+  "👮🏿‍♀️",
+  "👮🏿‍♂️",
+  "👮🏿",
+  "👮‍♀️",
+  "👮‍♂️",
+  "👮",
+  "👯🏻‍♀️",
+  "👯🏻‍♂️",
+  "👯🏻",
+  "👯🏼‍♀️",
+  "👯🏼‍♂️",
+  "👯🏼",
+  "👯🏽‍♀️",
+  "👯🏽‍♂️",
+  "👯🏽",
+  "👯🏾‍♀️",
+  "👯🏾‍♂️",
+  "👯🏾",
+  "👯🏿‍♀️",
+  "👯🏿‍♂️",
+  "👯🏿",
+  "👯‍♀️",
+  "👯‍♂️",
+  "👯",
+  "👰🏻",
+  "👰🏼",
+  "👰🏽",
+  "👰🏾",
+  "👰🏿",
+  "👰",
+  "👱🏻‍♀️",
+  "👱🏻‍♂️",
+  "👱🏻",
+  "👱🏼‍♀️",
+  "👱🏼‍♂️",
+  "👱🏼",
+  "👱🏽‍♀️",
+  "👱🏽‍♂️",
+  "👱🏽",
+  "👱🏾‍♀️",
+  "👱🏾‍♂️",
+  "👱🏾",
+  "👱🏿‍♀️",
+  "👱🏿‍♂️",
+  "👱🏿",
+  "👱‍♀️",
+  "👱‍♂️",
+  "👱",
+  "👲🏻",
+  "👲🏼",
+  "👲🏽",
+  "👲🏾",
+  "👲🏿",
+  "👲",
+  "👳🏻‍♀️",
+  "👳🏻‍♂️",
+  "👳🏻",
+  "👳🏼‍♀️",
+  "👳🏼‍♂️",
+  "👳🏼",
+  "👳🏽‍♀️",
+  "👳🏽‍♂️",
+  "👳🏽",
+  "👳🏾‍♀️",
+  "👳🏾‍♂️",
+  "👳🏾",
+  "👳🏿‍♀️",
+  "👳🏿‍♂️",
+  "👳🏿",
+  "👳‍♀️",
+  "👳‍♂️",
+  "👳",
+  "👴🏻",
+  "👴🏼",
+  "👴🏽",
+  "👴🏾",
+  "👴🏿",
+  "👴",
+  "👵🏻",
+  "👵🏼",
+  "👵🏽",
+  "👵🏾",
+  "👵🏿",
+  "👵",
+  "👶🏻",
+  "👶🏼",
+  "👶🏽",
+  "👶🏾",
+  "👶🏿",
+  "👶",
+  "👷🏻‍♀️",
+  "👷🏻‍♂️",
+  "👷🏻",
+  "👷🏼‍♀️",
+  "👷🏼‍♂️",
+  "👷🏼",
+  "👷🏽‍♀️",
+  "👷🏽‍♂️",
+  "👷🏽",
+  "👷🏾‍♀️",
+  "👷🏾‍♂️",
+  "👷🏾",
+  "👷🏿‍♀️",
+  "👷🏿‍♂️",
+  "👷🏿",
+  "👷‍♀️",
+  "👷‍♂️",
+  "👷",
+  "👸🏻",
+  "👸🏼",
+  "👸🏽",
+  "👸🏾",
+  "👸🏿",
+  "👸",
+  "👹",
+  "👺",
+  "👻",
+  "👼🏻",
+  "👼🏼",
+  "👼🏽",
+  "👼🏾",
+  "👼🏿",
+  "👼",
+  "👽",
+  "👾",
+  "👿",
+  "💀",
+  "💁🏻‍♀️",
+  "💁🏻‍♂️",
+  "💁🏻",
+  "💁🏼‍♀️",
+  "💁🏼‍♂️",
+  "💁🏼",
+  "💁🏽‍♀️",
+  "💁🏽‍♂️",
+  "💁🏽",
+  "💁🏾‍♀️",
+  "💁🏾‍♂️",
+  "💁🏾",
+  "💁🏿‍♀️",
+  "💁🏿‍♂️",
+  "💁🏿",
+  "💁‍♀️",
+  "💁‍♂️",
+  "💁",
+  "💂🏻‍♀️",
+  "💂🏻‍♂️",
+  "💂🏻",
+  "💂🏼‍♀️",
+  "💂🏼‍♂️",
+  "💂🏼",
+  "💂🏽‍♀️",
+  "💂🏽‍♂️",
+  "💂🏽",
+  "💂🏾‍♀️",
+  "💂🏾‍♂️",
+  "💂🏾",
+  "💂🏿‍♀️",
+  "💂🏿‍♂️",
+  "💂🏿",
+  "💂‍♀️",
+  "💂‍♂️",
+  "💂",
+  "💃🏻",
+  "💃🏼",
+  "💃🏽",
+  "💃🏾",
+  "💃🏿",
+  "💃",
+  "💄",
+  "💅🏻",
+  "💅🏼",
+  "💅🏽",
+  "💅🏾",
+  "💅🏿",
+  "💅",
+  "💆🏻‍♀️",
+  "💆🏻‍♂️",
+  "💆🏻",
+  "💆🏼‍♀️",
+  "💆🏼‍♂️",
+  "💆🏼",
+  "💆🏽‍♀️",
+  "💆🏽‍♂️",
+  "💆🏽",
+  "💆🏾‍♀️",
+  "💆🏾‍♂️",
+  "💆🏾",
+  "💆🏿‍♀️",
+  "💆🏿‍♂️",
+  "💆🏿",
+  "💆‍♀️",
+  "💆‍♂️",
+  "💆",
+  "💇🏻‍♀️",
+  "💇🏻‍♂️",
+  "💇🏻",
+  "💇🏼‍♀️",
+  "💇🏼‍♂️",
+  "💇🏼",
+  "💇🏽‍♀️",
+  "💇🏽‍♂️",
+  "💇🏽",
+  "💇🏾‍♀️",
+  "💇🏾‍♂️",
+  "💇🏾",
+  "💇🏿‍♀️",
+  "💇🏿‍♂️",
+  "💇🏿",
+  "💇‍♀️",
+  "💇‍♂️",
+  "💇",
+  "💈",
+  "💉",
+  "💊",
+  "💋",
+  "💌",
+  "💍",
+  "💎",
+  "💏",
+  "💐",
+  "💑",
+  "💒",
+  "💓",
+  "💔",
+  "💕",
+  "💖",
+  "💗",
+  "💘",
+  "💙",
+  "💚",
+  "💛",
+  "💜",
+  "💝",
+  "💞",
+  "💟",
+  "💠",
+  "💡",
+  "💢",
+  "💣",
+  "💤",
+  "💥",
+  "💦",
+  "💧",
+  "💨",
+  "💩",
+  "💪🏻",
+  "💪🏼",
+  "💪🏽",
+  "💪🏾",
+  "💪🏿",
+  "💪",
+  "💫",
+  "💬",
+  "💭",
+  "💮",
+  "💯",
+  "💰",
+  "💱",
+  "💲",
+  "💳",
+  "💴",
+  "💵",
+  "💶",
+  "💷",
+  "💸",
+  "💹",
+  "💺",
+  "💻",
+  "💼",
+  "💽",
+  "💾",
+  "💿",
+  "📀",
+  "📁",
+  "📂",
+  "📃",
+  "📄",
+  "📅",
+  "📆",
+  "📇",
+  "📈",
+  "📉",
+  "📊",
+  "📋",
+  "📌",
+  "📍",
+  "📎",
+  "📏",
+  "📐",
+  "📑",
+  "📒",
+  "📓",
+  "📔",
+  "📕",
+  "📖",
+  "📗",
+  "📘",
+  "📙",
+  "📚",
+  "📛",
+  "📜",
+  "📝",
+  "📞",
+  "📟",
+  "📠",
+  "📡",
+  "📢",
+  "📣",
+  "📤",
+  "📥",
+  "📦",
+  "📧",
+  "📨",
+  "📩",
+  "📪",
+  "📫",
+  "📬",
+  "📭",
+  "📮",
+  "📯",
+  "📰",
+  "📱",
+  "📲",
+  "📳",
+  "📴",
+  "📵",
+  "📶",
+  "📷",
+  "📸",
+  "📹",
+  "📺",
+  "📻",
+  "📼",
+  "📽",
+  "📿",
+  "🔀",
+  "🔁",
+  "🔂",
+  "🔃",
+  "🔄",
+  "🔅",
+  "🔆",
+  "🔇",
+  "🔈",
+  "🔉",
+  "🔊",
+  "🔋",
+  "🔌",
+  "🔍",
+  "🔎",
+  "🔏",
+  "🔐",
+  "🔑",
+  "🔒",
+  "🔓",
+  "🔔",
+  "🔕",
+  "🔖",
+  "🔗",
+  "🔘",
+  "🔙",
+  "🔚",
+  "🔛",
+  "🔜",
+  "🔝",
+  "🔞",
+  "🔟",
+  "🔠",
+  "🔡",
+  "🔢",
+  "🔣",
+  "🔤",
+  "🔥",
+  "🔦",
+  "🔧",
+  "🔨",
+  "🔩",
+  "🔪",
+  "🔫",
+  "🔬",
+  "🔭",
+  "🔮",
+  "🔯",
+  "🔰",
+  "🔱",
+  "🔲",
+  "🔳",
+  "🔴",
+  "🔵",
+  "🔶",
+  "🔷",
+  "🔸",
+  "🔹",
+  "🔺",
+  "🔻",
+  "🔼",
+  "🔽",
+  "🕉",
+  "🕊",
+  "🕋",
+  "🕌",
+  "🕍",
+  "🕎",
+  "🕐",
+  "🕑",
+  "🕒",
+  "🕓",
+  "🕔",
+  "🕕",
+  "🕖",
+  "🕗",
+  "🕘",
+  "🕙",
+  "🕚",
+  "🕛",
+  "🕜",
+  "🕝",
+  "🕞",
+  "🕟",
+  "🕠",
+  "🕡",
+  "🕢",
+  "🕣",
+  "🕤",
+  "🕥",
+  "🕦",
+  "🕧",
+  "🕯",
+  "🕰",
+  "🕳",
+  "🕴🏻",
+  "🕴🏼",
+  "🕴🏽",
+  "🕴🏾",
+  "🕴🏿",
+  "🕴",
+  "🕵🏻‍♀️",
+  "🕵🏻‍♂️",
+  "🕵🏻",
+  "🕵🏼‍♀️",
+  "🕵🏼‍♂️",
+  "🕵🏼",
+  "🕵🏽‍♀️",
+  "🕵🏽‍♂️",
+  "🕵🏽",
+  "🕵🏾‍♀️",
+  "🕵🏾‍♂️",
+  "🕵🏾",
+  "🕵🏿‍♀️",
+  "🕵🏿‍♂️",
+  "🕵🏿",
+  "🕵️‍♀️",
+  "🕵️‍♂️",
+  "🕵",
+  "🕶",
+  "🕷",
+  "🕸",
+  "🕹",
+  "🕺🏻",
+  "🕺🏼",
+  "🕺🏽",
+  "🕺🏾",
+  "🕺🏿",
+  "🕺",
+  "🖇",
+  "🖊",
+  "🖋",
+  "🖌",
+  "🖍",
+  "🖐🏻",
+  "🖐🏼",
+  "🖐🏽",
+  "🖐🏾",
+  "🖐🏿",
+  "🖐",
+  "🖕🏻",
+  "🖕🏼",
+  "🖕🏽",
+  "🖕🏾",
+  "🖕🏿",
+  "🖕",
+  "🖖🏻",
+  "🖖🏼",
+  "🖖🏽",
+  "🖖🏾",
+  "🖖🏿",
+  "🖖",
+  "🖤",
+  "🖥",
+  "🖨",
+  "🖱",
+  "🖲",
+  "🖼",
+  "🗂",
+  "🗃",
+  "🗄",
+  "🗑",
+  "🗒",
+  "🗓",
+  "🗜",
+  "🗝",
+  "🗞",
+  "🗡",
+  "🗣",
+  "🗨",
+  "🗯",
+  "🗳",
+  "🗺",
+  "🗻",
+  "🗼",
+  "🗽",
+  "🗾",
+  "🗿",
+  "😀",
+  "😁",
+  "😂",
+  "😃",
+  "😄",
+  "😅",
+  "😆",
+  "😇",
+  "😈",
+  "😉",
+  "😊",
+  "😋",
+  "😌",
+  "😍",
+  "😎",
+  "😏",
+  "😐",
+  "😑",
+  "😒",
+  "😓",
+  "😔",
+  "😕",
+  "😖",
+  "😗",
+  "😘",
+  "😙",
+  "😚",
+  "😛",
+  "😜",
+  "😝",
+  "😞",
+  "😟",
+  "😠",
+  "😡",
+  "😢",
+  "😣",
+  "😤",
+  "😥",
+  "😦",
+  "😧",
+  "😨",
+  "😩",
+  "😪",
+  "😫",
+  "😬",
+  "😭",
+  "😮",
+  "😯",
+  "😰",
+  "😱",
+  "😲",
+  "😳",
+  "😴",
+  "😵",
+  "😶",
+  "😷",
+  "😸",
+  "😹",
+  "😺",
+  "😻",
+  "😼",
+  "😽",
+  "😾",
+  "😿",
+  "🙀",
+  "🙁",
+  "🙂",
+  "🙃",
+  "🙄",
+  "🙅🏻‍♀️",
+  "🙅🏻‍♂️",
+  "🙅🏻",
+  "🙅🏼‍♀️",
+  "🙅🏼‍♂️",
+  "🙅🏼",
+  "🙅🏽‍♀️",
+  "🙅🏽‍♂️",
+  "🙅🏽",
+  "🙅🏾‍♀️",
+  "🙅🏾‍♂️",
+  "🙅🏾",
+  "🙅🏿‍♀️",
+  "🙅🏿‍♂️",
+  "🙅🏿",
+  "🙅‍♀️",
+  "🙅‍♂️",
+  "🙅",
+  "🙆🏻‍♀️",
+  "🙆🏻‍♂️",
+  "🙆🏻",
+  "🙆🏼‍♀️",
+  "🙆🏼‍♂️",
+  "🙆🏼",
+  "🙆🏽‍♀️",
+  "🙆🏽‍♂️",
+  "🙆🏽",
+  "🙆🏾‍♀️",
+  "🙆🏾‍♂️",
+  "🙆🏾",
+  "🙆🏿‍♀️",
+  "🙆🏿‍♂️",
+  "🙆🏿",
+  "🙆‍♀️",
+  "🙆‍♂️",
+  "🙆",
+  "🙇🏻‍♀️",
+  "🙇🏻‍♂️",
+  "🙇🏻",
+  "🙇🏼‍♀️",
+  "🙇🏼‍♂️",
+  "🙇🏼",
+  "🙇🏽‍♀️",
+  "🙇🏽‍♂️",
+  "🙇🏽",
+  "🙇🏾‍♀️",
+  "🙇🏾‍♂️",
+  "🙇🏾",
+  "🙇🏿‍♀️",
+  "🙇🏿‍♂️",
+  "🙇🏿",
+  "🙇‍♀️",
+  "🙇‍♂️",
+  "🙇",
+  "🙈",
+  "🙉",
+  "🙊",
+  "🙋🏻‍♀️",
+  "🙋🏻‍♂️",
+  "🙋🏻",
+  "🙋🏼‍♀️",
+  "🙋🏼‍♂️",
+  "🙋🏼",
+  "🙋🏽‍♀️",
+  "🙋🏽‍♂️",
+  "🙋🏽",
+  "🙋🏾‍♀️",
+  "🙋🏾‍♂️",
+  "🙋🏾",
+  "🙋🏿‍♀️",
+  "🙋🏿‍♂️",
+  "🙋🏿",
+  "🙋‍♀️",
+  "🙋‍♂️",
+  "🙋",
+  "🙌🏻",
+  "🙌🏼",
+  "🙌🏽",
+  "🙌🏾",
+  "🙌🏿",
+  "🙌",
+  "🙍🏻‍♀️",
+  "🙍🏻‍♂️",
+  "🙍🏻",
+  "🙍🏼‍♀️",
+  "🙍🏼‍♂️",
+  "🙍🏼",
+  "🙍🏽‍♀️",
+  "🙍🏽‍♂️",
+  "🙍🏽",
+  "🙍🏾‍♀️",
+  "🙍🏾‍♂️",
+  "🙍🏾",
+  "🙍🏿‍♀️",
+  "🙍🏿‍♂️",
+  "🙍🏿",
+  "🙍‍♀️",
+  "🙍‍♂️",
+  "🙍",
+  "🙎🏻‍♀️",
+  "🙎🏻‍♂️",
+  "🙎🏻",
+  "🙎🏼‍♀️",
+  "🙎🏼‍♂️",
+  "🙎🏼",
+  "🙎🏽‍♀️",
+  "🙎🏽‍♂️",
+  "🙎🏽",
+  "🙎🏾‍♀️",
+  "🙎🏾‍♂️",
+  "🙎🏾",
+  "🙎🏿‍♀️",
+  "🙎🏿‍♂️",
+  "🙎🏿",
+  "🙎‍♀️",
+  "🙎‍♂️",
+  "🙎",
+  "🙏🏻",
+  "🙏🏼",
+  "🙏🏽",
+  "🙏🏾",
+  "🙏🏿",
+  "🙏",
+  "🚀",
+  "🚁",
+  "🚂",
+  "🚃",
+  "🚄",
+  "🚅",
+  "🚆",
+  "🚇",
+  "🚈",
+  "🚉",
+  "🚊",
+  "🚋",
+  "🚌",
+  "🚍",
+  "🚎",
+  "🚏",
+  "🚐",
+  "🚑",
+  "🚒",
+  "🚓",
+  "🚔",
+  "🚕",
+  "🚖",
+  "🚗",
+  "🚘",
+  "🚙",
+  "🚚",
+  "🚛",
+  "🚜",
+  "🚝",
+  "🚞",
+  "🚟",
+  "🚠",
+  "🚡",
+  "🚢",
+  "🚣🏻‍♀️",
+  "🚣🏻‍♂️",
+  "🚣🏻",
+  "🚣🏼‍♀️",
+  "🚣🏼‍♂️",
+  "🚣🏼",
+  "🚣🏽‍♀️",
+  "🚣🏽‍♂️",
+  "🚣🏽",
+  "🚣🏾‍♀️",
+  "🚣🏾‍♂️",
+  "🚣🏾",
+  "🚣🏿‍♀️",
+  "🚣🏿‍♂️",
+  "🚣🏿",
+  "🚣‍♀️",
+  "🚣‍♂️",
+  "🚣",
+  "🚤",
+  "🚥",
+  "🚦",
+  "🚧",
+  "🚨",
+  "🚩",
+  "🚪",
+  "🚫",
+  "🚬",
+  "🚭",
+  "🚮",
+  "🚯",
+  "🚰",
+  "🚱",
+  "🚲",
+  "🚳",
+  "🚴🏻‍♀️",
+  "🚴🏻‍♂️",
+  "🚴🏻",
+  "🚴🏼‍♀️",
+  "🚴🏼‍♂️",
+  "🚴🏼",
+  "🚴🏽‍♀️",
+  "🚴🏽‍♂️",
+  "🚴🏽",
+  "🚴🏾‍♀️",
+  "🚴🏾‍♂️",
+  "🚴🏾",
+  "🚴🏿‍♀️",
+  "🚴🏿‍♂️",
+  "🚴🏿",
+  "🚴‍♀️",
+  "🚴‍♂️",
+  "🚴",
+  "🚵🏻‍♀️",
+  "🚵🏻‍♂️",
+  "🚵🏻",
+  "🚵🏼‍♀️",
+  "🚵🏼‍♂️",
+  "🚵🏼",
+  "🚵🏽‍♀️",
+  "🚵🏽‍♂️",
+  "🚵🏽",
+  "🚵🏾‍♀️",
+  "🚵🏾‍♂️",
+  "🚵🏾",
+  "🚵🏿‍♀️",
+  "🚵🏿‍♂️",
+  "🚵🏿",
+  "🚵‍♀️",
+  "🚵‍♂️",
+  "🚵",
+  "🚶🏻‍♀️",
+  "🚶🏻‍♂️",
+  "🚶🏻",
+  "🚶🏼‍♀️",
+  "🚶🏼‍♂️",
+  "🚶🏼",
+  "🚶🏽‍♀️",
+  "🚶🏽‍♂️",
+  "🚶🏽",
+  "🚶🏾‍♀️",
+  "🚶🏾‍♂️",
+  "🚶🏾",
+  "🚶🏿‍♀️",
+  "🚶🏿‍♂️",
+  "🚶🏿",
+  "🚶‍♀️",
+  "🚶‍♂️",
+  "🚶",
+  "🚷",
+  "🚸",
+  "🚹",
+  "🚺",
+  "🚻",
+  "🚼",
+  "🚽",
+  "🚾",
+  "🚿",
+  "🛀🏻",
+  "🛀🏼",
+  "🛀🏽",
+  "🛀🏾",
+  "🛀🏿",
+  "🛀",
+  "🛁",
+  "🛂",
+  "🛃",
+  "🛄",
+  "🛅",
+  "🛋",
+  "🛌🏻",
+  "🛌🏼",
+  "🛌🏽",
+  "🛌🏾",
+  "🛌🏿",
+  "🛌",
+  "🛍",
+  "🛎",
+  "🛏",
+  "🛐",
+  "🛑",
+  "🛒",
+  "🛠",
+  "🛡",
+  "🛢",
+  "🛣",
+  "🛤",
+  "🛥",
+  "🛩",
+  "🛫",
+  "🛬",
+  "🛰",
+  "🛳",
+  "🛴",
+  "🛵",
+  "🛶",
+  "🤐",
+  "🤑",
+  "🤒",
+  "🤓",
+  "🤔",
+  "🤕",
+  "🤖",
+  "🤗",
+  "🤘🏻",
+  "🤘🏼",
+  "🤘🏽",
+  "🤘🏾",
+  "🤘🏿",
+  "🤘",
+  "🤙🏻",
+  "🤙🏼",
+  "🤙🏽",
+  "🤙🏾",
+  "🤙🏿",
+  "🤙",
+  "🤚🏻",
+  "🤚🏼",
+  "🤚🏽",
+  "🤚🏾",
+  "🤚🏿",
+  "🤚",
+  "🤛🏻",
+  "🤛🏼",
+  "🤛🏽",
+  "🤛🏾",
+  "🤛🏿",
+  "🤛",
+  "🤜🏻",
+  "🤜🏼",
+  "🤜🏽",
+  "🤜🏾",
+  "🤜🏿",
+  "🤜",
+  "🤝🏻",
+  "🤝🏼",
+  "🤝🏽",
+  "🤝🏾",
+  "🤝🏿",
+  "🤝",
+  "🤞🏻",
+  "🤞🏼",
+  "🤞🏽",
+  "🤞🏾",
+  "🤞🏿",
+  "🤞",
+  "🤠",
+  "🤡",
+  "🤢",
+  "🤣",
+  "🤤",
+  "🤥",
+  "🤦🏻‍♀️",
+  "🤦🏻‍♂️",
+  "🤦🏻",
+  "🤦🏼‍♀️",
+  "🤦🏼‍♂️",
+  "🤦🏼",
+  "🤦🏽‍♀️",
+  "🤦🏽‍♂️",
+  "🤦🏽",
+  "🤦🏾‍♀️",
+  "🤦🏾‍♂️",
+  "🤦🏾",
+  "🤦🏿‍♀️",
+  "🤦🏿‍♂️",
+  "🤦🏿",
+  "🤦‍♀️",
+  "🤦‍♂️",
+  "🤦",
+  "🤧",
+  "🤰🏻",
+  "🤰🏼",
+  "🤰🏽",
+  "🤰🏾",
+  "🤰🏿",
+  "🤰",
+  "🤳🏻",
+  "🤳🏼",
+  "🤳🏽",
+  "🤳🏾",
+  "🤳🏿",
+  "🤳",
+  "🤴🏻",
+  "🤴🏼",
+  "🤴🏽",
+  "🤴🏾",
+  "🤴🏿",
+  "🤴",
+  "🤵🏻",
+  "🤵🏼",
+  "🤵🏽",
+  "🤵🏾",
+  "🤵🏿",
+  "🤵",
+  "🤶🏻",
+  "🤶🏼",
+  "🤶🏽",
+  "🤶🏾",
+  "🤶🏿",
+  "🤶",
+  "🤷🏻‍♀️",
+  "🤷🏻‍♂️",
+  "🤷🏻",
+  "🤷🏼‍♀️",
+  "🤷🏼‍♂️",
+  "🤷🏼",
+  "🤷🏽‍♀️",
+  "🤷🏽‍♂️",
+  "🤷🏽",
+  "🤷🏾‍♀️",
+  "🤷🏾‍♂️",
+  "🤷🏾",
+  "🤷🏿‍♀️",
+  "🤷🏿‍♂️",
+  "🤷🏿",
+  "🤷‍♀️",
+  "🤷‍♂️",
+  "🤷",
+  "🤸🏻‍♀️",
+  "🤸🏻‍♂️",
+  "🤸🏻",
+  "🤸🏼‍♀️",
+  "🤸🏼‍♂️",
+  "🤸🏼",
+  "🤸🏽‍♀️",
+  "🤸🏽‍♂️",
+  "🤸🏽",
+  "🤸🏾‍♀️",
+  "🤸🏾‍♂️",
+  "🤸🏾",
+  "🤸🏿‍♀️",
+  "🤸🏿‍♂️",
+  "🤸🏿",
+  "🤸‍♀️",
+  "🤸‍♂️",
+  "🤸",
+  "🤹🏻‍♀️",
+  "🤹🏻‍♂️",
+  "🤹🏻",
+  "🤹🏼‍♀️",
+  "🤹🏼‍♂️",
+  "🤹🏼",
+  "🤹🏽‍♀️",
+  "🤹🏽‍♂️",
+  "🤹🏽",
+  "🤹🏾‍♀️",
+  "🤹🏾‍♂️",
+  "🤹🏾",
+  "🤹🏿‍♀️",
+  "🤹🏿‍♂️",
+  "🤹🏿",
+  "🤹‍♀️",
+  "🤹‍♂️",
+  "🤹",
+  "🤺",
+  "🤼🏻‍♀️",
+  "🤼🏻‍♂️",
+  "🤼🏻",
+  "🤼🏼‍♀️",
+  "🤼🏼‍♂️",
+  "🤼🏼",
+  "🤼🏽‍♀️",
+  "🤼🏽‍♂️",
+  "🤼🏽",
+  "🤼🏾‍♀️",
+  "🤼🏾‍♂️",
+  "🤼🏾",
+  "🤼🏿‍♀️",
+  "🤼🏿‍♂️",
+  "🤼🏿",
+  "🤼‍♀️",
+  "🤼‍♂️",
+  "🤼",
+  "🤽🏻‍♀️",
+  "🤽🏻‍♂️",
+  "🤽🏻",
+  "🤽🏼‍♀️",
+  "🤽🏼‍♂️",
+  "🤽🏼",
+  "🤽🏽‍♀️",
+  "🤽🏽‍♂️",
+  "🤽🏽",
+  "🤽🏾‍♀️",
+  "🤽🏾‍♂️",
+  "🤽🏾",
+  "🤽🏿‍♀️",
+  "🤽🏿‍♂️",
+  "🤽🏿",
+  "🤽‍♀️",
+  "🤽‍♂️",
+  "🤽",
+  "🤾🏻‍♀️",
+  "🤾🏻‍♂️",
+  "🤾🏻",
+  "🤾🏼‍♀️",
+  "🤾🏼‍♂️",
+  "🤾🏼",
+  "🤾🏽‍♀️",
+  "🤾🏽‍♂️",
+  "🤾🏽",
+  "🤾🏾‍♀️",
+  "🤾🏾‍♂️",
+  "🤾🏾",
+  "🤾🏿‍♀️",
+  "🤾🏿‍♂️",
+  "🤾🏿",
+  "🤾‍♀️",
+  "🤾‍♂️",
+  "🤾",
+  "🥀",
+  "🥁",
+  "🥂",
+  "🥃",
+  "🥄",
+  "🥅",
+  "🥇",
+  "🥈",
+  "🥉",
+  "🥊",
+  "🥋",
+  "🥐",
+  "🥑",
+  "🥒",
+  "🥓",
+  "🥔",
+  "🥕",
+  "🥖",
+  "🥗",
+  "🥘",
+  "🥙",
+  "🥚",
+  "🥛",
+  "🥜",
+  "🥝",
+  "🥞",
+  "🦀",
+  "🦁",
+  "🦂",
+  "🦃",
+  "🦄",
+  "🦅",
+  "🦆",
+  "🦇",
+  "🦈",
+  "🦉",
+  "🦊",
+  "🦋",
+  "🦌",
+  "🦍",
+  "🦎",
+  "🦏",
+  "🦐",
+  "🦑",
+  "🧀",
+  "‼",
+  "⁉",
+  "™",
+  "ℹ",
+  "↔",
+  "↕",
+  "↖",
+  "↗",
+  "↘",
+  "↙",
+  "↩",
+  "↪",
+  "#⃣",
+  "⌚",
+  "⌛",
+  "⌨",
+  "⏏",
+  "⏩",
+  "⏪",
+  "⏫",
+  "⏬",
+  "⏭",
+  "⏮",
+  "⏯",
+  "⏰",
+  "⏱",
+  "⏲",
+  "⏳",
+  "⏸",
+  "⏹",
+  "⏺",
+  "Ⓜ",
+  "▪",
+  "▫",
+  "▶",
+  "◀",
+  "◻",
+  "◼",
+  "◽",
+  "◾",
+  "☀",
+  "☁",
+  "☂",
+  "☃",
+  "☄",
+  "☎",
+  "☑",
+  "☔",
+  "☕",
+  "☘",
+  "☝🏻",
+  "☝🏼",
+  "☝🏽",
+  "☝🏾",
+  "☝🏿",
+  "☝",
+  "☠",
+  "☢",
+  "☣",
+  "☦",
+  "☪",
+  "☮",
+  "☯",
+  "☸",
+  "☹",
+  "☺",
+  "♀",
+  "♂",
+  "♈",
+  "♉",
+  "♊",
+  "♋",
+  "♌",
+  "♍",
+  "♎",
+  "♏",
+  "♐",
+  "♑",
+  "♒",
+  "♓",
+  "♠",
+  "♣",
+  "♥",
+  "♦",
+  "♨",
+  "♻",
+  "♿",
+  "⚒",
+  "⚓",
+  "⚔",
+  "⚕",
+  "⚖",
+  "⚗",
+  "⚙",
+  "⚛",
+  "⚜",
+  "⚠",
+  "⚡",
+  "⚪",
+  "⚫",
+  "⚰",
+  "⚱",
+  "⚽",
+  "⚾",
+  "⛄",
+  "⛅",
+  "⛈",
+  "⛎",
+  "⛏",
+  "⛑",
+  "⛓",
+  "⛔",
+  "⛩",
+  "⛪",
+  "⛰",
+  "⛱",
+  "⛲",
+  "⛳",
+  "⛴",
+  "⛵",
+  "⛷🏻",
+  "⛷🏼",
+  "⛷🏽",
+  "⛷🏾",
+  "⛷🏿",
+  "⛷",
+  "⛸",
+  "⛹🏻‍♀️",
+  "⛹🏻‍♂️",
+  "⛹🏻",
+  "⛹🏼‍♀️",
+  "⛹🏼‍♂️",
+  "⛹🏼",
+  "⛹🏽‍♀️",
+  "⛹🏽‍♂️",
+  "⛹🏽",
+  "⛹🏾‍♀️",
+  "⛹🏾‍♂️",
+  "⛹🏾",
+  "⛹🏿‍♀️",
+  "⛹🏿‍♂️",
+  "⛹🏿",
+  "⛹️‍♀️",
+  "⛹️‍♂️",
+  "⛹",
+  "⛺",
+  "⛽",
+  "✂",
+  "✅",
+  "✈",
+  "✉",
+  "✊🏻",
+  "✊🏼",
+  "✊🏽",
+  "✊🏾",
+  "✊🏿",
+  "✊",
+  "✋🏻",
+  "✋🏼",
+  "✋🏽",
+  "✋🏾",
+  "✋🏿",
+  "✋",
+  "✌🏻",
+  "✌🏼",
+  "✌🏽",
+  "✌🏾",
+  "✌🏿",
+  "✌",
+  "✍🏻",
+  "✍🏼",
+  "✍🏽",
+  "✍🏾",
+  "✍🏿",
+  "✍",
+  "✏",
+  "✒",
+  "✔",
+  "✖",
+  "✝",
+  "✡",
+  "✨",
+  "✳",
+  "✴",
+  "❄",
+  "❇",
+  "❌",
+  "❎",
+  "❓",
+  "❔",
+  "❕",
+  "❗",
+  "❣",
+  "❤",
+  "➕",
+  "➖",
+  "➗",
+  "➡",
+  "➰",
+  "➿",
+  "⤴",
+  "⤵",
+  "*⃣",
+  "⬅",
+  "⬆",
+  "⬇",
+  "⬛",
+  "⬜",
+  "⭐",
+  "⭕",
+  "0⃣",
+  "〰",
+  "〽",
+  "1⃣",
+  "2⃣",
+  "㊗",
+  "㊙",
+  "3⃣",
+  "4⃣",
+  "5⃣",
+  "6⃣",
+  "7⃣",
+  "8⃣",
+  "9⃣",
+  "©",
+  "®",
+  ""
+]
\ No newline at end of file
diff --git a/package.json b/package.json
new file mode 100644
index 0000000..328a1db
--- /dev/null
+++ b/package.json
@@ -0,0 +1,51 @@
+{
+  "name": "emojis-list",
+  "description": "Complete list of standard emojis.",
+  "homepage": "https://github.com/Kikobeats/emojis-list",
+  "version": "2.1.0",
+  "main": "./index.js",
+  "author": {
+    "email": "josefrancisco.verdu at gmail.com",
+    "name": "Kiko Beats",
+    "url": "https://github.com/Kikobeats"
+  },
+  "repository": {
+    "type": "git",
+    "url": "git+https://github.com/kikobeats/emojis-list.git"
+  },
+  "bugs": {
+    "url": "https://github.com/Kikobeats/emojis-list/issues"
+  },
+  "keywords": [
+    "archive",
+    "complete",
+    "emoji",
+    "list",
+    "standard"
+  ],
+  "devDependencies": {
+    "acho": "latest",
+    "browserify": "latest",
+    "cheerio": "latest",
+    "got": ">=5 <6",
+    "gulp": "latest",
+    "gulp-header": "latest",
+    "gulp-uglify": "latest",
+    "gulp-util": "latest",
+    "standard": "latest",
+    "vinyl-buffer": "latest",
+    "vinyl-source-stream": "latest"
+  },
+  "engines": {
+    "node": ">= 0.10"
+  },
+  "files": [
+    "index.js"
+  ],
+  "scripts": {
+    "pretest": "standard update.js",
+    "test": "echo 'YOLO'",
+    "update": "node update"
+  },
+  "license": "MIT"
+}
diff --git a/update.js b/update.js
new file mode 100644
index 0000000..2ac61da
--- /dev/null
+++ b/update.js
@@ -0,0 +1,36 @@
+'use strict'
+
+var cheerio = require('cheerio')
+var Acho = require('acho')
+var got = require('got')
+var fs = require('fs')
+var log = Acho()
+
+var CONST = {
+  URL: 'https://twitter.github.io/twemoji/2/test/preview.html',
+  MAIN_FILE: 'index.js'
+}
+
+function exitOnError (err) {
+  log.error(err)
+  process.exit(err.code || 1)
+}
+
+function stringify (val) {
+  return JSON.stringify(val, null, 2)
+}
+
+got(CONST.URL, function (err, data, res) {
+  if (err) return exitOnError(err)
+  var $ = cheerio.load(data)
+
+  var emojis = $('li').map(function (i, el) {
+    var emoji = $(this).text()
+    log.debug('detected', emoji)
+    return emoji
+  }).get()
+
+  log.info('total:', emojis.length)
+  fs.writeFileSync(CONST.MAIN_FILE, 'module.exports = ' + stringify(emojis), 'utf8')
+  log.info('saved at', CONST.MAIN_FILE)
+})

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-javascript/node-emojis-list.git



More information about the Pkg-javascript-commits mailing list