diff --git a/babel.config.json b/babel.config.json
new file mode 100644
index 0000000..ff3059c
--- /dev/null
+++ b/babel.config.json
@@ -0,0 +1,3 @@
+{
+ "presets": ["@babel/preset-env"]
+}
\ No newline at end of file
diff --git a/package.json b/package.json
index adbf508..e1077da 100644
--- a/package.json
+++ b/package.json
@@ -1,10 +1,11 @@
{
"name": "react-native-emoji-input",
- "version": "1.1.9",
+ "version": "1.2.0",
"description": "A React Native emoji keyboard component",
"main": "index.js",
"scripts": {
- "test": "echo \"Error: no test specified\" && exit 1"
+ "test": "echo \"Error: no test specified\" && exit 1",
+ "compile": "npx babel-node scripts/compile.js"
},
"repository": {
"type": "git",
@@ -31,8 +32,8 @@
},
"homepage": "https://github.com/sskhandek/react-native-emoji-input#readme",
"dependencies": {
- "emoji-datasource": "^4.0.4",
- "emoji-datasource-apple": "^4.0.4",
+ "emoji-datasource": "^15.0.1",
+ "emoji-datasource-apple": "^15.0.1",
"eslint-plugin-react": "^7.8.2",
"fuse.js": "^3.4.4",
"lodash": "^4.17.5",
@@ -44,5 +45,10 @@
},
"jest": {
"preset": "react-native"
+ },
+ "devDependencies": {
+ "@babel/core": "^7.22.9",
+ "@babel/node": "^7.22.6",
+ "@babel/preset-env": "^7.22.9"
}
-}
\ No newline at end of file
+}
diff --git a/src/Emoji.js b/src/Emoji.js
index d3c4bd4..a4710c1 100644
--- a/src/Emoji.js
+++ b/src/Emoji.js
@@ -1,139 +1,139 @@
-import React from 'react';
-import PropTypes from 'prop-types';
-import { View, Text, TouchableOpacity, StyleSheet, Image, Platform } from 'react-native';
-import _ from 'lodash';
+import React from "react";
+import PropTypes from "prop-types";
+import {
+ View,
+ Text,
+ TouchableOpacity,
+ StyleSheet,
+ Image,
+ Platform,
+} from "react-native";
+import _ from "lodash";
-const EMOJI_DATASOURCE_VERSION = '4.0.4';
+const EMOJI_DATASOURCE_VERSION = "15.0.1";
class Emoji extends React.PureComponent {
- static propTypes = {
- data: PropTypes.shape({
- char: PropTypes.char,
- unified: PropTypes.char
- }),
- onPress: PropTypes.func,
- onLongPress: PropTypes.func,
- native: PropTypes.bool,
- size: PropTypes.number,
- style: PropTypes.object,
- labelStyle: PropTypes.object,
- selected: PropTypes.bool,
- selectedBorderWidth: PropTypes.number,
- };
+ static propTypes = {
+ data: PropTypes.shape({
+ char: PropTypes.char,
+ unified: PropTypes.char,
+ }),
+ onPress: PropTypes.func,
+ onLongPress: PropTypes.func,
+ native: PropTypes.bool,
+ size: PropTypes.number,
+ style: PropTypes.object,
+ labelStyle: PropTypes.object,
+ selected: PropTypes.bool,
+ selectedBorderWidth: PropTypes.number,
+ };
- static defaultProps = {
- native: true
- };
+ static defaultProps = {
+ native: true,
+ };
- _getImage = data => {
- let localImage = _.get(data, 'localImage');
- if (localImage) return localImage;
+ _getImage = (data) => {
+ let localImage = _.get(data, "localImage");
+ if (localImage) return localImage;
- let image = _.get(data, 'lib.image');
- let imageSource = localImage || {
- uri: `https://unpkg.com/emoji-datasource-apple@${EMOJI_DATASOURCE_VERSION}/img/apple/64/${image}`
- };
- return imageSource;
+ let image = _.get(data, "lib.image");
+ let imageSource = localImage || {
+ uri: `https://unpkg.com/emoji-datasource-apple@${EMOJI_DATASOURCE_VERSION}/img/apple/64/${image}`,
};
+ return imageSource;
+ };
- render() {
- let imageComponent = null;
-
- const {
- native,
- style,
- labelStyle,
- data,
- onPress,
- onLongPress,
- selected
- } = this.props;
+ render() {
+ let imageComponent = null;
- if (!native) {
- const emojiImageFile = this._getImage(data);
+ const { native, style, labelStyle, data, onPress, onLongPress, selected } =
+ this.props;
- const imageStyle = {
- width: this.props.size,
- height: this.props.size
- };
+ if (!native) {
+ const emojiImageFile = this._getImage(data);
- imageComponent = (
-
- );
- } else {
- if (!data.char) {
- data.char = data.unified.replace(/(^|-)([a-z0-9]+)/gi, (s, b, cp) =>
- String.fromCodePoint(parseInt(cp, 16))
- );
- }
- }
+ const imageStyle = {
+ width: this.props.size,
+ height: this.props.size,
+ };
- const emojiComponent = (
-
- {native ? (
-
- {data.char}
-
- ) : (
- imageComponent
- )}
-
+ imageComponent = ;
+ } else {
+ if (!data.char) {
+ data.char = data.unified.replace(/(^|-)([a-z0-9]+)/gi, (s, b, cp) =>
+ String.fromCodePoint(parseInt(cp, 16))
);
- const selectedBorderWidth = this.props.selectedBorderWidth
- ? 0.75 * this.props.selectedBorderWidth
- : this.props.size;
- return onPress || onLongPress ? (
- {
- onPress && onPress(data, evt);
- }}
- onLongPress={evt => {
- onLongPress && onLongPress(data, evt);
- }}
- >
- {selected ? (
-
- {emojiComponent}
-
- ) : (
- emojiComponent
- )}
-
- ) : (
- emojiComponent
- );
+ }
}
+
+ const emojiComponent = (
+
+ {native ? (
+
+ {data.char}
+
+ ) : (
+ imageComponent
+ )}
+
+ );
+ const selectedBorderWidth = this.props.selectedBorderWidth
+ ? 0.75 * this.props.selectedBorderWidth
+ : this.props.size;
+ return onPress || onLongPress ? (
+ {
+ onPress && onPress(data, evt);
+ }}
+ onLongPress={(evt) => {
+ onLongPress && onLongPress(data, evt);
+ }}
+ >
+ {selected ? (
+
+ {emojiComponent}
+
+ ) : (
+ emojiComponent
+ )}
+
+ ) : (
+ emojiComponent
+ );
+ }
}
const styles = StyleSheet.create({
- emojiWrapper: {
- justifyContent: 'space-around',
- alignItems: 'center',
- flex: 1
- },
- labelStyle: {
- color: 'black',
- fontWeight: 'bold'
- }
+ emojiWrapper: {
+ justifyContent: "space-around",
+ alignItems: "center",
+ flex: 1,
+ },
+ labelStyle: {
+ color: "black",
+ fontWeight: "bold",
+ textAlign: "center",
+ },
});
export default Emoji;
diff --git a/src/EmojiInput.js b/src/EmojiInput.js
index c4ca6e2..454c7d3 100644
--- a/src/EmojiInput.js
+++ b/src/EmojiInput.js
@@ -1,786 +1,758 @@
-import React from 'react';
-import PropTypes from 'prop-types';
+import React from "react";
+import PropTypes from "prop-types";
import {
- View,
- Text,
- TextInput,
- Dimensions,
- TouchableOpacity,
- TouchableWithoutFeedback,
- AsyncStorage,
- Image
-} from 'react-native';
+ View,
+ Text,
+ TextInput,
+ Dimensions,
+ TouchableOpacity,
+ TouchableWithoutFeedback,
+ AsyncStorage,
+ Image,
+} from "react-native";
import {
- RecyclerListView,
- DataProvider,
- LayoutProvider
-} from 'recyclerlistview';
-import Triangle from 'react-native-triangle';
-import _ from 'lodash';
-import {
- responsiveFontSize
-} from 'react-native-responsive-dimensions';
-import * as Animatable from 'react-native-animatable';
+ RecyclerListView,
+ DataProvider,
+ LayoutProvider,
+} from "recyclerlistview";
+import Triangle from "react-native-triangle";
+import _ from "lodash";
+import { responsiveFontSize } from "react-native-responsive-dimensions";
+import * as Animatable from "react-native-animatable";
import EmojiSearchSpace from "./EmojiSearch";
-import Emoji from './Emoji';
+import Emoji from "./Emoji";
const {
- category,
- categoryIndexMap,
- emojiLib,
-} = require('./emoji-data/compiled');
+ category,
+ categoryIndexMap,
+ emojiLib,
+} = require("./emoji-data/compiled");
const CONTAINER_HORIZONTAL_PADDING = 5;
const categoryIcon = {
- fue: props => (
-
- ),
- people: props => (
-
- ),
- animals_and_nature: props => (
-
- ),
- food_and_drink: props => (
-
- ),
- activity: props => (
-
- ),
- travel_and_places: props => (
-
- ),
- objects: props => (
-
- ),
- symbols: props => (
-
- ),
- flags: props => (
-
- ),
+ fue: (props) => (
+
+ ),
+ people: (props) => (
+
+ ),
+ animals_and_nature: (props) => (
+
+ ),
+ food_and_drink: (props) => (
+
+ ),
+ activity: (props) => (
+
+ ),
+ travel_and_places: (props) => (
+
+ ),
+ objects: (props) => (
+
+ ),
+ symbols: (props) => (
+
+ ),
+ flags: (props) => (
+
+ ),
};
-const { width: WINDOW_WIDTH } = Dimensions.get('window');
+const { width: WINDOW_WIDTH } = Dimensions.get("window");
const ViewTypes = {
- EMOJI: 0,
- CATEGORY: 1
+ EMOJI: 0,
+ CATEGORY: 1,
};
// fromCodePoint polyfill
if (!String.fromCodePoint) {
- (function() {
- var defineProperty = (function() {
- // IE 8 only supports `Object.defineProperty` on DOM elements
- try {
- var object = {};
- var $defineProperty = Object.defineProperty;
- var result =
- $defineProperty(object, object, object) && $defineProperty;
- } catch (error) {}
- return result;
- })();
- var stringFromCharCode = String.fromCharCode;
- var floor = Math.floor;
- var fromCodePoint = function() {
- var MAX_SIZE = 0x4000;
- var codeUnits = [];
- var highSurrogate;
- var lowSurrogate;
- var index = -1;
- var length = arguments.length;
- if (!length) {
- return '';
- }
- var result = '';
- while (++index < length) {
- var codePoint = Number(arguments[index]);
- if (
- !isFinite(codePoint) || // `NaN`, `+Infinity`, or `-Infinity`
- codePoint < 0 || // not a valid Unicode code point
- codePoint > 0x10ffff || // not a valid Unicode code point
- floor(codePoint) != codePoint // not an integer
- ) {
- throw RangeError('Invalid code point: ' + codePoint);
- }
- if (codePoint <= 0xffff) {
- // BMP code point
- codeUnits.push(codePoint);
- } else {
- // Astral code point; split in surrogate halves
- // http://mathiasbynens.be/notes/javascript-encoding#surrogate-formulae
- codePoint -= 0x10000;
- highSurrogate = (codePoint >> 10) + 0xd800;
- lowSurrogate = (codePoint % 0x400) + 0xdc00;
- codeUnits.push(highSurrogate, lowSurrogate);
- }
- if (index + 1 == length || codeUnits.length > MAX_SIZE) {
- result += stringFromCharCode.apply(null, codeUnits);
- codeUnits.length = 0;
- }
- }
- return result;
- };
- if (defineProperty) {
- defineProperty(String, 'fromCodePoint', {
- value: fromCodePoint,
- configurable: true,
- writable: true
- });
- } else {
- String.fromCodePoint = fromCodePoint;
- }
+ (function () {
+ var defineProperty = (function () {
+ // IE 8 only supports `Object.defineProperty` on DOM elements
+ try {
+ var object = {};
+ var $defineProperty = Object.defineProperty;
+ var result = $defineProperty(object, object, object) && $defineProperty;
+ } catch (error) {}
+ return result;
})();
-}
-
-class EmojiInput extends React.PureComponent {
- constructor(props) {
- super(props);
-
- if (this.props.enableFrequentlyUsedEmoji) this.getFrequentlyUsedEmoji();
-
- this.emojiSize = _.floor(props.width / this.props.numColumns);
-
- this.emoji = [];
-
- this.loggingFunction = this.props.loggingFunction
- ? this.props.loggingFunction
- : null;
-
- this.verboseLoggingFunction = this.props.verboseLoggingFunction
- ? this.props.verboseLoggingFunction
- : false;
-
- let dataProvider = new DataProvider((e1, e2) => {
- return e1.char !== e2.char;
- });
-
- this._layoutProvider = new LayoutProvider(
- index =>
- _.has(this.emoji[index], 'categoryMarker')
- ? ViewTypes.CATEGORY
- : ViewTypes.EMOJI,
- (type, dim) => {
- switch (type) {
- case ViewTypes.CATEGORY:
- dim.height = this.props.categoryLabelHeight;
- dim.width = props.width;
- break;
- case ViewTypes.EMOJI:
- dim.height = dim.width =
- this.emojiSize -
- (CONTAINER_HORIZONTAL_PADDING * 2) / this.props.numColumns;
- break;
- }
- }
- );
-
- this._rowRenderer = this._rowRenderer.bind(this);
- this._isMounted = false;
-
- this.state = {
- dataProvider: dataProvider.cloneWithRows(this.emoji),
- currentCategoryKey: this.props.enableFrequentlyUsedEmoji
- ? category[0].key
- : category[1].key,
- searchQuery: '',
- emptySearchResult: false,
- frequentlyUsedEmoji: {},
- previousLongestQuery: '',
- selectedEmoji: null,
- offsetY: 0
- };
- }
-
- componentDidMount() {
- this._isMounted = true;
- this.search();
- }
-
- componentDidUpdate(prevProps, prevStates) {
- if (this.props.resetSearch) {
- this.textInput.clear();
- this.setState({
- searchQuery: ''
- });
- }
+ var stringFromCharCode = String.fromCharCode;
+ var floor = Math.floor;
+ var fromCodePoint = function () {
+ var MAX_SIZE = 0x4000;
+ var codeUnits = [];
+ var highSurrogate;
+ var lowSurrogate;
+ var index = -1;
+ var length = arguments.length;
+ if (!length) {
+ return "";
+ }
+ var result = "";
+ while (++index < length) {
+ var codePoint = Number(arguments[index]);
if (
- prevStates.searchQuery !== this.state.searchQuery ||
- prevStates.frequentlyUsedEmoji !== this.state.frequentlyUsedEmoji
+ !isFinite(codePoint) || // `NaN`, `+Infinity`, or `-Infinity`
+ codePoint < 0 || // not a valid Unicode code point
+ codePoint > 0x10ffff || // not a valid Unicode code point
+ floor(codePoint) != codePoint // not an integer
) {
- this.search();
+ throw RangeError("Invalid code point: " + codePoint);
}
- }
-
- componentWillUnmount() {
- this._isMounted = false;
- }
-
- getFrequentlyUsedEmoji = () => {
- AsyncStorage.getItem('@EmojiInput:frequentlyUsedEmoji').then(
- frequentlyUsedEmoji => {
- if (frequentlyUsedEmoji !== null) {
- frequentlyUsedEmoji = JSON.parse(frequentlyUsedEmoji);
- this.setState({ frequentlyUsedEmoji });
- }
- }
- );
- };
-
- addFrequentlyUsedEmoji = data => {
- let emoji = data.key;
- let { frequentlyUsedEmoji } = this.state;
- if (_(frequentlyUsedEmoji).has(emoji)) {
- frequentlyUsedEmoji[emoji]++;
+ if (codePoint <= 0xffff) {
+ // BMP code point
+ codeUnits.push(codePoint);
} else {
- frequentlyUsedEmoji[emoji] = 1;
+ // Astral code point; split in surrogate halves
+ // http://mathiasbynens.be/notes/javascript-encoding#surrogate-formulae
+ codePoint -= 0x10000;
+ highSurrogate = (codePoint >> 10) + 0xd800;
+ lowSurrogate = (codePoint % 0x400) + 0xdc00;
+ codeUnits.push(highSurrogate, lowSurrogate);
}
- this.setState({ frequentlyUsedEmoji });
- AsyncStorage.setItem(
- '@EmojiInput:frequentlyUsedEmoji',
- JSON.stringify(frequentlyUsedEmoji)
- );
- };
-
- clearFrequentlyUsedEmoji = () => {
- AsyncStorage.removeItem('@EmojiInput:frequentlyUsedEmoji');
- };
-
- search = () => {
- let query = this.state.searchQuery;
- this.setState({ emptySearchResult: false });
-
- if (query) {
- let result = _(EmojiSearchSpace.search(query).slice(0,50)) // Only show top 50 relevant results
- .map(({ emoji_key }) => emojiLib[emoji_key]) // speeds up response time
- .value();
-
- if (!result.length) {
- this.setState({ emptySearchResult: true });
- if (this.loggingFunction) {
- if (this.verboseLoggingFunction) {
- this.loggingFunction(query, 'emptySearchResult');
- } else {
- this.loggingFunction(query);
- }
- }
- }
- this.emojiRenderer(result);
- setTimeout(() => {
- if (this._isMounted) {
- this._recyclerListView._pendingScrollToOffset = null;
- this._recyclerListView.scrollToTop(false);
- }
- }, 15);
- } else {
- let fue = _(this.state.frequentlyUsedEmoji)
- .toPairs()
- .sortBy([1])
- .reverse()
- .map(([key]) => key)
- .value();
- fue = _(this.props.defaultFrequentlyUsedEmoji)
- .concat(fue)
- .take(this.props.numFrequentlyUsedEmoji)
- .value();
- let _emoji = _(emojiLib)
- .pick(fue)
- .mapKeys((v, k) => `FUE_${k}`)
- .mapValues(v => ({ ...v, category: 'fue' }))
- .extend(emojiLib)
- .value();
- this.emojiRenderer(_emoji);
+ if (index + 1 == length || codeUnits.length > MAX_SIZE) {
+ result += stringFromCharCode.apply(null, codeUnits);
+ codeUnits.length = 0;
}
+ }
+ return result;
};
+ if (defineProperty) {
+ defineProperty(String, "fromCodePoint", {
+ value: fromCodePoint,
+ configurable: true,
+ writable: true,
+ });
+ } else {
+ String.fromCodePoint = fromCodePoint;
+ }
+ })();
+}
- emojiRenderer = emojis => {
- let dataProvider = new DataProvider((e1, e2) => {
- return e1.char !== e2.char;
- });
-
- this.emoji = [];
- let categoryIndexMap = _(category)
- .map((v, idx) => ({ ...v, idx }))
- .keyBy('key')
- .value();
-
- let tempEmoji = _
- .range(_.size(category))
- .map((v, k) => [
- { char: category[k].key, categoryMarker: true, ...category[k] }
- ]);
- _(emojis)
- .values()
- .filter(emoji => _.every(this.props.filterFunctions, fn => fn(emoji)))
- .each(e => {
- if (_.has(categoryIndexMap, e.category)) {
- tempEmoji[categoryIndexMap[e.category].idx].push(e);
- }
- });
- let lastCount = 0;
- let s = 0;
- let rows = 0;
- const size = this.emojiSize - (CONTAINER_HORIZONTAL_PADDING / this.props.numColumns);
- _(tempEmoji).each(v => {
- let idx = categoryIndexMap[v[0].key].idx;
- let c = category[idx];
- c.idx = s;
- s += lastCount;
- rows += _.ceil(lastCount / this.props.numColumns);
- const labelOffset = lastCount < 1 ? 0 : this.props.categoryLabelHeight;
- c.y = rows * size + labelOffset;
- lastCount = v.length - 1; // -1 because one of the items in the array is the category marker itself
- });
- this.emoji = _(tempEmoji)
- .filter(c => c.length > 1)
- .flatten(tempEmoji)
- .value();
- if (
- !this.props.showCategoryTitleInSearchResults &&
- this.state.searchQuery
- ) {
- this.emoji = _.filter(this.emoji, c => !c.categoryMarker);
- }
+class EmojiInput extends React.PureComponent {
+ constructor(props) {
+ super(props);
- _.reduce(
- this.emoji,
- ({ x, y, i, previousDimension }, emoji) => {
- const layoutType = this._layoutProvider.getLayoutTypeForIndex(
- i
- );
- const dimension = { width: 0, height: 0 };
- this._layoutProvider._setLayoutForType(
- layoutType,
- dimension,
- i
- );
+ if (this.props.enableFrequentlyUsedEmoji) this.getFrequentlyUsedEmoji();
- x = x + dimension.width;
- if (x > this.props.width) {
- x = dimension.width;
- y = y + previousDimension.height;
- }
+ this.emojiSize = _.floor(props.width / this.props.numColumns);
- emoji.y = y;
- emoji.x = x - dimension.width;
+ this.emoji = [];
- return { x, y, i: i + 1, previousDimension: dimension };
- },
- { x: 0, y: 0, i: 0, previousDimension: null }
- );
- this.setState({
- dataProvider: dataProvider.cloneWithRows(this.emoji)
- });
- };
+ this.loggingFunction = this.props.loggingFunction
+ ? this.props.loggingFunction
+ : null;
+
+ this.verboseLoggingFunction = this.props.verboseLoggingFunction
+ ? this.props.verboseLoggingFunction
+ : false;
- _rowRenderer(type, data) {
- const { selectedEmoji, emojiFontSize, categoryLabelTextStyle } = this.props;
+ let dataProvider = new DataProvider((e1, e2) => {
+ return e1.char !== e2.char;
+ });
+ this._layoutProvider = new LayoutProvider(
+ (index) =>
+ _.has(this.emoji[index], "categoryMarker")
+ ? ViewTypes.CATEGORY
+ : ViewTypes.EMOJI,
+ (type, dim) => {
switch (type) {
- case ViewTypes.CATEGORY:
- return (
-
- {data.title}
-
- );
- case ViewTypes.EMOJI:
- return (
-
- );
+ case ViewTypes.CATEGORY:
+ dim.height = this.props.categoryLabelHeight;
+ dim.width = props.width;
+ break;
+ case ViewTypes.EMOJI:
+ dim.height = dim.width =
+ this.emojiSize -
+ (CONTAINER_HORIZONTAL_PADDING * 2) / this.props.numColumns;
+ break;
}
- }
-
- handleCategoryPress = key => {
- this.props.onCategoryPress(key);
- this._recyclerListView.scrollToOffset(
- 0,
- category[categoryIndexMap[key].idx].y + 1,
- false
- );
- };
-
- handleScroll = (rawEvent, offsetX, offsetY) => {
- let idx = _(category).findLastIndex(c => c.y < offsetY);
- if (idx < 0) idx = 0;
- this.setState({
- currentCategoryKey: category[idx].key,
- selectedEmoji: null,
- offsetY
- });
+ }
+ );
+
+ this._rowRenderer = this._rowRenderer.bind(this);
+ this._isMounted = false;
+
+ this.state = {
+ dataProvider: dataProvider.cloneWithRows(this.emoji),
+ currentCategoryKey: this.props.enableFrequentlyUsedEmoji
+ ? category[0].key
+ : category[1].key,
+ searchQuery: "",
+ emptySearchResult: false,
+ frequentlyUsedEmoji: {},
+ previousLongestQuery: "",
+ selectedEmoji: null,
+ offsetY: 0,
};
+ }
+
+ componentDidMount() {
+ this._isMounted = true;
+ this.search();
+ }
+
+ componentDidUpdate(prevProps, prevStates) {
+ if (this.props.resetSearch) {
+ this.textInput.clear();
+ this.setState({
+ searchQuery: "",
+ });
+ }
+ if (
+ prevStates.searchQuery !== this.state.searchQuery ||
+ prevStates.frequentlyUsedEmoji !== this.state.frequentlyUsedEmoji
+ ) {
+ this.search();
+ }
+ }
+
+ componentWillUnmount() {
+ this._isMounted = false;
+ }
+
+ getFrequentlyUsedEmoji = () => {
+ AsyncStorage.getItem("@EmojiInput:frequentlyUsedEmoji").then(
+ (frequentlyUsedEmoji) => {
+ if (frequentlyUsedEmoji !== null) {
+ frequentlyUsedEmoji = JSON.parse(frequentlyUsedEmoji);
+ this.setState({ frequentlyUsedEmoji });
+ }
+ }
+ );
+ };
+
+ addFrequentlyUsedEmoji = (data) => {
+ let emoji = data.key;
+ let { frequentlyUsedEmoji } = this.state;
+ if (_(frequentlyUsedEmoji).has(emoji)) {
+ frequentlyUsedEmoji[emoji]++;
+ } else {
+ frequentlyUsedEmoji[emoji] = 1;
+ }
+ this.setState({ frequentlyUsedEmoji });
+ AsyncStorage.setItem(
+ "@EmojiInput:frequentlyUsedEmoji",
+ JSON.stringify(frequentlyUsedEmoji)
+ );
+ };
+
+ clearFrequentlyUsedEmoji = () => {
+ AsyncStorage.removeItem("@EmojiInput:frequentlyUsedEmoji");
+ };
+
+ search = () => {
+ let query = this.state.searchQuery;
+ this.setState({ emptySearchResult: false });
+
+ if (query) {
+ let result = _(EmojiSearchSpace.search(query).slice(0, 50)) // Only show top 50 relevant results
+ .map(({ emoji_key }) => emojiLib[emoji_key]) // speeds up response time
+ .value();
+
+ if (!result.length) {
+ this.setState({ emptySearchResult: true });
+ if (this.loggingFunction) {
+ if (this.verboseLoggingFunction) {
+ this.loggingFunction(query, "emptySearchResult");
+ } else {
+ this.loggingFunction(query);
+ }
+ }
+ }
+ this.emojiRenderer(result);
+ setTimeout(() => {
+ if (this._isMounted) {
+ this._recyclerListView._pendingScrollToOffset = null;
+ this._recyclerListView.scrollToTop(false);
+ }
+ }, 15);
+ } else {
+ let fue = _(this.state.frequentlyUsedEmoji)
+ .toPairs()
+ .sortBy([1])
+ .reverse()
+ .map(([key]) => key)
+ .value();
+ // fue = _(this.props.defaultFrequentlyUsedEmoji)
+ // .concat(fue)
+ // .take(this.props.numFrequentlyUsedEmoji)
+ // .value();
+ let _emoji = _(emojiLib)
+ .pick(fue)
+ .mapKeys((v, k) => `FUE_${k}`)
+ .mapValues((v) => ({ ...v, category: "fue" }))
+ .extend(emojiLib)
+ .value();
+ this.emojiRenderer(_emoji);
+ }
+ };
+
+ emojiRenderer = (emojis) => {
+ let dataProvider = new DataProvider((e1, e2) => {
+ return e1.char !== e2.char;
+ });
+
+ this.emoji = [];
+ let categoryIndexMap = _(category)
+ .map((v, idx) => ({ ...v, idx }))
+ .keyBy("key")
+ .value();
+
+ let tempEmoji = _.range(_.size(category)).map((v, k) => [
+ { char: category[k].key, categoryMarker: true, ...category[k] },
+ ]);
+ _(emojis)
+ .values()
+ .filter((emoji) => _.every(this.props.filterFunctions, (fn) => fn(emoji)))
+ .each((e) => {
+ if (_.has(categoryIndexMap, e.category)) {
+ tempEmoji[categoryIndexMap[e.category].idx].push(e);
+ }
+ });
+ let lastCount = 0;
+ let s = 0;
+ let rows = 0;
+ const size =
+ this.emojiSize - CONTAINER_HORIZONTAL_PADDING / this.props.numColumns;
+ _(tempEmoji).each((v) => {
+ let idx = categoryIndexMap[v[0].key].idx;
+ let c = category[idx];
+ c.idx = s;
+ s += lastCount;
+ rows += _.ceil(lastCount / this.props.numColumns);
+ const labelOffset = lastCount < 1 ? 0 : this.props.categoryLabelHeight;
+ c.y = rows * size + labelOffset;
+ lastCount = v.length - 1; // -1 because one of the items in the array is the category marker itself
+ });
+ this.emoji = _(tempEmoji)
+ .filter((c) => c.length > 1)
+ .flatten(tempEmoji)
+ .value();
+ if (
+ !this.props.showCategoryTitleInSearchResults &&
+ this.state.searchQuery
+ ) {
+ this.emoji = _.filter(this.emoji, (c) => !c.categoryMarker);
+ }
- handleEmojiPress = data => {
- this.props.onEmojiSelected(data);
- if (_.has(data, 'derivedFrom')) {
- data = data.derivedFrom;
+ _.reduce(
+ this.emoji,
+ ({ x, y, i, previousDimension }, emoji) => {
+ const layoutType = this._layoutProvider.getLayoutTypeForIndex(i);
+ const dimension = { width: 0, height: 0 };
+ this._layoutProvider._setLayoutForType(layoutType, dimension, i);
+
+ x = x + dimension.width;
+ if (x > this.props.width) {
+ x = dimension.width;
+ y = y + previousDimension.height;
}
- if (this.props.enableFrequentlyUsedEmoji)
- this.addFrequentlyUsedEmoji(data);
- this.hideSkinSelector();
- };
- handleEmojiLongPress = data => {
- // disable long press for now
- // if (!_.has(data, ['lib', 'skin_variations'])) return;
- // this.setState({ selectedEmoji: data });
- };
+ emoji.y = y;
+ emoji.x = x - dimension.width;
- hideSkinSelector = () => {
- this.setState({ selectedEmoji: null });
- };
+ return { x, y, i: i + 1, previousDimension: dimension };
+ },
+ { x: 0, y: 0, i: 0, previousDimension: null }
+ );
+ this.setState({
+ dataProvider: dataProvider.cloneWithRows(this.emoji),
+ });
+ };
- render() {
- const { selectedEmoji, offsetY } = this.state;
- const { enableSearch, width, renderAheadOffset } = this.props;
+ _rowRenderer(type, data) {
+ const { selectedEmoji, emojiFontSize, categoryLabelTextStyle } = this.props;
+
+ switch (type) {
+ case ViewTypes.CATEGORY:
+ return (
+
+ {data.title}
+
+ );
+ case ViewTypes.EMOJI:
return (
+
+ );
+ }
+ }
+
+ handleCategoryPress = (key) => {
+ this.props.onCategoryPress(key);
+ this._recyclerListView.scrollToOffset(
+ 0,
+ category[categoryIndexMap[key].idx].y + 1,
+ false
+ );
+ };
+
+ handleScroll = (rawEvent, offsetX, offsetY) => {
+ let idx = _(category).findLastIndex((c) => c.y < offsetY);
+ if (idx < 0) idx = 0;
+ this.setState({
+ currentCategoryKey: category[idx].key,
+ selectedEmoji: null,
+ offsetY,
+ });
+ };
+
+ handleEmojiPress = (data) => {
+ this.props.onEmojiSelected(data);
+ if (_.has(data, "derivedFrom")) {
+ data = data.derivedFrom;
+ }
+ if (this.props.enableFrequentlyUsedEmoji) this.addFrequentlyUsedEmoji(data);
+ this.hideSkinSelector();
+ };
+
+ handleEmojiLongPress = (data) => {
+ // disable long press for now
+ // if (!_.has(data, ['lib', 'skin_variations'])) return;
+ // this.setState({ selectedEmoji: data });
+ };
+
+ hideSkinSelector = () => {
+ this.setState({ selectedEmoji: null });
+ };
+
+ render() {
+ const { selectedEmoji, offsetY } = this.state;
+ const { enableSearch, width, renderAheadOffset } = this.props;
+ return (
+
+ {enableSearch && (
+ {
+ this.textInput = input;
+ }}
+ placeholderTextColor={"#A0A0A2"}
+ style={{
+ backgroundColor: "#FFFFFF",
+ fontSize: responsiveFontSize(2),
+ padding: 10,
+ paddingLeft: 15,
+ borderRadius: 7.5,
+ margin: 10,
+ color: "#727171", // dark grey
+ }}
+ returnKeyType={"search"}
+ clearButtonMode={"always"}
+ placeholder={"Search emoji"}
+ autoCorrect={true}
+ onChangeText={(text) => {
+ this.setState({
+ searchQuery: text,
+ });
+ if (text.length) {
+ if (text.length > this.state.previousLongestQuery.length) {
+ this.setState({
+ previousLongestQuery: text,
+ });
+ }
+ } else {
+ if (this.loggingFunction) {
+ if (this.verboseLoggingFunction) {
+ this.loggingFunction(
+ this.state.previousLongestQuery,
+ "previousLongestQuery"
+ );
+ } else {
+ this.loggingFunction(this.state.previousLongestQuery);
+ }
+ }
+ this.setState({
+ previousLongestQuery: "",
+ });
+ }
+ }}
+ />
+ )}
+ {this.state.emptySearchResult && (
+
+ No search results.
+
+ )}
+
+ (this._recyclerListView = component)}
+ onScroll={this.handleScroll}
+ keyboardShouldPersistTaps={"always"}
+ />
+
+ {!this.state.searchQuery && this.props.showCategoryTab && (
+
+
+ {_.drop(
+ category,
+ this.props.enableFrequentlyUsedEmoji ? 0 : 1
+ ).map(({ key }) => {
+ const tabSelected = key === this.state.currentCategoryKey;
+
+ return (
+ this.handleCategoryPress(key)}
+ style={[
+ styles.categoryIconContainer,
+ { height: this.props.categoryFontSize + 15 },
+ ]}
+ >
+
+ {categoryIcon[key]({
+ size: this.props.categoryFontSize,
+ tabSelected,
+ })}
+
+ {/* Active category indicator */}
+ {tabSelected && }
+
+ );
+ })}
+
+
+ )}
+ {selectedEmoji && (
+
- {enableSearch && (
- {
- this.textInput = input;
- }}
- placeholderTextColor={'#A0A0A2'}
- style={{
- backgroundColor: "#FFFFFF",
- fontSize: responsiveFontSize(2),
- padding: 10,
- paddingLeft: 15,
- borderRadius: 7.5,
- margin: 10,
- color: "#727171" // dark grey
- }}
- returnKeyType={'search'}
- clearButtonMode={'always'}
- placeholder={'Search emoji'}
- autoCorrect={true}
- onChangeText={text => {
- this.setState({
- searchQuery: text
- });
- if (text.length) {
- if (
- text.length >
- this.state.previousLongestQuery.length
- ) {
- this.setState({
- previousLongestQuery: text
- });
- }
- } else {
- if (this.loggingFunction) {
- if (this.verboseLoggingFunction) {
- this.loggingFunction(
- this.state.previousLongestQuery,
- 'previousLongestQuery'
- );
- } else {
- this.loggingFunction(
- this.state.previousLongestQuery
- );
- }
- }
- this.setState({
- previousLongestQuery: ''
- });
- }
+ {_(_.get(selectedEmoji, ["lib", "skin_variations"]))
+ .map((data) => {
+ return (
+
+
- )}
- {this.state.emptySearchResult && (
-
- No search results.
+ size={this.props.emojiFontSize}
+ />
- )}
-
- (this._recyclerListView = component)}
- onScroll={this.handleScroll}
- keyboardShouldPersistTaps={"always"}
- />
-
- {!this.state.searchQuery &&
- this.props.showCategoryTab && (
-
-
- {_.drop(category, this.props.enableFrequentlyUsedEmoji ? 0 : 1).map(
- ({ key }) => {
- const tabSelected = key === this.state.currentCategoryKey;
-
- return (
- this.handleCategoryPress(key)}
- style={[styles.categoryIconContainer, { height: this.props.categoryFontSize + 15 }]}
- >
-
- {categoryIcon[key]({
- size: this.props.categoryFontSize,
- tabSelected
- })}
-
- {/* Active category indicator */}
- {tabSelected && (
-
- )}
-
- );
- }
- )}
-
-
- )}
- {selectedEmoji && (
-
-
- {_(_.get(selectedEmoji, ['lib', 'skin_variations']))
- .map(data => {
- return (
-
-
-
- );
- })
- .value()}
-
-
-
-
-
- )}
+ );
+ })
+ .value()}
- );
- }
+
+
+
+
+ )}
+
+ );
+ }
}
EmojiInput.defaultProps = {
- keyboardBackgroundColor: '#E3E1EC',
- width: WINDOW_WIDTH,
- numColumns: 6,
-
- showCategoryTab: true,
- showCategoryTitleInSearchResults: false,
- categoryUnhighlightedColor: 'lightgray',
- categoryHighlightColor: 'black',
- enableSearch: true,
-
- enableFrequentlyUsedEmoji: true,
- numFrequentlyUsedEmoji: 18,
- defaultFrequentlyUsedEmoji: [],
-
- categoryLabelHeight: 20,
- categoryLabelTextStyle: {
- fontSize: 25,
- },
- emojiFontSize: 38,
- categoryFontSize: 20,
- resetSearch: false,
- filterFunctions: [],
- renderAheadOffset: 1500
+ keyboardBackgroundColor: "#E3E1EC",
+ width: WINDOW_WIDTH,
+ numColumns: 6,
+
+ showCategoryTab: true,
+ showCategoryTitleInSearchResults: false,
+ categoryUnhighlightedColor: "lightgray",
+ categoryHighlightColor: "black",
+ enableSearch: true,
+
+ enableFrequentlyUsedEmoji: true,
+ numFrequentlyUsedEmoji: 18,
+ defaultFrequentlyUsedEmoji: [],
+
+ categoryLabelHeight: 20,
+ categoryLabelTextStyle: {
+ fontSize: 25,
+ },
+ emojiFontSize: 38,
+ categoryFontSize: 20,
+ resetSearch: false,
+ filterFunctions: [],
+ renderAheadOffset: 1500,
};
EmojiInput.propTypes = {
- keyboardBackgroundColor: PropTypes.string,
- width: PropTypes.number,
- numColumns: PropTypes.number,
- emojiFontSize: PropTypes.number,
-
- onEmojiSelected: PropTypes.func.isRequired,
- onCategoryPress: PropTypes.func,
-
- showCategoryTab: PropTypes.bool,
- showCategoryTitleInSearchResults: PropTypes.bool,
- categoryFontSize: PropTypes.number,
- categoryUnhighlightedColor: PropTypes.string,
- categoryHighlightColor: PropTypes.string,
- categorySize: PropTypes.number,
- categoryLabelHeight: PropTypes.number,
- enableSearch: PropTypes.bool,
- categoryLabelTextStyle: PropTypes.object,
-
- enableFrequentlyUsedEmoji: PropTypes.bool,
- numFrequentlyUsedEmoji: PropTypes.number,
- defaultFrequentlyUsedEmoji: PropTypes.arrayOf(PropTypes.string),
- resetSearch: PropTypes.bool,
- filterFunctions: PropTypes.arrayOf(PropTypes.func),
- renderAheadOffset: PropTypes.number,
- selectedEmoji: PropTypes.string,
+ keyboardBackgroundColor: PropTypes.string,
+ width: PropTypes.number,
+ numColumns: PropTypes.number,
+ emojiFontSize: PropTypes.number,
+
+ onEmojiSelected: PropTypes.func.isRequired,
+ onCategoryPress: PropTypes.func,
+
+ showCategoryTab: PropTypes.bool,
+ showCategoryTitleInSearchResults: PropTypes.bool,
+ categoryFontSize: PropTypes.number,
+ categoryUnhighlightedColor: PropTypes.string,
+ categoryHighlightColor: PropTypes.string,
+ categorySize: PropTypes.number,
+ categoryLabelHeight: PropTypes.number,
+ enableSearch: PropTypes.bool,
+ categoryLabelTextStyle: PropTypes.object,
+
+ enableFrequentlyUsedEmoji: PropTypes.bool,
+ numFrequentlyUsedEmoji: PropTypes.number,
+ defaultFrequentlyUsedEmoji: PropTypes.arrayOf(PropTypes.string),
+ resetSearch: PropTypes.bool,
+ filterFunctions: PropTypes.arrayOf(PropTypes.func),
+ renderAheadOffset: PropTypes.number,
+ selectedEmoji: PropTypes.string,
};
const styles = {
- cellContainer: {
- justifyContent: 'space-around',
- alignItems: 'center',
- flex: 1
- },
- footerContainer: {
- width: '100%',
- backgroundColor: '#fff',
- flexDirection: 'row'
- },
- emptySearchResultContainer: {
- flex: 1,
- alignItems: 'center',
- padding: 20
- },
- emojiText: {
- color: 'black',
- fontWeight: 'bold'
- },
- categoryText: {
- color: 'black',
- fontWeight: 'bold',
- paddingTop: 8,
- paddingBottom: 2,
- paddingLeft: 10
- },
- categoryIconContainer: {
- flex: 1,
- alignItems: 'center',
- justifyContent: 'space-around',
- paddingTop: 4,
- paddingBottom: 8,
- },
- skinSelectorContainer: {
- width: '100%',
- flex: 1,
- flexDirection: 'column',
- justifyContent: 'flex-start',
- position: 'absolute'
- },
- skinSelector: {
- width: '100%',
- justifyContent: 'space-around',
- alignItems: 'center',
- flexDirection: 'row',
- backgroundColor: '#fff'
- },
- skinSelectorTriangleContainer: {
- height: 20
- },
- skinEmoji: {
- flex: 1
- },
- categoryTabEmoji: {
- color: "#000000", // Fixes fade emoji on Android
- },
- tabIndicator:{
- width: 5,
- height: 5,
- borderRadius: 2.5,
- bottom: 3.5,
- position: "absolute",
- backgroundColor: "#00AAE5",
- },
- recyclerListView: {
- paddingHorizontal: CONTAINER_HORIZONTAL_PADDING,
-
- // Fix RecyclerListView error
- minWidth: 1,
- minHeight: 1,
- flex: 1
- }
+ cellContainer: {
+ justifyContent: "space-around",
+ alignItems: "center",
+ flex: 1,
+ },
+ footerContainer: {
+ width: "100%",
+ backgroundColor: "#fff",
+ flexDirection: "row",
+ },
+ emptySearchResultContainer: {
+ flex: 1,
+ alignItems: "center",
+ padding: 20,
+ },
+ emojiText: {
+ color: "black",
+ fontWeight: "bold",
+ },
+ categoryText: {
+ color: "black",
+ fontWeight: "bold",
+ paddingTop: 8,
+ paddingBottom: 2,
+ paddingLeft: 10,
+ },
+ categoryIconContainer: {
+ flex: 1,
+ alignItems: "center",
+ justifyContent: "space-around",
+ paddingTop: 4,
+ paddingBottom: 8,
+ },
+ skinSelectorContainer: {
+ width: "100%",
+ flex: 1,
+ flexDirection: "column",
+ justifyContent: "flex-start",
+ position: "absolute",
+ },
+ skinSelector: {
+ width: "100%",
+ justifyContent: "space-around",
+ alignItems: "center",
+ flexDirection: "row",
+ backgroundColor: "#fff",
+ },
+ skinSelectorTriangleContainer: {
+ height: 20,
+ },
+ skinEmoji: {
+ flex: 1,
+ },
+ categoryTabEmoji: {
+ color: "#000000", // Fixes fade emoji on Android
+ },
+ tabIndicator: {
+ width: 5,
+ height: 5,
+ borderRadius: 2.5,
+ bottom: 3.5,
+ position: "absolute",
+ backgroundColor: "#00AAE5",
+ },
+ recyclerListView: {
+ paddingHorizontal: CONTAINER_HORIZONTAL_PADDING,
+
+ // Fix RecyclerListView error
+ minWidth: 1,
+ minHeight: 1,
+ flex: 1,
+ },
};
export default EmojiInput;
diff --git a/src/EmojiSearch.js b/src/EmojiSearch.js
index 86f7143..efd3263 100644
--- a/src/EmojiSearch.js
+++ b/src/EmojiSearch.js
@@ -2,15 +2,6 @@ import Fuse from "fuse.js";
const { emojiArray } = require("./emoji-data/compiled");
-const emojiSynonyms = require("./emoji-data/emojiSynonyms");
-
-// Extend keywords using synonym JSON file
-for (let i = 0; i < emojiArray.length; i++) {
- emojiArray[i]["keywords"] = emojiArray[i]["keywords"].concat(
- emojiSynonyms[i]["keywords"]
- );
-}
-
const fuseOptions = {
shouldSort: true,
threshold: 0.0, // threshold of 0.0 is perfect match and 1.0 is any match
diff --git a/src/emoji-data/compiled.js b/src/emoji-data/compiled.js
index c9fcf19..fef0b70 100644
--- a/src/emoji-data/compiled.js
+++ b/src/emoji-data/compiled.js
@@ -1,65380 +1,91253 @@
module.exports = {
- "category": [{
- "key": "fue",
- "title": "Frequently Used"
- }, {
- "key": "people",
- "title": "Smileys & People"
- }, {
- "key": "animals_and_nature",
- "title": "Animals & Nature"
- }, {
- "key": "food_and_drink",
- "title": "Food & Drink"
- }, {
- "key": "activity",
- "title": "Activities"
- }, {
- "key": "travel_and_places",
- "title": "Travel & Places"
- }, {
- "key": "objects",
- "title": "Objects"
- }, {
- "key": "symbols",
- "title": "Symbols"
- }, {
- "key": "flags",
- "title": "Flags"
- }],
- "categoryIndexMap": {
- "fue": {
- "key": "fue",
- "title": "Frequently Used",
- "idx": 0
- },
- "people": {
- "key": "people",
- "title": "Smileys & People",
- "idx": 1
- },
- "animals_and_nature": {
- "key": "animals_and_nature",
- "title": "Animals & Nature",
- "idx": 2
- },
- "food_and_drink": {
- "key": "food_and_drink",
- "title": "Food & Drink",
- "idx": 3
- },
- "activity": {
- "key": "activity",
- "title": "Activities",
- "idx": 4
- },
- "travel_and_places": {
- "key": "travel_and_places",
- "title": "Travel & Places",
- "idx": 5
- },
- "objects": {
- "key": "objects",
- "title": "Objects",
- "idx": 6
- },
- "symbols": {
- "key": "symbols",
- "title": "Symbols",
- "idx": 7
- },
- "flags": {
- "key": "flags",
- "title": "Flags",
- "idx": 8
- }
- },
- "emojiLib": {
- "100": {
- "char": "\ud83d\udcaf",
- "key": "100",
- "keywords": ["100", "HUNDRED POINTS SYMBOL"],
- "category": "symbols",
- "lib": {
- "name": "HUNDRED POINTS SYMBOL",
- "unified": "1F4AF",
- "non_qualified": null,
- "docomo": null,
- "au": "E4F2",
- "softbank": null,
- "google": "FEB7B",
- "image": "1f4af.png",
- "sheet_x": 25,
- "sheet_y": 50,
- "short_name": "100",
- "short_names": ["100"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 145,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "1234": {
- "char": "\ud83d\udd22",
- "key": "1234",
- "keywords": ["1234", "INPUT SYMBOL FOR NUMBERS"],
- "category": "symbols",
- "lib": {
- "name": "INPUT SYMBOL FOR NUMBERS",
- "unified": "1F522",
- "non_qualified": null,
- "docomo": null,
- "au": "EAFF",
- "softbank": null,
- "google": "FEB7E",
- "image": "1f522.png",
- "sheet_x": 28,
- "sheet_y": 5,
- "short_name": "1234",
- "short_names": ["1234"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 148,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "earth_africa": {
- "char": "\ud83c\udf0d",
- "key": "earth_africa",
- "keywords": ["earth_africa", "EARTH GLOBE EUROPE-AFRICA"],
- "category": "travel_and_places",
- "lib": {
- "name": "EARTH GLOBE EUROPE-AFRICA",
- "unified": "1F30D",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f30d.png",
- "sheet_x": 5,
- "sheet_y": 52,
- "short_name": "earth_africa",
- "short_names": ["earth_africa"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 1,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "grapes": {
- "char": "\ud83c\udf47",
- "key": "grapes",
- "keywords": ["grapes", "GRAPES"],
- "category": "food_and_drink",
- "lib": {
- "name": "GRAPES",
- "unified": "1F347",
- "non_qualified": null,
- "docomo": null,
- "au": "EB34",
- "softbank": null,
- "google": "FE059",
- "image": "1f347.png",
- "sheet_x": 7,
- "sheet_y": 2,
- "short_name": "grapes",
- "short_names": ["grapes"],
- "text": null,
- "texts": null,
- "category": "Food & Drink",
- "sort_order": 1,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "jack_o_lantern": {
- "char": "\ud83c\udf83",
- "key": "jack_o_lantern",
- "keywords": ["jack_o_lantern", "JACK-O-LANTERN"],
- "category": "activity",
- "lib": {
- "name": "JACK-O-LANTERN",
- "unified": "1F383",
- "non_qualified": null,
- "docomo": null,
- "au": "EAEE",
- "softbank": "E445",
- "google": "FE51F",
- "image": "1f383.png",
- "sheet_x": 8,
- "sheet_y": 9,
- "short_name": "jack_o_lantern",
- "short_names": ["jack_o_lantern"],
- "text": null,
- "texts": null,
- "category": "Activities",
- "sort_order": 1,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "checkered_flag": {
- "char": "\ud83c\udfc1",
- "key": "checkered_flag",
- "keywords": ["checkered_flag", "CHEQUERED FLAG"],
- "category": "flags",
- "lib": {
- "name": "CHEQUERED FLAG",
- "unified": "1F3C1",
- "non_qualified": null,
- "docomo": "E659",
- "au": "E4B9",
- "softbank": "E132",
- "google": "FE7D7",
- "image": "1f3c1.png",
- "sheet_x": 9,
- "sheet_y": 18,
- "short_name": "checkered_flag",
- "short_names": ["checkered_flag"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 1,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "atm": {
- "char": "\ud83c\udfe7",
- "key": "atm",
- "keywords": ["atm", "AUTOMATED TELLER MACHINE"],
- "category": "symbols",
- "lib": {
- "name": "AUTOMATED TELLER MACHINE",
- "unified": "1F3E7",
- "non_qualified": null,
- "docomo": "E668",
- "au": "E4A3",
- "softbank": "E154",
- "google": "FE4B6",
- "image": "1f3e7.png",
- "sheet_x": 11,
- "sheet_y": 45,
- "short_name": "atm",
- "short_names": ["atm"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 1,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "skin-tone-2": {
- "char": "\ud83c\udffb",
- "key": "skin-tone-2",
- "keywords": ["skin-tone-2", "EMOJI MODIFIER FITZPATRICK TYPE-1-2"],
- "lib": {
- "name": "EMOJI MODIFIER FITZPATRICK TYPE-1-2",
- "unified": "1F3FB",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f3fb.png",
- "sheet_x": 12,
- "sheet_y": 14,
- "short_name": "skin-tone-2",
- "short_names": ["skin-tone-2"],
- "text": null,
- "texts": null,
- "category": "Skin Tones",
- "sort_order": 1,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "monkey_face": {
- "char": "\ud83d\udc35",
- "key": "monkey_face",
- "keywords": ["monkey_face", "MONKEY FACE"],
- "category": "animals_and_nature",
- "lib": {
- "name": "MONKEY FACE",
- "unified": "1F435",
- "non_qualified": null,
- "docomo": null,
- "au": "E4D9",
- "softbank": "E109",
- "google": "FE1C4",
- "image": "1f435.png",
- "sheet_x": 13,
- "sheet_y": 19,
- "short_name": "monkey_face",
- "short_names": ["monkey_face"],
- "text": null,
- "texts": [":o)"],
- "category": "Animals & Nature",
- "sort_order": 1,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "mute": {
- "char": "\ud83d\udd07",
- "key": "mute",
- "keywords": ["mute", "SPEAKER WITH CANCELLATION STROKE"],
- "category": "objects",
- "lib": {
- "name": "SPEAKER WITH CANCELLATION STROKE",
- "unified": "1F507",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f507.png",
- "sheet_x": 27,
- "sheet_y": 31,
- "short_name": "mute",
- "short_names": ["mute"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 1,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "grinning": {
- "char": "\ud83d\ude00",
- "key": "grinning",
- "keywords": ["grinning", "GRINNING FACE"],
- "category": "people",
- "lib": {
- "name": "GRINNING FACE",
- "unified": "1F600",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f600.png",
- "sheet_x": 30,
- "sheet_y": 43,
- "short_name": "grinning",
- "short_names": ["grinning"],
- "text": ":D",
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 1,
- "added_in": "6.1",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "earth_americas": {
- "char": "\ud83c\udf0e",
- "key": "earth_americas",
- "keywords": ["earth_americas", "EARTH GLOBE AMERICAS"],
- "category": "travel_and_places",
- "lib": {
- "name": "EARTH GLOBE AMERICAS",
- "unified": "1F30E",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f30e.png",
- "sheet_x": 6,
- "sheet_y": 0,
- "short_name": "earth_americas",
- "short_names": ["earth_americas"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 2,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "melon": {
- "char": "\ud83c\udf48",
- "key": "melon",
- "keywords": ["melon", "MELON"],
- "category": "food_and_drink",
- "lib": {
- "name": "MELON",
- "unified": "1F348",
- "non_qualified": null,
- "docomo": null,
- "au": "EB32",
- "softbank": null,
- "google": "FE057",
- "image": "1f348.png",
- "sheet_x": 7,
- "sheet_y": 3,
- "short_name": "melon",
- "short_names": ["melon"],
- "text": null,
- "texts": null,
- "category": "Food & Drink",
- "sort_order": 2,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "christmas_tree": {
- "char": "\ud83c\udf84",
- "key": "christmas_tree",
- "keywords": ["christmas_tree", "CHRISTMAS TREE"],
- "category": "activity",
- "lib": {
- "name": "CHRISTMAS TREE",
- "unified": "1F384",
- "non_qualified": null,
- "docomo": "E6A4",
- "au": "E4C9",
- "softbank": "E033",
- "google": "FE512",
- "image": "1f384.png",
- "sheet_x": 8,
- "sheet_y": 10,
- "short_name": "christmas_tree",
- "short_names": ["christmas_tree"],
- "text": null,
- "texts": null,
- "category": "Activities",
- "sort_order": 2,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "skin-tone-3": {
- "char": "\ud83c\udffc",
- "key": "skin-tone-3",
- "keywords": ["skin-tone-3", "EMOJI MODIFIER FITZPATRICK TYPE-3"],
- "lib": {
- "name": "EMOJI MODIFIER FITZPATRICK TYPE-3",
- "unified": "1F3FC",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f3fc.png",
- "sheet_x": 12,
- "sheet_y": 15,
- "short_name": "skin-tone-3",
- "short_names": ["skin-tone-3"],
- "text": null,
- "texts": null,
- "category": "Skin Tones",
- "sort_order": 2,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "monkey": {
- "char": "\ud83d\udc12",
- "key": "monkey",
- "keywords": ["monkey", "MONKEY"],
- "category": "animals_and_nature",
- "lib": {
- "name": "MONKEY",
- "unified": "1F412",
- "non_qualified": null,
- "docomo": null,
- "au": "E4D9",
- "softbank": "E528",
- "google": "FE1CE",
- "image": "1f412.png",
- "sheet_x": 12,
- "sheet_y": 37,
- "short_name": "monkey",
- "short_names": ["monkey"],
- "text": null,
- "texts": null,
- "category": "Animals & Nature",
- "sort_order": 2,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "speaker": {
- "char": "\ud83d\udd08",
- "key": "speaker",
- "keywords": ["speaker", "SPEAKER"],
- "category": "objects",
- "lib": {
- "name": "SPEAKER",
- "unified": "1F508",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f508.png",
- "sheet_x": 27,
- "sheet_y": 32,
- "short_name": "speaker",
- "short_names": ["speaker"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 2,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "grin": {
- "char": "\ud83d\ude01",
- "key": "grin",
- "keywords": ["grin", "GRINNING FACE WITH SMILING EYES"],
- "category": "people",
- "lib": {
- "name": "GRINNING FACE WITH SMILING EYES",
- "unified": "1F601",
- "non_qualified": null,
- "docomo": "E753",
- "au": "EB80",
- "softbank": "E404",
- "google": "FE333",
- "image": "1f601.png",
- "sheet_x": 30,
- "sheet_y": 44,
- "short_name": "grin",
- "short_names": ["grin"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 2,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "triangular_flag_on_post": {
- "char": "\ud83d\udea9",
- "key": "triangular_flag_on_post",
- "keywords": ["triangular_flag_on_post", "TRIANGULAR FLAG ON POST"],
- "category": "flags",
- "lib": {
- "name": "TRIANGULAR FLAG ON POST",
- "unified": "1F6A9",
- "non_qualified": null,
- "docomo": "E6DE",
- "au": "EB2C",
- "softbank": null,
- "google": "FEB22",
- "image": "1f6a9.png",
- "sheet_x": 35,
- "sheet_y": 28,
- "short_name": "triangular_flag_on_post",
- "short_names": ["triangular_flag_on_post"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 2,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "put_litter_in_its_place": {
- "char": "\ud83d\udeae",
- "key": "put_litter_in_its_place",
- "keywords": ["put_litter_in_its_place", "PUT LITTER IN ITS PLACE SYMBOL"],
- "category": "symbols",
- "lib": {
- "name": "PUT LITTER IN ITS PLACE SYMBOL",
- "unified": "1F6AE",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f6ae.png",
- "sheet_x": 35,
- "sheet_y": 33,
- "short_name": "put_litter_in_its_place",
- "short_names": ["put_litter_in_its_place"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 2,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "earth_asia": {
- "char": "\ud83c\udf0f",
- "key": "earth_asia",
- "keywords": ["earth_asia", "EARTH GLOBE ASIA-AUSTRALIA"],
- "category": "travel_and_places",
- "lib": {
- "name": "EARTH GLOBE ASIA-AUSTRALIA",
- "unified": "1F30F",
- "non_qualified": null,
- "docomo": null,
- "au": "E5B3",
- "softbank": null,
- "google": "FE039",
- "image": "1f30f.png",
- "sheet_x": 6,
- "sheet_y": 1,
- "short_name": "earth_asia",
- "short_names": ["earth_asia"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 3,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "watermelon": {
- "char": "\ud83c\udf49",
- "key": "watermelon",
- "keywords": ["watermelon", "WATERMELON"],
- "category": "food_and_drink",
- "lib": {
- "name": "WATERMELON",
- "unified": "1F349",
- "non_qualified": null,
- "docomo": null,
- "au": "E4CD",
- "softbank": "E348",
- "google": "FE054",
- "image": "1f349.png",
- "sheet_x": 7,
- "sheet_y": 4,
- "short_name": "watermelon",
- "short_names": ["watermelon"],
- "text": null,
- "texts": null,
- "category": "Food & Drink",
- "sort_order": 3,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "fireworks": {
- "char": "\ud83c\udf86",
- "key": "fireworks",
- "keywords": ["fireworks", "FIREWORKS"],
- "category": "activity",
- "lib": {
- "name": "FIREWORKS",
- "unified": "1F386",
- "non_qualified": null,
- "docomo": null,
- "au": "E5CC",
- "softbank": "E117",
- "google": "FE515",
- "image": "1f386.png",
- "sheet_x": 8,
- "sheet_y": 17,
- "short_name": "fireworks",
- "short_names": ["fireworks"],
- "text": null,
- "texts": null,
- "category": "Activities",
- "sort_order": 3,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "crossed_flags": {
- "char": "\ud83c\udf8c",
- "key": "crossed_flags",
- "keywords": ["crossed_flags", "CROSSED FLAGS"],
- "category": "flags",
- "lib": {
- "name": "CROSSED FLAGS",
- "unified": "1F38C",
- "non_qualified": null,
- "docomo": null,
- "au": "E5D9",
- "softbank": "E143",
- "google": "FE514",
- "image": "1f38c.png",
- "sheet_x": 8,
- "sheet_y": 23,
- "short_name": "crossed_flags",
- "short_names": ["crossed_flags"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 3,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "skin-tone-4": {
- "char": "\ud83c\udffd",
- "key": "skin-tone-4",
- "keywords": ["skin-tone-4", "EMOJI MODIFIER FITZPATRICK TYPE-4"],
- "lib": {
- "name": "EMOJI MODIFIER FITZPATRICK TYPE-4",
- "unified": "1F3FD",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f3fd.png",
- "sheet_x": 12,
- "sheet_y": 16,
- "short_name": "skin-tone-4",
- "short_names": ["skin-tone-4"],
- "text": null,
- "texts": null,
- "category": "Skin Tones",
- "sort_order": 3,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "sound": {
- "char": "\ud83d\udd09",
- "key": "sound",
- "keywords": ["sound", "SPEAKER WITH ONE SOUND WAVE"],
- "category": "objects",
- "lib": {
- "name": "SPEAKER WITH ONE SOUND WAVE",
- "unified": "1F509",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f509.png",
- "sheet_x": 27,
- "sheet_y": 33,
- "short_name": "sound",
- "short_names": ["sound"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 3,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "joy": {
- "char": "\ud83d\ude02",
- "key": "joy",
- "keywords": ["joy", "FACE WITH TEARS OF JOY"],
- "category": "people",
- "lib": {
- "name": "FACE WITH TEARS OF JOY",
- "unified": "1F602",
- "non_qualified": null,
- "docomo": "E72A",
- "au": "EB64",
- "softbank": "E412",
- "google": "FE334",
- "image": "1f602.png",
- "sheet_x": 30,
- "sheet_y": 45,
- "short_name": "joy",
- "short_names": ["joy"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 3,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "potable_water": {
- "char": "\ud83d\udeb0",
- "key": "potable_water",
- "keywords": ["potable_water", "POTABLE WATER SYMBOL"],
- "category": "symbols",
- "lib": {
- "name": "POTABLE WATER SYMBOL",
- "unified": "1F6B0",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f6b0.png",
- "sheet_x": 35,
- "sheet_y": 35,
- "short_name": "potable_water",
- "short_names": ["potable_water"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 3,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "gorilla": {
- "char": "\ud83e\udd8d",
- "key": "gorilla",
- "keywords": ["gorilla", "GORILLA"],
- "category": "animals_and_nature",
- "lib": {
- "name": "GORILLA",
- "unified": "1F98D",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f98d.png",
- "sheet_x": 43,
- "sheet_y": 9,
- "short_name": "gorilla",
- "short_names": ["gorilla"],
- "text": null,
- "texts": null,
- "category": "Animals & Nature",
- "sort_order": 3,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "globe_with_meridians": {
- "char": "\ud83c\udf10",
- "key": "globe_with_meridians",
- "keywords": ["globe_with_meridians", "GLOBE WITH MERIDIANS"],
- "category": "travel_and_places",
- "lib": {
- "name": "GLOBE WITH MERIDIANS",
- "unified": "1F310",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f310.png",
- "sheet_x": 6,
- "sheet_y": 2,
- "short_name": "globe_with_meridians",
- "short_names": ["globe_with_meridians"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 4,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "tangerine": {
- "char": "\ud83c\udf4a",
- "key": "tangerine",
- "keywords": ["tangerine", "TANGERINE"],
- "category": "food_and_drink",
- "lib": {
- "name": "TANGERINE",
- "unified": "1F34A",
- "non_qualified": null,
- "docomo": null,
- "au": "EABA",
- "softbank": "E346",
- "google": "FE052",
- "image": "1f34a.png",
- "sheet_x": 7,
- "sheet_y": 5,
- "short_name": "tangerine",
- "short_names": ["tangerine"],
- "text": null,
- "texts": null,
- "category": "Food & Drink",
- "sort_order": 4,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "sparkler": {
- "char": "\ud83c\udf87",
- "key": "sparkler",
- "keywords": ["sparkler", "FIREWORK SPARKLER"],
- "category": "activity",
- "lib": {
- "name": "FIREWORK SPARKLER",
- "unified": "1F387",
- "non_qualified": null,
- "docomo": null,
- "au": "EAEB",
- "softbank": "E440",
- "google": "FE51D",
- "image": "1f387.png",
- "sheet_x": 8,
- "sheet_y": 18,
- "short_name": "sparkler",
- "short_names": ["sparkler"],
- "text": null,
- "texts": null,
- "category": "Activities",
- "sort_order": 4,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "waving_black_flag": {
- "char": "\ud83c\udff4",
- "key": "waving_black_flag",
- "keywords": ["waving_black_flag", "WAVING BLACK FLAG"],
- "category": "flags",
- "lib": {
- "name": "WAVING BLACK FLAG",
- "unified": "1F3F4",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f3f4.png",
- "sheet_x": 12,
- "sheet_y": 8,
- "short_name": "waving_black_flag",
- "short_names": ["waving_black_flag"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 4,
- "added_in": "7.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "skin-tone-5": {
- "char": "\ud83c\udffe",
- "key": "skin-tone-5",
- "keywords": ["skin-tone-5", "EMOJI MODIFIER FITZPATRICK TYPE-5"],
- "lib": {
- "name": "EMOJI MODIFIER FITZPATRICK TYPE-5",
- "unified": "1F3FE",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f3fe.png",
- "sheet_x": 12,
- "sheet_y": 17,
- "short_name": "skin-tone-5",
- "short_names": ["skin-tone-5"],
- "text": null,
- "texts": null,
- "category": "Skin Tones",
- "sort_order": 4,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "dog": {
- "char": "\ud83d\udc36",
- "key": "dog",
- "keywords": ["dog", "DOG FACE"],
- "category": "animals_and_nature",
- "lib": {
- "name": "DOG FACE",
- "unified": "1F436",
- "non_qualified": null,
- "docomo": "E6A1",
- "au": "E4E1",
- "softbank": "E052",
- "google": "FE1B7",
- "image": "1f436.png",
- "sheet_x": 13,
- "sheet_y": 20,
- "short_name": "dog",
- "short_names": ["dog"],
- "text": null,
- "texts": null,
- "category": "Animals & Nature",
- "sort_order": 4,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "loud_sound": {
- "char": "\ud83d\udd0a",
- "key": "loud_sound",
- "keywords": ["loud_sound", "SPEAKER WITH THREE SOUND WAVES"],
- "category": "objects",
- "lib": {
- "name": "SPEAKER WITH THREE SOUND WAVES",
- "unified": "1F50A",
- "non_qualified": null,
- "docomo": null,
- "au": "E511",
- "softbank": "E141",
- "google": "FE821",
- "image": "1f50a.png",
- "sheet_x": 27,
- "sheet_y": 34,
- "short_name": "loud_sound",
- "short_names": ["loud_sound"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 4,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "rolling_on_the_floor_laughing": {
- "char": "\ud83e\udd23",
- "key": "rolling_on_the_floor_laughing",
- "keywords": ["rolling_on_the_floor_laughing", "ROLLING ON THE FLOOR LAUGHING"],
- "category": "people",
- "lib": {
- "name": "ROLLING ON THE FLOOR LAUGHING",
- "unified": "1F923",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f923.png",
- "sheet_x": 38,
- "sheet_y": 38,
- "short_name": "rolling_on_the_floor_laughing",
- "short_names": ["rolling_on_the_floor_laughing"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 4,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "wheelchair": {
- "char": "\u267f",
- "key": "wheelchair",
- "keywords": ["wheelchair", "WHEELCHAIR SYMBOL"],
- "category": "symbols",
- "lib": {
- "name": "WHEELCHAIR SYMBOL",
- "unified": "267F",
- "non_qualified": null,
- "docomo": "E69B",
- "au": "E47F",
- "softbank": "E20A",
- "google": "FEB20",
- "image": "267f.png",
- "sheet_x": 50,
- "sheet_y": 1,
- "short_name": "wheelchair",
- "short_names": ["wheelchair"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 4,
- "added_in": "4.1",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "lemon": {
- "char": "\ud83c\udf4b",
- "key": "lemon",
- "keywords": ["lemon", "LEMON"],
- "category": "food_and_drink",
- "lib": {
- "name": "LEMON",
- "unified": "1F34B",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f34b.png",
- "sheet_x": 7,
- "sheet_y": 6,
- "short_name": "lemon",
- "short_names": ["lemon"],
- "text": null,
- "texts": null,
- "category": "Food & Drink",
- "sort_order": 5,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "waving_white_flag": {
- "char": "\ud83c\udff3\ufe0f",
- "key": "waving_white_flag",
- "keywords": ["waving_white_flag", ""],
- "category": "flags",
- "lib": {
- "name": null,
- "unified": "1F3F3-FE0F",
- "non_qualified": "1F3F3",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f3f3-fe0f.png",
- "sheet_x": 12,
- "sheet_y": 3,
- "short_name": "waving_white_flag",
- "short_names": ["waving_white_flag"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 5,
- "added_in": "7.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "skin-tone-6": {
- "char": "\ud83c\udfff",
- "key": "skin-tone-6",
- "keywords": ["skin-tone-6", "EMOJI MODIFIER FITZPATRICK TYPE-6"],
- "lib": {
- "name": "EMOJI MODIFIER FITZPATRICK TYPE-6",
- "unified": "1F3FF",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f3ff.png",
- "sheet_x": 12,
- "sheet_y": 18,
- "short_name": "skin-tone-6",
- "short_names": ["skin-tone-6"],
- "text": null,
- "texts": null,
- "category": "Skin Tones",
- "sort_order": 5,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "dog2": {
- "char": "\ud83d\udc15",
- "key": "dog2",
- "keywords": ["dog2", "DOG"],
- "category": "animals_and_nature",
- "lib": {
- "name": "DOG",
- "unified": "1F415",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f415.png",
- "sheet_x": 12,
- "sheet_y": 40,
- "short_name": "dog2",
- "short_names": ["dog2"],
- "text": null,
- "texts": null,
- "category": "Animals & Nature",
- "sort_order": 5,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "loudspeaker": {
- "char": "\ud83d\udce2",
- "key": "loudspeaker",
- "keywords": ["loudspeaker", "PUBLIC ADDRESS LOUDSPEAKER"],
- "category": "objects",
- "lib": {
- "name": "PUBLIC ADDRESS LOUDSPEAKER",
- "unified": "1F4E2",
- "non_qualified": null,
- "docomo": null,
- "au": "E511",
- "softbank": "E142",
- "google": "FE52F",
- "image": "1f4e2.png",
- "sheet_x": 26,
- "sheet_y": 48,
- "short_name": "loudspeaker",
- "short_names": ["loudspeaker"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 5,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "world_map": {
- "char": "\ud83d\uddfa\ufe0f",
- "key": "world_map",
- "keywords": ["world_map", ""],
- "category": "travel_and_places",
- "lib": {
- "name": null,
- "unified": "1F5FA-FE0F",
- "non_qualified": "1F5FA",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f5fa-fe0f.png",
- "sheet_x": 30,
- "sheet_y": 37,
- "short_name": "world_map",
- "short_names": ["world_map"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 5,
- "added_in": "7.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "smiley": {
- "char": "\ud83d\ude03",
- "key": "smiley",
- "keywords": ["smiley", "SMILING FACE WITH OPEN MOUTH"],
- "category": "people",
- "lib": {
- "name": "SMILING FACE WITH OPEN MOUTH",
- "unified": "1F603",
- "non_qualified": null,
- "docomo": "E6F0",
- "au": "E471",
- "softbank": "E057",
- "google": "FE330",
- "image": "1f603.png",
- "sheet_x": 30,
- "sheet_y": 46,
- "short_name": "smiley",
- "short_names": ["smiley"],
- "text": ":)",
- "texts": ["=)", "=-)"],
- "category": "Smileys & People",
- "sort_order": 5,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "mens": {
- "char": "\ud83d\udeb9",
- "key": "mens",
- "keywords": ["mens", "MENS SYMBOL"],
- "category": "symbols",
- "lib": {
- "name": "MENS SYMBOL",
- "unified": "1F6B9",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": "E138",
- "google": "FEB33",
- "image": "1f6b9.png",
- "sheet_x": 36,
- "sheet_y": 42,
- "short_name": "mens",
- "short_names": ["mens"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 5,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "firecracker": {
- "char": "\ud83e\udde8",
- "key": "firecracker",
- "keywords": ["firecracker", "FIRECRACKER"],
- "category": "activity",
- "lib": {
- "name": "FIRECRACKER",
- "unified": "1F9E8",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f9e8.png",
- "sheet_x": 47,
- "sheet_y": 49,
- "short_name": "firecracker",
- "short_names": ["firecracker"],
- "text": null,
- "texts": null,
- "category": "Activities",
- "sort_order": 5,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- },
- "banana": {
- "char": "\ud83c\udf4c",
- "key": "banana",
- "keywords": ["banana", "BANANA"],
- "category": "food_and_drink",
- "lib": {
- "name": "BANANA",
- "unified": "1F34C",
- "non_qualified": null,
- "docomo": "E744",
- "au": "EB35",
- "softbank": null,
- "google": "FE050",
- "image": "1f34c.png",
- "sheet_x": 7,
- "sheet_y": 7,
- "short_name": "banana",
- "short_names": ["banana"],
- "text": null,
- "texts": null,
- "category": "Food & Drink",
- "sort_order": 6,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "rainbow-flag": {
- "char": "\ud83c\udff3\ufe0f\u200d\ud83c\udf08",
- "key": "rainbow-flag",
- "keywords": ["rainbow-flag", ""],
- "category": "flags",
- "lib": {
- "name": null,
- "unified": "1F3F3-FE0F-200D-1F308",
- "non_qualified": "1F3F3-200D-1F308",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f3f3-fe0f-200d-1f308.png",
- "sheet_x": 12,
- "sheet_y": 2,
- "short_name": "rainbow-flag",
- "short_names": ["rainbow-flag"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 6,
- "added_in": "7.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "poodle": {
- "char": "\ud83d\udc29",
- "key": "poodle",
- "keywords": ["poodle", "POODLE"],
- "category": "animals_and_nature",
- "lib": {
- "name": "POODLE",
- "unified": "1F429",
- "non_qualified": null,
- "docomo": "E6A1",
- "au": "E4DF",
- "softbank": null,
- "google": "FE1D8",
- "image": "1f429.png",
- "sheet_x": 13,
- "sheet_y": 7,
- "short_name": "poodle",
- "short_names": ["poodle"],
- "text": null,
- "texts": null,
- "category": "Animals & Nature",
- "sort_order": 6,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "mega": {
- "char": "\ud83d\udce3",
- "key": "mega",
- "keywords": ["mega", "CHEERING MEGAPHONE"],
- "category": "objects",
- "lib": {
- "name": "CHEERING MEGAPHONE",
- "unified": "1F4E3",
- "non_qualified": null,
- "docomo": null,
- "au": "E511",
- "softbank": "E317",
- "google": "FE530",
- "image": "1f4e3.png",
- "sheet_x": 26,
- "sheet_y": 49,
- "short_name": "mega",
- "short_names": ["mega"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 6,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "japan": {
- "char": "\ud83d\uddfe",
- "key": "japan",
- "keywords": ["japan", "SILHOUETTE OF JAPAN"],
- "category": "travel_and_places",
- "lib": {
- "name": "SILHOUETTE OF JAPAN",
- "unified": "1F5FE",
- "non_qualified": null,
- "docomo": null,
- "au": "E572",
- "softbank": null,
- "google": "FE4C7",
- "image": "1f5fe.png",
- "sheet_x": 30,
- "sheet_y": 41,
- "short_name": "japan",
- "short_names": ["japan"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 6,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "smile": {
- "char": "\ud83d\ude04",
- "key": "smile",
- "keywords": ["smile", "SMILING FACE WITH OPEN MOUTH AND SMILING EYES"],
- "category": "people",
- "lib": {
- "name": "SMILING FACE WITH OPEN MOUTH AND SMILING EYES",
- "unified": "1F604",
- "non_qualified": null,
- "docomo": "E6F0",
- "au": "E471",
- "softbank": "E415",
- "google": "FE338",
- "image": "1f604.png",
- "sheet_x": 30,
- "sheet_y": 47,
- "short_name": "smile",
- "short_names": ["smile"],
- "text": ":)",
- "texts": ["C:", "c:", ":D", ":-D"],
- "category": "Smileys & People",
- "sort_order": 6,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "womens": {
- "char": "\ud83d\udeba",
- "key": "womens",
- "keywords": ["womens", "WOMENS SYMBOL"],
- "category": "symbols",
- "lib": {
- "name": "WOMENS SYMBOL",
- "unified": "1F6BA",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": "E139",
- "google": "FEB34",
- "image": "1f6ba.png",
- "sheet_x": 36,
- "sheet_y": 43,
- "short_name": "womens",
- "short_names": ["womens"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 6,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "sparkles": {
- "char": "\u2728",
- "key": "sparkles",
- "keywords": ["sparkles", "SPARKLES"],
- "category": "activity",
- "lib": {
- "name": "SPARKLES",
- "unified": "2728",
- "non_qualified": null,
- "docomo": "E6FA",
- "au": "EAAB",
- "softbank": "E32E",
- "google": "FEB60",
- "image": "2728.png",
- "sheet_x": 51,
- "sheet_y": 38,
- "short_name": "sparkles",
- "short_names": ["sparkles"],
- "text": null,
- "texts": null,
- "category": "Activities",
- "sort_order": 6,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "pineapple": {
- "char": "\ud83c\udf4d",
- "key": "pineapple",
- "keywords": ["pineapple", "PINEAPPLE"],
- "category": "food_and_drink",
- "lib": {
- "name": "PINEAPPLE",
- "unified": "1F34D",
- "non_qualified": null,
- "docomo": null,
- "au": "EB33",
- "softbank": null,
- "google": "FE058",
- "image": "1f34d.png",
- "sheet_x": 7,
- "sheet_y": 8,
- "short_name": "pineapple",
- "short_names": ["pineapple"],
- "text": null,
- "texts": null,
- "category": "Food & Drink",
- "sort_order": 7,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "balloon": {
- "char": "\ud83c\udf88",
- "key": "balloon",
- "keywords": ["balloon", "BALLOON"],
- "category": "activity",
- "lib": {
- "name": "BALLOON",
- "unified": "1F388",
- "non_qualified": null,
- "docomo": null,
- "au": "EA9B",
- "softbank": "E310",
- "google": "FE516",
- "image": "1f388.png",
- "sheet_x": 8,
- "sheet_y": 19,
- "short_name": "balloon",
- "short_names": ["balloon"],
- "text": null,
- "texts": null,
- "category": "Activities",
- "sort_order": 7,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "pirate_flag": {
- "char": "\ud83c\udff4\u200d\u2620\ufe0f",
- "key": "pirate_flag",
- "keywords": ["pirate_flag", ""],
- "category": "flags",
- "lib": {
- "name": null,
- "unified": "1F3F4-200D-2620-FE0F",
- "non_qualified": "1F3F4-200D-2620",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f3f4-200d-2620-fe0f.png",
- "sheet_x": 12,
- "sheet_y": 4,
- "short_name": "pirate_flag",
- "short_names": ["pirate_flag"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 7,
- "added_in": "7.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- },
- "wolf": {
- "char": "\ud83d\udc3a",
- "key": "wolf",
- "keywords": ["wolf", "WOLF FACE"],
- "category": "animals_and_nature",
- "lib": {
- "name": "WOLF FACE",
- "unified": "1F43A",
- "non_qualified": null,
- "docomo": "E6A1",
- "au": "E4E1",
- "softbank": "E52A",
- "google": "FE1D0",
- "image": "1f43a.png",
- "sheet_x": 13,
- "sheet_y": 24,
- "short_name": "wolf",
- "short_names": ["wolf"],
- "text": null,
- "texts": null,
- "category": "Animals & Nature",
- "sort_order": 7,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "postal_horn": {
- "char": "\ud83d\udcef",
- "key": "postal_horn",
- "keywords": ["postal_horn", "POSTAL HORN"],
- "category": "objects",
- "lib": {
- "name": "POSTAL HORN",
- "unified": "1F4EF",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f4ef.png",
- "sheet_x": 27,
- "sheet_y": 8,
- "short_name": "postal_horn",
- "short_names": ["postal_horn"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 7,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "sweat_smile": {
- "char": "\ud83d\ude05",
- "key": "sweat_smile",
- "keywords": ["sweat_smile", "SMILING FACE WITH OPEN MOUTH AND COLD SWEAT"],
- "category": "people",
- "lib": {
- "name": "SMILING FACE WITH OPEN MOUTH AND COLD SWEAT",
- "unified": "1F605",
- "non_qualified": null,
- "docomo": "E722",
- "au": "E471-E5B1",
- "softbank": null,
- "google": "FE331",
- "image": "1f605.png",
- "sheet_x": 30,
- "sheet_y": 48,
- "short_name": "sweat_smile",
- "short_names": ["sweat_smile"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 7,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "restroom": {
- "char": "\ud83d\udebb",
- "key": "restroom",
- "keywords": ["restroom", "RESTROOM"],
- "category": "symbols",
- "lib": {
- "name": "RESTROOM",
- "unified": "1F6BB",
- "non_qualified": null,
- "docomo": "E66E",
- "au": "E4A5",
- "softbank": "E151",
- "google": "FE506",
- "image": "1f6bb.png",
- "sheet_x": 36,
- "sheet_y": 44,
- "short_name": "restroom",
- "short_names": ["restroom"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 7,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "compass": {
- "char": "\ud83e\udded",
- "key": "compass",
- "keywords": ["compass", "COMPASS"],
- "category": "travel_and_places",
- "lib": {
- "name": "COMPASS",
- "unified": "1F9ED",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f9ed.png",
- "sheet_x": 48,
- "sheet_y": 1,
- "short_name": "compass",
- "short_names": ["compass"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 7,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- },
- "flag-ac": {
- "char": "\ud83c\udde6\ud83c\udde8",
- "key": "flag-ac",
- "keywords": ["flag-ac", "Ascension Island Flag"],
- "category": "flags",
- "lib": {
- "name": "Ascension Island Flag",
- "unified": "1F1E6-1F1E8",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1e6-1f1e8.png",
- "sheet_x": 0,
- "sheet_y": 31,
- "short_name": "flag-ac",
- "short_names": ["flag-ac"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 8,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "tada": {
- "char": "\ud83c\udf89",
- "key": "tada",
- "keywords": ["tada", "PARTY POPPER"],
- "category": "activity",
- "lib": {
- "name": "PARTY POPPER",
- "unified": "1F389",
- "non_qualified": null,
- "docomo": null,
- "au": "EA9C",
- "softbank": "E312",
- "google": "FE517",
- "image": "1f389.png",
- "sheet_x": 8,
- "sheet_y": 20,
- "short_name": "tada",
- "short_names": ["tada"],
- "text": null,
- "texts": null,
- "category": "Activities",
- "sort_order": 8,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "snow_capped_mountain": {
- "char": "\ud83c\udfd4\ufe0f",
- "key": "snow_capped_mountain",
- "keywords": ["snow_capped_mountain", ""],
- "category": "travel_and_places",
- "lib": {
- "name": null,
- "unified": "1F3D4-FE0F",
- "non_qualified": "1F3D4",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f3d4-fe0f.png",
- "sheet_x": 11,
- "sheet_y": 26,
- "short_name": "snow_capped_mountain",
- "short_names": ["snow_capped_mountain"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 8,
- "added_in": "7.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "bell": {
- "char": "\ud83d\udd14",
- "key": "bell",
- "keywords": ["bell", "BELL"],
- "category": "objects",
- "lib": {
- "name": "BELL",
- "unified": "1F514",
- "non_qualified": null,
- "docomo": "E713",
- "au": "E512",
- "softbank": "E325",
- "google": "FE4F2",
- "image": "1f514.png",
- "sheet_x": 27,
- "sheet_y": 44,
- "short_name": "bell",
- "short_names": ["bell"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 8,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "laughing": {
- "char": "\ud83d\ude06",
- "key": "laughing",
- "keywords": ["laughing", "SMILING FACE WITH OPEN MOUTH AND TIGHTLY-CLOSED EYES"],
- "category": "people",
- "lib": {
- "name": "SMILING FACE WITH OPEN MOUTH AND TIGHTLY-CLOSED EYES",
- "unified": "1F606",
- "non_qualified": null,
- "docomo": "E72A",
- "au": "EAC5",
- "softbank": null,
- "google": "FE332",
- "image": "1f606.png",
- "sheet_x": 30,
- "sheet_y": 49,
- "short_name": "laughing",
- "short_names": ["laughing", "satisfied"],
- "text": null,
- "texts": [":>", ":->"],
- "category": "Smileys & People",
- "sort_order": 8,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "baby_symbol": {
- "char": "\ud83d\udebc",
- "key": "baby_symbol",
- "keywords": ["baby_symbol", "BABY SYMBOL"],
- "category": "symbols",
- "lib": {
- "name": "BABY SYMBOL",
- "unified": "1F6BC",
- "non_qualified": null,
- "docomo": null,
- "au": "EB18",
- "softbank": "E13A",
- "google": "FEB35",
- "image": "1f6bc.png",
- "sheet_x": 36,
- "sheet_y": 45,
- "short_name": "baby_symbol",
- "short_names": ["baby_symbol"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 8,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "mango": {
- "char": "\ud83e\udd6d",
- "key": "mango",
- "keywords": ["mango", "MANGO"],
- "category": "food_and_drink",
- "lib": {
- "name": "MANGO",
- "unified": "1F96D",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f96d.png",
- "sheet_x": 42,
- "sheet_y": 36,
- "short_name": "mango",
- "short_names": ["mango"],
- "text": null,
- "texts": null,
- "category": "Food & Drink",
- "sort_order": 8,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- },
- "fox_face": {
- "char": "\ud83e\udd8a",
- "key": "fox_face",
- "keywords": ["fox_face", "FOX FACE"],
- "category": "animals_and_nature",
- "lib": {
- "name": "FOX FACE",
- "unified": "1F98A",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f98a.png",
- "sheet_x": 43,
- "sheet_y": 6,
- "short_name": "fox_face",
- "short_names": ["fox_face"],
- "text": null,
- "texts": null,
- "category": "Animals & Nature",
- "sort_order": 8,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "flag-ad": {
- "char": "\ud83c\udde6\ud83c\udde9",
- "key": "flag-ad",
- "keywords": ["flag-ad", "Andorra Flag"],
- "category": "flags",
- "lib": {
- "name": "Andorra Flag",
- "unified": "1F1E6-1F1E9",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1e6-1f1e9.png",
- "sheet_x": 0,
- "sheet_y": 32,
- "short_name": "flag-ad",
- "short_names": ["flag-ad"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 9,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "apple": {
- "char": "\ud83c\udf4e",
- "key": "apple",
- "keywords": ["apple", "RED APPLE"],
- "category": "food_and_drink",
- "lib": {
- "name": "RED APPLE",
- "unified": "1F34E",
- "non_qualified": null,
- "docomo": "E745",
- "au": "EAB9",
- "softbank": "E345",
- "google": "FE051",
- "image": "1f34e.png",
- "sheet_x": 7,
- "sheet_y": 9,
- "short_name": "apple",
- "short_names": ["apple"],
- "text": null,
- "texts": null,
- "category": "Food & Drink",
- "sort_order": 9,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "confetti_ball": {
- "char": "\ud83c\udf8a",
- "key": "confetti_ball",
- "keywords": ["confetti_ball", "CONFETTI BALL"],
- "category": "activity",
- "lib": {
- "name": "CONFETTI BALL",
- "unified": "1F38A",
- "non_qualified": null,
- "docomo": null,
- "au": "E46F",
- "softbank": null,
- "google": "FE520",
- "image": "1f38a.png",
- "sheet_x": 8,
- "sheet_y": 21,
- "short_name": "confetti_ball",
- "short_names": ["confetti_ball"],
- "text": null,
- "texts": null,
- "category": "Activities",
- "sort_order": 9,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "no_bell": {
- "char": "\ud83d\udd15",
- "key": "no_bell",
- "keywords": ["no_bell", "BELL WITH CANCELLATION STROKE"],
- "category": "objects",
- "lib": {
- "name": "BELL WITH CANCELLATION STROKE",
- "unified": "1F515",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f515.png",
- "sheet_x": 27,
- "sheet_y": 45,
- "short_name": "no_bell",
- "short_names": ["no_bell"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 9,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "wink": {
- "char": "\ud83d\ude09",
- "key": "wink",
- "keywords": ["wink", "WINKING FACE"],
- "category": "people",
- "lib": {
- "name": "WINKING FACE",
- "unified": "1F609",
- "non_qualified": null,
- "docomo": "E729",
- "au": "E5C3",
- "softbank": "E405",
- "google": "FE347",
- "image": "1f609.png",
- "sheet_x": 30,
- "sheet_y": 52,
- "short_name": "wink",
- "short_names": ["wink"],
- "text": ";)",
- "texts": [";)", ";-)"],
- "category": "Smileys & People",
- "sort_order": 9,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "wc": {
- "char": "\ud83d\udebe",
- "key": "wc",
- "keywords": ["wc", "WATER CLOSET"],
- "category": "symbols",
- "lib": {
- "name": "WATER CLOSET",
- "unified": "1F6BE",
- "non_qualified": null,
- "docomo": "E66E",
- "au": "E4A5",
- "softbank": "E309",
- "google": "FE508",
- "image": "1f6be.png",
- "sheet_x": 36,
- "sheet_y": 47,
- "short_name": "wc",
- "short_names": ["wc"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 9,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "raccoon": {
- "char": "\ud83e\udd9d",
- "key": "raccoon",
- "keywords": ["raccoon", "RACCOON"],
- "category": "animals_and_nature",
- "lib": {
- "name": "RACCOON",
- "unified": "1F99D",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f99d.png",
- "sheet_x": 43,
- "sheet_y": 25,
- "short_name": "raccoon",
- "short_names": ["raccoon"],
- "text": null,
- "texts": null,
- "category": "Animals & Nature",
- "sort_order": 9,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- },
- "mountain": {
- "char": "\u26f0\ufe0f",
- "key": "mountain",
- "keywords": ["mountain", ""],
- "category": "travel_and_places",
- "lib": {
- "name": null,
- "unified": "26F0-FE0F",
- "non_qualified": "26F0",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "26f0-fe0f.png",
- "sheet_x": 50,
- "sheet_y": 29,
- "short_name": "mountain",
- "short_names": ["mountain"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 9,
- "added_in": "5.2",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "flag-ae": {
- "char": "\ud83c\udde6\ud83c\uddea",
- "key": "flag-ae",
- "keywords": ["flag-ae", "United Arab Emirates Flag"],
- "category": "flags",
- "lib": {
- "name": "United Arab Emirates Flag",
- "unified": "1F1E6-1F1EA",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1e6-1f1ea.png",
- "sheet_x": 0,
- "sheet_y": 33,
- "short_name": "flag-ae",
- "short_names": ["flag-ae"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 10,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "volcano": {
- "char": "\ud83c\udf0b",
- "key": "volcano",
- "keywords": ["volcano", "VOLCANO"],
- "category": "travel_and_places",
- "lib": {
- "name": "VOLCANO",
- "unified": "1F30B",
- "non_qualified": null,
- "docomo": null,
- "au": "EB53",
- "softbank": null,
- "google": "FE03A",
- "image": "1f30b.png",
- "sheet_x": 5,
- "sheet_y": 50,
- "short_name": "volcano",
- "short_names": ["volcano"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 10,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "green_apple": {
- "char": "\ud83c\udf4f",
- "key": "green_apple",
- "keywords": ["green_apple", "GREEN APPLE"],
- "category": "food_and_drink",
- "lib": {
- "name": "GREEN APPLE",
- "unified": "1F34F",
- "non_qualified": null,
- "docomo": "E745",
- "au": "EB5A",
- "softbank": null,
- "google": "FE05B",
- "image": "1f34f.png",
- "sheet_x": 7,
- "sheet_y": 10,
- "short_name": "green_apple",
- "short_names": ["green_apple"],
- "text": null,
- "texts": null,
- "category": "Food & Drink",
- "sort_order": 10,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "tanabata_tree": {
- "char": "\ud83c\udf8b",
- "key": "tanabata_tree",
- "keywords": ["tanabata_tree", "TANABATA TREE"],
- "category": "activity",
- "lib": {
- "name": "TANABATA TREE",
- "unified": "1F38B",
- "non_qualified": null,
- "docomo": null,
- "au": "EB3D",
- "softbank": null,
- "google": "FE521",
- "image": "1f38b.png",
- "sheet_x": 8,
- "sheet_y": 22,
- "short_name": "tanabata_tree",
- "short_names": ["tanabata_tree"],
- "text": null,
- "texts": null,
- "category": "Activities",
- "sort_order": 10,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "musical_score": {
- "char": "\ud83c\udfbc",
- "key": "musical_score",
- "keywords": ["musical_score", "MUSICAL SCORE"],
- "category": "objects",
- "lib": {
- "name": "MUSICAL SCORE",
- "unified": "1F3BC",
- "non_qualified": null,
- "docomo": "E6FF",
- "au": "EACC",
- "softbank": null,
- "google": "FE81A",
- "image": "1f3bc.png",
- "sheet_x": 9,
- "sheet_y": 13,
- "short_name": "musical_score",
- "short_names": ["musical_score"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 10,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "cat": {
- "char": "\ud83d\udc31",
- "key": "cat",
- "keywords": ["cat", "CAT FACE"],
- "category": "animals_and_nature",
- "lib": {
- "name": "CAT FACE",
- "unified": "1F431",
- "non_qualified": null,
- "docomo": "E6A2",
- "au": "E4DB",
- "softbank": "E04F",
- "google": "FE1B8",
- "image": "1f431.png",
- "sheet_x": 13,
- "sheet_y": 15,
- "short_name": "cat",
- "short_names": ["cat"],
- "text": null,
- "texts": null,
- "category": "Animals & Nature",
- "sort_order": 10,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "blush": {
- "char": "\ud83d\ude0a",
- "key": "blush",
- "keywords": ["blush", "SMILING FACE WITH SMILING EYES"],
- "category": "people",
- "lib": {
- "name": "SMILING FACE WITH SMILING EYES",
- "unified": "1F60A",
- "non_qualified": null,
- "docomo": "E6F0",
- "au": "EACD",
- "softbank": "E056",
- "google": "FE335",
- "image": "1f60a.png",
- "sheet_x": 31,
- "sheet_y": 0,
- "short_name": "blush",
- "short_names": ["blush"],
- "text": ":)",
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 10,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "passport_control": {
- "char": "\ud83d\udec2",
- "key": "passport_control",
- "keywords": ["passport_control", "PASSPORT CONTROL"],
- "category": "symbols",
- "lib": {
- "name": "PASSPORT CONTROL",
- "unified": "1F6C2",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f6c2.png",
- "sheet_x": 37,
- "sheet_y": 3,
- "short_name": "passport_control",
- "short_names": ["passport_control"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 10,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "flag-af": {
- "char": "\ud83c\udde6\ud83c\uddeb",
- "key": "flag-af",
- "keywords": ["flag-af", "Afghanistan Flag"],
- "category": "flags",
- "lib": {
- "name": "Afghanistan Flag",
- "unified": "1F1E6-1F1EB",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1e6-1f1eb.png",
- "sheet_x": 0,
- "sheet_y": 34,
- "short_name": "flag-af",
- "short_names": ["flag-af"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 11,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "pear": {
- "char": "\ud83c\udf50",
- "key": "pear",
- "keywords": ["pear", "PEAR"],
- "category": "food_and_drink",
- "lib": {
- "name": "PEAR",
- "unified": "1F350",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f350.png",
- "sheet_x": 7,
- "sheet_y": 11,
- "short_name": "pear",
- "short_names": ["pear"],
- "text": null,
- "texts": null,
- "category": "Food & Drink",
- "sort_order": 11,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "bamboo": {
- "char": "\ud83c\udf8d",
- "key": "bamboo",
- "keywords": ["bamboo", "PINE DECORATION"],
- "category": "activity",
- "lib": {
- "name": "PINE DECORATION",
- "unified": "1F38D",
- "non_qualified": null,
- "docomo": null,
- "au": "EAE3",
- "softbank": "E436",
- "google": "FE518",
- "image": "1f38d.png",
- "sheet_x": 8,
- "sheet_y": 24,
- "short_name": "bamboo",
- "short_names": ["bamboo"],
- "text": null,
- "texts": null,
- "category": "Activities",
- "sort_order": 11,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "musical_note": {
- "char": "\ud83c\udfb5",
- "key": "musical_note",
- "keywords": ["musical_note", "MUSICAL NOTE"],
- "category": "objects",
- "lib": {
- "name": "MUSICAL NOTE",
- "unified": "1F3B5",
- "non_qualified": null,
- "docomo": "E6F6",
- "au": "E5BE",
- "softbank": "E03E",
- "google": "FE813",
- "image": "1f3b5.png",
- "sheet_x": 9,
- "sheet_y": 6,
- "short_name": "musical_note",
- "short_names": ["musical_note"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 11,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "cat2": {
- "char": "\ud83d\udc08",
- "key": "cat2",
- "keywords": ["cat2", "CAT"],
- "category": "animals_and_nature",
- "lib": {
- "name": "CAT",
- "unified": "1F408",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f408.png",
- "sheet_x": 12,
- "sheet_y": 27,
- "short_name": "cat2",
- "short_names": ["cat2"],
- "text": null,
- "texts": null,
- "category": "Animals & Nature",
- "sort_order": 11,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "mount_fuji": {
- "char": "\ud83d\uddfb",
- "key": "mount_fuji",
- "keywords": ["mount_fuji", "MOUNT FUJI"],
- "category": "travel_and_places",
- "lib": {
- "name": "MOUNT FUJI",
- "unified": "1F5FB",
- "non_qualified": null,
- "docomo": "E740",
- "au": "E5BD",
- "softbank": "E03B",
- "google": "FE4C3",
- "image": "1f5fb.png",
- "sheet_x": 30,
- "sheet_y": 38,
- "short_name": "mount_fuji",
- "short_names": ["mount_fuji"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 11,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "yum": {
- "char": "\ud83d\ude0b",
- "key": "yum",
- "keywords": ["yum", "FACE SAVOURING DELICIOUS FOOD"],
- "category": "people",
- "lib": {
- "name": "FACE SAVOURING DELICIOUS FOOD",
- "unified": "1F60B",
- "non_qualified": null,
- "docomo": "E752",
- "au": "EACD",
- "softbank": null,
- "google": "FE32B",
- "image": "1f60b.png",
- "sheet_x": 31,
- "sheet_y": 1,
- "short_name": "yum",
- "short_names": ["yum"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 11,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "customs": {
- "char": "\ud83d\udec3",
- "key": "customs",
- "keywords": ["customs", "CUSTOMS"],
- "category": "symbols",
- "lib": {
- "name": "CUSTOMS",
- "unified": "1F6C3",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f6c3.png",
- "sheet_x": 37,
- "sheet_y": 4,
- "short_name": "customs",
- "short_names": ["customs"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 11,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "flag-ag": {
- "char": "\ud83c\udde6\ud83c\uddec",
- "key": "flag-ag",
- "keywords": ["flag-ag", "Antigua & Barbuda Flag"],
- "category": "flags",
- "lib": {
- "name": "Antigua & Barbuda Flag",
- "unified": "1F1E6-1F1EC",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1e6-1f1ec.png",
- "sheet_x": 0,
- "sheet_y": 35,
- "short_name": "flag-ag",
- "short_names": ["flag-ag"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 12,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "peach": {
- "char": "\ud83c\udf51",
- "key": "peach",
- "keywords": ["peach", "PEACH"],
- "category": "food_and_drink",
- "lib": {
- "name": "PEACH",
- "unified": "1F351",
- "non_qualified": null,
- "docomo": null,
- "au": "EB39",
- "softbank": null,
- "google": "FE05A",
- "image": "1f351.png",
- "sheet_x": 7,
- "sheet_y": 12,
- "short_name": "peach",
- "short_names": ["peach"],
- "text": null,
- "texts": null,
- "category": "Food & Drink",
- "sort_order": 12,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "dolls": {
- "char": "\ud83c\udf8e",
- "key": "dolls",
- "keywords": ["dolls", "JAPANESE DOLLS"],
- "category": "activity",
- "lib": {
- "name": "JAPANESE DOLLS",
- "unified": "1F38E",
- "non_qualified": null,
- "docomo": null,
- "au": "EAE4",
- "softbank": "E438",
- "google": "FE519",
- "image": "1f38e.png",
- "sheet_x": 8,
- "sheet_y": 25,
- "short_name": "dolls",
- "short_names": ["dolls"],
- "text": null,
- "texts": null,
- "category": "Activities",
- "sort_order": 12,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "notes": {
- "char": "\ud83c\udfb6",
- "key": "notes",
- "keywords": ["notes", "MULTIPLE MUSICAL NOTES"],
- "category": "objects",
- "lib": {
- "name": "MULTIPLE MUSICAL NOTES",
- "unified": "1F3B6",
- "non_qualified": null,
- "docomo": "E6FF",
- "au": "E505",
- "softbank": "E326",
- "google": "FE814",
- "image": "1f3b6.png",
- "sheet_x": 9,
- "sheet_y": 7,
- "short_name": "notes",
- "short_names": ["notes"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 12,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "camping": {
- "char": "\ud83c\udfd5\ufe0f",
- "key": "camping",
- "keywords": ["camping", ""],
- "category": "travel_and_places",
- "lib": {
- "name": null,
- "unified": "1F3D5-FE0F",
- "non_qualified": "1F3D5",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f3d5-fe0f.png",
- "sheet_x": 11,
- "sheet_y": 27,
- "short_name": "camping",
- "short_names": ["camping"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 12,
- "added_in": "7.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "sunglasses": {
- "char": "\ud83d\ude0e",
- "key": "sunglasses",
- "keywords": ["sunglasses", "SMILING FACE WITH SUNGLASSES"],
- "category": "people",
- "lib": {
- "name": "SMILING FACE WITH SUNGLASSES",
- "unified": "1F60E",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f60e.png",
- "sheet_x": 31,
- "sheet_y": 4,
- "short_name": "sunglasses",
- "short_names": ["sunglasses"],
- "text": null,
- "texts": ["8)"],
- "category": "Smileys & People",
- "sort_order": 12,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "baggage_claim": {
- "char": "\ud83d\udec4",
- "key": "baggage_claim",
- "keywords": ["baggage_claim", "BAGGAGE CLAIM"],
- "category": "symbols",
- "lib": {
- "name": "BAGGAGE CLAIM",
- "unified": "1F6C4",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f6c4.png",
- "sheet_x": 37,
- "sheet_y": 5,
- "short_name": "baggage_claim",
- "short_names": ["baggage_claim"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 12,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "lion_face": {
- "char": "\ud83e\udd81",
- "key": "lion_face",
- "keywords": ["lion_face", "LION FACE"],
- "category": "animals_and_nature",
- "lib": {
- "name": "LION FACE",
- "unified": "1F981",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f981.png",
- "sheet_x": 42,
- "sheet_y": 50,
- "short_name": "lion_face",
- "short_names": ["lion_face"],
- "text": null,
- "texts": null,
- "category": "Animals & Nature",
- "sort_order": 12,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "flag-ai": {
- "char": "\ud83c\udde6\ud83c\uddee",
- "key": "flag-ai",
- "keywords": ["flag-ai", "Anguilla Flag"],
- "category": "flags",
- "lib": {
- "name": "Anguilla Flag",
- "unified": "1F1E6-1F1EE",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1e6-1f1ee.png",
- "sheet_x": 0,
- "sheet_y": 36,
- "short_name": "flag-ai",
- "short_names": ["flag-ai"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 13,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "cherries": {
- "char": "\ud83c\udf52",
- "key": "cherries",
- "keywords": ["cherries", "CHERRIES"],
- "category": "food_and_drink",
- "lib": {
- "name": "CHERRIES",
- "unified": "1F352",
- "non_qualified": null,
- "docomo": "E742",
- "au": "E4D2",
- "softbank": null,
- "google": "FE04F",
- "image": "1f352.png",
- "sheet_x": 7,
- "sheet_y": 13,
- "short_name": "cherries",
- "short_names": ["cherries"],
- "text": null,
- "texts": null,
- "category": "Food & Drink",
- "sort_order": 13,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "flags": {
- "char": "\ud83c\udf8f",
- "key": "flags",
- "keywords": ["flags", "CARP STREAMER"],
- "category": "activity",
- "lib": {
- "name": "CARP STREAMER",
- "unified": "1F38F",
- "non_qualified": null,
- "docomo": null,
- "au": "EAE7",
- "softbank": "E43B",
- "google": "FE51C",
- "image": "1f38f.png",
- "sheet_x": 8,
- "sheet_y": 26,
- "short_name": "flags",
- "short_names": ["flags"],
- "text": null,
- "texts": null,
- "category": "Activities",
- "sort_order": 13,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "studio_microphone": {
- "char": "\ud83c\udf99\ufe0f",
- "key": "studio_microphone",
- "keywords": ["studio_microphone", ""],
- "category": "objects",
- "lib": {
- "name": null,
- "unified": "1F399-FE0F",
- "non_qualified": "1F399",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f399-fe0f.png",
- "sheet_x": 8,
- "sheet_y": 33,
- "short_name": "studio_microphone",
- "short_names": ["studio_microphone"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 13,
- "added_in": "7.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "beach_with_umbrella": {
- "char": "\ud83c\udfd6\ufe0f",
- "key": "beach_with_umbrella",
- "keywords": ["beach_with_umbrella", ""],
- "category": "travel_and_places",
- "lib": {
- "name": null,
- "unified": "1F3D6-FE0F",
- "non_qualified": "1F3D6",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f3d6-fe0f.png",
- "sheet_x": 11,
- "sheet_y": 28,
- "short_name": "beach_with_umbrella",
- "short_names": ["beach_with_umbrella"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 13,
- "added_in": "7.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "tiger": {
- "char": "\ud83d\udc2f",
- "key": "tiger",
- "keywords": ["tiger", "TIGER FACE"],
- "category": "animals_and_nature",
- "lib": {
- "name": "TIGER FACE",
- "unified": "1F42F",
- "non_qualified": null,
- "docomo": null,
- "au": "E5C0",
- "softbank": "E050",
- "google": "FE1C0",
- "image": "1f42f.png",
- "sheet_x": 13,
- "sheet_y": 13,
- "short_name": "tiger",
- "short_names": ["tiger"],
- "text": null,
- "texts": null,
- "category": "Animals & Nature",
- "sort_order": 13,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "heart_eyes": {
- "char": "\ud83d\ude0d",
- "key": "heart_eyes",
- "keywords": ["heart_eyes", "SMILING FACE WITH HEART-SHAPED EYES"],
- "category": "people",
- "lib": {
- "name": "SMILING FACE WITH HEART-SHAPED EYES",
- "unified": "1F60D",
- "non_qualified": null,
- "docomo": "E726",
- "au": "E5C4",
- "softbank": "E106",
- "google": "FE327",
- "image": "1f60d.png",
- "sheet_x": 31,
- "sheet_y": 3,
- "short_name": "heart_eyes",
- "short_names": ["heart_eyes"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 13,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "left_luggage": {
- "char": "\ud83d\udec5",
- "key": "left_luggage",
- "keywords": ["left_luggage", "LEFT LUGGAGE"],
- "category": "symbols",
- "lib": {
- "name": "LEFT LUGGAGE",
- "unified": "1F6C5",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f6c5.png",
- "sheet_x": 37,
- "sheet_y": 6,
- "short_name": "left_luggage",
- "short_names": ["left_luggage"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 13,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "flag-al": {
- "char": "\ud83c\udde6\ud83c\uddf1",
- "key": "flag-al",
- "keywords": ["flag-al", "Albania Flag"],
- "category": "flags",
- "lib": {
- "name": "Albania Flag",
- "unified": "1F1E6-1F1F1",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1e6-1f1f1.png",
- "sheet_x": 0,
- "sheet_y": 37,
- "short_name": "flag-al",
- "short_names": ["flag-al"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 14,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "strawberry": {
- "char": "\ud83c\udf53",
- "key": "strawberry",
- "keywords": ["strawberry", "STRAWBERRY"],
- "category": "food_and_drink",
- "lib": {
- "name": "STRAWBERRY",
- "unified": "1F353",
- "non_qualified": null,
- "docomo": null,
- "au": "E4D4",
- "softbank": "E347",
- "google": "FE053",
- "image": "1f353.png",
- "sheet_x": 7,
- "sheet_y": 14,
- "short_name": "strawberry",
- "short_names": ["strawberry"],
- "text": null,
- "texts": null,
- "category": "Food & Drink",
- "sort_order": 14,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "wind_chime": {
- "char": "\ud83c\udf90",
- "key": "wind_chime",
- "keywords": ["wind_chime", "WIND CHIME"],
- "category": "activity",
- "lib": {
- "name": "WIND CHIME",
- "unified": "1F390",
- "non_qualified": null,
- "docomo": null,
- "au": "EAED",
- "softbank": "E442",
- "google": "FE51E",
- "image": "1f390.png",
- "sheet_x": 8,
- "sheet_y": 27,
- "short_name": "wind_chime",
- "short_names": ["wind_chime"],
- "text": null,
- "texts": null,
- "category": "Activities",
- "sort_order": 14,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "level_slider": {
- "char": "\ud83c\udf9a\ufe0f",
- "key": "level_slider",
- "keywords": ["level_slider", ""],
- "category": "objects",
- "lib": {
- "name": null,
- "unified": "1F39A-FE0F",
- "non_qualified": "1F39A",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f39a-fe0f.png",
- "sheet_x": 8,
- "sheet_y": 34,
- "short_name": "level_slider",
- "short_names": ["level_slider"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 14,
- "added_in": "7.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "desert": {
- "char": "\ud83c\udfdc\ufe0f",
- "key": "desert",
- "keywords": ["desert", ""],
- "category": "travel_and_places",
- "lib": {
- "name": null,
- "unified": "1F3DC-FE0F",
- "non_qualified": "1F3DC",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f3dc-fe0f.png",
- "sheet_x": 11,
- "sheet_y": 34,
- "short_name": "desert",
- "short_names": ["desert"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 14,
- "added_in": "7.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "tiger2": {
- "char": "\ud83d\udc05",
- "key": "tiger2",
- "keywords": ["tiger2", "TIGER"],
- "category": "animals_and_nature",
- "lib": {
- "name": "TIGER",
- "unified": "1F405",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f405.png",
- "sheet_x": 12,
- "sheet_y": 24,
- "short_name": "tiger2",
- "short_names": ["tiger2"],
- "text": null,
- "texts": null,
- "category": "Animals & Nature",
- "sort_order": 14,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "kissing_heart": {
- "char": "\ud83d\ude18",
- "key": "kissing_heart",
- "keywords": ["kissing_heart", "FACE THROWING A KISS"],
- "category": "people",
- "lib": {
- "name": "FACE THROWING A KISS",
- "unified": "1F618",
- "non_qualified": null,
- "docomo": "E726",
- "au": "EACF",
- "softbank": "E418",
- "google": "FE32C",
- "image": "1f618.png",
- "sheet_x": 31,
- "sheet_y": 14,
- "short_name": "kissing_heart",
- "short_names": ["kissing_heart"],
- "text": null,
- "texts": [":*", ":-*"],
- "category": "Smileys & People",
- "sort_order": 14,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "warning": {
- "char": "\u26a0\ufe0f",
- "key": "warning",
- "keywords": ["warning", "WARNING SIGN"],
- "category": "symbols",
- "lib": {
- "name": "WARNING SIGN",
- "unified": "26A0-FE0F",
- "non_qualified": "26A0",
- "docomo": "E737",
- "au": "E481",
- "softbank": "E252",
- "google": "FEB23",
- "image": "26a0-fe0f.png",
- "sheet_x": 50,
- "sheet_y": 11,
- "short_name": "warning",
- "short_names": ["warning"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 14,
- "added_in": "4.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "flag-am": {
- "char": "\ud83c\udde6\ud83c\uddf2",
- "key": "flag-am",
- "keywords": ["flag-am", "Armenia Flag"],
- "category": "flags",
- "lib": {
- "name": "Armenia Flag",
- "unified": "1F1E6-1F1F2",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1e6-1f1f2.png",
- "sheet_x": 0,
- "sheet_y": 38,
- "short_name": "flag-am",
- "short_names": ["flag-am"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 15,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "rice_scene": {
- "char": "\ud83c\udf91",
- "key": "rice_scene",
- "keywords": ["rice_scene", "MOON VIEWING CEREMONY"],
- "category": "activity",
- "lib": {
- "name": "MOON VIEWING CEREMONY",
- "unified": "1F391",
- "non_qualified": null,
- "docomo": null,
- "au": "EAEF",
- "softbank": "E446",
- "google": "FE017",
- "image": "1f391.png",
- "sheet_x": 8,
- "sheet_y": 28,
- "short_name": "rice_scene",
- "short_names": ["rice_scene"],
- "text": null,
- "texts": null,
- "category": "Activities",
- "sort_order": 15,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "control_knobs": {
- "char": "\ud83c\udf9b\ufe0f",
- "key": "control_knobs",
- "keywords": ["control_knobs", ""],
- "category": "objects",
- "lib": {
- "name": null,
- "unified": "1F39B-FE0F",
- "non_qualified": "1F39B",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f39b-fe0f.png",
- "sheet_x": 8,
- "sheet_y": 35,
- "short_name": "control_knobs",
- "short_names": ["control_knobs"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 15,
- "added_in": "7.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "desert_island": {
- "char": "\ud83c\udfdd\ufe0f",
- "key": "desert_island",
- "keywords": ["desert_island", ""],
- "category": "travel_and_places",
- "lib": {
- "name": null,
- "unified": "1F3DD-FE0F",
- "non_qualified": "1F3DD",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f3dd-fe0f.png",
- "sheet_x": 11,
- "sheet_y": 35,
- "short_name": "desert_island",
- "short_names": ["desert_island"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 15,
- "added_in": "7.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "leopard": {
- "char": "\ud83d\udc06",
- "key": "leopard",
- "keywords": ["leopard", "LEOPARD"],
- "category": "animals_and_nature",
- "lib": {
- "name": "LEOPARD",
- "unified": "1F406",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f406.png",
- "sheet_x": 12,
- "sheet_y": 25,
- "short_name": "leopard",
- "short_names": ["leopard"],
- "text": null,
- "texts": null,
- "category": "Animals & Nature",
- "sort_order": 15,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "children_crossing": {
- "char": "\ud83d\udeb8",
- "key": "children_crossing",
- "keywords": ["children_crossing", "CHILDREN CROSSING"],
- "category": "symbols",
- "lib": {
- "name": "CHILDREN CROSSING",
- "unified": "1F6B8",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f6b8.png",
- "sheet_x": 36,
- "sheet_y": 41,
- "short_name": "children_crossing",
- "short_names": ["children_crossing"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 15,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "kiwifruit": {
- "char": "\ud83e\udd5d",
- "key": "kiwifruit",
- "keywords": ["kiwifruit", "KIWIFRUIT"],
- "category": "food_and_drink",
- "lib": {
- "name": "KIWIFRUIT",
- "unified": "1F95D",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f95d.png",
- "sheet_x": 42,
- "sheet_y": 20,
- "short_name": "kiwifruit",
- "short_names": ["kiwifruit"],
- "text": null,
- "texts": null,
- "category": "Food & Drink",
- "sort_order": 15,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "smiling_face_with_3_hearts": {
- "char": "\ud83e\udd70",
- "key": "smiling_face_with_3_hearts",
- "keywords": ["smiling_face_with_3_hearts", "SMILING FACE WITH SMILING EYES AND THREE HEARTS"],
- "category": "people",
- "lib": {
- "name": "SMILING FACE WITH SMILING EYES AND THREE HEARTS",
- "unified": "1F970",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f970.png",
- "sheet_x": 42,
- "sheet_y": 39,
- "short_name": "smiling_face_with_3_hearts",
- "short_names": ["smiling_face_with_3_hearts"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 15,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- },
- "flag-ao": {
- "char": "\ud83c\udde6\ud83c\uddf4",
- "key": "flag-ao",
- "keywords": ["flag-ao", "Angola Flag"],
- "category": "flags",
- "lib": {
- "name": "Angola Flag",
- "unified": "1F1E6-1F1F4",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1e6-1f1f4.png",
- "sheet_x": 0,
- "sheet_y": 39,
- "short_name": "flag-ao",
- "short_names": ["flag-ao"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 16,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "tomato": {
- "char": "\ud83c\udf45",
- "key": "tomato",
- "keywords": ["tomato", "TOMATO"],
- "category": "food_and_drink",
- "lib": {
- "name": "TOMATO",
- "unified": "1F345",
- "non_qualified": null,
- "docomo": null,
- "au": "EABB",
- "softbank": "E349",
- "google": "FE055",
- "image": "1f345.png",
- "sheet_x": 7,
- "sheet_y": 0,
- "short_name": "tomato",
- "short_names": ["tomato"],
- "text": null,
- "texts": null,
- "category": "Food & Drink",
- "sort_order": 16,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "microphone": {
- "char": "\ud83c\udfa4",
- "key": "microphone",
- "keywords": ["microphone", "MICROPHONE"],
- "category": "objects",
- "lib": {
- "name": "MICROPHONE",
- "unified": "1F3A4",
- "non_qualified": null,
- "docomo": "E676",
- "au": "E503",
- "softbank": "E03C",
- "google": "FE800",
- "image": "1f3a4.png",
- "sheet_x": 8,
- "sheet_y": 42,
- "short_name": "microphone",
- "short_names": ["microphone"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 16,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "national_park": {
- "char": "\ud83c\udfde\ufe0f",
- "key": "national_park",
- "keywords": ["national_park", ""],
- "category": "travel_and_places",
- "lib": {
- "name": null,
- "unified": "1F3DE-FE0F",
- "non_qualified": "1F3DE",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f3de-fe0f.png",
- "sheet_x": 11,
- "sheet_y": 36,
- "short_name": "national_park",
- "short_names": ["national_park"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 16,
- "added_in": "7.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "horse": {
- "char": "\ud83d\udc34",
- "key": "horse",
- "keywords": ["horse", "HORSE FACE"],
- "category": "animals_and_nature",
- "lib": {
- "name": "HORSE FACE",
- "unified": "1F434",
- "non_qualified": null,
- "docomo": "E754",
- "au": "E4D8",
- "softbank": "E01A",
- "google": "FE1BE",
- "image": "1f434.png",
- "sheet_x": 13,
- "sheet_y": 18,
- "short_name": "horse",
- "short_names": ["horse"],
- "text": null,
- "texts": null,
- "category": "Animals & Nature",
- "sort_order": 16,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "kissing": {
- "char": "\ud83d\ude17",
- "key": "kissing",
- "keywords": ["kissing", "KISSING FACE"],
- "category": "people",
- "lib": {
- "name": "KISSING FACE",
- "unified": "1F617",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f617.png",
- "sheet_x": 31,
- "sheet_y": 13,
- "short_name": "kissing",
- "short_names": ["kissing"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 16,
- "added_in": "6.1",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "red_envelope": {
- "char": "\ud83e\udde7",
- "key": "red_envelope",
- "keywords": ["red_envelope", "RED GIFT ENVELOPE"],
- "category": "activity",
- "lib": {
- "name": "RED GIFT ENVELOPE",
- "unified": "1F9E7",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f9e7.png",
- "sheet_x": 47,
- "sheet_y": 48,
- "short_name": "red_envelope",
- "short_names": ["red_envelope"],
- "text": null,
- "texts": null,
- "category": "Activities",
- "sort_order": 16,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- },
- "no_entry": {
- "char": "\u26d4",
- "key": "no_entry",
- "keywords": ["no_entry", "NO ENTRY"],
- "category": "symbols",
- "lib": {
- "name": "NO ENTRY",
- "unified": "26D4",
- "non_qualified": null,
- "docomo": "E72F",
- "au": "E484",
- "softbank": null,
- "google": "FEB26",
- "image": "26d4.png",
- "sheet_x": 50,
- "sheet_y": 26,
- "short_name": "no_entry",
- "short_names": ["no_entry"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 16,
- "added_in": "5.2",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "flag-aq": {
- "char": "\ud83c\udde6\ud83c\uddf6",
- "key": "flag-aq",
- "keywords": ["flag-aq", "Antarctica Flag"],
- "category": "flags",
- "lib": {
- "name": "Antarctica Flag",
- "unified": "1F1E6-1F1F6",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1e6-1f1f6.png",
- "sheet_x": 0,
- "sheet_y": 40,
- "short_name": "flag-aq",
- "short_names": ["flag-aq"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 17,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "ribbon": {
- "char": "\ud83c\udf80",
- "key": "ribbon",
- "keywords": ["ribbon", "RIBBON"],
- "category": "activity",
- "lib": {
- "name": "RIBBON",
- "unified": "1F380",
- "non_qualified": null,
- "docomo": "E684",
- "au": "E59F",
- "softbank": "E314",
- "google": "FE50F",
- "image": "1f380.png",
- "sheet_x": 8,
- "sheet_y": 6,
- "short_name": "ribbon",
- "short_names": ["ribbon"],
- "text": null,
- "texts": null,
- "category": "Activities",
- "sort_order": 17,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "headphones": {
- "char": "\ud83c\udfa7",
- "key": "headphones",
- "keywords": ["headphones", "HEADPHONE"],
- "category": "objects",
- "lib": {
- "name": "HEADPHONE",
- "unified": "1F3A7",
- "non_qualified": null,
- "docomo": "E67A",
- "au": "E508",
- "softbank": "E30A",
- "google": "FE803",
- "image": "1f3a7.png",
- "sheet_x": 8,
- "sheet_y": 45,
- "short_name": "headphones",
- "short_names": ["headphones"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 17,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "stadium": {
- "char": "\ud83c\udfdf\ufe0f",
- "key": "stadium",
- "keywords": ["stadium", ""],
- "category": "travel_and_places",
- "lib": {
- "name": null,
- "unified": "1F3DF-FE0F",
- "non_qualified": "1F3DF",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f3df-fe0f.png",
- "sheet_x": 11,
- "sheet_y": 37,
- "short_name": "stadium",
- "short_names": ["stadium"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 17,
- "added_in": "7.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "racehorse": {
- "char": "\ud83d\udc0e",
- "key": "racehorse",
- "keywords": ["racehorse", "HORSE"],
- "category": "animals_and_nature",
- "lib": {
- "name": "HORSE",
- "unified": "1F40E",
- "non_qualified": null,
- "docomo": "E754",
- "au": "E4D8",
- "softbank": "E134",
- "google": "FE7DC",
- "image": "1f40e.png",
- "sheet_x": 12,
- "sheet_y": 33,
- "short_name": "racehorse",
- "short_names": ["racehorse"],
- "text": null,
- "texts": null,
- "category": "Animals & Nature",
- "sort_order": 17,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "kissing_smiling_eyes": {
- "char": "\ud83d\ude19",
- "key": "kissing_smiling_eyes",
- "keywords": ["kissing_smiling_eyes", "KISSING FACE WITH SMILING EYES"],
- "category": "people",
- "lib": {
- "name": "KISSING FACE WITH SMILING EYES",
- "unified": "1F619",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f619.png",
- "sheet_x": 31,
- "sheet_y": 15,
- "short_name": "kissing_smiling_eyes",
- "short_names": ["kissing_smiling_eyes"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 17,
- "added_in": "6.1",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "no_entry_sign": {
- "char": "\ud83d\udeab",
- "key": "no_entry_sign",
- "keywords": ["no_entry_sign", "NO ENTRY SIGN"],
- "category": "symbols",
- "lib": {
- "name": "NO ENTRY SIGN",
- "unified": "1F6AB",
- "non_qualified": null,
- "docomo": "E738",
- "au": "E541",
- "softbank": null,
- "google": "FEB48",
- "image": "1f6ab.png",
- "sheet_x": 35,
- "sheet_y": 30,
- "short_name": "no_entry_sign",
- "short_names": ["no_entry_sign"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 17,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "coconut": {
- "char": "\ud83e\udd65",
- "key": "coconut",
- "keywords": ["coconut", "COCONUT"],
- "category": "food_and_drink",
- "lib": {
- "name": "COCONUT",
- "unified": "1F965",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f965.png",
- "sheet_x": 42,
- "sheet_y": 28,
- "short_name": "coconut",
- "short_names": ["coconut"],
- "text": null,
- "texts": null,
- "category": "Food & Drink",
- "sort_order": 17,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "flag-ar": {
- "char": "\ud83c\udde6\ud83c\uddf7",
- "key": "flag-ar",
- "keywords": ["flag-ar", "Argentina Flag"],
- "category": "flags",
- "lib": {
- "name": "Argentina Flag",
- "unified": "1F1E6-1F1F7",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1e6-1f1f7.png",
- "sheet_x": 0,
- "sheet_y": 41,
- "short_name": "flag-ar",
- "short_names": ["flag-ar"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 18,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "gift": {
- "char": "\ud83c\udf81",
- "key": "gift",
- "keywords": ["gift", "WRAPPED PRESENT"],
- "category": "activity",
- "lib": {
- "name": "WRAPPED PRESENT",
- "unified": "1F381",
- "non_qualified": null,
- "docomo": "E685",
- "au": "E4CF",
- "softbank": "E112",
- "google": "FE510",
- "image": "1f381.png",
- "sheet_x": 8,
- "sheet_y": 7,
- "short_name": "gift",
- "short_names": ["gift"],
- "text": null,
- "texts": null,
- "category": "Activities",
- "sort_order": 18,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "classical_building": {
- "char": "\ud83c\udfdb\ufe0f",
- "key": "classical_building",
- "keywords": ["classical_building", ""],
- "category": "travel_and_places",
- "lib": {
- "name": null,
- "unified": "1F3DB-FE0F",
- "non_qualified": "1F3DB",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f3db-fe0f.png",
- "sheet_x": 11,
- "sheet_y": 33,
- "short_name": "classical_building",
- "short_names": ["classical_building"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 18,
- "added_in": "7.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "radio": {
- "char": "\ud83d\udcfb",
- "key": "radio",
- "keywords": ["radio", "RADIO"],
- "category": "objects",
- "lib": {
- "name": "RADIO",
- "unified": "1F4FB",
- "non_qualified": null,
- "docomo": null,
- "au": "E5B9",
- "softbank": "E128",
- "google": "FE81F",
- "image": "1f4fb.png",
- "sheet_x": 27,
- "sheet_y": 20,
- "short_name": "radio",
- "short_names": ["radio"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 18,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "kissing_closed_eyes": {
- "char": "\ud83d\ude1a",
- "key": "kissing_closed_eyes",
- "keywords": ["kissing_closed_eyes", "KISSING FACE WITH CLOSED EYES"],
- "category": "people",
- "lib": {
- "name": "KISSING FACE WITH CLOSED EYES",
- "unified": "1F61A",
- "non_qualified": null,
- "docomo": "E726",
- "au": "EACE",
- "softbank": "E417",
- "google": "FE32D",
- "image": "1f61a.png",
- "sheet_x": 31,
- "sheet_y": 16,
- "short_name": "kissing_closed_eyes",
- "short_names": ["kissing_closed_eyes"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 18,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "no_bicycles": {
- "char": "\ud83d\udeb3",
- "key": "no_bicycles",
- "keywords": ["no_bicycles", "NO BICYCLES"],
- "category": "symbols",
- "lib": {
- "name": "NO BICYCLES",
- "unified": "1F6B3",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f6b3.png",
- "sheet_x": 35,
- "sheet_y": 38,
- "short_name": "no_bicycles",
- "short_names": ["no_bicycles"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 18,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "avocado": {
- "char": "\ud83e\udd51",
- "key": "avocado",
- "keywords": ["avocado", "AVOCADO"],
- "category": "food_and_drink",
- "lib": {
- "name": "AVOCADO",
- "unified": "1F951",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f951.png",
- "sheet_x": 42,
- "sheet_y": 8,
- "short_name": "avocado",
- "short_names": ["avocado"],
- "text": null,
- "texts": null,
- "category": "Food & Drink",
- "sort_order": 18,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "unicorn_face": {
- "char": "\ud83e\udd84",
- "key": "unicorn_face",
- "keywords": ["unicorn_face", "UNICORN FACE"],
- "category": "animals_and_nature",
- "lib": {
- "name": "UNICORN FACE",
- "unified": "1F984",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f984.png",
- "sheet_x": 43,
- "sheet_y": 0,
- "short_name": "unicorn_face",
- "short_names": ["unicorn_face"],
- "text": null,
- "texts": null,
- "category": "Animals & Nature",
- "sort_order": 18,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "flag-as": {
- "char": "\ud83c\udde6\ud83c\uddf8",
- "key": "flag-as",
- "keywords": ["flag-as", "American Samoa Flag"],
- "category": "flags",
- "lib": {
- "name": "American Samoa Flag",
- "unified": "1F1E6-1F1F8",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1e6-1f1f8.png",
- "sheet_x": 0,
- "sheet_y": 42,
- "short_name": "flag-as",
- "short_names": ["flag-as"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 19,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "eggplant": {
- "char": "\ud83c\udf46",
- "key": "eggplant",
- "keywords": ["eggplant", "AUBERGINE"],
- "category": "food_and_drink",
- "lib": {
- "name": "AUBERGINE",
- "unified": "1F346",
- "non_qualified": null,
- "docomo": null,
- "au": "EABC",
- "softbank": "E34A",
- "google": "FE056",
- "image": "1f346.png",
- "sheet_x": 7,
- "sheet_y": 1,
- "short_name": "eggplant",
- "short_names": ["eggplant"],
- "text": null,
- "texts": null,
- "category": "Food & Drink",
- "sort_order": 19,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "reminder_ribbon": {
- "char": "\ud83c\udf97\ufe0f",
- "key": "reminder_ribbon",
- "keywords": ["reminder_ribbon", ""],
- "category": "activity",
- "lib": {
- "name": null,
- "unified": "1F397-FE0F",
- "non_qualified": "1F397",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f397-fe0f.png",
- "sheet_x": 8,
- "sheet_y": 32,
- "short_name": "reminder_ribbon",
- "short_names": ["reminder_ribbon"],
- "text": null,
- "texts": null,
- "category": "Activities",
- "sort_order": 19,
- "added_in": "7.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "saxophone": {
- "char": "\ud83c\udfb7",
- "key": "saxophone",
- "keywords": ["saxophone", "SAXOPHONE"],
- "category": "objects",
- "lib": {
- "name": "SAXOPHONE",
- "unified": "1F3B7",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": "E040",
- "google": "FE815",
- "image": "1f3b7.png",
- "sheet_x": 9,
- "sheet_y": 8,
- "short_name": "saxophone",
- "short_names": ["saxophone"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 19,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "building_construction": {
- "char": "\ud83c\udfd7\ufe0f",
- "key": "building_construction",
- "keywords": ["building_construction", ""],
- "category": "travel_and_places",
- "lib": {
- "name": null,
- "unified": "1F3D7-FE0F",
- "non_qualified": "1F3D7",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f3d7-fe0f.png",
- "sheet_x": 11,
- "sheet_y": 29,
- "short_name": "building_construction",
- "short_names": ["building_construction"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 19,
- "added_in": "7.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "no_smoking": {
- "char": "\ud83d\udead",
- "key": "no_smoking",
- "keywords": ["no_smoking", "NO SMOKING SYMBOL"],
- "category": "symbols",
- "lib": {
- "name": "NO SMOKING SYMBOL",
- "unified": "1F6AD",
- "non_qualified": null,
- "docomo": "E680",
- "au": "E47E",
- "softbank": "E208",
- "google": "FEB1F",
- "image": "1f6ad.png",
- "sheet_x": 35,
- "sheet_y": 32,
- "short_name": "no_smoking",
- "short_names": ["no_smoking"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 19,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "zebra_face": {
- "char": "\ud83e\udd93",
- "key": "zebra_face",
- "keywords": ["zebra_face", "ZEBRA FACE"],
- "category": "animals_and_nature",
- "lib": {
- "name": "ZEBRA FACE",
- "unified": "1F993",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f993.png",
- "sheet_x": 43,
- "sheet_y": 15,
- "short_name": "zebra_face",
- "short_names": ["zebra_face"],
- "text": null,
- "texts": null,
- "category": "Animals & Nature",
- "sort_order": 19,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "relaxed": {
- "char": "\u263a\ufe0f",
- "key": "relaxed",
- "keywords": ["relaxed", "WHITE SMILING FACE"],
- "category": "people",
- "lib": {
- "name": "WHITE SMILING FACE",
- "unified": "263A-FE0F",
- "non_qualified": "263A",
- "docomo": "E6F0",
- "au": "E4FB",
- "softbank": "E414",
- "google": "FE336",
- "image": "263a-fe0f.png",
- "sheet_x": 49,
- "sheet_y": 31,
- "short_name": "relaxed",
- "short_names": ["relaxed"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 19,
- "added_in": "1.1",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "flag-at": {
- "char": "\ud83c\udde6\ud83c\uddf9",
- "key": "flag-at",
- "keywords": ["flag-at", "Austria Flag"],
- "category": "flags",
- "lib": {
- "name": "Austria Flag",
- "unified": "1F1E6-1F1F9",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1e6-1f1f9.png",
- "sheet_x": 0,
- "sheet_y": 43,
- "short_name": "flag-at",
- "short_names": ["flag-at"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 20,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "admission_tickets": {
- "char": "\ud83c\udf9f\ufe0f",
- "key": "admission_tickets",
- "keywords": ["admission_tickets", ""],
- "category": "activity",
- "lib": {
- "name": null,
- "unified": "1F39F-FE0F",
- "non_qualified": "1F39F",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f39f-fe0f.png",
- "sheet_x": 8,
- "sheet_y": 37,
- "short_name": "admission_tickets",
- "short_names": ["admission_tickets"],
- "text": null,
- "texts": null,
- "category": "Activities",
- "sort_order": 20,
- "added_in": "7.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "guitar": {
- "char": "\ud83c\udfb8",
- "key": "guitar",
- "keywords": ["guitar", "GUITAR"],
- "category": "objects",
- "lib": {
- "name": "GUITAR",
- "unified": "1F3B8",
- "non_qualified": null,
- "docomo": null,
- "au": "E506",
- "softbank": "E041",
- "google": "FE816",
- "image": "1f3b8.png",
- "sheet_x": 9,
- "sheet_y": 9,
- "short_name": "guitar",
- "short_names": ["guitar"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 20,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "slightly_smiling_face": {
- "char": "\ud83d\ude42",
- "key": "slightly_smiling_face",
- "keywords": ["slightly_smiling_face", "SLIGHTLY SMILING FACE"],
- "category": "people",
- "lib": {
- "name": "SLIGHTLY SMILING FACE",
- "unified": "1F642",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f642.png",
- "sheet_x": 32,
- "sheet_y": 3,
- "short_name": "slightly_smiling_face",
- "short_names": ["slightly_smiling_face"],
- "text": null,
- "texts": [":)", "(:", ":-)"],
- "category": "Smileys & People",
- "sort_order": 20,
- "added_in": "7.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "do_not_litter": {
- "char": "\ud83d\udeaf",
- "key": "do_not_litter",
- "keywords": ["do_not_litter", "DO NOT LITTER SYMBOL"],
- "category": "symbols",
- "lib": {
- "name": "DO NOT LITTER SYMBOL",
- "unified": "1F6AF",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f6af.png",
- "sheet_x": 35,
- "sheet_y": 34,
- "short_name": "do_not_litter",
- "short_names": ["do_not_litter"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 20,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "potato": {
- "char": "\ud83e\udd54",
- "key": "potato",
- "keywords": ["potato", "POTATO"],
- "category": "food_and_drink",
- "lib": {
- "name": "POTATO",
- "unified": "1F954",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f954.png",
- "sheet_x": 42,
- "sheet_y": 11,
- "short_name": "potato",
- "short_names": ["potato"],
- "text": null,
- "texts": null,
- "category": "Food & Drink",
- "sort_order": 20,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "deer": {
- "char": "\ud83e\udd8c",
- "key": "deer",
- "keywords": ["deer", "DEER"],
- "category": "animals_and_nature",
- "lib": {
- "name": "DEER",
- "unified": "1F98C",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f98c.png",
- "sheet_x": 43,
- "sheet_y": 8,
- "short_name": "deer",
- "short_names": ["deer"],
- "text": null,
- "texts": null,
- "category": "Animals & Nature",
- "sort_order": 20,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "bricks": {
- "char": "\ud83e\uddf1",
- "key": "bricks",
- "keywords": ["bricks", "BRICK"],
- "category": "travel_and_places",
- "lib": {
- "name": "BRICK",
- "unified": "1F9F1",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f9f1.png",
- "sheet_x": 48,
- "sheet_y": 5,
- "short_name": "bricks",
- "short_names": ["bricks"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 20,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- },
- "flag-au": {
- "char": "\ud83c\udde6\ud83c\uddfa",
- "key": "flag-au",
- "keywords": ["flag-au", "Australia Flag"],
- "category": "flags",
- "lib": {
- "name": "Australia Flag",
- "unified": "1F1E6-1F1FA",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1e6-1f1fa.png",
- "sheet_x": 0,
- "sheet_y": 44,
- "short_name": "flag-au",
- "short_names": ["flag-au"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 21,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "ticket": {
- "char": "\ud83c\udfab",
- "key": "ticket",
- "keywords": ["ticket", "TICKET"],
- "category": "activity",
- "lib": {
- "name": "TICKET",
- "unified": "1F3AB",
- "non_qualified": null,
- "docomo": "E67E",
- "au": "E49E",
- "softbank": "E125",
- "google": "FE807",
- "image": "1f3ab.png",
- "sheet_x": 8,
- "sheet_y": 49,
- "short_name": "ticket",
- "short_names": ["ticket"],
- "text": null,
- "texts": null,
- "category": "Activities",
- "sort_order": 21,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "musical_keyboard": {
- "char": "\ud83c\udfb9",
- "key": "musical_keyboard",
- "keywords": ["musical_keyboard", "MUSICAL KEYBOARD"],
- "category": "objects",
- "lib": {
- "name": "MUSICAL KEYBOARD",
- "unified": "1F3B9",
- "non_qualified": null,
- "docomo": null,
- "au": "EB40",
- "softbank": null,
- "google": "FE817",
- "image": "1f3b9.png",
- "sheet_x": 9,
- "sheet_y": 10,
- "short_name": "musical_keyboard",
- "short_names": ["musical_keyboard"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 21,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "house_buildings": {
- "char": "\ud83c\udfd8\ufe0f",
- "key": "house_buildings",
- "keywords": ["house_buildings", ""],
- "category": "travel_and_places",
- "lib": {
- "name": null,
- "unified": "1F3D8-FE0F",
- "non_qualified": "1F3D8",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f3d8-fe0f.png",
- "sheet_x": 11,
- "sheet_y": 30,
- "short_name": "house_buildings",
- "short_names": ["house_buildings"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 21,
- "added_in": "7.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "cow": {
- "char": "\ud83d\udc2e",
- "key": "cow",
- "keywords": ["cow", "COW FACE"],
- "category": "animals_and_nature",
- "lib": {
- "name": "COW FACE",
- "unified": "1F42E",
- "non_qualified": null,
- "docomo": null,
- "au": "EB21",
- "softbank": "E52B",
- "google": "FE1D1",
- "image": "1f42e.png",
- "sheet_x": 13,
- "sheet_y": 12,
- "short_name": "cow",
- "short_names": ["cow"],
- "text": null,
- "texts": null,
- "category": "Animals & Nature",
- "sort_order": 21,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "non-potable_water": {
- "char": "\ud83d\udeb1",
- "key": "non-potable_water",
- "keywords": ["non-potable_water", "NON-POTABLE WATER SYMBOL"],
- "category": "symbols",
- "lib": {
- "name": "NON-POTABLE WATER SYMBOL",
- "unified": "1F6B1",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f6b1.png",
- "sheet_x": 35,
- "sheet_y": 36,
- "short_name": "non-potable_water",
- "short_names": ["non-potable_water"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 21,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "hugging_face": {
- "char": "\ud83e\udd17",
- "key": "hugging_face",
- "keywords": ["hugging_face", "HUGGING FACE"],
- "category": "people",
- "lib": {
- "name": "HUGGING FACE",
- "unified": "1F917",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f917.png",
- "sheet_x": 37,
- "sheet_y": 44,
- "short_name": "hugging_face",
- "short_names": ["hugging_face"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 21,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "carrot": {
- "char": "\ud83e\udd55",
- "key": "carrot",
- "keywords": ["carrot", "CARROT"],
- "category": "food_and_drink",
- "lib": {
- "name": "CARROT",
- "unified": "1F955",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f955.png",
- "sheet_x": 42,
- "sheet_y": 12,
- "short_name": "carrot",
- "short_names": ["carrot"],
- "text": null,
- "texts": null,
- "category": "Food & Drink",
- "sort_order": 21,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "flag-aw": {
- "char": "\ud83c\udde6\ud83c\uddfc",
- "key": "flag-aw",
- "keywords": ["flag-aw", "Aruba Flag"],
- "category": "flags",
- "lib": {
- "name": "Aruba Flag",
- "unified": "1F1E6-1F1FC",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1e6-1f1fc.png",
- "sheet_x": 0,
- "sheet_y": 45,
- "short_name": "flag-aw",
- "short_names": ["flag-aw"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 22,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "corn": {
- "char": "\ud83c\udf3d",
- "key": "corn",
- "keywords": ["corn", "EAR OF MAIZE"],
- "category": "food_and_drink",
- "lib": {
- "name": "EAR OF MAIZE",
- "unified": "1F33D",
- "non_qualified": null,
- "docomo": null,
- "au": "EB36",
- "softbank": null,
- "google": "FE04A",
- "image": "1f33d.png",
- "sheet_x": 6,
- "sheet_y": 45,
- "short_name": "corn",
- "short_names": ["corn"],
- "text": null,
- "texts": null,
- "category": "Food & Drink",
- "sort_order": 22,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "medal": {
- "char": "\ud83c\udf96\ufe0f",
- "key": "medal",
- "keywords": ["medal", ""],
- "category": "activity",
- "lib": {
- "name": null,
- "unified": "1F396-FE0F",
- "non_qualified": "1F396",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f396-fe0f.png",
- "sheet_x": 8,
- "sheet_y": 31,
- "short_name": "medal",
- "short_names": ["medal"],
- "text": null,
- "texts": null,
- "category": "Activities",
- "sort_order": 22,
- "added_in": "7.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "trumpet": {
- "char": "\ud83c\udfba",
- "key": "trumpet",
- "keywords": ["trumpet", "TRUMPET"],
- "category": "objects",
- "lib": {
- "name": "TRUMPET",
- "unified": "1F3BA",
- "non_qualified": null,
- "docomo": null,
- "au": "EADC",
- "softbank": "E042",
- "google": "FE818",
- "image": "1f3ba.png",
- "sheet_x": 9,
- "sheet_y": 11,
- "short_name": "trumpet",
- "short_names": ["trumpet"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 22,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "derelict_house_building": {
- "char": "\ud83c\udfda\ufe0f",
- "key": "derelict_house_building",
- "keywords": ["derelict_house_building", ""],
- "category": "travel_and_places",
- "lib": {
- "name": null,
- "unified": "1F3DA-FE0F",
- "non_qualified": "1F3DA",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f3da-fe0f.png",
- "sheet_x": 11,
- "sheet_y": 32,
- "short_name": "derelict_house_building",
- "short_names": ["derelict_house_building"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 22,
- "added_in": "7.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "ox": {
- "char": "\ud83d\udc02",
- "key": "ox",
- "keywords": ["ox", "OX"],
- "category": "animals_and_nature",
- "lib": {
- "name": "OX",
- "unified": "1F402",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f402.png",
- "sheet_x": 12,
- "sheet_y": 21,
- "short_name": "ox",
- "short_names": ["ox"],
- "text": null,
- "texts": null,
- "category": "Animals & Nature",
- "sort_order": 22,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "no_pedestrians": {
- "char": "\ud83d\udeb7",
- "key": "no_pedestrians",
- "keywords": ["no_pedestrians", "NO PEDESTRIANS"],
- "category": "symbols",
- "lib": {
- "name": "NO PEDESTRIANS",
- "unified": "1F6B7",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f6b7.png",
- "sheet_x": 36,
- "sheet_y": 40,
- "short_name": "no_pedestrians",
- "short_names": ["no_pedestrians"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 22,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "star-struck": {
- "char": "\ud83e\udd29",
- "key": "star-struck",
- "keywords": ["star-struck", "GRINNING FACE WITH STAR EYES"],
- "category": "people",
- "lib": {
- "name": "GRINNING FACE WITH STAR EYES",
- "unified": "1F929",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f929.png",
- "sheet_x": 39,
- "sheet_y": 8,
- "short_name": "star-struck",
- "short_names": ["star-struck", "grinning_face_with_star_eyes"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 22,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "flag-ax": {
- "char": "\ud83c\udde6\ud83c\uddfd",
- "key": "flag-ax",
- "keywords": ["flag-ax", "\u00c5land Islands Flag"],
- "category": "flags",
- "lib": {
- "name": "\u00c5land Islands Flag",
- "unified": "1F1E6-1F1FD",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1e6-1f1fd.png",
- "sheet_x": 0,
- "sheet_y": 46,
- "short_name": "flag-ax",
- "short_names": ["flag-ax"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 23,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "hot_pepper": {
- "char": "\ud83c\udf36\ufe0f",
- "key": "hot_pepper",
- "keywords": ["hot_pepper", ""],
- "category": "food_and_drink",
- "lib": {
- "name": null,
- "unified": "1F336-FE0F",
- "non_qualified": "1F336",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f336-fe0f.png",
- "sheet_x": 6,
- "sheet_y": 38,
- "short_name": "hot_pepper",
- "short_names": ["hot_pepper"],
- "text": null,
- "texts": null,
- "category": "Food & Drink",
- "sort_order": 23,
- "added_in": "7.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "violin": {
- "char": "\ud83c\udfbb",
- "key": "violin",
- "keywords": ["violin", "VIOLIN"],
- "category": "objects",
- "lib": {
- "name": "VIOLIN",
- "unified": "1F3BB",
- "non_qualified": null,
- "docomo": null,
- "au": "E507",
- "softbank": null,
- "google": "FE819",
- "image": "1f3bb.png",
- "sheet_x": 9,
- "sheet_y": 12,
- "short_name": "violin",
- "short_names": ["violin"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 23,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "trophy": {
- "char": "\ud83c\udfc6",
- "key": "trophy",
- "keywords": ["trophy", "TROPHY"],
- "category": "activity",
- "lib": {
- "name": "TROPHY",
- "unified": "1F3C6",
- "non_qualified": null,
- "docomo": null,
- "au": "E5D3",
- "softbank": "E131",
- "google": "FE7DB",
- "image": "1f3c6.png",
- "sheet_x": 10,
- "sheet_y": 9,
- "short_name": "trophy",
- "short_names": ["trophy"],
- "text": null,
- "texts": null,
- "category": "Activities",
- "sort_order": 23,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "house": {
- "char": "\ud83c\udfe0",
- "key": "house",
- "keywords": ["house", "HOUSE BUILDING"],
- "category": "travel_and_places",
- "lib": {
- "name": "HOUSE BUILDING",
- "unified": "1F3E0",
- "non_qualified": null,
- "docomo": "E663",
- "au": "E4AB",
- "softbank": "E036",
- "google": "FE4B0",
- "image": "1f3e0.png",
- "sheet_x": 11,
- "sheet_y": 38,
- "short_name": "house",
- "short_names": ["house"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 23,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "water_buffalo": {
- "char": "\ud83d\udc03",
- "key": "water_buffalo",
- "keywords": ["water_buffalo", "WATER BUFFALO"],
- "category": "animals_and_nature",
- "lib": {
- "name": "WATER BUFFALO",
- "unified": "1F403",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f403.png",
- "sheet_x": 12,
- "sheet_y": 22,
- "short_name": "water_buffalo",
- "short_names": ["water_buffalo"],
- "text": null,
- "texts": null,
- "category": "Animals & Nature",
- "sort_order": 23,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "no_mobile_phones": {
- "char": "\ud83d\udcf5",
- "key": "no_mobile_phones",
- "keywords": ["no_mobile_phones", "NO MOBILE PHONES"],
- "category": "symbols",
- "lib": {
- "name": "NO MOBILE PHONES",
- "unified": "1F4F5",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f4f5.png",
- "sheet_x": 27,
- "sheet_y": 14,
- "short_name": "no_mobile_phones",
- "short_names": ["no_mobile_phones"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 23,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "thinking_face": {
- "char": "\ud83e\udd14",
- "key": "thinking_face",
- "keywords": ["thinking_face", "THINKING FACE"],
- "category": "people",
- "lib": {
- "name": "THINKING FACE",
- "unified": "1F914",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f914.png",
- "sheet_x": 37,
- "sheet_y": 41,
- "short_name": "thinking_face",
- "short_names": ["thinking_face"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 23,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "flag-az": {
- "char": "\ud83c\udde6\ud83c\uddff",
- "key": "flag-az",
- "keywords": ["flag-az", "Azerbaijan Flag"],
- "category": "flags",
- "lib": {
- "name": "Azerbaijan Flag",
- "unified": "1F1E6-1F1FF",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1e6-1f1ff.png",
- "sheet_x": 0,
- "sheet_y": 47,
- "short_name": "flag-az",
- "short_names": ["flag-az"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 24,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "sports_medal": {
- "char": "\ud83c\udfc5",
- "key": "sports_medal",
- "keywords": ["sports_medal", "SPORTS MEDAL"],
- "category": "activity",
- "lib": {
- "name": "SPORTS MEDAL",
- "unified": "1F3C5",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f3c5.png",
- "sheet_x": 10,
- "sheet_y": 8,
- "short_name": "sports_medal",
- "short_names": ["sports_medal"],
- "text": null,
- "texts": null,
- "category": "Activities",
- "sort_order": 24,
- "added_in": "7.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "house_with_garden": {
- "char": "\ud83c\udfe1",
- "key": "house_with_garden",
- "keywords": ["house_with_garden", "HOUSE WITH GARDEN"],
- "category": "travel_and_places",
- "lib": {
- "name": "HOUSE WITH GARDEN",
- "unified": "1F3E1",
- "non_qualified": null,
- "docomo": "E663",
- "au": "EB09",
- "softbank": null,
- "google": "FE4B1",
- "image": "1f3e1.png",
- "sheet_x": 11,
- "sheet_y": 39,
- "short_name": "house_with_garden",
- "short_names": ["house_with_garden"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 24,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "cow2": {
- "char": "\ud83d\udc04",
- "key": "cow2",
- "keywords": ["cow2", "COW"],
- "category": "animals_and_nature",
- "lib": {
- "name": "COW",
- "unified": "1F404",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f404.png",
- "sheet_x": 12,
- "sheet_y": 23,
- "short_name": "cow2",
- "short_names": ["cow2"],
- "text": null,
- "texts": null,
- "category": "Animals & Nature",
- "sort_order": 24,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "underage": {
- "char": "\ud83d\udd1e",
- "key": "underage",
- "keywords": ["underage", "NO ONE UNDER EIGHTEEN SYMBOL"],
- "category": "symbols",
- "lib": {
- "name": "NO ONE UNDER EIGHTEEN SYMBOL",
- "unified": "1F51E",
- "non_qualified": null,
- "docomo": null,
- "au": "EA83",
- "softbank": "E207",
- "google": "FEB25",
- "image": "1f51e.png",
- "sheet_x": 28,
- "sheet_y": 1,
- "short_name": "underage",
- "short_names": ["underage"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 24,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "face_with_raised_eyebrow": {
- "char": "\ud83e\udd28",
- "key": "face_with_raised_eyebrow",
- "keywords": ["face_with_raised_eyebrow", "FACE WITH ONE EYEBROW RAISED"],
- "category": "people",
- "lib": {
- "name": "FACE WITH ONE EYEBROW RAISED",
- "unified": "1F928",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f928.png",
- "sheet_x": 39,
- "sheet_y": 7,
- "short_name": "face_with_raised_eyebrow",
- "short_names": ["face_with_raised_eyebrow", "face_with_one_eyebrow_raised"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 24,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "drum_with_drumsticks": {
- "char": "\ud83e\udd41",
- "key": "drum_with_drumsticks",
- "keywords": ["drum_with_drumsticks", "DRUM WITH DRUMSTICKS"],
- "category": "objects",
- "lib": {
- "name": "DRUM WITH DRUMSTICKS",
- "unified": "1F941",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f941.png",
- "sheet_x": 41,
- "sheet_y": 46,
- "short_name": "drum_with_drumsticks",
- "short_names": ["drum_with_drumsticks"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 24,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "cucumber": {
- "char": "\ud83e\udd52",
- "key": "cucumber",
- "keywords": ["cucumber", "CUCUMBER"],
- "category": "food_and_drink",
- "lib": {
- "name": "CUCUMBER",
- "unified": "1F952",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f952.png",
- "sheet_x": 42,
- "sheet_y": 9,
- "short_name": "cucumber",
- "short_names": ["cucumber"],
- "text": null,
- "texts": null,
- "category": "Food & Drink",
- "sort_order": 24,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "flag-ba": {
- "char": "\ud83c\udde7\ud83c\udde6",
- "key": "flag-ba",
- "keywords": ["flag-ba", "Bosnia & Herzegovina Flag"],
- "category": "flags",
- "lib": {
- "name": "Bosnia & Herzegovina Flag",
- "unified": "1F1E7-1F1E6",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1e7-1f1e6.png",
- "sheet_x": 0,
- "sheet_y": 48,
- "short_name": "flag-ba",
- "short_names": ["flag-ba"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 25,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "office": {
- "char": "\ud83c\udfe2",
- "key": "office",
- "keywords": ["office", "OFFICE BUILDING"],
- "category": "travel_and_places",
- "lib": {
- "name": "OFFICE BUILDING",
- "unified": "1F3E2",
- "non_qualified": null,
- "docomo": "E664",
- "au": "E4AD",
- "softbank": "E038",
- "google": "FE4B2",
- "image": "1f3e2.png",
- "sheet_x": 11,
- "sheet_y": 40,
- "short_name": "office",
- "short_names": ["office"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 25,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "pig": {
- "char": "\ud83d\udc37",
- "key": "pig",
- "keywords": ["pig", "PIG FACE"],
- "category": "animals_and_nature",
- "lib": {
- "name": "PIG FACE",
- "unified": "1F437",
- "non_qualified": null,
- "docomo": "E755",
- "au": "E4DE",
- "softbank": "E10B",
- "google": "FE1BF",
- "image": "1f437.png",
- "sheet_x": 13,
- "sheet_y": 21,
- "short_name": "pig",
- "short_names": ["pig"],
- "text": null,
- "texts": null,
- "category": "Animals & Nature",
- "sort_order": 25,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "iphone": {
- "char": "\ud83d\udcf1",
- "key": "iphone",
- "keywords": ["iphone", "MOBILE PHONE"],
- "category": "objects",
- "lib": {
- "name": "MOBILE PHONE",
- "unified": "1F4F1",
- "non_qualified": null,
- "docomo": "E688",
- "au": "E588",
- "softbank": "E00A",
- "google": "FE525",
- "image": "1f4f1.png",
- "sheet_x": 27,
- "sheet_y": 10,
- "short_name": "iphone",
- "short_names": ["iphone"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 25,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "neutral_face": {
- "char": "\ud83d\ude10",
- "key": "neutral_face",
- "keywords": ["neutral_face", "NEUTRAL FACE"],
- "category": "people",
- "lib": {
- "name": "NEUTRAL FACE",
- "unified": "1F610",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f610.png",
- "sheet_x": 31,
- "sheet_y": 6,
- "short_name": "neutral_face",
- "short_names": ["neutral_face"],
- "text": null,
- "texts": [":|", ":-|"],
- "category": "Smileys & People",
- "sort_order": 25,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "first_place_medal": {
- "char": "\ud83e\udd47",
- "key": "first_place_medal",
- "keywords": ["first_place_medal", "FIRST PLACE MEDAL"],
- "category": "activity",
- "lib": {
- "name": "FIRST PLACE MEDAL",
- "unified": "1F947",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f947.png",
- "sheet_x": 41,
- "sheet_y": 51,
- "short_name": "first_place_medal",
- "short_names": ["first_place_medal"],
- "text": null,
- "texts": null,
- "category": "Activities",
- "sort_order": 25,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "leafy_green": {
- "char": "\ud83e\udd6c",
- "key": "leafy_green",
- "keywords": ["leafy_green", "LEAFY GREEN"],
- "category": "food_and_drink",
- "lib": {
- "name": "LEAFY GREEN",
- "unified": "1F96C",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f96c.png",
- "sheet_x": 42,
- "sheet_y": 35,
- "short_name": "leafy_green",
- "short_names": ["leafy_green"],
- "text": null,
- "texts": null,
- "category": "Food & Drink",
- "sort_order": 25,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- },
- "radioactive_sign": {
- "char": "\u2622\ufe0f",
- "key": "radioactive_sign",
- "keywords": ["radioactive_sign", ""],
- "category": "symbols",
- "lib": {
- "name": null,
- "unified": "2622-FE0F",
- "non_qualified": "2622",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "2622-fe0f.png",
- "sheet_x": 49,
- "sheet_y": 23,
- "short_name": "radioactive_sign",
- "short_names": ["radioactive_sign"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 25,
- "added_in": "1.1",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "flag-bb": {
- "char": "\ud83c\udde7\ud83c\udde7",
- "key": "flag-bb",
- "keywords": ["flag-bb", "Barbados Flag"],
- "category": "flags",
- "lib": {
- "name": "Barbados Flag",
- "unified": "1F1E7-1F1E7",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1e7-1f1e7.png",
- "sheet_x": 0,
- "sheet_y": 49,
- "short_name": "flag-bb",
- "short_names": ["flag-bb"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 26,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "post_office": {
- "char": "\ud83c\udfe3",
- "key": "post_office",
- "keywords": ["post_office", "JAPANESE POST OFFICE"],
- "category": "travel_and_places",
- "lib": {
- "name": "JAPANESE POST OFFICE",
- "unified": "1F3E3",
- "non_qualified": null,
- "docomo": "E665",
- "au": "E5DE",
- "softbank": "E153",
- "google": "FE4B3",
- "image": "1f3e3.png",
- "sheet_x": 11,
- "sheet_y": 41,
- "short_name": "post_office",
- "short_names": ["post_office"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 26,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "pig2": {
- "char": "\ud83d\udc16",
- "key": "pig2",
- "keywords": ["pig2", "PIG"],
- "category": "animals_and_nature",
- "lib": {
- "name": "PIG",
- "unified": "1F416",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f416.png",
- "sheet_x": 12,
- "sheet_y": 41,
- "short_name": "pig2",
- "short_names": ["pig2"],
- "text": null,
- "texts": null,
- "category": "Animals & Nature",
- "sort_order": 26,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "calling": {
- "char": "\ud83d\udcf2",
- "key": "calling",
- "keywords": ["calling", "MOBILE PHONE WITH RIGHTWARDS ARROW AT LEFT"],
- "category": "objects",
- "lib": {
- "name": "MOBILE PHONE WITH RIGHTWARDS ARROW AT LEFT",
- "unified": "1F4F2",
- "non_qualified": null,
- "docomo": "E6CE",
- "au": "EB08",
- "softbank": "E104",
- "google": "FE526",
- "image": "1f4f2.png",
- "sheet_x": 27,
- "sheet_y": 11,
- "short_name": "calling",
- "short_names": ["calling"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 26,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "expressionless": {
- "char": "\ud83d\ude11",
- "key": "expressionless",
- "keywords": ["expressionless", "EXPRESSIONLESS FACE"],
- "category": "people",
- "lib": {
- "name": "EXPRESSIONLESS FACE",
- "unified": "1F611",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f611.png",
- "sheet_x": 31,
- "sheet_y": 7,
- "short_name": "expressionless",
- "short_names": ["expressionless"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 26,
- "added_in": "6.1",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "second_place_medal": {
- "char": "\ud83e\udd48",
- "key": "second_place_medal",
- "keywords": ["second_place_medal", "SECOND PLACE MEDAL"],
- "category": "activity",
- "lib": {
- "name": "SECOND PLACE MEDAL",
- "unified": "1F948",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f948.png",
- "sheet_x": 41,
- "sheet_y": 52,
- "short_name": "second_place_medal",
- "short_names": ["second_place_medal"],
- "text": null,
- "texts": null,
- "category": "Activities",
- "sort_order": 26,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "broccoli": {
- "char": "\ud83e\udd66",
- "key": "broccoli",
- "keywords": ["broccoli", "BROCCOLI"],
- "category": "food_and_drink",
- "lib": {
- "name": "BROCCOLI",
- "unified": "1F966",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f966.png",
- "sheet_x": 42,
- "sheet_y": 29,
- "short_name": "broccoli",
- "short_names": ["broccoli"],
- "text": null,
- "texts": null,
- "category": "Food & Drink",
- "sort_order": 26,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "biohazard_sign": {
- "char": "\u2623\ufe0f",
- "key": "biohazard_sign",
- "keywords": ["biohazard_sign", ""],
- "category": "symbols",
- "lib": {
- "name": null,
- "unified": "2623-FE0F",
- "non_qualified": "2623",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "2623-fe0f.png",
- "sheet_x": 49,
- "sheet_y": 24,
- "short_name": "biohazard_sign",
- "short_names": ["biohazard_sign"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 26,
- "added_in": "1.1",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "flag-bd": {
- "char": "\ud83c\udde7\ud83c\udde9",
- "key": "flag-bd",
- "keywords": ["flag-bd", "Bangladesh Flag"],
- "category": "flags",
- "lib": {
- "name": "Bangladesh Flag",
- "unified": "1F1E7-1F1E9",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1e7-1f1e9.png",
- "sheet_x": 0,
- "sheet_y": 50,
- "short_name": "flag-bd",
- "short_names": ["flag-bd"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 27,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "mushroom": {
- "char": "\ud83c\udf44",
- "key": "mushroom",
- "keywords": ["mushroom", "MUSHROOM"],
- "category": "food_and_drink",
- "lib": {
- "name": "MUSHROOM",
- "unified": "1F344",
- "non_qualified": null,
- "docomo": null,
- "au": "EB37",
- "softbank": null,
- "google": "FE04B",
- "image": "1f344.png",
- "sheet_x": 6,
- "sheet_y": 52,
- "short_name": "mushroom",
- "short_names": ["mushroom"],
- "text": null,
- "texts": null,
- "category": "Food & Drink",
- "sort_order": 27,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "european_post_office": {
- "char": "\ud83c\udfe4",
- "key": "european_post_office",
- "keywords": ["european_post_office", "EUROPEAN POST OFFICE"],
- "category": "travel_and_places",
- "lib": {
- "name": "EUROPEAN POST OFFICE",
- "unified": "1F3E4",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f3e4.png",
- "sheet_x": 11,
- "sheet_y": 42,
- "short_name": "european_post_office",
- "short_names": ["european_post_office"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 27,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "boar": {
- "char": "\ud83d\udc17",
- "key": "boar",
- "keywords": ["boar", "BOAR"],
- "category": "animals_and_nature",
- "lib": {
- "name": "BOAR",
- "unified": "1F417",
- "non_qualified": null,
- "docomo": null,
- "au": "EB24",
- "softbank": "E52F",
- "google": "FE1D5",
- "image": "1f417.png",
- "sheet_x": 12,
- "sheet_y": 42,
- "short_name": "boar",
- "short_names": ["boar"],
- "text": null,
- "texts": null,
- "category": "Animals & Nature",
- "sort_order": 27,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "no_mouth": {
- "char": "\ud83d\ude36",
- "key": "no_mouth",
- "keywords": ["no_mouth", "FACE WITHOUT MOUTH"],
- "category": "people",
- "lib": {
- "name": "FACE WITHOUT MOUTH",
- "unified": "1F636",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f636.png",
- "sheet_x": 31,
- "sheet_y": 44,
- "short_name": "no_mouth",
- "short_names": ["no_mouth"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 27,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "third_place_medal": {
- "char": "\ud83e\udd49",
- "key": "third_place_medal",
- "keywords": ["third_place_medal", "THIRD PLACE MEDAL"],
- "category": "activity",
- "lib": {
- "name": "THIRD PLACE MEDAL",
- "unified": "1F949",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f949.png",
- "sheet_x": 42,
- "sheet_y": 0,
- "short_name": "third_place_medal",
- "short_names": ["third_place_medal"],
- "text": null,
- "texts": null,
- "category": "Activities",
- "sort_order": 27,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "phone": {
- "char": "\u260e\ufe0f",
- "key": "phone",
- "keywords": ["phone", "BLACK TELEPHONE"],
- "category": "objects",
- "lib": {
- "name": "BLACK TELEPHONE",
- "unified": "260E-FE0F",
- "non_qualified": "260E",
- "docomo": "E687",
- "au": "E596",
- "softbank": "E009",
- "google": "FE523",
- "image": "260e-fe0f.png",
- "sheet_x": 49,
- "sheet_y": 11,
- "short_name": "phone",
- "short_names": ["phone", "telephone"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 27,
- "added_in": "1.1",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "arrow_up": {
- "char": "\u2b06\ufe0f",
- "key": "arrow_up",
- "keywords": ["arrow_up", "UPWARDS BLACK ARROW"],
- "category": "symbols",
- "lib": {
- "name": "UPWARDS BLACK ARROW",
- "unified": "2B06-FE0F",
- "non_qualified": "2B06",
- "docomo": null,
- "au": "E53F",
- "softbank": "E232",
- "google": "FEAF8",
- "image": "2b06-fe0f.png",
- "sheet_x": 52,
- "sheet_y": 7,
- "short_name": "arrow_up",
- "short_names": ["arrow_up"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 27,
- "added_in": "4.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "flag-be": {
- "char": "\ud83c\udde7\ud83c\uddea",
- "key": "flag-be",
- "keywords": ["flag-be", "Belgium Flag"],
- "category": "flags",
- "lib": {
- "name": "Belgium Flag",
- "unified": "1F1E7-1F1EA",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1e7-1f1ea.png",
- "sheet_x": 0,
- "sheet_y": 51,
- "short_name": "flag-be",
- "short_names": ["flag-be"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 28,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "hospital": {
- "char": "\ud83c\udfe5",
- "key": "hospital",
- "keywords": ["hospital", "HOSPITAL"],
- "category": "travel_and_places",
- "lib": {
- "name": "HOSPITAL",
- "unified": "1F3E5",
- "non_qualified": null,
- "docomo": "E666",
- "au": "E5DF",
- "softbank": "E155",
- "google": "FE4B4",
- "image": "1f3e5.png",
- "sheet_x": 11,
- "sheet_y": 43,
- "short_name": "hospital",
- "short_names": ["hospital"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 28,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "pig_nose": {
- "char": "\ud83d\udc3d",
- "key": "pig_nose",
- "keywords": ["pig_nose", "PIG NOSE"],
- "category": "animals_and_nature",
- "lib": {
- "name": "PIG NOSE",
- "unified": "1F43D",
- "non_qualified": null,
- "docomo": "E755",
- "au": "EB48",
- "softbank": null,
- "google": "FE1E0",
- "image": "1f43d.png",
- "sheet_x": 13,
- "sheet_y": 27,
- "short_name": "pig_nose",
- "short_names": ["pig_nose"],
- "text": null,
- "texts": null,
- "category": "Animals & Nature",
- "sort_order": 28,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "telephone_receiver": {
- "char": "\ud83d\udcde",
- "key": "telephone_receiver",
- "keywords": ["telephone_receiver", "TELEPHONE RECEIVER"],
- "category": "objects",
- "lib": {
- "name": "TELEPHONE RECEIVER",
- "unified": "1F4DE",
- "non_qualified": null,
- "docomo": "E687",
- "au": "E51E",
- "softbank": null,
- "google": "FE524",
- "image": "1f4de.png",
- "sheet_x": 26,
- "sheet_y": 44,
- "short_name": "telephone_receiver",
- "short_names": ["telephone_receiver"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 28,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "face_with_rolling_eyes": {
- "char": "\ud83d\ude44",
- "key": "face_with_rolling_eyes",
- "keywords": ["face_with_rolling_eyes", "FACE WITH ROLLING EYES"],
- "category": "people",
- "lib": {
- "name": "FACE WITH ROLLING EYES",
- "unified": "1F644",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f644.png",
- "sheet_x": 32,
- "sheet_y": 5,
- "short_name": "face_with_rolling_eyes",
- "short_names": ["face_with_rolling_eyes"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 28,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "peanuts": {
- "char": "\ud83e\udd5c",
- "key": "peanuts",
- "keywords": ["peanuts", "PEANUTS"],
- "category": "food_and_drink",
- "lib": {
- "name": "PEANUTS",
- "unified": "1F95C",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f95c.png",
- "sheet_x": 42,
- "sheet_y": 19,
- "short_name": "peanuts",
- "short_names": ["peanuts"],
- "text": null,
- "texts": null,
- "category": "Food & Drink",
- "sort_order": 28,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "arrow_upper_right": {
- "char": "\u2197\ufe0f",
- "key": "arrow_upper_right",
- "keywords": ["arrow_upper_right", "NORTH EAST ARROW"],
- "category": "symbols",
- "lib": {
- "name": "NORTH EAST ARROW",
- "unified": "2197-FE0F",
- "non_qualified": "2197",
- "docomo": "E678",
- "au": "E555",
- "softbank": "E236",
- "google": "FEAF0",
- "image": "2197-fe0f.png",
- "sheet_x": 48,
- "sheet_y": 27,
- "short_name": "arrow_upper_right",
- "short_names": ["arrow_upper_right"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 28,
- "added_in": "1.1",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "soccer": {
- "char": "\u26bd",
- "key": "soccer",
- "keywords": ["soccer", "SOCCER BALL"],
- "category": "activity",
- "lib": {
- "name": "SOCCER BALL",
- "unified": "26BD",
- "non_qualified": null,
- "docomo": "E656",
- "au": "E4B6",
- "softbank": "E018",
- "google": "FE7D4",
- "image": "26bd.png",
- "sheet_x": 50,
- "sheet_y": 17,
- "short_name": "soccer",
- "short_names": ["soccer"],
- "text": null,
- "texts": null,
- "category": "Activities",
- "sort_order": 28,
- "added_in": "5.2",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "flag-bf": {
- "char": "\ud83c\udde7\ud83c\uddeb",
- "key": "flag-bf",
- "keywords": ["flag-bf", "Burkina Faso Flag"],
- "category": "flags",
- "lib": {
- "name": "Burkina Faso Flag",
- "unified": "1F1E7-1F1EB",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1e7-1f1eb.png",
- "sheet_x": 0,
- "sheet_y": 52,
- "short_name": "flag-bf",
- "short_names": ["flag-bf"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 29,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "chestnut": {
- "char": "\ud83c\udf30",
- "key": "chestnut",
- "keywords": ["chestnut", "CHESTNUT"],
- "category": "food_and_drink",
- "lib": {
- "name": "CHESTNUT",
- "unified": "1F330",
- "non_qualified": null,
- "docomo": null,
- "au": "EB38",
- "softbank": null,
- "google": "FE04C",
- "image": "1f330.png",
- "sheet_x": 6,
- "sheet_y": 32,
- "short_name": "chestnut",
- "short_names": ["chestnut"],
- "text": null,
- "texts": null,
- "category": "Food & Drink",
- "sort_order": 29,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "bank": {
- "char": "\ud83c\udfe6",
- "key": "bank",
- "keywords": ["bank", "BANK"],
- "category": "travel_and_places",
- "lib": {
- "name": "BANK",
- "unified": "1F3E6",
- "non_qualified": null,
- "docomo": "E667",
- "au": "E4AA",
- "softbank": "E14D",
- "google": "FE4B5",
- "image": "1f3e6.png",
- "sheet_x": 11,
- "sheet_y": 44,
- "short_name": "bank",
- "short_names": ["bank"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 29,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "ram": {
- "char": "\ud83d\udc0f",
- "key": "ram",
- "keywords": ["ram", "RAM"],
- "category": "animals_and_nature",
- "lib": {
- "name": "RAM",
- "unified": "1F40F",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f40f.png",
- "sheet_x": 12,
- "sheet_y": 34,
- "short_name": "ram",
- "short_names": ["ram"],
- "text": null,
- "texts": null,
- "category": "Animals & Nature",
- "sort_order": 29,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "pager": {
- "char": "\ud83d\udcdf",
- "key": "pager",
- "keywords": ["pager", "PAGER"],
- "category": "objects",
- "lib": {
- "name": "PAGER",
- "unified": "1F4DF",
- "non_qualified": null,
- "docomo": "E65A",
- "au": "E59B",
- "softbank": null,
- "google": "FE522",
- "image": "1f4df.png",
- "sheet_x": 26,
- "sheet_y": 45,
- "short_name": "pager",
- "short_names": ["pager"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 29,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "smirk": {
- "char": "\ud83d\ude0f",
- "key": "smirk",
- "keywords": ["smirk", "SMIRKING FACE"],
- "category": "people",
- "lib": {
- "name": "SMIRKING FACE",
- "unified": "1F60F",
- "non_qualified": null,
- "docomo": "E72C",
- "au": "EABF",
- "softbank": "E402",
- "google": "FE343",
- "image": "1f60f.png",
- "sheet_x": 31,
- "sheet_y": 5,
- "short_name": "smirk",
- "short_names": ["smirk"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 29,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "baseball": {
- "char": "\u26be",
- "key": "baseball",
- "keywords": ["baseball", "BASEBALL"],
- "category": "activity",
- "lib": {
- "name": "BASEBALL",
- "unified": "26BE",
- "non_qualified": null,
- "docomo": "E653",
- "au": "E4BA",
- "softbank": "E016",
- "google": "FE7D1",
- "image": "26be.png",
- "sheet_x": 50,
- "sheet_y": 18,
- "short_name": "baseball",
- "short_names": ["baseball"],
- "text": null,
- "texts": null,
- "category": "Activities",
- "sort_order": 29,
- "added_in": "5.2",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "arrow_right": {
- "char": "\u27a1\ufe0f",
- "key": "arrow_right",
- "keywords": ["arrow_right", "BLACK RIGHTWARDS ARROW"],
- "category": "symbols",
- "lib": {
- "name": "BLACK RIGHTWARDS ARROW",
- "unified": "27A1-FE0F",
- "non_qualified": "27A1",
- "docomo": null,
- "au": "E552",
- "softbank": "E234",
- "google": "FEAFA",
- "image": "27a1-fe0f.png",
- "sheet_x": 52,
- "sheet_y": 1,
- "short_name": "arrow_right",
- "short_names": ["arrow_right"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 29,
- "added_in": "1.1",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "flag-bg": {
- "char": "\ud83c\udde7\ud83c\uddec",
- "key": "flag-bg",
- "keywords": ["flag-bg", "Bulgaria Flag"],
- "category": "flags",
- "lib": {
- "name": "Bulgaria Flag",
- "unified": "1F1E7-1F1EC",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1e7-1f1ec.png",
- "sheet_x": 1,
- "sheet_y": 0,
- "short_name": "flag-bg",
- "short_names": ["flag-bg"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 30,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "bread": {
- "char": "\ud83c\udf5e",
- "key": "bread",
- "keywords": ["bread", "BREAD"],
- "category": "food_and_drink",
- "lib": {
- "name": "BREAD",
- "unified": "1F35E",
- "non_qualified": null,
- "docomo": "E74D",
- "au": "EAAF",
- "softbank": "E339",
- "google": "FE964",
- "image": "1f35e.png",
- "sheet_x": 7,
- "sheet_y": 25,
- "short_name": "bread",
- "short_names": ["bread"],
- "text": null,
- "texts": null,
- "category": "Food & Drink",
- "sort_order": 30,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "hotel": {
- "char": "\ud83c\udfe8",
- "key": "hotel",
- "keywords": ["hotel", "HOTEL"],
- "category": "travel_and_places",
- "lib": {
- "name": "HOTEL",
- "unified": "1F3E8",
- "non_qualified": null,
- "docomo": "E669",
- "au": "EA81",
- "softbank": "E158",
- "google": "FE4B7",
- "image": "1f3e8.png",
- "sheet_x": 11,
- "sheet_y": 46,
- "short_name": "hotel",
- "short_names": ["hotel"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 30,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "sheep": {
- "char": "\ud83d\udc11",
- "key": "sheep",
- "keywords": ["sheep", "SHEEP"],
- "category": "animals_and_nature",
- "lib": {
- "name": "SHEEP",
- "unified": "1F411",
- "non_qualified": null,
- "docomo": null,
- "au": "E48F",
- "softbank": "E529",
- "google": "FE1CF",
- "image": "1f411.png",
- "sheet_x": 12,
- "sheet_y": 36,
- "short_name": "sheep",
- "short_names": ["sheep"],
- "text": null,
- "texts": null,
- "category": "Animals & Nature",
- "sort_order": 30,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "fax": {
- "char": "\ud83d\udce0",
- "key": "fax",
- "keywords": ["fax", "FAX MACHINE"],
- "category": "objects",
- "lib": {
- "name": "FAX MACHINE",
- "unified": "1F4E0",
- "non_qualified": null,
- "docomo": "E6D0",
- "au": "E520",
- "softbank": "E00B",
- "google": "FE528",
- "image": "1f4e0.png",
- "sheet_x": 26,
- "sheet_y": 46,
- "short_name": "fax",
- "short_names": ["fax"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 30,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "persevere": {
- "char": "\ud83d\ude23",
- "key": "persevere",
- "keywords": ["persevere", "PERSEVERING FACE"],
- "category": "people",
- "lib": {
- "name": "PERSEVERING FACE",
- "unified": "1F623",
- "non_qualified": null,
- "docomo": "E72B",
- "au": "EAC2",
- "softbank": "E406",
- "google": "FE33C",
- "image": "1f623.png",
- "sheet_x": 31,
- "sheet_y": 25,
- "short_name": "persevere",
- "short_names": ["persevere"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 30,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "softball": {
- "char": "\ud83e\udd4e",
- "key": "softball",
- "keywords": ["softball", "SOFTBALL"],
- "category": "activity",
- "lib": {
- "name": "SOFTBALL",
- "unified": "1F94E",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f94e.png",
- "sheet_x": 42,
- "sheet_y": 5,
- "short_name": "softball",
- "short_names": ["softball"],
- "text": null,
- "texts": null,
- "category": "Activities",
- "sort_order": 30,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- },
- "arrow_lower_right": {
- "char": "\u2198\ufe0f",
- "key": "arrow_lower_right",
- "keywords": ["arrow_lower_right", "SOUTH EAST ARROW"],
- "category": "symbols",
- "lib": {
- "name": "SOUTH EAST ARROW",
- "unified": "2198-FE0F",
- "non_qualified": "2198",
- "docomo": "E696",
- "au": "E54D",
- "softbank": "E238",
- "google": "FEAF1",
- "image": "2198-fe0f.png",
- "sheet_x": 48,
- "sheet_y": 28,
- "short_name": "arrow_lower_right",
- "short_names": ["arrow_lower_right"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 30,
- "added_in": "1.1",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "flag-bh": {
- "char": "\ud83c\udde7\ud83c\udded",
- "key": "flag-bh",
- "keywords": ["flag-bh", "Bahrain Flag"],
- "category": "flags",
- "lib": {
- "name": "Bahrain Flag",
- "unified": "1F1E7-1F1ED",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1e7-1f1ed.png",
- "sheet_x": 1,
- "sheet_y": 1,
- "short_name": "flag-bh",
- "short_names": ["flag-bh"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 31,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "basketball": {
- "char": "\ud83c\udfc0",
- "key": "basketball",
- "keywords": ["basketball", "BASKETBALL AND HOOP"],
- "category": "activity",
- "lib": {
- "name": "BASKETBALL AND HOOP",
- "unified": "1F3C0",
- "non_qualified": null,
- "docomo": "E658",
- "au": "E59A",
- "softbank": "E42A",
- "google": "FE7D6",
- "image": "1f3c0.png",
- "sheet_x": 9,
- "sheet_y": 17,
- "short_name": "basketball",
- "short_names": ["basketball"],
- "text": null,
- "texts": null,
- "category": "Activities",
- "sort_order": 31,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "love_hotel": {
- "char": "\ud83c\udfe9",
- "key": "love_hotel",
- "keywords": ["love_hotel", "LOVE HOTEL"],
- "category": "travel_and_places",
- "lib": {
- "name": "LOVE HOTEL",
- "unified": "1F3E9",
- "non_qualified": null,
- "docomo": "E669-E6EF",
- "au": "EAF3",
- "softbank": "E501",
- "google": "FE4B8",
- "image": "1f3e9.png",
- "sheet_x": 11,
- "sheet_y": 47,
- "short_name": "love_hotel",
- "short_names": ["love_hotel"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 31,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "goat": {
- "char": "\ud83d\udc10",
- "key": "goat",
- "keywords": ["goat", "GOAT"],
- "category": "animals_and_nature",
- "lib": {
- "name": "GOAT",
- "unified": "1F410",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f410.png",
- "sheet_x": 12,
- "sheet_y": 35,
- "short_name": "goat",
- "short_names": ["goat"],
- "text": null,
- "texts": null,
- "category": "Animals & Nature",
- "sort_order": 31,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "battery": {
- "char": "\ud83d\udd0b",
- "key": "battery",
- "keywords": ["battery", "BATTERY"],
- "category": "objects",
- "lib": {
- "name": "BATTERY",
- "unified": "1F50B",
- "non_qualified": null,
- "docomo": null,
- "au": "E584",
- "softbank": null,
- "google": "FE4FC",
- "image": "1f50b.png",
- "sheet_x": 27,
- "sheet_y": 35,
- "short_name": "battery",
- "short_names": ["battery"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 31,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "disappointed_relieved": {
- "char": "\ud83d\ude25",
- "key": "disappointed_relieved",
- "keywords": ["disappointed_relieved", "DISAPPOINTED BUT RELIEVED FACE"],
- "category": "people",
- "lib": {
- "name": "DISAPPOINTED BUT RELIEVED FACE",
- "unified": "1F625",
- "non_qualified": null,
- "docomo": "E723",
- "au": "E5C6",
- "softbank": "E401",
- "google": "FE345",
- "image": "1f625.png",
- "sheet_x": 31,
- "sheet_y": 27,
- "short_name": "disappointed_relieved",
- "short_names": ["disappointed_relieved"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 31,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "croissant": {
- "char": "\ud83e\udd50",
- "key": "croissant",
- "keywords": ["croissant", "CROISSANT"],
- "category": "food_and_drink",
- "lib": {
- "name": "CROISSANT",
- "unified": "1F950",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f950.png",
- "sheet_x": 42,
- "sheet_y": 7,
- "short_name": "croissant",
- "short_names": ["croissant"],
- "text": null,
- "texts": null,
- "category": "Food & Drink",
- "sort_order": 31,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "arrow_down": {
- "char": "\u2b07\ufe0f",
- "key": "arrow_down",
- "keywords": ["arrow_down", "DOWNWARDS BLACK ARROW"],
- "category": "symbols",
- "lib": {
- "name": "DOWNWARDS BLACK ARROW",
- "unified": "2B07-FE0F",
- "non_qualified": "2B07",
- "docomo": null,
- "au": "E540",
- "softbank": "E233",
- "google": "FEAF9",
- "image": "2b07-fe0f.png",
- "sheet_x": 52,
- "sheet_y": 8,
- "short_name": "arrow_down",
- "short_names": ["arrow_down"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 31,
- "added_in": "4.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "flag-bi": {
- "char": "\ud83c\udde7\ud83c\uddee",
- "key": "flag-bi",
- "keywords": ["flag-bi", "Burundi Flag"],
- "category": "flags",
- "lib": {
- "name": "Burundi Flag",
- "unified": "1F1E7-1F1EE",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1e7-1f1ee.png",
- "sheet_x": 1,
- "sheet_y": 2,
- "short_name": "flag-bi",
- "short_names": ["flag-bi"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 32,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "volleyball": {
- "char": "\ud83c\udfd0",
- "key": "volleyball",
- "keywords": ["volleyball", "VOLLEYBALL"],
- "category": "activity",
- "lib": {
- "name": "VOLLEYBALL",
- "unified": "1F3D0",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f3d0.png",
- "sheet_x": 11,
- "sheet_y": 22,
- "short_name": "volleyball",
- "short_names": ["volleyball"],
- "text": null,
- "texts": null,
- "category": "Activities",
- "sort_order": 32,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "convenience_store": {
- "char": "\ud83c\udfea",
- "key": "convenience_store",
- "keywords": ["convenience_store", "CONVENIENCE STORE"],
- "category": "travel_and_places",
- "lib": {
- "name": "CONVENIENCE STORE",
- "unified": "1F3EA",
- "non_qualified": null,
- "docomo": "E66A",
- "au": "E4A4",
- "softbank": "E156",
- "google": "FE4B9",
- "image": "1f3ea.png",
- "sheet_x": 11,
- "sheet_y": 48,
- "short_name": "convenience_store",
- "short_names": ["convenience_store"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 32,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "dromedary_camel": {
- "char": "\ud83d\udc2a",
- "key": "dromedary_camel",
- "keywords": ["dromedary_camel", "DROMEDARY CAMEL"],
- "category": "animals_and_nature",
- "lib": {
- "name": "DROMEDARY CAMEL",
- "unified": "1F42A",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f42a.png",
- "sheet_x": 13,
- "sheet_y": 8,
- "short_name": "dromedary_camel",
- "short_names": ["dromedary_camel"],
- "text": null,
- "texts": null,
- "category": "Animals & Nature",
- "sort_order": 32,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "electric_plug": {
- "char": "\ud83d\udd0c",
- "key": "electric_plug",
- "keywords": ["electric_plug", "ELECTRIC PLUG"],
- "category": "objects",
- "lib": {
- "name": "ELECTRIC PLUG",
- "unified": "1F50C",
- "non_qualified": null,
- "docomo": null,
- "au": "E589",
- "softbank": null,
- "google": "FE4FE",
- "image": "1f50c.png",
- "sheet_x": 27,
- "sheet_y": 36,
- "short_name": "electric_plug",
- "short_names": ["electric_plug"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 32,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "open_mouth": {
- "char": "\ud83d\ude2e",
- "key": "open_mouth",
- "keywords": ["open_mouth", "FACE WITH OPEN MOUTH"],
- "category": "people",
- "lib": {
- "name": "FACE WITH OPEN MOUTH",
- "unified": "1F62E",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f62e.png",
- "sheet_x": 31,
- "sheet_y": 36,
- "short_name": "open_mouth",
- "short_names": ["open_mouth"],
- "text": null,
- "texts": [":o", ":-o", ":O", ":-O"],
- "category": "Smileys & People",
- "sort_order": 32,
- "added_in": "6.1",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "baguette_bread": {
- "char": "\ud83e\udd56",
- "key": "baguette_bread",
- "keywords": ["baguette_bread", "BAGUETTE BREAD"],
- "category": "food_and_drink",
- "lib": {
- "name": "BAGUETTE BREAD",
- "unified": "1F956",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f956.png",
- "sheet_x": 42,
- "sheet_y": 13,
- "short_name": "baguette_bread",
- "short_names": ["baguette_bread"],
- "text": null,
- "texts": null,
- "category": "Food & Drink",
- "sort_order": 32,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "arrow_lower_left": {
- "char": "\u2199\ufe0f",
- "key": "arrow_lower_left",
- "keywords": ["arrow_lower_left", "SOUTH WEST ARROW"],
- "category": "symbols",
- "lib": {
- "name": "SOUTH WEST ARROW",
- "unified": "2199-FE0F",
- "non_qualified": "2199",
- "docomo": "E6A5",
- "au": "E556",
- "softbank": "E239",
- "google": "FEAF3",
- "image": "2199-fe0f.png",
- "sheet_x": 48,
- "sheet_y": 29,
- "short_name": "arrow_lower_left",
- "short_names": ["arrow_lower_left"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 32,
- "added_in": "1.1",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "flag-bj": {
- "char": "\ud83c\udde7\ud83c\uddef",
- "key": "flag-bj",
- "keywords": ["flag-bj", "Benin Flag"],
- "category": "flags",
- "lib": {
- "name": "Benin Flag",
- "unified": "1F1E7-1F1EF",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1e7-1f1ef.png",
- "sheet_x": 1,
- "sheet_y": 3,
- "short_name": "flag-bj",
- "short_names": ["flag-bj"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 33,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "football": {
- "char": "\ud83c\udfc8",
- "key": "football",
- "keywords": ["football", "AMERICAN FOOTBALL"],
- "category": "activity",
- "lib": {
- "name": "AMERICAN FOOTBALL",
- "unified": "1F3C8",
- "non_qualified": null,
- "docomo": null,
- "au": "E4BB",
- "softbank": "E42B",
- "google": "FE7DD",
- "image": "1f3c8.png",
- "sheet_x": 10,
- "sheet_y": 16,
- "short_name": "football",
- "short_names": ["football"],
- "text": null,
- "texts": null,
- "category": "Activities",
- "sort_order": 33,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "school": {
- "char": "\ud83c\udfeb",
- "key": "school",
- "keywords": ["school", "SCHOOL"],
- "category": "travel_and_places",
- "lib": {
- "name": "SCHOOL",
- "unified": "1F3EB",
- "non_qualified": null,
- "docomo": "E73E",
- "au": "EA80",
- "softbank": "E157",
- "google": "FE4BA",
- "image": "1f3eb.png",
- "sheet_x": 11,
- "sheet_y": 49,
- "short_name": "school",
- "short_names": ["school"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 33,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "camel": {
- "char": "\ud83d\udc2b",
- "key": "camel",
- "keywords": ["camel", "BACTRIAN CAMEL"],
- "category": "animals_and_nature",
- "lib": {
- "name": "BACTRIAN CAMEL",
- "unified": "1F42B",
- "non_qualified": null,
- "docomo": null,
- "au": "EB25",
- "softbank": "E530",
- "google": "FE1D6",
- "image": "1f42b.png",
- "sheet_x": 13,
- "sheet_y": 9,
- "short_name": "camel",
- "short_names": ["camel"],
- "text": null,
- "texts": null,
- "category": "Animals & Nature",
- "sort_order": 33,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "computer": {
- "char": "\ud83d\udcbb",
- "key": "computer",
- "keywords": ["computer", "PERSONAL COMPUTER"],
- "category": "objects",
- "lib": {
- "name": "PERSONAL COMPUTER",
- "unified": "1F4BB",
- "non_qualified": null,
- "docomo": "E716",
- "au": "E5B8",
- "softbank": "E00C",
- "google": "FE538",
- "image": "1f4bb.png",
- "sheet_x": 26,
- "sheet_y": 9,
- "short_name": "computer",
- "short_names": ["computer"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 33,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "zipper_mouth_face": {
- "char": "\ud83e\udd10",
- "key": "zipper_mouth_face",
- "keywords": ["zipper_mouth_face", "ZIPPER-MOUTH FACE"],
- "category": "people",
- "lib": {
- "name": "ZIPPER-MOUTH FACE",
- "unified": "1F910",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f910.png",
- "sheet_x": 37,
- "sheet_y": 37,
- "short_name": "zipper_mouth_face",
- "short_names": ["zipper_mouth_face"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 33,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "pretzel": {
- "char": "\ud83e\udd68",
- "key": "pretzel",
- "keywords": ["pretzel", "PRETZEL"],
- "category": "food_and_drink",
- "lib": {
- "name": "PRETZEL",
- "unified": "1F968",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f968.png",
- "sheet_x": 42,
- "sheet_y": 31,
- "short_name": "pretzel",
- "short_names": ["pretzel"],
- "text": null,
- "texts": null,
- "category": "Food & Drink",
- "sort_order": 33,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "arrow_left": {
- "char": "\u2b05\ufe0f",
- "key": "arrow_left",
- "keywords": ["arrow_left", "LEFTWARDS BLACK ARROW"],
- "category": "symbols",
- "lib": {
- "name": "LEFTWARDS BLACK ARROW",
- "unified": "2B05-FE0F",
- "non_qualified": "2B05",
- "docomo": null,
- "au": "E553",
- "softbank": "E235",
- "google": "FEAFB",
- "image": "2b05-fe0f.png",
- "sheet_x": 52,
- "sheet_y": 6,
- "short_name": "arrow_left",
- "short_names": ["arrow_left"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 33,
- "added_in": "4.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "flag-bl": {
- "char": "\ud83c\udde7\ud83c\uddf1",
- "key": "flag-bl",
- "keywords": ["flag-bl", "St. Barth\u00e9lemy Flag"],
- "category": "flags",
- "lib": {
- "name": "St. Barth\u00e9lemy Flag",
- "unified": "1F1E7-1F1F1",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1e7-1f1f1.png",
- "sheet_x": 1,
- "sheet_y": 4,
- "short_name": "flag-bl",
- "short_names": ["flag-bl"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 34,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": false,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "rugby_football": {
- "char": "\ud83c\udfc9",
- "key": "rugby_football",
- "keywords": ["rugby_football", "RUGBY FOOTBALL"],
- "category": "activity",
- "lib": {
- "name": "RUGBY FOOTBALL",
- "unified": "1F3C9",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f3c9.png",
- "sheet_x": 10,
- "sheet_y": 17,
- "short_name": "rugby_football",
- "short_names": ["rugby_football"],
- "text": null,
- "texts": null,
- "category": "Activities",
- "sort_order": 34,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "department_store": {
- "char": "\ud83c\udfec",
- "key": "department_store",
- "keywords": ["department_store", "DEPARTMENT STORE"],
- "category": "travel_and_places",
- "lib": {
- "name": "DEPARTMENT STORE",
- "unified": "1F3EC",
- "non_qualified": null,
- "docomo": null,
- "au": "EAF6",
- "softbank": "E504",
- "google": "FE4BD",
- "image": "1f3ec.png",
- "sheet_x": 11,
- "sheet_y": 50,
- "short_name": "department_store",
- "short_names": ["department_store"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 34,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "desktop_computer": {
- "char": "\ud83d\udda5\ufe0f",
- "key": "desktop_computer",
- "keywords": ["desktop_computer", ""],
- "category": "objects",
- "lib": {
- "name": null,
- "unified": "1F5A5-FE0F",
- "non_qualified": "1F5A5",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f5a5-fe0f.png",
- "sheet_x": 30,
- "sheet_y": 18,
- "short_name": "desktop_computer",
- "short_names": ["desktop_computer"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 34,
- "added_in": "7.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "hushed": {
- "char": "\ud83d\ude2f",
- "key": "hushed",
- "keywords": ["hushed", "HUSHED FACE"],
- "category": "people",
- "lib": {
- "name": "HUSHED FACE",
- "unified": "1F62F",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f62f.png",
- "sheet_x": 31,
- "sheet_y": 37,
- "short_name": "hushed",
- "short_names": ["hushed"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 34,
- "added_in": "6.1",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "bagel": {
- "char": "\ud83e\udd6f",
- "key": "bagel",
- "keywords": ["bagel", "BAGEL"],
- "category": "food_and_drink",
- "lib": {
- "name": "BAGEL",
- "unified": "1F96F",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f96f.png",
- "sheet_x": 42,
- "sheet_y": 38,
- "short_name": "bagel",
- "short_names": ["bagel"],
- "text": null,
- "texts": null,
- "category": "Food & Drink",
- "sort_order": 34,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- },
- "llama": {
- "char": "\ud83e\udd99",
- "key": "llama",
- "keywords": ["llama", "LLAMA"],
- "category": "animals_and_nature",
- "lib": {
- "name": "LLAMA",
- "unified": "1F999",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f999.png",
- "sheet_x": 43,
- "sheet_y": 21,
- "short_name": "llama",
- "short_names": ["llama"],
- "text": null,
- "texts": null,
- "category": "Animals & Nature",
- "sort_order": 34,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- },
- "arrow_upper_left": {
- "char": "\u2196\ufe0f",
- "key": "arrow_upper_left",
- "keywords": ["arrow_upper_left", "NORTH WEST ARROW"],
- "category": "symbols",
- "lib": {
- "name": "NORTH WEST ARROW",
- "unified": "2196-FE0F",
- "non_qualified": "2196",
- "docomo": "E697",
- "au": "E54C",
- "softbank": "E237",
- "google": "FEAF2",
- "image": "2196-fe0f.png",
- "sheet_x": 48,
- "sheet_y": 26,
- "short_name": "arrow_upper_left",
- "short_names": ["arrow_upper_left"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 34,
- "added_in": "1.1",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "flag-bm": {
- "char": "\ud83c\udde7\ud83c\uddf2",
- "key": "flag-bm",
- "keywords": ["flag-bm", "Bermuda Flag"],
- "category": "flags",
- "lib": {
- "name": "Bermuda Flag",
- "unified": "1F1E7-1F1F2",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1e7-1f1f2.png",
- "sheet_x": 1,
- "sheet_y": 5,
- "short_name": "flag-bm",
- "short_names": ["flag-bm"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 35,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "tennis": {
- "char": "\ud83c\udfbe",
- "key": "tennis",
- "keywords": ["tennis", "TENNIS RACQUET AND BALL"],
- "category": "activity",
- "lib": {
- "name": "TENNIS RACQUET AND BALL",
- "unified": "1F3BE",
- "non_qualified": null,
- "docomo": "E655",
- "au": "E4B7",
- "softbank": "E015",
- "google": "FE7D3",
- "image": "1f3be.png",
- "sheet_x": 9,
- "sheet_y": 15,
- "short_name": "tennis",
- "short_names": ["tennis"],
- "text": null,
- "texts": null,
- "category": "Activities",
- "sort_order": 35,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "factory": {
- "char": "\ud83c\udfed",
- "key": "factory",
- "keywords": ["factory", "FACTORY"],
- "category": "travel_and_places",
- "lib": {
- "name": "FACTORY",
- "unified": "1F3ED",
- "non_qualified": null,
- "docomo": null,
- "au": "EAF9",
- "softbank": "E508",
- "google": "FE4C0",
- "image": "1f3ed.png",
- "sheet_x": 11,
- "sheet_y": 51,
- "short_name": "factory",
- "short_names": ["factory"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 35,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "printer": {
- "char": "\ud83d\udda8\ufe0f",
- "key": "printer",
- "keywords": ["printer", ""],
- "category": "objects",
- "lib": {
- "name": null,
- "unified": "1F5A8-FE0F",
- "non_qualified": "1F5A8",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f5a8-fe0f.png",
- "sheet_x": 30,
- "sheet_y": 19,
- "short_name": "printer",
- "short_names": ["printer"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 35,
- "added_in": "7.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "sleepy": {
- "char": "\ud83d\ude2a",
- "key": "sleepy",
- "keywords": ["sleepy", "SLEEPY FACE"],
- "category": "people",
- "lib": {
- "name": "SLEEPY FACE",
- "unified": "1F62A",
- "non_qualified": null,
- "docomo": "E701",
- "au": "EAC4",
- "softbank": "E408",
- "google": "FE342",
- "image": "1f62a.png",
- "sheet_x": 31,
- "sheet_y": 32,
- "short_name": "sleepy",
- "short_names": ["sleepy"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 35,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "pancakes": {
- "char": "\ud83e\udd5e",
- "key": "pancakes",
- "keywords": ["pancakes", "PANCAKES"],
- "category": "food_and_drink",
- "lib": {
- "name": "PANCAKES",
- "unified": "1F95E",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f95e.png",
- "sheet_x": 42,
- "sheet_y": 21,
- "short_name": "pancakes",
- "short_names": ["pancakes"],
- "text": null,
- "texts": null,
- "category": "Food & Drink",
- "sort_order": 35,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "giraffe_face": {
- "char": "\ud83e\udd92",
- "key": "giraffe_face",
- "keywords": ["giraffe_face", "GIRAFFE FACE"],
- "category": "animals_and_nature",
- "lib": {
- "name": "GIRAFFE FACE",
- "unified": "1F992",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f992.png",
- "sheet_x": 43,
- "sheet_y": 14,
- "short_name": "giraffe_face",
- "short_names": ["giraffe_face"],
- "text": null,
- "texts": null,
- "category": "Animals & Nature",
- "sort_order": 35,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "arrow_up_down": {
- "char": "\u2195\ufe0f",
- "key": "arrow_up_down",
- "keywords": ["arrow_up_down", "UP DOWN ARROW"],
- "category": "symbols",
- "lib": {
- "name": "UP DOWN ARROW",
- "unified": "2195-FE0F",
- "non_qualified": "2195",
- "docomo": "E73D",
- "au": "EB7B",
- "softbank": null,
- "google": "FEAF7",
- "image": "2195-fe0f.png",
- "sheet_x": 48,
- "sheet_y": 25,
- "short_name": "arrow_up_down",
- "short_names": ["arrow_up_down"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 35,
- "added_in": "1.1",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "flag-bn": {
- "char": "\ud83c\udde7\ud83c\uddf3",
- "key": "flag-bn",
- "keywords": ["flag-bn", "Brunei Flag"],
- "category": "flags",
- "lib": {
- "name": "Brunei Flag",
- "unified": "1F1E7-1F1F3",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1e7-1f1f3.png",
- "sheet_x": 1,
- "sheet_y": 6,
- "short_name": "flag-bn",
- "short_names": ["flag-bn"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 36,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "japanese_castle": {
- "char": "\ud83c\udfef",
- "key": "japanese_castle",
- "keywords": ["japanese_castle", "JAPANESE CASTLE"],
- "category": "travel_and_places",
- "lib": {
- "name": "JAPANESE CASTLE",
- "unified": "1F3EF",
- "non_qualified": null,
- "docomo": null,
- "au": "EAF7",
- "softbank": "E505",
- "google": "FE4BE",
- "image": "1f3ef.png",
- "sheet_x": 12,
- "sheet_y": 0,
- "short_name": "japanese_castle",
- "short_names": ["japanese_castle"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 36,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "elephant": {
- "char": "\ud83d\udc18",
- "key": "elephant",
- "keywords": ["elephant", "ELEPHANT"],
- "category": "animals_and_nature",
- "lib": {
- "name": "ELEPHANT",
- "unified": "1F418",
- "non_qualified": null,
- "docomo": null,
- "au": "EB1F",
- "softbank": "E526",
- "google": "FE1CC",
- "image": "1f418.png",
- "sheet_x": 12,
- "sheet_y": 43,
- "short_name": "elephant",
- "short_names": ["elephant"],
- "text": null,
- "texts": null,
- "category": "Animals & Nature",
- "sort_order": 36,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "tired_face": {
- "char": "\ud83d\ude2b",
- "key": "tired_face",
- "keywords": ["tired_face", "TIRED FACE"],
- "category": "people",
- "lib": {
- "name": "TIRED FACE",
- "unified": "1F62B",
- "non_qualified": null,
- "docomo": "E72B",
- "au": "E474",
- "softbank": null,
- "google": "FE346",
- "image": "1f62b.png",
- "sheet_x": 31,
- "sheet_y": 33,
- "short_name": "tired_face",
- "short_names": ["tired_face"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 36,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "flying_disc": {
- "char": "\ud83e\udd4f",
- "key": "flying_disc",
- "keywords": ["flying_disc", "FLYING DISC"],
- "category": "activity",
- "lib": {
- "name": "FLYING DISC",
- "unified": "1F94F",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f94f.png",
- "sheet_x": 42,
- "sheet_y": 6,
- "short_name": "flying_disc",
- "short_names": ["flying_disc"],
- "text": null,
- "texts": null,
- "category": "Activities",
- "sort_order": 36,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- },
- "cheese_wedge": {
- "char": "\ud83e\uddc0",
- "key": "cheese_wedge",
- "keywords": ["cheese_wedge", "CHEESE WEDGE"],
- "category": "food_and_drink",
- "lib": {
- "name": "CHEESE WEDGE",
- "unified": "1F9C0",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f9c0.png",
- "sheet_x": 44,
- "sheet_y": 16,
- "short_name": "cheese_wedge",
- "short_names": ["cheese_wedge"],
- "text": null,
- "texts": null,
- "category": "Food & Drink",
- "sort_order": 36,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "left_right_arrow": {
- "char": "\u2194\ufe0f",
- "key": "left_right_arrow",
- "keywords": ["left_right_arrow", "LEFT RIGHT ARROW"],
- "category": "symbols",
- "lib": {
- "name": "LEFT RIGHT ARROW",
- "unified": "2194-FE0F",
- "non_qualified": "2194",
- "docomo": "E73C",
- "au": "EB7A",
- "softbank": null,
- "google": "FEAF6",
- "image": "2194-fe0f.png",
- "sheet_x": 48,
- "sheet_y": 24,
- "short_name": "left_right_arrow",
- "short_names": ["left_right_arrow"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 36,
- "added_in": "1.1",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "keyboard": {
- "char": "\u2328\ufe0f",
- "key": "keyboard",
- "keywords": ["keyboard", ""],
- "category": "objects",
- "lib": {
- "name": null,
- "unified": "2328-FE0F",
- "non_qualified": "2328",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "2328-fe0f.png",
- "sheet_x": 48,
- "sheet_y": 34,
- "short_name": "keyboard",
- "short_names": ["keyboard"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 36,
- "added_in": "1.1",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "flag-bo": {
- "char": "\ud83c\udde7\ud83c\uddf4",
- "key": "flag-bo",
- "keywords": ["flag-bo", "Bolivia Flag"],
- "category": "flags",
- "lib": {
- "name": "Bolivia Flag",
- "unified": "1F1E7-1F1F4",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1e7-1f1f4.png",
- "sheet_x": 1,
- "sheet_y": 7,
- "short_name": "flag-bo",
- "short_names": ["flag-bo"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 37,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "meat_on_bone": {
- "char": "\ud83c\udf56",
- "key": "meat_on_bone",
- "keywords": ["meat_on_bone", "MEAT ON BONE"],
- "category": "food_and_drink",
- "lib": {
- "name": "MEAT ON BONE",
- "unified": "1F356",
- "non_qualified": null,
- "docomo": null,
- "au": "E4C4",
- "softbank": null,
- "google": "FE972",
- "image": "1f356.png",
- "sheet_x": 7,
- "sheet_y": 17,
- "short_name": "meat_on_bone",
- "short_names": ["meat_on_bone"],
- "text": null,
- "texts": null,
- "category": "Food & Drink",
- "sort_order": 37,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "bowling": {
- "char": "\ud83c\udfb3",
- "key": "bowling",
- "keywords": ["bowling", "BOWLING"],
- "category": "activity",
- "lib": {
- "name": "BOWLING",
- "unified": "1F3B3",
- "non_qualified": null,
- "docomo": null,
- "au": "EB43",
- "softbank": null,
- "google": "FE810",
- "image": "1f3b3.png",
- "sheet_x": 9,
- "sheet_y": 4,
- "short_name": "bowling",
- "short_names": ["bowling"],
- "text": null,
- "texts": null,
- "category": "Activities",
- "sort_order": 37,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "european_castle": {
- "char": "\ud83c\udff0",
- "key": "european_castle",
- "keywords": ["european_castle", "EUROPEAN CASTLE"],
- "category": "travel_and_places",
- "lib": {
- "name": "EUROPEAN CASTLE",
- "unified": "1F3F0",
- "non_qualified": null,
- "docomo": null,
- "au": "EAF8",
- "softbank": "E506",
- "google": "FE4BF",
- "image": "1f3f0.png",
- "sheet_x": 12,
- "sheet_y": 1,
- "short_name": "european_castle",
- "short_names": ["european_castle"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 37,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "three_button_mouse": {
- "char": "\ud83d\uddb1\ufe0f",
- "key": "three_button_mouse",
- "keywords": ["three_button_mouse", ""],
- "category": "objects",
- "lib": {
- "name": null,
- "unified": "1F5B1-FE0F",
- "non_qualified": "1F5B1",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f5b1-fe0f.png",
- "sheet_x": 30,
- "sheet_y": 20,
- "short_name": "three_button_mouse",
- "short_names": ["three_button_mouse"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 37,
- "added_in": "7.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "sleeping": {
- "char": "\ud83d\ude34",
- "key": "sleeping",
- "keywords": ["sleeping", "SLEEPING FACE"],
- "category": "people",
- "lib": {
- "name": "SLEEPING FACE",
- "unified": "1F634",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f634.png",
- "sheet_x": 31,
- "sheet_y": 42,
- "short_name": "sleeping",
- "short_names": ["sleeping"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 37,
- "added_in": "6.1",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "rhinoceros": {
- "char": "\ud83e\udd8f",
- "key": "rhinoceros",
- "keywords": ["rhinoceros", "RHINOCEROS"],
- "category": "animals_and_nature",
- "lib": {
- "name": "RHINOCEROS",
- "unified": "1F98F",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f98f.png",
- "sheet_x": 43,
- "sheet_y": 11,
- "short_name": "rhinoceros",
- "short_names": ["rhinoceros"],
- "text": null,
- "texts": null,
- "category": "Animals & Nature",
- "sort_order": 37,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "leftwards_arrow_with_hook": {
- "char": "\u21a9\ufe0f",
- "key": "leftwards_arrow_with_hook",
- "keywords": ["leftwards_arrow_with_hook", "LEFTWARDS ARROW WITH HOOK"],
- "category": "symbols",
- "lib": {
- "name": "LEFTWARDS ARROW WITH HOOK",
- "unified": "21A9-FE0F",
- "non_qualified": "21A9",
- "docomo": "E6DA",
- "au": "E55D",
- "softbank": null,
- "google": "FEB83",
- "image": "21a9-fe0f.png",
- "sheet_x": 48,
- "sheet_y": 30,
- "short_name": "leftwards_arrow_with_hook",
- "short_names": ["leftwards_arrow_with_hook"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 37,
- "added_in": "1.1",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "flag-bq": {
- "char": "\ud83c\udde7\ud83c\uddf6",
- "key": "flag-bq",
- "keywords": ["flag-bq", "Caribbean Netherlands Flag"],
- "category": "flags",
- "lib": {
- "name": "Caribbean Netherlands Flag",
- "unified": "1F1E7-1F1F6",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1e7-1f1f6.png",
- "sheet_x": 1,
- "sheet_y": 8,
- "short_name": "flag-bq",
- "short_names": ["flag-bq"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 38,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": false,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "poultry_leg": {
- "char": "\ud83c\udf57",
- "key": "poultry_leg",
- "keywords": ["poultry_leg", "POULTRY LEG"],
- "category": "food_and_drink",
- "lib": {
- "name": "POULTRY LEG",
- "unified": "1F357",
- "non_qualified": null,
- "docomo": null,
- "au": "EB3C",
- "softbank": null,
- "google": "FE976",
- "image": "1f357.png",
- "sheet_x": 7,
- "sheet_y": 18,
- "short_name": "poultry_leg",
- "short_names": ["poultry_leg"],
- "text": null,
- "texts": null,
- "category": "Food & Drink",
- "sort_order": 38,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "cricket_bat_and_ball": {
- "char": "\ud83c\udfcf",
- "key": "cricket_bat_and_ball",
- "keywords": ["cricket_bat_and_ball", "CRICKET BAT AND BALL"],
- "category": "activity",
- "lib": {
- "name": "CRICKET BAT AND BALL",
- "unified": "1F3CF",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f3cf.png",
- "sheet_x": 11,
- "sheet_y": 21,
- "short_name": "cricket_bat_and_ball",
- "short_names": ["cricket_bat_and_ball"],
- "text": null,
- "texts": null,
- "category": "Activities",
- "sort_order": 38,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "wedding": {
- "char": "\ud83d\udc92",
- "key": "wedding",
- "keywords": ["wedding", "WEDDING"],
- "category": "travel_and_places",
- "lib": {
- "name": "WEDDING",
- "unified": "1F492",
- "non_qualified": null,
- "docomo": null,
- "au": "E5BB",
- "softbank": "E43D",
- "google": "FE82A",
- "image": "1f492.png",
- "sheet_x": 25,
- "sheet_y": 16,
- "short_name": "wedding",
- "short_names": ["wedding"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 38,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "trackball": {
- "char": "\ud83d\uddb2\ufe0f",
- "key": "trackball",
- "keywords": ["trackball", ""],
- "category": "objects",
- "lib": {
- "name": null,
- "unified": "1F5B2-FE0F",
- "non_qualified": "1F5B2",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f5b2-fe0f.png",
- "sheet_x": 30,
- "sheet_y": 21,
- "short_name": "trackball",
- "short_names": ["trackball"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 38,
- "added_in": "7.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "relieved": {
- "char": "\ud83d\ude0c",
- "key": "relieved",
- "keywords": ["relieved", "RELIEVED FACE"],
- "category": "people",
- "lib": {
- "name": "RELIEVED FACE",
- "unified": "1F60C",
- "non_qualified": null,
- "docomo": "E721",
- "au": "EAC5",
- "softbank": "E40A",
- "google": "FE33E",
- "image": "1f60c.png",
- "sheet_x": 31,
- "sheet_y": 2,
- "short_name": "relieved",
- "short_names": ["relieved"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 38,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "hippopotamus": {
- "char": "\ud83e\udd9b",
- "key": "hippopotamus",
- "keywords": ["hippopotamus", "HIPPOPOTAMUS"],
- "category": "animals_and_nature",
- "lib": {
- "name": "HIPPOPOTAMUS",
- "unified": "1F99B",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f99b.png",
- "sheet_x": 43,
- "sheet_y": 23,
- "short_name": "hippopotamus",
- "short_names": ["hippopotamus"],
- "text": null,
- "texts": null,
- "category": "Animals & Nature",
- "sort_order": 38,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- },
- "arrow_right_hook": {
- "char": "\u21aa\ufe0f",
- "key": "arrow_right_hook",
- "keywords": ["arrow_right_hook", "RIGHTWARDS ARROW WITH HOOK"],
- "category": "symbols",
- "lib": {
- "name": "RIGHTWARDS ARROW WITH HOOK",
- "unified": "21AA-FE0F",
- "non_qualified": "21AA",
- "docomo": null,
- "au": "E55C",
- "softbank": null,
- "google": "FEB88",
- "image": "21aa-fe0f.png",
- "sheet_x": 48,
- "sheet_y": 31,
- "short_name": "arrow_right_hook",
- "short_names": ["arrow_right_hook"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 38,
- "added_in": "1.1",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "flag-br": {
- "char": "\ud83c\udde7\ud83c\uddf7",
- "key": "flag-br",
- "keywords": ["flag-br", "Brazil Flag"],
- "category": "flags",
- "lib": {
- "name": "Brazil Flag",
- "unified": "1F1E7-1F1F7",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1e7-1f1f7.png",
- "sheet_x": 1,
- "sheet_y": 9,
- "short_name": "flag-br",
- "short_names": ["flag-br"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 39,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "field_hockey_stick_and_ball": {
- "char": "\ud83c\udfd1",
- "key": "field_hockey_stick_and_ball",
- "keywords": ["field_hockey_stick_and_ball", "FIELD HOCKEY STICK AND BALL"],
- "category": "activity",
- "lib": {
- "name": "FIELD HOCKEY STICK AND BALL",
- "unified": "1F3D1",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f3d1.png",
- "sheet_x": 11,
- "sheet_y": 23,
- "short_name": "field_hockey_stick_and_ball",
- "short_names": ["field_hockey_stick_and_ball"],
- "text": null,
- "texts": null,
- "category": "Activities",
- "sort_order": 39,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "mouse": {
- "char": "\ud83d\udc2d",
- "key": "mouse",
- "keywords": ["mouse", "MOUSE FACE"],
- "category": "animals_and_nature",
- "lib": {
- "name": "MOUSE FACE",
- "unified": "1F42D",
- "non_qualified": null,
- "docomo": null,
- "au": "E5C2",
- "softbank": "E053",
- "google": "FE1C2",
- "image": "1f42d.png",
- "sheet_x": 13,
- "sheet_y": 11,
- "short_name": "mouse",
- "short_names": ["mouse"],
- "text": null,
- "texts": null,
- "category": "Animals & Nature",
- "sort_order": 39,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "minidisc": {
- "char": "\ud83d\udcbd",
- "key": "minidisc",
- "keywords": ["minidisc", "MINIDISC"],
- "category": "objects",
- "lib": {
- "name": "MINIDISC",
- "unified": "1F4BD",
- "non_qualified": null,
- "docomo": null,
- "au": "E582",
- "softbank": "E316",
- "google": "FE53C",
- "image": "1f4bd.png",
- "sheet_x": 26,
- "sheet_y": 11,
- "short_name": "minidisc",
- "short_names": ["minidisc"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 39,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "tokyo_tower": {
- "char": "\ud83d\uddfc",
- "key": "tokyo_tower",
- "keywords": ["tokyo_tower", "TOKYO TOWER"],
- "category": "travel_and_places",
- "lib": {
- "name": "TOKYO TOWER",
- "unified": "1F5FC",
- "non_qualified": null,
- "docomo": null,
- "au": "E4C0",
- "softbank": "E509",
- "google": "FE4C4",
- "image": "1f5fc.png",
- "sheet_x": 30,
- "sheet_y": 39,
- "short_name": "tokyo_tower",
- "short_names": ["tokyo_tower"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 39,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "stuck_out_tongue": {
- "char": "\ud83d\ude1b",
- "key": "stuck_out_tongue",
- "keywords": ["stuck_out_tongue", "FACE WITH STUCK-OUT TONGUE"],
- "category": "people",
- "lib": {
- "name": "FACE WITH STUCK-OUT TONGUE",
- "unified": "1F61B",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f61b.png",
- "sheet_x": 31,
- "sheet_y": 17,
- "short_name": "stuck_out_tongue",
- "short_names": ["stuck_out_tongue"],
- "text": ":p",
- "texts": [":p", ":-p", ":P", ":-P", ":b", ":-b"],
- "category": "Smileys & People",
- "sort_order": 39,
- "added_in": "6.1",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "cut_of_meat": {
- "char": "\ud83e\udd69",
- "key": "cut_of_meat",
- "keywords": ["cut_of_meat", "CUT OF MEAT"],
- "category": "food_and_drink",
- "lib": {
- "name": "CUT OF MEAT",
- "unified": "1F969",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f969.png",
- "sheet_x": 42,
- "sheet_y": 32,
- "short_name": "cut_of_meat",
- "short_names": ["cut_of_meat"],
- "text": null,
- "texts": null,
- "category": "Food & Drink",
- "sort_order": 39,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "arrow_heading_up": {
- "char": "\u2934\ufe0f",
- "key": "arrow_heading_up",
- "keywords": ["arrow_heading_up", "ARROW POINTING RIGHTWARDS THEN CURVING UPWARDS"],
- "category": "symbols",
- "lib": {
- "name": "ARROW POINTING RIGHTWARDS THEN CURVING UPWARDS",
- "unified": "2934-FE0F",
- "non_qualified": "2934",
- "docomo": "E6F5",
- "au": "EB2D",
- "softbank": null,
- "google": "FEAF4",
- "image": "2934-fe0f.png",
- "sheet_x": 52,
- "sheet_y": 4,
- "short_name": "arrow_heading_up",
- "short_names": ["arrow_heading_up"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 39,
- "added_in": "3.2",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "flag-bs": {
- "char": "\ud83c\udde7\ud83c\uddf8",
- "key": "flag-bs",
- "keywords": ["flag-bs", "Bahamas Flag"],
- "category": "flags",
- "lib": {
- "name": "Bahamas Flag",
- "unified": "1F1E7-1F1F8",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1e7-1f1f8.png",
- "sheet_x": 1,
- "sheet_y": 10,
- "short_name": "flag-bs",
- "short_names": ["flag-bs"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 40,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "ice_hockey_stick_and_puck": {
- "char": "\ud83c\udfd2",
- "key": "ice_hockey_stick_and_puck",
- "keywords": ["ice_hockey_stick_and_puck", "ICE HOCKEY STICK AND PUCK"],
- "category": "activity",
- "lib": {
- "name": "ICE HOCKEY STICK AND PUCK",
- "unified": "1F3D2",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f3d2.png",
- "sheet_x": 11,
- "sheet_y": 24,
- "short_name": "ice_hockey_stick_and_puck",
- "short_names": ["ice_hockey_stick_and_puck"],
- "text": null,
- "texts": null,
- "category": "Activities",
- "sort_order": 40,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "mouse2": {
- "char": "\ud83d\udc01",
- "key": "mouse2",
- "keywords": ["mouse2", "MOUSE"],
- "category": "animals_and_nature",
- "lib": {
- "name": "MOUSE",
- "unified": "1F401",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f401.png",
- "sheet_x": 12,
- "sheet_y": 20,
- "short_name": "mouse2",
- "short_names": ["mouse2"],
- "text": null,
- "texts": null,
- "category": "Animals & Nature",
- "sort_order": 40,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "floppy_disk": {
- "char": "\ud83d\udcbe",
- "key": "floppy_disk",
- "keywords": ["floppy_disk", "FLOPPY DISK"],
- "category": "objects",
- "lib": {
- "name": "FLOPPY DISK",
- "unified": "1F4BE",
- "non_qualified": null,
- "docomo": null,
- "au": "E562",
- "softbank": null,
- "google": "FE53D",
- "image": "1f4be.png",
- "sheet_x": 26,
- "sheet_y": 12,
- "short_name": "floppy_disk",
- "short_names": ["floppy_disk"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 40,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "statue_of_liberty": {
- "char": "\ud83d\uddfd",
- "key": "statue_of_liberty",
- "keywords": ["statue_of_liberty", "STATUE OF LIBERTY"],
- "category": "travel_and_places",
- "lib": {
- "name": "STATUE OF LIBERTY",
- "unified": "1F5FD",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": "E51D",
- "google": "FE4C6",
- "image": "1f5fd.png",
- "sheet_x": 30,
- "sheet_y": 40,
- "short_name": "statue_of_liberty",
- "short_names": ["statue_of_liberty"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 40,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "stuck_out_tongue_winking_eye": {
- "char": "\ud83d\ude1c",
- "key": "stuck_out_tongue_winking_eye",
- "keywords": ["stuck_out_tongue_winking_eye", "FACE WITH STUCK-OUT TONGUE AND WINKING EYE"],
- "category": "people",
- "lib": {
- "name": "FACE WITH STUCK-OUT TONGUE AND WINKING EYE",
- "unified": "1F61C",
- "non_qualified": null,
- "docomo": "E728",
- "au": "E4E7",
- "softbank": "E105",
- "google": "FE329",
- "image": "1f61c.png",
- "sheet_x": 31,
- "sheet_y": 18,
- "short_name": "stuck_out_tongue_winking_eye",
- "short_names": ["stuck_out_tongue_winking_eye"],
- "text": ";p",
- "texts": [";p", ";-p", ";b", ";-b", ";P", ";-P"],
- "category": "Smileys & People",
- "sort_order": 40,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "bacon": {
- "char": "\ud83e\udd53",
- "key": "bacon",
- "keywords": ["bacon", "BACON"],
- "category": "food_and_drink",
- "lib": {
- "name": "BACON",
- "unified": "1F953",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f953.png",
- "sheet_x": 42,
- "sheet_y": 10,
- "short_name": "bacon",
- "short_names": ["bacon"],
- "text": null,
- "texts": null,
- "category": "Food & Drink",
- "sort_order": 40,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "arrow_heading_down": {
- "char": "\u2935\ufe0f",
- "key": "arrow_heading_down",
- "keywords": ["arrow_heading_down", "ARROW POINTING RIGHTWARDS THEN CURVING DOWNWARDS"],
- "category": "symbols",
- "lib": {
- "name": "ARROW POINTING RIGHTWARDS THEN CURVING DOWNWARDS",
- "unified": "2935-FE0F",
- "non_qualified": "2935",
- "docomo": "E700",
- "au": "EB2E",
- "softbank": null,
- "google": "FEAF5",
- "image": "2935-fe0f.png",
- "sheet_x": 52,
- "sheet_y": 5,
- "short_name": "arrow_heading_down",
- "short_names": ["arrow_heading_down"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 40,
- "added_in": "3.2",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "flag-bt": {
- "char": "\ud83c\udde7\ud83c\uddf9",
- "key": "flag-bt",
- "keywords": ["flag-bt", "Bhutan Flag"],
- "category": "flags",
- "lib": {
- "name": "Bhutan Flag",
- "unified": "1F1E7-1F1F9",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1e7-1f1f9.png",
- "sheet_x": 1,
- "sheet_y": 11,
- "short_name": "flag-bt",
- "short_names": ["flag-bt"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 41,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "hamburger": {
- "char": "\ud83c\udf54",
- "key": "hamburger",
- "keywords": ["hamburger", "HAMBURGER"],
- "category": "food_and_drink",
- "lib": {
- "name": "HAMBURGER",
- "unified": "1F354",
- "non_qualified": null,
- "docomo": "E673",
- "au": "E4D6",
- "softbank": "E120",
- "google": "FE960",
- "image": "1f354.png",
- "sheet_x": 7,
- "sheet_y": 15,
- "short_name": "hamburger",
- "short_names": ["hamburger"],
- "text": null,
- "texts": null,
- "category": "Food & Drink",
- "sort_order": 41,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "rat": {
- "char": "\ud83d\udc00",
- "key": "rat",
- "keywords": ["rat", "RAT"],
- "category": "animals_and_nature",
- "lib": {
- "name": "RAT",
- "unified": "1F400",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f400.png",
- "sheet_x": 12,
- "sheet_y": 19,
- "short_name": "rat",
- "short_names": ["rat"],
- "text": null,
- "texts": null,
- "category": "Animals & Nature",
- "sort_order": 41,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "cd": {
- "char": "\ud83d\udcbf",
- "key": "cd",
- "keywords": ["cd", "OPTICAL DISC"],
- "category": "objects",
- "lib": {
- "name": "OPTICAL DISC",
- "unified": "1F4BF",
- "non_qualified": null,
- "docomo": "E68C",
- "au": "E50C",
- "softbank": "E126",
- "google": "FE81D",
- "image": "1f4bf.png",
- "sheet_x": 26,
- "sheet_y": 13,
- "short_name": "cd",
- "short_names": ["cd"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 41,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "arrows_clockwise": {
- "char": "\ud83d\udd03",
- "key": "arrows_clockwise",
- "keywords": ["arrows_clockwise", "CLOCKWISE DOWNWARDS AND UPWARDS OPEN CIRCLE ARROWS"],
- "category": "symbols",
- "lib": {
- "name": "CLOCKWISE DOWNWARDS AND UPWARDS OPEN CIRCLE ARROWS",
- "unified": "1F503",
- "non_qualified": null,
- "docomo": "E735",
- "au": "EB0D",
- "softbank": null,
- "google": "FEB91",
- "image": "1f503.png",
- "sheet_x": 27,
- "sheet_y": 27,
- "short_name": "arrows_clockwise",
- "short_names": ["arrows_clockwise"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 41,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "stuck_out_tongue_closed_eyes": {
- "char": "\ud83d\ude1d",
- "key": "stuck_out_tongue_closed_eyes",
- "keywords": ["stuck_out_tongue_closed_eyes", "FACE WITH STUCK-OUT TONGUE AND TIGHTLY-CLOSED EYES"],
- "category": "people",
- "lib": {
- "name": "FACE WITH STUCK-OUT TONGUE AND TIGHTLY-CLOSED EYES",
- "unified": "1F61D",
- "non_qualified": null,
- "docomo": "E728",
- "au": "E4E7",
- "softbank": "E409",
- "google": "FE32A",
- "image": "1f61d.png",
- "sheet_x": 31,
- "sheet_y": 19,
- "short_name": "stuck_out_tongue_closed_eyes",
- "short_names": ["stuck_out_tongue_closed_eyes"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 41,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "lacrosse": {
- "char": "\ud83e\udd4d",
- "key": "lacrosse",
- "keywords": ["lacrosse", "LACROSSE STICK AND BALL"],
- "category": "activity",
- "lib": {
- "name": "LACROSSE STICK AND BALL",
- "unified": "1F94D",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f94d.png",
- "sheet_x": 42,
- "sheet_y": 4,
- "short_name": "lacrosse",
- "short_names": ["lacrosse"],
- "text": null,
- "texts": null,
- "category": "Activities",
- "sort_order": 41,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- },
- "church": {
- "char": "\u26ea",
- "key": "church",
- "keywords": ["church", "CHURCH"],
- "category": "travel_and_places",
- "lib": {
- "name": "CHURCH",
- "unified": "26EA",
- "non_qualified": null,
- "docomo": null,
- "au": "E5BB",
- "softbank": "E037",
- "google": "FE4BB",
- "image": "26ea.png",
- "sheet_x": 50,
- "sheet_y": 28,
- "short_name": "church",
- "short_names": ["church"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 41,
- "added_in": "5.2",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "flag-bv": {
- "char": "\ud83c\udde7\ud83c\uddfb",
- "key": "flag-bv",
- "keywords": ["flag-bv", "Bouvet Island Flag"],
- "category": "flags",
- "lib": {
- "name": "Bouvet Island Flag",
- "unified": "1F1E7-1F1FB",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1e7-1f1fb.png",
- "sheet_x": 1,
- "sheet_y": 12,
- "short_name": "flag-bv",
- "short_names": ["flag-bv"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 42,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "fries": {
- "char": "\ud83c\udf5f",
- "key": "fries",
- "keywords": ["fries", "FRENCH FRIES"],
- "category": "food_and_drink",
- "lib": {
- "name": "FRENCH FRIES",
- "unified": "1F35F",
- "non_qualified": null,
- "docomo": null,
- "au": "EAB1",
- "softbank": "E33B",
- "google": "FE967",
- "image": "1f35f.png",
- "sheet_x": 7,
- "sheet_y": 26,
- "short_name": "fries",
- "short_names": ["fries"],
- "text": null,
- "texts": null,
- "category": "Food & Drink",
- "sort_order": 42,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "table_tennis_paddle_and_ball": {
- "char": "\ud83c\udfd3",
- "key": "table_tennis_paddle_and_ball",
- "keywords": ["table_tennis_paddle_and_ball", "TABLE TENNIS PADDLE AND BALL"],
- "category": "activity",
- "lib": {
- "name": "TABLE TENNIS PADDLE AND BALL",
- "unified": "1F3D3",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f3d3.png",
- "sheet_x": 11,
- "sheet_y": 25,
- "short_name": "table_tennis_paddle_and_ball",
- "short_names": ["table_tennis_paddle_and_ball"],
- "text": null,
- "texts": null,
- "category": "Activities",
- "sort_order": 42,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "hamster": {
- "char": "\ud83d\udc39",
- "key": "hamster",
- "keywords": ["hamster", "HAMSTER FACE"],
- "category": "animals_and_nature",
- "lib": {
- "name": "HAMSTER FACE",
- "unified": "1F439",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": "E524",
- "google": "FE1CA",
- "image": "1f439.png",
- "sheet_x": 13,
- "sheet_y": 23,
- "short_name": "hamster",
- "short_names": ["hamster"],
- "text": null,
- "texts": null,
- "category": "Animals & Nature",
- "sort_order": 42,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "dvd": {
- "char": "\ud83d\udcc0",
- "key": "dvd",
- "keywords": ["dvd", "DVD"],
- "category": "objects",
- "lib": {
- "name": "DVD",
- "unified": "1F4C0",
- "non_qualified": null,
- "docomo": "E68C",
- "au": "E50C",
- "softbank": "E127",
- "google": "FE81E",
- "image": "1f4c0.png",
- "sheet_x": 26,
- "sheet_y": 14,
- "short_name": "dvd",
- "short_names": ["dvd"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 42,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "arrows_counterclockwise": {
- "char": "\ud83d\udd04",
- "key": "arrows_counterclockwise",
- "keywords": ["arrows_counterclockwise", "ANTICLOCKWISE DOWNWARDS AND UPWARDS OPEN CIRCLE ARROWS"],
- "category": "symbols",
- "lib": {
- "name": "ANTICLOCKWISE DOWNWARDS AND UPWARDS OPEN CIRCLE ARROWS",
- "unified": "1F504",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f504.png",
- "sheet_x": 27,
- "sheet_y": 28,
- "short_name": "arrows_counterclockwise",
- "short_names": ["arrows_counterclockwise"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 42,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "mosque": {
- "char": "\ud83d\udd4c",
- "key": "mosque",
- "keywords": ["mosque", "MOSQUE"],
- "category": "travel_and_places",
- "lib": {
- "name": "MOSQUE",
- "unified": "1F54C",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f54c.png",
- "sheet_x": 28,
- "sheet_y": 36,
- "short_name": "mosque",
- "short_names": ["mosque"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 42,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "drooling_face": {
- "char": "\ud83e\udd24",
- "key": "drooling_face",
- "keywords": ["drooling_face", "DROOLING FACE"],
- "category": "people",
- "lib": {
- "name": "DROOLING FACE",
- "unified": "1F924",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f924.png",
- "sheet_x": 38,
- "sheet_y": 39,
- "short_name": "drooling_face",
- "short_names": ["drooling_face"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 42,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "flag-bw": {
- "char": "\ud83c\udde7\ud83c\uddfc",
- "key": "flag-bw",
- "keywords": ["flag-bw", "Botswana Flag"],
- "category": "flags",
- "lib": {
- "name": "Botswana Flag",
- "unified": "1F1E7-1F1FC",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1e7-1f1fc.png",
- "sheet_x": 1,
- "sheet_y": 13,
- "short_name": "flag-bw",
- "short_names": ["flag-bw"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 43,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "pizza": {
- "char": "\ud83c\udf55",
- "key": "pizza",
- "keywords": ["pizza", "SLICE OF PIZZA"],
- "category": "food_and_drink",
- "lib": {
- "name": "SLICE OF PIZZA",
- "unified": "1F355",
- "non_qualified": null,
- "docomo": null,
- "au": "EB3B",
- "softbank": null,
- "google": "FE975",
- "image": "1f355.png",
- "sheet_x": 7,
- "sheet_y": 16,
- "short_name": "pizza",
- "short_names": ["pizza"],
- "text": null,
- "texts": null,
- "category": "Food & Drink",
- "sort_order": 43,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "badminton_racquet_and_shuttlecock": {
- "char": "\ud83c\udff8",
- "key": "badminton_racquet_and_shuttlecock",
- "keywords": ["badminton_racquet_and_shuttlecock", "BADMINTON RACQUET AND SHUTTLECOCK"],
- "category": "activity",
- "lib": {
- "name": "BADMINTON RACQUET AND SHUTTLECOCK",
- "unified": "1F3F8",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f3f8.png",
- "sheet_x": 12,
- "sheet_y": 11,
- "short_name": "badminton_racquet_and_shuttlecock",
- "short_names": ["badminton_racquet_and_shuttlecock"],
- "text": null,
- "texts": null,
- "category": "Activities",
- "sort_order": 43,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "rabbit": {
- "char": "\ud83d\udc30",
- "key": "rabbit",
- "keywords": ["rabbit", "RABBIT FACE"],
- "category": "animals_and_nature",
- "lib": {
- "name": "RABBIT FACE",
- "unified": "1F430",
- "non_qualified": null,
- "docomo": null,
- "au": "E4D7",
- "softbank": "E52C",
- "google": "FE1D2",
- "image": "1f430.png",
- "sheet_x": 13,
- "sheet_y": 14,
- "short_name": "rabbit",
- "short_names": ["rabbit"],
- "text": null,
- "texts": null,
- "category": "Animals & Nature",
- "sort_order": 43,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "back": {
- "char": "\ud83d\udd19",
- "key": "back",
- "keywords": ["back", "BACK WITH LEFTWARDS ARROW ABOVE"],
- "category": "symbols",
- "lib": {
- "name": "BACK WITH LEFTWARDS ARROW ABOVE",
- "unified": "1F519",
- "non_qualified": null,
- "docomo": null,
- "au": "EB06",
- "softbank": null,
- "google": "FEB8E",
- "image": "1f519.png",
- "sheet_x": 27,
- "sheet_y": 49,
- "short_name": "back",
- "short_names": ["back"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 43,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "synagogue": {
- "char": "\ud83d\udd4d",
- "key": "synagogue",
- "keywords": ["synagogue", "SYNAGOGUE"],
- "category": "travel_and_places",
- "lib": {
- "name": "SYNAGOGUE",
- "unified": "1F54D",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f54d.png",
- "sheet_x": 28,
- "sheet_y": 37,
- "short_name": "synagogue",
- "short_names": ["synagogue"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 43,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "unamused": {
- "char": "\ud83d\ude12",
- "key": "unamused",
- "keywords": ["unamused", "UNAMUSED FACE"],
- "category": "people",
- "lib": {
- "name": "UNAMUSED FACE",
- "unified": "1F612",
- "non_qualified": null,
- "docomo": "E725",
- "au": "EAC9",
- "softbank": "E40E",
- "google": "FE326",
- "image": "1f612.png",
- "sheet_x": 31,
- "sheet_y": 8,
- "short_name": "unamused",
- "short_names": ["unamused"],
- "text": ":(",
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 43,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "abacus": {
- "char": "\ud83e\uddee",
- "key": "abacus",
- "keywords": ["abacus", "ABACUS"],
- "category": "objects",
- "lib": {
- "name": "ABACUS",
- "unified": "1F9EE",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f9ee.png",
- "sheet_x": 48,
- "sheet_y": 2,
- "short_name": "abacus",
- "short_names": ["abacus"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 43,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- },
- "flag-by": {
- "char": "\ud83c\udde7\ud83c\uddfe",
- "key": "flag-by",
- "keywords": ["flag-by", "Belarus Flag"],
- "category": "flags",
- "lib": {
- "name": "Belarus Flag",
- "unified": "1F1E7-1F1FE",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1e7-1f1fe.png",
- "sheet_x": 1,
- "sheet_y": 14,
- "short_name": "flag-by",
- "short_names": ["flag-by"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 44,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "hotdog": {
- "char": "\ud83c\udf2d",
- "key": "hotdog",
- "keywords": ["hotdog", "HOT DOG"],
- "category": "food_and_drink",
- "lib": {
- "name": "HOT DOG",
- "unified": "1F32D",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f32d.png",
- "sheet_x": 6,
- "sheet_y": 29,
- "short_name": "hotdog",
- "short_names": ["hotdog"],
- "text": null,
- "texts": null,
- "category": "Food & Drink",
- "sort_order": 44,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "movie_camera": {
- "char": "\ud83c\udfa5",
- "key": "movie_camera",
- "keywords": ["movie_camera", "MOVIE CAMERA"],
- "category": "objects",
- "lib": {
- "name": "MOVIE CAMERA",
- "unified": "1F3A5",
- "non_qualified": null,
- "docomo": "E677",
- "au": "E517",
- "softbank": "E03D",
- "google": "FE801",
- "image": "1f3a5.png",
- "sheet_x": 8,
- "sheet_y": 43,
- "short_name": "movie_camera",
- "short_names": ["movie_camera"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 44,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "rabbit2": {
- "char": "\ud83d\udc07",
- "key": "rabbit2",
- "keywords": ["rabbit2", "RABBIT"],
- "category": "animals_and_nature",
- "lib": {
- "name": "RABBIT",
- "unified": "1F407",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f407.png",
- "sheet_x": 12,
- "sheet_y": 26,
- "short_name": "rabbit2",
- "short_names": ["rabbit2"],
- "text": null,
- "texts": null,
- "category": "Animals & Nature",
- "sort_order": 44,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "end": {
- "char": "\ud83d\udd1a",
- "key": "end",
- "keywords": ["end", "END WITH LEFTWARDS ARROW ABOVE"],
- "category": "symbols",
- "lib": {
- "name": "END WITH LEFTWARDS ARROW ABOVE",
- "unified": "1F51A",
- "non_qualified": null,
- "docomo": "E6B9",
- "au": null,
- "softbank": null,
- "google": "FE01A",
- "image": "1f51a.png",
- "sheet_x": 27,
- "sheet_y": 50,
- "short_name": "end",
- "short_names": ["end"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 44,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "sweat": {
- "char": "\ud83d\ude13",
- "key": "sweat",
- "keywords": ["sweat", "FACE WITH COLD SWEAT"],
- "category": "people",
- "lib": {
- "name": "FACE WITH COLD SWEAT",
- "unified": "1F613",
- "non_qualified": null,
- "docomo": "E723",
- "au": "E5C6",
- "softbank": "E108",
- "google": "FE344",
- "image": "1f613.png",
- "sheet_x": 31,
- "sheet_y": 9,
- "short_name": "sweat",
- "short_names": ["sweat"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 44,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "boxing_glove": {
- "char": "\ud83e\udd4a",
- "key": "boxing_glove",
- "keywords": ["boxing_glove", "BOXING GLOVE"],
- "category": "activity",
- "lib": {
- "name": "BOXING GLOVE",
- "unified": "1F94A",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f94a.png",
- "sheet_x": 42,
- "sheet_y": 1,
- "short_name": "boxing_glove",
- "short_names": ["boxing_glove"],
- "text": null,
- "texts": null,
- "category": "Activities",
- "sort_order": 44,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "shinto_shrine": {
- "char": "\u26e9\ufe0f",
- "key": "shinto_shrine",
- "keywords": ["shinto_shrine", ""],
- "category": "travel_and_places",
- "lib": {
- "name": null,
- "unified": "26E9-FE0F",
- "non_qualified": "26E9",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "26e9-fe0f.png",
- "sheet_x": 50,
- "sheet_y": 27,
- "short_name": "shinto_shrine",
- "short_names": ["shinto_shrine"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 44,
- "added_in": "5.2",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "flag-bz": {
- "char": "\ud83c\udde7\ud83c\uddff",
- "key": "flag-bz",
- "keywords": ["flag-bz", "Belize Flag"],
- "category": "flags",
- "lib": {
- "name": "Belize Flag",
- "unified": "1F1E7-1F1FF",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1e7-1f1ff.png",
- "sheet_x": 1,
- "sheet_y": 15,
- "short_name": "flag-bz",
- "short_names": ["flag-bz"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 45,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "film_frames": {
- "char": "\ud83c\udf9e\ufe0f",
- "key": "film_frames",
- "keywords": ["film_frames", ""],
- "category": "objects",
- "lib": {
- "name": null,
- "unified": "1F39E-FE0F",
- "non_qualified": "1F39E",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f39e-fe0f.png",
- "sheet_x": 8,
- "sheet_y": 36,
- "short_name": "film_frames",
- "short_names": ["film_frames"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 45,
- "added_in": "7.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "chipmunk": {
- "char": "\ud83d\udc3f\ufe0f",
- "key": "chipmunk",
- "keywords": ["chipmunk", ""],
- "category": "animals_and_nature",
- "lib": {
- "name": null,
- "unified": "1F43F-FE0F",
- "non_qualified": "1F43F",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f43f-fe0f.png",
- "sheet_x": 13,
- "sheet_y": 29,
- "short_name": "chipmunk",
- "short_names": ["chipmunk"],
- "text": null,
- "texts": null,
- "category": "Animals & Nature",
- "sort_order": 45,
- "added_in": "7.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "on": {
- "char": "\ud83d\udd1b",
- "key": "on",
- "keywords": ["on", "ON WITH EXCLAMATION MARK WITH LEFT RIGHT ARROW ABOVE"],
- "category": "symbols",
- "lib": {
- "name": "ON WITH EXCLAMATION MARK WITH LEFT RIGHT ARROW ABOVE",
- "unified": "1F51B",
- "non_qualified": null,
- "docomo": "E6B8",
- "au": null,
- "softbank": null,
- "google": "FE019",
- "image": "1f51b.png",
- "sheet_x": 27,
- "sheet_y": 51,
- "short_name": "on",
- "short_names": ["on"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 45,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "kaaba": {
- "char": "\ud83d\udd4b",
- "key": "kaaba",
- "keywords": ["kaaba", "KAABA"],
- "category": "travel_and_places",
- "lib": {
- "name": "KAABA",
- "unified": "1F54B",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f54b.png",
- "sheet_x": 28,
- "sheet_y": 35,
- "short_name": "kaaba",
- "short_names": ["kaaba"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 45,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "pensive": {
- "char": "\ud83d\ude14",
- "key": "pensive",
- "keywords": ["pensive", "PENSIVE FACE"],
- "category": "people",
- "lib": {
- "name": "PENSIVE FACE",
- "unified": "1F614",
- "non_qualified": null,
- "docomo": "E720",
- "au": "EAC0",
- "softbank": "E403",
- "google": "FE340",
- "image": "1f614.png",
- "sheet_x": 31,
- "sheet_y": 10,
- "short_name": "pensive",
- "short_names": ["pensive"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 45,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "martial_arts_uniform": {
- "char": "\ud83e\udd4b",
- "key": "martial_arts_uniform",
- "keywords": ["martial_arts_uniform", "MARTIAL ARTS UNIFORM"],
- "category": "activity",
- "lib": {
- "name": "MARTIAL ARTS UNIFORM",
- "unified": "1F94B",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f94b.png",
- "sheet_x": 42,
- "sheet_y": 2,
- "short_name": "martial_arts_uniform",
- "short_names": ["martial_arts_uniform"],
- "text": null,
- "texts": null,
- "category": "Activities",
- "sort_order": 45,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "sandwich": {
- "char": "\ud83e\udd6a",
- "key": "sandwich",
- "keywords": ["sandwich", "SANDWICH"],
- "category": "food_and_drink",
- "lib": {
- "name": "SANDWICH",
- "unified": "1F96A",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f96a.png",
- "sheet_x": 42,
- "sheet_y": 33,
- "short_name": "sandwich",
- "short_names": ["sandwich"],
- "text": null,
- "texts": null,
- "category": "Food & Drink",
- "sort_order": 45,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "flag-ca": {
- "char": "\ud83c\udde8\ud83c\udde6",
- "key": "flag-ca",
- "keywords": ["flag-ca", "Canada Flag"],
- "category": "flags",
- "lib": {
- "name": "Canada Flag",
- "unified": "1F1E8-1F1E6",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1e8-1f1e6.png",
- "sheet_x": 1,
- "sheet_y": 16,
- "short_name": "flag-ca",
- "short_names": ["flag-ca"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 46,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "taco": {
- "char": "\ud83c\udf2e",
- "key": "taco",
- "keywords": ["taco", "TACO"],
- "category": "food_and_drink",
- "lib": {
- "name": "TACO",
- "unified": "1F32E",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f32e.png",
- "sheet_x": 6,
- "sheet_y": 30,
- "short_name": "taco",
- "short_names": ["taco"],
- "text": null,
- "texts": null,
- "category": "Food & Drink",
- "sort_order": 46,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "film_projector": {
- "char": "\ud83d\udcfd\ufe0f",
- "key": "film_projector",
- "keywords": ["film_projector", ""],
- "category": "objects",
- "lib": {
- "name": null,
- "unified": "1F4FD-FE0F",
- "non_qualified": "1F4FD",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f4fd-fe0f.png",
- "sheet_x": 27,
- "sheet_y": 22,
- "short_name": "film_projector",
- "short_names": ["film_projector"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 46,
- "added_in": "7.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "soon": {
- "char": "\ud83d\udd1c",
- "key": "soon",
- "keywords": ["soon", "SOON WITH RIGHTWARDS ARROW ABOVE"],
- "category": "symbols",
- "lib": {
- "name": "SOON WITH RIGHTWARDS ARROW ABOVE",
- "unified": "1F51C",
- "non_qualified": null,
- "docomo": "E6B7",
- "au": null,
- "softbank": null,
- "google": "FE018",
- "image": "1f51c.png",
- "sheet_x": 27,
- "sheet_y": 52,
- "short_name": "soon",
- "short_names": ["soon"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 46,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "confused": {
- "char": "\ud83d\ude15",
- "key": "confused",
- "keywords": ["confused", "CONFUSED FACE"],
- "category": "people",
- "lib": {
- "name": "CONFUSED FACE",
- "unified": "1F615",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f615.png",
- "sheet_x": 31,
- "sheet_y": 11,
- "short_name": "confused",
- "short_names": ["confused"],
- "text": null,
- "texts": [":\\", ":-\\", ":/", ":-/"],
- "category": "Smileys & People",
- "sort_order": 46,
- "added_in": "6.1",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "goal_net": {
- "char": "\ud83e\udd45",
- "key": "goal_net",
- "keywords": ["goal_net", "GOAL NET"],
- "category": "activity",
- "lib": {
- "name": "GOAL NET",
- "unified": "1F945",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f945.png",
- "sheet_x": 41,
- "sheet_y": 50,
- "short_name": "goal_net",
- "short_names": ["goal_net"],
- "text": null,
- "texts": null,
- "category": "Activities",
- "sort_order": 46,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "hedgehog": {
- "char": "\ud83e\udd94",
- "key": "hedgehog",
- "keywords": ["hedgehog", "HEDGEHOG"],
- "category": "animals_and_nature",
- "lib": {
- "name": "HEDGEHOG",
- "unified": "1F994",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f994.png",
- "sheet_x": 43,
- "sheet_y": 16,
- "short_name": "hedgehog",
- "short_names": ["hedgehog"],
- "text": null,
- "texts": null,
- "category": "Animals & Nature",
- "sort_order": 46,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "fountain": {
- "char": "\u26f2",
- "key": "fountain",
- "keywords": ["fountain", "FOUNTAIN"],
- "category": "travel_and_places",
- "lib": {
- "name": "FOUNTAIN",
- "unified": "26F2",
- "non_qualified": null,
- "docomo": null,
- "au": "E5CF",
- "softbank": "E121",
- "google": "FE4BC",
- "image": "26f2.png",
- "sheet_x": 50,
- "sheet_y": 31,
- "short_name": "fountain",
- "short_names": ["fountain"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 46,
- "added_in": "5.2",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "flag-cc": {
- "char": "\ud83c\udde8\ud83c\udde8",
- "key": "flag-cc",
- "keywords": ["flag-cc", "Cocos (Keeling) Islands Flag"],
- "category": "flags",
- "lib": {
- "name": "Cocos (Keeling) Islands Flag",
- "unified": "1F1E8-1F1E8",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1e8-1f1e8.png",
- "sheet_x": 1,
- "sheet_y": 17,
- "short_name": "flag-cc",
- "short_names": ["flag-cc"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 47,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "burrito": {
- "char": "\ud83c\udf2f",
- "key": "burrito",
- "keywords": ["burrito", "BURRITO"],
- "category": "food_and_drink",
- "lib": {
- "name": "BURRITO",
- "unified": "1F32F",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f32f.png",
- "sheet_x": 6,
- "sheet_y": 31,
- "short_name": "burrito",
- "short_names": ["burrito"],
- "text": null,
- "texts": null,
- "category": "Food & Drink",
- "sort_order": 47,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "clapper": {
- "char": "\ud83c\udfac",
- "key": "clapper",
- "keywords": ["clapper", "CLAPPER BOARD"],
- "category": "objects",
- "lib": {
- "name": "CLAPPER BOARD",
- "unified": "1F3AC",
- "non_qualified": null,
- "docomo": "E6AC",
- "au": "E4BE",
- "softbank": "E324",
- "google": "FE808",
- "image": "1f3ac.png",
- "sheet_x": 8,
- "sheet_y": 50,
- "short_name": "clapper",
- "short_names": ["clapper"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 47,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "top": {
- "char": "\ud83d\udd1d",
- "key": "top",
- "keywords": ["top", "TOP WITH UPWARDS ARROW ABOVE"],
- "category": "symbols",
- "lib": {
- "name": "TOP WITH UPWARDS ARROW ABOVE",
- "unified": "1F51D",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": "E24C",
- "google": "FEB42",
- "image": "1f51d.png",
- "sheet_x": 28,
- "sheet_y": 0,
- "short_name": "top",
- "short_names": ["top"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 47,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "upside_down_face": {
- "char": "\ud83d\ude43",
- "key": "upside_down_face",
- "keywords": ["upside_down_face", "UPSIDE-DOWN FACE"],
- "category": "people",
- "lib": {
- "name": "UPSIDE-DOWN FACE",
- "unified": "1F643",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f643.png",
- "sheet_x": 32,
- "sheet_y": 4,
- "short_name": "upside_down_face",
- "short_names": ["upside_down_face"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 47,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "bat": {
- "char": "\ud83e\udd87",
- "key": "bat",
- "keywords": ["bat", "BAT"],
- "category": "animals_and_nature",
- "lib": {
- "name": "BAT",
- "unified": "1F987",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f987.png",
- "sheet_x": 43,
- "sheet_y": 3,
- "short_name": "bat",
- "short_names": ["bat"],
- "text": null,
- "texts": null,
- "category": "Animals & Nature",
- "sort_order": 47,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "golf": {
- "char": "\u26f3",
- "key": "golf",
- "keywords": ["golf", "FLAG IN HOLE"],
- "category": "activity",
- "lib": {
- "name": "FLAG IN HOLE",
- "unified": "26F3",
- "non_qualified": null,
- "docomo": "E654",
- "au": "E599",
- "softbank": "E014",
- "google": "FE7D2",
- "image": "26f3.png",
- "sheet_x": 50,
- "sheet_y": 32,
- "short_name": "golf",
- "short_names": ["golf"],
- "text": null,
- "texts": null,
- "category": "Activities",
- "sort_order": 47,
- "added_in": "5.2",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "tent": {
- "char": "\u26fa",
- "key": "tent",
- "keywords": ["tent", "TENT"],
- "category": "travel_and_places",
- "lib": {
- "name": "TENT",
- "unified": "26FA",
- "non_qualified": null,
- "docomo": null,
- "au": "E5D0",
- "softbank": "E122",
- "google": "FE7FB",
- "image": "26fa.png",
- "sheet_x": 51,
- "sheet_y": 2,
- "short_name": "tent",
- "short_names": ["tent"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 47,
- "added_in": "5.2",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "flag-cd": {
- "char": "\ud83c\udde8\ud83c\udde9",
- "key": "flag-cd",
- "keywords": ["flag-cd", "Congo - Kinshasa Flag"],
- "category": "flags",
- "lib": {
- "name": "Congo - Kinshasa Flag",
- "unified": "1F1E8-1F1E9",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1e8-1f1e9.png",
- "sheet_x": 1,
- "sheet_y": 18,
- "short_name": "flag-cd",
- "short_names": ["flag-cd"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 48,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "foggy": {
- "char": "\ud83c\udf01",
- "key": "foggy",
- "keywords": ["foggy", "FOGGY"],
- "category": "travel_and_places",
- "lib": {
- "name": "FOGGY",
- "unified": "1F301",
- "non_qualified": null,
- "docomo": "E644",
- "au": "E598",
- "softbank": null,
- "google": "FE006",
- "image": "1f301.png",
- "sheet_x": 5,
- "sheet_y": 40,
- "short_name": "foggy",
- "short_names": ["foggy"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 48,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "bear": {
- "char": "\ud83d\udc3b",
- "key": "bear",
- "keywords": ["bear", "BEAR FACE"],
- "category": "animals_and_nature",
- "lib": {
- "name": "BEAR FACE",
- "unified": "1F43B",
- "non_qualified": null,
- "docomo": null,
- "au": "E5C1",
- "softbank": "E051",
- "google": "FE1C1",
- "image": "1f43b.png",
- "sheet_x": 13,
- "sheet_y": 25,
- "short_name": "bear",
- "short_names": ["bear"],
- "text": null,
- "texts": null,
- "category": "Animals & Nature",
- "sort_order": 48,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "tv": {
- "char": "\ud83d\udcfa",
- "key": "tv",
- "keywords": ["tv", "TELEVISION"],
- "category": "objects",
- "lib": {
- "name": "TELEVISION",
- "unified": "1F4FA",
- "non_qualified": null,
- "docomo": "E68A",
- "au": "E502",
- "softbank": "E12A",
- "google": "FE81C",
- "image": "1f4fa.png",
- "sheet_x": 27,
- "sheet_y": 19,
- "short_name": "tv",
- "short_names": ["tv"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 48,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "place_of_worship": {
- "char": "\ud83d\uded0",
- "key": "place_of_worship",
- "keywords": ["place_of_worship", "PLACE OF WORSHIP"],
- "category": "symbols",
- "lib": {
- "name": "PLACE OF WORSHIP",
- "unified": "1F6D0",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f6d0.png",
- "sheet_x": 37,
- "sheet_y": 17,
- "short_name": "place_of_worship",
- "short_names": ["place_of_worship"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 48,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "money_mouth_face": {
- "char": "\ud83e\udd11",
- "key": "money_mouth_face",
- "keywords": ["money_mouth_face", "MONEY-MOUTH FACE"],
- "category": "people",
- "lib": {
- "name": "MONEY-MOUTH FACE",
- "unified": "1F911",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f911.png",
- "sheet_x": 37,
- "sheet_y": 38,
- "short_name": "money_mouth_face",
- "short_names": ["money_mouth_face"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 48,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "stuffed_flatbread": {
- "char": "\ud83e\udd59",
- "key": "stuffed_flatbread",
- "keywords": ["stuffed_flatbread", "STUFFED FLATBREAD"],
- "category": "food_and_drink",
- "lib": {
- "name": "STUFFED FLATBREAD",
- "unified": "1F959",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f959.png",
- "sheet_x": 42,
- "sheet_y": 16,
- "short_name": "stuffed_flatbread",
- "short_names": ["stuffed_flatbread"],
- "text": null,
- "texts": null,
- "category": "Food & Drink",
- "sort_order": 48,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "ice_skate": {
- "char": "\u26f8\ufe0f",
- "key": "ice_skate",
- "keywords": ["ice_skate", ""],
- "category": "activity",
- "lib": {
- "name": null,
- "unified": "26F8-FE0F",
- "non_qualified": "26F8",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "26f8-fe0f.png",
- "sheet_x": 50,
- "sheet_y": 36,
- "short_name": "ice_skate",
- "short_names": ["ice_skate"],
- "text": null,
- "texts": null,
- "category": "Activities",
- "sort_order": 48,
- "added_in": "5.2",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "flag-cf": {
- "char": "\ud83c\udde8\ud83c\uddeb",
- "key": "flag-cf",
- "keywords": ["flag-cf", "Central African Republic Flag"],
- "category": "flags",
- "lib": {
- "name": "Central African Republic Flag",
- "unified": "1F1E8-1F1EB",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1e8-1f1eb.png",
- "sheet_x": 1,
- "sheet_y": 19,
- "short_name": "flag-cf",
- "short_names": ["flag-cf"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 49,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "night_with_stars": {
- "char": "\ud83c\udf03",
- "key": "night_with_stars",
- "keywords": ["night_with_stars", "NIGHT WITH STARS"],
- "category": "travel_and_places",
- "lib": {
- "name": "NIGHT WITH STARS",
- "unified": "1F303",
- "non_qualified": null,
- "docomo": "E6B3",
- "au": "EAF1",
- "softbank": "E44B",
- "google": "FE008",
- "image": "1f303.png",
- "sheet_x": 5,
- "sheet_y": 42,
- "short_name": "night_with_stars",
- "short_names": ["night_with_stars"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 49,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "fishing_pole_and_fish": {
- "char": "\ud83c\udfa3",
- "key": "fishing_pole_and_fish",
- "keywords": ["fishing_pole_and_fish", "FISHING POLE AND FISH"],
- "category": "activity",
- "lib": {
- "name": "FISHING POLE AND FISH",
- "unified": "1F3A3",
- "non_qualified": null,
- "docomo": "E751",
- "au": "EB42",
- "softbank": null,
- "google": "FE7FF",
- "image": "1f3a3.png",
- "sheet_x": 8,
- "sheet_y": 41,
- "short_name": "fishing_pole_and_fish",
- "short_names": ["fishing_pole_and_fish"],
- "text": null,
- "texts": null,
- "category": "Activities",
- "sort_order": 49,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "koala": {
- "char": "\ud83d\udc28",
- "key": "koala",
- "keywords": ["koala", "KOALA"],
- "category": "animals_and_nature",
- "lib": {
- "name": "KOALA",
- "unified": "1F428",
- "non_qualified": null,
- "docomo": null,
- "au": "EB20",
- "softbank": "E527",
- "google": "FE1CD",
- "image": "1f428.png",
- "sheet_x": 13,
- "sheet_y": 6,
- "short_name": "koala",
- "short_names": ["koala"],
- "text": null,
- "texts": null,
- "category": "Animals & Nature",
- "sort_order": 49,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "camera": {
- "char": "\ud83d\udcf7",
- "key": "camera",
- "keywords": ["camera", "CAMERA"],
- "category": "objects",
- "lib": {
- "name": "CAMERA",
- "unified": "1F4F7",
- "non_qualified": null,
- "docomo": "E681",
- "au": "E515",
- "softbank": "E008",
- "google": "FE4EF",
- "image": "1f4f7.png",
- "sheet_x": 27,
- "sheet_y": 16,
- "short_name": "camera",
- "short_names": ["camera"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 49,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "astonished": {
- "char": "\ud83d\ude32",
- "key": "astonished",
- "keywords": ["astonished", "ASTONISHED FACE"],
- "category": "people",
- "lib": {
- "name": "ASTONISHED FACE",
- "unified": "1F632",
- "non_qualified": null,
- "docomo": "E6F4",
- "au": "EACA",
- "softbank": "E410",
- "google": "FE322",
- "image": "1f632.png",
- "sheet_x": 31,
- "sheet_y": 40,
- "short_name": "astonished",
- "short_names": ["astonished"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 49,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "egg": {
- "char": "\ud83e\udd5a",
- "key": "egg",
- "keywords": ["egg", "EGG"],
- "category": "food_and_drink",
- "lib": {
- "name": "EGG",
- "unified": "1F95A",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f95a.png",
- "sheet_x": 42,
- "sheet_y": 17,
- "short_name": "egg",
- "short_names": ["egg"],
- "text": null,
- "texts": null,
- "category": "Food & Drink",
- "sort_order": 49,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "atom_symbol": {
- "char": "\u269b\ufe0f",
- "key": "atom_symbol",
- "keywords": ["atom_symbol", ""],
- "category": "symbols",
- "lib": {
- "name": null,
- "unified": "269B-FE0F",
- "non_qualified": "269B",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "269b-fe0f.png",
- "sheet_x": 50,
- "sheet_y": 9,
- "short_name": "atom_symbol",
- "short_names": ["atom_symbol"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 49,
- "added_in": "4.1",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "flag-cg": {
- "char": "\ud83c\udde8\ud83c\uddec",
- "key": "flag-cg",
- "keywords": ["flag-cg", "Congo - Brazzaville Flag"],
- "category": "flags",
- "lib": {
- "name": "Congo - Brazzaville Flag",
- "unified": "1F1E8-1F1EC",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1e8-1f1ec.png",
- "sheet_x": 1,
- "sheet_y": 20,
- "short_name": "flag-cg",
- "short_names": ["flag-cg"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 50,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "fried_egg": {
- "char": "\ud83c\udf73",
- "key": "fried_egg",
- "keywords": ["fried_egg", "COOKING"],
- "category": "food_and_drink",
- "lib": {
- "name": "COOKING",
- "unified": "1F373",
- "non_qualified": null,
- "docomo": null,
- "au": "E4D1",
- "softbank": "E147",
- "google": "FE965",
- "image": "1f373.png",
- "sheet_x": 7,
- "sheet_y": 46,
- "short_name": "fried_egg",
- "short_names": ["fried_egg", "cooking"],
- "text": null,
- "texts": null,
- "category": "Food & Drink",
- "sort_order": 50,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "running_shirt_with_sash": {
- "char": "\ud83c\udfbd",
- "key": "running_shirt_with_sash",
- "keywords": ["running_shirt_with_sash", "RUNNING SHIRT WITH SASH"],
- "category": "activity",
- "lib": {
- "name": "RUNNING SHIRT WITH SASH",
- "unified": "1F3BD",
- "non_qualified": null,
- "docomo": "E652",
- "au": null,
- "softbank": null,
- "google": "FE7D0",
- "image": "1f3bd.png",
- "sheet_x": 9,
- "sheet_y": 14,
- "short_name": "running_shirt_with_sash",
- "short_names": ["running_shirt_with_sash"],
- "text": null,
- "texts": null,
- "category": "Activities",
- "sort_order": 50,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "cityscape": {
- "char": "\ud83c\udfd9\ufe0f",
- "key": "cityscape",
- "keywords": ["cityscape", ""],
- "category": "travel_and_places",
- "lib": {
- "name": null,
- "unified": "1F3D9-FE0F",
- "non_qualified": "1F3D9",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f3d9-fe0f.png",
- "sheet_x": 11,
- "sheet_y": 31,
- "short_name": "cityscape",
- "short_names": ["cityscape"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 50,
- "added_in": "7.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "panda_face": {
- "char": "\ud83d\udc3c",
- "key": "panda_face",
- "keywords": ["panda_face", "PANDA FACE"],
- "category": "animals_and_nature",
- "lib": {
- "name": "PANDA FACE",
- "unified": "1F43C",
- "non_qualified": null,
- "docomo": null,
- "au": "EB46",
- "softbank": null,
- "google": "FE1DF",
- "image": "1f43c.png",
- "sheet_x": 13,
- "sheet_y": 26,
- "short_name": "panda_face",
- "short_names": ["panda_face"],
- "text": null,
- "texts": null,
- "category": "Animals & Nature",
- "sort_order": 50,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "camera_with_flash": {
- "char": "\ud83d\udcf8",
- "key": "camera_with_flash",
- "keywords": ["camera_with_flash", "CAMERA WITH FLASH"],
- "category": "objects",
- "lib": {
- "name": "CAMERA WITH FLASH",
- "unified": "1F4F8",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f4f8.png",
- "sheet_x": 27,
- "sheet_y": 17,
- "short_name": "camera_with_flash",
- "short_names": ["camera_with_flash"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 50,
- "added_in": "7.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "om_symbol": {
- "char": "\ud83d\udd49\ufe0f",
- "key": "om_symbol",
- "keywords": ["om_symbol", ""],
- "category": "symbols",
- "lib": {
- "name": null,
- "unified": "1F549-FE0F",
- "non_qualified": "1F549",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f549-fe0f.png",
- "sheet_x": 28,
- "sheet_y": 33,
- "short_name": "om_symbol",
- "short_names": ["om_symbol"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 50,
- "added_in": "7.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "white_frowning_face": {
- "char": "\u2639\ufe0f",
- "key": "white_frowning_face",
- "keywords": ["white_frowning_face", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "2639-FE0F",
- "non_qualified": "2639",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "2639-fe0f.png",
- "sheet_x": 49,
- "sheet_y": 30,
- "short_name": "white_frowning_face",
- "short_names": ["white_frowning_face"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 50,
- "added_in": "1.1",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "flag-ch": {
- "char": "\ud83c\udde8\ud83c\udded",
- "key": "flag-ch",
- "keywords": ["flag-ch", "Switzerland Flag"],
- "category": "flags",
- "lib": {
- "name": "Switzerland Flag",
- "unified": "1F1E8-1F1ED",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1e8-1f1ed.png",
- "sheet_x": 1,
- "sheet_y": 21,
- "short_name": "flag-ch",
- "short_names": ["flag-ch"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 51,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "sunrise_over_mountains": {
- "char": "\ud83c\udf04",
- "key": "sunrise_over_mountains",
- "keywords": ["sunrise_over_mountains", "SUNRISE OVER MOUNTAINS"],
- "category": "travel_and_places",
- "lib": {
- "name": "SUNRISE OVER MOUNTAINS",
- "unified": "1F304",
- "non_qualified": null,
- "docomo": "E63E",
- "au": "EAF4",
- "softbank": "E04D",
- "google": "FE009",
- "image": "1f304.png",
- "sheet_x": 5,
- "sheet_y": 43,
- "short_name": "sunrise_over_mountains",
- "short_names": ["sunrise_over_mountains"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 51,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "ski": {
- "char": "\ud83c\udfbf",
- "key": "ski",
- "keywords": ["ski", "SKI AND SKI BOOT"],
- "category": "activity",
- "lib": {
- "name": "SKI AND SKI BOOT",
- "unified": "1F3BF",
- "non_qualified": null,
- "docomo": "E657",
- "au": "EAAC",
- "softbank": "E013",
- "google": "FE7D5",
- "image": "1f3bf.png",
- "sheet_x": 9,
- "sheet_y": 16,
- "short_name": "ski",
- "short_names": ["ski"],
- "text": null,
- "texts": null,
- "category": "Activities",
- "sort_order": 51,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "video_camera": {
- "char": "\ud83d\udcf9",
- "key": "video_camera",
- "keywords": ["video_camera", "VIDEO CAMERA"],
- "category": "objects",
- "lib": {
- "name": "VIDEO CAMERA",
- "unified": "1F4F9",
- "non_qualified": null,
- "docomo": "E677",
- "au": "E57E",
- "softbank": null,
- "google": "FE4F9",
- "image": "1f4f9.png",
- "sheet_x": 27,
- "sheet_y": 18,
- "short_name": "video_camera",
- "short_names": ["video_camera"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 51,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "slightly_frowning_face": {
- "char": "\ud83d\ude41",
- "key": "slightly_frowning_face",
- "keywords": ["slightly_frowning_face", "SLIGHTLY FROWNING FACE"],
- "category": "people",
- "lib": {
- "name": "SLIGHTLY FROWNING FACE",
- "unified": "1F641",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f641.png",
- "sheet_x": 32,
- "sheet_y": 2,
- "short_name": "slightly_frowning_face",
- "short_names": ["slightly_frowning_face"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 51,
- "added_in": "7.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "shallow_pan_of_food": {
- "char": "\ud83e\udd58",
- "key": "shallow_pan_of_food",
- "keywords": ["shallow_pan_of_food", "SHALLOW PAN OF FOOD"],
- "category": "food_and_drink",
- "lib": {
- "name": "SHALLOW PAN OF FOOD",
- "unified": "1F958",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f958.png",
- "sheet_x": 42,
- "sheet_y": 15,
- "short_name": "shallow_pan_of_food",
- "short_names": ["shallow_pan_of_food"],
- "text": null,
- "texts": null,
- "category": "Food & Drink",
- "sort_order": 51,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "kangaroo": {
- "char": "\ud83e\udd98",
- "key": "kangaroo",
- "keywords": ["kangaroo", "KANGAROO"],
- "category": "animals_and_nature",
- "lib": {
- "name": "KANGAROO",
- "unified": "1F998",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f998.png",
- "sheet_x": 43,
- "sheet_y": 20,
- "short_name": "kangaroo",
- "short_names": ["kangaroo"],
- "text": null,
- "texts": null,
- "category": "Animals & Nature",
- "sort_order": 51,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- },
- "star_of_david": {
- "char": "\u2721\ufe0f",
- "key": "star_of_david",
- "keywords": ["star_of_david", ""],
- "category": "symbols",
- "lib": {
- "name": null,
- "unified": "2721-FE0F",
- "non_qualified": "2721",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "2721-fe0f.png",
- "sheet_x": 51,
- "sheet_y": 37,
- "short_name": "star_of_david",
- "short_names": ["star_of_david"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 51,
- "added_in": "1.1",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "flag-ci": {
- "char": "\ud83c\udde8\ud83c\uddee",
- "key": "flag-ci",
- "keywords": ["flag-ci", "C\u00f4te d\u2019Ivoire Flag"],
- "category": "flags",
- "lib": {
- "name": "C\u00f4te d\u2019Ivoire Flag",
- "unified": "1F1E8-1F1EE",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1e8-1f1ee.png",
- "sheet_x": 1,
- "sheet_y": 22,
- "short_name": "flag-ci",
- "short_names": ["flag-ci"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 52,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "sunrise": {
- "char": "\ud83c\udf05",
- "key": "sunrise",
- "keywords": ["sunrise", "SUNRISE"],
- "category": "travel_and_places",
- "lib": {
- "name": "SUNRISE",
- "unified": "1F305",
- "non_qualified": null,
- "docomo": "E63E",
- "au": "EAF4",
- "softbank": "E449",
- "google": "FE00A",
- "image": "1f305.png",
- "sheet_x": 5,
- "sheet_y": 44,
- "short_name": "sunrise",
- "short_names": ["sunrise"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 52,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "stew": {
- "char": "\ud83c\udf72",
- "key": "stew",
- "keywords": ["stew", "POT OF FOOD"],
- "category": "food_and_drink",
- "lib": {
- "name": "POT OF FOOD",
- "unified": "1F372",
- "non_qualified": null,
- "docomo": null,
- "au": "EABE",
- "softbank": "E34D",
- "google": "FE970",
- "image": "1f372.png",
- "sheet_x": 7,
- "sheet_y": 45,
- "short_name": "stew",
- "short_names": ["stew"],
- "text": null,
- "texts": null,
- "category": "Food & Drink",
- "sort_order": 52,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "vhs": {
- "char": "\ud83d\udcfc",
- "key": "vhs",
- "keywords": ["vhs", "VIDEOCASSETTE"],
- "category": "objects",
- "lib": {
- "name": "VIDEOCASSETTE",
- "unified": "1F4FC",
- "non_qualified": null,
- "docomo": null,
- "au": "E580",
- "softbank": "E129",
- "google": "FE820",
- "image": "1f4fc.png",
- "sheet_x": 27,
- "sheet_y": 21,
- "short_name": "vhs",
- "short_names": ["vhs"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 52,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "confounded": {
- "char": "\ud83d\ude16",
- "key": "confounded",
- "keywords": ["confounded", "CONFOUNDED FACE"],
- "category": "people",
- "lib": {
- "name": "CONFOUNDED FACE",
- "unified": "1F616",
- "non_qualified": null,
- "docomo": "E6F3",
- "au": "EAC3",
- "softbank": "E407",
- "google": "FE33F",
- "image": "1f616.png",
- "sheet_x": 31,
- "sheet_y": 12,
- "short_name": "confounded",
- "short_names": ["confounded"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 52,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "sled": {
- "char": "\ud83d\udef7",
- "key": "sled",
- "keywords": ["sled", "SLED"],
- "category": "activity",
- "lib": {
- "name": "SLED",
- "unified": "1F6F7",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f6f7.png",
- "sheet_x": 37,
- "sheet_y": 34,
- "short_name": "sled",
- "short_names": ["sled"],
- "text": null,
- "texts": null,
- "category": "Activities",
- "sort_order": 52,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "badger": {
- "char": "\ud83e\udda1",
- "key": "badger",
- "keywords": ["badger", "BADGER"],
- "category": "animals_and_nature",
- "lib": {
- "name": "BADGER",
- "unified": "1F9A1",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f9a1.png",
- "sheet_x": 43,
- "sheet_y": 29,
- "short_name": "badger",
- "short_names": ["badger"],
- "text": null,
- "texts": null,
- "category": "Animals & Nature",
- "sort_order": 52,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- },
- "wheel_of_dharma": {
- "char": "\u2638\ufe0f",
- "key": "wheel_of_dharma",
- "keywords": ["wheel_of_dharma", ""],
- "category": "symbols",
- "lib": {
- "name": null,
- "unified": "2638-FE0F",
- "non_qualified": "2638",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "2638-fe0f.png",
- "sheet_x": 49,
- "sheet_y": 29,
- "short_name": "wheel_of_dharma",
- "short_names": ["wheel_of_dharma"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 52,
- "added_in": "1.1",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "flag-ck": {
- "char": "\ud83c\udde8\ud83c\uddf0",
- "key": "flag-ck",
- "keywords": ["flag-ck", "Cook Islands Flag"],
- "category": "flags",
- "lib": {
- "name": "Cook Islands Flag",
- "unified": "1F1E8-1F1F0",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1e8-1f1f0.png",
- "sheet_x": 1,
- "sheet_y": 23,
- "short_name": "flag-ck",
- "short_names": ["flag-ck"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 53,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "city_sunset": {
- "char": "\ud83c\udf06",
- "key": "city_sunset",
- "keywords": ["city_sunset", "CITYSCAPE AT DUSK"],
- "category": "travel_and_places",
- "lib": {
- "name": "CITYSCAPE AT DUSK",
- "unified": "1F306",
- "non_qualified": null,
- "docomo": null,
- "au": "E5DA",
- "softbank": "E146",
- "google": "FE00B",
- "image": "1f306.png",
- "sheet_x": 5,
- "sheet_y": 45,
- "short_name": "city_sunset",
- "short_names": ["city_sunset"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 53,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "feet": {
- "char": "\ud83d\udc3e",
- "key": "feet",
- "keywords": ["feet", "PAW PRINTS"],
- "category": "animals_and_nature",
- "lib": {
- "name": "PAW PRINTS",
- "unified": "1F43E",
- "non_qualified": null,
- "docomo": "E698",
- "au": "E4EE",
- "softbank": null,
- "google": "FE1DB",
- "image": "1f43e.png",
- "sheet_x": 13,
- "sheet_y": 28,
- "short_name": "feet",
- "short_names": ["feet", "paw_prints"],
- "text": null,
- "texts": null,
- "category": "Animals & Nature",
- "sort_order": 53,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "mag": {
- "char": "\ud83d\udd0d",
- "key": "mag",
- "keywords": ["mag", "LEFT-POINTING MAGNIFYING GLASS"],
- "category": "objects",
- "lib": {
- "name": "LEFT-POINTING MAGNIFYING GLASS",
- "unified": "1F50D",
- "non_qualified": null,
- "docomo": "E6DC",
- "au": "E518",
- "softbank": "E114",
- "google": "FEB85",
- "image": "1f50d.png",
- "sheet_x": 27,
- "sheet_y": 37,
- "short_name": "mag",
- "short_names": ["mag"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 53,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "disappointed": {
- "char": "\ud83d\ude1e",
- "key": "disappointed",
- "keywords": ["disappointed", "DISAPPOINTED FACE"],
- "category": "people",
- "lib": {
- "name": "DISAPPOINTED FACE",
- "unified": "1F61E",
- "non_qualified": null,
- "docomo": "E6F2",
- "au": "EAC0",
- "softbank": "E058",
- "google": "FE323",
- "image": "1f61e.png",
- "sheet_x": 31,
- "sheet_y": 20,
- "short_name": "disappointed",
- "short_names": ["disappointed"],
- "text": ":(",
- "texts": ["):", ":(", ":-("],
- "category": "Smileys & People",
- "sort_order": 53,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "curling_stone": {
- "char": "\ud83e\udd4c",
- "key": "curling_stone",
- "keywords": ["curling_stone", "CURLING STONE"],
- "category": "activity",
- "lib": {
- "name": "CURLING STONE",
- "unified": "1F94C",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f94c.png",
- "sheet_x": 42,
- "sheet_y": 3,
- "short_name": "curling_stone",
- "short_names": ["curling_stone"],
- "text": null,
- "texts": null,
- "category": "Activities",
- "sort_order": 53,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "bowl_with_spoon": {
- "char": "\ud83e\udd63",
- "key": "bowl_with_spoon",
- "keywords": ["bowl_with_spoon", "BOWL WITH SPOON"],
- "category": "food_and_drink",
- "lib": {
- "name": "BOWL WITH SPOON",
- "unified": "1F963",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f963.png",
- "sheet_x": 42,
- "sheet_y": 26,
- "short_name": "bowl_with_spoon",
- "short_names": ["bowl_with_spoon"],
- "text": null,
- "texts": null,
- "category": "Food & Drink",
- "sort_order": 53,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "yin_yang": {
- "char": "\u262f\ufe0f",
- "key": "yin_yang",
- "keywords": ["yin_yang", ""],
- "category": "symbols",
- "lib": {
- "name": null,
- "unified": "262F-FE0F",
- "non_qualified": "262F",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "262f-fe0f.png",
- "sheet_x": 49,
- "sheet_y": 28,
- "short_name": "yin_yang",
- "short_names": ["yin_yang"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 53,
- "added_in": "1.1",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "flag-cl": {
- "char": "\ud83c\udde8\ud83c\uddf1",
- "key": "flag-cl",
- "keywords": ["flag-cl", "Chile Flag"],
- "category": "flags",
- "lib": {
- "name": "Chile Flag",
- "unified": "1F1E8-1F1F1",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1e8-1f1f1.png",
- "sheet_x": 1,
- "sheet_y": 24,
- "short_name": "flag-cl",
- "short_names": ["flag-cl"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 54,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "city_sunrise": {
- "char": "\ud83c\udf07",
- "key": "city_sunrise",
- "keywords": ["city_sunrise", "SUNSET OVER BUILDINGS"],
- "category": "travel_and_places",
- "lib": {
- "name": "SUNSET OVER BUILDINGS",
- "unified": "1F307",
- "non_qualified": null,
- "docomo": "E63E",
- "au": "E5DA",
- "softbank": "E44A",
- "google": "FE00C",
- "image": "1f307.png",
- "sheet_x": 5,
- "sheet_y": 46,
- "short_name": "city_sunrise",
- "short_names": ["city_sunrise"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 54,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "dart": {
- "char": "\ud83c\udfaf",
- "key": "dart",
- "keywords": ["dart", "DIRECT HIT"],
- "category": "activity",
- "lib": {
- "name": "DIRECT HIT",
- "unified": "1F3AF",
- "non_qualified": null,
- "docomo": null,
- "au": "E4C5",
- "softbank": "E130",
- "google": "FE80C",
- "image": "1f3af.png",
- "sheet_x": 9,
- "sheet_y": 0,
- "short_name": "dart",
- "short_names": ["dart"],
- "text": null,
- "texts": null,
- "category": "Activities",
- "sort_order": 54,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "mag_right": {
- "char": "\ud83d\udd0e",
- "key": "mag_right",
- "keywords": ["mag_right", "RIGHT-POINTING MAGNIFYING GLASS"],
- "category": "objects",
- "lib": {
- "name": "RIGHT-POINTING MAGNIFYING GLASS",
- "unified": "1F50E",
- "non_qualified": null,
- "docomo": "E6DC",
- "au": "EB05",
- "softbank": null,
- "google": "FEB8D",
- "image": "1f50e.png",
- "sheet_x": 27,
- "sheet_y": 38,
- "short_name": "mag_right",
- "short_names": ["mag_right"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 54,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "worried": {
- "char": "\ud83d\ude1f",
- "key": "worried",
- "keywords": ["worried", "WORRIED FACE"],
- "category": "people",
- "lib": {
- "name": "WORRIED FACE",
- "unified": "1F61F",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f61f.png",
- "sheet_x": 31,
- "sheet_y": 21,
- "short_name": "worried",
- "short_names": ["worried"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 54,
- "added_in": "6.1",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "green_salad": {
- "char": "\ud83e\udd57",
- "key": "green_salad",
- "keywords": ["green_salad", "GREEN SALAD"],
- "category": "food_and_drink",
- "lib": {
- "name": "GREEN SALAD",
- "unified": "1F957",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f957.png",
- "sheet_x": 42,
- "sheet_y": 14,
- "short_name": "green_salad",
- "short_names": ["green_salad"],
- "text": null,
- "texts": null,
- "category": "Food & Drink",
- "sort_order": 54,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "turkey": {
- "char": "\ud83e\udd83",
- "key": "turkey",
- "keywords": ["turkey", "TURKEY"],
- "category": "animals_and_nature",
- "lib": {
- "name": "TURKEY",
- "unified": "1F983",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f983.png",
- "sheet_x": 42,
- "sheet_y": 52,
- "short_name": "turkey",
- "short_names": ["turkey"],
- "text": null,
- "texts": null,
- "category": "Animals & Nature",
- "sort_order": 54,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "latin_cross": {
- "char": "\u271d\ufe0f",
- "key": "latin_cross",
- "keywords": ["latin_cross", ""],
- "category": "symbols",
- "lib": {
- "name": null,
- "unified": "271D-FE0F",
- "non_qualified": "271D",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "271d-fe0f.png",
- "sheet_x": 51,
- "sheet_y": 36,
- "short_name": "latin_cross",
- "short_names": ["latin_cross"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 54,
- "added_in": "1.1",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "flag-cm": {
- "char": "\ud83c\udde8\ud83c\uddf2",
- "key": "flag-cm",
- "keywords": ["flag-cm", "Cameroon Flag"],
- "category": "flags",
- "lib": {
- "name": "Cameroon Flag",
- "unified": "1F1E8-1F1F2",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1e8-1f1f2.png",
- "sheet_x": 1,
- "sheet_y": 25,
- "short_name": "flag-cm",
- "short_names": ["flag-cm"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 55,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "bridge_at_night": {
- "char": "\ud83c\udf09",
- "key": "bridge_at_night",
- "keywords": ["bridge_at_night", "BRIDGE AT NIGHT"],
- "category": "travel_and_places",
- "lib": {
- "name": "BRIDGE AT NIGHT",
- "unified": "1F309",
- "non_qualified": null,
- "docomo": "E6B3",
- "au": "E4BF",
- "softbank": null,
- "google": "FE010",
- "image": "1f309.png",
- "sheet_x": 5,
- "sheet_y": 48,
- "short_name": "bridge_at_night",
- "short_names": ["bridge_at_night"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 55,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "popcorn": {
- "char": "\ud83c\udf7f",
- "key": "popcorn",
- "keywords": ["popcorn", "POPCORN"],
- "category": "food_and_drink",
- "lib": {
- "name": "POPCORN",
- "unified": "1F37F",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f37f.png",
- "sheet_x": 8,
- "sheet_y": 5,
- "short_name": "popcorn",
- "short_names": ["popcorn"],
- "text": null,
- "texts": null,
- "category": "Food & Drink",
- "sort_order": 55,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "8ball": {
- "char": "\ud83c\udfb1",
- "key": "8ball",
- "keywords": ["8ball", "BILLIARDS"],
- "category": "activity",
- "lib": {
- "name": "BILLIARDS",
- "unified": "1F3B1",
- "non_qualified": null,
- "docomo": null,
- "au": "EADD",
- "softbank": "E42C",
- "google": "FE80E",
- "image": "1f3b1.png",
- "sheet_x": 9,
- "sheet_y": 2,
- "short_name": "8ball",
- "short_names": ["8ball"],
- "text": null,
- "texts": null,
- "category": "Activities",
- "sort_order": 55,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "chicken": {
- "char": "\ud83d\udc14",
- "key": "chicken",
- "keywords": ["chicken", "CHICKEN"],
- "category": "animals_and_nature",
- "lib": {
- "name": "CHICKEN",
- "unified": "1F414",
- "non_qualified": null,
- "docomo": null,
- "au": "EB23",
- "softbank": "E52E",
- "google": "FE1D4",
- "image": "1f414.png",
- "sheet_x": 12,
- "sheet_y": 39,
- "short_name": "chicken",
- "short_names": ["chicken"],
- "text": null,
- "texts": null,
- "category": "Animals & Nature",
- "sort_order": 55,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "candle": {
- "char": "\ud83d\udd6f\ufe0f",
- "key": "candle",
- "keywords": ["candle", ""],
- "category": "objects",
- "lib": {
- "name": null,
- "unified": "1F56F-FE0F",
- "non_qualified": "1F56F",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f56f-fe0f.png",
- "sheet_x": 29,
- "sheet_y": 10,
- "short_name": "candle",
- "short_names": ["candle"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 55,
- "added_in": "7.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "triumph": {
- "char": "\ud83d\ude24",
- "key": "triumph",
- "keywords": ["triumph", "FACE WITH LOOK OF TRIUMPH"],
- "category": "people",
- "lib": {
- "name": "FACE WITH LOOK OF TRIUMPH",
- "unified": "1F624",
- "non_qualified": null,
- "docomo": "E753",
- "au": "EAC1",
- "softbank": null,
- "google": "FE328",
- "image": "1f624.png",
- "sheet_x": 31,
- "sheet_y": 26,
- "short_name": "triumph",
- "short_names": ["triumph"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 55,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "orthodox_cross": {
- "char": "\u2626\ufe0f",
- "key": "orthodox_cross",
- "keywords": ["orthodox_cross", ""],
- "category": "symbols",
- "lib": {
- "name": null,
- "unified": "2626-FE0F",
- "non_qualified": "2626",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "2626-fe0f.png",
- "sheet_x": 49,
- "sheet_y": 25,
- "short_name": "orthodox_cross",
- "short_names": ["orthodox_cross"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 55,
- "added_in": "1.1",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "cn": {
- "char": "\ud83c\udde8\ud83c\uddf3",
- "key": "cn",
- "keywords": ["cn", "China Flag"],
- "category": "flags",
- "lib": {
- "name": "China Flag",
- "unified": "1F1E8-1F1F3",
- "non_qualified": null,
- "docomo": null,
- "au": "EB11",
- "softbank": "E513",
- "google": "FE4ED",
- "image": "1f1e8-1f1f3.png",
- "sheet_x": 1,
- "sheet_y": 26,
- "short_name": "cn",
- "short_names": ["cn", "flag-cn"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 56,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "rooster": {
- "char": "\ud83d\udc13",
- "key": "rooster",
- "keywords": ["rooster", "ROOSTER"],
- "category": "animals_and_nature",
- "lib": {
- "name": "ROOSTER",
- "unified": "1F413",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f413.png",
- "sheet_x": 12,
- "sheet_y": 38,
- "short_name": "rooster",
- "short_names": ["rooster"],
- "text": null,
- "texts": null,
- "category": "Animals & Nature",
- "sort_order": 56,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "bulb": {
- "char": "\ud83d\udca1",
- "key": "bulb",
- "keywords": ["bulb", "ELECTRIC LIGHT BULB"],
- "category": "objects",
- "lib": {
- "name": "ELECTRIC LIGHT BULB",
- "unified": "1F4A1",
- "non_qualified": null,
- "docomo": "E6FB",
- "au": "E476",
- "softbank": "E10F",
- "google": "FEB56",
- "image": "1f4a1.png",
- "sheet_x": 25,
- "sheet_y": 31,
- "short_name": "bulb",
- "short_names": ["bulb"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 56,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "crystal_ball": {
- "char": "\ud83d\udd2e",
- "key": "crystal_ball",
- "keywords": ["crystal_ball", "CRYSTAL BALL"],
- "category": "activity",
- "lib": {
- "name": "CRYSTAL BALL",
- "unified": "1F52E",
- "non_qualified": null,
- "docomo": null,
- "au": "EA8F",
- "softbank": null,
- "google": "FE4F7",
- "image": "1f52e.png",
- "sheet_x": 28,
- "sheet_y": 17,
- "short_name": "crystal_ball",
- "short_names": ["crystal_ball"],
- "text": null,
- "texts": null,
- "category": "Activities",
- "sort_order": 56,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "cry": {
- "char": "\ud83d\ude22",
- "key": "cry",
- "keywords": ["cry", "CRYING FACE"],
- "category": "people",
- "lib": {
- "name": "CRYING FACE",
- "unified": "1F622",
- "non_qualified": null,
- "docomo": "E72E",
- "au": "EB69",
- "softbank": "E413",
- "google": "FE339",
- "image": "1f622.png",
- "sheet_x": 31,
- "sheet_y": 24,
- "short_name": "cry",
- "short_names": ["cry"],
- "text": ":'(",
- "texts": [":'("],
- "category": "Smileys & People",
- "sort_order": 56,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "salt": {
- "char": "\ud83e\uddc2",
- "key": "salt",
- "keywords": ["salt", "SALT SHAKER"],
- "category": "food_and_drink",
- "lib": {
- "name": "SALT SHAKER",
- "unified": "1F9C2",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f9c2.png",
- "sheet_x": 44,
- "sheet_y": 18,
- "short_name": "salt",
- "short_names": ["salt"],
- "text": null,
- "texts": null,
- "category": "Food & Drink",
- "sort_order": 56,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- },
- "star_and_crescent": {
- "char": "\u262a\ufe0f",
- "key": "star_and_crescent",
- "keywords": ["star_and_crescent", ""],
- "category": "symbols",
- "lib": {
- "name": null,
- "unified": "262A-FE0F",
- "non_qualified": "262A",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "262a-fe0f.png",
- "sheet_x": 49,
- "sheet_y": 26,
- "short_name": "star_and_crescent",
- "short_names": ["star_and_crescent"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 56,
- "added_in": "1.1",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "hotsprings": {
- "char": "\u2668\ufe0f",
- "key": "hotsprings",
- "keywords": ["hotsprings", "HOT SPRINGS"],
- "category": "travel_and_places",
- "lib": {
- "name": "HOT SPRINGS",
- "unified": "2668-FE0F",
- "non_qualified": "2668",
- "docomo": "E6F7",
- "au": "E4BC",
- "softbank": "E123",
- "google": "FE7FA",
- "image": "2668-fe0f.png",
- "sheet_x": 49,
- "sheet_y": 51,
- "short_name": "hotsprings",
- "short_names": ["hotsprings"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 56,
- "added_in": "1.1",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "flag-co": {
- "char": "\ud83c\udde8\ud83c\uddf4",
- "key": "flag-co",
- "keywords": ["flag-co", "Colombia Flag"],
- "category": "flags",
- "lib": {
- "name": "Colombia Flag",
- "unified": "1F1E8-1F1F4",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1e8-1f1f4.png",
- "sheet_x": 1,
- "sheet_y": 27,
- "short_name": "flag-co",
- "short_names": ["flag-co"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 57,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "milky_way": {
- "char": "\ud83c\udf0c",
- "key": "milky_way",
- "keywords": ["milky_way", "MILKY WAY"],
- "category": "travel_and_places",
- "lib": {
- "name": "MILKY WAY",
- "unified": "1F30C",
- "non_qualified": null,
- "docomo": "E6B3",
- "au": "EB5F",
- "softbank": null,
- "google": "FE03B",
- "image": "1f30c.png",
- "sheet_x": 5,
- "sheet_y": 51,
- "short_name": "milky_way",
- "short_names": ["milky_way"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 57,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "hatching_chick": {
- "char": "\ud83d\udc23",
- "key": "hatching_chick",
- "keywords": ["hatching_chick", "HATCHING CHICK"],
- "category": "animals_and_nature",
- "lib": {
- "name": "HATCHING CHICK",
- "unified": "1F423",
- "non_qualified": null,
- "docomo": "E74F",
- "au": "E5DB",
- "softbank": null,
- "google": "FE1DD",
- "image": "1f423.png",
- "sheet_x": 13,
- "sheet_y": 1,
- "short_name": "hatching_chick",
- "short_names": ["hatching_chick"],
- "text": null,
- "texts": null,
- "category": "Animals & Nature",
- "sort_order": 57,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "flashlight": {
- "char": "\ud83d\udd26",
- "key": "flashlight",
- "keywords": ["flashlight", "ELECTRIC TORCH"],
- "category": "objects",
- "lib": {
- "name": "ELECTRIC TORCH",
- "unified": "1F526",
- "non_qualified": null,
- "docomo": "E6FB",
- "au": "E583",
- "softbank": null,
- "google": "FE4FB",
- "image": "1f526.png",
- "sheet_x": 28,
- "sheet_y": 9,
- "short_name": "flashlight",
- "short_names": ["flashlight"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 57,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "sob": {
- "char": "\ud83d\ude2d",
- "key": "sob",
- "keywords": ["sob", "LOUDLY CRYING FACE"],
- "category": "people",
- "lib": {
- "name": "LOUDLY CRYING FACE",
- "unified": "1F62D",
- "non_qualified": null,
- "docomo": "E72D",
- "au": "E473",
- "softbank": "E411",
- "google": "FE33A",
- "image": "1f62d.png",
- "sheet_x": 31,
- "sheet_y": 35,
- "short_name": "sob",
- "short_names": ["sob"],
- "text": ":'(",
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 57,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "canned_food": {
- "char": "\ud83e\udd6b",
- "key": "canned_food",
- "keywords": ["canned_food", "CANNED FOOD"],
- "category": "food_and_drink",
- "lib": {
- "name": "CANNED FOOD",
- "unified": "1F96B",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f96b.png",
- "sheet_x": 42,
- "sheet_y": 34,
- "short_name": "canned_food",
- "short_names": ["canned_food"],
- "text": null,
- "texts": null,
- "category": "Food & Drink",
- "sort_order": 57,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "nazar_amulet": {
- "char": "\ud83e\uddff",
- "key": "nazar_amulet",
- "keywords": ["nazar_amulet", "NAZAR AMULET"],
- "category": "activity",
- "lib": {
- "name": "NAZAR AMULET",
- "unified": "1F9FF",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f9ff.png",
- "sheet_x": 48,
- "sheet_y": 19,
- "short_name": "nazar_amulet",
- "short_names": ["nazar_amulet"],
- "text": null,
- "texts": null,
- "category": "Activities",
- "sort_order": 57,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- },
- "peace_symbol": {
- "char": "\u262e\ufe0f",
- "key": "peace_symbol",
- "keywords": ["peace_symbol", ""],
- "category": "symbols",
- "lib": {
- "name": null,
- "unified": "262E-FE0F",
- "non_qualified": "262E",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "262e-fe0f.png",
- "sheet_x": 49,
- "sheet_y": 27,
- "short_name": "peace_symbol",
- "short_names": ["peace_symbol"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 57,
- "added_in": "1.1",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "flag-cp": {
- "char": "\ud83c\udde8\ud83c\uddf5",
- "key": "flag-cp",
- "keywords": ["flag-cp", "Clipperton Island Flag"],
- "category": "flags",
- "lib": {
- "name": "Clipperton Island Flag",
- "unified": "1F1E8-1F1F5",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1e8-1f1f5.png",
- "sheet_x": 1,
- "sheet_y": 28,
- "short_name": "flag-cp",
- "short_names": ["flag-cp"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 58,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "bento": {
- "char": "\ud83c\udf71",
- "key": "bento",
- "keywords": ["bento", "BENTO BOX"],
- "category": "food_and_drink",
- "lib": {
- "name": "BENTO BOX",
- "unified": "1F371",
- "non_qualified": null,
- "docomo": null,
- "au": "EABD",
- "softbank": "E34C",
- "google": "FE96F",
- "image": "1f371.png",
- "sheet_x": 7,
- "sheet_y": 44,
- "short_name": "bento",
- "short_names": ["bento"],
- "text": null,
- "texts": null,
- "category": "Food & Drink",
- "sort_order": 58,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "carousel_horse": {
- "char": "\ud83c\udfa0",
- "key": "carousel_horse",
- "keywords": ["carousel_horse", "CAROUSEL HORSE"],
- "category": "travel_and_places",
- "lib": {
- "name": "CAROUSEL HORSE",
- "unified": "1F3A0",
- "non_qualified": null,
- "docomo": "E679",
- "au": null,
- "softbank": null,
- "google": "FE7FC",
- "image": "1f3a0.png",
- "sheet_x": 8,
- "sheet_y": 38,
- "short_name": "carousel_horse",
- "short_names": ["carousel_horse"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 58,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "video_game": {
- "char": "\ud83c\udfae",
- "key": "video_game",
- "keywords": ["video_game", "VIDEO GAME"],
- "category": "activity",
- "lib": {
- "name": "VIDEO GAME",
- "unified": "1F3AE",
- "non_qualified": null,
- "docomo": "E68B",
- "au": "E4C6",
- "softbank": null,
- "google": "FE80A",
- "image": "1f3ae.png",
- "sheet_x": 8,
- "sheet_y": 52,
- "short_name": "video_game",
- "short_names": ["video_game"],
- "text": null,
- "texts": null,
- "category": "Activities",
- "sort_order": 58,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "izakaya_lantern": {
- "char": "\ud83c\udfee",
- "key": "izakaya_lantern",
- "keywords": ["izakaya_lantern", "IZAKAYA LANTERN"],
- "category": "objects",
- "lib": {
- "name": "IZAKAYA LANTERN",
- "unified": "1F3EE",
- "non_qualified": null,
- "docomo": "E74B",
- "au": "E4BD",
- "softbank": null,
- "google": "FE4C2",
- "image": "1f3ee.png",
- "sheet_x": 11,
- "sheet_y": 52,
- "short_name": "izakaya_lantern",
- "short_names": ["izakaya_lantern", "lantern"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 58,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "baby_chick": {
- "char": "\ud83d\udc24",
- "key": "baby_chick",
- "keywords": ["baby_chick", "BABY CHICK"],
- "category": "animals_and_nature",
- "lib": {
- "name": "BABY CHICK",
- "unified": "1F424",
- "non_qualified": null,
- "docomo": "E74F",
- "au": "E4E0",
- "softbank": "E523",
- "google": "FE1BA",
- "image": "1f424.png",
- "sheet_x": 13,
- "sheet_y": 2,
- "short_name": "baby_chick",
- "short_names": ["baby_chick"],
- "text": null,
- "texts": null,
- "category": "Animals & Nature",
- "sort_order": 58,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "menorah_with_nine_branches": {
- "char": "\ud83d\udd4e",
- "key": "menorah_with_nine_branches",
- "keywords": ["menorah_with_nine_branches", "MENORAH WITH NINE BRANCHES"],
- "category": "symbols",
- "lib": {
- "name": "MENORAH WITH NINE BRANCHES",
- "unified": "1F54E",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f54e.png",
- "sheet_x": 28,
- "sheet_y": 38,
- "short_name": "menorah_with_nine_branches",
- "short_names": ["menorah_with_nine_branches"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 58,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "frowning": {
- "char": "\ud83d\ude26",
- "key": "frowning",
- "keywords": ["frowning", "FROWNING FACE WITH OPEN MOUTH"],
- "category": "people",
- "lib": {
- "name": "FROWNING FACE WITH OPEN MOUTH",
- "unified": "1F626",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f626.png",
- "sheet_x": 31,
- "sheet_y": 28,
- "short_name": "frowning",
- "short_names": ["frowning"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 58,
- "added_in": "6.1",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "flag-cr": {
- "char": "\ud83c\udde8\ud83c\uddf7",
- "key": "flag-cr",
- "keywords": ["flag-cr", "Costa Rica Flag"],
- "category": "flags",
- "lib": {
- "name": "Costa Rica Flag",
- "unified": "1F1E8-1F1F7",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1e8-1f1f7.png",
- "sheet_x": 1,
- "sheet_y": 29,
- "short_name": "flag-cr",
- "short_names": ["flag-cr"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 59,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "rice_cracker": {
- "char": "\ud83c\udf58",
- "key": "rice_cracker",
- "keywords": ["rice_cracker", "RICE CRACKER"],
- "category": "food_and_drink",
- "lib": {
- "name": "RICE CRACKER",
- "unified": "1F358",
- "non_qualified": null,
- "docomo": null,
- "au": "EAB3",
- "softbank": "E33D",
- "google": "FE969",
- "image": "1f358.png",
- "sheet_x": 7,
- "sheet_y": 19,
- "short_name": "rice_cracker",
- "short_names": ["rice_cracker"],
- "text": null,
- "texts": null,
- "category": "Food & Drink",
- "sort_order": 59,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "ferris_wheel": {
- "char": "\ud83c\udfa1",
- "key": "ferris_wheel",
- "keywords": ["ferris_wheel", "FERRIS WHEEL"],
- "category": "travel_and_places",
- "lib": {
- "name": "FERRIS WHEEL",
- "unified": "1F3A1",
- "non_qualified": null,
- "docomo": null,
- "au": "E46D",
- "softbank": "E124",
- "google": "FE7FD",
- "image": "1f3a1.png",
- "sheet_x": 8,
- "sheet_y": 39,
- "short_name": "ferris_wheel",
- "short_names": ["ferris_wheel"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 59,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "hatched_chick": {
- "char": "\ud83d\udc25",
- "key": "hatched_chick",
- "keywords": ["hatched_chick", "FRONT-FACING BABY CHICK"],
- "category": "animals_and_nature",
- "lib": {
- "name": "FRONT-FACING BABY CHICK",
- "unified": "1F425",
- "non_qualified": null,
- "docomo": "E74F",
- "au": "EB76",
- "softbank": null,
- "google": "FE1BB",
- "image": "1f425.png",
- "sheet_x": 13,
- "sheet_y": 3,
- "short_name": "hatched_chick",
- "short_names": ["hatched_chick"],
- "text": null,
- "texts": null,
- "category": "Animals & Nature",
- "sort_order": 59,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "notebook_with_decorative_cover": {
- "char": "\ud83d\udcd4",
- "key": "notebook_with_decorative_cover",
- "keywords": ["notebook_with_decorative_cover", "NOTEBOOK WITH DECORATIVE COVER"],
- "category": "objects",
- "lib": {
- "name": "NOTEBOOK WITH DECORATIVE COVER",
- "unified": "1F4D4",
- "non_qualified": null,
- "docomo": "E683",
- "au": "E49D",
- "softbank": null,
- "google": "FE547",
- "image": "1f4d4.png",
- "sheet_x": 26,
- "sheet_y": 34,
- "short_name": "notebook_with_decorative_cover",
- "short_names": ["notebook_with_decorative_cover"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 59,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "six_pointed_star": {
- "char": "\ud83d\udd2f",
- "key": "six_pointed_star",
- "keywords": ["six_pointed_star", "SIX POINTED STAR WITH MIDDLE DOT"],
- "category": "symbols",
- "lib": {
- "name": "SIX POINTED STAR WITH MIDDLE DOT",
- "unified": "1F52F",
- "non_qualified": null,
- "docomo": null,
- "au": "EA8F",
- "softbank": "E23E",
- "google": "FE4F8",
- "image": "1f52f.png",
- "sheet_x": 28,
- "sheet_y": 18,
- "short_name": "six_pointed_star",
- "short_names": ["six_pointed_star"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 59,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "joystick": {
- "char": "\ud83d\udd79\ufe0f",
- "key": "joystick",
- "keywords": ["joystick", ""],
- "category": "activity",
- "lib": {
- "name": null,
- "unified": "1F579-FE0F",
- "non_qualified": "1F579",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f579-fe0f.png",
- "sheet_x": 29,
- "sheet_y": 40,
- "short_name": "joystick",
- "short_names": ["joystick"],
- "text": null,
- "texts": null,
- "category": "Activities",
- "sort_order": 59,
- "added_in": "7.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "anguished": {
- "char": "\ud83d\ude27",
- "key": "anguished",
- "keywords": ["anguished", "ANGUISHED FACE"],
- "category": "people",
- "lib": {
- "name": "ANGUISHED FACE",
- "unified": "1F627",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f627.png",
- "sheet_x": 31,
- "sheet_y": 29,
- "short_name": "anguished",
- "short_names": ["anguished"],
- "text": null,
- "texts": ["D:"],
- "category": "Smileys & People",
- "sort_order": 59,
- "added_in": "6.1",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "flag-cu": {
- "char": "\ud83c\udde8\ud83c\uddfa",
- "key": "flag-cu",
- "keywords": ["flag-cu", "Cuba Flag"],
- "category": "flags",
- "lib": {
- "name": "Cuba Flag",
- "unified": "1F1E8-1F1FA",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1e8-1f1fa.png",
- "sheet_x": 1,
- "sheet_y": 30,
- "short_name": "flag-cu",
- "short_names": ["flag-cu"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 60,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "rice_ball": {
- "char": "\ud83c\udf59",
- "key": "rice_ball",
- "keywords": ["rice_ball", "RICE BALL"],
- "category": "food_and_drink",
- "lib": {
- "name": "RICE BALL",
- "unified": "1F359",
- "non_qualified": null,
- "docomo": "E749",
- "au": "E4D5",
- "softbank": "E342",
- "google": "FE961",
- "image": "1f359.png",
- "sheet_x": 7,
- "sheet_y": 20,
- "short_name": "rice_ball",
- "short_names": ["rice_ball"],
- "text": null,
- "texts": null,
- "category": "Food & Drink",
- "sort_order": 60,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "roller_coaster": {
- "char": "\ud83c\udfa2",
- "key": "roller_coaster",
- "keywords": ["roller_coaster", "ROLLER COASTER"],
- "category": "travel_and_places",
- "lib": {
- "name": "ROLLER COASTER",
- "unified": "1F3A2",
- "non_qualified": null,
- "docomo": null,
- "au": "EAE2",
- "softbank": "E433",
- "google": "FE7FE",
- "image": "1f3a2.png",
- "sheet_x": 8,
- "sheet_y": 40,
- "short_name": "roller_coaster",
- "short_names": ["roller_coaster"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 60,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "slot_machine": {
- "char": "\ud83c\udfb0",
- "key": "slot_machine",
- "keywords": ["slot_machine", "SLOT MACHINE"],
- "category": "activity",
- "lib": {
- "name": "SLOT MACHINE",
- "unified": "1F3B0",
- "non_qualified": null,
- "docomo": null,
- "au": "E46E",
- "softbank": "E133",
- "google": "FE80D",
- "image": "1f3b0.png",
- "sheet_x": 9,
- "sheet_y": 1,
- "short_name": "slot_machine",
- "short_names": ["slot_machine"],
- "text": null,
- "texts": null,
- "category": "Activities",
- "sort_order": 60,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "bird": {
- "char": "\ud83d\udc26",
- "key": "bird",
- "keywords": ["bird", "BIRD"],
- "category": "animals_and_nature",
- "lib": {
- "name": "BIRD",
- "unified": "1F426",
- "non_qualified": null,
- "docomo": "E74F",
- "au": "E4E0",
- "softbank": "E521",
- "google": "FE1C8",
- "image": "1f426.png",
- "sheet_x": 13,
- "sheet_y": 4,
- "short_name": "bird",
- "short_names": ["bird"],
- "text": null,
- "texts": null,
- "category": "Animals & Nature",
- "sort_order": 60,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "closed_book": {
- "char": "\ud83d\udcd5",
- "key": "closed_book",
- "keywords": ["closed_book", "CLOSED BOOK"],
- "category": "objects",
- "lib": {
- "name": "CLOSED BOOK",
- "unified": "1F4D5",
- "non_qualified": null,
- "docomo": "E683",
- "au": "E568",
- "softbank": null,
- "google": "FE502",
- "image": "1f4d5.png",
- "sheet_x": 26,
- "sheet_y": 35,
- "short_name": "closed_book",
- "short_names": ["closed_book"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 60,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "fearful": {
- "char": "\ud83d\ude28",
- "key": "fearful",
- "keywords": ["fearful", "FEARFUL FACE"],
- "category": "people",
- "lib": {
- "name": "FEARFUL FACE",
- "unified": "1F628",
- "non_qualified": null,
- "docomo": "E757",
- "au": "EAC6",
- "softbank": "E40B",
- "google": "FE33B",
- "image": "1f628.png",
- "sheet_x": 31,
- "sheet_y": 30,
- "short_name": "fearful",
- "short_names": ["fearful"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 60,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "aries": {
- "char": "\u2648",
- "key": "aries",
- "keywords": ["aries", "ARIES"],
- "category": "symbols",
- "lib": {
- "name": "ARIES",
- "unified": "2648",
- "non_qualified": null,
- "docomo": "E646",
- "au": "E48F",
- "softbank": "E23F",
- "google": "FE02B",
- "image": "2648.png",
- "sheet_x": 49,
- "sheet_y": 34,
- "short_name": "aries",
- "short_names": ["aries"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 60,
- "added_in": "1.1",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "flag-cv": {
- "char": "\ud83c\udde8\ud83c\uddfb",
- "key": "flag-cv",
- "keywords": ["flag-cv", "Cape Verde Flag"],
- "category": "flags",
- "lib": {
- "name": "Cape Verde Flag",
- "unified": "1F1E8-1F1FB",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1e8-1f1fb.png",
- "sheet_x": 1,
- "sheet_y": 31,
- "short_name": "flag-cv",
- "short_names": ["flag-cv"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 61,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "rice": {
- "char": "\ud83c\udf5a",
- "key": "rice",
- "keywords": ["rice", "COOKED RICE"],
- "category": "food_and_drink",
- "lib": {
- "name": "COOKED RICE",
- "unified": "1F35A",
- "non_qualified": null,
- "docomo": "E74C",
- "au": "EAB4",
- "softbank": "E33E",
- "google": "FE96A",
- "image": "1f35a.png",
- "sheet_x": 7,
- "sheet_y": 21,
- "short_name": "rice",
- "short_names": ["rice"],
- "text": null,
- "texts": null,
- "category": "Food & Drink",
- "sort_order": 61,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "game_die": {
- "char": "\ud83c\udfb2",
- "key": "game_die",
- "keywords": ["game_die", "GAME DIE"],
- "category": "activity",
- "lib": {
- "name": "GAME DIE",
- "unified": "1F3B2",
- "non_qualified": null,
- "docomo": null,
- "au": "E4C8",
- "softbank": null,
- "google": "FE80F",
- "image": "1f3b2.png",
- "sheet_x": 9,
- "sheet_y": 3,
- "short_name": "game_die",
- "short_names": ["game_die"],
- "text": null,
- "texts": null,
- "category": "Activities",
- "sort_order": 61,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "penguin": {
- "char": "\ud83d\udc27",
- "key": "penguin",
- "keywords": ["penguin", "PENGUIN"],
- "category": "animals_and_nature",
- "lib": {
- "name": "PENGUIN",
- "unified": "1F427",
- "non_qualified": null,
- "docomo": "E750",
- "au": "E4DC",
- "softbank": "E055",
- "google": "FE1BC",
- "image": "1f427.png",
- "sheet_x": 13,
- "sheet_y": 5,
- "short_name": "penguin",
- "short_names": ["penguin"],
- "text": null,
- "texts": null,
- "category": "Animals & Nature",
- "sort_order": 61,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "barber": {
- "char": "\ud83d\udc88",
- "key": "barber",
- "keywords": ["barber", "BARBER POLE"],
- "category": "travel_and_places",
- "lib": {
- "name": "BARBER POLE",
- "unified": "1F488",
- "non_qualified": null,
- "docomo": null,
- "au": "EAA2",
- "softbank": "E320",
- "google": "FE199",
- "image": "1f488.png",
- "sheet_x": 25,
- "sheet_y": 6,
- "short_name": "barber",
- "short_names": ["barber"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 61,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "book": {
- "char": "\ud83d\udcd6",
- "key": "book",
- "keywords": ["book", "OPEN BOOK"],
- "category": "objects",
- "lib": {
- "name": "OPEN BOOK",
- "unified": "1F4D6",
- "non_qualified": null,
- "docomo": "E683",
- "au": "E49F",
- "softbank": "E148",
- "google": "FE546",
- "image": "1f4d6.png",
- "sheet_x": 26,
- "sheet_y": 36,
- "short_name": "book",
- "short_names": ["book", "open_book"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 61,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "weary": {
- "char": "\ud83d\ude29",
- "key": "weary",
- "keywords": ["weary", "WEARY FACE"],
- "category": "people",
- "lib": {
- "name": "WEARY FACE",
- "unified": "1F629",
- "non_qualified": null,
- "docomo": "E6F3",
- "au": "EB67",
- "softbank": null,
- "google": "FE321",
- "image": "1f629.png",
- "sheet_x": 31,
- "sheet_y": 31,
- "short_name": "weary",
- "short_names": ["weary"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 61,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "taurus": {
- "char": "\u2649",
- "key": "taurus",
- "keywords": ["taurus", "TAURUS"],
- "category": "symbols",
- "lib": {
- "name": "TAURUS",
- "unified": "2649",
- "non_qualified": null,
- "docomo": "E647",
- "au": "E490",
- "softbank": "E240",
- "google": "FE02C",
- "image": "2649.png",
- "sheet_x": 49,
- "sheet_y": 35,
- "short_name": "taurus",
- "short_names": ["taurus"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 61,
- "added_in": "1.1",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "flag-cw": {
- "char": "\ud83c\udde8\ud83c\uddfc",
- "key": "flag-cw",
- "keywords": ["flag-cw", "Cura\u00e7ao Flag"],
- "category": "flags",
- "lib": {
- "name": "Cura\u00e7ao Flag",
- "unified": "1F1E8-1F1FC",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1e8-1f1fc.png",
- "sheet_x": 1,
- "sheet_y": 32,
- "short_name": "flag-cw",
- "short_names": ["flag-cw"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 62,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "curry": {
- "char": "\ud83c\udf5b",
- "key": "curry",
- "keywords": ["curry", "CURRY AND RICE"],
- "category": "food_and_drink",
- "lib": {
- "name": "CURRY AND RICE",
- "unified": "1F35B",
- "non_qualified": null,
- "docomo": null,
- "au": "EAB6",
- "softbank": "E341",
- "google": "FE96C",
- "image": "1f35b.png",
- "sheet_x": 7,
- "sheet_y": 22,
- "short_name": "curry",
- "short_names": ["curry"],
- "text": null,
- "texts": null,
- "category": "Food & Drink",
- "sort_order": 62,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "circus_tent": {
- "char": "\ud83c\udfaa",
- "key": "circus_tent",
- "keywords": ["circus_tent", "CIRCUS TENT"],
- "category": "travel_and_places",
- "lib": {
- "name": "CIRCUS TENT",
- "unified": "1F3AA",
- "non_qualified": null,
- "docomo": "E67D",
- "au": "E59E",
- "softbank": null,
- "google": "FE806",
- "image": "1f3aa.png",
- "sheet_x": 8,
- "sheet_y": 48,
- "short_name": "circus_tent",
- "short_names": ["circus_tent"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 62,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "green_book": {
- "char": "\ud83d\udcd7",
- "key": "green_book",
- "keywords": ["green_book", "GREEN BOOK"],
- "category": "objects",
- "lib": {
- "name": "GREEN BOOK",
- "unified": "1F4D7",
- "non_qualified": null,
- "docomo": "E683",
- "au": "E565",
- "softbank": null,
- "google": "FE4FF",
- "image": "1f4d7.png",
- "sheet_x": 26,
- "sheet_y": 37,
- "short_name": "green_book",
- "short_names": ["green_book"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 62,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "dove_of_peace": {
- "char": "\ud83d\udd4a\ufe0f",
- "key": "dove_of_peace",
- "keywords": ["dove_of_peace", ""],
- "category": "animals_and_nature",
- "lib": {
- "name": null,
- "unified": "1F54A-FE0F",
- "non_qualified": "1F54A",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f54a-fe0f.png",
- "sheet_x": 28,
- "sheet_y": 34,
- "short_name": "dove_of_peace",
- "short_names": ["dove_of_peace"],
- "text": null,
- "texts": null,
- "category": "Animals & Nature",
- "sort_order": 62,
- "added_in": "7.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "exploding_head": {
- "char": "\ud83e\udd2f",
- "key": "exploding_head",
- "keywords": ["exploding_head", "SHOCKED FACE WITH EXPLODING HEAD"],
- "category": "people",
- "lib": {
- "name": "SHOCKED FACE WITH EXPLODING HEAD",
- "unified": "1F92F",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f92f.png",
- "sheet_x": 39,
- "sheet_y": 14,
- "short_name": "exploding_head",
- "short_names": ["exploding_head", "shocked_face_with_exploding_head"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 62,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "jigsaw": {
- "char": "\ud83e\udde9",
- "key": "jigsaw",
- "keywords": ["jigsaw", "JIGSAW PUZZLE PIECE"],
- "category": "activity",
- "lib": {
- "name": "JIGSAW PUZZLE PIECE",
- "unified": "1F9E9",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f9e9.png",
- "sheet_x": 47,
- "sheet_y": 50,
- "short_name": "jigsaw",
- "short_names": ["jigsaw"],
- "text": null,
- "texts": null,
- "category": "Activities",
- "sort_order": 62,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- },
- "gemini": {
- "char": "\u264a",
- "key": "gemini",
- "keywords": ["gemini", "GEMINI"],
- "category": "symbols",
- "lib": {
- "name": "GEMINI",
- "unified": "264A",
- "non_qualified": null,
- "docomo": "E648",
- "au": "E491",
- "softbank": "E241",
- "google": "FE02D",
- "image": "264a.png",
- "sheet_x": 49,
- "sheet_y": 36,
- "short_name": "gemini",
- "short_names": ["gemini"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 62,
- "added_in": "1.1",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "flag-cx": {
- "char": "\ud83c\udde8\ud83c\uddfd",
- "key": "flag-cx",
- "keywords": ["flag-cx", "Christmas Island Flag"],
- "category": "flags",
- "lib": {
- "name": "Christmas Island Flag",
- "unified": "1F1E8-1F1FD",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1e8-1f1fd.png",
- "sheet_x": 1,
- "sheet_y": 33,
- "short_name": "flag-cx",
- "short_names": ["flag-cx"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 63,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "ramen": {
- "char": "\ud83c\udf5c",
- "key": "ramen",
- "keywords": ["ramen", "STEAMING BOWL"],
- "category": "food_and_drink",
- "lib": {
- "name": "STEAMING BOWL",
- "unified": "1F35C",
- "non_qualified": null,
- "docomo": "E74C",
- "au": "E5B4",
- "softbank": "E340",
- "google": "FE963",
- "image": "1f35c.png",
- "sheet_x": 7,
- "sheet_y": 23,
- "short_name": "ramen",
- "short_names": ["ramen"],
- "text": null,
- "texts": null,
- "category": "Food & Drink",
- "sort_order": 63,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "blue_book": {
- "char": "\ud83d\udcd8",
- "key": "blue_book",
- "keywords": ["blue_book", "BLUE BOOK"],
- "category": "objects",
- "lib": {
- "name": "BLUE BOOK",
- "unified": "1F4D8",
- "non_qualified": null,
- "docomo": "E683",
- "au": "E566",
- "softbank": null,
- "google": "FE500",
- "image": "1f4d8.png",
- "sheet_x": 26,
- "sheet_y": 38,
- "short_name": "blue_book",
- "short_names": ["blue_book"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 63,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "grimacing": {
- "char": "\ud83d\ude2c",
- "key": "grimacing",
- "keywords": ["grimacing", "GRIMACING FACE"],
- "category": "people",
- "lib": {
- "name": "GRIMACING FACE",
- "unified": "1F62C",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f62c.png",
- "sheet_x": 31,
- "sheet_y": 34,
- "short_name": "grimacing",
- "short_names": ["grimacing"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 63,
- "added_in": "6.1",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "steam_locomotive": {
- "char": "\ud83d\ude82",
- "key": "steam_locomotive",
- "keywords": ["steam_locomotive", "STEAM LOCOMOTIVE"],
- "category": "travel_and_places",
- "lib": {
- "name": "STEAM LOCOMOTIVE",
- "unified": "1F682",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f682.png",
- "sheet_x": 34,
- "sheet_y": 25,
- "short_name": "steam_locomotive",
- "short_names": ["steam_locomotive"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 63,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "eagle": {
- "char": "\ud83e\udd85",
- "key": "eagle",
- "keywords": ["eagle", "EAGLE"],
- "category": "animals_and_nature",
- "lib": {
- "name": "EAGLE",
- "unified": "1F985",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f985.png",
- "sheet_x": 43,
- "sheet_y": 1,
- "short_name": "eagle",
- "short_names": ["eagle"],
- "text": null,
- "texts": null,
- "category": "Animals & Nature",
- "sort_order": 63,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "teddy_bear": {
- "char": "\ud83e\uddf8",
- "key": "teddy_bear",
- "keywords": ["teddy_bear", "TEDDY BEAR"],
- "category": "activity",
- "lib": {
- "name": "TEDDY BEAR",
- "unified": "1F9F8",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f9f8.png",
- "sheet_x": 48,
- "sheet_y": 12,
- "short_name": "teddy_bear",
- "short_names": ["teddy_bear"],
- "text": null,
- "texts": null,
- "category": "Activities",
- "sort_order": 63,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- },
- "cancer": {
- "char": "\u264b",
- "key": "cancer",
- "keywords": ["cancer", "CANCER"],
- "category": "symbols",
- "lib": {
- "name": "CANCER",
- "unified": "264B",
- "non_qualified": null,
- "docomo": "E649",
- "au": "E492",
- "softbank": "E242",
- "google": "FE02E",
- "image": "264b.png",
- "sheet_x": 49,
- "sheet_y": 37,
- "short_name": "cancer",
- "short_names": ["cancer"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 63,
- "added_in": "1.1",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "flag-cy": {
- "char": "\ud83c\udde8\ud83c\uddfe",
- "key": "flag-cy",
- "keywords": ["flag-cy", "Cyprus Flag"],
- "category": "flags",
- "lib": {
- "name": "Cyprus Flag",
- "unified": "1F1E8-1F1FE",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1e8-1f1fe.png",
- "sheet_x": 1,
- "sheet_y": 34,
- "short_name": "flag-cy",
- "short_names": ["flag-cy"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 64,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "spaghetti": {
- "char": "\ud83c\udf5d",
- "key": "spaghetti",
- "keywords": ["spaghetti", "SPAGHETTI"],
- "category": "food_and_drink",
- "lib": {
- "name": "SPAGHETTI",
- "unified": "1F35D",
- "non_qualified": null,
- "docomo": null,
- "au": "EAB5",
- "softbank": "E33F",
- "google": "FE96B",
- "image": "1f35d.png",
- "sheet_x": 7,
- "sheet_y": 24,
- "short_name": "spaghetti",
- "short_names": ["spaghetti"],
- "text": null,
- "texts": null,
- "category": "Food & Drink",
- "sort_order": 64,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "orange_book": {
- "char": "\ud83d\udcd9",
- "key": "orange_book",
- "keywords": ["orange_book", "ORANGE BOOK"],
- "category": "objects",
- "lib": {
- "name": "ORANGE BOOK",
- "unified": "1F4D9",
- "non_qualified": null,
- "docomo": "E683",
- "au": "E567",
- "softbank": null,
- "google": "FE501",
- "image": "1f4d9.png",
- "sheet_x": 26,
- "sheet_y": 39,
- "short_name": "orange_book",
- "short_names": ["orange_book"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 64,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "cold_sweat": {
- "char": "\ud83d\ude30",
- "key": "cold_sweat",
- "keywords": ["cold_sweat", "FACE WITH OPEN MOUTH AND COLD SWEAT"],
- "category": "people",
- "lib": {
- "name": "FACE WITH OPEN MOUTH AND COLD SWEAT",
- "unified": "1F630",
- "non_qualified": null,
- "docomo": "E723",
- "au": "EACB",
- "softbank": "E40F",
- "google": "FE325",
- "image": "1f630.png",
- "sheet_x": 31,
- "sheet_y": 38,
- "short_name": "cold_sweat",
- "short_names": ["cold_sweat"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 64,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "railway_car": {
- "char": "\ud83d\ude83",
- "key": "railway_car",
- "keywords": ["railway_car", "RAILWAY CAR"],
- "category": "travel_and_places",
- "lib": {
- "name": "RAILWAY CAR",
- "unified": "1F683",
- "non_qualified": null,
- "docomo": "E65B",
- "au": "E4B5",
- "softbank": "E01E",
- "google": "FE7DF",
- "image": "1f683.png",
- "sheet_x": 34,
- "sheet_y": 26,
- "short_name": "railway_car",
- "short_names": ["railway_car"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 64,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "duck": {
- "char": "\ud83e\udd86",
- "key": "duck",
- "keywords": ["duck", "DUCK"],
- "category": "animals_and_nature",
- "lib": {
- "name": "DUCK",
- "unified": "1F986",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f986.png",
- "sheet_x": 43,
- "sheet_y": 2,
- "short_name": "duck",
- "short_names": ["duck"],
- "text": null,
- "texts": null,
- "category": "Animals & Nature",
- "sort_order": 64,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "leo": {
- "char": "\u264c",
- "key": "leo",
- "keywords": ["leo", "LEO"],
- "category": "symbols",
- "lib": {
- "name": "LEO",
- "unified": "264C",
- "non_qualified": null,
- "docomo": "E64A",
- "au": "E493",
- "softbank": "E243",
- "google": "FE02F",
- "image": "264c.png",
- "sheet_x": 49,
- "sheet_y": 38,
- "short_name": "leo",
- "short_names": ["leo"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 64,
- "added_in": "1.1",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "spades": {
- "char": "\u2660\ufe0f",
- "key": "spades",
- "keywords": ["spades", "BLACK SPADE SUIT"],
- "category": "activity",
- "lib": {
- "name": "BLACK SPADE SUIT",
- "unified": "2660-FE0F",
- "non_qualified": "2660",
- "docomo": "E68E",
- "au": "E5A1",
- "softbank": "E20E",
- "google": "FEB1B",
- "image": "2660-fe0f.png",
- "sheet_x": 49,
- "sheet_y": 47,
- "short_name": "spades",
- "short_names": ["spades"],
- "text": null,
- "texts": null,
- "category": "Activities",
- "sort_order": 64,
- "added_in": "1.1",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "flag-cz": {
- "char": "\ud83c\udde8\ud83c\uddff",
- "key": "flag-cz",
- "keywords": ["flag-cz", "Czechia Flag"],
- "category": "flags",
- "lib": {
- "name": "Czechia Flag",
- "unified": "1F1E8-1F1FF",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1e8-1f1ff.png",
- "sheet_x": 1,
- "sheet_y": 35,
- "short_name": "flag-cz",
- "short_names": ["flag-cz"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 65,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "sweet_potato": {
- "char": "\ud83c\udf60",
- "key": "sweet_potato",
- "keywords": ["sweet_potato", "ROASTED SWEET POTATO"],
- "category": "food_and_drink",
- "lib": {
- "name": "ROASTED SWEET POTATO",
- "unified": "1F360",
- "non_qualified": null,
- "docomo": null,
- "au": "EB3A",
- "softbank": null,
- "google": "FE974",
- "image": "1f360.png",
- "sheet_x": 7,
- "sheet_y": 27,
- "short_name": "sweet_potato",
- "short_names": ["sweet_potato"],
- "text": null,
- "texts": null,
- "category": "Food & Drink",
- "sort_order": 65,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "books": {
- "char": "\ud83d\udcda",
- "key": "books",
- "keywords": ["books", "BOOKS"],
- "category": "objects",
- "lib": {
- "name": "BOOKS",
- "unified": "1F4DA",
- "non_qualified": null,
- "docomo": "E683",
- "au": "E56F",
- "softbank": null,
- "google": "FE503",
- "image": "1f4da.png",
- "sheet_x": 26,
- "sheet_y": 40,
- "short_name": "books",
- "short_names": ["books"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 65,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "scream": {
- "char": "\ud83d\ude31",
- "key": "scream",
- "keywords": ["scream", "FACE SCREAMING IN FEAR"],
- "category": "people",
- "lib": {
- "name": "FACE SCREAMING IN FEAR",
- "unified": "1F631",
- "non_qualified": null,
- "docomo": "E757",
- "au": "E5C5",
- "softbank": "E107",
- "google": "FE341",
- "image": "1f631.png",
- "sheet_x": 31,
- "sheet_y": 39,
- "short_name": "scream",
- "short_names": ["scream"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 65,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "bullettrain_side": {
- "char": "\ud83d\ude84",
- "key": "bullettrain_side",
- "keywords": ["bullettrain_side", "HIGH-SPEED TRAIN"],
- "category": "travel_and_places",
- "lib": {
- "name": "HIGH-SPEED TRAIN",
- "unified": "1F684",
- "non_qualified": null,
- "docomo": "E65D",
- "au": "E4B0",
- "softbank": "E435",
- "google": "FE7E2",
- "image": "1f684.png",
- "sheet_x": 34,
- "sheet_y": 27,
- "short_name": "bullettrain_side",
- "short_names": ["bullettrain_side"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 65,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "swan": {
- "char": "\ud83e\udda2",
- "key": "swan",
- "keywords": ["swan", "SWAN"],
- "category": "animals_and_nature",
- "lib": {
- "name": "SWAN",
- "unified": "1F9A2",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f9a2.png",
- "sheet_x": 43,
- "sheet_y": 30,
- "short_name": "swan",
- "short_names": ["swan"],
- "text": null,
- "texts": null,
- "category": "Animals & Nature",
- "sort_order": 65,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- },
- "virgo": {
- "char": "\u264d",
- "key": "virgo",
- "keywords": ["virgo", "VIRGO"],
- "category": "symbols",
- "lib": {
- "name": "VIRGO",
- "unified": "264D",
- "non_qualified": null,
- "docomo": "E64B",
- "au": "E494",
- "softbank": "E244",
- "google": "FE030",
- "image": "264d.png",
- "sheet_x": 49,
- "sheet_y": 39,
- "short_name": "virgo",
- "short_names": ["virgo"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 65,
- "added_in": "1.1",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "hearts": {
- "char": "\u2665\ufe0f",
- "key": "hearts",
- "keywords": ["hearts", "BLACK HEART SUIT"],
- "category": "activity",
- "lib": {
- "name": "BLACK HEART SUIT",
- "unified": "2665-FE0F",
- "non_qualified": "2665",
- "docomo": "E68D",
- "au": "EAA5",
- "softbank": "E20C",
- "google": "FEB1A",
- "image": "2665-fe0f.png",
- "sheet_x": 49,
- "sheet_y": 49,
- "short_name": "hearts",
- "short_names": ["hearts"],
- "text": null,
- "texts": null,
- "category": "Activities",
- "sort_order": 65,
- "added_in": "1.1",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "de": {
- "char": "\ud83c\udde9\ud83c\uddea",
- "key": "de",
- "keywords": ["de", "Germany Flag"],
- "category": "flags",
- "lib": {
- "name": "Germany Flag",
- "unified": "1F1E9-1F1EA",
- "non_qualified": null,
- "docomo": null,
- "au": "EB0E",
- "softbank": "E50E",
- "google": "FE4E8",
- "image": "1f1e9-1f1ea.png",
- "sheet_x": 1,
- "sheet_y": 36,
- "short_name": "de",
- "short_names": ["de", "flag-de"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 66,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "oden": {
- "char": "\ud83c\udf62",
- "key": "oden",
- "keywords": ["oden", "ODEN"],
- "category": "food_and_drink",
- "lib": {
- "name": "ODEN",
- "unified": "1F362",
- "non_qualified": null,
- "docomo": null,
- "au": "EAB7",
- "softbank": "E343",
- "google": "FE96D",
- "image": "1f362.png",
- "sheet_x": 7,
- "sheet_y": 29,
- "short_name": "oden",
- "short_names": ["oden"],
- "text": null,
- "texts": null,
- "category": "Food & Drink",
- "sort_order": 66,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "notebook": {
- "char": "\ud83d\udcd3",
- "key": "notebook",
- "keywords": ["notebook", "NOTEBOOK"],
- "category": "objects",
- "lib": {
- "name": "NOTEBOOK",
- "unified": "1F4D3",
- "non_qualified": null,
- "docomo": "E683",
- "au": "E56B",
- "softbank": null,
- "google": "FE545",
- "image": "1f4d3.png",
- "sheet_x": 26,
- "sheet_y": 33,
- "short_name": "notebook",
- "short_names": ["notebook"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 66,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "bullettrain_front": {
- "char": "\ud83d\ude85",
- "key": "bullettrain_front",
- "keywords": ["bullettrain_front", "HIGH-SPEED TRAIN WITH BULLET NOSE"],
- "category": "travel_and_places",
- "lib": {
- "name": "HIGH-SPEED TRAIN WITH BULLET NOSE",
- "unified": "1F685",
- "non_qualified": null,
- "docomo": "E65D",
- "au": "E4B0",
- "softbank": "E01F",
- "google": "FE7E3",
- "image": "1f685.png",
- "sheet_x": 34,
- "sheet_y": 28,
- "short_name": "bullettrain_front",
- "short_names": ["bullettrain_front"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 66,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "hot_face": {
- "char": "\ud83e\udd75",
- "key": "hot_face",
- "keywords": ["hot_face", "OVERHEATED FACE"],
- "category": "people",
- "lib": {
- "name": "OVERHEATED FACE",
- "unified": "1F975",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f975.png",
- "sheet_x": 42,
- "sheet_y": 42,
- "short_name": "hot_face",
- "short_names": ["hot_face"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 66,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- },
- "owl": {
- "char": "\ud83e\udd89",
- "key": "owl",
- "keywords": ["owl", "OWL"],
- "category": "animals_and_nature",
- "lib": {
- "name": "OWL",
- "unified": "1F989",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f989.png",
- "sheet_x": 43,
- "sheet_y": 5,
- "short_name": "owl",
- "short_names": ["owl"],
- "text": null,
- "texts": null,
- "category": "Animals & Nature",
- "sort_order": 66,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "libra": {
- "char": "\u264e",
- "key": "libra",
- "keywords": ["libra", "LIBRA"],
- "category": "symbols",
- "lib": {
- "name": "LIBRA",
- "unified": "264E",
- "non_qualified": null,
- "docomo": "E64C",
- "au": "E495",
- "softbank": "E245",
- "google": "FE031",
- "image": "264e.png",
- "sheet_x": 49,
- "sheet_y": 40,
- "short_name": "libra",
- "short_names": ["libra"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 66,
- "added_in": "1.1",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "diamonds": {
- "char": "\u2666\ufe0f",
- "key": "diamonds",
- "keywords": ["diamonds", "BLACK DIAMOND SUIT"],
- "category": "activity",
- "lib": {
- "name": "BLACK DIAMOND SUIT",
- "unified": "2666-FE0F",
- "non_qualified": "2666",
- "docomo": "E68F",
- "au": "E5A2",
- "softbank": "E20D",
- "google": "FEB1C",
- "image": "2666-fe0f.png",
- "sheet_x": 49,
- "sheet_y": 50,
- "short_name": "diamonds",
- "short_names": ["diamonds"],
- "text": null,
- "texts": null,
- "category": "Activities",
- "sort_order": 66,
- "added_in": "1.1",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "flag-dg": {
- "char": "\ud83c\udde9\ud83c\uddec",
- "key": "flag-dg",
- "keywords": ["flag-dg", "Diego Garcia Flag"],
- "category": "flags",
- "lib": {
- "name": "Diego Garcia Flag",
- "unified": "1F1E9-1F1EC",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1e9-1f1ec.png",
- "sheet_x": 1,
- "sheet_y": 37,
- "short_name": "flag-dg",
- "short_names": ["flag-dg"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 67,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": false,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "sushi": {
- "char": "\ud83c\udf63",
- "key": "sushi",
- "keywords": ["sushi", "SUSHI"],
- "category": "food_and_drink",
- "lib": {
- "name": "SUSHI",
- "unified": "1F363",
- "non_qualified": null,
- "docomo": null,
- "au": "EAB8",
- "softbank": "E344",
- "google": "FE96E",
- "image": "1f363.png",
- "sheet_x": 7,
- "sheet_y": 30,
- "short_name": "sushi",
- "short_names": ["sushi"],
- "text": null,
- "texts": null,
- "category": "Food & Drink",
- "sort_order": 67,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "ledger": {
- "char": "\ud83d\udcd2",
- "key": "ledger",
- "keywords": ["ledger", "LEDGER"],
- "category": "objects",
- "lib": {
- "name": "LEDGER",
- "unified": "1F4D2",
- "non_qualified": null,
- "docomo": "E683",
- "au": "E56E",
- "softbank": null,
- "google": "FE54F",
- "image": "1f4d2.png",
- "sheet_x": 26,
- "sheet_y": 32,
- "short_name": "ledger",
- "short_names": ["ledger"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 67,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "train2": {
- "char": "\ud83d\ude86",
- "key": "train2",
- "keywords": ["train2", "TRAIN"],
- "category": "travel_and_places",
- "lib": {
- "name": "TRAIN",
- "unified": "1F686",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f686.png",
- "sheet_x": 34,
- "sheet_y": 29,
- "short_name": "train2",
- "short_names": ["train2"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 67,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "cold_face": {
- "char": "\ud83e\udd76",
- "key": "cold_face",
- "keywords": ["cold_face", "FREEZING FACE"],
- "category": "people",
- "lib": {
- "name": "FREEZING FACE",
- "unified": "1F976",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f976.png",
- "sheet_x": 42,
- "sheet_y": 43,
- "short_name": "cold_face",
- "short_names": ["cold_face"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 67,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- },
- "peacock": {
- "char": "\ud83e\udd9a",
- "key": "peacock",
- "keywords": ["peacock", "PEACOCK"],
- "category": "animals_and_nature",
- "lib": {
- "name": "PEACOCK",
- "unified": "1F99A",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f99a.png",
- "sheet_x": 43,
- "sheet_y": 22,
- "short_name": "peacock",
- "short_names": ["peacock"],
- "text": null,
- "texts": null,
- "category": "Animals & Nature",
- "sort_order": 67,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- },
- "scorpius": {
- "char": "\u264f",
- "key": "scorpius",
- "keywords": ["scorpius", "SCORPIUS"],
- "category": "symbols",
- "lib": {
- "name": "SCORPIUS",
- "unified": "264F",
- "non_qualified": null,
- "docomo": "E64D",
- "au": "E496",
- "softbank": "E246",
- "google": "FE032",
- "image": "264f.png",
- "sheet_x": 49,
- "sheet_y": 41,
- "short_name": "scorpius",
- "short_names": ["scorpius"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 67,
- "added_in": "1.1",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "clubs": {
- "char": "\u2663\ufe0f",
- "key": "clubs",
- "keywords": ["clubs", "BLACK CLUB SUIT"],
- "category": "activity",
- "lib": {
- "name": "BLACK CLUB SUIT",
- "unified": "2663-FE0F",
- "non_qualified": "2663",
- "docomo": "E690",
- "au": "E5A3",
- "softbank": "E20F",
- "google": "FEB1D",
- "image": "2663-fe0f.png",
- "sheet_x": 49,
- "sheet_y": 48,
- "short_name": "clubs",
- "short_names": ["clubs"],
- "text": null,
- "texts": null,
- "category": "Activities",
- "sort_order": 67,
- "added_in": "1.1",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "flag-dj": {
- "char": "\ud83c\udde9\ud83c\uddef",
- "key": "flag-dj",
- "keywords": ["flag-dj", "Djibouti Flag"],
- "category": "flags",
- "lib": {
- "name": "Djibouti Flag",
- "unified": "1F1E9-1F1EF",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1e9-1f1ef.png",
- "sheet_x": 1,
- "sheet_y": 38,
- "short_name": "flag-dj",
- "short_names": ["flag-dj"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 68,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "fried_shrimp": {
- "char": "\ud83c\udf64",
- "key": "fried_shrimp",
- "keywords": ["fried_shrimp", "FRIED SHRIMP"],
- "category": "food_and_drink",
- "lib": {
- "name": "FRIED SHRIMP",
- "unified": "1F364",
- "non_qualified": null,
- "docomo": null,
- "au": "EB70",
- "softbank": null,
- "google": "FE97F",
- "image": "1f364.png",
- "sheet_x": 7,
- "sheet_y": 31,
- "short_name": "fried_shrimp",
- "short_names": ["fried_shrimp"],
- "text": null,
- "texts": null,
- "category": "Food & Drink",
- "sort_order": 68,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "page_with_curl": {
- "char": "\ud83d\udcc3",
- "key": "page_with_curl",
- "keywords": ["page_with_curl", "PAGE WITH CURL"],
- "category": "objects",
- "lib": {
- "name": "PAGE WITH CURL",
- "unified": "1F4C3",
- "non_qualified": null,
- "docomo": "E689",
- "au": "E561",
- "softbank": null,
- "google": "FE540",
- "image": "1f4c3.png",
- "sheet_x": 26,
- "sheet_y": 17,
- "short_name": "page_with_curl",
- "short_names": ["page_with_curl"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 68,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "flushed": {
- "char": "\ud83d\ude33",
- "key": "flushed",
- "keywords": ["flushed", "FLUSHED FACE"],
- "category": "people",
- "lib": {
- "name": "FLUSHED FACE",
- "unified": "1F633",
- "non_qualified": null,
- "docomo": "E72A",
- "au": "EAC8",
- "softbank": "E40D",
- "google": "FE32F",
- "image": "1f633.png",
- "sheet_x": 31,
- "sheet_y": 41,
- "short_name": "flushed",
- "short_names": ["flushed"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 68,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "metro": {
- "char": "\ud83d\ude87",
- "key": "metro",
- "keywords": ["metro", "METRO"],
- "category": "travel_and_places",
- "lib": {
- "name": "METRO",
- "unified": "1F687",
- "non_qualified": null,
- "docomo": "E65C",
- "au": "E5BC",
- "softbank": "E434",
- "google": "FE7E0",
- "image": "1f687.png",
- "sheet_x": 34,
- "sheet_y": 30,
- "short_name": "metro",
- "short_names": ["metro"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 68,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "parrot": {
- "char": "\ud83e\udd9c",
- "key": "parrot",
- "keywords": ["parrot", "PARROT"],
- "category": "animals_and_nature",
- "lib": {
- "name": "PARROT",
- "unified": "1F99C",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f99c.png",
- "sheet_x": 43,
- "sheet_y": 24,
- "short_name": "parrot",
- "short_names": ["parrot"],
- "text": null,
- "texts": null,
- "category": "Animals & Nature",
- "sort_order": 68,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- },
- "sagittarius": {
- "char": "\u2650",
- "key": "sagittarius",
- "keywords": ["sagittarius", "SAGITTARIUS"],
- "category": "symbols",
- "lib": {
- "name": "SAGITTARIUS",
- "unified": "2650",
- "non_qualified": null,
- "docomo": "E64E",
- "au": "E497",
- "softbank": "E247",
- "google": "FE033",
- "image": "2650.png",
- "sheet_x": 49,
- "sheet_y": 42,
- "short_name": "sagittarius",
- "short_names": ["sagittarius"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 68,
- "added_in": "1.1",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "chess_pawn": {
- "char": "\u265f\ufe0f",
- "key": "chess_pawn",
- "keywords": ["chess_pawn", ""],
- "category": "activity",
- "lib": {
- "name": null,
- "unified": "265F-FE0F",
- "non_qualified": "265F",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "265f-fe0f.png",
- "sheet_x": 49,
- "sheet_y": 46,
- "short_name": "chess_pawn",
- "short_names": ["chess_pawn"],
- "text": null,
- "texts": null,
- "category": "Activities",
- "sort_order": 68,
- "added_in": "1.1",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- },
- "black_joker": {
- "char": "\ud83c\udccf",
- "key": "black_joker",
- "keywords": ["black_joker", "PLAYING CARD BLACK JOKER"],
- "category": "activity",
- "lib": {
- "name": "PLAYING CARD BLACK JOKER",
- "unified": "1F0CF",
- "non_qualified": null,
- "docomo": null,
- "au": "EB6F",
- "softbank": null,
- "google": "FE812",
- "image": "1f0cf.png",
- "sheet_x": 0,
- "sheet_y": 15,
- "short_name": "black_joker",
- "short_names": ["black_joker"],
- "text": null,
- "texts": null,
- "category": "Activities",
- "sort_order": 69,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "flag-dk": {
- "char": "\ud83c\udde9\ud83c\uddf0",
- "key": "flag-dk",
- "keywords": ["flag-dk", "Denmark Flag"],
- "category": "flags",
- "lib": {
- "name": "Denmark Flag",
- "unified": "1F1E9-1F1F0",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1e9-1f1f0.png",
- "sheet_x": 1,
- "sheet_y": 39,
- "short_name": "flag-dk",
- "short_names": ["flag-dk"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 69,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "fish_cake": {
- "char": "\ud83c\udf65",
- "key": "fish_cake",
- "keywords": ["fish_cake", "FISH CAKE WITH SWIRL DESIGN"],
- "category": "food_and_drink",
- "lib": {
- "name": "FISH CAKE WITH SWIRL DESIGN",
- "unified": "1F365",
- "non_qualified": null,
- "docomo": "E643",
- "au": "E4ED",
- "softbank": null,
- "google": "FE973",
- "image": "1f365.png",
- "sheet_x": 7,
- "sheet_y": 32,
- "short_name": "fish_cake",
- "short_names": ["fish_cake"],
- "text": null,
- "texts": null,
- "category": "Food & Drink",
- "sort_order": 69,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "frog": {
- "char": "\ud83d\udc38",
- "key": "frog",
- "keywords": ["frog", "FROG FACE"],
- "category": "animals_and_nature",
- "lib": {
- "name": "FROG FACE",
- "unified": "1F438",
- "non_qualified": null,
- "docomo": null,
- "au": "E4DA",
- "softbank": "E531",
- "google": "FE1D7",
- "image": "1f438.png",
- "sheet_x": 13,
- "sheet_y": 22,
- "short_name": "frog",
- "short_names": ["frog"],
- "text": null,
- "texts": null,
- "category": "Animals & Nature",
- "sort_order": 69,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "scroll": {
- "char": "\ud83d\udcdc",
- "key": "scroll",
- "keywords": ["scroll", "SCROLL"],
- "category": "objects",
- "lib": {
- "name": "SCROLL",
- "unified": "1F4DC",
- "non_qualified": null,
- "docomo": "E70A",
- "au": "E55F",
- "softbank": null,
- "google": "FE4FD",
- "image": "1f4dc.png",
- "sheet_x": 26,
- "sheet_y": 42,
- "short_name": "scroll",
- "short_names": ["scroll"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 69,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "light_rail": {
- "char": "\ud83d\ude88",
- "key": "light_rail",
- "keywords": ["light_rail", "LIGHT RAIL"],
- "category": "travel_and_places",
- "lib": {
- "name": "LIGHT RAIL",
- "unified": "1F688",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f688.png",
- "sheet_x": 34,
- "sheet_y": 31,
- "short_name": "light_rail",
- "short_names": ["light_rail"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 69,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "zany_face": {
- "char": "\ud83e\udd2a",
- "key": "zany_face",
- "keywords": ["zany_face", "GRINNING FACE WITH ONE LARGE AND ONE SMALL EYE"],
- "category": "people",
- "lib": {
- "name": "GRINNING FACE WITH ONE LARGE AND ONE SMALL EYE",
- "unified": "1F92A",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f92a.png",
- "sheet_x": 39,
- "sheet_y": 9,
- "short_name": "zany_face",
- "short_names": ["zany_face", "grinning_face_with_one_large_and_one_small_eye"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 69,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "capricorn": {
- "char": "\u2651",
- "key": "capricorn",
- "keywords": ["capricorn", "CAPRICORN"],
- "category": "symbols",
- "lib": {
- "name": "CAPRICORN",
- "unified": "2651",
- "non_qualified": null,
- "docomo": "E64F",
- "au": "E498",
- "softbank": "E248",
- "google": "FE034",
- "image": "2651.png",
- "sheet_x": 49,
- "sheet_y": 43,
- "short_name": "capricorn",
- "short_names": ["capricorn"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 69,
- "added_in": "1.1",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "mahjong": {
- "char": "\ud83c\udc04",
- "key": "mahjong",
- "keywords": ["mahjong", "MAHJONG TILE RED DRAGON"],
- "category": "activity",
- "lib": {
- "name": "MAHJONG TILE RED DRAGON",
- "unified": "1F004",
- "non_qualified": null,
- "docomo": null,
- "au": "E5D1",
- "softbank": "E12D",
- "google": "FE80B",
- "image": "1f004.png",
- "sheet_x": 0,
- "sheet_y": 14,
- "short_name": "mahjong",
- "short_names": ["mahjong"],
- "text": null,
- "texts": null,
- "category": "Activities",
- "sort_order": 70,
- "added_in": "5.1",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "flag-dm": {
- "char": "\ud83c\udde9\ud83c\uddf2",
- "key": "flag-dm",
- "keywords": ["flag-dm", "Dominica Flag"],
- "category": "flags",
- "lib": {
- "name": "Dominica Flag",
- "unified": "1F1E9-1F1F2",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1e9-1f1f2.png",
- "sheet_x": 1,
- "sheet_y": 40,
- "short_name": "flag-dm",
- "short_names": ["flag-dm"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 70,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "crocodile": {
- "char": "\ud83d\udc0a",
- "key": "crocodile",
- "keywords": ["crocodile", "CROCODILE"],
- "category": "animals_and_nature",
- "lib": {
- "name": "CROCODILE",
- "unified": "1F40A",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f40a.png",
- "sheet_x": 12,
- "sheet_y": 29,
- "short_name": "crocodile",
- "short_names": ["crocodile"],
- "text": null,
- "texts": null,
- "category": "Animals & Nature",
- "sort_order": 70,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "page_facing_up": {
- "char": "\ud83d\udcc4",
- "key": "page_facing_up",
- "keywords": ["page_facing_up", "PAGE FACING UP"],
- "category": "objects",
- "lib": {
- "name": "PAGE FACING UP",
- "unified": "1F4C4",
- "non_qualified": null,
- "docomo": "E689",
- "au": "E569",
- "softbank": null,
- "google": "FE541",
- "image": "1f4c4.png",
- "sheet_x": 26,
- "sheet_y": 18,
- "short_name": "page_facing_up",
- "short_names": ["page_facing_up"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 70,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "dizzy_face": {
- "char": "\ud83d\ude35",
- "key": "dizzy_face",
- "keywords": ["dizzy_face", "DIZZY FACE"],
- "category": "people",
- "lib": {
- "name": "DIZZY FACE",
- "unified": "1F635",
- "non_qualified": null,
- "docomo": "E6F4",
- "au": "E5AE",
- "softbank": null,
- "google": "FE324",
- "image": "1f635.png",
- "sheet_x": 31,
- "sheet_y": 43,
- "short_name": "dizzy_face",
- "short_names": ["dizzy_face"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 70,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "station": {
- "char": "\ud83d\ude89",
- "key": "station",
- "keywords": ["station", "STATION"],
- "category": "travel_and_places",
- "lib": {
- "name": "STATION",
- "unified": "1F689",
- "non_qualified": null,
- "docomo": null,
- "au": "EB6D",
- "softbank": "E039",
- "google": "FE7EC",
- "image": "1f689.png",
- "sheet_x": 34,
- "sheet_y": 32,
- "short_name": "station",
- "short_names": ["station"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 70,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "moon_cake": {
- "char": "\ud83e\udd6e",
- "key": "moon_cake",
- "keywords": ["moon_cake", "MOON CAKE"],
- "category": "food_and_drink",
- "lib": {
- "name": "MOON CAKE",
- "unified": "1F96E",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f96e.png",
- "sheet_x": 42,
- "sheet_y": 37,
- "short_name": "moon_cake",
- "short_names": ["moon_cake"],
- "text": null,
- "texts": null,
- "category": "Food & Drink",
- "sort_order": 70,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- },
- "aquarius": {
- "char": "\u2652",
- "key": "aquarius",
- "keywords": ["aquarius", "AQUARIUS"],
- "category": "symbols",
- "lib": {
- "name": "AQUARIUS",
- "unified": "2652",
- "non_qualified": null,
- "docomo": "E650",
- "au": "E499",
- "softbank": "E249",
- "google": "FE035",
- "image": "2652.png",
- "sheet_x": 49,
- "sheet_y": 44,
- "short_name": "aquarius",
- "short_names": ["aquarius"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 70,
- "added_in": "1.1",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "flag-do": {
- "char": "\ud83c\udde9\ud83c\uddf4",
- "key": "flag-do",
- "keywords": ["flag-do", "Dominican Republic Flag"],
- "category": "flags",
- "lib": {
- "name": "Dominican Republic Flag",
- "unified": "1F1E9-1F1F4",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1e9-1f1f4.png",
- "sheet_x": 1,
- "sheet_y": 41,
- "short_name": "flag-do",
- "short_names": ["flag-do"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 71,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "dango": {
- "char": "\ud83c\udf61",
- "key": "dango",
- "keywords": ["dango", "DANGO"],
- "category": "food_and_drink",
- "lib": {
- "name": "DANGO",
- "unified": "1F361",
- "non_qualified": null,
- "docomo": null,
- "au": "EAB2",
- "softbank": "E33C",
- "google": "FE968",
- "image": "1f361.png",
- "sheet_x": 7,
- "sheet_y": 28,
- "short_name": "dango",
- "short_names": ["dango"],
- "text": null,
- "texts": null,
- "category": "Food & Drink",
- "sort_order": 71,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "flower_playing_cards": {
- "char": "\ud83c\udfb4",
- "key": "flower_playing_cards",
- "keywords": ["flower_playing_cards", "FLOWER PLAYING CARDS"],
- "category": "activity",
- "lib": {
- "name": "FLOWER PLAYING CARDS",
- "unified": "1F3B4",
- "non_qualified": null,
- "docomo": null,
- "au": "EB6E",
- "softbank": null,
- "google": "FE811",
- "image": "1f3b4.png",
- "sheet_x": 9,
- "sheet_y": 5,
- "short_name": "flower_playing_cards",
- "short_names": ["flower_playing_cards"],
- "text": null,
- "texts": null,
- "category": "Activities",
- "sort_order": 71,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "turtle": {
- "char": "\ud83d\udc22",
- "key": "turtle",
- "keywords": ["turtle", "TURTLE"],
- "category": "animals_and_nature",
- "lib": {
- "name": "TURTLE",
- "unified": "1F422",
- "non_qualified": null,
- "docomo": null,
- "au": "E5D4",
- "softbank": null,
- "google": "FE1DC",
- "image": "1f422.png",
- "sheet_x": 13,
- "sheet_y": 0,
- "short_name": "turtle",
- "short_names": ["turtle"],
- "text": null,
- "texts": null,
- "category": "Animals & Nature",
- "sort_order": 71,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "newspaper": {
- "char": "\ud83d\udcf0",
- "key": "newspaper",
- "keywords": ["newspaper", "NEWSPAPER"],
- "category": "objects",
- "lib": {
- "name": "NEWSPAPER",
- "unified": "1F4F0",
- "non_qualified": null,
- "docomo": null,
- "au": "E58B",
- "softbank": null,
- "google": "FE822",
- "image": "1f4f0.png",
- "sheet_x": 27,
- "sheet_y": 9,
- "short_name": "newspaper",
- "short_names": ["newspaper"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 71,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "rage": {
- "char": "\ud83d\ude21",
- "key": "rage",
- "keywords": ["rage", "POUTING FACE"],
- "category": "people",
- "lib": {
- "name": "POUTING FACE",
- "unified": "1F621",
- "non_qualified": null,
- "docomo": "E724",
- "au": "EB5D",
- "softbank": "E416",
- "google": "FE33D",
- "image": "1f621.png",
- "sheet_x": 31,
- "sheet_y": 23,
- "short_name": "rage",
- "short_names": ["rage"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 71,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "tram": {
- "char": "\ud83d\ude8a",
- "key": "tram",
- "keywords": ["tram", "TRAM"],
- "category": "travel_and_places",
- "lib": {
- "name": "TRAM",
- "unified": "1F68A",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f68a.png",
- "sheet_x": 34,
- "sheet_y": 33,
- "short_name": "tram",
- "short_names": ["tram"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 71,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "pisces": {
- "char": "\u2653",
- "key": "pisces",
- "keywords": ["pisces", "PISCES"],
- "category": "symbols",
- "lib": {
- "name": "PISCES",
- "unified": "2653",
- "non_qualified": null,
- "docomo": "E651",
- "au": "E49A",
- "softbank": "E24A",
- "google": "FE036",
- "image": "2653.png",
- "sheet_x": 49,
- "sheet_y": 45,
- "short_name": "pisces",
- "short_names": ["pisces"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 71,
- "added_in": "1.1",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "flag-dz": {
- "char": "\ud83c\udde9\ud83c\uddff",
- "key": "flag-dz",
- "keywords": ["flag-dz", "Algeria Flag"],
- "category": "flags",
- "lib": {
- "name": "Algeria Flag",
- "unified": "1F1E9-1F1FF",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1e9-1f1ff.png",
- "sheet_x": 1,
- "sheet_y": 42,
- "short_name": "flag-dz",
- "short_names": ["flag-dz"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 72,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "performing_arts": {
- "char": "\ud83c\udfad",
- "key": "performing_arts",
- "keywords": ["performing_arts", "PERFORMING ARTS"],
- "category": "activity",
- "lib": {
- "name": "PERFORMING ARTS",
- "unified": "1F3AD",
- "non_qualified": null,
- "docomo": null,
- "au": "E59D",
- "softbank": null,
- "google": "FE809",
- "image": "1f3ad.png",
- "sheet_x": 8,
- "sheet_y": 51,
- "short_name": "performing_arts",
- "short_names": ["performing_arts"],
- "text": null,
- "texts": null,
- "category": "Activities",
- "sort_order": 72,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "rolled_up_newspaper": {
- "char": "\ud83d\uddde\ufe0f",
- "key": "rolled_up_newspaper",
- "keywords": ["rolled_up_newspaper", ""],
- "category": "objects",
- "lib": {
- "name": null,
- "unified": "1F5DE-FE0F",
- "non_qualified": "1F5DE",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f5de-fe0f.png",
- "sheet_x": 30,
- "sheet_y": 31,
- "short_name": "rolled_up_newspaper",
- "short_names": ["rolled_up_newspaper"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 72,
- "added_in": "7.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "angry": {
- "char": "\ud83d\ude20",
- "key": "angry",
- "keywords": ["angry", "ANGRY FACE"],
- "category": "people",
- "lib": {
- "name": "ANGRY FACE",
- "unified": "1F620",
- "non_qualified": null,
- "docomo": "E6F1",
- "au": "E472",
- "softbank": "E059",
- "google": "FE320",
- "image": "1f620.png",
- "sheet_x": 31,
- "sheet_y": 22,
- "short_name": "angry",
- "short_names": ["angry"],
- "text": null,
- "texts": [">:(", ">:-("],
- "category": "Smileys & People",
- "sort_order": 72,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "monorail": {
- "char": "\ud83d\ude9d",
- "key": "monorail",
- "keywords": ["monorail", "MONORAIL"],
- "category": "travel_and_places",
- "lib": {
- "name": "MONORAIL",
- "unified": "1F69D",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f69d.png",
- "sheet_x": 34,
- "sheet_y": 52,
- "short_name": "monorail",
- "short_names": ["monorail"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 72,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "dumpling": {
- "char": "\ud83e\udd5f",
- "key": "dumpling",
- "keywords": ["dumpling", "DUMPLING"],
- "category": "food_and_drink",
- "lib": {
- "name": "DUMPLING",
- "unified": "1F95F",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f95f.png",
- "sheet_x": 42,
- "sheet_y": 22,
- "short_name": "dumpling",
- "short_names": ["dumpling"],
- "text": null,
- "texts": null,
- "category": "Food & Drink",
- "sort_order": 72,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "lizard": {
- "char": "\ud83e\udd8e",
- "key": "lizard",
- "keywords": ["lizard", "LIZARD"],
- "category": "animals_and_nature",
- "lib": {
- "name": "LIZARD",
- "unified": "1F98E",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f98e.png",
- "sheet_x": 43,
- "sheet_y": 10,
- "short_name": "lizard",
- "short_names": ["lizard"],
- "text": null,
- "texts": null,
- "category": "Animals & Nature",
- "sort_order": 72,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "ophiuchus": {
- "char": "\u26ce",
- "key": "ophiuchus",
- "keywords": ["ophiuchus", "OPHIUCHUS"],
- "category": "symbols",
- "lib": {
- "name": "OPHIUCHUS",
- "unified": "26CE",
- "non_qualified": null,
- "docomo": null,
- "au": "E49B",
- "softbank": "E24B",
- "google": "FE037",
- "image": "26ce.png",
- "sheet_x": 50,
- "sheet_y": 22,
- "short_name": "ophiuchus",
- "short_names": ["ophiuchus"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 72,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "flag-ea": {
- "char": "\ud83c\uddea\ud83c\udde6",
- "key": "flag-ea",
- "keywords": ["flag-ea", "Ceuta & Melilla Flag"],
- "category": "flags",
- "lib": {
- "name": "Ceuta & Melilla Flag",
- "unified": "1F1EA-1F1E6",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1ea-1f1e6.png",
- "sheet_x": 1,
- "sheet_y": 43,
- "short_name": "flag-ea",
- "short_names": ["flag-ea"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 73,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": false,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "snake": {
- "char": "\ud83d\udc0d",
- "key": "snake",
- "keywords": ["snake", "SNAKE"],
- "category": "animals_and_nature",
- "lib": {
- "name": "SNAKE",
- "unified": "1F40D",
- "non_qualified": null,
- "docomo": null,
- "au": "EB22",
- "softbank": "E52D",
- "google": "FE1D3",
- "image": "1f40d.png",
- "sheet_x": 12,
- "sheet_y": 32,
- "short_name": "snake",
- "short_names": ["snake"],
- "text": null,
- "texts": null,
- "category": "Animals & Nature",
- "sort_order": 73,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "bookmark_tabs": {
- "char": "\ud83d\udcd1",
- "key": "bookmark_tabs",
- "keywords": ["bookmark_tabs", "BOOKMARK TABS"],
- "category": "objects",
- "lib": {
- "name": "BOOKMARK TABS",
- "unified": "1F4D1",
- "non_qualified": null,
- "docomo": "E689",
- "au": "EB0B",
- "softbank": null,
- "google": "FE552",
- "image": "1f4d1.png",
- "sheet_x": 26,
- "sheet_y": 31,
- "short_name": "bookmark_tabs",
- "short_names": ["bookmark_tabs"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 73,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "twisted_rightwards_arrows": {
- "char": "\ud83d\udd00",
- "key": "twisted_rightwards_arrows",
- "keywords": ["twisted_rightwards_arrows", "TWISTED RIGHTWARDS ARROWS"],
- "category": "symbols",
- "lib": {
- "name": "TWISTED RIGHTWARDS ARROWS",
- "unified": "1F500",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f500.png",
- "sheet_x": 27,
- "sheet_y": 24,
- "short_name": "twisted_rightwards_arrows",
- "short_names": ["twisted_rightwards_arrows"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 73,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "frame_with_picture": {
- "char": "\ud83d\uddbc\ufe0f",
- "key": "frame_with_picture",
- "keywords": ["frame_with_picture", ""],
- "category": "activity",
- "lib": {
- "name": null,
- "unified": "1F5BC-FE0F",
- "non_qualified": "1F5BC",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f5bc-fe0f.png",
- "sheet_x": 30,
- "sheet_y": 22,
- "short_name": "frame_with_picture",
- "short_names": ["frame_with_picture"],
- "text": null,
- "texts": null,
- "category": "Activities",
- "sort_order": 73,
- "added_in": "7.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "mountain_railway": {
- "char": "\ud83d\ude9e",
- "key": "mountain_railway",
- "keywords": ["mountain_railway", "MOUNTAIN RAILWAY"],
- "category": "travel_and_places",
- "lib": {
- "name": "MOUNTAIN RAILWAY",
- "unified": "1F69E",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f69e.png",
- "sheet_x": 35,
- "sheet_y": 0,
- "short_name": "mountain_railway",
- "short_names": ["mountain_railway"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 73,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "face_with_symbols_on_mouth": {
- "char": "\ud83e\udd2c",
- "key": "face_with_symbols_on_mouth",
- "keywords": ["face_with_symbols_on_mouth", "SERIOUS FACE WITH SYMBOLS COVERING MOUTH"],
- "category": "people",
- "lib": {
- "name": "SERIOUS FACE WITH SYMBOLS COVERING MOUTH",
- "unified": "1F92C",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f92c.png",
- "sheet_x": 39,
- "sheet_y": 11,
- "short_name": "face_with_symbols_on_mouth",
- "short_names": ["face_with_symbols_on_mouth", "serious_face_with_symbols_covering_mouth"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 73,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "fortune_cookie": {
- "char": "\ud83e\udd60",
- "key": "fortune_cookie",
- "keywords": ["fortune_cookie", "FORTUNE COOKIE"],
- "category": "food_and_drink",
- "lib": {
- "name": "FORTUNE COOKIE",
- "unified": "1F960",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f960.png",
- "sheet_x": 42,
- "sheet_y": 23,
- "short_name": "fortune_cookie",
- "short_names": ["fortune_cookie"],
- "text": null,
- "texts": null,
- "category": "Food & Drink",
- "sort_order": 73,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "flag-ec": {
- "char": "\ud83c\uddea\ud83c\udde8",
- "key": "flag-ec",
- "keywords": ["flag-ec", "Ecuador Flag"],
- "category": "flags",
- "lib": {
- "name": "Ecuador Flag",
- "unified": "1F1EA-1F1E8",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1ea-1f1e8.png",
- "sheet_x": 1,
- "sheet_y": 44,
- "short_name": "flag-ec",
- "short_names": ["flag-ec"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 74,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "art": {
- "char": "\ud83c\udfa8",
- "key": "art",
- "keywords": ["art", "ARTIST PALETTE"],
- "category": "activity",
- "lib": {
- "name": "ARTIST PALETTE",
- "unified": "1F3A8",
- "non_qualified": null,
- "docomo": "E67B",
- "au": "E59C",
- "softbank": "E502",
- "google": "FE804",
- "image": "1f3a8.png",
- "sheet_x": 8,
- "sheet_y": 46,
- "short_name": "art",
- "short_names": ["art"],
- "text": null,
- "texts": null,
- "category": "Activities",
- "sort_order": 74,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "dragon_face": {
- "char": "\ud83d\udc32",
- "key": "dragon_face",
- "keywords": ["dragon_face", "DRAGON FACE"],
- "category": "animals_and_nature",
- "lib": {
- "name": "DRAGON FACE",
- "unified": "1F432",
- "non_qualified": null,
- "docomo": null,
- "au": "EB3F",
- "softbank": null,
- "google": "FE1DE",
- "image": "1f432.png",
- "sheet_x": 13,
- "sheet_y": 16,
- "short_name": "dragon_face",
- "short_names": ["dragon_face"],
- "text": null,
- "texts": null,
- "category": "Animals & Nature",
- "sort_order": 74,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "repeat": {
- "char": "\ud83d\udd01",
- "key": "repeat",
- "keywords": ["repeat", "CLOCKWISE RIGHTWARDS AND LEFTWARDS OPEN CIRCLE ARROWS"],
- "category": "symbols",
- "lib": {
- "name": "CLOCKWISE RIGHTWARDS AND LEFTWARDS OPEN CIRCLE ARROWS",
- "unified": "1F501",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f501.png",
- "sheet_x": 27,
- "sheet_y": 25,
- "short_name": "repeat",
- "short_names": ["repeat"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 74,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "bookmark": {
- "char": "\ud83d\udd16",
- "key": "bookmark",
- "keywords": ["bookmark", "BOOKMARK"],
- "category": "objects",
- "lib": {
- "name": "BOOKMARK",
- "unified": "1F516",
- "non_qualified": null,
- "docomo": null,
- "au": "EB07",
- "softbank": null,
- "google": "FEB8F",
- "image": "1f516.png",
- "sheet_x": 27,
- "sheet_y": 46,
- "short_name": "bookmark",
- "short_names": ["bookmark"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 74,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "mask": {
- "char": "\ud83d\ude37",
- "key": "mask",
- "keywords": ["mask", "FACE WITH MEDICAL MASK"],
- "category": "people",
- "lib": {
- "name": "FACE WITH MEDICAL MASK",
- "unified": "1F637",
- "non_qualified": null,
- "docomo": null,
- "au": "EAC7",
- "softbank": "E40C",
- "google": "FE32E",
- "image": "1f637.png",
- "sheet_x": 31,
- "sheet_y": 45,
- "short_name": "mask",
- "short_names": ["mask"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 74,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "train": {
- "char": "\ud83d\ude8b",
- "key": "train",
- "keywords": ["train", "TRAM CAR"],
- "category": "travel_and_places",
- "lib": {
- "name": "TRAM CAR",
- "unified": "1F68B",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f68b.png",
- "sheet_x": 34,
- "sheet_y": 34,
- "short_name": "train",
- "short_names": ["train"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 74,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "takeout_box": {
- "char": "\ud83e\udd61",
- "key": "takeout_box",
- "keywords": ["takeout_box", "TAKEOUT BOX"],
- "category": "food_and_drink",
- "lib": {
- "name": "TAKEOUT BOX",
- "unified": "1F961",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f961.png",
- "sheet_x": 42,
- "sheet_y": 24,
- "short_name": "takeout_box",
- "short_names": ["takeout_box"],
- "text": null,
- "texts": null,
- "category": "Food & Drink",
- "sort_order": 74,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "flag-ee": {
- "char": "\ud83c\uddea\ud83c\uddea",
- "key": "flag-ee",
- "keywords": ["flag-ee", "Estonia Flag"],
- "category": "flags",
- "lib": {
- "name": "Estonia Flag",
- "unified": "1F1EA-1F1EA",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1ea-1f1ea.png",
- "sheet_x": 1,
- "sheet_y": 45,
- "short_name": "flag-ee",
- "short_names": ["flag-ee"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 75,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "icecream": {
- "char": "\ud83c\udf66",
- "key": "icecream",
- "keywords": ["icecream", "SOFT ICE CREAM"],
- "category": "food_and_drink",
- "lib": {
- "name": "SOFT ICE CREAM",
- "unified": "1F366",
- "non_qualified": null,
- "docomo": null,
- "au": "EAB0",
- "softbank": "E33A",
- "google": "FE966",
- "image": "1f366.png",
- "sheet_x": 7,
- "sheet_y": 33,
- "short_name": "icecream",
- "short_names": ["icecream"],
- "text": null,
- "texts": null,
- "category": "Food & Drink",
- "sort_order": 75,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "label": {
- "char": "\ud83c\udff7\ufe0f",
- "key": "label",
- "keywords": ["label", ""],
- "category": "objects",
- "lib": {
- "name": null,
- "unified": "1F3F7-FE0F",
- "non_qualified": "1F3F7",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f3f7-fe0f.png",
- "sheet_x": 12,
- "sheet_y": 10,
- "short_name": "label",
- "short_names": ["label"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 75,
- "added_in": "7.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "dragon": {
- "char": "\ud83d\udc09",
- "key": "dragon",
- "keywords": ["dragon", "DRAGON"],
- "category": "animals_and_nature",
- "lib": {
- "name": "DRAGON",
- "unified": "1F409",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f409.png",
- "sheet_x": 12,
- "sheet_y": 28,
- "short_name": "dragon",
- "short_names": ["dragon"],
- "text": null,
- "texts": null,
- "category": "Animals & Nature",
- "sort_order": 75,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "repeat_one": {
- "char": "\ud83d\udd02",
- "key": "repeat_one",
- "keywords": ["repeat_one", "CLOCKWISE RIGHTWARDS AND LEFTWARDS OPEN CIRCLE ARROWS WITH CIRCLED ONE OVERLAY"],
- "category": "symbols",
- "lib": {
- "name": "CLOCKWISE RIGHTWARDS AND LEFTWARDS OPEN CIRCLE ARROWS WITH CIRCLED ONE OVERLAY",
- "unified": "1F502",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f502.png",
- "sheet_x": 27,
- "sheet_y": 26,
- "short_name": "repeat_one",
- "short_names": ["repeat_one"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 75,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "bus": {
- "char": "\ud83d\ude8c",
- "key": "bus",
- "keywords": ["bus", "BUS"],
- "category": "travel_and_places",
- "lib": {
- "name": "BUS",
- "unified": "1F68C",
- "non_qualified": null,
- "docomo": "E660",
- "au": "E4AF",
- "softbank": "E159",
- "google": "FE7E6",
- "image": "1f68c.png",
- "sheet_x": 34,
- "sheet_y": 35,
- "short_name": "bus",
- "short_names": ["bus"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 75,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "face_with_thermometer": {
- "char": "\ud83e\udd12",
- "key": "face_with_thermometer",
- "keywords": ["face_with_thermometer", "FACE WITH THERMOMETER"],
- "category": "people",
- "lib": {
- "name": "FACE WITH THERMOMETER",
- "unified": "1F912",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f912.png",
- "sheet_x": 37,
- "sheet_y": 39,
- "short_name": "face_with_thermometer",
- "short_names": ["face_with_thermometer"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 75,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "thread": {
- "char": "\ud83e\uddf5",
- "key": "thread",
- "keywords": ["thread", "SPOOL OF THREAD"],
- "category": "activity",
- "lib": {
- "name": "SPOOL OF THREAD",
- "unified": "1F9F5",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f9f5.png",
- "sheet_x": 48,
- "sheet_y": 9,
- "short_name": "thread",
- "short_names": ["thread"],
- "text": null,
- "texts": null,
- "category": "Activities",
- "sort_order": 75,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- },
- "flag-eg": {
- "char": "\ud83c\uddea\ud83c\uddec",
- "key": "flag-eg",
- "keywords": ["flag-eg", "Egypt Flag"],
- "category": "flags",
- "lib": {
- "name": "Egypt Flag",
- "unified": "1F1EA-1F1EC",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1ea-1f1ec.png",
- "sheet_x": 1,
- "sheet_y": 46,
- "short_name": "flag-eg",
- "short_names": ["flag-eg"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 76,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "shaved_ice": {
- "char": "\ud83c\udf67",
- "key": "shaved_ice",
- "keywords": ["shaved_ice", "SHAVED ICE"],
- "category": "food_and_drink",
- "lib": {
- "name": "SHAVED ICE",
- "unified": "1F367",
- "non_qualified": null,
- "docomo": null,
- "au": "EAEA",
- "softbank": "E43F",
- "google": "FE971",
- "image": "1f367.png",
- "sheet_x": 7,
- "sheet_y": 34,
- "short_name": "shaved_ice",
- "short_names": ["shaved_ice"],
- "text": null,
- "texts": null,
- "category": "Food & Drink",
- "sort_order": 76,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "moneybag": {
- "char": "\ud83d\udcb0",
- "key": "moneybag",
- "keywords": ["moneybag", "MONEY BAG"],
- "category": "objects",
- "lib": {
- "name": "MONEY BAG",
- "unified": "1F4B0",
- "non_qualified": null,
- "docomo": "E715",
- "au": "E4C7",
- "softbank": "E12F",
- "google": "FE4DD",
- "image": "1f4b0.png",
- "sheet_x": 25,
- "sheet_y": 51,
- "short_name": "moneybag",
- "short_names": ["moneybag"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 76,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "oncoming_bus": {
- "char": "\ud83d\ude8d",
- "key": "oncoming_bus",
- "keywords": ["oncoming_bus", "ONCOMING BUS"],
- "category": "travel_and_places",
- "lib": {
- "name": "ONCOMING BUS",
- "unified": "1F68D",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f68d.png",
- "sheet_x": 34,
- "sheet_y": 36,
- "short_name": "oncoming_bus",
- "short_names": ["oncoming_bus"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 76,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "face_with_head_bandage": {
- "char": "\ud83e\udd15",
- "key": "face_with_head_bandage",
- "keywords": ["face_with_head_bandage", "FACE WITH HEAD-BANDAGE"],
- "category": "people",
- "lib": {
- "name": "FACE WITH HEAD-BANDAGE",
- "unified": "1F915",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f915.png",
- "sheet_x": 37,
- "sheet_y": 42,
- "short_name": "face_with_head_bandage",
- "short_names": ["face_with_head_bandage"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 76,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "sauropod": {
- "char": "\ud83e\udd95",
- "key": "sauropod",
- "keywords": ["sauropod", "SAUROPOD"],
- "category": "animals_and_nature",
- "lib": {
- "name": "SAUROPOD",
- "unified": "1F995",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f995.png",
- "sheet_x": 43,
- "sheet_y": 17,
- "short_name": "sauropod",
- "short_names": ["sauropod"],
- "text": null,
- "texts": null,
- "category": "Animals & Nature",
- "sort_order": 76,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "yarn": {
- "char": "\ud83e\uddf6",
- "key": "yarn",
- "keywords": ["yarn", "BALL OF YARN"],
- "category": "activity",
- "lib": {
- "name": "BALL OF YARN",
- "unified": "1F9F6",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f9f6.png",
- "sheet_x": 48,
- "sheet_y": 10,
- "short_name": "yarn",
- "short_names": ["yarn"],
- "text": null,
- "texts": null,
- "category": "Activities",
- "sort_order": 76,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- },
- "arrow_forward": {
- "char": "\u25b6\ufe0f",
- "key": "arrow_forward",
- "keywords": ["arrow_forward", "BLACK RIGHT-POINTING TRIANGLE"],
- "category": "symbols",
- "lib": {
- "name": "BLACK RIGHT-POINTING TRIANGLE",
- "unified": "25B6-FE0F",
- "non_qualified": "25B6",
- "docomo": null,
- "au": "E52E",
- "softbank": "E23A",
- "google": "FEAFC",
- "image": "25b6-fe0f.png",
- "sheet_x": 49,
- "sheet_y": 0,
- "short_name": "arrow_forward",
- "short_names": ["arrow_forward"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 76,
- "added_in": "1.1",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "flag-eh": {
- "char": "\ud83c\uddea\ud83c\udded",
- "key": "flag-eh",
- "keywords": ["flag-eh", "Western Sahara Flag"],
- "category": "flags",
- "lib": {
- "name": "Western Sahara Flag",
- "unified": "1F1EA-1F1ED",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1ea-1f1ed.png",
- "sheet_x": 1,
- "sheet_y": 47,
- "short_name": "flag-eh",
- "short_names": ["flag-eh"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 77,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": false,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "ice_cream": {
- "char": "\ud83c\udf68",
- "key": "ice_cream",
- "keywords": ["ice_cream", "ICE CREAM"],
- "category": "food_and_drink",
- "lib": {
- "name": "ICE CREAM",
- "unified": "1F368",
- "non_qualified": null,
- "docomo": null,
- "au": "EB4A",
- "softbank": null,
- "google": "FE977",
- "image": "1f368.png",
- "sheet_x": 7,
- "sheet_y": 35,
- "short_name": "ice_cream",
- "short_names": ["ice_cream"],
- "text": null,
- "texts": null,
- "category": "Food & Drink",
- "sort_order": 77,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "yen": {
- "char": "\ud83d\udcb4",
- "key": "yen",
- "keywords": ["yen", "BANKNOTE WITH YEN SIGN"],
- "category": "objects",
- "lib": {
- "name": "BANKNOTE WITH YEN SIGN",
- "unified": "1F4B4",
- "non_qualified": null,
- "docomo": "E6D6",
- "au": "E57D",
- "softbank": null,
- "google": "FE4E2",
- "image": "1f4b4.png",
- "sheet_x": 26,
- "sheet_y": 2,
- "short_name": "yen",
- "short_names": ["yen"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 77,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "trolleybus": {
- "char": "\ud83d\ude8e",
- "key": "trolleybus",
- "keywords": ["trolleybus", "TROLLEYBUS"],
- "category": "travel_and_places",
- "lib": {
- "name": "TROLLEYBUS",
- "unified": "1F68E",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f68e.png",
- "sheet_x": 34,
- "sheet_y": 37,
- "short_name": "trolleybus",
- "short_names": ["trolleybus"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 77,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "nauseated_face": {
- "char": "\ud83e\udd22",
- "key": "nauseated_face",
- "keywords": ["nauseated_face", "NAUSEATED FACE"],
- "category": "people",
- "lib": {
- "name": "NAUSEATED FACE",
- "unified": "1F922",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f922.png",
- "sheet_x": 38,
- "sheet_y": 37,
- "short_name": "nauseated_face",
- "short_names": ["nauseated_face"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 77,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "t-rex": {
- "char": "\ud83e\udd96",
- "key": "t-rex",
- "keywords": ["t-rex", "T-REX"],
- "category": "animals_and_nature",
- "lib": {
- "name": "T-REX",
- "unified": "1F996",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f996.png",
- "sheet_x": 43,
- "sheet_y": 18,
- "short_name": "t-rex",
- "short_names": ["t-rex"],
- "text": null,
- "texts": null,
- "category": "Animals & Nature",
- "sort_order": 77,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "fast_forward": {
- "char": "\u23e9",
- "key": "fast_forward",
- "keywords": ["fast_forward", "BLACK RIGHT-POINTING DOUBLE TRIANGLE"],
- "category": "symbols",
- "lib": {
- "name": "BLACK RIGHT-POINTING DOUBLE TRIANGLE",
- "unified": "23E9",
- "non_qualified": null,
- "docomo": null,
- "au": "E530",
- "softbank": "E23C",
- "google": "FEAFE",
- "image": "23e9.png",
- "sheet_x": 48,
- "sheet_y": 36,
- "short_name": "fast_forward",
- "short_names": ["fast_forward"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 77,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "flag-er": {
- "char": "\ud83c\uddea\ud83c\uddf7",
- "key": "flag-er",
- "keywords": ["flag-er", "Eritrea Flag"],
- "category": "flags",
- "lib": {
- "name": "Eritrea Flag",
- "unified": "1F1EA-1F1F7",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1ea-1f1f7.png",
- "sheet_x": 1,
- "sheet_y": 48,
- "short_name": "flag-er",
- "short_names": ["flag-er"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 78,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "doughnut": {
- "char": "\ud83c\udf69",
- "key": "doughnut",
- "keywords": ["doughnut", "DOUGHNUT"],
- "category": "food_and_drink",
- "lib": {
- "name": "DOUGHNUT",
- "unified": "1F369",
- "non_qualified": null,
- "docomo": null,
- "au": "EB4B",
- "softbank": null,
- "google": "FE978",
- "image": "1f369.png",
- "sheet_x": 7,
- "sheet_y": 36,
- "short_name": "doughnut",
- "short_names": ["doughnut"],
- "text": null,
- "texts": null,
- "category": "Food & Drink",
- "sort_order": 78,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "whale": {
- "char": "\ud83d\udc33",
- "key": "whale",
- "keywords": ["whale", "SPOUTING WHALE"],
- "category": "animals_and_nature",
- "lib": {
- "name": "SPOUTING WHALE",
- "unified": "1F433",
- "non_qualified": null,
- "docomo": null,
- "au": "E470",
- "softbank": "E054",
- "google": "FE1C3",
- "image": "1f433.png",
- "sheet_x": 13,
- "sheet_y": 17,
- "short_name": "whale",
- "short_names": ["whale"],
- "text": null,
- "texts": null,
- "category": "Animals & Nature",
- "sort_order": 78,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "dollar": {
- "char": "\ud83d\udcb5",
- "key": "dollar",
- "keywords": ["dollar", "BANKNOTE WITH DOLLAR SIGN"],
- "category": "objects",
- "lib": {
- "name": "BANKNOTE WITH DOLLAR SIGN",
- "unified": "1F4B5",
- "non_qualified": null,
- "docomo": "E715",
- "au": "E585",
- "softbank": null,
- "google": "FE4E3",
- "image": "1f4b5.png",
- "sheet_x": 26,
- "sheet_y": 3,
- "short_name": "dollar",
- "short_names": ["dollar"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 78,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "minibus": {
- "char": "\ud83d\ude90",
- "key": "minibus",
- "keywords": ["minibus", "MINIBUS"],
- "category": "travel_and_places",
- "lib": {
- "name": "MINIBUS",
- "unified": "1F690",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f690.png",
- "sheet_x": 34,
- "sheet_y": 39,
- "short_name": "minibus",
- "short_names": ["minibus"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 78,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "face_vomiting": {
- "char": "\ud83e\udd2e",
- "key": "face_vomiting",
- "keywords": ["face_vomiting", "FACE WITH OPEN MOUTH VOMITING"],
- "category": "people",
- "lib": {
- "name": "FACE WITH OPEN MOUTH VOMITING",
- "unified": "1F92E",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f92e.png",
- "sheet_x": 39,
- "sheet_y": 13,
- "short_name": "face_vomiting",
- "short_names": ["face_vomiting", "face_with_open_mouth_vomiting"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 78,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "black_right_pointing_double_triangle_with_vertical_bar": {
- "char": "\u23ed\ufe0f",
- "key": "black_right_pointing_double_triangle_with_vertical_bar",
- "keywords": ["black_right_pointing_double_triangle_with_vertical_bar", ""],
- "category": "symbols",
- "lib": {
- "name": null,
- "unified": "23ED-FE0F",
- "non_qualified": "23ED",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "23ed-fe0f.png",
- "sheet_x": 48,
- "sheet_y": 40,
- "short_name": "black_right_pointing_double_triangle_with_vertical_bar",
- "short_names": ["black_right_pointing_double_triangle_with_vertical_bar"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 78,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "es": {
- "char": "\ud83c\uddea\ud83c\uddf8",
- "key": "es",
- "keywords": ["es", "Spain Flag"],
- "category": "flags",
- "lib": {
- "name": "Spain Flag",
- "unified": "1F1EA-1F1F8",
- "non_qualified": null,
- "docomo": null,
- "au": "E5D5",
- "softbank": "E511",
- "google": "FE4EB",
- "image": "1f1ea-1f1f8.png",
- "sheet_x": 1,
- "sheet_y": 49,
- "short_name": "es",
- "short_names": ["es", "flag-es"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 79,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "cookie": {
- "char": "\ud83c\udf6a",
- "key": "cookie",
- "keywords": ["cookie", "COOKIE"],
- "category": "food_and_drink",
- "lib": {
- "name": "COOKIE",
- "unified": "1F36A",
- "non_qualified": null,
- "docomo": null,
- "au": "EB4C",
- "softbank": null,
- "google": "FE979",
- "image": "1f36a.png",
- "sheet_x": 7,
- "sheet_y": 37,
- "short_name": "cookie",
- "short_names": ["cookie"],
- "text": null,
- "texts": null,
- "category": "Food & Drink",
- "sort_order": 79,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "whale2": {
- "char": "\ud83d\udc0b",
- "key": "whale2",
- "keywords": ["whale2", "WHALE"],
- "category": "animals_and_nature",
- "lib": {
- "name": "WHALE",
- "unified": "1F40B",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f40b.png",
- "sheet_x": 12,
- "sheet_y": 30,
- "short_name": "whale2",
- "short_names": ["whale2"],
- "text": null,
- "texts": null,
- "category": "Animals & Nature",
- "sort_order": 79,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "euro": {
- "char": "\ud83d\udcb6",
- "key": "euro",
- "keywords": ["euro", "BANKNOTE WITH EURO SIGN"],
- "category": "objects",
- "lib": {
- "name": "BANKNOTE WITH EURO SIGN",
- "unified": "1F4B6",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f4b6.png",
- "sheet_x": 26,
- "sheet_y": 4,
- "short_name": "euro",
- "short_names": ["euro"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 79,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "ambulance": {
- "char": "\ud83d\ude91",
- "key": "ambulance",
- "keywords": ["ambulance", "AMBULANCE"],
- "category": "travel_and_places",
- "lib": {
- "name": "AMBULANCE",
- "unified": "1F691",
- "non_qualified": null,
- "docomo": null,
- "au": "EAE0",
- "softbank": "E431",
- "google": "FE7F3",
- "image": "1f691.png",
- "sheet_x": 34,
- "sheet_y": 40,
- "short_name": "ambulance",
- "short_names": ["ambulance"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 79,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "sneezing_face": {
- "char": "\ud83e\udd27",
- "key": "sneezing_face",
- "keywords": ["sneezing_face", "SNEEZING FACE"],
- "category": "people",
- "lib": {
- "name": "SNEEZING FACE",
- "unified": "1F927",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f927.png",
- "sheet_x": 39,
- "sheet_y": 6,
- "short_name": "sneezing_face",
- "short_names": ["sneezing_face"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 79,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "black_right_pointing_triangle_with_double_vertical_bar": {
- "char": "\u23ef\ufe0f",
- "key": "black_right_pointing_triangle_with_double_vertical_bar",
- "keywords": ["black_right_pointing_triangle_with_double_vertical_bar", ""],
- "category": "symbols",
- "lib": {
- "name": null,
- "unified": "23EF-FE0F",
- "non_qualified": "23EF",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "23ef-fe0f.png",
- "sheet_x": 48,
- "sheet_y": 42,
- "short_name": "black_right_pointing_triangle_with_double_vertical_bar",
- "short_names": ["black_right_pointing_triangle_with_double_vertical_bar"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 79,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "flag-et": {
- "char": "\ud83c\uddea\ud83c\uddf9",
- "key": "flag-et",
- "keywords": ["flag-et", "Ethiopia Flag"],
- "category": "flags",
- "lib": {
- "name": "Ethiopia Flag",
- "unified": "1F1EA-1F1F9",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1ea-1f1f9.png",
- "sheet_x": 1,
- "sheet_y": 50,
- "short_name": "flag-et",
- "short_names": ["flag-et"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 80,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "birthday": {
- "char": "\ud83c\udf82",
- "key": "birthday",
- "keywords": ["birthday", "BIRTHDAY CAKE"],
- "category": "food_and_drink",
- "lib": {
- "name": "BIRTHDAY CAKE",
- "unified": "1F382",
- "non_qualified": null,
- "docomo": "E686",
- "au": "E5A0",
- "softbank": "E34B",
- "google": "FE511",
- "image": "1f382.png",
- "sheet_x": 8,
- "sheet_y": 8,
- "short_name": "birthday",
- "short_names": ["birthday"],
- "text": null,
- "texts": null,
- "category": "Food & Drink",
- "sort_order": 80,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "dolphin": {
- "char": "\ud83d\udc2c",
- "key": "dolphin",
- "keywords": ["dolphin", "DOLPHIN"],
- "category": "animals_and_nature",
- "lib": {
- "name": "DOLPHIN",
- "unified": "1F42C",
- "non_qualified": null,
- "docomo": null,
- "au": "EB1B",
- "softbank": "E520",
- "google": "FE1C7",
- "image": "1f42c.png",
- "sheet_x": 13,
- "sheet_y": 10,
- "short_name": "dolphin",
- "short_names": ["dolphin", "flipper"],
- "text": null,
- "texts": null,
- "category": "Animals & Nature",
- "sort_order": 80,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "pound": {
- "char": "\ud83d\udcb7",
- "key": "pound",
- "keywords": ["pound", "BANKNOTE WITH POUND SIGN"],
- "category": "objects",
- "lib": {
- "name": "BANKNOTE WITH POUND SIGN",
- "unified": "1F4B7",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f4b7.png",
- "sheet_x": 26,
- "sheet_y": 5,
- "short_name": "pound",
- "short_names": ["pound"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 80,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "innocent": {
- "char": "\ud83d\ude07",
- "key": "innocent",
- "keywords": ["innocent", "SMILING FACE WITH HALO"],
- "category": "people",
- "lib": {
- "name": "SMILING FACE WITH HALO",
- "unified": "1F607",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f607.png",
- "sheet_x": 30,
- "sheet_y": 50,
- "short_name": "innocent",
- "short_names": ["innocent"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 80,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "fire_engine": {
- "char": "\ud83d\ude92",
- "key": "fire_engine",
- "keywords": ["fire_engine", "FIRE ENGINE"],
- "category": "travel_and_places",
- "lib": {
- "name": "FIRE ENGINE",
- "unified": "1F692",
- "non_qualified": null,
- "docomo": null,
- "au": "EADF",
- "softbank": "E430",
- "google": "FE7F2",
- "image": "1f692.png",
- "sheet_x": 34,
- "sheet_y": 41,
- "short_name": "fire_engine",
- "short_names": ["fire_engine"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 80,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "arrow_backward": {
- "char": "\u25c0\ufe0f",
- "key": "arrow_backward",
- "keywords": ["arrow_backward", "BLACK LEFT-POINTING TRIANGLE"],
- "category": "symbols",
- "lib": {
- "name": "BLACK LEFT-POINTING TRIANGLE",
- "unified": "25C0-FE0F",
- "non_qualified": "25C0",
- "docomo": null,
- "au": "E52D",
- "softbank": "E23B",
- "google": "FEAFD",
- "image": "25c0-fe0f.png",
- "sheet_x": 49,
- "sheet_y": 1,
- "short_name": "arrow_backward",
- "short_names": ["arrow_backward"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 80,
- "added_in": "1.1",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "flag-eu": {
- "char": "\ud83c\uddea\ud83c\uddfa",
- "key": "flag-eu",
- "keywords": ["flag-eu", "European Union Flag"],
- "category": "flags",
- "lib": {
- "name": "European Union Flag",
- "unified": "1F1EA-1F1FA",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1ea-1f1fa.png",
- "sheet_x": 1,
- "sheet_y": 51,
- "short_name": "flag-eu",
- "short_names": ["flag-eu"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 81,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "cake": {
- "char": "\ud83c\udf70",
- "key": "cake",
- "keywords": ["cake", "SHORTCAKE"],
- "category": "food_and_drink",
- "lib": {
- "name": "SHORTCAKE",
- "unified": "1F370",
- "non_qualified": null,
- "docomo": "E74A",
- "au": "E4D0",
- "softbank": "E046",
- "google": "FE962",
- "image": "1f370.png",
- "sheet_x": 7,
- "sheet_y": 43,
- "short_name": "cake",
- "short_names": ["cake"],
- "text": null,
- "texts": null,
- "category": "Food & Drink",
- "sort_order": 81,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "fish": {
- "char": "\ud83d\udc1f",
- "key": "fish",
- "keywords": ["fish", "FISH"],
- "category": "animals_and_nature",
- "lib": {
- "name": "FISH",
- "unified": "1F41F",
- "non_qualified": null,
- "docomo": "E751",
- "au": "E49A",
- "softbank": "E019",
- "google": "FE1BD",
- "image": "1f41f.png",
- "sheet_x": 12,
- "sheet_y": 50,
- "short_name": "fish",
- "short_names": ["fish"],
- "text": null,
- "texts": null,
- "category": "Animals & Nature",
- "sort_order": 81,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "money_with_wings": {
- "char": "\ud83d\udcb8",
- "key": "money_with_wings",
- "keywords": ["money_with_wings", "MONEY WITH WINGS"],
- "category": "objects",
- "lib": {
- "name": "MONEY WITH WINGS",
- "unified": "1F4B8",
- "non_qualified": null,
- "docomo": null,
- "au": "EB5B",
- "softbank": null,
- "google": "FE4E4",
- "image": "1f4b8.png",
- "sheet_x": 26,
- "sheet_y": 6,
- "short_name": "money_with_wings",
- "short_names": ["money_with_wings"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 81,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "police_car": {
- "char": "\ud83d\ude93",
- "key": "police_car",
- "keywords": ["police_car", "POLICE CAR"],
- "category": "travel_and_places",
- "lib": {
- "name": "POLICE CAR",
- "unified": "1F693",
- "non_qualified": null,
- "docomo": null,
- "au": "EAE1",
- "softbank": "E432",
- "google": "FE7F4",
- "image": "1f693.png",
- "sheet_x": 34,
- "sheet_y": 42,
- "short_name": "police_car",
- "short_names": ["police_car"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 81,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "face_with_cowboy_hat": {
- "char": "\ud83e\udd20",
- "key": "face_with_cowboy_hat",
- "keywords": ["face_with_cowboy_hat", "FACE WITH COWBOY HAT"],
- "category": "people",
- "lib": {
- "name": "FACE WITH COWBOY HAT",
- "unified": "1F920",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f920.png",
- "sheet_x": 38,
- "sheet_y": 35,
- "short_name": "face_with_cowboy_hat",
- "short_names": ["face_with_cowboy_hat"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 81,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "rewind": {
- "char": "\u23ea",
- "key": "rewind",
- "keywords": ["rewind", "BLACK LEFT-POINTING DOUBLE TRIANGLE"],
- "category": "symbols",
- "lib": {
- "name": "BLACK LEFT-POINTING DOUBLE TRIANGLE",
- "unified": "23EA",
- "non_qualified": null,
- "docomo": null,
- "au": "E52F",
- "softbank": "E23D",
- "google": "FEAFF",
- "image": "23ea.png",
- "sheet_x": 48,
- "sheet_y": 37,
- "short_name": "rewind",
- "short_names": ["rewind"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 81,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "flag-fi": {
- "char": "\ud83c\uddeb\ud83c\uddee",
- "key": "flag-fi",
- "keywords": ["flag-fi", "Finland Flag"],
- "category": "flags",
- "lib": {
- "name": "Finland Flag",
- "unified": "1F1EB-1F1EE",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1eb-1f1ee.png",
- "sheet_x": 1,
- "sheet_y": 52,
- "short_name": "flag-fi",
- "short_names": ["flag-fi"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 82,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "tropical_fish": {
- "char": "\ud83d\udc20",
- "key": "tropical_fish",
- "keywords": ["tropical_fish", "TROPICAL FISH"],
- "category": "animals_and_nature",
- "lib": {
- "name": "TROPICAL FISH",
- "unified": "1F420",
- "non_qualified": null,
- "docomo": "E751",
- "au": "EB1D",
- "softbank": "E522",
- "google": "FE1C9",
- "image": "1f420.png",
- "sheet_x": 12,
- "sheet_y": 51,
- "short_name": "tropical_fish",
- "short_names": ["tropical_fish"],
- "text": null,
- "texts": null,
- "category": "Animals & Nature",
- "sort_order": 82,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "credit_card": {
- "char": "\ud83d\udcb3",
- "key": "credit_card",
- "keywords": ["credit_card", "CREDIT CARD"],
- "category": "objects",
- "lib": {
- "name": "CREDIT CARD",
- "unified": "1F4B3",
- "non_qualified": null,
- "docomo": null,
- "au": "E57C",
- "softbank": null,
- "google": "FE4E1",
- "image": "1f4b3.png",
- "sheet_x": 26,
- "sheet_y": 1,
- "short_name": "credit_card",
- "short_names": ["credit_card"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 82,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "oncoming_police_car": {
- "char": "\ud83d\ude94",
- "key": "oncoming_police_car",
- "keywords": ["oncoming_police_car", "ONCOMING POLICE CAR"],
- "category": "travel_and_places",
- "lib": {
- "name": "ONCOMING POLICE CAR",
- "unified": "1F694",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f694.png",
- "sheet_x": 34,
- "sheet_y": 43,
- "short_name": "oncoming_police_car",
- "short_names": ["oncoming_police_car"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 82,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "partying_face": {
- "char": "\ud83e\udd73",
- "key": "partying_face",
- "keywords": ["partying_face", "FACE WITH PARTY HORN AND PARTY HAT"],
- "category": "people",
- "lib": {
- "name": "FACE WITH PARTY HORN AND PARTY HAT",
- "unified": "1F973",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f973.png",
- "sheet_x": 42,
- "sheet_y": 40,
- "short_name": "partying_face",
- "short_names": ["partying_face"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 82,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- },
- "cupcake": {
- "char": "\ud83e\uddc1",
- "key": "cupcake",
- "keywords": ["cupcake", "CUPCAKE"],
- "category": "food_and_drink",
- "lib": {
- "name": "CUPCAKE",
- "unified": "1F9C1",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f9c1.png",
- "sheet_x": 44,
- "sheet_y": 17,
- "short_name": "cupcake",
- "short_names": ["cupcake"],
- "text": null,
- "texts": null,
- "category": "Food & Drink",
- "sort_order": 82,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- },
- "black_left_pointing_double_triangle_with_vertical_bar": {
- "char": "\u23ee\ufe0f",
- "key": "black_left_pointing_double_triangle_with_vertical_bar",
- "keywords": ["black_left_pointing_double_triangle_with_vertical_bar", ""],
- "category": "symbols",
- "lib": {
- "name": null,
- "unified": "23EE-FE0F",
- "non_qualified": "23EE",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "23ee-fe0f.png",
- "sheet_x": 48,
- "sheet_y": 41,
- "short_name": "black_left_pointing_double_triangle_with_vertical_bar",
- "short_names": ["black_left_pointing_double_triangle_with_vertical_bar"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 82,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "flag-fj": {
- "char": "\ud83c\uddeb\ud83c\uddef",
- "key": "flag-fj",
- "keywords": ["flag-fj", "Fiji Flag"],
- "category": "flags",
- "lib": {
- "name": "Fiji Flag",
- "unified": "1F1EB-1F1EF",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1eb-1f1ef.png",
- "sheet_x": 2,
- "sheet_y": 0,
- "short_name": "flag-fj",
- "short_names": ["flag-fj"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 83,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "blowfish": {
- "char": "\ud83d\udc21",
- "key": "blowfish",
- "keywords": ["blowfish", "BLOWFISH"],
- "category": "animals_and_nature",
- "lib": {
- "name": "BLOWFISH",
- "unified": "1F421",
- "non_qualified": null,
- "docomo": "E751",
- "au": "E4D3",
- "softbank": null,
- "google": "FE1D9",
- "image": "1f421.png",
- "sheet_x": 12,
- "sheet_y": 52,
- "short_name": "blowfish",
- "short_names": ["blowfish"],
- "text": null,
- "texts": null,
- "category": "Animals & Nature",
- "sort_order": 83,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "arrow_up_small": {
- "char": "\ud83d\udd3c",
- "key": "arrow_up_small",
- "keywords": ["arrow_up_small", "UP-POINTING SMALL RED TRIANGLE"],
- "category": "symbols",
- "lib": {
- "name": "UP-POINTING SMALL RED TRIANGLE",
- "unified": "1F53C",
- "non_qualified": null,
- "docomo": null,
- "au": "E543",
- "softbank": null,
- "google": "FEB01",
- "image": "1f53c.png",
- "sheet_x": 28,
- "sheet_y": 31,
- "short_name": "arrow_up_small",
- "short_names": ["arrow_up_small"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 83,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "taxi": {
- "char": "\ud83d\ude95",
- "key": "taxi",
- "keywords": ["taxi", "TAXI"],
- "category": "travel_and_places",
- "lib": {
- "name": "TAXI",
- "unified": "1F695",
- "non_qualified": null,
- "docomo": "E65E",
- "au": "E4B1",
- "softbank": "E15A",
- "google": "FE7EF",
- "image": "1f695.png",
- "sheet_x": 34,
- "sheet_y": 44,
- "short_name": "taxi",
- "short_names": ["taxi"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 83,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "pie": {
- "char": "\ud83e\udd67",
- "key": "pie",
- "keywords": ["pie", "PIE"],
- "category": "food_and_drink",
- "lib": {
- "name": "PIE",
- "unified": "1F967",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f967.png",
- "sheet_x": 42,
- "sheet_y": 30,
- "short_name": "pie",
- "short_names": ["pie"],
- "text": null,
- "texts": null,
- "category": "Food & Drink",
- "sort_order": 83,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "woozy_face": {
- "char": "\ud83e\udd74",
- "key": "woozy_face",
- "keywords": ["woozy_face", "FACE WITH UNEVEN EYES AND WAVY MOUTH"],
- "category": "people",
- "lib": {
- "name": "FACE WITH UNEVEN EYES AND WAVY MOUTH",
- "unified": "1F974",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f974.png",
- "sheet_x": 42,
- "sheet_y": 41,
- "short_name": "woozy_face",
- "short_names": ["woozy_face"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 83,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- },
- "receipt": {
- "char": "\ud83e\uddfe",
- "key": "receipt",
- "keywords": ["receipt", "RECEIPT"],
- "category": "objects",
- "lib": {
- "name": "RECEIPT",
- "unified": "1F9FE",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f9fe.png",
- "sheet_x": 48,
- "sheet_y": 18,
- "short_name": "receipt",
- "short_names": ["receipt"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 83,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- },
- "flag-fk": {
- "char": "\ud83c\uddeb\ud83c\uddf0",
- "key": "flag-fk",
- "keywords": ["flag-fk", "Falkland Islands Flag"],
- "category": "flags",
- "lib": {
- "name": "Falkland Islands Flag",
- "unified": "1F1EB-1F1F0",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1eb-1f1f0.png",
- "sheet_x": 2,
- "sheet_y": 1,
- "short_name": "flag-fk",
- "short_names": ["flag-fk"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 84,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": false,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "chocolate_bar": {
- "char": "\ud83c\udf6b",
- "key": "chocolate_bar",
- "keywords": ["chocolate_bar", "CHOCOLATE BAR"],
- "category": "food_and_drink",
- "lib": {
- "name": "CHOCOLATE BAR",
- "unified": "1F36B",
- "non_qualified": null,
- "docomo": null,
- "au": "EB4D",
- "softbank": null,
- "google": "FE97A",
- "image": "1f36b.png",
- "sheet_x": 7,
- "sheet_y": 38,
- "short_name": "chocolate_bar",
- "short_names": ["chocolate_bar"],
- "text": null,
- "texts": null,
- "category": "Food & Drink",
- "sort_order": 84,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "chart": {
- "char": "\ud83d\udcb9",
- "key": "chart",
- "keywords": ["chart", "CHART WITH UPWARDS TREND AND YEN SIGN"],
- "category": "objects",
- "lib": {
- "name": "CHART WITH UPWARDS TREND AND YEN SIGN",
- "unified": "1F4B9",
- "non_qualified": null,
- "docomo": null,
- "au": "E5DC",
- "softbank": "E14A",
- "google": "FE4DF",
- "image": "1f4b9.png",
- "sheet_x": 26,
- "sheet_y": 7,
- "short_name": "chart",
- "short_names": ["chart"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 84,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "oncoming_taxi": {
- "char": "\ud83d\ude96",
- "key": "oncoming_taxi",
- "keywords": ["oncoming_taxi", "ONCOMING TAXI"],
- "category": "travel_and_places",
- "lib": {
- "name": "ONCOMING TAXI",
- "unified": "1F696",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f696.png",
- "sheet_x": 34,
- "sheet_y": 45,
- "short_name": "oncoming_taxi",
- "short_names": ["oncoming_taxi"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 84,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "pleading_face": {
- "char": "\ud83e\udd7a",
- "key": "pleading_face",
- "keywords": ["pleading_face", "FACE WITH PLEADING EYES"],
- "category": "people",
- "lib": {
- "name": "FACE WITH PLEADING EYES",
- "unified": "1F97A",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f97a.png",
- "sheet_x": 42,
- "sheet_y": 44,
- "short_name": "pleading_face",
- "short_names": ["pleading_face"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 84,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- },
- "shark": {
- "char": "\ud83e\udd88",
- "key": "shark",
- "keywords": ["shark", "SHARK"],
- "category": "animals_and_nature",
- "lib": {
- "name": "SHARK",
- "unified": "1F988",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f988.png",
- "sheet_x": 43,
- "sheet_y": 4,
- "short_name": "shark",
- "short_names": ["shark"],
- "text": null,
- "texts": null,
- "category": "Animals & Nature",
- "sort_order": 84,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "arrow_double_up": {
- "char": "\u23eb",
- "key": "arrow_double_up",
- "keywords": ["arrow_double_up", "BLACK UP-POINTING DOUBLE TRIANGLE"],
- "category": "symbols",
- "lib": {
- "name": "BLACK UP-POINTING DOUBLE TRIANGLE",
- "unified": "23EB",
- "non_qualified": null,
- "docomo": null,
- "au": "E545",
- "softbank": null,
- "google": "FEB03",
- "image": "23eb.png",
- "sheet_x": 48,
- "sheet_y": 38,
- "short_name": "arrow_double_up",
- "short_names": ["arrow_double_up"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 84,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "flag-fm": {
- "char": "\ud83c\uddeb\ud83c\uddf2",
- "key": "flag-fm",
- "keywords": ["flag-fm", "Micronesia Flag"],
- "category": "flags",
- "lib": {
- "name": "Micronesia Flag",
- "unified": "1F1EB-1F1F2",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1eb-1f1f2.png",
- "sheet_x": 2,
- "sheet_y": 2,
- "short_name": "flag-fm",
- "short_names": ["flag-fm"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 85,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "candy": {
- "char": "\ud83c\udf6c",
- "key": "candy",
- "keywords": ["candy", "CANDY"],
- "category": "food_and_drink",
- "lib": {
- "name": "CANDY",
- "unified": "1F36C",
- "non_qualified": null,
- "docomo": null,
- "au": "EB4E",
- "softbank": null,
- "google": "FE97B",
- "image": "1f36c.png",
- "sheet_x": 7,
- "sheet_y": 39,
- "short_name": "candy",
- "short_names": ["candy"],
- "text": null,
- "texts": null,
- "category": "Food & Drink",
- "sort_order": 85,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "octopus": {
- "char": "\ud83d\udc19",
- "key": "octopus",
- "keywords": ["octopus", "OCTOPUS"],
- "category": "animals_and_nature",
- "lib": {
- "name": "OCTOPUS",
- "unified": "1F419",
- "non_qualified": null,
- "docomo": null,
- "au": "E5C7",
- "softbank": "E10A",
- "google": "FE1C5",
- "image": "1f419.png",
- "sheet_x": 12,
- "sheet_y": 44,
- "short_name": "octopus",
- "short_names": ["octopus"],
- "text": null,
- "texts": null,
- "category": "Animals & Nature",
- "sort_order": 85,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "currency_exchange": {
- "char": "\ud83d\udcb1",
- "key": "currency_exchange",
- "keywords": ["currency_exchange", "CURRENCY EXCHANGE"],
- "category": "objects",
- "lib": {
- "name": "CURRENCY EXCHANGE",
- "unified": "1F4B1",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": "E149",
- "google": "FE4DE",
- "image": "1f4b1.png",
- "sheet_x": 25,
- "sheet_y": 52,
- "short_name": "currency_exchange",
- "short_names": ["currency_exchange"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 85,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "arrow_down_small": {
- "char": "\ud83d\udd3d",
- "key": "arrow_down_small",
- "keywords": ["arrow_down_small", "DOWN-POINTING SMALL RED TRIANGLE"],
- "category": "symbols",
- "lib": {
- "name": "DOWN-POINTING SMALL RED TRIANGLE",
- "unified": "1F53D",
- "non_qualified": null,
- "docomo": null,
- "au": "E542",
- "softbank": null,
- "google": "FEB00",
- "image": "1f53d.png",
- "sheet_x": 28,
- "sheet_y": 32,
- "short_name": "arrow_down_small",
- "short_names": ["arrow_down_small"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 85,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "car": {
- "char": "\ud83d\ude97",
- "key": "car",
- "keywords": ["car", "AUTOMOBILE"],
- "category": "travel_and_places",
- "lib": {
- "name": "AUTOMOBILE",
- "unified": "1F697",
- "non_qualified": null,
- "docomo": "E65E",
- "au": "E4B1",
- "softbank": "E01B",
- "google": "FE7E4",
- "image": "1f697.png",
- "sheet_x": 34,
- "sheet_y": 46,
- "short_name": "car",
- "short_names": ["car", "red_car"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 85,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "lying_face": {
- "char": "\ud83e\udd25",
- "key": "lying_face",
- "keywords": ["lying_face", "LYING FACE"],
- "category": "people",
- "lib": {
- "name": "LYING FACE",
- "unified": "1F925",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f925.png",
- "sheet_x": 38,
- "sheet_y": 40,
- "short_name": "lying_face",
- "short_names": ["lying_face"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 85,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "flag-fo": {
- "char": "\ud83c\uddeb\ud83c\uddf4",
- "key": "flag-fo",
- "keywords": ["flag-fo", "Faroe Islands Flag"],
- "category": "flags",
- "lib": {
- "name": "Faroe Islands Flag",
- "unified": "1F1EB-1F1F4",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1eb-1f1f4.png",
- "sheet_x": 2,
- "sheet_y": 3,
- "short_name": "flag-fo",
- "short_names": ["flag-fo"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 86,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "lollipop": {
- "char": "\ud83c\udf6d",
- "key": "lollipop",
- "keywords": ["lollipop", "LOLLIPOP"],
- "category": "food_and_drink",
- "lib": {
- "name": "LOLLIPOP",
- "unified": "1F36D",
- "non_qualified": null,
- "docomo": null,
- "au": "EB4F",
- "softbank": null,
- "google": "FE97C",
- "image": "1f36d.png",
- "sheet_x": 7,
- "sheet_y": 40,
- "short_name": "lollipop",
- "short_names": ["lollipop"],
- "text": null,
- "texts": null,
- "category": "Food & Drink",
- "sort_order": 86,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "shell": {
- "char": "\ud83d\udc1a",
- "key": "shell",
- "keywords": ["shell", "SPIRAL SHELL"],
- "category": "animals_and_nature",
- "lib": {
- "name": "SPIRAL SHELL",
- "unified": "1F41A",
- "non_qualified": null,
- "docomo": null,
- "au": "EAEC",
- "softbank": "E441",
- "google": "FE1C6",
- "image": "1f41a.png",
- "sheet_x": 12,
- "sheet_y": 45,
- "short_name": "shell",
- "short_names": ["shell"],
- "text": null,
- "texts": null,
- "category": "Animals & Nature",
- "sort_order": 86,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "heavy_dollar_sign": {
- "char": "\ud83d\udcb2",
- "key": "heavy_dollar_sign",
- "keywords": ["heavy_dollar_sign", "HEAVY DOLLAR SIGN"],
- "category": "objects",
- "lib": {
- "name": "HEAVY DOLLAR SIGN",
- "unified": "1F4B2",
- "non_qualified": null,
- "docomo": "E715",
- "au": "E579",
- "softbank": null,
- "google": "FE4E0",
- "image": "1f4b2.png",
- "sheet_x": 26,
- "sheet_y": 0,
- "short_name": "heavy_dollar_sign",
- "short_names": ["heavy_dollar_sign"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 86,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "oncoming_automobile": {
- "char": "\ud83d\ude98",
- "key": "oncoming_automobile",
- "keywords": ["oncoming_automobile", "ONCOMING AUTOMOBILE"],
- "category": "travel_and_places",
- "lib": {
- "name": "ONCOMING AUTOMOBILE",
- "unified": "1F698",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f698.png",
- "sheet_x": 34,
- "sheet_y": 47,
- "short_name": "oncoming_automobile",
- "short_names": ["oncoming_automobile"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 86,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "shushing_face": {
- "char": "\ud83e\udd2b",
- "key": "shushing_face",
- "keywords": ["shushing_face", "FACE WITH FINGER COVERING CLOSED LIPS"],
- "category": "people",
- "lib": {
- "name": "FACE WITH FINGER COVERING CLOSED LIPS",
- "unified": "1F92B",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f92b.png",
- "sheet_x": 39,
- "sheet_y": 10,
- "short_name": "shushing_face",
- "short_names": ["shushing_face", "face_with_finger_covering_closed_lips"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 86,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "arrow_double_down": {
- "char": "\u23ec",
- "key": "arrow_double_down",
- "keywords": ["arrow_double_down", "BLACK DOWN-POINTING DOUBLE TRIANGLE"],
- "category": "symbols",
- "lib": {
- "name": "BLACK DOWN-POINTING DOUBLE TRIANGLE",
- "unified": "23EC",
- "non_qualified": null,
- "docomo": null,
- "au": "E544",
- "softbank": null,
- "google": "FEB02",
- "image": "23ec.png",
- "sheet_x": 48,
- "sheet_y": 39,
- "short_name": "arrow_double_down",
- "short_names": ["arrow_double_down"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 86,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "fr": {
- "char": "\ud83c\uddeb\ud83c\uddf7",
- "key": "fr",
- "keywords": ["fr", "France Flag"],
- "category": "flags",
- "lib": {
- "name": "France Flag",
- "unified": "1F1EB-1F1F7",
- "non_qualified": null,
- "docomo": null,
- "au": "EAFA",
- "softbank": "E50D",
- "google": "FE4E7",
- "image": "1f1eb-1f1f7.png",
- "sheet_x": 2,
- "sheet_y": 4,
- "short_name": "fr",
- "short_names": ["fr", "flag-fr"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 87,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "custard": {
- "char": "\ud83c\udf6e",
- "key": "custard",
- "keywords": ["custard", "CUSTARD"],
- "category": "food_and_drink",
- "lib": {
- "name": "CUSTARD",
- "unified": "1F36E",
- "non_qualified": null,
- "docomo": null,
- "au": "EB56",
- "softbank": null,
- "google": "FE97D",
- "image": "1f36e.png",
- "sheet_x": 7,
- "sheet_y": 41,
- "short_name": "custard",
- "short_names": ["custard"],
- "text": null,
- "texts": null,
- "category": "Food & Drink",
- "sort_order": 87,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "blue_car": {
- "char": "\ud83d\ude99",
- "key": "blue_car",
- "keywords": ["blue_car", "RECREATIONAL VEHICLE"],
- "category": "travel_and_places",
- "lib": {
- "name": "RECREATIONAL VEHICLE",
- "unified": "1F699",
- "non_qualified": null,
- "docomo": "E65F",
- "au": "E4B1",
- "softbank": "E42E",
- "google": "FE7E5",
- "image": "1f699.png",
- "sheet_x": 34,
- "sheet_y": 48,
- "short_name": "blue_car",
- "short_names": ["blue_car"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 87,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "face_with_hand_over_mouth": {
- "char": "\ud83e\udd2d",
- "key": "face_with_hand_over_mouth",
- "keywords": ["face_with_hand_over_mouth", "SMILING FACE WITH SMILING EYES AND HAND COVERING MOUTH"],
- "category": "people",
- "lib": {
- "name": "SMILING FACE WITH SMILING EYES AND HAND COVERING MOUTH",
- "unified": "1F92D",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f92d.png",
- "sheet_x": 39,
- "sheet_y": 12,
- "short_name": "face_with_hand_over_mouth",
- "short_names": ["face_with_hand_over_mouth", "smiling_face_with_smiling_eyes_and_hand_covering_mouth"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 87,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "crab": {
- "char": "\ud83e\udd80",
- "key": "crab",
- "keywords": ["crab", "CRAB"],
- "category": "animals_and_nature",
- "lib": {
- "name": "CRAB",
- "unified": "1F980",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f980.png",
- "sheet_x": 42,
- "sheet_y": 49,
- "short_name": "crab",
- "short_names": ["crab"],
- "text": null,
- "texts": null,
- "category": "Animals & Nature",
- "sort_order": 87,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "double_vertical_bar": {
- "char": "\u23f8\ufe0f",
- "key": "double_vertical_bar",
- "keywords": ["double_vertical_bar", ""],
- "category": "symbols",
- "lib": {
- "name": null,
- "unified": "23F8-FE0F",
- "non_qualified": "23F8",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "23f8-fe0f.png",
- "sheet_x": 48,
- "sheet_y": 47,
- "short_name": "double_vertical_bar",
- "short_names": ["double_vertical_bar"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 87,
- "added_in": "7.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "email": {
- "char": "\u2709\ufe0f",
- "key": "email",
- "keywords": ["email", "ENVELOPE"],
- "category": "objects",
- "lib": {
- "name": "ENVELOPE",
- "unified": "2709-FE0F",
- "non_qualified": "2709",
- "docomo": "E6D3",
- "au": "E521",
- "softbank": null,
- "google": "FE529",
- "image": "2709-fe0f.png",
- "sheet_x": 51,
- "sheet_y": 7,
- "short_name": "email",
- "short_names": ["email", "envelope"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 87,
- "added_in": "1.1",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "flag-ga": {
- "char": "\ud83c\uddec\ud83c\udde6",
- "key": "flag-ga",
- "keywords": ["flag-ga", "Gabon Flag"],
- "category": "flags",
- "lib": {
- "name": "Gabon Flag",
- "unified": "1F1EC-1F1E6",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1ec-1f1e6.png",
- "sheet_x": 2,
- "sheet_y": 5,
- "short_name": "flag-ga",
- "short_names": ["flag-ga"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 88,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "honey_pot": {
- "char": "\ud83c\udf6f",
- "key": "honey_pot",
- "keywords": ["honey_pot", "HONEY POT"],
- "category": "food_and_drink",
- "lib": {
- "name": "HONEY POT",
- "unified": "1F36F",
- "non_qualified": null,
- "docomo": null,
- "au": "EB59",
- "softbank": null,
- "google": "FE97E",
- "image": "1f36f.png",
- "sheet_x": 7,
- "sheet_y": 42,
- "short_name": "honey_pot",
- "short_names": ["honey_pot"],
- "text": null,
- "texts": null,
- "category": "Food & Drink",
- "sort_order": 88,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "e-mail": {
- "char": "\ud83d\udce7",
- "key": "e-mail",
- "keywords": ["e-mail", "E-MAIL SYMBOL"],
- "category": "objects",
- "lib": {
- "name": "E-MAIL SYMBOL",
- "unified": "1F4E7",
- "non_qualified": null,
- "docomo": "E6D3",
- "au": "EB71",
- "softbank": null,
- "google": "FEB92",
- "image": "1f4e7.png",
- "sheet_x": 27,
- "sheet_y": 0,
- "short_name": "e-mail",
- "short_names": ["e-mail"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 88,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "truck": {
- "char": "\ud83d\ude9a",
- "key": "truck",
- "keywords": ["truck", "DELIVERY TRUCK"],
- "category": "travel_and_places",
- "lib": {
- "name": "DELIVERY TRUCK",
- "unified": "1F69A",
- "non_qualified": null,
- "docomo": null,
- "au": "E4B2",
- "softbank": "E42F",
- "google": "FE7F1",
- "image": "1f69a.png",
- "sheet_x": 34,
- "sheet_y": 49,
- "short_name": "truck",
- "short_names": ["truck"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 88,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "lobster": {
- "char": "\ud83e\udd9e",
- "key": "lobster",
- "keywords": ["lobster", "LOBSTER"],
- "category": "animals_and_nature",
- "lib": {
- "name": "LOBSTER",
- "unified": "1F99E",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f99e.png",
- "sheet_x": 43,
- "sheet_y": 26,
- "short_name": "lobster",
- "short_names": ["lobster"],
- "text": null,
- "texts": null,
- "category": "Animals & Nature",
- "sort_order": 88,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- },
- "face_with_monocle": {
- "char": "\ud83e\uddd0",
- "key": "face_with_monocle",
- "keywords": ["face_with_monocle", "FACE WITH MONOCLE"],
- "category": "people",
- "lib": {
- "name": "FACE WITH MONOCLE",
- "unified": "1F9D0",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f9d0.png",
- "sheet_x": 44,
- "sheet_y": 19,
- "short_name": "face_with_monocle",
- "short_names": ["face_with_monocle"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 88,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "black_square_for_stop": {
- "char": "\u23f9\ufe0f",
- "key": "black_square_for_stop",
- "keywords": ["black_square_for_stop", ""],
- "category": "symbols",
- "lib": {
- "name": null,
- "unified": "23F9-FE0F",
- "non_qualified": "23F9",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "23f9-fe0f.png",
- "sheet_x": 48,
- "sheet_y": 48,
- "short_name": "black_square_for_stop",
- "short_names": ["black_square_for_stop"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 88,
- "added_in": "7.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "gb": {
- "char": "\ud83c\uddec\ud83c\udde7",
- "key": "gb",
- "keywords": ["gb", "United Kingdom Flag"],
- "category": "flags",
- "lib": {
- "name": "United Kingdom Flag",
- "unified": "1F1EC-1F1E7",
- "non_qualified": null,
- "docomo": null,
- "au": "EB10",
- "softbank": "E510",
- "google": "FE4EA",
- "image": "1f1ec-1f1e7.png",
- "sheet_x": 2,
- "sheet_y": 6,
- "short_name": "gb",
- "short_names": ["gb", "uk", "flag-gb"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 89,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "baby_bottle": {
- "char": "\ud83c\udf7c",
- "key": "baby_bottle",
- "keywords": ["baby_bottle", "BABY BOTTLE"],
- "category": "food_and_drink",
- "lib": {
- "name": "BABY BOTTLE",
- "unified": "1F37C",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f37c.png",
- "sheet_x": 8,
- "sheet_y": 2,
- "short_name": "baby_bottle",
- "short_names": ["baby_bottle"],
- "text": null,
- "texts": null,
- "category": "Food & Drink",
- "sort_order": 89,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "incoming_envelope": {
- "char": "\ud83d\udce8",
- "key": "incoming_envelope",
- "keywords": ["incoming_envelope", "INCOMING ENVELOPE"],
- "category": "objects",
- "lib": {
- "name": "INCOMING ENVELOPE",
- "unified": "1F4E8",
- "non_qualified": null,
- "docomo": "E6CF",
- "au": "E591",
- "softbank": null,
- "google": "FE52A",
- "image": "1f4e8.png",
- "sheet_x": 27,
- "sheet_y": 1,
- "short_name": "incoming_envelope",
- "short_names": ["incoming_envelope"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 89,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "articulated_lorry": {
- "char": "\ud83d\ude9b",
- "key": "articulated_lorry",
- "keywords": ["articulated_lorry", "ARTICULATED LORRY"],
- "category": "travel_and_places",
- "lib": {
- "name": "ARTICULATED LORRY",
- "unified": "1F69B",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f69b.png",
- "sheet_x": 34,
- "sheet_y": 50,
- "short_name": "articulated_lorry",
- "short_names": ["articulated_lorry"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 89,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "nerd_face": {
- "char": "\ud83e\udd13",
- "key": "nerd_face",
- "keywords": ["nerd_face", "NERD FACE"],
- "category": "people",
- "lib": {
- "name": "NERD FACE",
- "unified": "1F913",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f913.png",
- "sheet_x": 37,
- "sheet_y": 40,
- "short_name": "nerd_face",
- "short_names": ["nerd_face"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 89,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "shrimp": {
- "char": "\ud83e\udd90",
- "key": "shrimp",
- "keywords": ["shrimp", "SHRIMP"],
- "category": "animals_and_nature",
- "lib": {
- "name": "SHRIMP",
- "unified": "1F990",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f990.png",
- "sheet_x": 43,
- "sheet_y": 12,
- "short_name": "shrimp",
- "short_names": ["shrimp"],
- "text": null,
- "texts": null,
- "category": "Animals & Nature",
- "sort_order": 89,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "black_circle_for_record": {
- "char": "\u23fa\ufe0f",
- "key": "black_circle_for_record",
- "keywords": ["black_circle_for_record", ""],
- "category": "symbols",
- "lib": {
- "name": null,
- "unified": "23FA-FE0F",
- "non_qualified": "23FA",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "23fa-fe0f.png",
- "sheet_x": 48,
- "sheet_y": 49,
- "short_name": "black_circle_for_record",
- "short_names": ["black_circle_for_record"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 89,
- "added_in": "7.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "flag-gd": {
- "char": "\ud83c\uddec\ud83c\udde9",
- "key": "flag-gd",
- "keywords": ["flag-gd", "Grenada Flag"],
- "category": "flags",
- "lib": {
- "name": "Grenada Flag",
- "unified": "1F1EC-1F1E9",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1ec-1f1e9.png",
- "sheet_x": 2,
- "sheet_y": 7,
- "short_name": "flag-gd",
- "short_names": ["flag-gd"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 90,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "envelope_with_arrow": {
- "char": "\ud83d\udce9",
- "key": "envelope_with_arrow",
- "keywords": ["envelope_with_arrow", "ENVELOPE WITH DOWNWARDS ARROW ABOVE"],
- "category": "objects",
- "lib": {
- "name": "ENVELOPE WITH DOWNWARDS ARROW ABOVE",
- "unified": "1F4E9",
- "non_qualified": null,
- "docomo": "E6CF",
- "au": "EB62",
- "softbank": "E103",
- "google": "FE52B",
- "image": "1f4e9.png",
- "sheet_x": 27,
- "sheet_y": 2,
- "short_name": "envelope_with_arrow",
- "short_names": ["envelope_with_arrow"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 90,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "smiling_imp": {
- "char": "\ud83d\ude08",
- "key": "smiling_imp",
- "keywords": ["smiling_imp", "SMILING FACE WITH HORNS"],
- "category": "people",
- "lib": {
- "name": "SMILING FACE WITH HORNS",
- "unified": "1F608",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f608.png",
- "sheet_x": 30,
- "sheet_y": 51,
- "short_name": "smiling_imp",
- "short_names": ["smiling_imp"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 90,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "tractor": {
- "char": "\ud83d\ude9c",
- "key": "tractor",
- "keywords": ["tractor", "TRACTOR"],
- "category": "travel_and_places",
- "lib": {
- "name": "TRACTOR",
- "unified": "1F69C",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f69c.png",
- "sheet_x": 34,
- "sheet_y": 51,
- "short_name": "tractor",
- "short_names": ["tractor"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 90,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "glass_of_milk": {
- "char": "\ud83e\udd5b",
- "key": "glass_of_milk",
- "keywords": ["glass_of_milk", "GLASS OF MILK"],
- "category": "food_and_drink",
- "lib": {
- "name": "GLASS OF MILK",
- "unified": "1F95B",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f95b.png",
- "sheet_x": 42,
- "sheet_y": 18,
- "short_name": "glass_of_milk",
- "short_names": ["glass_of_milk"],
- "text": null,
- "texts": null,
- "category": "Food & Drink",
- "sort_order": 90,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "squid": {
- "char": "\ud83e\udd91",
- "key": "squid",
- "keywords": ["squid", "SQUID"],
- "category": "animals_and_nature",
- "lib": {
- "name": "SQUID",
- "unified": "1F991",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f991.png",
- "sheet_x": 43,
- "sheet_y": 13,
- "short_name": "squid",
- "short_names": ["squid"],
- "text": null,
- "texts": null,
- "category": "Animals & Nature",
- "sort_order": 90,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "eject": {
- "char": "\u23cf\ufe0f",
- "key": "eject",
- "keywords": ["eject", ""],
- "category": "symbols",
- "lib": {
- "name": null,
- "unified": "23CF-FE0F",
- "non_qualified": "23CF",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "23cf-fe0f.png",
- "sheet_x": 48,
- "sheet_y": 35,
- "short_name": "eject",
- "short_names": ["eject"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 90,
- "added_in": "4.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "flag-ge": {
- "char": "\ud83c\uddec\ud83c\uddea",
- "key": "flag-ge",
- "keywords": ["flag-ge", "Georgia Flag"],
- "category": "flags",
- "lib": {
- "name": "Georgia Flag",
- "unified": "1F1EC-1F1EA",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1ec-1f1ea.png",
- "sheet_x": 2,
- "sheet_y": 8,
- "short_name": "flag-ge",
- "short_names": ["flag-ge"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 91,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "cinema": {
- "char": "\ud83c\udfa6",
- "key": "cinema",
- "keywords": ["cinema", "CINEMA"],
- "category": "symbols",
- "lib": {
- "name": "CINEMA",
- "unified": "1F3A6",
- "non_qualified": null,
- "docomo": "E677",
- "au": "E517",
- "softbank": "E507",
- "google": "FE802",
- "image": "1f3a6.png",
- "sheet_x": 8,
- "sheet_y": 44,
- "short_name": "cinema",
- "short_names": ["cinema"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 91,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "snail": {
- "char": "\ud83d\udc0c",
- "key": "snail",
- "keywords": ["snail", "SNAIL"],
- "category": "animals_and_nature",
- "lib": {
- "name": "SNAIL",
- "unified": "1F40C",
- "non_qualified": null,
- "docomo": "E74E",
- "au": "EB7E",
- "softbank": null,
- "google": "FE1B9",
- "image": "1f40c.png",
- "sheet_x": 12,
- "sheet_y": 31,
- "short_name": "snail",
- "short_names": ["snail"],
- "text": null,
- "texts": null,
- "category": "Animals & Nature",
- "sort_order": 91,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "imp": {
- "char": "\ud83d\udc7f",
- "key": "imp",
- "keywords": ["imp", "IMP"],
- "category": "people",
- "lib": {
- "name": "IMP",
- "unified": "1F47F",
- "non_qualified": null,
- "docomo": null,
- "au": "E4EF",
- "softbank": "E11A",
- "google": "FE1B2",
- "image": "1f47f.png",
- "sheet_x": 23,
- "sheet_y": 25,
- "short_name": "imp",
- "short_names": ["imp"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 91,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "outbox_tray": {
- "char": "\ud83d\udce4",
- "key": "outbox_tray",
- "keywords": ["outbox_tray", "OUTBOX TRAY"],
- "category": "objects",
- "lib": {
- "name": "OUTBOX TRAY",
- "unified": "1F4E4",
- "non_qualified": null,
- "docomo": null,
- "au": "E592",
- "softbank": null,
- "google": "FE533",
- "image": "1f4e4.png",
- "sheet_x": 26,
- "sheet_y": 50,
- "short_name": "outbox_tray",
- "short_names": ["outbox_tray"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 91,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "bike": {
- "char": "\ud83d\udeb2",
- "key": "bike",
- "keywords": ["bike", "BICYCLE"],
- "category": "travel_and_places",
- "lib": {
- "name": "BICYCLE",
- "unified": "1F6B2",
- "non_qualified": null,
- "docomo": "E71D",
- "au": "E4AE",
- "softbank": "E136",
- "google": "FE7EB",
- "image": "1f6b2.png",
- "sheet_x": 35,
- "sheet_y": 37,
- "short_name": "bike",
- "short_names": ["bike"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 91,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "coffee": {
- "char": "\u2615",
- "key": "coffee",
- "keywords": ["coffee", "HOT BEVERAGE"],
- "category": "food_and_drink",
- "lib": {
- "name": "HOT BEVERAGE",
- "unified": "2615",
- "non_qualified": null,
- "docomo": "E670",
- "au": "E597",
- "softbank": "E045",
- "google": "FE981",
- "image": "2615.png",
- "sheet_x": 49,
- "sheet_y": 14,
- "short_name": "coffee",
- "short_names": ["coffee"],
- "text": null,
- "texts": null,
- "category": "Food & Drink",
- "sort_order": 91,
- "added_in": "4.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "flag-gf": {
- "char": "\ud83c\uddec\ud83c\uddeb",
- "key": "flag-gf",
- "keywords": ["flag-gf", "French Guiana Flag"],
- "category": "flags",
- "lib": {
- "name": "French Guiana Flag",
- "unified": "1F1EC-1F1EB",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1ec-1f1eb.png",
- "sheet_x": 2,
- "sheet_y": 9,
- "short_name": "flag-gf",
- "short_names": ["flag-gf"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 92,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": false,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "tea": {
- "char": "\ud83c\udf75",
- "key": "tea",
- "keywords": ["tea", "TEACUP WITHOUT HANDLE"],
- "category": "food_and_drink",
- "lib": {
- "name": "TEACUP WITHOUT HANDLE",
- "unified": "1F375",
- "non_qualified": null,
- "docomo": "E71E",
- "au": "EAAE",
- "softbank": "E338",
- "google": "FE984",
- "image": "1f375.png",
- "sheet_x": 7,
- "sheet_y": 48,
- "short_name": "tea",
- "short_names": ["tea"],
- "text": null,
- "texts": null,
- "category": "Food & Drink",
- "sort_order": 92,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "inbox_tray": {
- "char": "\ud83d\udce5",
- "key": "inbox_tray",
- "keywords": ["inbox_tray", "INBOX TRAY"],
- "category": "objects",
- "lib": {
- "name": "INBOX TRAY",
- "unified": "1F4E5",
- "non_qualified": null,
- "docomo": null,
- "au": "E593",
- "softbank": null,
- "google": "FE534",
- "image": "1f4e5.png",
- "sheet_x": 26,
- "sheet_y": 51,
- "short_name": "inbox_tray",
- "short_names": ["inbox_tray"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 92,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "low_brightness": {
- "char": "\ud83d\udd05",
- "key": "low_brightness",
- "keywords": ["low_brightness", "LOW BRIGHTNESS SYMBOL"],
- "category": "symbols",
- "lib": {
- "name": "LOW BRIGHTNESS SYMBOL",
- "unified": "1F505",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f505.png",
- "sheet_x": 27,
- "sheet_y": 29,
- "short_name": "low_brightness",
- "short_names": ["low_brightness"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 92,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "scooter": {
- "char": "\ud83d\udef4",
- "key": "scooter",
- "keywords": ["scooter", "SCOOTER"],
- "category": "travel_and_places",
- "lib": {
- "name": "SCOOTER",
- "unified": "1F6F4",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f6f4.png",
- "sheet_x": 37,
- "sheet_y": 31,
- "short_name": "scooter",
- "short_names": ["scooter"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 92,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "clown_face": {
- "char": "\ud83e\udd21",
- "key": "clown_face",
- "keywords": ["clown_face", "CLOWN FACE"],
- "category": "people",
- "lib": {
- "name": "CLOWN FACE",
- "unified": "1F921",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f921.png",
- "sheet_x": 38,
- "sheet_y": 36,
- "short_name": "clown_face",
- "short_names": ["clown_face"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 92,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "butterfly": {
- "char": "\ud83e\udd8b",
- "key": "butterfly",
- "keywords": ["butterfly", "BUTTERFLY"],
- "category": "animals_and_nature",
- "lib": {
- "name": "BUTTERFLY",
- "unified": "1F98B",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f98b.png",
- "sheet_x": 43,
- "sheet_y": 7,
- "short_name": "butterfly",
- "short_names": ["butterfly"],
- "text": null,
- "texts": null,
- "category": "Animals & Nature",
- "sort_order": 92,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "flag-gg": {
- "char": "\ud83c\uddec\ud83c\uddec",
- "key": "flag-gg",
- "keywords": ["flag-gg", "Guernsey Flag"],
- "category": "flags",
- "lib": {
- "name": "Guernsey Flag",
- "unified": "1F1EC-1F1EC",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1ec-1f1ec.png",
- "sheet_x": 2,
- "sheet_y": 10,
- "short_name": "flag-gg",
- "short_names": ["flag-gg"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 93,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "sake": {
- "char": "\ud83c\udf76",
- "key": "sake",
- "keywords": ["sake", "SAKE BOTTLE AND CUP"],
- "category": "food_and_drink",
- "lib": {
- "name": "SAKE BOTTLE AND CUP",
- "unified": "1F376",
- "non_qualified": null,
- "docomo": "E74B",
- "au": "EA97",
- "softbank": "E30B",
- "google": "FE985",
- "image": "1f376.png",
- "sheet_x": 7,
- "sheet_y": 49,
- "short_name": "sake",
- "short_names": ["sake"],
- "text": null,
- "texts": null,
- "category": "Food & Drink",
- "sort_order": 93,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "bug": {
- "char": "\ud83d\udc1b",
- "key": "bug",
- "keywords": ["bug", "BUG"],
- "category": "animals_and_nature",
- "lib": {
- "name": "BUG",
- "unified": "1F41B",
- "non_qualified": null,
- "docomo": null,
- "au": "EB1E",
- "softbank": "E525",
- "google": "FE1CB",
- "image": "1f41b.png",
- "sheet_x": 12,
- "sheet_y": 46,
- "short_name": "bug",
- "short_names": ["bug"],
- "text": null,
- "texts": null,
- "category": "Animals & Nature",
- "sort_order": 93,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "japanese_ogre": {
- "char": "\ud83d\udc79",
- "key": "japanese_ogre",
- "keywords": ["japanese_ogre", "JAPANESE OGRE"],
- "category": "people",
- "lib": {
- "name": "JAPANESE OGRE",
- "unified": "1F479",
- "non_qualified": null,
- "docomo": null,
- "au": "EB44",
- "softbank": null,
- "google": "FE1AC",
- "image": "1f479.png",
- "sheet_x": 23,
- "sheet_y": 14,
- "short_name": "japanese_ogre",
- "short_names": ["japanese_ogre"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 93,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "package": {
- "char": "\ud83d\udce6",
- "key": "package",
- "keywords": ["package", "PACKAGE"],
- "category": "objects",
- "lib": {
- "name": "PACKAGE",
- "unified": "1F4E6",
- "non_qualified": null,
- "docomo": "E685",
- "au": "E51F",
- "softbank": null,
- "google": "FE535",
- "image": "1f4e6.png",
- "sheet_x": 26,
- "sheet_y": 52,
- "short_name": "package",
- "short_names": ["package"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 93,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "high_brightness": {
- "char": "\ud83d\udd06",
- "key": "high_brightness",
- "keywords": ["high_brightness", "HIGH BRIGHTNESS SYMBOL"],
- "category": "symbols",
- "lib": {
- "name": "HIGH BRIGHTNESS SYMBOL",
- "unified": "1F506",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f506.png",
- "sheet_x": 27,
- "sheet_y": 30,
- "short_name": "high_brightness",
- "short_names": ["high_brightness"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 93,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "skateboard": {
- "char": "\ud83d\udef9",
- "key": "skateboard",
- "keywords": ["skateboard", "SKATEBOARD"],
- "category": "travel_and_places",
- "lib": {
- "name": "SKATEBOARD",
- "unified": "1F6F9",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f6f9.png",
- "sheet_x": 37,
- "sheet_y": 36,
- "short_name": "skateboard",
- "short_names": ["skateboard"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 93,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- },
- "flag-gh": {
- "char": "\ud83c\uddec\ud83c\udded",
- "key": "flag-gh",
- "keywords": ["flag-gh", "Ghana Flag"],
- "category": "flags",
- "lib": {
- "name": "Ghana Flag",
- "unified": "1F1EC-1F1ED",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1ec-1f1ed.png",
- "sheet_x": 2,
- "sheet_y": 11,
- "short_name": "flag-gh",
- "short_names": ["flag-gh"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 94,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "champagne": {
- "char": "\ud83c\udf7e",
- "key": "champagne",
- "keywords": ["champagne", "BOTTLE WITH POPPING CORK"],
- "category": "food_and_drink",
- "lib": {
- "name": "BOTTLE WITH POPPING CORK",
- "unified": "1F37E",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f37e.png",
- "sheet_x": 8,
- "sheet_y": 4,
- "short_name": "champagne",
- "short_names": ["champagne"],
- "text": null,
- "texts": null,
- "category": "Food & Drink",
- "sort_order": 94,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "ant": {
- "char": "\ud83d\udc1c",
- "key": "ant",
- "keywords": ["ant", "ANT"],
- "category": "animals_and_nature",
- "lib": {
- "name": "ANT",
- "unified": "1F41C",
- "non_qualified": null,
- "docomo": null,
- "au": "E4DD",
- "softbank": null,
- "google": "FE1DA",
- "image": "1f41c.png",
- "sheet_x": 12,
- "sheet_y": 47,
- "short_name": "ant",
- "short_names": ["ant"],
- "text": null,
- "texts": null,
- "category": "Animals & Nature",
- "sort_order": 94,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "japanese_goblin": {
- "char": "\ud83d\udc7a",
- "key": "japanese_goblin",
- "keywords": ["japanese_goblin", "JAPANESE GOBLIN"],
- "category": "people",
- "lib": {
- "name": "JAPANESE GOBLIN",
- "unified": "1F47A",
- "non_qualified": null,
- "docomo": null,
- "au": "EB45",
- "softbank": null,
- "google": "FE1AD",
- "image": "1f47a.png",
- "sheet_x": 23,
- "sheet_y": 15,
- "short_name": "japanese_goblin",
- "short_names": ["japanese_goblin"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 94,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "mailbox": {
- "char": "\ud83d\udceb",
- "key": "mailbox",
- "keywords": ["mailbox", "CLOSED MAILBOX WITH RAISED FLAG"],
- "category": "objects",
- "lib": {
- "name": "CLOSED MAILBOX WITH RAISED FLAG",
- "unified": "1F4EB",
- "non_qualified": null,
- "docomo": "E665",
- "au": "EB0A",
- "softbank": "E101",
- "google": "FE52D",
- "image": "1f4eb.png",
- "sheet_x": 27,
- "sheet_y": 4,
- "short_name": "mailbox",
- "short_names": ["mailbox"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 94,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "signal_strength": {
- "char": "\ud83d\udcf6",
- "key": "signal_strength",
- "keywords": ["signal_strength", "ANTENNA WITH BARS"],
- "category": "symbols",
- "lib": {
- "name": "ANTENNA WITH BARS",
- "unified": "1F4F6",
- "non_qualified": null,
- "docomo": null,
- "au": "EA84",
- "softbank": "E20B",
- "google": "FE838",
- "image": "1f4f6.png",
- "sheet_x": 27,
- "sheet_y": 15,
- "short_name": "signal_strength",
- "short_names": ["signal_strength"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 94,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "motor_scooter": {
- "char": "\ud83d\udef5",
- "key": "motor_scooter",
- "keywords": ["motor_scooter", "MOTOR SCOOTER"],
- "category": "travel_and_places",
- "lib": {
- "name": "MOTOR SCOOTER",
- "unified": "1F6F5",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f6f5.png",
- "sheet_x": 37,
- "sheet_y": 32,
- "short_name": "motor_scooter",
- "short_names": ["motor_scooter"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 94,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "flag-gi": {
- "char": "\ud83c\uddec\ud83c\uddee",
- "key": "flag-gi",
- "keywords": ["flag-gi", "Gibraltar Flag"],
- "category": "flags",
- "lib": {
- "name": "Gibraltar Flag",
- "unified": "1F1EC-1F1EE",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1ec-1f1ee.png",
- "sheet_x": 2,
- "sheet_y": 12,
- "short_name": "flag-gi",
- "short_names": ["flag-gi"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 95,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "wine_glass": {
- "char": "\ud83c\udf77",
- "key": "wine_glass",
- "keywords": ["wine_glass", "WINE GLASS"],
- "category": "food_and_drink",
- "lib": {
- "name": "WINE GLASS",
- "unified": "1F377",
- "non_qualified": null,
- "docomo": "E756",
- "au": "E4C1",
- "softbank": null,
- "google": "FE986",
- "image": "1f377.png",
- "sheet_x": 7,
- "sheet_y": 50,
- "short_name": "wine_glass",
- "short_names": ["wine_glass"],
- "text": null,
- "texts": null,
- "category": "Food & Drink",
- "sort_order": 95,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "bee": {
- "char": "\ud83d\udc1d",
- "key": "bee",
- "keywords": ["bee", "HONEYBEE"],
- "category": "animals_and_nature",
- "lib": {
- "name": "HONEYBEE",
- "unified": "1F41D",
- "non_qualified": null,
- "docomo": null,
- "au": "EB57",
- "softbank": null,
- "google": "FE1E1",
- "image": "1f41d.png",
- "sheet_x": 12,
- "sheet_y": 48,
- "short_name": "bee",
- "short_names": ["bee", "honeybee"],
- "text": null,
- "texts": null,
- "category": "Animals & Nature",
- "sort_order": 95,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "skull": {
- "char": "\ud83d\udc80",
- "key": "skull",
- "keywords": ["skull", "SKULL"],
- "category": "people",
- "lib": {
- "name": "SKULL",
- "unified": "1F480",
- "non_qualified": null,
- "docomo": null,
- "au": "E4F8",
- "softbank": "E11C",
- "google": "FE1B3",
- "image": "1f480.png",
- "sheet_x": 23,
- "sheet_y": 26,
- "short_name": "skull",
- "short_names": ["skull"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 95,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "mailbox_closed": {
- "char": "\ud83d\udcea",
- "key": "mailbox_closed",
- "keywords": ["mailbox_closed", "CLOSED MAILBOX WITH LOWERED FLAG"],
- "category": "objects",
- "lib": {
- "name": "CLOSED MAILBOX WITH LOWERED FLAG",
- "unified": "1F4EA",
- "non_qualified": null,
- "docomo": "E665",
- "au": "E51B",
- "softbank": null,
- "google": "FE52C",
- "image": "1f4ea.png",
- "sheet_x": 27,
- "sheet_y": 3,
- "short_name": "mailbox_closed",
- "short_names": ["mailbox_closed"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 95,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "vibration_mode": {
- "char": "\ud83d\udcf3",
- "key": "vibration_mode",
- "keywords": ["vibration_mode", "VIBRATION MODE"],
- "category": "symbols",
- "lib": {
- "name": "VIBRATION MODE",
- "unified": "1F4F3",
- "non_qualified": null,
- "docomo": null,
- "au": "EA90",
- "softbank": "E250",
- "google": "FE839",
- "image": "1f4f3.png",
- "sheet_x": 27,
- "sheet_y": 12,
- "short_name": "vibration_mode",
- "short_names": ["vibration_mode"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 95,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "busstop": {
- "char": "\ud83d\ude8f",
- "key": "busstop",
- "keywords": ["busstop", "BUS STOP"],
- "category": "travel_and_places",
- "lib": {
- "name": "BUS STOP",
- "unified": "1F68F",
- "non_qualified": null,
- "docomo": null,
- "au": "E4A7",
- "softbank": "E150",
- "google": "FE7E7",
- "image": "1f68f.png",
- "sheet_x": 34,
- "sheet_y": 38,
- "short_name": "busstop",
- "short_names": ["busstop"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 95,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "flag-gl": {
- "char": "\ud83c\uddec\ud83c\uddf1",
- "key": "flag-gl",
- "keywords": ["flag-gl", "Greenland Flag"],
- "category": "flags",
- "lib": {
- "name": "Greenland Flag",
- "unified": "1F1EC-1F1F1",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1ec-1f1f1.png",
- "sheet_x": 2,
- "sheet_y": 13,
- "short_name": "flag-gl",
- "short_names": ["flag-gl"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 96,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "cocktail": {
- "char": "\ud83c\udf78",
- "key": "cocktail",
- "keywords": ["cocktail", "COCKTAIL GLASS"],
- "category": "food_and_drink",
- "lib": {
- "name": "COCKTAIL GLASS",
- "unified": "1F378",
- "non_qualified": null,
- "docomo": "E671",
- "au": "E4C2",
- "softbank": "E044",
- "google": "FE982",
- "image": "1f378.png",
- "sheet_x": 7,
- "sheet_y": 51,
- "short_name": "cocktail",
- "short_names": ["cocktail"],
- "text": null,
- "texts": null,
- "category": "Food & Drink",
- "sort_order": 96,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "beetle": {
- "char": "\ud83d\udc1e",
- "key": "beetle",
- "keywords": ["beetle", "LADY BEETLE"],
- "category": "animals_and_nature",
- "lib": {
- "name": "LADY BEETLE",
- "unified": "1F41E",
- "non_qualified": null,
- "docomo": null,
- "au": "EB58",
- "softbank": null,
- "google": "FE1E2",
- "image": "1f41e.png",
- "sheet_x": 12,
- "sheet_y": 49,
- "short_name": "beetle",
- "short_names": ["beetle"],
- "text": null,
- "texts": null,
- "category": "Animals & Nature",
- "sort_order": 96,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "mailbox_with_mail": {
- "char": "\ud83d\udcec",
- "key": "mailbox_with_mail",
- "keywords": ["mailbox_with_mail", "OPEN MAILBOX WITH RAISED FLAG"],
- "category": "objects",
- "lib": {
- "name": "OPEN MAILBOX WITH RAISED FLAG",
- "unified": "1F4EC",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f4ec.png",
- "sheet_x": 27,
- "sheet_y": 5,
- "short_name": "mailbox_with_mail",
- "short_names": ["mailbox_with_mail"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 96,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "mobile_phone_off": {
- "char": "\ud83d\udcf4",
- "key": "mobile_phone_off",
- "keywords": ["mobile_phone_off", "MOBILE PHONE OFF"],
- "category": "symbols",
- "lib": {
- "name": "MOBILE PHONE OFF",
- "unified": "1F4F4",
- "non_qualified": null,
- "docomo": null,
- "au": "EA91",
- "softbank": "E251",
- "google": "FE83A",
- "image": "1f4f4.png",
- "sheet_x": 27,
- "sheet_y": 13,
- "short_name": "mobile_phone_off",
- "short_names": ["mobile_phone_off"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 96,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "motorway": {
- "char": "\ud83d\udee3\ufe0f",
- "key": "motorway",
- "keywords": ["motorway", ""],
- "category": "travel_and_places",
- "lib": {
- "name": null,
- "unified": "1F6E3-FE0F",
- "non_qualified": "1F6E3",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f6e3-fe0f.png",
- "sheet_x": 37,
- "sheet_y": 23,
- "short_name": "motorway",
- "short_names": ["motorway"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 96,
- "added_in": "7.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "skull_and_crossbones": {
- "char": "\u2620\ufe0f",
- "key": "skull_and_crossbones",
- "keywords": ["skull_and_crossbones", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "2620-FE0F",
- "non_qualified": "2620",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "2620-fe0f.png",
- "sheet_x": 49,
- "sheet_y": 22,
- "short_name": "skull_and_crossbones",
- "short_names": ["skull_and_crossbones"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 96,
- "added_in": "1.1",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "flag-gm": {
- "char": "\ud83c\uddec\ud83c\uddf2",
- "key": "flag-gm",
- "keywords": ["flag-gm", "Gambia Flag"],
- "category": "flags",
- "lib": {
- "name": "Gambia Flag",
- "unified": "1F1EC-1F1F2",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1ec-1f1f2.png",
- "sheet_x": 2,
- "sheet_y": 14,
- "short_name": "flag-gm",
- "short_names": ["flag-gm"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 97,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "tropical_drink": {
- "char": "\ud83c\udf79",
- "key": "tropical_drink",
- "keywords": ["tropical_drink", "TROPICAL DRINK"],
- "category": "food_and_drink",
- "lib": {
- "name": "TROPICAL DRINK",
- "unified": "1F379",
- "non_qualified": null,
- "docomo": "E671",
- "au": "EB3E",
- "softbank": null,
- "google": "FE988",
- "image": "1f379.png",
- "sheet_x": 7,
- "sheet_y": 52,
- "short_name": "tropical_drink",
- "short_names": ["tropical_drink"],
- "text": null,
- "texts": null,
- "category": "Food & Drink",
- "sort_order": 97,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "ghost": {
- "char": "\ud83d\udc7b",
- "key": "ghost",
- "keywords": ["ghost", "GHOST"],
- "category": "people",
- "lib": {
- "name": "GHOST",
- "unified": "1F47B",
- "non_qualified": null,
- "docomo": null,
- "au": "E4CB",
- "softbank": "E11B",
- "google": "FE1AE",
- "image": "1f47b.png",
- "sheet_x": 23,
- "sheet_y": 16,
- "short_name": "ghost",
- "short_names": ["ghost"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 97,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "mailbox_with_no_mail": {
- "char": "\ud83d\udced",
- "key": "mailbox_with_no_mail",
- "keywords": ["mailbox_with_no_mail", "OPEN MAILBOX WITH LOWERED FLAG"],
- "category": "objects",
- "lib": {
- "name": "OPEN MAILBOX WITH LOWERED FLAG",
- "unified": "1F4ED",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f4ed.png",
- "sheet_x": 27,
- "sheet_y": 6,
- "short_name": "mailbox_with_no_mail",
- "short_names": ["mailbox_with_no_mail"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 97,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "railway_track": {
- "char": "\ud83d\udee4\ufe0f",
- "key": "railway_track",
- "keywords": ["railway_track", ""],
- "category": "travel_and_places",
- "lib": {
- "name": null,
- "unified": "1F6E4-FE0F",
- "non_qualified": "1F6E4",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f6e4-fe0f.png",
- "sheet_x": 37,
- "sheet_y": 24,
- "short_name": "railway_track",
- "short_names": ["railway_track"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 97,
- "added_in": "7.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "cricket": {
- "char": "\ud83e\udd97",
- "key": "cricket",
- "keywords": ["cricket", "CRICKET"],
- "category": "animals_and_nature",
- "lib": {
- "name": "CRICKET",
- "unified": "1F997",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f997.png",
- "sheet_x": 43,
- "sheet_y": 19,
- "short_name": "cricket",
- "short_names": ["cricket"],
- "text": null,
- "texts": null,
- "category": "Animals & Nature",
- "sort_order": 97,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "female_sign": {
- "char": "\u2640\ufe0f",
- "key": "female_sign",
- "keywords": ["female_sign", ""],
- "category": "symbols",
- "lib": {
- "name": null,
- "unified": "2640-FE0F",
- "non_qualified": "2640",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "2640-fe0f.png",
- "sheet_x": 49,
- "sheet_y": 32,
- "short_name": "female_sign",
- "short_names": ["female_sign"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 97,
- "added_in": "1.1",
- "has_img_apple": false,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "flag-gn": {
- "char": "\ud83c\uddec\ud83c\uddf3",
- "key": "flag-gn",
- "keywords": ["flag-gn", "Guinea Flag"],
- "category": "flags",
- "lib": {
- "name": "Guinea Flag",
- "unified": "1F1EC-1F1F3",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1ec-1f1f3.png",
- "sheet_x": 2,
- "sheet_y": 15,
- "short_name": "flag-gn",
- "short_names": ["flag-gn"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 98,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "beer": {
- "char": "\ud83c\udf7a",
- "key": "beer",
- "keywords": ["beer", "BEER MUG"],
- "category": "food_and_drink",
- "lib": {
- "name": "BEER MUG",
- "unified": "1F37A",
- "non_qualified": null,
- "docomo": "E672",
- "au": "E4C3",
- "softbank": "E047",
- "google": "FE983",
- "image": "1f37a.png",
- "sheet_x": 8,
- "sheet_y": 0,
- "short_name": "beer",
- "short_names": ["beer"],
- "text": null,
- "texts": null,
- "category": "Food & Drink",
- "sort_order": 98,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "alien": {
- "char": "\ud83d\udc7d",
- "key": "alien",
- "keywords": ["alien", "EXTRATERRESTRIAL ALIEN"],
- "category": "people",
- "lib": {
- "name": "EXTRATERRESTRIAL ALIEN",
- "unified": "1F47D",
- "non_qualified": null,
- "docomo": null,
- "au": "E50E",
- "softbank": "E10C",
- "google": "FE1B0",
- "image": "1f47d.png",
- "sheet_x": 23,
- "sheet_y": 23,
- "short_name": "alien",
- "short_names": ["alien"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 98,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "postbox": {
- "char": "\ud83d\udcee",
- "key": "postbox",
- "keywords": ["postbox", "POSTBOX"],
- "category": "objects",
- "lib": {
- "name": "POSTBOX",
- "unified": "1F4EE",
- "non_qualified": null,
- "docomo": "E665",
- "au": "E51B",
- "softbank": "E102",
- "google": "FE52E",
- "image": "1f4ee.png",
- "sheet_x": 27,
- "sheet_y": 7,
- "short_name": "postbox",
- "short_names": ["postbox"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 98,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "spider": {
- "char": "\ud83d\udd77\ufe0f",
- "key": "spider",
- "keywords": ["spider", ""],
- "category": "animals_and_nature",
- "lib": {
- "name": null,
- "unified": "1F577-FE0F",
- "non_qualified": "1F577",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f577-fe0f.png",
- "sheet_x": 29,
- "sheet_y": 38,
- "short_name": "spider",
- "short_names": ["spider"],
- "text": null,
- "texts": null,
- "category": "Animals & Nature",
- "sort_order": 98,
- "added_in": "7.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "oil_drum": {
- "char": "\ud83d\udee2\ufe0f",
- "key": "oil_drum",
- "keywords": ["oil_drum", ""],
- "category": "travel_and_places",
- "lib": {
- "name": null,
- "unified": "1F6E2-FE0F",
- "non_qualified": "1F6E2",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f6e2-fe0f.png",
- "sheet_x": 37,
- "sheet_y": 22,
- "short_name": "oil_drum",
- "short_names": ["oil_drum"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 98,
- "added_in": "7.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "male_sign": {
- "char": "\u2642\ufe0f",
- "key": "male_sign",
- "keywords": ["male_sign", ""],
- "category": "symbols",
- "lib": {
- "name": null,
- "unified": "2642-FE0F",
- "non_qualified": "2642",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "2642-fe0f.png",
- "sheet_x": 49,
- "sheet_y": 33,
- "short_name": "male_sign",
- "short_names": ["male_sign"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 98,
- "added_in": "1.1",
- "has_img_apple": false,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "flag-gp": {
- "char": "\ud83c\uddec\ud83c\uddf5",
- "key": "flag-gp",
- "keywords": ["flag-gp", "Guadeloupe Flag"],
- "category": "flags",
- "lib": {
- "name": "Guadeloupe Flag",
- "unified": "1F1EC-1F1F5",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1ec-1f1f5.png",
- "sheet_x": 2,
- "sheet_y": 16,
- "short_name": "flag-gp",
- "short_names": ["flag-gp"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 99,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": false,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "beers": {
- "char": "\ud83c\udf7b",
- "key": "beers",
- "keywords": ["beers", "CLINKING BEER MUGS"],
- "category": "food_and_drink",
- "lib": {
- "name": "CLINKING BEER MUGS",
- "unified": "1F37B",
- "non_qualified": null,
- "docomo": "E672",
- "au": "EA98",
- "softbank": "E30C",
- "google": "FE987",
- "image": "1f37b.png",
- "sheet_x": 8,
- "sheet_y": 1,
- "short_name": "beers",
- "short_names": ["beers"],
- "text": null,
- "texts": null,
- "category": "Food & Drink",
- "sort_order": 99,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "space_invader": {
- "char": "\ud83d\udc7e",
- "key": "space_invader",
- "keywords": ["space_invader", "ALIEN MONSTER"],
- "category": "people",
- "lib": {
- "name": "ALIEN MONSTER",
- "unified": "1F47E",
- "non_qualified": null,
- "docomo": null,
- "au": "E4EC",
- "softbank": "E12B",
- "google": "FE1B1",
- "image": "1f47e.png",
- "sheet_x": 23,
- "sheet_y": 24,
- "short_name": "space_invader",
- "short_names": ["space_invader"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 99,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "spider_web": {
- "char": "\ud83d\udd78\ufe0f",
- "key": "spider_web",
- "keywords": ["spider_web", ""],
- "category": "animals_and_nature",
- "lib": {
- "name": null,
- "unified": "1F578-FE0F",
- "non_qualified": "1F578",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f578-fe0f.png",
- "sheet_x": 29,
- "sheet_y": 39,
- "short_name": "spider_web",
- "short_names": ["spider_web"],
- "text": null,
- "texts": null,
- "category": "Animals & Nature",
- "sort_order": 99,
- "added_in": "7.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "ballot_box_with_ballot": {
- "char": "\ud83d\uddf3\ufe0f",
- "key": "ballot_box_with_ballot",
- "keywords": ["ballot_box_with_ballot", ""],
- "category": "objects",
- "lib": {
- "name": null,
- "unified": "1F5F3-FE0F",
- "non_qualified": "1F5F3",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f5f3-fe0f.png",
- "sheet_x": 30,
- "sheet_y": 36,
- "short_name": "ballot_box_with_ballot",
- "short_names": ["ballot_box_with_ballot"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 99,
- "added_in": "7.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "medical_symbol": {
- "char": "\u2695\ufe0f",
- "key": "medical_symbol",
- "keywords": ["medical_symbol", ""],
- "category": "symbols",
- "lib": {
- "name": null,
- "unified": "2695-FE0F",
- "non_qualified": "2695",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "2695-fe0f.png",
- "sheet_x": 50,
- "sheet_y": 5,
- "short_name": "medical_symbol",
- "short_names": ["medical_symbol", "staff_of_aesculapius"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 99,
- "added_in": "4.1",
- "has_img_apple": false,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "fuelpump": {
- "char": "\u26fd",
- "key": "fuelpump",
- "keywords": ["fuelpump", "FUEL PUMP"],
- "category": "travel_and_places",
- "lib": {
- "name": "FUEL PUMP",
- "unified": "26FD",
- "non_qualified": null,
- "docomo": "E66B",
- "au": "E571",
- "softbank": "E03A",
- "google": "FE7F5",
- "image": "26fd.png",
- "sheet_x": 51,
- "sheet_y": 3,
- "short_name": "fuelpump",
- "short_names": ["fuelpump"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 99,
- "added_in": "5.2",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "flag-gq": {
- "char": "\ud83c\uddec\ud83c\uddf6",
- "key": "flag-gq",
- "keywords": ["flag-gq", "Equatorial Guinea Flag"],
- "category": "flags",
- "lib": {
- "name": "Equatorial Guinea Flag",
- "unified": "1F1EC-1F1F6",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1ec-1f1f6.png",
- "sheet_x": 2,
- "sheet_y": 17,
- "short_name": "flag-gq",
- "short_names": ["flag-gq"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 100,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "rotating_light": {
- "char": "\ud83d\udea8",
- "key": "rotating_light",
- "keywords": ["rotating_light", "POLICE CARS REVOLVING LIGHT"],
- "category": "travel_and_places",
- "lib": {
- "name": "POLICE CARS REVOLVING LIGHT",
- "unified": "1F6A8",
- "non_qualified": null,
- "docomo": null,
- "au": "EB73",
- "softbank": null,
- "google": "FE7F9",
- "image": "1f6a8.png",
- "sheet_x": 35,
- "sheet_y": 27,
- "short_name": "rotating_light",
- "short_names": ["rotating_light"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 100,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "robot_face": {
- "char": "\ud83e\udd16",
- "key": "robot_face",
- "keywords": ["robot_face", "ROBOT FACE"],
- "category": "people",
- "lib": {
- "name": "ROBOT FACE",
- "unified": "1F916",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f916.png",
- "sheet_x": 37,
- "sheet_y": 43,
- "short_name": "robot_face",
- "short_names": ["robot_face"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 100,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "clinking_glasses": {
- "char": "\ud83e\udd42",
- "key": "clinking_glasses",
- "keywords": ["clinking_glasses", "CLINKING GLASSES"],
- "category": "food_and_drink",
- "lib": {
- "name": "CLINKING GLASSES",
- "unified": "1F942",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f942.png",
- "sheet_x": 41,
- "sheet_y": 47,
- "short_name": "clinking_glasses",
- "short_names": ["clinking_glasses"],
- "text": null,
- "texts": null,
- "category": "Food & Drink",
- "sort_order": 100,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "scorpion": {
- "char": "\ud83e\udd82",
- "key": "scorpion",
- "keywords": ["scorpion", "SCORPION"],
- "category": "animals_and_nature",
- "lib": {
- "name": "SCORPION",
- "unified": "1F982",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f982.png",
- "sheet_x": 42,
- "sheet_y": 51,
- "short_name": "scorpion",
- "short_names": ["scorpion"],
- "text": null,
- "texts": null,
- "category": "Animals & Nature",
- "sort_order": 100,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "infinity": {
- "char": "\u267e\ufe0f",
- "key": "infinity",
- "keywords": ["infinity", ""],
- "category": "symbols",
- "lib": {
- "name": null,
- "unified": "267E-FE0F",
- "non_qualified": "267E",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "267e-fe0f.png",
- "sheet_x": 50,
- "sheet_y": 0,
- "short_name": "infinity",
- "short_names": ["infinity"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 100,
- "added_in": "4.1",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- },
- "pencil2": {
- "char": "\u270f\ufe0f",
- "key": "pencil2",
- "keywords": ["pencil2", "PENCIL"],
- "category": "objects",
- "lib": {
- "name": "PENCIL",
- "unified": "270F-FE0F",
- "non_qualified": "270F",
- "docomo": "E719",
- "au": "E4A1",
- "softbank": null,
- "google": "FE539",
- "image": "270f-fe0f.png",
- "sheet_x": 51,
- "sheet_y": 32,
- "short_name": "pencil2",
- "short_names": ["pencil2"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 100,
- "added_in": "1.1",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "flag-gr": {
- "char": "\ud83c\uddec\ud83c\uddf7",
- "key": "flag-gr",
- "keywords": ["flag-gr", "Greece Flag"],
- "category": "flags",
- "lib": {
- "name": "Greece Flag",
- "unified": "1F1EC-1F1F7",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1ec-1f1f7.png",
- "sheet_x": 2,
- "sheet_y": 18,
- "short_name": "flag-gr",
- "short_names": ["flag-gr"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 101,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "hankey": {
- "char": "\ud83d\udca9",
- "key": "hankey",
- "keywords": ["hankey", "PILE OF POO"],
- "category": "people",
- "lib": {
- "name": "PILE OF POO",
- "unified": "1F4A9",
- "non_qualified": null,
- "docomo": null,
- "au": "E4F5",
- "softbank": "E05A",
- "google": "FE4F4",
- "image": "1f4a9.png",
- "sheet_x": 25,
- "sheet_y": 39,
- "short_name": "hankey",
- "short_names": ["hankey", "poop", "shit"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 101,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "traffic_light": {
- "char": "\ud83d\udea5",
- "key": "traffic_light",
- "keywords": ["traffic_light", "HORIZONTAL TRAFFIC LIGHT"],
- "category": "travel_and_places",
- "lib": {
- "name": "HORIZONTAL TRAFFIC LIGHT",
- "unified": "1F6A5",
- "non_qualified": null,
- "docomo": "E66D",
- "au": "E46A",
- "softbank": "E14E",
- "google": "FE7F7",
- "image": "1f6a5.png",
- "sheet_x": 35,
- "sheet_y": 24,
- "short_name": "traffic_light",
- "short_names": ["traffic_light"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 101,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "tumbler_glass": {
- "char": "\ud83e\udd43",
- "key": "tumbler_glass",
- "keywords": ["tumbler_glass", "TUMBLER GLASS"],
- "category": "food_and_drink",
- "lib": {
- "name": "TUMBLER GLASS",
- "unified": "1F943",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f943.png",
- "sheet_x": 41,
- "sheet_y": 48,
- "short_name": "tumbler_glass",
- "short_names": ["tumbler_glass"],
- "text": null,
- "texts": null,
- "category": "Food & Drink",
- "sort_order": 101,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "mosquito": {
- "char": "\ud83e\udd9f",
- "key": "mosquito",
- "keywords": ["mosquito", "MOSQUITO"],
- "category": "animals_and_nature",
- "lib": {
- "name": "MOSQUITO",
- "unified": "1F99F",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f99f.png",
- "sheet_x": 43,
- "sheet_y": 27,
- "short_name": "mosquito",
- "short_names": ["mosquito"],
- "text": null,
- "texts": null,
- "category": "Animals & Nature",
- "sort_order": 101,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- },
- "recycle": {
- "char": "\u267b\ufe0f",
- "key": "recycle",
- "keywords": ["recycle", "BLACK UNIVERSAL RECYCLING SYMBOL"],
- "category": "symbols",
- "lib": {
- "name": "BLACK UNIVERSAL RECYCLING SYMBOL",
- "unified": "267B-FE0F",
- "non_qualified": "267B",
- "docomo": "E735",
- "au": "EB79",
- "softbank": null,
- "google": "FEB2C",
- "image": "267b-fe0f.png",
- "sheet_x": 49,
- "sheet_y": 52,
- "short_name": "recycle",
- "short_names": ["recycle"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 101,
- "added_in": "3.2",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "black_nib": {
- "char": "\u2712\ufe0f",
- "key": "black_nib",
- "keywords": ["black_nib", "BLACK NIB"],
- "category": "objects",
- "lib": {
- "name": "BLACK NIB",
- "unified": "2712-FE0F",
- "non_qualified": "2712",
- "docomo": "E6AE",
- "au": "EB03",
- "softbank": null,
- "google": "FE536",
- "image": "2712-fe0f.png",
- "sheet_x": 51,
- "sheet_y": 33,
- "short_name": "black_nib",
- "short_names": ["black_nib"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 101,
- "added_in": "1.1",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "flag-gs": {
- "char": "\ud83c\uddec\ud83c\uddf8",
- "key": "flag-gs",
- "keywords": ["flag-gs", "South Georgia & South Sandwich Islands Flag"],
- "category": "flags",
- "lib": {
- "name": "South Georgia & South Sandwich Islands Flag",
- "unified": "1F1EC-1F1F8",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1ec-1f1f8.png",
- "sheet_x": 2,
- "sheet_y": 19,
- "short_name": "flag-gs",
- "short_names": ["flag-gs"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 102,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": false,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "lower_left_fountain_pen": {
- "char": "\ud83d\udd8b\ufe0f",
- "key": "lower_left_fountain_pen",
- "keywords": ["lower_left_fountain_pen", ""],
- "category": "objects",
- "lib": {
- "name": null,
- "unified": "1F58B-FE0F",
- "non_qualified": "1F58B",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f58b-fe0f.png",
- "sheet_x": 29,
- "sheet_y": 49,
- "short_name": "lower_left_fountain_pen",
- "short_names": ["lower_left_fountain_pen"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 102,
- "added_in": "7.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "smiley_cat": {
- "char": "\ud83d\ude3a",
- "key": "smiley_cat",
- "keywords": ["smiley_cat", "SMILING CAT FACE WITH OPEN MOUTH"],
- "category": "people",
- "lib": {
- "name": "SMILING CAT FACE WITH OPEN MOUTH",
- "unified": "1F63A",
- "non_qualified": null,
- "docomo": "E6F0",
- "au": "EB61",
- "softbank": null,
- "google": "FE348",
- "image": "1f63a.png",
- "sheet_x": 31,
- "sheet_y": 48,
- "short_name": "smiley_cat",
- "short_names": ["smiley_cat"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 102,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "vertical_traffic_light": {
- "char": "\ud83d\udea6",
- "key": "vertical_traffic_light",
- "keywords": ["vertical_traffic_light", "VERTICAL TRAFFIC LIGHT"],
- "category": "travel_and_places",
- "lib": {
- "name": "VERTICAL TRAFFIC LIGHT",
- "unified": "1F6A6",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f6a6.png",
- "sheet_x": 35,
- "sheet_y": 25,
- "short_name": "vertical_traffic_light",
- "short_names": ["vertical_traffic_light"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 102,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "cup_with_straw": {
- "char": "\ud83e\udd64",
- "key": "cup_with_straw",
- "keywords": ["cup_with_straw", "CUP WITH STRAW"],
- "category": "food_and_drink",
- "lib": {
- "name": "CUP WITH STRAW",
- "unified": "1F964",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f964.png",
- "sheet_x": 42,
- "sheet_y": 27,
- "short_name": "cup_with_straw",
- "short_names": ["cup_with_straw"],
- "text": null,
- "texts": null,
- "category": "Food & Drink",
- "sort_order": 102,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "microbe": {
- "char": "\ud83e\udda0",
- "key": "microbe",
- "keywords": ["microbe", "MICROBE"],
- "category": "animals_and_nature",
- "lib": {
- "name": "MICROBE",
- "unified": "1F9A0",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f9a0.png",
- "sheet_x": 43,
- "sheet_y": 28,
- "short_name": "microbe",
- "short_names": ["microbe"],
- "text": null,
- "texts": null,
- "category": "Animals & Nature",
- "sort_order": 102,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- },
- "fleur_de_lis": {
- "char": "\u269c\ufe0f",
- "key": "fleur_de_lis",
- "keywords": ["fleur_de_lis", ""],
- "category": "symbols",
- "lib": {
- "name": null,
- "unified": "269C-FE0F",
- "non_qualified": "269C",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "269c-fe0f.png",
- "sheet_x": 50,
- "sheet_y": 10,
- "short_name": "fleur_de_lis",
- "short_names": ["fleur_de_lis"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 102,
- "added_in": "4.1",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "flag-gt": {
- "char": "\ud83c\uddec\ud83c\uddf9",
- "key": "flag-gt",
- "keywords": ["flag-gt", "Guatemala Flag"],
- "category": "flags",
- "lib": {
- "name": "Guatemala Flag",
- "unified": "1F1EC-1F1F9",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1ec-1f1f9.png",
- "sheet_x": 2,
- "sheet_y": 20,
- "short_name": "flag-gt",
- "short_names": ["flag-gt"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 103,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "bouquet": {
- "char": "\ud83d\udc90",
- "key": "bouquet",
- "keywords": ["bouquet", "BOUQUET"],
- "category": "animals_and_nature",
- "lib": {
- "name": "BOUQUET",
- "unified": "1F490",
- "non_qualified": null,
- "docomo": null,
- "au": "EA95",
- "softbank": "E306",
- "google": "FE828",
- "image": "1f490.png",
- "sheet_x": 25,
- "sheet_y": 14,
- "short_name": "bouquet",
- "short_names": ["bouquet"],
- "text": null,
- "texts": null,
- "category": "Animals & Nature",
- "sort_order": 103,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "trident": {
- "char": "\ud83d\udd31",
- "key": "trident",
- "keywords": ["trident", "TRIDENT EMBLEM"],
- "category": "symbols",
- "lib": {
- "name": "TRIDENT EMBLEM",
- "unified": "1F531",
- "non_qualified": null,
- "docomo": "E71A",
- "au": "E5C9",
- "softbank": "E031",
- "google": "FE4D2",
- "image": "1f531.png",
- "sheet_x": 28,
- "sheet_y": 20,
- "short_name": "trident",
- "short_names": ["trident"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 103,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "lower_left_ballpoint_pen": {
- "char": "\ud83d\udd8a\ufe0f",
- "key": "lower_left_ballpoint_pen",
- "keywords": ["lower_left_ballpoint_pen", ""],
- "category": "objects",
- "lib": {
- "name": null,
- "unified": "1F58A-FE0F",
- "non_qualified": "1F58A",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f58a-fe0f.png",
- "sheet_x": 29,
- "sheet_y": 48,
- "short_name": "lower_left_ballpoint_pen",
- "short_names": ["lower_left_ballpoint_pen"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 103,
- "added_in": "7.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "smile_cat": {
- "char": "\ud83d\ude38",
- "key": "smile_cat",
- "keywords": ["smile_cat", "GRINNING CAT FACE WITH SMILING EYES"],
- "category": "people",
- "lib": {
- "name": "GRINNING CAT FACE WITH SMILING EYES",
- "unified": "1F638",
- "non_qualified": null,
- "docomo": "E753",
- "au": "EB7F",
- "softbank": null,
- "google": "FE349",
- "image": "1f638.png",
- "sheet_x": 31,
- "sheet_y": 46,
- "short_name": "smile_cat",
- "short_names": ["smile_cat"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 103,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "octagonal_sign": {
- "char": "\ud83d\uded1",
- "key": "octagonal_sign",
- "keywords": ["octagonal_sign", "OCTAGONAL SIGN"],
- "category": "travel_and_places",
- "lib": {
- "name": "OCTAGONAL SIGN",
- "unified": "1F6D1",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f6d1.png",
- "sheet_x": 37,
- "sheet_y": 18,
- "short_name": "octagonal_sign",
- "short_names": ["octagonal_sign"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 103,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "chopsticks": {
- "char": "\ud83e\udd62",
- "key": "chopsticks",
- "keywords": ["chopsticks", "CHOPSTICKS"],
- "category": "food_and_drink",
- "lib": {
- "name": "CHOPSTICKS",
- "unified": "1F962",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f962.png",
- "sheet_x": 42,
- "sheet_y": 25,
- "short_name": "chopsticks",
- "short_names": ["chopsticks"],
- "text": null,
- "texts": null,
- "category": "Food & Drink",
- "sort_order": 103,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "flag-gu": {
- "char": "\ud83c\uddec\ud83c\uddfa",
- "key": "flag-gu",
- "keywords": ["flag-gu", "Guam Flag"],
- "category": "flags",
- "lib": {
- "name": "Guam Flag",
- "unified": "1F1EC-1F1FA",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1ec-1f1fa.png",
- "sheet_x": 2,
- "sheet_y": 21,
- "short_name": "flag-gu",
- "short_names": ["flag-gu"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 104,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "cherry_blossom": {
- "char": "\ud83c\udf38",
- "key": "cherry_blossom",
- "keywords": ["cherry_blossom", "CHERRY BLOSSOM"],
- "category": "animals_and_nature",
- "lib": {
- "name": "CHERRY BLOSSOM",
- "unified": "1F338",
- "non_qualified": null,
- "docomo": "E748",
- "au": "E4CA",
- "softbank": "E030",
- "google": "FE040",
- "image": "1f338.png",
- "sheet_x": 6,
- "sheet_y": 40,
- "short_name": "cherry_blossom",
- "short_names": ["cherry_blossom"],
- "text": null,
- "texts": null,
- "category": "Animals & Nature",
- "sort_order": 104,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "knife_fork_plate": {
- "char": "\ud83c\udf7d\ufe0f",
- "key": "knife_fork_plate",
- "keywords": ["knife_fork_plate", ""],
- "category": "food_and_drink",
- "lib": {
- "name": null,
- "unified": "1F37D-FE0F",
- "non_qualified": "1F37D",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f37d-fe0f.png",
- "sheet_x": 8,
- "sheet_y": 3,
- "short_name": "knife_fork_plate",
- "short_names": ["knife_fork_plate"],
- "text": null,
- "texts": null,
- "category": "Food & Drink",
- "sort_order": 104,
- "added_in": "7.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "name_badge": {
- "char": "\ud83d\udcdb",
- "key": "name_badge",
- "keywords": ["name_badge", "NAME BADGE"],
- "category": "symbols",
- "lib": {
- "name": "NAME BADGE",
- "unified": "1F4DB",
- "non_qualified": null,
- "docomo": null,
- "au": "E51D",
- "softbank": null,
- "google": "FE504",
- "image": "1f4db.png",
- "sheet_x": 26,
- "sheet_y": 41,
- "short_name": "name_badge",
- "short_names": ["name_badge"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 104,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "lower_left_paintbrush": {
- "char": "\ud83d\udd8c\ufe0f",
- "key": "lower_left_paintbrush",
- "keywords": ["lower_left_paintbrush", ""],
- "category": "objects",
- "lib": {
- "name": null,
- "unified": "1F58C-FE0F",
- "non_qualified": "1F58C",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f58c-fe0f.png",
- "sheet_x": 29,
- "sheet_y": 50,
- "short_name": "lower_left_paintbrush",
- "short_names": ["lower_left_paintbrush"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 104,
- "added_in": "7.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "joy_cat": {
- "char": "\ud83d\ude39",
- "key": "joy_cat",
- "keywords": ["joy_cat", "CAT FACE WITH TEARS OF JOY"],
- "category": "people",
- "lib": {
- "name": "CAT FACE WITH TEARS OF JOY",
- "unified": "1F639",
- "non_qualified": null,
- "docomo": "E72A",
- "au": "EB63",
- "softbank": null,
- "google": "FE34A",
- "image": "1f639.png",
- "sheet_x": 31,
- "sheet_y": 47,
- "short_name": "joy_cat",
- "short_names": ["joy_cat"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 104,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "construction": {
- "char": "\ud83d\udea7",
- "key": "construction",
- "keywords": ["construction", "CONSTRUCTION SIGN"],
- "category": "travel_and_places",
- "lib": {
- "name": "CONSTRUCTION SIGN",
- "unified": "1F6A7",
- "non_qualified": null,
- "docomo": null,
- "au": "E5D7",
- "softbank": "E137",
- "google": "FE7F8",
- "image": "1f6a7.png",
- "sheet_x": 35,
- "sheet_y": 26,
- "short_name": "construction",
- "short_names": ["construction"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 104,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "flag-gw": {
- "char": "\ud83c\uddec\ud83c\uddfc",
- "key": "flag-gw",
- "keywords": ["flag-gw", "Guinea-Bissau Flag"],
- "category": "flags",
- "lib": {
- "name": "Guinea-Bissau Flag",
- "unified": "1F1EC-1F1FC",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1ec-1f1fc.png",
- "sheet_x": 2,
- "sheet_y": 22,
- "short_name": "flag-gw",
- "short_names": ["flag-gw"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 105,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "fork_and_knife": {
- "char": "\ud83c\udf74",
- "key": "fork_and_knife",
- "keywords": ["fork_and_knife", "FORK AND KNIFE"],
- "category": "food_and_drink",
- "lib": {
- "name": "FORK AND KNIFE",
- "unified": "1F374",
- "non_qualified": null,
- "docomo": "E66F",
- "au": "E4AC",
- "softbank": "E043",
- "google": "FE980",
- "image": "1f374.png",
- "sheet_x": 7,
- "sheet_y": 47,
- "short_name": "fork_and_knife",
- "short_names": ["fork_and_knife"],
- "text": null,
- "texts": null,
- "category": "Food & Drink",
- "sort_order": 105,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "white_flower": {
- "char": "\ud83d\udcae",
- "key": "white_flower",
- "keywords": ["white_flower", "WHITE FLOWER"],
- "category": "animals_and_nature",
- "lib": {
- "name": "WHITE FLOWER",
- "unified": "1F4AE",
- "non_qualified": null,
- "docomo": null,
- "au": "E4F0",
- "softbank": null,
- "google": "FEB7A",
- "image": "1f4ae.png",
- "sheet_x": 25,
- "sheet_y": 49,
- "short_name": "white_flower",
- "short_names": ["white_flower"],
- "text": null,
- "texts": null,
- "category": "Animals & Nature",
- "sort_order": 105,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "beginner": {
- "char": "\ud83d\udd30",
- "key": "beginner",
- "keywords": ["beginner", "JAPANESE SYMBOL FOR BEGINNER"],
- "category": "symbols",
- "lib": {
- "name": "JAPANESE SYMBOL FOR BEGINNER",
- "unified": "1F530",
- "non_qualified": null,
- "docomo": null,
- "au": "E480",
- "softbank": "E209",
- "google": "FE044",
- "image": "1f530.png",
- "sheet_x": 28,
- "sheet_y": 19,
- "short_name": "beginner",
- "short_names": ["beginner"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 105,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "lower_left_crayon": {
- "char": "\ud83d\udd8d\ufe0f",
- "key": "lower_left_crayon",
- "keywords": ["lower_left_crayon", ""],
- "category": "objects",
- "lib": {
- "name": null,
- "unified": "1F58D-FE0F",
- "non_qualified": "1F58D",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f58d-fe0f.png",
- "sheet_x": 29,
- "sheet_y": 51,
- "short_name": "lower_left_crayon",
- "short_names": ["lower_left_crayon"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 105,
- "added_in": "7.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "heart_eyes_cat": {
- "char": "\ud83d\ude3b",
- "key": "heart_eyes_cat",
- "keywords": ["heart_eyes_cat", "SMILING CAT FACE WITH HEART-SHAPED EYES"],
- "category": "people",
- "lib": {
- "name": "SMILING CAT FACE WITH HEART-SHAPED EYES",
- "unified": "1F63B",
- "non_qualified": null,
- "docomo": "E726",
- "au": "EB65",
- "softbank": null,
- "google": "FE34C",
- "image": "1f63b.png",
- "sheet_x": 31,
- "sheet_y": 49,
- "short_name": "heart_eyes_cat",
- "short_names": ["heart_eyes_cat"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 105,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "anchor": {
- "char": "\u2693",
- "key": "anchor",
- "keywords": ["anchor", "ANCHOR"],
- "category": "travel_and_places",
- "lib": {
- "name": "ANCHOR",
- "unified": "2693",
- "non_qualified": null,
- "docomo": "E661",
- "au": "E4A9",
- "softbank": null,
- "google": "FE4C1",
- "image": "2693.png",
- "sheet_x": 50,
- "sheet_y": 3,
- "short_name": "anchor",
- "short_names": ["anchor"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 105,
- "added_in": "4.1",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "flag-gy": {
- "char": "\ud83c\uddec\ud83c\uddfe",
- "key": "flag-gy",
- "keywords": ["flag-gy", "Guyana Flag"],
- "category": "flags",
- "lib": {
- "name": "Guyana Flag",
- "unified": "1F1EC-1F1FE",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1ec-1f1fe.png",
- "sheet_x": 2,
- "sheet_y": 23,
- "short_name": "flag-gy",
- "short_names": ["flag-gy"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 106,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "rosette": {
- "char": "\ud83c\udff5\ufe0f",
- "key": "rosette",
- "keywords": ["rosette", ""],
- "category": "animals_and_nature",
- "lib": {
- "name": null,
- "unified": "1F3F5-FE0F",
- "non_qualified": "1F3F5",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f3f5-fe0f.png",
- "sheet_x": 12,
- "sheet_y": 9,
- "short_name": "rosette",
- "short_names": ["rosette"],
- "text": null,
- "texts": null,
- "category": "Animals & Nature",
- "sort_order": 106,
- "added_in": "7.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "memo": {
- "char": "\ud83d\udcdd",
- "key": "memo",
- "keywords": ["memo", "MEMO"],
- "category": "objects",
- "lib": {
- "name": "MEMO",
- "unified": "1F4DD",
- "non_qualified": null,
- "docomo": "E689",
- "au": "EA92",
- "softbank": "E301",
- "google": "FE527",
- "image": "1f4dd.png",
- "sheet_x": 26,
- "sheet_y": 43,
- "short_name": "memo",
- "short_names": ["memo", "pencil"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 106,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "smirk_cat": {
- "char": "\ud83d\ude3c",
- "key": "smirk_cat",
- "keywords": ["smirk_cat", "CAT FACE WITH WRY SMILE"],
- "category": "people",
- "lib": {
- "name": "CAT FACE WITH WRY SMILE",
- "unified": "1F63C",
- "non_qualified": null,
- "docomo": "E753",
- "au": "EB6A",
- "softbank": null,
- "google": "FE34F",
- "image": "1f63c.png",
- "sheet_x": 31,
- "sheet_y": 50,
- "short_name": "smirk_cat",
- "short_names": ["smirk_cat"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 106,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "spoon": {
- "char": "\ud83e\udd44",
- "key": "spoon",
- "keywords": ["spoon", "SPOON"],
- "category": "food_and_drink",
- "lib": {
- "name": "SPOON",
- "unified": "1F944",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f944.png",
- "sheet_x": 41,
- "sheet_y": 49,
- "short_name": "spoon",
- "short_names": ["spoon"],
- "text": null,
- "texts": null,
- "category": "Food & Drink",
- "sort_order": 106,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "boat": {
- "char": "\u26f5",
- "key": "boat",
- "keywords": ["boat", "SAILBOAT"],
- "category": "travel_and_places",
- "lib": {
- "name": "SAILBOAT",
- "unified": "26F5",
- "non_qualified": null,
- "docomo": "E6A3",
- "au": "E4B4",
- "softbank": "E01C",
- "google": "FE7EA",
- "image": "26f5.png",
- "sheet_x": 50,
- "sheet_y": 34,
- "short_name": "boat",
- "short_names": ["boat", "sailboat"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 106,
- "added_in": "5.2",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "o": {
- "char": "\u2b55",
- "key": "o",
- "keywords": ["o", "HEAVY LARGE CIRCLE"],
- "category": "symbols",
- "lib": {
- "name": "HEAVY LARGE CIRCLE",
- "unified": "2B55",
- "non_qualified": null,
- "docomo": "E6A0",
- "au": "EAAD",
- "softbank": "E332",
- "google": "FEB44",
- "image": "2b55.png",
- "sheet_x": 52,
- "sheet_y": 12,
- "short_name": "o",
- "short_names": ["o"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 106,
- "added_in": "5.2",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "flag-hk": {
- "char": "\ud83c\udded\ud83c\uddf0",
- "key": "flag-hk",
- "keywords": ["flag-hk", "Hong Kong SAR China Flag"],
- "category": "flags",
- "lib": {
- "name": "Hong Kong SAR China Flag",
- "unified": "1F1ED-1F1F0",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1ed-1f1f0.png",
- "sheet_x": 2,
- "sheet_y": 24,
- "short_name": "flag-hk",
- "short_names": ["flag-hk"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 107,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "rose": {
- "char": "\ud83c\udf39",
- "key": "rose",
- "keywords": ["rose", "ROSE"],
- "category": "animals_and_nature",
- "lib": {
- "name": "ROSE",
- "unified": "1F339",
- "non_qualified": null,
- "docomo": null,
- "au": "E5BA",
- "softbank": "E032",
- "google": "FE041",
- "image": "1f339.png",
- "sheet_x": 6,
- "sheet_y": 41,
- "short_name": "rose",
- "short_names": ["rose"],
- "text": null,
- "texts": null,
- "category": "Animals & Nature",
- "sort_order": 107,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "briefcase": {
- "char": "\ud83d\udcbc",
- "key": "briefcase",
- "keywords": ["briefcase", "BRIEFCASE"],
- "category": "objects",
- "lib": {
- "name": "BRIEFCASE",
- "unified": "1F4BC",
- "non_qualified": null,
- "docomo": "E682",
- "au": "E5CE",
- "softbank": "E11E",
- "google": "FE53B",
- "image": "1f4bc.png",
- "sheet_x": 26,
- "sheet_y": 10,
- "short_name": "briefcase",
- "short_names": ["briefcase"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 107,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "hocho": {
- "char": "\ud83d\udd2a",
- "key": "hocho",
- "keywords": ["hocho", "HOCHO"],
- "category": "food_and_drink",
- "lib": {
- "name": "HOCHO",
- "unified": "1F52A",
- "non_qualified": null,
- "docomo": null,
- "au": "E57F",
- "softbank": null,
- "google": "FE4FA",
- "image": "1f52a.png",
- "sheet_x": 28,
- "sheet_y": 13,
- "short_name": "hocho",
- "short_names": ["hocho", "knife"],
- "text": null,
- "texts": null,
- "category": "Food & Drink",
- "sort_order": 107,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "kissing_cat": {
- "char": "\ud83d\ude3d",
- "key": "kissing_cat",
- "keywords": ["kissing_cat", "KISSING CAT FACE WITH CLOSED EYES"],
- "category": "people",
- "lib": {
- "name": "KISSING CAT FACE WITH CLOSED EYES",
- "unified": "1F63D",
- "non_qualified": null,
- "docomo": "E726",
- "au": "EB60",
- "softbank": null,
- "google": "FE34B",
- "image": "1f63d.png",
- "sheet_x": 31,
- "sheet_y": 51,
- "short_name": "kissing_cat",
- "short_names": ["kissing_cat"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 107,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "canoe": {
- "char": "\ud83d\udef6",
- "key": "canoe",
- "keywords": ["canoe", "CANOE"],
- "category": "travel_and_places",
- "lib": {
- "name": "CANOE",
- "unified": "1F6F6",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f6f6.png",
- "sheet_x": 37,
- "sheet_y": 33,
- "short_name": "canoe",
- "short_names": ["canoe"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 107,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "white_check_mark": {
- "char": "\u2705",
- "key": "white_check_mark",
- "keywords": ["white_check_mark", "WHITE HEAVY CHECK MARK"],
- "category": "symbols",
- "lib": {
- "name": "WHITE HEAVY CHECK MARK",
- "unified": "2705",
- "non_qualified": null,
- "docomo": null,
- "au": "E55E",
- "softbank": null,
- "google": "FEB4A",
- "image": "2705.png",
- "sheet_x": 51,
- "sheet_y": 5,
- "short_name": "white_check_mark",
- "short_names": ["white_check_mark"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 107,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "flag-hm": {
- "char": "\ud83c\udded\ud83c\uddf2",
- "key": "flag-hm",
- "keywords": ["flag-hm", "Heard & McDonald Islands Flag"],
- "category": "flags",
- "lib": {
- "name": "Heard & McDonald Islands Flag",
- "unified": "1F1ED-1F1F2",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1ed-1f1f2.png",
- "sheet_x": 2,
- "sheet_y": 25,
- "short_name": "flag-hm",
- "short_names": ["flag-hm"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 108,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "amphora": {
- "char": "\ud83c\udffa",
- "key": "amphora",
- "keywords": ["amphora", "AMPHORA"],
- "category": "food_and_drink",
- "lib": {
- "name": "AMPHORA",
- "unified": "1F3FA",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f3fa.png",
- "sheet_x": 12,
- "sheet_y": 13,
- "short_name": "amphora",
- "short_names": ["amphora"],
- "text": null,
- "texts": null,
- "category": "Food & Drink",
- "sort_order": 108,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "file_folder": {
- "char": "\ud83d\udcc1",
- "key": "file_folder",
- "keywords": ["file_folder", "FILE FOLDER"],
- "category": "objects",
- "lib": {
- "name": "FILE FOLDER",
- "unified": "1F4C1",
- "non_qualified": null,
- "docomo": null,
- "au": "E58F",
- "softbank": null,
- "google": "FE543",
- "image": "1f4c1.png",
- "sheet_x": 26,
- "sheet_y": 15,
- "short_name": "file_folder",
- "short_names": ["file_folder"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 108,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "scream_cat": {
- "char": "\ud83d\ude40",
- "key": "scream_cat",
- "keywords": ["scream_cat", "WEARY CAT FACE"],
- "category": "people",
- "lib": {
- "name": "WEARY CAT FACE",
- "unified": "1F640",
- "non_qualified": null,
- "docomo": "E6F3",
- "au": "EB66",
- "softbank": null,
- "google": "FE350",
- "image": "1f640.png",
- "sheet_x": 32,
- "sheet_y": 1,
- "short_name": "scream_cat",
- "short_names": ["scream_cat"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 108,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "speedboat": {
- "char": "\ud83d\udea4",
- "key": "speedboat",
- "keywords": ["speedboat", "SPEEDBOAT"],
- "category": "travel_and_places",
- "lib": {
- "name": "SPEEDBOAT",
- "unified": "1F6A4",
- "non_qualified": null,
- "docomo": "E6A3",
- "au": "E4B4",
- "softbank": "E135",
- "google": "FE7EE",
- "image": "1f6a4.png",
- "sheet_x": 35,
- "sheet_y": 23,
- "short_name": "speedboat",
- "short_names": ["speedboat"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 108,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "wilted_flower": {
- "char": "\ud83e\udd40",
- "key": "wilted_flower",
- "keywords": ["wilted_flower", "WILTED FLOWER"],
- "category": "animals_and_nature",
- "lib": {
- "name": "WILTED FLOWER",
- "unified": "1F940",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f940.png",
- "sheet_x": 41,
- "sheet_y": 45,
- "short_name": "wilted_flower",
- "short_names": ["wilted_flower"],
- "text": null,
- "texts": null,
- "category": "Animals & Nature",
- "sort_order": 108,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "ballot_box_with_check": {
- "char": "\u2611\ufe0f",
- "key": "ballot_box_with_check",
- "keywords": ["ballot_box_with_check", "BALLOT BOX WITH CHECK"],
- "category": "symbols",
- "lib": {
- "name": "BALLOT BOX WITH CHECK",
- "unified": "2611-FE0F",
- "non_qualified": "2611",
- "docomo": null,
- "au": "EB02",
- "softbank": null,
- "google": "FEB8B",
- "image": "2611-fe0f.png",
- "sheet_x": 49,
- "sheet_y": 12,
- "short_name": "ballot_box_with_check",
- "short_names": ["ballot_box_with_check"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 108,
- "added_in": "1.1",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "flag-hn": {
- "char": "\ud83c\udded\ud83c\uddf3",
- "key": "flag-hn",
- "keywords": ["flag-hn", "Honduras Flag"],
- "category": "flags",
- "lib": {
- "name": "Honduras Flag",
- "unified": "1F1ED-1F1F3",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1ed-1f1f3.png",
- "sheet_x": 2,
- "sheet_y": 26,
- "short_name": "flag-hn",
- "short_names": ["flag-hn"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 109,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "hibiscus": {
- "char": "\ud83c\udf3a",
- "key": "hibiscus",
- "keywords": ["hibiscus", "HIBISCUS"],
- "category": "animals_and_nature",
- "lib": {
- "name": "HIBISCUS",
- "unified": "1F33A",
- "non_qualified": null,
- "docomo": null,
- "au": "EA94",
- "softbank": "E303",
- "google": "FE045",
- "image": "1f33a.png",
- "sheet_x": 6,
- "sheet_y": 42,
- "short_name": "hibiscus",
- "short_names": ["hibiscus"],
- "text": null,
- "texts": null,
- "category": "Animals & Nature",
- "sort_order": 109,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "open_file_folder": {
- "char": "\ud83d\udcc2",
- "key": "open_file_folder",
- "keywords": ["open_file_folder", "OPEN FILE FOLDER"],
- "category": "objects",
- "lib": {
- "name": "OPEN FILE FOLDER",
- "unified": "1F4C2",
- "non_qualified": null,
- "docomo": null,
- "au": "E590",
- "softbank": null,
- "google": "FE544",
- "image": "1f4c2.png",
- "sheet_x": 26,
- "sheet_y": 16,
- "short_name": "open_file_folder",
- "short_names": ["open_file_folder"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 109,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "crying_cat_face": {
- "char": "\ud83d\ude3f",
- "key": "crying_cat_face",
- "keywords": ["crying_cat_face", "CRYING CAT FACE"],
- "category": "people",
- "lib": {
- "name": "CRYING CAT FACE",
- "unified": "1F63F",
- "non_qualified": null,
- "docomo": "E72E",
- "au": "EB68",
- "softbank": null,
- "google": "FE34D",
- "image": "1f63f.png",
- "sheet_x": 32,
- "sheet_y": 0,
- "short_name": "crying_cat_face",
- "short_names": ["crying_cat_face"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 109,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "passenger_ship": {
- "char": "\ud83d\udef3\ufe0f",
- "key": "passenger_ship",
- "keywords": ["passenger_ship", ""],
- "category": "travel_and_places",
- "lib": {
- "name": null,
- "unified": "1F6F3-FE0F",
- "non_qualified": "1F6F3",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f6f3-fe0f.png",
- "sheet_x": 37,
- "sheet_y": 30,
- "short_name": "passenger_ship",
- "short_names": ["passenger_ship"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 109,
- "added_in": "7.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "heavy_check_mark": {
- "char": "\u2714\ufe0f",
- "key": "heavy_check_mark",
- "keywords": ["heavy_check_mark", "HEAVY CHECK MARK"],
- "category": "symbols",
- "lib": {
- "name": "HEAVY CHECK MARK",
- "unified": "2714-FE0F",
- "non_qualified": "2714",
- "docomo": null,
- "au": "E557",
- "softbank": null,
- "google": "FEB49",
- "image": "2714-fe0f.png",
- "sheet_x": 51,
- "sheet_y": 34,
- "short_name": "heavy_check_mark",
- "short_names": ["heavy_check_mark"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 109,
- "added_in": "1.1",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "flag-hr": {
- "char": "\ud83c\udded\ud83c\uddf7",
- "key": "flag-hr",
- "keywords": ["flag-hr", "Croatia Flag"],
- "category": "flags",
- "lib": {
- "name": "Croatia Flag",
- "unified": "1F1ED-1F1F7",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1ed-1f1f7.png",
- "sheet_x": 2,
- "sheet_y": 27,
- "short_name": "flag-hr",
- "short_names": ["flag-hr"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 110,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "sunflower": {
- "char": "\ud83c\udf3b",
- "key": "sunflower",
- "keywords": ["sunflower", "SUNFLOWER"],
- "category": "animals_and_nature",
- "lib": {
- "name": "SUNFLOWER",
- "unified": "1F33B",
- "non_qualified": null,
- "docomo": null,
- "au": "E4E3",
- "softbank": "E305",
- "google": "FE046",
- "image": "1f33b.png",
- "sheet_x": 6,
- "sheet_y": 43,
- "short_name": "sunflower",
- "short_names": ["sunflower"],
- "text": null,
- "texts": null,
- "category": "Animals & Nature",
- "sort_order": 110,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "card_index_dividers": {
- "char": "\ud83d\uddc2\ufe0f",
- "key": "card_index_dividers",
- "keywords": ["card_index_dividers", ""],
- "category": "objects",
- "lib": {
- "name": null,
- "unified": "1F5C2-FE0F",
- "non_qualified": "1F5C2",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f5c2-fe0f.png",
- "sheet_x": 30,
- "sheet_y": 23,
- "short_name": "card_index_dividers",
- "short_names": ["card_index_dividers"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 110,
- "added_in": "7.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "pouting_cat": {
- "char": "\ud83d\ude3e",
- "key": "pouting_cat",
- "keywords": ["pouting_cat", "POUTING CAT FACE"],
- "category": "people",
- "lib": {
- "name": "POUTING CAT FACE",
- "unified": "1F63E",
- "non_qualified": null,
- "docomo": "E724",
- "au": "EB5E",
- "softbank": null,
- "google": "FE34E",
- "image": "1f63e.png",
- "sheet_x": 31,
- "sheet_y": 52,
- "short_name": "pouting_cat",
- "short_names": ["pouting_cat"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 110,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "ferry": {
- "char": "\u26f4\ufe0f",
- "key": "ferry",
- "keywords": ["ferry", ""],
- "category": "travel_and_places",
- "lib": {
- "name": null,
- "unified": "26F4-FE0F",
- "non_qualified": "26F4",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "26f4-fe0f.png",
- "sheet_x": 50,
- "sheet_y": 33,
- "short_name": "ferry",
- "short_names": ["ferry"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 110,
- "added_in": "5.2",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "heavy_multiplication_x": {
- "char": "\u2716\ufe0f",
- "key": "heavy_multiplication_x",
- "keywords": ["heavy_multiplication_x", "HEAVY MULTIPLICATION X"],
- "category": "symbols",
- "lib": {
- "name": "HEAVY MULTIPLICATION X",
- "unified": "2716-FE0F",
- "non_qualified": "2716",
- "docomo": null,
- "au": "E54F",
- "softbank": null,
- "google": "FEB53",
- "image": "2716-fe0f.png",
- "sheet_x": 51,
- "sheet_y": 35,
- "short_name": "heavy_multiplication_x",
- "short_names": ["heavy_multiplication_x"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 110,
- "added_in": "1.1",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "flag-ht": {
- "char": "\ud83c\udded\ud83c\uddf9",
- "key": "flag-ht",
- "keywords": ["flag-ht", "Haiti Flag"],
- "category": "flags",
- "lib": {
- "name": "Haiti Flag",
- "unified": "1F1ED-1F1F9",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1ed-1f1f9.png",
- "sheet_x": 2,
- "sheet_y": 28,
- "short_name": "flag-ht",
- "short_names": ["flag-ht"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 111,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "blossom": {
- "char": "\ud83c\udf3c",
- "key": "blossom",
- "keywords": ["blossom", "BLOSSOM"],
- "category": "animals_and_nature",
- "lib": {
- "name": "BLOSSOM",
- "unified": "1F33C",
- "non_qualified": null,
- "docomo": null,
- "au": "EB49",
- "softbank": null,
- "google": "FE04D",
- "image": "1f33c.png",
- "sheet_x": 6,
- "sheet_y": 44,
- "short_name": "blossom",
- "short_names": ["blossom"],
- "text": null,
- "texts": null,
- "category": "Animals & Nature",
- "sort_order": 111,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "date": {
- "char": "\ud83d\udcc5",
- "key": "date",
- "keywords": ["date", "CALENDAR"],
- "category": "objects",
- "lib": {
- "name": "CALENDAR",
- "unified": "1F4C5",
- "non_qualified": null,
- "docomo": null,
- "au": "E563",
- "softbank": null,
- "google": "FE542",
- "image": "1f4c5.png",
- "sheet_x": 26,
- "sheet_y": 19,
- "short_name": "date",
- "short_names": ["date"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 111,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "see_no_evil": {
- "char": "\ud83d\ude48",
- "key": "see_no_evil",
- "keywords": ["see_no_evil", "SEE-NO-EVIL MONKEY"],
- "category": "people",
- "lib": {
- "name": "SEE-NO-EVIL MONKEY",
- "unified": "1F648",
- "non_qualified": null,
- "docomo": null,
- "au": "EB50",
- "softbank": null,
- "google": "FE354",
- "image": "1f648.png",
- "sheet_x": 33,
- "sheet_y": 7,
- "short_name": "see_no_evil",
- "short_names": ["see_no_evil"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 111,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "motor_boat": {
- "char": "\ud83d\udee5\ufe0f",
- "key": "motor_boat",
- "keywords": ["motor_boat", ""],
- "category": "travel_and_places",
- "lib": {
- "name": null,
- "unified": "1F6E5-FE0F",
- "non_qualified": "1F6E5",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f6e5-fe0f.png",
- "sheet_x": 37,
- "sheet_y": 25,
- "short_name": "motor_boat",
- "short_names": ["motor_boat"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 111,
- "added_in": "7.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "x": {
- "char": "\u274c",
- "key": "x",
- "keywords": ["x", "CROSS MARK"],
- "category": "symbols",
- "lib": {
- "name": "CROSS MARK",
- "unified": "274C",
- "non_qualified": null,
- "docomo": null,
- "au": "E550",
- "softbank": "E333",
- "google": "FEB45",
- "image": "274c.png",
- "sheet_x": 51,
- "sheet_y": 43,
- "short_name": "x",
- "short_names": ["x"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 111,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "flag-hu": {
- "char": "\ud83c\udded\ud83c\uddfa",
- "key": "flag-hu",
- "keywords": ["flag-hu", "Hungary Flag"],
- "category": "flags",
- "lib": {
- "name": "Hungary Flag",
- "unified": "1F1ED-1F1FA",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1ed-1f1fa.png",
- "sheet_x": 2,
- "sheet_y": 29,
- "short_name": "flag-hu",
- "short_names": ["flag-hu"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 112,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "tulip": {
- "char": "\ud83c\udf37",
- "key": "tulip",
- "keywords": ["tulip", "TULIP"],
- "category": "animals_and_nature",
- "lib": {
- "name": "TULIP",
- "unified": "1F337",
- "non_qualified": null,
- "docomo": "E743",
- "au": "E4E4",
- "softbank": "E304",
- "google": "FE03D",
- "image": "1f337.png",
- "sheet_x": 6,
- "sheet_y": 39,
- "short_name": "tulip",
- "short_names": ["tulip"],
- "text": null,
- "texts": null,
- "category": "Animals & Nature",
- "sort_order": 112,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "calendar": {
- "char": "\ud83d\udcc6",
- "key": "calendar",
- "keywords": ["calendar", "TEAR-OFF CALENDAR"],
- "category": "objects",
- "lib": {
- "name": "TEAR-OFF CALENDAR",
- "unified": "1F4C6",
- "non_qualified": null,
- "docomo": null,
- "au": "E56A",
- "softbank": null,
- "google": "FE549",
- "image": "1f4c6.png",
- "sheet_x": 26,
- "sheet_y": 20,
- "short_name": "calendar",
- "short_names": ["calendar"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 112,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "hear_no_evil": {
- "char": "\ud83d\ude49",
- "key": "hear_no_evil",
- "keywords": ["hear_no_evil", "HEAR-NO-EVIL MONKEY"],
- "category": "people",
- "lib": {
- "name": "HEAR-NO-EVIL MONKEY",
- "unified": "1F649",
- "non_qualified": null,
- "docomo": null,
- "au": "EB52",
- "softbank": null,
- "google": "FE356",
- "image": "1f649.png",
- "sheet_x": 33,
- "sheet_y": 8,
- "short_name": "hear_no_evil",
- "short_names": ["hear_no_evil"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 112,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "ship": {
- "char": "\ud83d\udea2",
- "key": "ship",
- "keywords": ["ship", "SHIP"],
- "category": "travel_and_places",
- "lib": {
- "name": "SHIP",
- "unified": "1F6A2",
- "non_qualified": null,
- "docomo": "E661",
- "au": "EA82",
- "softbank": "E202",
- "google": "FE7E8",
- "image": "1f6a2.png",
- "sheet_x": 35,
- "sheet_y": 4,
- "short_name": "ship",
- "short_names": ["ship"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 112,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "negative_squared_cross_mark": {
- "char": "\u274e",
- "key": "negative_squared_cross_mark",
- "keywords": ["negative_squared_cross_mark", "NEGATIVE SQUARED CROSS MARK"],
- "category": "symbols",
- "lib": {
- "name": "NEGATIVE SQUARED CROSS MARK",
- "unified": "274E",
- "non_qualified": null,
- "docomo": null,
- "au": "E551",
- "softbank": null,
- "google": "FEB46",
- "image": "274e.png",
- "sheet_x": 51,
- "sheet_y": 44,
- "short_name": "negative_squared_cross_mark",
- "short_names": ["negative_squared_cross_mark"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 112,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "flag-ic": {
- "char": "\ud83c\uddee\ud83c\udde8",
- "key": "flag-ic",
- "keywords": ["flag-ic", "Canary Islands Flag"],
- "category": "flags",
- "lib": {
- "name": "Canary Islands Flag",
- "unified": "1F1EE-1F1E8",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1ee-1f1e8.png",
- "sheet_x": 2,
- "sheet_y": 30,
- "short_name": "flag-ic",
- "short_names": ["flag-ic"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 113,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "seedling": {
- "char": "\ud83c\udf31",
- "key": "seedling",
- "keywords": ["seedling", "SEEDLING"],
- "category": "animals_and_nature",
- "lib": {
- "name": "SEEDLING",
- "unified": "1F331",
- "non_qualified": null,
- "docomo": "E746",
- "au": "EB7D",
- "softbank": null,
- "google": "FE03E",
- "image": "1f331.png",
- "sheet_x": 6,
- "sheet_y": 33,
- "short_name": "seedling",
- "short_names": ["seedling"],
- "text": null,
- "texts": null,
- "category": "Animals & Nature",
- "sort_order": 113,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "spiral_note_pad": {
- "char": "\ud83d\uddd2\ufe0f",
- "key": "spiral_note_pad",
- "keywords": ["spiral_note_pad", ""],
- "category": "objects",
- "lib": {
- "name": null,
- "unified": "1F5D2-FE0F",
- "non_qualified": "1F5D2",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f5d2-fe0f.png",
- "sheet_x": 30,
- "sheet_y": 27,
- "short_name": "spiral_note_pad",
- "short_names": ["spiral_note_pad"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 113,
- "added_in": "7.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "speak_no_evil": {
- "char": "\ud83d\ude4a",
- "key": "speak_no_evil",
- "keywords": ["speak_no_evil", "SPEAK-NO-EVIL MONKEY"],
- "category": "people",
- "lib": {
- "name": "SPEAK-NO-EVIL MONKEY",
- "unified": "1F64A",
- "non_qualified": null,
- "docomo": null,
- "au": "EB51",
- "softbank": null,
- "google": "FE355",
- "image": "1f64a.png",
- "sheet_x": 33,
- "sheet_y": 9,
- "short_name": "speak_no_evil",
- "short_names": ["speak_no_evil"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 113,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "airplane": {
- "char": "\u2708\ufe0f",
- "key": "airplane",
- "keywords": ["airplane", "AIRPLANE"],
- "category": "travel_and_places",
- "lib": {
- "name": "AIRPLANE",
- "unified": "2708-FE0F",
- "non_qualified": "2708",
- "docomo": "E662",
- "au": "E4B3",
- "softbank": "E01D",
- "google": "FE7E9",
- "image": "2708-fe0f.png",
- "sheet_x": 51,
- "sheet_y": 6,
- "short_name": "airplane",
- "short_names": ["airplane"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 113,
- "added_in": "1.1",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "heavy_plus_sign": {
- "char": "\u2795",
- "key": "heavy_plus_sign",
- "keywords": ["heavy_plus_sign", "HEAVY PLUS SIGN"],
- "category": "symbols",
- "lib": {
- "name": "HEAVY PLUS SIGN",
- "unified": "2795",
- "non_qualified": null,
- "docomo": null,
- "au": "E53C",
- "softbank": null,
- "google": "FEB51",
- "image": "2795.png",
- "sheet_x": 51,
- "sheet_y": 51,
- "short_name": "heavy_plus_sign",
- "short_names": ["heavy_plus_sign"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 113,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "flag-id": {
- "char": "\ud83c\uddee\ud83c\udde9",
- "key": "flag-id",
- "keywords": ["flag-id", "Indonesia Flag"],
- "category": "flags",
- "lib": {
- "name": "Indonesia Flag",
- "unified": "1F1EE-1F1E9",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1ee-1f1e9.png",
- "sheet_x": 2,
- "sheet_y": 31,
- "short_name": "flag-id",
- "short_names": ["flag-id"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 114,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "evergreen_tree": {
- "char": "\ud83c\udf32",
- "key": "evergreen_tree",
- "keywords": ["evergreen_tree", "EVERGREEN TREE"],
- "category": "animals_and_nature",
- "lib": {
- "name": "EVERGREEN TREE",
- "unified": "1F332",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f332.png",
- "sheet_x": 6,
- "sheet_y": 34,
- "short_name": "evergreen_tree",
- "short_names": ["evergreen_tree"],
- "text": null,
- "texts": null,
- "category": "Animals & Nature",
- "sort_order": 114,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "baby": {
- "char": "\ud83d\udc76",
- "key": "baby",
- "keywords": ["baby", "BABY"],
- "category": "people",
- "lib": {
- "name": "BABY",
- "unified": "1F476",
- "non_qualified": null,
- "docomo": null,
- "au": "EB18",
- "softbank": "E51A",
- "google": "FE1A9",
- "image": "1f476.png",
- "sheet_x": 22,
- "sheet_y": 37,
- "short_name": "baby",
- "short_names": ["baby"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 114,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F476-1F3FB",
- "non_qualified": null,
- "image": "1f476-1f3fb.png",
- "sheet_x": 22,
- "sheet_y": 38,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FC": {
- "unified": "1F476-1F3FC",
- "non_qualified": null,
- "image": "1f476-1f3fc.png",
- "sheet_x": 22,
- "sheet_y": 39,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FD": {
- "unified": "1F476-1F3FD",
- "non_qualified": null,
- "image": "1f476-1f3fd.png",
- "sheet_x": 22,
- "sheet_y": 40,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FE": {
- "unified": "1F476-1F3FE",
- "non_qualified": null,
- "image": "1f476-1f3fe.png",
- "sheet_x": 22,
- "sheet_y": 41,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FF": {
- "unified": "1F476-1F3FF",
- "non_qualified": null,
- "image": "1f476-1f3ff.png",
- "sheet_x": 22,
- "sheet_y": 42,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- }
- }
- },
- "spiral_calendar_pad": {
- "char": "\ud83d\uddd3\ufe0f",
- "key": "spiral_calendar_pad",
- "keywords": ["spiral_calendar_pad", ""],
- "category": "objects",
- "lib": {
- "name": null,
- "unified": "1F5D3-FE0F",
- "non_qualified": "1F5D3",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f5d3-fe0f.png",
- "sheet_x": 30,
- "sheet_y": 28,
- "short_name": "spiral_calendar_pad",
- "short_names": ["spiral_calendar_pad"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 114,
- "added_in": "7.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "small_airplane": {
- "char": "\ud83d\udee9\ufe0f",
- "key": "small_airplane",
- "keywords": ["small_airplane", ""],
- "category": "travel_and_places",
- "lib": {
- "name": null,
- "unified": "1F6E9-FE0F",
- "non_qualified": "1F6E9",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f6e9-fe0f.png",
- "sheet_x": 37,
- "sheet_y": 26,
- "short_name": "small_airplane",
- "short_names": ["small_airplane"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 114,
- "added_in": "7.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "heavy_minus_sign": {
- "char": "\u2796",
- "key": "heavy_minus_sign",
- "keywords": ["heavy_minus_sign", "HEAVY MINUS SIGN"],
- "category": "symbols",
- "lib": {
- "name": "HEAVY MINUS SIGN",
- "unified": "2796",
- "non_qualified": null,
- "docomo": null,
- "au": "E53D",
- "softbank": null,
- "google": "FEB52",
- "image": "2796.png",
- "sheet_x": 51,
- "sheet_y": 52,
- "short_name": "heavy_minus_sign",
- "short_names": ["heavy_minus_sign"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 114,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "flag-ie": {
- "char": "\ud83c\uddee\ud83c\uddea",
- "key": "flag-ie",
- "keywords": ["flag-ie", "Ireland Flag"],
- "category": "flags",
- "lib": {
- "name": "Ireland Flag",
- "unified": "1F1EE-1F1EA",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1ee-1f1ea.png",
- "sheet_x": 2,
- "sheet_y": 32,
- "short_name": "flag-ie",
- "short_names": ["flag-ie"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 115,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "deciduous_tree": {
- "char": "\ud83c\udf33",
- "key": "deciduous_tree",
- "keywords": ["deciduous_tree", "DECIDUOUS TREE"],
- "category": "animals_and_nature",
- "lib": {
- "name": "DECIDUOUS TREE",
- "unified": "1F333",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f333.png",
- "sheet_x": 6,
- "sheet_y": 35,
- "short_name": "deciduous_tree",
- "short_names": ["deciduous_tree"],
- "text": null,
- "texts": null,
- "category": "Animals & Nature",
- "sort_order": 115,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "card_index": {
- "char": "\ud83d\udcc7",
- "key": "card_index",
- "keywords": ["card_index", "CARD INDEX"],
- "category": "objects",
- "lib": {
- "name": "CARD INDEX",
- "unified": "1F4C7",
- "non_qualified": null,
- "docomo": "E683",
- "au": "E56C",
- "softbank": null,
- "google": "FE54D",
- "image": "1f4c7.png",
- "sheet_x": 26,
- "sheet_y": 21,
- "short_name": "card_index",
- "short_names": ["card_index"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 115,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "airplane_departure": {
- "char": "\ud83d\udeeb",
- "key": "airplane_departure",
- "keywords": ["airplane_departure", "AIRPLANE DEPARTURE"],
- "category": "travel_and_places",
- "lib": {
- "name": "AIRPLANE DEPARTURE",
- "unified": "1F6EB",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f6eb.png",
- "sheet_x": 37,
- "sheet_y": 27,
- "short_name": "airplane_departure",
- "short_names": ["airplane_departure"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 115,
- "added_in": "7.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "child": {
- "char": "\ud83e\uddd2",
- "key": "child",
- "keywords": ["child", "CHILD"],
- "category": "people",
- "lib": {
- "name": "CHILD",
- "unified": "1F9D2",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f9d2.png",
- "sheet_x": 44,
- "sheet_y": 26,
- "short_name": "child",
- "short_names": ["child"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 115,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F9D2-1F3FB",
- "non_qualified": null,
- "image": "1f9d2-1f3fb.png",
- "sheet_x": 44,
- "sheet_y": 27,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F9D2-1F3FC",
- "non_qualified": null,
- "image": "1f9d2-1f3fc.png",
- "sheet_x": 44,
- "sheet_y": 28,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F9D2-1F3FD",
- "non_qualified": null,
- "image": "1f9d2-1f3fd.png",
- "sheet_x": 44,
- "sheet_y": 29,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F9D2-1F3FE",
- "non_qualified": null,
- "image": "1f9d2-1f3fe.png",
- "sheet_x": 44,
- "sheet_y": 30,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F9D2-1F3FF",
- "non_qualified": null,
- "image": "1f9d2-1f3ff.png",
- "sheet_x": 44,
- "sheet_y": 31,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- }
- }
- },
- "heavy_division_sign": {
- "char": "\u2797",
- "key": "heavy_division_sign",
- "keywords": ["heavy_division_sign", "HEAVY DIVISION SIGN"],
- "category": "symbols",
- "lib": {
- "name": "HEAVY DIVISION SIGN",
- "unified": "2797",
- "non_qualified": null,
- "docomo": null,
- "au": "E554",
- "softbank": null,
- "google": "FEB54",
- "image": "2797.png",
- "sheet_x": 52,
- "sheet_y": 0,
- "short_name": "heavy_division_sign",
- "short_names": ["heavy_division_sign"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 115,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "flag-il": {
- "char": "\ud83c\uddee\ud83c\uddf1",
- "key": "flag-il",
- "keywords": ["flag-il", "Israel Flag"],
- "category": "flags",
- "lib": {
- "name": "Israel Flag",
- "unified": "1F1EE-1F1F1",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1ee-1f1f1.png",
- "sheet_x": 2,
- "sheet_y": 33,
- "short_name": "flag-il",
- "short_names": ["flag-il"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 116,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "palm_tree": {
- "char": "\ud83c\udf34",
- "key": "palm_tree",
- "keywords": ["palm_tree", "PALM TREE"],
- "category": "animals_and_nature",
- "lib": {
- "name": "PALM TREE",
- "unified": "1F334",
- "non_qualified": null,
- "docomo": null,
- "au": "E4E2",
- "softbank": "E307",
- "google": "FE047",
- "image": "1f334.png",
- "sheet_x": 6,
- "sheet_y": 36,
- "short_name": "palm_tree",
- "short_names": ["palm_tree"],
- "text": null,
- "texts": null,
- "category": "Animals & Nature",
- "sort_order": 116,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "boy": {
- "char": "\ud83d\udc66",
- "key": "boy",
- "keywords": ["boy", "BOY"],
- "category": "people",
- "lib": {
- "name": "BOY",
- "unified": "1F466",
- "non_qualified": null,
- "docomo": "E6F0",
- "au": "E4FC",
- "softbank": "E001",
- "google": "FE19B",
- "image": "1f466.png",
- "sheet_x": 15,
- "sheet_y": 28,
- "short_name": "boy",
- "short_names": ["boy"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 116,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F466-1F3FB",
- "non_qualified": null,
- "image": "1f466-1f3fb.png",
- "sheet_x": 15,
- "sheet_y": 29,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FC": {
- "unified": "1F466-1F3FC",
- "non_qualified": null,
- "image": "1f466-1f3fc.png",
- "sheet_x": 15,
- "sheet_y": 30,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FD": {
- "unified": "1F466-1F3FD",
- "non_qualified": null,
- "image": "1f466-1f3fd.png",
- "sheet_x": 15,
- "sheet_y": 31,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FE": {
- "unified": "1F466-1F3FE",
- "non_qualified": null,
- "image": "1f466-1f3fe.png",
- "sheet_x": 15,
- "sheet_y": 32,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FF": {
- "unified": "1F466-1F3FF",
- "non_qualified": null,
- "image": "1f466-1f3ff.png",
- "sheet_x": 15,
- "sheet_y": 33,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- }
- }
- },
- "chart_with_upwards_trend": {
- "char": "\ud83d\udcc8",
- "key": "chart_with_upwards_trend",
- "keywords": ["chart_with_upwards_trend", "CHART WITH UPWARDS TREND"],
- "category": "objects",
- "lib": {
- "name": "CHART WITH UPWARDS TREND",
- "unified": "1F4C8",
- "non_qualified": null,
- "docomo": null,
- "au": "E575",
- "softbank": null,
- "google": "FE54B",
- "image": "1f4c8.png",
- "sheet_x": 26,
- "sheet_y": 22,
- "short_name": "chart_with_upwards_trend",
- "short_names": ["chart_with_upwards_trend"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 116,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "airplane_arriving": {
- "char": "\ud83d\udeec",
- "key": "airplane_arriving",
- "keywords": ["airplane_arriving", "AIRPLANE ARRIVING"],
- "category": "travel_and_places",
- "lib": {
- "name": "AIRPLANE ARRIVING",
- "unified": "1F6EC",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f6ec.png",
- "sheet_x": 37,
- "sheet_y": 28,
- "short_name": "airplane_arriving",
- "short_names": ["airplane_arriving"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 116,
- "added_in": "7.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "curly_loop": {
- "char": "\u27b0",
- "key": "curly_loop",
- "keywords": ["curly_loop", "CURLY LOOP"],
- "category": "symbols",
- "lib": {
- "name": "CURLY LOOP",
- "unified": "27B0",
- "non_qualified": null,
- "docomo": "E70A",
- "au": "EB31",
- "softbank": null,
- "google": "FEB08",
- "image": "27b0.png",
- "sheet_x": 52,
- "sheet_y": 2,
- "short_name": "curly_loop",
- "short_names": ["curly_loop"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 116,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "flag-im": {
- "char": "\ud83c\uddee\ud83c\uddf2",
- "key": "flag-im",
- "keywords": ["flag-im", "Isle of Man Flag"],
- "category": "flags",
- "lib": {
- "name": "Isle of Man Flag",
- "unified": "1F1EE-1F1F2",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1ee-1f1f2.png",
- "sheet_x": 2,
- "sheet_y": 34,
- "short_name": "flag-im",
- "short_names": ["flag-im"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 117,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "cactus": {
- "char": "\ud83c\udf35",
- "key": "cactus",
- "keywords": ["cactus", "CACTUS"],
- "category": "animals_and_nature",
- "lib": {
- "name": "CACTUS",
- "unified": "1F335",
- "non_qualified": null,
- "docomo": null,
- "au": "EA96",
- "softbank": "E308",
- "google": "FE048",
- "image": "1f335.png",
- "sheet_x": 6,
- "sheet_y": 37,
- "short_name": "cactus",
- "short_names": ["cactus"],
- "text": null,
- "texts": null,
- "category": "Animals & Nature",
- "sort_order": 117,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "girl": {
- "char": "\ud83d\udc67",
- "key": "girl",
- "keywords": ["girl", "GIRL"],
- "category": "people",
- "lib": {
- "name": "GIRL",
- "unified": "1F467",
- "non_qualified": null,
- "docomo": "E6F0",
- "au": "E4FA",
- "softbank": "E002",
- "google": "FE19C",
- "image": "1f467.png",
- "sheet_x": 15,
- "sheet_y": 34,
- "short_name": "girl",
- "short_names": ["girl"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 117,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F467-1F3FB",
- "non_qualified": null,
- "image": "1f467-1f3fb.png",
- "sheet_x": 15,
- "sheet_y": 35,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FC": {
- "unified": "1F467-1F3FC",
- "non_qualified": null,
- "image": "1f467-1f3fc.png",
- "sheet_x": 15,
- "sheet_y": 36,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FD": {
- "unified": "1F467-1F3FD",
- "non_qualified": null,
- "image": "1f467-1f3fd.png",
- "sheet_x": 15,
- "sheet_y": 37,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FE": {
- "unified": "1F467-1F3FE",
- "non_qualified": null,
- "image": "1f467-1f3fe.png",
- "sheet_x": 15,
- "sheet_y": 38,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FF": {
- "unified": "1F467-1F3FF",
- "non_qualified": null,
- "image": "1f467-1f3ff.png",
- "sheet_x": 15,
- "sheet_y": 39,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- }
- }
- },
- "seat": {
- "char": "\ud83d\udcba",
- "key": "seat",
- "keywords": ["seat", "SEAT"],
- "category": "travel_and_places",
- "lib": {
- "name": "SEAT",
- "unified": "1F4BA",
- "non_qualified": null,
- "docomo": "E6B2",
- "au": null,
- "softbank": "E11F",
- "google": "FE537",
- "image": "1f4ba.png",
- "sheet_x": 26,
- "sheet_y": 8,
- "short_name": "seat",
- "short_names": ["seat"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 117,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "chart_with_downwards_trend": {
- "char": "\ud83d\udcc9",
- "key": "chart_with_downwards_trend",
- "keywords": ["chart_with_downwards_trend", "CHART WITH DOWNWARDS TREND"],
- "category": "objects",
- "lib": {
- "name": "CHART WITH DOWNWARDS TREND",
- "unified": "1F4C9",
- "non_qualified": null,
- "docomo": null,
- "au": "E576",
- "softbank": null,
- "google": "FE54C",
- "image": "1f4c9.png",
- "sheet_x": 26,
- "sheet_y": 23,
- "short_name": "chart_with_downwards_trend",
- "short_names": ["chart_with_downwards_trend"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 117,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "loop": {
- "char": "\u27bf",
- "key": "loop",
- "keywords": ["loop", "DOUBLE CURLY LOOP"],
- "category": "symbols",
- "lib": {
- "name": "DOUBLE CURLY LOOP",
- "unified": "27BF",
- "non_qualified": null,
- "docomo": "E6DF",
- "au": null,
- "softbank": "E211",
- "google": "FE82B",
- "image": "27bf.png",
- "sheet_x": 52,
- "sheet_y": 3,
- "short_name": "loop",
- "short_names": ["loop"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 117,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "flag-in": {
- "char": "\ud83c\uddee\ud83c\uddf3",
- "key": "flag-in",
- "keywords": ["flag-in", "India Flag"],
- "category": "flags",
- "lib": {
- "name": "India Flag",
- "unified": "1F1EE-1F1F3",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1ee-1f1f3.png",
- "sheet_x": 2,
- "sheet_y": 35,
- "short_name": "flag-in",
- "short_names": ["flag-in"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 118,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "ear_of_rice": {
- "char": "\ud83c\udf3e",
- "key": "ear_of_rice",
- "keywords": ["ear_of_rice", "EAR OF RICE"],
- "category": "animals_and_nature",
- "lib": {
- "name": "EAR OF RICE",
- "unified": "1F33E",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": "E444",
- "google": "FE049",
- "image": "1f33e.png",
- "sheet_x": 6,
- "sheet_y": 46,
- "short_name": "ear_of_rice",
- "short_names": ["ear_of_rice"],
- "text": null,
- "texts": null,
- "category": "Animals & Nature",
- "sort_order": 118,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "bar_chart": {
- "char": "\ud83d\udcca",
- "key": "bar_chart",
- "keywords": ["bar_chart", "BAR CHART"],
- "category": "objects",
- "lib": {
- "name": "BAR CHART",
- "unified": "1F4CA",
- "non_qualified": null,
- "docomo": null,
- "au": "E574",
- "softbank": null,
- "google": "FE54A",
- "image": "1f4ca.png",
- "sheet_x": 26,
- "sheet_y": 24,
- "short_name": "bar_chart",
- "short_names": ["bar_chart"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 118,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "helicopter": {
- "char": "\ud83d\ude81",
- "key": "helicopter",
- "keywords": ["helicopter", "HELICOPTER"],
- "category": "travel_and_places",
- "lib": {
- "name": "HELICOPTER",
- "unified": "1F681",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f681.png",
- "sheet_x": 34,
- "sheet_y": 24,
- "short_name": "helicopter",
- "short_names": ["helicopter"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 118,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "adult": {
- "char": "\ud83e\uddd1",
- "key": "adult",
- "keywords": ["adult", "ADULT"],
- "category": "people",
- "lib": {
- "name": "ADULT",
- "unified": "1F9D1",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f9d1.png",
- "sheet_x": 44,
- "sheet_y": 20,
- "short_name": "adult",
- "short_names": ["adult"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 118,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F9D1-1F3FB",
- "non_qualified": null,
- "image": "1f9d1-1f3fb.png",
- "sheet_x": 44,
- "sheet_y": 21,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F9D1-1F3FC",
- "non_qualified": null,
- "image": "1f9d1-1f3fc.png",
- "sheet_x": 44,
- "sheet_y": 22,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F9D1-1F3FD",
- "non_qualified": null,
- "image": "1f9d1-1f3fd.png",
- "sheet_x": 44,
- "sheet_y": 23,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F9D1-1F3FE",
- "non_qualified": null,
- "image": "1f9d1-1f3fe.png",
- "sheet_x": 44,
- "sheet_y": 24,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F9D1-1F3FF",
- "non_qualified": null,
- "image": "1f9d1-1f3ff.png",
- "sheet_x": 44,
- "sheet_y": 25,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- }
- }
- },
- "part_alternation_mark": {
- "char": "\u303d\ufe0f",
- "key": "part_alternation_mark",
- "keywords": ["part_alternation_mark", "PART ALTERNATION MARK"],
- "category": "symbols",
- "lib": {
- "name": "PART ALTERNATION MARK",
- "unified": "303D-FE0F",
- "non_qualified": "303D",
- "docomo": null,
- "au": null,
- "softbank": "E12C",
- "google": "FE81B",
- "image": "303d-fe0f.png",
- "sheet_x": 52,
- "sheet_y": 14,
- "short_name": "part_alternation_mark",
- "short_names": ["part_alternation_mark"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 118,
- "added_in": "3.2",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "flag-io": {
- "char": "\ud83c\uddee\ud83c\uddf4",
- "key": "flag-io",
- "keywords": ["flag-io", "British Indian Ocean Territory Flag"],
- "category": "flags",
- "lib": {
- "name": "British Indian Ocean Territory Flag",
- "unified": "1F1EE-1F1F4",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1ee-1f1f4.png",
- "sheet_x": 2,
- "sheet_y": 36,
- "short_name": "flag-io",
- "short_names": ["flag-io"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 119,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "herb": {
- "char": "\ud83c\udf3f",
- "key": "herb",
- "keywords": ["herb", "HERB"],
- "category": "animals_and_nature",
- "lib": {
- "name": "HERB",
- "unified": "1F33F",
- "non_qualified": null,
- "docomo": "E741",
- "au": "EB82",
- "softbank": null,
- "google": "FE04E",
- "image": "1f33f.png",
- "sheet_x": 6,
- "sheet_y": 47,
- "short_name": "herb",
- "short_names": ["herb"],
- "text": null,
- "texts": null,
- "category": "Animals & Nature",
- "sort_order": 119,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "man": {
- "char": "\ud83d\udc68",
- "key": "man",
- "keywords": ["man", "MAN"],
- "category": "people",
- "lib": {
- "name": "MAN",
- "unified": "1F468",
- "non_qualified": null,
- "docomo": "E6F0",
- "au": "E4FC",
- "softbank": "E004",
- "google": "FE19D",
- "image": "1f468.png",
- "sheet_x": 18,
- "sheet_y": 18,
- "short_name": "man",
- "short_names": ["man"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 119,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F468-1F3FB",
- "non_qualified": null,
- "image": "1f468-1f3fb.png",
- "sheet_x": 18,
- "sheet_y": 19,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FC": {
- "unified": "1F468-1F3FC",
- "non_qualified": null,
- "image": "1f468-1f3fc.png",
- "sheet_x": 18,
- "sheet_y": 20,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FD": {
- "unified": "1F468-1F3FD",
- "non_qualified": null,
- "image": "1f468-1f3fd.png",
- "sheet_x": 18,
- "sheet_y": 21,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FE": {
- "unified": "1F468-1F3FE",
- "non_qualified": null,
- "image": "1f468-1f3fe.png",
- "sheet_x": 18,
- "sheet_y": 22,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FF": {
- "unified": "1F468-1F3FF",
- "non_qualified": null,
- "image": "1f468-1f3ff.png",
- "sheet_x": 18,
- "sheet_y": 23,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- }
- }
- },
- "clipboard": {
- "char": "\ud83d\udccb",
- "key": "clipboard",
- "keywords": ["clipboard", "CLIPBOARD"],
- "category": "objects",
- "lib": {
- "name": "CLIPBOARD",
- "unified": "1F4CB",
- "non_qualified": null,
- "docomo": "E689",
- "au": "E564",
- "softbank": null,
- "google": "FE548",
- "image": "1f4cb.png",
- "sheet_x": 26,
- "sheet_y": 25,
- "short_name": "clipboard",
- "short_names": ["clipboard"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 119,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "suspension_railway": {
- "char": "\ud83d\ude9f",
- "key": "suspension_railway",
- "keywords": ["suspension_railway", "SUSPENSION RAILWAY"],
- "category": "travel_and_places",
- "lib": {
- "name": "SUSPENSION RAILWAY",
- "unified": "1F69F",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f69f.png",
- "sheet_x": 35,
- "sheet_y": 1,
- "short_name": "suspension_railway",
- "short_names": ["suspension_railway"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 119,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "eight_spoked_asterisk": {
- "char": "\u2733\ufe0f",
- "key": "eight_spoked_asterisk",
- "keywords": ["eight_spoked_asterisk", "EIGHT SPOKED ASTERISK"],
- "category": "symbols",
- "lib": {
- "name": "EIGHT SPOKED ASTERISK",
- "unified": "2733-FE0F",
- "non_qualified": "2733",
- "docomo": "E6F8",
- "au": "E53E",
- "softbank": "E206",
- "google": "FEB62",
- "image": "2733-fe0f.png",
- "sheet_x": 51,
- "sheet_y": 39,
- "short_name": "eight_spoked_asterisk",
- "short_names": ["eight_spoked_asterisk"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 119,
- "added_in": "1.1",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "flag-iq": {
- "char": "\ud83c\uddee\ud83c\uddf6",
- "key": "flag-iq",
- "keywords": ["flag-iq", "Iraq Flag"],
- "category": "flags",
- "lib": {
- "name": "Iraq Flag",
- "unified": "1F1EE-1F1F6",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1ee-1f1f6.png",
- "sheet_x": 2,
- "sheet_y": 37,
- "short_name": "flag-iq",
- "short_names": ["flag-iq"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 120,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "woman": {
- "char": "\ud83d\udc69",
- "key": "woman",
- "keywords": ["woman", "WOMAN"],
- "category": "people",
- "lib": {
- "name": "WOMAN",
- "unified": "1F469",
- "non_qualified": null,
- "docomo": "E6F0",
- "au": "E4FA",
- "softbank": "E005",
- "google": "FE19E",
- "image": "1f469.png",
- "sheet_x": 20,
- "sheet_y": 52,
- "short_name": "woman",
- "short_names": ["woman"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 120,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F469-1F3FB",
- "non_qualified": null,
- "image": "1f469-1f3fb.png",
- "sheet_x": 21,
- "sheet_y": 0,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FC": {
- "unified": "1F469-1F3FC",
- "non_qualified": null,
- "image": "1f469-1f3fc.png",
- "sheet_x": 21,
- "sheet_y": 1,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FD": {
- "unified": "1F469-1F3FD",
- "non_qualified": null,
- "image": "1f469-1f3fd.png",
- "sheet_x": 21,
- "sheet_y": 2,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FE": {
- "unified": "1F469-1F3FE",
- "non_qualified": null,
- "image": "1f469-1f3fe.png",
- "sheet_x": 21,
- "sheet_y": 3,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FF": {
- "unified": "1F469-1F3FF",
- "non_qualified": null,
- "image": "1f469-1f3ff.png",
- "sheet_x": 21,
- "sheet_y": 4,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- }
- }
- },
- "pushpin": {
- "char": "\ud83d\udccc",
- "key": "pushpin",
- "keywords": ["pushpin", "PUSHPIN"],
- "category": "objects",
- "lib": {
- "name": "PUSHPIN",
- "unified": "1F4CC",
- "non_qualified": null,
- "docomo": null,
- "au": "E56D",
- "softbank": null,
- "google": "FE54E",
- "image": "1f4cc.png",
- "sheet_x": 26,
- "sheet_y": 26,
- "short_name": "pushpin",
- "short_names": ["pushpin"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 120,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "mountain_cableway": {
- "char": "\ud83d\udea0",
- "key": "mountain_cableway",
- "keywords": ["mountain_cableway", "MOUNTAIN CABLEWAY"],
- "category": "travel_and_places",
- "lib": {
- "name": "MOUNTAIN CABLEWAY",
- "unified": "1F6A0",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f6a0.png",
- "sheet_x": 35,
- "sheet_y": 2,
- "short_name": "mountain_cableway",
- "short_names": ["mountain_cableway"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 120,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "shamrock": {
- "char": "\u2618\ufe0f",
- "key": "shamrock",
- "keywords": ["shamrock", ""],
- "category": "animals_and_nature",
- "lib": {
- "name": null,
- "unified": "2618-FE0F",
- "non_qualified": "2618",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "2618-fe0f.png",
- "sheet_x": 49,
- "sheet_y": 15,
- "short_name": "shamrock",
- "short_names": ["shamrock"],
- "text": null,
- "texts": null,
- "category": "Animals & Nature",
- "sort_order": 120,
- "added_in": "4.1",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "eight_pointed_black_star": {
- "char": "\u2734\ufe0f",
- "key": "eight_pointed_black_star",
- "keywords": ["eight_pointed_black_star", "EIGHT POINTED BLACK STAR"],
- "category": "symbols",
- "lib": {
- "name": "EIGHT POINTED BLACK STAR",
- "unified": "2734-FE0F",
- "non_qualified": "2734",
- "docomo": "E6F8",
- "au": "E479",
- "softbank": "E205",
- "google": "FEB61",
- "image": "2734-fe0f.png",
- "sheet_x": 51,
- "sheet_y": 40,
- "short_name": "eight_pointed_black_star",
- "short_names": ["eight_pointed_black_star"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 120,
- "added_in": "1.1",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "flag-ir": {
- "char": "\ud83c\uddee\ud83c\uddf7",
- "key": "flag-ir",
- "keywords": ["flag-ir", "Iran Flag"],
- "category": "flags",
- "lib": {
- "name": "Iran Flag",
- "unified": "1F1EE-1F1F7",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1ee-1f1f7.png",
- "sheet_x": 2,
- "sheet_y": 38,
- "short_name": "flag-ir",
- "short_names": ["flag-ir"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 121,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "four_leaf_clover": {
- "char": "\ud83c\udf40",
- "key": "four_leaf_clover",
- "keywords": ["four_leaf_clover", "FOUR LEAF CLOVER"],
- "category": "animals_and_nature",
- "lib": {
- "name": "FOUR LEAF CLOVER",
- "unified": "1F340",
- "non_qualified": null,
- "docomo": "E741",
- "au": "E513",
- "softbank": "E110",
- "google": "FE03C",
- "image": "1f340.png",
- "sheet_x": 6,
- "sheet_y": 48,
- "short_name": "four_leaf_clover",
- "short_names": ["four_leaf_clover"],
- "text": null,
- "texts": null,
- "category": "Animals & Nature",
- "sort_order": 121,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "round_pushpin": {
- "char": "\ud83d\udccd",
- "key": "round_pushpin",
- "keywords": ["round_pushpin", "ROUND PUSHPIN"],
- "category": "objects",
- "lib": {
- "name": "ROUND PUSHPIN",
- "unified": "1F4CD",
- "non_qualified": null,
- "docomo": null,
- "au": "E560",
- "softbank": null,
- "google": "FE53F",
- "image": "1f4cd.png",
- "sheet_x": 26,
- "sheet_y": 27,
- "short_name": "round_pushpin",
- "short_names": ["round_pushpin"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 121,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "aerial_tramway": {
- "char": "\ud83d\udea1",
- "key": "aerial_tramway",
- "keywords": ["aerial_tramway", "AERIAL TRAMWAY"],
- "category": "travel_and_places",
- "lib": {
- "name": "AERIAL TRAMWAY",
- "unified": "1F6A1",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f6a1.png",
- "sheet_x": 35,
- "sheet_y": 3,
- "short_name": "aerial_tramway",
- "short_names": ["aerial_tramway"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 121,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "older_adult": {
- "char": "\ud83e\uddd3",
- "key": "older_adult",
- "keywords": ["older_adult", "OLDER ADULT"],
- "category": "people",
- "lib": {
- "name": "OLDER ADULT",
- "unified": "1F9D3",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f9d3.png",
- "sheet_x": 44,
- "sheet_y": 32,
- "short_name": "older_adult",
- "short_names": ["older_adult"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 121,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F9D3-1F3FB",
- "non_qualified": null,
- "image": "1f9d3-1f3fb.png",
- "sheet_x": 44,
- "sheet_y": 33,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F9D3-1F3FC",
- "non_qualified": null,
- "image": "1f9d3-1f3fc.png",
- "sheet_x": 44,
- "sheet_y": 34,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F9D3-1F3FD",
- "non_qualified": null,
- "image": "1f9d3-1f3fd.png",
- "sheet_x": 44,
- "sheet_y": 35,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F9D3-1F3FE",
- "non_qualified": null,
- "image": "1f9d3-1f3fe.png",
- "sheet_x": 44,
- "sheet_y": 36,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F9D3-1F3FF",
- "non_qualified": null,
- "image": "1f9d3-1f3ff.png",
- "sheet_x": 44,
- "sheet_y": 37,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- }
- }
- },
- "sparkle": {
- "char": "\u2747\ufe0f",
- "key": "sparkle",
- "keywords": ["sparkle", "SPARKLE"],
- "category": "symbols",
- "lib": {
- "name": "SPARKLE",
- "unified": "2747-FE0F",
- "non_qualified": "2747",
- "docomo": "E6FA",
- "au": "E46C",
- "softbank": null,
- "google": "FEB77",
- "image": "2747-fe0f.png",
- "sheet_x": 51,
- "sheet_y": 42,
- "short_name": "sparkle",
- "short_names": ["sparkle"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 121,
- "added_in": "1.1",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "flag-is": {
- "char": "\ud83c\uddee\ud83c\uddf8",
- "key": "flag-is",
- "keywords": ["flag-is", "Iceland Flag"],
- "category": "flags",
- "lib": {
- "name": "Iceland Flag",
- "unified": "1F1EE-1F1F8",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1ee-1f1f8.png",
- "sheet_x": 2,
- "sheet_y": 39,
- "short_name": "flag-is",
- "short_names": ["flag-is"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 122,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "maple_leaf": {
- "char": "\ud83c\udf41",
- "key": "maple_leaf",
- "keywords": ["maple_leaf", "MAPLE LEAF"],
- "category": "animals_and_nature",
- "lib": {
- "name": "MAPLE LEAF",
- "unified": "1F341",
- "non_qualified": null,
- "docomo": "E747",
- "au": "E4CE",
- "softbank": "E118",
- "google": "FE03F",
- "image": "1f341.png",
- "sheet_x": 6,
- "sheet_y": 49,
- "short_name": "maple_leaf",
- "short_names": ["maple_leaf"],
- "text": null,
- "texts": null,
- "category": "Animals & Nature",
- "sort_order": 122,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "older_man": {
- "char": "\ud83d\udc74",
- "key": "older_man",
- "keywords": ["older_man", "OLDER MAN"],
- "category": "people",
- "lib": {
- "name": "OLDER MAN",
- "unified": "1F474",
- "non_qualified": null,
- "docomo": null,
- "au": "EB16",
- "softbank": "E518",
- "google": "FE1A7",
- "image": "1f474.png",
- "sheet_x": 22,
- "sheet_y": 25,
- "short_name": "older_man",
- "short_names": ["older_man"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 122,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F474-1F3FB",
- "non_qualified": null,
- "image": "1f474-1f3fb.png",
- "sheet_x": 22,
- "sheet_y": 26,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FC": {
- "unified": "1F474-1F3FC",
- "non_qualified": null,
- "image": "1f474-1f3fc.png",
- "sheet_x": 22,
- "sheet_y": 27,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FD": {
- "unified": "1F474-1F3FD",
- "non_qualified": null,
- "image": "1f474-1f3fd.png",
- "sheet_x": 22,
- "sheet_y": 28,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FE": {
- "unified": "1F474-1F3FE",
- "non_qualified": null,
- "image": "1f474-1f3fe.png",
- "sheet_x": 22,
- "sheet_y": 29,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FF": {
- "unified": "1F474-1F3FF",
- "non_qualified": null,
- "image": "1f474-1f3ff.png",
- "sheet_x": 22,
- "sheet_y": 30,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- }
- }
- },
- "paperclip": {
- "char": "\ud83d\udcce",
- "key": "paperclip",
- "keywords": ["paperclip", "PAPERCLIP"],
- "category": "objects",
- "lib": {
- "name": "PAPERCLIP",
- "unified": "1F4CE",
- "non_qualified": null,
- "docomo": "E730",
- "au": "E4A0",
- "softbank": null,
- "google": "FE53A",
- "image": "1f4ce.png",
- "sheet_x": 26,
- "sheet_y": 28,
- "short_name": "paperclip",
- "short_names": ["paperclip"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 122,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "satellite": {
- "char": "\ud83d\udef0\ufe0f",
- "key": "satellite",
- "keywords": ["satellite", ""],
- "category": "travel_and_places",
- "lib": {
- "name": null,
- "unified": "1F6F0-FE0F",
- "non_qualified": "1F6F0",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f6f0-fe0f.png",
- "sheet_x": 37,
- "sheet_y": 29,
- "short_name": "satellite",
- "short_names": ["satellite"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 122,
- "added_in": "7.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "bangbang": {
- "char": "\u203c\ufe0f",
- "key": "bangbang",
- "keywords": ["bangbang", "DOUBLE EXCLAMATION MARK"],
- "category": "symbols",
- "lib": {
- "name": "DOUBLE EXCLAMATION MARK",
- "unified": "203C-FE0F",
- "non_qualified": "203C",
- "docomo": "E704",
- "au": "EB30",
- "softbank": null,
- "google": "FEB06",
- "image": "203c-fe0f.png",
- "sheet_x": 48,
- "sheet_y": 20,
- "short_name": "bangbang",
- "short_names": ["bangbang"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 122,
- "added_in": "1.1",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "it": {
- "char": "\ud83c\uddee\ud83c\uddf9",
- "key": "it",
- "keywords": ["it", "Italy Flag"],
- "category": "flags",
- "lib": {
- "name": "Italy Flag",
- "unified": "1F1EE-1F1F9",
- "non_qualified": null,
- "docomo": null,
- "au": "EB0F",
- "softbank": "E50F",
- "google": "FE4E9",
- "image": "1f1ee-1f1f9.png",
- "sheet_x": 2,
- "sheet_y": 40,
- "short_name": "it",
- "short_names": ["it", "flag-it"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 123,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "fallen_leaf": {
- "char": "\ud83c\udf42",
- "key": "fallen_leaf",
- "keywords": ["fallen_leaf", "FALLEN LEAF"],
- "category": "animals_and_nature",
- "lib": {
- "name": "FALLEN LEAF",
- "unified": "1F342",
- "non_qualified": null,
- "docomo": "E747",
- "au": "E5CD",
- "softbank": "E119",
- "google": "FE042",
- "image": "1f342.png",
- "sheet_x": 6,
- "sheet_y": 50,
- "short_name": "fallen_leaf",
- "short_names": ["fallen_leaf"],
- "text": null,
- "texts": null,
- "category": "Animals & Nature",
- "sort_order": 123,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "older_woman": {
- "char": "\ud83d\udc75",
- "key": "older_woman",
- "keywords": ["older_woman", "OLDER WOMAN"],
- "category": "people",
- "lib": {
- "name": "OLDER WOMAN",
- "unified": "1F475",
- "non_qualified": null,
- "docomo": null,
- "au": "EB17",
- "softbank": "E519",
- "google": "FE1A8",
- "image": "1f475.png",
- "sheet_x": 22,
- "sheet_y": 31,
- "short_name": "older_woman",
- "short_names": ["older_woman"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 123,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F475-1F3FB",
- "non_qualified": null,
- "image": "1f475-1f3fb.png",
- "sheet_x": 22,
- "sheet_y": 32,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FC": {
- "unified": "1F475-1F3FC",
- "non_qualified": null,
- "image": "1f475-1f3fc.png",
- "sheet_x": 22,
- "sheet_y": 33,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FD": {
- "unified": "1F475-1F3FD",
- "non_qualified": null,
- "image": "1f475-1f3fd.png",
- "sheet_x": 22,
- "sheet_y": 34,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FE": {
- "unified": "1F475-1F3FE",
- "non_qualified": null,
- "image": "1f475-1f3fe.png",
- "sheet_x": 22,
- "sheet_y": 35,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FF": {
- "unified": "1F475-1F3FF",
- "non_qualified": null,
- "image": "1f475-1f3ff.png",
- "sheet_x": 22,
- "sheet_y": 36,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- }
- }
- },
- "linked_paperclips": {
- "char": "\ud83d\udd87\ufe0f",
- "key": "linked_paperclips",
- "keywords": ["linked_paperclips", ""],
- "category": "objects",
- "lib": {
- "name": null,
- "unified": "1F587-FE0F",
- "non_qualified": "1F587",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f587-fe0f.png",
- "sheet_x": 29,
- "sheet_y": 47,
- "short_name": "linked_paperclips",
- "short_names": ["linked_paperclips"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 123,
- "added_in": "7.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "rocket": {
- "char": "\ud83d\ude80",
- "key": "rocket",
- "keywords": ["rocket", "ROCKET"],
- "category": "travel_and_places",
- "lib": {
- "name": "ROCKET",
- "unified": "1F680",
- "non_qualified": null,
- "docomo": null,
- "au": "E5C8",
- "softbank": "E10D",
- "google": "FE7ED",
- "image": "1f680.png",
- "sheet_x": 34,
- "sheet_y": 23,
- "short_name": "rocket",
- "short_names": ["rocket"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 123,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "interrobang": {
- "char": "\u2049\ufe0f",
- "key": "interrobang",
- "keywords": ["interrobang", "EXCLAMATION QUESTION MARK"],
- "category": "symbols",
- "lib": {
- "name": "EXCLAMATION QUESTION MARK",
- "unified": "2049-FE0F",
- "non_qualified": "2049",
- "docomo": "E703",
- "au": "EB2F",
- "softbank": null,
- "google": "FEB05",
- "image": "2049-fe0f.png",
- "sheet_x": 48,
- "sheet_y": 21,
- "short_name": "interrobang",
- "short_names": ["interrobang"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 123,
- "added_in": "3.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "flag-je": {
- "char": "\ud83c\uddef\ud83c\uddea",
- "key": "flag-je",
- "keywords": ["flag-je", "Jersey Flag"],
- "category": "flags",
- "lib": {
- "name": "Jersey Flag",
- "unified": "1F1EF-1F1EA",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1ef-1f1ea.png",
- "sheet_x": 2,
- "sheet_y": 41,
- "short_name": "flag-je",
- "short_names": ["flag-je"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 124,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "leaves": {
- "char": "\ud83c\udf43",
- "key": "leaves",
- "keywords": ["leaves", "LEAF FLUTTERING IN WIND"],
- "category": "animals_and_nature",
- "lib": {
- "name": "LEAF FLUTTERING IN WIND",
- "unified": "1F343",
- "non_qualified": null,
- "docomo": null,
- "au": "E5CD",
- "softbank": "E447",
- "google": "FE043",
- "image": "1f343.png",
- "sheet_x": 6,
- "sheet_y": 51,
- "short_name": "leaves",
- "short_names": ["leaves"],
- "text": null,
- "texts": null,
- "category": "Animals & Nature",
- "sort_order": 124,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "male-doctor": {
- "char": "\ud83d\udc68\u200d\u2695\ufe0f",
- "key": "male-doctor",
- "keywords": ["male-doctor", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F468-200D-2695-FE0F",
- "non_qualified": "1F468-200D-2695",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f468-200d-2695-fe0f.png",
- "sheet_x": 17,
- "sheet_y": 51,
- "short_name": "male-doctor",
- "short_names": ["male-doctor"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 124,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F468-1F3FB-200D-2695-FE0F",
- "non_qualified": "1F468-1F3FB-200D-2695",
- "image": "1f468-1f3fb-200d-2695-fe0f.png",
- "sheet_x": 17,
- "sheet_y": 52,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F468-1F3FC-200D-2695-FE0F",
- "non_qualified": "1F468-1F3FC-200D-2695",
- "image": "1f468-1f3fc-200d-2695-fe0f.png",
- "sheet_x": 18,
- "sheet_y": 0,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F468-1F3FD-200D-2695-FE0F",
- "non_qualified": "1F468-1F3FD-200D-2695",
- "image": "1f468-1f3fd-200d-2695-fe0f.png",
- "sheet_x": 18,
- "sheet_y": 1,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F468-1F3FE-200D-2695-FE0F",
- "non_qualified": "1F468-1F3FE-200D-2695",
- "image": "1f468-1f3fe-200d-2695-fe0f.png",
- "sheet_x": 18,
- "sheet_y": 2,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F468-1F3FF-200D-2695-FE0F",
- "non_qualified": "1F468-1F3FF-200D-2695",
- "image": "1f468-1f3ff-200d-2695-fe0f.png",
- "sheet_x": 18,
- "sheet_y": 3,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- }
- }
- },
- "straight_ruler": {
- "char": "\ud83d\udccf",
- "key": "straight_ruler",
- "keywords": ["straight_ruler", "STRAIGHT RULER"],
- "category": "objects",
- "lib": {
- "name": "STRAIGHT RULER",
- "unified": "1F4CF",
- "non_qualified": null,
- "docomo": null,
- "au": "E570",
- "softbank": null,
- "google": "FE550",
- "image": "1f4cf.png",
- "sheet_x": 26,
- "sheet_y": 29,
- "short_name": "straight_ruler",
- "short_names": ["straight_ruler"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 124,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "flying_saucer": {
- "char": "\ud83d\udef8",
- "key": "flying_saucer",
- "keywords": ["flying_saucer", "FLYING SAUCER"],
- "category": "travel_and_places",
- "lib": {
- "name": "FLYING SAUCER",
- "unified": "1F6F8",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f6f8.png",
- "sheet_x": 37,
- "sheet_y": 35,
- "short_name": "flying_saucer",
- "short_names": ["flying_saucer"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 124,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "question": {
- "char": "\u2753",
- "key": "question",
- "keywords": ["question", "BLACK QUESTION MARK ORNAMENT"],
- "category": "symbols",
- "lib": {
- "name": "BLACK QUESTION MARK ORNAMENT",
- "unified": "2753",
- "non_qualified": null,
- "docomo": null,
- "au": "E483",
- "softbank": "E020",
- "google": "FEB09",
- "image": "2753.png",
- "sheet_x": 51,
- "sheet_y": 45,
- "short_name": "question",
- "short_names": ["question"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 124,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "flag-jm": {
- "char": "\ud83c\uddef\ud83c\uddf2",
- "key": "flag-jm",
- "keywords": ["flag-jm", "Jamaica Flag"],
- "category": "flags",
- "lib": {
- "name": "Jamaica Flag",
- "unified": "1F1EF-1F1F2",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1ef-1f1f2.png",
- "sheet_x": 2,
- "sheet_y": 42,
- "short_name": "flag-jm",
- "short_names": ["flag-jm"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 125,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "female-doctor": {
- "char": "\ud83d\udc69\u200d\u2695\ufe0f",
- "key": "female-doctor",
- "keywords": ["female-doctor", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F469-200D-2695-FE0F",
- "non_qualified": "1F469-200D-2695",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f469-200d-2695-fe0f.png",
- "sheet_x": 20,
- "sheet_y": 30,
- "short_name": "female-doctor",
- "short_names": ["female-doctor"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 125,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F469-1F3FB-200D-2695-FE0F",
- "non_qualified": "1F469-1F3FB-200D-2695",
- "image": "1f469-1f3fb-200d-2695-fe0f.png",
- "sheet_x": 20,
- "sheet_y": 31,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F469-1F3FC-200D-2695-FE0F",
- "non_qualified": "1F469-1F3FC-200D-2695",
- "image": "1f469-1f3fc-200d-2695-fe0f.png",
- "sheet_x": 20,
- "sheet_y": 32,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F469-1F3FD-200D-2695-FE0F",
- "non_qualified": "1F469-1F3FD-200D-2695",
- "image": "1f469-1f3fd-200d-2695-fe0f.png",
- "sheet_x": 20,
- "sheet_y": 33,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F469-1F3FE-200D-2695-FE0F",
- "non_qualified": "1F469-1F3FE-200D-2695",
- "image": "1f469-1f3fe-200d-2695-fe0f.png",
- "sheet_x": 20,
- "sheet_y": 34,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F469-1F3FF-200D-2695-FE0F",
- "non_qualified": "1F469-1F3FF-200D-2695",
- "image": "1f469-1f3ff-200d-2695-fe0f.png",
- "sheet_x": 20,
- "sheet_y": 35,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- }
- }
- },
- "triangular_ruler": {
- "char": "\ud83d\udcd0",
- "key": "triangular_ruler",
- "keywords": ["triangular_ruler", "TRIANGULAR RULER"],
- "category": "objects",
- "lib": {
- "name": "TRIANGULAR RULER",
- "unified": "1F4D0",
- "non_qualified": null,
- "docomo": null,
- "au": "E4A2",
- "softbank": null,
- "google": "FE551",
- "image": "1f4d0.png",
- "sheet_x": 26,
- "sheet_y": 30,
- "short_name": "triangular_ruler",
- "short_names": ["triangular_ruler"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 125,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "bellhop_bell": {
- "char": "\ud83d\udece\ufe0f",
- "key": "bellhop_bell",
- "keywords": ["bellhop_bell", ""],
- "category": "travel_and_places",
- "lib": {
- "name": null,
- "unified": "1F6CE-FE0F",
- "non_qualified": "1F6CE",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f6ce-fe0f.png",
- "sheet_x": 37,
- "sheet_y": 15,
- "short_name": "bellhop_bell",
- "short_names": ["bellhop_bell"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 125,
- "added_in": "7.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "grey_question": {
- "char": "\u2754",
- "key": "grey_question",
- "keywords": ["grey_question", "WHITE QUESTION MARK ORNAMENT"],
- "category": "symbols",
- "lib": {
- "name": "WHITE QUESTION MARK ORNAMENT",
- "unified": "2754",
- "non_qualified": null,
- "docomo": null,
- "au": "E483",
- "softbank": "E336",
- "google": "FEB0A",
- "image": "2754.png",
- "sheet_x": 51,
- "sheet_y": 46,
- "short_name": "grey_question",
- "short_names": ["grey_question"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 125,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "flag-jo": {
- "char": "\ud83c\uddef\ud83c\uddf4",
- "key": "flag-jo",
- "keywords": ["flag-jo", "Jordan Flag"],
- "category": "flags",
- "lib": {
- "name": "Jordan Flag",
- "unified": "1F1EF-1F1F4",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1ef-1f1f4.png",
- "sheet_x": 2,
- "sheet_y": 43,
- "short_name": "flag-jo",
- "short_names": ["flag-jo"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 126,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "male-student": {
- "char": "\ud83d\udc68\u200d\ud83c\udf93",
- "key": "male-student",
- "keywords": ["male-student", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F468-200D-1F393",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f468-200d-1f393.png",
- "sheet_x": 15,
- "sheet_y": 52,
- "short_name": "male-student",
- "short_names": ["male-student"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 126,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F468-1F3FB-200D-1F393",
- "non_qualified": null,
- "image": "1f468-1f3fb-200d-1f393.png",
- "sheet_x": 16,
- "sheet_y": 0,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F468-1F3FC-200D-1F393",
- "non_qualified": null,
- "image": "1f468-1f3fc-200d-1f393.png",
- "sheet_x": 16,
- "sheet_y": 1,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F468-1F3FD-200D-1F393",
- "non_qualified": null,
- "image": "1f468-1f3fd-200d-1f393.png",
- "sheet_x": 16,
- "sheet_y": 2,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F468-1F3FE-200D-1F393",
- "non_qualified": null,
- "image": "1f468-1f3fe-200d-1f393.png",
- "sheet_x": 16,
- "sheet_y": 3,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F468-1F3FF-200D-1F393",
- "non_qualified": null,
- "image": "1f468-1f3ff-200d-1f393.png",
- "sheet_x": 16,
- "sheet_y": 4,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- }
- }
- },
- "luggage": {
- "char": "\ud83e\uddf3",
- "key": "luggage",
- "keywords": ["luggage", "LUGGAGE"],
- "category": "travel_and_places",
- "lib": {
- "name": "LUGGAGE",
- "unified": "1F9F3",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f9f3.png",
- "sheet_x": 48,
- "sheet_y": 7,
- "short_name": "luggage",
- "short_names": ["luggage"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 126,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- },
- "scissors": {
- "char": "\u2702\ufe0f",
- "key": "scissors",
- "keywords": ["scissors", "BLACK SCISSORS"],
- "category": "objects",
- "lib": {
- "name": "BLACK SCISSORS",
- "unified": "2702-FE0F",
- "non_qualified": "2702",
- "docomo": "E675",
- "au": "E516",
- "softbank": "E313",
- "google": "FE53E",
- "image": "2702-fe0f.png",
- "sheet_x": 51,
- "sheet_y": 4,
- "short_name": "scissors",
- "short_names": ["scissors"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 126,
- "added_in": "1.1",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "grey_exclamation": {
- "char": "\u2755",
- "key": "grey_exclamation",
- "keywords": ["grey_exclamation", "WHITE EXCLAMATION MARK ORNAMENT"],
- "category": "symbols",
- "lib": {
- "name": "WHITE EXCLAMATION MARK ORNAMENT",
- "unified": "2755",
- "non_qualified": null,
- "docomo": "E702",
- "au": "E482",
- "softbank": "E337",
- "google": "FEB0B",
- "image": "2755.png",
- "sheet_x": 51,
- "sheet_y": 47,
- "short_name": "grey_exclamation",
- "short_names": ["grey_exclamation"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 126,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "jp": {
- "char": "\ud83c\uddef\ud83c\uddf5",
- "key": "jp",
- "keywords": ["jp", "Japan Flag"],
- "category": "flags",
- "lib": {
- "name": "Japan Flag",
- "unified": "1F1EF-1F1F5",
- "non_qualified": null,
- "docomo": null,
- "au": "E4CC",
- "softbank": "E50B",
- "google": "FE4E5",
- "image": "1f1ef-1f1f5.png",
- "sheet_x": 2,
- "sheet_y": 44,
- "short_name": "jp",
- "short_names": ["jp", "flag-jp"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 127,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "female-student": {
- "char": "\ud83d\udc69\u200d\ud83c\udf93",
- "key": "female-student",
- "keywords": ["female-student", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F469-200D-1F393",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f469-200d-1f393.png",
- "sheet_x": 18,
- "sheet_y": 36,
- "short_name": "female-student",
- "short_names": ["female-student"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 127,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F469-1F3FB-200D-1F393",
- "non_qualified": null,
- "image": "1f469-1f3fb-200d-1f393.png",
- "sheet_x": 18,
- "sheet_y": 37,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F469-1F3FC-200D-1F393",
- "non_qualified": null,
- "image": "1f469-1f3fc-200d-1f393.png",
- "sheet_x": 18,
- "sheet_y": 38,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F469-1F3FD-200D-1F393",
- "non_qualified": null,
- "image": "1f469-1f3fd-200d-1f393.png",
- "sheet_x": 18,
- "sheet_y": 39,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F469-1F3FE-200D-1F393",
- "non_qualified": null,
- "image": "1f469-1f3fe-200d-1f393.png",
- "sheet_x": 18,
- "sheet_y": 40,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F469-1F3FF-200D-1F393",
- "non_qualified": null,
- "image": "1f469-1f3ff-200d-1f393.png",
- "sheet_x": 18,
- "sheet_y": 41,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- }
- }
- },
- "card_file_box": {
- "char": "\ud83d\uddc3\ufe0f",
- "key": "card_file_box",
- "keywords": ["card_file_box", ""],
- "category": "objects",
- "lib": {
- "name": null,
- "unified": "1F5C3-FE0F",
- "non_qualified": "1F5C3",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f5c3-fe0f.png",
- "sheet_x": 30,
- "sheet_y": 24,
- "short_name": "card_file_box",
- "short_names": ["card_file_box"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 127,
- "added_in": "7.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "hourglass": {
- "char": "\u231b",
- "key": "hourglass",
- "keywords": ["hourglass", "HOURGLASS"],
- "category": "travel_and_places",
- "lib": {
- "name": "HOURGLASS",
- "unified": "231B",
- "non_qualified": null,
- "docomo": "E71C",
- "au": "E57B",
- "softbank": null,
- "google": "FE01C",
- "image": "231b.png",
- "sheet_x": 48,
- "sheet_y": 33,
- "short_name": "hourglass",
- "short_names": ["hourglass"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 127,
- "added_in": "1.1",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "exclamation": {
- "char": "\u2757",
- "key": "exclamation",
- "keywords": ["exclamation", "HEAVY EXCLAMATION MARK SYMBOL"],
- "category": "symbols",
- "lib": {
- "name": "HEAVY EXCLAMATION MARK SYMBOL",
- "unified": "2757",
- "non_qualified": null,
- "docomo": "E702",
- "au": "E482",
- "softbank": "E021",
- "google": "FEB04",
- "image": "2757.png",
- "sheet_x": 51,
- "sheet_y": 48,
- "short_name": "exclamation",
- "short_names": ["exclamation", "heavy_exclamation_mark"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 127,
- "added_in": "5.2",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "flag-ke": {
- "char": "\ud83c\uddf0\ud83c\uddea",
- "key": "flag-ke",
- "keywords": ["flag-ke", "Kenya Flag"],
- "category": "flags",
- "lib": {
- "name": "Kenya Flag",
- "unified": "1F1F0-1F1EA",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1f0-1f1ea.png",
- "sheet_x": 2,
- "sheet_y": 45,
- "short_name": "flag-ke",
- "short_names": ["flag-ke"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 128,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "male-teacher": {
- "char": "\ud83d\udc68\u200d\ud83c\udfeb",
- "key": "male-teacher",
- "keywords": ["male-teacher", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F468-200D-1F3EB",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f468-200d-1f3eb.png",
- "sheet_x": 16,
- "sheet_y": 17,
- "short_name": "male-teacher",
- "short_names": ["male-teacher"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 128,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F468-1F3FB-200D-1F3EB",
- "non_qualified": null,
- "image": "1f468-1f3fb-200d-1f3eb.png",
- "sheet_x": 16,
- "sheet_y": 18,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F468-1F3FC-200D-1F3EB",
- "non_qualified": null,
- "image": "1f468-1f3fc-200d-1f3eb.png",
- "sheet_x": 16,
- "sheet_y": 19,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F468-1F3FD-200D-1F3EB",
- "non_qualified": null,
- "image": "1f468-1f3fd-200d-1f3eb.png",
- "sheet_x": 16,
- "sheet_y": 20,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F468-1F3FE-200D-1F3EB",
- "non_qualified": null,
- "image": "1f468-1f3fe-200d-1f3eb.png",
- "sheet_x": 16,
- "sheet_y": 21,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F468-1F3FF-200D-1F3EB",
- "non_qualified": null,
- "image": "1f468-1f3ff-200d-1f3eb.png",
- "sheet_x": 16,
- "sheet_y": 22,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- }
- }
- },
- "file_cabinet": {
- "char": "\ud83d\uddc4\ufe0f",
- "key": "file_cabinet",
- "keywords": ["file_cabinet", ""],
- "category": "objects",
- "lib": {
- "name": null,
- "unified": "1F5C4-FE0F",
- "non_qualified": "1F5C4",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f5c4-fe0f.png",
- "sheet_x": 30,
- "sheet_y": 25,
- "short_name": "file_cabinet",
- "short_names": ["file_cabinet"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 128,
- "added_in": "7.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "hourglass_flowing_sand": {
- "char": "\u23f3",
- "key": "hourglass_flowing_sand",
- "keywords": ["hourglass_flowing_sand", "HOURGLASS WITH FLOWING SAND"],
- "category": "travel_and_places",
- "lib": {
- "name": "HOURGLASS WITH FLOWING SAND",
- "unified": "23F3",
- "non_qualified": null,
- "docomo": "E71C",
- "au": "E47C",
- "softbank": null,
- "google": "FE01B",
- "image": "23f3.png",
- "sheet_x": 48,
- "sheet_y": 46,
- "short_name": "hourglass_flowing_sand",
- "short_names": ["hourglass_flowing_sand"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 128,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "wavy_dash": {
- "char": "\u3030\ufe0f",
- "key": "wavy_dash",
- "keywords": ["wavy_dash", "WAVY DASH"],
- "category": "symbols",
- "lib": {
- "name": "WAVY DASH",
- "unified": "3030-FE0F",
- "non_qualified": "3030",
- "docomo": "E709",
- "au": null,
- "softbank": null,
- "google": "FEB07",
- "image": "3030-fe0f.png",
- "sheet_x": 52,
- "sheet_y": 13,
- "short_name": "wavy_dash",
- "short_names": ["wavy_dash"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 128,
- "added_in": "1.1",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "copyright": {
- "char": "\u00a9\ufe0f",
- "key": "copyright",
- "keywords": ["copyright", "COPYRIGHT SIGN"],
- "category": "symbols",
- "lib": {
- "name": "COPYRIGHT SIGN",
- "unified": "00A9-FE0F",
- "non_qualified": "00A9",
- "docomo": "E731",
- "au": "E558",
- "softbank": "E24E",
- "google": "FEB29",
- "image": "00a9-fe0f.png",
- "sheet_x": 0,
- "sheet_y": 12,
- "short_name": "copyright",
- "short_names": ["copyright"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 129,
- "added_in": "1.1",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- },
- "flag-kg": {
- "char": "\ud83c\uddf0\ud83c\uddec",
- "key": "flag-kg",
- "keywords": ["flag-kg", "Kyrgyzstan Flag"],
- "category": "flags",
- "lib": {
- "name": "Kyrgyzstan Flag",
- "unified": "1F1F0-1F1EC",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1f0-1f1ec.png",
- "sheet_x": 2,
- "sheet_y": 46,
- "short_name": "flag-kg",
- "short_names": ["flag-kg"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 129,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "female-teacher": {
- "char": "\ud83d\udc69\u200d\ud83c\udfeb",
- "key": "female-teacher",
- "keywords": ["female-teacher", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F469-200D-1F3EB",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f469-200d-1f3eb.png",
- "sheet_x": 19,
- "sheet_y": 1,
- "short_name": "female-teacher",
- "short_names": ["female-teacher"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 129,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F469-1F3FB-200D-1F3EB",
- "non_qualified": null,
- "image": "1f469-1f3fb-200d-1f3eb.png",
- "sheet_x": 19,
- "sheet_y": 2,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F469-1F3FC-200D-1F3EB",
- "non_qualified": null,
- "image": "1f469-1f3fc-200d-1f3eb.png",
- "sheet_x": 19,
- "sheet_y": 3,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F469-1F3FD-200D-1F3EB",
- "non_qualified": null,
- "image": "1f469-1f3fd-200d-1f3eb.png",
- "sheet_x": 19,
- "sheet_y": 4,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F469-1F3FE-200D-1F3EB",
- "non_qualified": null,
- "image": "1f469-1f3fe-200d-1f3eb.png",
- "sheet_x": 19,
- "sheet_y": 5,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F469-1F3FF-200D-1F3EB",
- "non_qualified": null,
- "image": "1f469-1f3ff-200d-1f3eb.png",
- "sheet_x": 19,
- "sheet_y": 6,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- }
- }
- },
- "wastebasket": {
- "char": "\ud83d\uddd1\ufe0f",
- "key": "wastebasket",
- "keywords": ["wastebasket", ""],
- "category": "objects",
- "lib": {
- "name": null,
- "unified": "1F5D1-FE0F",
- "non_qualified": "1F5D1",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f5d1-fe0f.png",
- "sheet_x": 30,
- "sheet_y": 26,
- "short_name": "wastebasket",
- "short_names": ["wastebasket"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 129,
- "added_in": "7.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "watch": {
- "char": "\u231a",
- "key": "watch",
- "keywords": ["watch", "WATCH"],
- "category": "travel_and_places",
- "lib": {
- "name": "WATCH",
- "unified": "231A",
- "non_qualified": null,
- "docomo": "E71F",
- "au": "E57A",
- "softbank": null,
- "google": "FE01D",
- "image": "231a.png",
- "sheet_x": 48,
- "sheet_y": 32,
- "short_name": "watch",
- "short_names": ["watch"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 129,
- "added_in": "1.1",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "registered": {
- "char": "\u00ae\ufe0f",
- "key": "registered",
- "keywords": ["registered", "REGISTERED SIGN"],
- "category": "symbols",
- "lib": {
- "name": "REGISTERED SIGN",
- "unified": "00AE-FE0F",
- "non_qualified": "00AE",
- "docomo": "E736",
- "au": "E559",
- "softbank": "E24F",
- "google": "FEB2D",
- "image": "00ae-fe0f.png",
- "sheet_x": 0,
- "sheet_y": 13,
- "short_name": "registered",
- "short_names": ["registered"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 130,
- "added_in": "1.1",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- },
- "flag-kh": {
- "char": "\ud83c\uddf0\ud83c\udded",
- "key": "flag-kh",
- "keywords": ["flag-kh", "Cambodia Flag"],
- "category": "flags",
- "lib": {
- "name": "Cambodia Flag",
- "unified": "1F1F0-1F1ED",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1f0-1f1ed.png",
- "sheet_x": 2,
- "sheet_y": 47,
- "short_name": "flag-kh",
- "short_names": ["flag-kh"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 130,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "male-judge": {
- "char": "\ud83d\udc68\u200d\u2696\ufe0f",
- "key": "male-judge",
- "keywords": ["male-judge", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F468-200D-2696-FE0F",
- "non_qualified": "1F468-200D-2696",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f468-200d-2696-fe0f.png",
- "sheet_x": 18,
- "sheet_y": 4,
- "short_name": "male-judge",
- "short_names": ["male-judge"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 130,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F468-1F3FB-200D-2696-FE0F",
- "non_qualified": "1F468-1F3FB-200D-2696",
- "image": "1f468-1f3fb-200d-2696-fe0f.png",
- "sheet_x": 18,
- "sheet_y": 5,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F468-1F3FC-200D-2696-FE0F",
- "non_qualified": "1F468-1F3FC-200D-2696",
- "image": "1f468-1f3fc-200d-2696-fe0f.png",
- "sheet_x": 18,
- "sheet_y": 6,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F468-1F3FD-200D-2696-FE0F",
- "non_qualified": "1F468-1F3FD-200D-2696",
- "image": "1f468-1f3fd-200d-2696-fe0f.png",
- "sheet_x": 18,
- "sheet_y": 7,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F468-1F3FE-200D-2696-FE0F",
- "non_qualified": "1F468-1F3FE-200D-2696",
- "image": "1f468-1f3fe-200d-2696-fe0f.png",
- "sheet_x": 18,
- "sheet_y": 8,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F468-1F3FF-200D-2696-FE0F",
- "non_qualified": "1F468-1F3FF-200D-2696",
- "image": "1f468-1f3ff-200d-2696-fe0f.png",
- "sheet_x": 18,
- "sheet_y": 9,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- }
- }
- },
- "lock": {
- "char": "\ud83d\udd12",
- "key": "lock",
- "keywords": ["lock", "LOCK"],
- "category": "objects",
- "lib": {
- "name": "LOCK",
- "unified": "1F512",
- "non_qualified": null,
- "docomo": "E6D9",
- "au": "E51C",
- "softbank": "E144",
- "google": "FEB86",
- "image": "1f512.png",
- "sheet_x": 27,
- "sheet_y": 42,
- "short_name": "lock",
- "short_names": ["lock"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 130,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "alarm_clock": {
- "char": "\u23f0",
- "key": "alarm_clock",
- "keywords": ["alarm_clock", "ALARM CLOCK"],
- "category": "travel_and_places",
- "lib": {
- "name": "ALARM CLOCK",
- "unified": "23F0",
- "non_qualified": null,
- "docomo": "E6BA",
- "au": "E594",
- "softbank": null,
- "google": "FE02A",
- "image": "23f0.png",
- "sheet_x": 48,
- "sheet_y": 43,
- "short_name": "alarm_clock",
- "short_names": ["alarm_clock"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 130,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "flag-ki": {
- "char": "\ud83c\uddf0\ud83c\uddee",
- "key": "flag-ki",
- "keywords": ["flag-ki", "Kiribati Flag"],
- "category": "flags",
- "lib": {
- "name": "Kiribati Flag",
- "unified": "1F1F0-1F1EE",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1f0-1f1ee.png",
- "sheet_x": 2,
- "sheet_y": 48,
- "short_name": "flag-ki",
- "short_names": ["flag-ki"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 131,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "female-judge": {
- "char": "\ud83d\udc69\u200d\u2696\ufe0f",
- "key": "female-judge",
- "keywords": ["female-judge", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F469-200D-2696-FE0F",
- "non_qualified": "1F469-200D-2696",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f469-200d-2696-fe0f.png",
- "sheet_x": 20,
- "sheet_y": 36,
- "short_name": "female-judge",
- "short_names": ["female-judge"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 131,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F469-1F3FB-200D-2696-FE0F",
- "non_qualified": "1F469-1F3FB-200D-2696",
- "image": "1f469-1f3fb-200d-2696-fe0f.png",
- "sheet_x": 20,
- "sheet_y": 37,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F469-1F3FC-200D-2696-FE0F",
- "non_qualified": "1F469-1F3FC-200D-2696",
- "image": "1f469-1f3fc-200d-2696-fe0f.png",
- "sheet_x": 20,
- "sheet_y": 38,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F469-1F3FD-200D-2696-FE0F",
- "non_qualified": "1F469-1F3FD-200D-2696",
- "image": "1f469-1f3fd-200d-2696-fe0f.png",
- "sheet_x": 20,
- "sheet_y": 39,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F469-1F3FE-200D-2696-FE0F",
- "non_qualified": "1F469-1F3FE-200D-2696",
- "image": "1f469-1f3fe-200d-2696-fe0f.png",
- "sheet_x": 20,
- "sheet_y": 40,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F469-1F3FF-200D-2696-FE0F",
- "non_qualified": "1F469-1F3FF-200D-2696",
- "image": "1f469-1f3ff-200d-2696-fe0f.png",
- "sheet_x": 20,
- "sheet_y": 41,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- }
- }
- },
- "unlock": {
- "char": "\ud83d\udd13",
- "key": "unlock",
- "keywords": ["unlock", "OPEN LOCK"],
- "category": "objects",
- "lib": {
- "name": "OPEN LOCK",
- "unified": "1F513",
- "non_qualified": null,
- "docomo": "E6D9",
- "au": "E51C",
- "softbank": "E145",
- "google": "FEB87",
- "image": "1f513.png",
- "sheet_x": 27,
- "sheet_y": 43,
- "short_name": "unlock",
- "short_names": ["unlock"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 131,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "tm": {
- "char": "\u2122\ufe0f",
- "key": "tm",
- "keywords": ["tm", "TRADE MARK SIGN"],
- "category": "symbols",
- "lib": {
- "name": "TRADE MARK SIGN",
- "unified": "2122-FE0F",
- "non_qualified": "2122",
- "docomo": "E732",
- "au": "E54E",
- "softbank": "E537",
- "google": "FEB2A",
- "image": "2122-fe0f.png",
- "sheet_x": 48,
- "sheet_y": 22,
- "short_name": "tm",
- "short_names": ["tm"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 131,
- "added_in": "1.1",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "stopwatch": {
- "char": "\u23f1\ufe0f",
- "key": "stopwatch",
- "keywords": ["stopwatch", ""],
- "category": "travel_and_places",
- "lib": {
- "name": null,
- "unified": "23F1-FE0F",
- "non_qualified": "23F1",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "23f1-fe0f.png",
- "sheet_x": 48,
- "sheet_y": 44,
- "short_name": "stopwatch",
- "short_names": ["stopwatch"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 131,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "hash": {
- "char": "#\ufe0f\u20e3",
- "key": "hash",
- "keywords": ["hash", "HASH KEY"],
- "category": "symbols",
- "lib": {
- "name": "HASH KEY",
- "unified": "0023-FE0F-20E3",
- "non_qualified": "0023-20E3",
- "docomo": "E6E0",
- "au": "EB84",
- "softbank": "E210",
- "google": "FE82C",
- "image": "0023-fe0f-20e3.png",
- "sheet_x": 0,
- "sheet_y": 0,
- "short_name": "hash",
- "short_names": ["hash"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 132,
- "added_in": "3.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- },
- "flag-km": {
- "char": "\ud83c\uddf0\ud83c\uddf2",
- "key": "flag-km",
- "keywords": ["flag-km", "Comoros Flag"],
- "category": "flags",
- "lib": {
- "name": "Comoros Flag",
- "unified": "1F1F0-1F1F2",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1f0-1f1f2.png",
- "sheet_x": 2,
- "sheet_y": 49,
- "short_name": "flag-km",
- "short_names": ["flag-km"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 132,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "male-farmer": {
- "char": "\ud83d\udc68\u200d\ud83c\udf3e",
- "key": "male-farmer",
- "keywords": ["male-farmer", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F468-200D-1F33E",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f468-200d-1f33e.png",
- "sheet_x": 15,
- "sheet_y": 40,
- "short_name": "male-farmer",
- "short_names": ["male-farmer"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 132,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F468-1F3FB-200D-1F33E",
- "non_qualified": null,
- "image": "1f468-1f3fb-200d-1f33e.png",
- "sheet_x": 15,
- "sheet_y": 41,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F468-1F3FC-200D-1F33E",
- "non_qualified": null,
- "image": "1f468-1f3fc-200d-1f33e.png",
- "sheet_x": 15,
- "sheet_y": 42,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F468-1F3FD-200D-1F33E",
- "non_qualified": null,
- "image": "1f468-1f3fd-200d-1f33e.png",
- "sheet_x": 15,
- "sheet_y": 43,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F468-1F3FE-200D-1F33E",
- "non_qualified": null,
- "image": "1f468-1f3fe-200d-1f33e.png",
- "sheet_x": 15,
- "sheet_y": 44,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F468-1F3FF-200D-1F33E",
- "non_qualified": null,
- "image": "1f468-1f3ff-200d-1f33e.png",
- "sheet_x": 15,
- "sheet_y": 45,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- }
- }
- },
- "lock_with_ink_pen": {
- "char": "\ud83d\udd0f",
- "key": "lock_with_ink_pen",
- "keywords": ["lock_with_ink_pen", "LOCK WITH INK PEN"],
- "category": "objects",
- "lib": {
- "name": "LOCK WITH INK PEN",
- "unified": "1F50F",
- "non_qualified": null,
- "docomo": "E6D9",
- "au": "EB0C",
- "softbank": null,
- "google": "FEB90",
- "image": "1f50f.png",
- "sheet_x": 27,
- "sheet_y": 39,
- "short_name": "lock_with_ink_pen",
- "short_names": ["lock_with_ink_pen"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 132,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "timer_clock": {
- "char": "\u23f2\ufe0f",
- "key": "timer_clock",
- "keywords": ["timer_clock", ""],
- "category": "travel_and_places",
- "lib": {
- "name": null,
- "unified": "23F2-FE0F",
- "non_qualified": "23F2",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "23f2-fe0f.png",
- "sheet_x": 48,
- "sheet_y": 45,
- "short_name": "timer_clock",
- "short_names": ["timer_clock"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 132,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "keycap_star": {
- "char": "*\ufe0f\u20e3",
- "key": "keycap_star",
- "keywords": ["keycap_star", ""],
- "category": "symbols",
- "lib": {
- "name": null,
- "unified": "002A-FE0F-20E3",
- "non_qualified": "002A-20E3",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "002a-fe0f-20e3.png",
- "sheet_x": 0,
- "sheet_y": 1,
- "short_name": "keycap_star",
- "short_names": ["keycap_star"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 133,
- "added_in": "3.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- },
- "flag-kn": {
- "char": "\ud83c\uddf0\ud83c\uddf3",
- "key": "flag-kn",
- "keywords": ["flag-kn", "St. Kitts & Nevis Flag"],
- "category": "flags",
- "lib": {
- "name": "St. Kitts & Nevis Flag",
- "unified": "1F1F0-1F1F3",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1f0-1f1f3.png",
- "sheet_x": 2,
- "sheet_y": 50,
- "short_name": "flag-kn",
- "short_names": ["flag-kn"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 133,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "female-farmer": {
- "char": "\ud83d\udc69\u200d\ud83c\udf3e",
- "key": "female-farmer",
- "keywords": ["female-farmer", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F469-200D-1F33E",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f469-200d-1f33e.png",
- "sheet_x": 18,
- "sheet_y": 24,
- "short_name": "female-farmer",
- "short_names": ["female-farmer"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 133,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F469-1F3FB-200D-1F33E",
- "non_qualified": null,
- "image": "1f469-1f3fb-200d-1f33e.png",
- "sheet_x": 18,
- "sheet_y": 25,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F469-1F3FC-200D-1F33E",
- "non_qualified": null,
- "image": "1f469-1f3fc-200d-1f33e.png",
- "sheet_x": 18,
- "sheet_y": 26,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F469-1F3FD-200D-1F33E",
- "non_qualified": null,
- "image": "1f469-1f3fd-200d-1f33e.png",
- "sheet_x": 18,
- "sheet_y": 27,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F469-1F3FE-200D-1F33E",
- "non_qualified": null,
- "image": "1f469-1f3fe-200d-1f33e.png",
- "sheet_x": 18,
- "sheet_y": 28,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F469-1F3FF-200D-1F33E",
- "non_qualified": null,
- "image": "1f469-1f3ff-200d-1f33e.png",
- "sheet_x": 18,
- "sheet_y": 29,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- }
- }
- },
- "closed_lock_with_key": {
- "char": "\ud83d\udd10",
- "key": "closed_lock_with_key",
- "keywords": ["closed_lock_with_key", "CLOSED LOCK WITH KEY"],
- "category": "objects",
- "lib": {
- "name": "CLOSED LOCK WITH KEY",
- "unified": "1F510",
- "non_qualified": null,
- "docomo": "E6D9",
- "au": "EAFC",
- "softbank": null,
- "google": "FEB8A",
- "image": "1f510.png",
- "sheet_x": 27,
- "sheet_y": 40,
- "short_name": "closed_lock_with_key",
- "short_names": ["closed_lock_with_key"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 133,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "mantelpiece_clock": {
- "char": "\ud83d\udd70\ufe0f",
- "key": "mantelpiece_clock",
- "keywords": ["mantelpiece_clock", ""],
- "category": "travel_and_places",
- "lib": {
- "name": null,
- "unified": "1F570-FE0F",
- "non_qualified": "1F570",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f570-fe0f.png",
- "sheet_x": 29,
- "sheet_y": 11,
- "short_name": "mantelpiece_clock",
- "short_names": ["mantelpiece_clock"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 133,
- "added_in": "7.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "zero": {
- "char": "0\ufe0f\u20e3",
- "key": "zero",
- "keywords": ["zero", "KEYCAP 0"],
- "category": "symbols",
- "lib": {
- "name": "KEYCAP 0",
- "unified": "0030-FE0F-20E3",
- "non_qualified": "0030-20E3",
- "docomo": "E6EB",
- "au": "E5AC",
- "softbank": "E225",
- "google": "FE837",
- "image": "0030-fe0f-20e3.png",
- "sheet_x": 0,
- "sheet_y": 2,
- "short_name": "zero",
- "short_names": ["zero"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 134,
- "added_in": "3.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- },
- "flag-kp": {
- "char": "\ud83c\uddf0\ud83c\uddf5",
- "key": "flag-kp",
- "keywords": ["flag-kp", "North Korea Flag"],
- "category": "flags",
- "lib": {
- "name": "North Korea Flag",
- "unified": "1F1F0-1F1F5",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1f0-1f1f5.png",
- "sheet_x": 2,
- "sheet_y": 51,
- "short_name": "flag-kp",
- "short_names": ["flag-kp"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 134,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "male-cook": {
- "char": "\ud83d\udc68\u200d\ud83c\udf73",
- "key": "male-cook",
- "keywords": ["male-cook", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F468-200D-1F373",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f468-200d-1f373.png",
- "sheet_x": 15,
- "sheet_y": 46,
- "short_name": "male-cook",
- "short_names": ["male-cook"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 134,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F468-1F3FB-200D-1F373",
- "non_qualified": null,
- "image": "1f468-1f3fb-200d-1f373.png",
- "sheet_x": 15,
- "sheet_y": 47,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F468-1F3FC-200D-1F373",
- "non_qualified": null,
- "image": "1f468-1f3fc-200d-1f373.png",
- "sheet_x": 15,
- "sheet_y": 48,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F468-1F3FD-200D-1F373",
- "non_qualified": null,
- "image": "1f468-1f3fd-200d-1f373.png",
- "sheet_x": 15,
- "sheet_y": 49,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F468-1F3FE-200D-1F373",
- "non_qualified": null,
- "image": "1f468-1f3fe-200d-1f373.png",
- "sheet_x": 15,
- "sheet_y": 50,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F468-1F3FF-200D-1F373",
- "non_qualified": null,
- "image": "1f468-1f3ff-200d-1f373.png",
- "sheet_x": 15,
- "sheet_y": 51,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- }
- }
- },
- "key": {
- "char": "\ud83d\udd11",
- "key": "key",
- "keywords": ["key", "KEY"],
- "category": "objects",
- "lib": {
- "name": "KEY",
- "unified": "1F511",
- "non_qualified": null,
- "docomo": "E6D9",
- "au": "E519",
- "softbank": "E03F",
- "google": "FEB82",
- "image": "1f511.png",
- "sheet_x": 27,
- "sheet_y": 41,
- "short_name": "key",
- "short_names": ["key"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 134,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "clock12": {
- "char": "\ud83d\udd5b",
- "key": "clock12",
- "keywords": ["clock12", "CLOCK FACE TWELVE OCLOCK"],
- "category": "travel_and_places",
- "lib": {
- "name": "CLOCK FACE TWELVE OCLOCK",
- "unified": "1F55B",
- "non_qualified": null,
- "docomo": "E6BA",
- "au": "E594",
- "softbank": "E02F",
- "google": "FE029",
- "image": "1f55b.png",
- "sheet_x": 28,
- "sheet_y": 50,
- "short_name": "clock12",
- "short_names": ["clock12"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 134,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "one": {
- "char": "1\ufe0f\u20e3",
- "key": "one",
- "keywords": ["one", "KEYCAP 1"],
- "category": "symbols",
- "lib": {
- "name": "KEYCAP 1",
- "unified": "0031-FE0F-20E3",
- "non_qualified": "0031-20E3",
- "docomo": "E6E2",
- "au": "E522",
- "softbank": "E21C",
- "google": "FE82E",
- "image": "0031-fe0f-20e3.png",
- "sheet_x": 0,
- "sheet_y": 3,
- "short_name": "one",
- "short_names": ["one"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 135,
- "added_in": "3.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- },
- "kr": {
- "char": "\ud83c\uddf0\ud83c\uddf7",
- "key": "kr",
- "keywords": ["kr", "South Korea Flag"],
- "category": "flags",
- "lib": {
- "name": "South Korea Flag",
- "unified": "1F1F0-1F1F7",
- "non_qualified": null,
- "docomo": null,
- "au": "EB12",
- "softbank": "E514",
- "google": "FE4EE",
- "image": "1f1f0-1f1f7.png",
- "sheet_x": 2,
- "sheet_y": 52,
- "short_name": "kr",
- "short_names": ["kr", "flag-kr"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 135,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "female-cook": {
- "char": "\ud83d\udc69\u200d\ud83c\udf73",
- "key": "female-cook",
- "keywords": ["female-cook", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F469-200D-1F373",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f469-200d-1f373.png",
- "sheet_x": 18,
- "sheet_y": 30,
- "short_name": "female-cook",
- "short_names": ["female-cook"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 135,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F469-1F3FB-200D-1F373",
- "non_qualified": null,
- "image": "1f469-1f3fb-200d-1f373.png",
- "sheet_x": 18,
- "sheet_y": 31,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F469-1F3FC-200D-1F373",
- "non_qualified": null,
- "image": "1f469-1f3fc-200d-1f373.png",
- "sheet_x": 18,
- "sheet_y": 32,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F469-1F3FD-200D-1F373",
- "non_qualified": null,
- "image": "1f469-1f3fd-200d-1f373.png",
- "sheet_x": 18,
- "sheet_y": 33,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F469-1F3FE-200D-1F373",
- "non_qualified": null,
- "image": "1f469-1f3fe-200d-1f373.png",
- "sheet_x": 18,
- "sheet_y": 34,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F469-1F3FF-200D-1F373",
- "non_qualified": null,
- "image": "1f469-1f3ff-200d-1f373.png",
- "sheet_x": 18,
- "sheet_y": 35,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- }
- }
- },
- "clock1230": {
- "char": "\ud83d\udd67",
- "key": "clock1230",
- "keywords": ["clock1230", "CLOCK FACE TWELVE-THIRTY"],
- "category": "travel_and_places",
- "lib": {
- "name": "CLOCK FACE TWELVE-THIRTY",
- "unified": "1F567",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f567.png",
- "sheet_x": 29,
- "sheet_y": 9,
- "short_name": "clock1230",
- "short_names": ["clock1230"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 135,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "old_key": {
- "char": "\ud83d\udddd\ufe0f",
- "key": "old_key",
- "keywords": ["old_key", ""],
- "category": "objects",
- "lib": {
- "name": null,
- "unified": "1F5DD-FE0F",
- "non_qualified": "1F5DD",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f5dd-fe0f.png",
- "sheet_x": 30,
- "sheet_y": 30,
- "short_name": "old_key",
- "short_names": ["old_key"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 135,
- "added_in": "7.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "two": {
- "char": "2\ufe0f\u20e3",
- "key": "two",
- "keywords": ["two", "KEYCAP 2"],
- "category": "symbols",
- "lib": {
- "name": "KEYCAP 2",
- "unified": "0032-FE0F-20E3",
- "non_qualified": "0032-20E3",
- "docomo": "E6E3",
- "au": "E523",
- "softbank": "E21D",
- "google": "FE82F",
- "image": "0032-fe0f-20e3.png",
- "sheet_x": 0,
- "sheet_y": 4,
- "short_name": "two",
- "short_names": ["two"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 136,
- "added_in": "3.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- },
- "flag-kw": {
- "char": "\ud83c\uddf0\ud83c\uddfc",
- "key": "flag-kw",
- "keywords": ["flag-kw", "Kuwait Flag"],
- "category": "flags",
- "lib": {
- "name": "Kuwait Flag",
- "unified": "1F1F0-1F1FC",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1f0-1f1fc.png",
- "sheet_x": 3,
- "sheet_y": 0,
- "short_name": "flag-kw",
- "short_names": ["flag-kw"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 136,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "male-mechanic": {
- "char": "\ud83d\udc68\u200d\ud83d\udd27",
- "key": "male-mechanic",
- "keywords": ["male-mechanic", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F468-200D-1F527",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f468-200d-1f527.png",
- "sheet_x": 17,
- "sheet_y": 3,
- "short_name": "male-mechanic",
- "short_names": ["male-mechanic"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 136,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F468-1F3FB-200D-1F527",
- "non_qualified": null,
- "image": "1f468-1f3fb-200d-1f527.png",
- "sheet_x": 17,
- "sheet_y": 4,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F468-1F3FC-200D-1F527",
- "non_qualified": null,
- "image": "1f468-1f3fc-200d-1f527.png",
- "sheet_x": 17,
- "sheet_y": 5,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F468-1F3FD-200D-1F527",
- "non_qualified": null,
- "image": "1f468-1f3fd-200d-1f527.png",
- "sheet_x": 17,
- "sheet_y": 6,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F468-1F3FE-200D-1F527",
- "non_qualified": null,
- "image": "1f468-1f3fe-200d-1f527.png",
- "sheet_x": 17,
- "sheet_y": 7,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F468-1F3FF-200D-1F527",
- "non_qualified": null,
- "image": "1f468-1f3ff-200d-1f527.png",
- "sheet_x": 17,
- "sheet_y": 8,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- }
- }
- },
- "hammer": {
- "char": "\ud83d\udd28",
- "key": "hammer",
- "keywords": ["hammer", "HAMMER"],
- "category": "objects",
- "lib": {
- "name": "HAMMER",
- "unified": "1F528",
- "non_qualified": null,
- "docomo": null,
- "au": "E5CB",
- "softbank": "E116",
- "google": "FE4CA",
- "image": "1f528.png",
- "sheet_x": 28,
- "sheet_y": 11,
- "short_name": "hammer",
- "short_names": ["hammer"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 136,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "clock1": {
- "char": "\ud83d\udd50",
- "key": "clock1",
- "keywords": ["clock1", "CLOCK FACE ONE OCLOCK"],
- "category": "travel_and_places",
- "lib": {
- "name": "CLOCK FACE ONE OCLOCK",
- "unified": "1F550",
- "non_qualified": null,
- "docomo": "E6BA",
- "au": "E594",
- "softbank": "E024",
- "google": "FE01E",
- "image": "1f550.png",
- "sheet_x": 28,
- "sheet_y": 39,
- "short_name": "clock1",
- "short_names": ["clock1"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 136,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "three": {
- "char": "3\ufe0f\u20e3",
- "key": "three",
- "keywords": ["three", "KEYCAP 3"],
- "category": "symbols",
- "lib": {
- "name": "KEYCAP 3",
- "unified": "0033-FE0F-20E3",
- "non_qualified": "0033-20E3",
- "docomo": "E6E4",
- "au": "E524",
- "softbank": "E21E",
- "google": "FE830",
- "image": "0033-fe0f-20e3.png",
- "sheet_x": 0,
- "sheet_y": 5,
- "short_name": "three",
- "short_names": ["three"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 137,
- "added_in": "3.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- },
- "flag-ky": {
- "char": "\ud83c\uddf0\ud83c\uddfe",
- "key": "flag-ky",
- "keywords": ["flag-ky", "Cayman Islands Flag"],
- "category": "flags",
- "lib": {
- "name": "Cayman Islands Flag",
- "unified": "1F1F0-1F1FE",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1f0-1f1fe.png",
- "sheet_x": 3,
- "sheet_y": 1,
- "short_name": "flag-ky",
- "short_names": ["flag-ky"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 137,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "female-mechanic": {
- "char": "\ud83d\udc69\u200d\ud83d\udd27",
- "key": "female-mechanic",
- "keywords": ["female-mechanic", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F469-200D-1F527",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f469-200d-1f527.png",
- "sheet_x": 19,
- "sheet_y": 35,
- "short_name": "female-mechanic",
- "short_names": ["female-mechanic"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 137,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F469-1F3FB-200D-1F527",
- "non_qualified": null,
- "image": "1f469-1f3fb-200d-1f527.png",
- "sheet_x": 19,
- "sheet_y": 36,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F469-1F3FC-200D-1F527",
- "non_qualified": null,
- "image": "1f469-1f3fc-200d-1f527.png",
- "sheet_x": 19,
- "sheet_y": 37,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F469-1F3FD-200D-1F527",
- "non_qualified": null,
- "image": "1f469-1f3fd-200d-1f527.png",
- "sheet_x": 19,
- "sheet_y": 38,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F469-1F3FE-200D-1F527",
- "non_qualified": null,
- "image": "1f469-1f3fe-200d-1f527.png",
- "sheet_x": 19,
- "sheet_y": 39,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F469-1F3FF-200D-1F527",
- "non_qualified": null,
- "image": "1f469-1f3ff-200d-1f527.png",
- "sheet_x": 19,
- "sheet_y": 40,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- }
- }
- },
- "clock130": {
- "char": "\ud83d\udd5c",
- "key": "clock130",
- "keywords": ["clock130", "CLOCK FACE ONE-THIRTY"],
- "category": "travel_and_places",
- "lib": {
- "name": "CLOCK FACE ONE-THIRTY",
- "unified": "1F55C",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f55c.png",
- "sheet_x": 28,
- "sheet_y": 51,
- "short_name": "clock130",
- "short_names": ["clock130"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 137,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "pick": {
- "char": "\u26cf\ufe0f",
- "key": "pick",
- "keywords": ["pick", ""],
- "category": "objects",
- "lib": {
- "name": null,
- "unified": "26CF-FE0F",
- "non_qualified": "26CF",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "26cf-fe0f.png",
- "sheet_x": 50,
- "sheet_y": 23,
- "short_name": "pick",
- "short_names": ["pick"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 137,
- "added_in": "5.2",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "four": {
- "char": "4\ufe0f\u20e3",
- "key": "four",
- "keywords": ["four", "KEYCAP 4"],
- "category": "symbols",
- "lib": {
- "name": "KEYCAP 4",
- "unified": "0034-FE0F-20E3",
- "non_qualified": "0034-20E3",
- "docomo": "E6E5",
- "au": "E525",
- "softbank": "E21F",
- "google": "FE831",
- "image": "0034-fe0f-20e3.png",
- "sheet_x": 0,
- "sheet_y": 6,
- "short_name": "four",
- "short_names": ["four"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 138,
- "added_in": "3.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- },
- "flag-kz": {
- "char": "\ud83c\uddf0\ud83c\uddff",
- "key": "flag-kz",
- "keywords": ["flag-kz", "Kazakhstan Flag"],
- "category": "flags",
- "lib": {
- "name": "Kazakhstan Flag",
- "unified": "1F1F0-1F1FF",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1f0-1f1ff.png",
- "sheet_x": 3,
- "sheet_y": 2,
- "short_name": "flag-kz",
- "short_names": ["flag-kz"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 138,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "male-factory-worker": {
- "char": "\ud83d\udc68\u200d\ud83c\udfed",
- "key": "male-factory-worker",
- "keywords": ["male-factory-worker", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F468-200D-1F3ED",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f468-200d-1f3ed.png",
- "sheet_x": 16,
- "sheet_y": 23,
- "short_name": "male-factory-worker",
- "short_names": ["male-factory-worker"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 138,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F468-1F3FB-200D-1F3ED",
- "non_qualified": null,
- "image": "1f468-1f3fb-200d-1f3ed.png",
- "sheet_x": 16,
- "sheet_y": 24,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F468-1F3FC-200D-1F3ED",
- "non_qualified": null,
- "image": "1f468-1f3fc-200d-1f3ed.png",
- "sheet_x": 16,
- "sheet_y": 25,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F468-1F3FD-200D-1F3ED",
- "non_qualified": null,
- "image": "1f468-1f3fd-200d-1f3ed.png",
- "sheet_x": 16,
- "sheet_y": 26,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F468-1F3FE-200D-1F3ED",
- "non_qualified": null,
- "image": "1f468-1f3fe-200d-1f3ed.png",
- "sheet_x": 16,
- "sheet_y": 27,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F468-1F3FF-200D-1F3ED",
- "non_qualified": null,
- "image": "1f468-1f3ff-200d-1f3ed.png",
- "sheet_x": 16,
- "sheet_y": 28,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- }
- }
- },
- "clock2": {
- "char": "\ud83d\udd51",
- "key": "clock2",
- "keywords": ["clock2", "CLOCK FACE TWO OCLOCK"],
- "category": "travel_and_places",
- "lib": {
- "name": "CLOCK FACE TWO OCLOCK",
- "unified": "1F551",
- "non_qualified": null,
- "docomo": "E6BA",
- "au": "E594",
- "softbank": "E025",
- "google": "FE01F",
- "image": "1f551.png",
- "sheet_x": 28,
- "sheet_y": 40,
- "short_name": "clock2",
- "short_names": ["clock2"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 138,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "hammer_and_pick": {
- "char": "\u2692\ufe0f",
- "key": "hammer_and_pick",
- "keywords": ["hammer_and_pick", ""],
- "category": "objects",
- "lib": {
- "name": null,
- "unified": "2692-FE0F",
- "non_qualified": "2692",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "2692-fe0f.png",
- "sheet_x": 50,
- "sheet_y": 2,
- "short_name": "hammer_and_pick",
- "short_names": ["hammer_and_pick"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 138,
- "added_in": "4.1",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "five": {
- "char": "5\ufe0f\u20e3",
- "key": "five",
- "keywords": ["five", "KEYCAP 5"],
- "category": "symbols",
- "lib": {
- "name": "KEYCAP 5",
- "unified": "0035-FE0F-20E3",
- "non_qualified": "0035-20E3",
- "docomo": "E6E6",
- "au": "E526",
- "softbank": "E220",
- "google": "FE832",
- "image": "0035-fe0f-20e3.png",
- "sheet_x": 0,
- "sheet_y": 7,
- "short_name": "five",
- "short_names": ["five"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 139,
- "added_in": "3.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- },
- "flag-la": {
- "char": "\ud83c\uddf1\ud83c\udde6",
- "key": "flag-la",
- "keywords": ["flag-la", "Laos Flag"],
- "category": "flags",
- "lib": {
- "name": "Laos Flag",
- "unified": "1F1F1-1F1E6",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1f1-1f1e6.png",
- "sheet_x": 3,
- "sheet_y": 3,
- "short_name": "flag-la",
- "short_names": ["flag-la"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 139,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "female-factory-worker": {
- "char": "\ud83d\udc69\u200d\ud83c\udfed",
- "key": "female-factory-worker",
- "keywords": ["female-factory-worker", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F469-200D-1F3ED",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f469-200d-1f3ed.png",
- "sheet_x": 19,
- "sheet_y": 7,
- "short_name": "female-factory-worker",
- "short_names": ["female-factory-worker"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 139,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F469-1F3FB-200D-1F3ED",
- "non_qualified": null,
- "image": "1f469-1f3fb-200d-1f3ed.png",
- "sheet_x": 19,
- "sheet_y": 8,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F469-1F3FC-200D-1F3ED",
- "non_qualified": null,
- "image": "1f469-1f3fc-200d-1f3ed.png",
- "sheet_x": 19,
- "sheet_y": 9,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F469-1F3FD-200D-1F3ED",
- "non_qualified": null,
- "image": "1f469-1f3fd-200d-1f3ed.png",
- "sheet_x": 19,
- "sheet_y": 10,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F469-1F3FE-200D-1F3ED",
- "non_qualified": null,
- "image": "1f469-1f3fe-200d-1f3ed.png",
- "sheet_x": 19,
- "sheet_y": 11,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F469-1F3FF-200D-1F3ED",
- "non_qualified": null,
- "image": "1f469-1f3ff-200d-1f3ed.png",
- "sheet_x": 19,
- "sheet_y": 12,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- }
- }
- },
- "clock230": {
- "char": "\ud83d\udd5d",
- "key": "clock230",
- "keywords": ["clock230", "CLOCK FACE TWO-THIRTY"],
- "category": "travel_and_places",
- "lib": {
- "name": "CLOCK FACE TWO-THIRTY",
- "unified": "1F55D",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f55d.png",
- "sheet_x": 28,
- "sheet_y": 52,
- "short_name": "clock230",
- "short_names": ["clock230"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 139,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "hammer_and_wrench": {
- "char": "\ud83d\udee0\ufe0f",
- "key": "hammer_and_wrench",
- "keywords": ["hammer_and_wrench", ""],
- "category": "objects",
- "lib": {
- "name": null,
- "unified": "1F6E0-FE0F",
- "non_qualified": "1F6E0",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f6e0-fe0f.png",
- "sheet_x": 37,
- "sheet_y": 20,
- "short_name": "hammer_and_wrench",
- "short_names": ["hammer_and_wrench"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 139,
- "added_in": "7.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "six": {
- "char": "6\ufe0f\u20e3",
- "key": "six",
- "keywords": ["six", "KEYCAP 6"],
- "category": "symbols",
- "lib": {
- "name": "KEYCAP 6",
- "unified": "0036-FE0F-20E3",
- "non_qualified": "0036-20E3",
- "docomo": "E6E7",
- "au": "E527",
- "softbank": "E221",
- "google": "FE833",
- "image": "0036-fe0f-20e3.png",
- "sheet_x": 0,
- "sheet_y": 8,
- "short_name": "six",
- "short_names": ["six"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 140,
- "added_in": "3.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- },
- "flag-lb": {
- "char": "\ud83c\uddf1\ud83c\udde7",
- "key": "flag-lb",
- "keywords": ["flag-lb", "Lebanon Flag"],
- "category": "flags",
- "lib": {
- "name": "Lebanon Flag",
- "unified": "1F1F1-1F1E7",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1f1-1f1e7.png",
- "sheet_x": 3,
- "sheet_y": 4,
- "short_name": "flag-lb",
- "short_names": ["flag-lb"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 140,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "male-office-worker": {
- "char": "\ud83d\udc68\u200d\ud83d\udcbc",
- "key": "male-office-worker",
- "keywords": ["male-office-worker", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F468-200D-1F4BC",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f468-200d-1f4bc.png",
- "sheet_x": 16,
- "sheet_y": 50,
- "short_name": "male-office-worker",
- "short_names": ["male-office-worker"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 140,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F468-1F3FB-200D-1F4BC",
- "non_qualified": null,
- "image": "1f468-1f3fb-200d-1f4bc.png",
- "sheet_x": 16,
- "sheet_y": 51,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F468-1F3FC-200D-1F4BC",
- "non_qualified": null,
- "image": "1f468-1f3fc-200d-1f4bc.png",
- "sheet_x": 16,
- "sheet_y": 52,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F468-1F3FD-200D-1F4BC",
- "non_qualified": null,
- "image": "1f468-1f3fd-200d-1f4bc.png",
- "sheet_x": 17,
- "sheet_y": 0,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F468-1F3FE-200D-1F4BC",
- "non_qualified": null,
- "image": "1f468-1f3fe-200d-1f4bc.png",
- "sheet_x": 17,
- "sheet_y": 1,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F468-1F3FF-200D-1F4BC",
- "non_qualified": null,
- "image": "1f468-1f3ff-200d-1f4bc.png",
- "sheet_x": 17,
- "sheet_y": 2,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- }
- }
- },
- "clock3": {
- "char": "\ud83d\udd52",
- "key": "clock3",
- "keywords": ["clock3", "CLOCK FACE THREE OCLOCK"],
- "category": "travel_and_places",
- "lib": {
- "name": "CLOCK FACE THREE OCLOCK",
- "unified": "1F552",
- "non_qualified": null,
- "docomo": "E6BA",
- "au": "E594",
- "softbank": "E026",
- "google": "FE020",
- "image": "1f552.png",
- "sheet_x": 28,
- "sheet_y": 41,
- "short_name": "clock3",
- "short_names": ["clock3"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 140,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "dagger_knife": {
- "char": "\ud83d\udde1\ufe0f",
- "key": "dagger_knife",
- "keywords": ["dagger_knife", ""],
- "category": "objects",
- "lib": {
- "name": null,
- "unified": "1F5E1-FE0F",
- "non_qualified": "1F5E1",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f5e1-fe0f.png",
- "sheet_x": 30,
- "sheet_y": 32,
- "short_name": "dagger_knife",
- "short_names": ["dagger_knife"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 140,
- "added_in": "7.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "seven": {
- "char": "7\ufe0f\u20e3",
- "key": "seven",
- "keywords": ["seven", "KEYCAP 7"],
- "category": "symbols",
- "lib": {
- "name": "KEYCAP 7",
- "unified": "0037-FE0F-20E3",
- "non_qualified": "0037-20E3",
- "docomo": "E6E8",
- "au": "E528",
- "softbank": "E222",
- "google": "FE834",
- "image": "0037-fe0f-20e3.png",
- "sheet_x": 0,
- "sheet_y": 9,
- "short_name": "seven",
- "short_names": ["seven"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 141,
- "added_in": "3.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- },
- "flag-lc": {
- "char": "\ud83c\uddf1\ud83c\udde8",
- "key": "flag-lc",
- "keywords": ["flag-lc", "St. Lucia Flag"],
- "category": "flags",
- "lib": {
- "name": "St. Lucia Flag",
- "unified": "1F1F1-1F1E8",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1f1-1f1e8.png",
- "sheet_x": 3,
- "sheet_y": 5,
- "short_name": "flag-lc",
- "short_names": ["flag-lc"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 141,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "female-office-worker": {
- "char": "\ud83d\udc69\u200d\ud83d\udcbc",
- "key": "female-office-worker",
- "keywords": ["female-office-worker", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F469-200D-1F4BC",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f469-200d-1f4bc.png",
- "sheet_x": 19,
- "sheet_y": 29,
- "short_name": "female-office-worker",
- "short_names": ["female-office-worker"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 141,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F469-1F3FB-200D-1F4BC",
- "non_qualified": null,
- "image": "1f469-1f3fb-200d-1f4bc.png",
- "sheet_x": 19,
- "sheet_y": 30,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F469-1F3FC-200D-1F4BC",
- "non_qualified": null,
- "image": "1f469-1f3fc-200d-1f4bc.png",
- "sheet_x": 19,
- "sheet_y": 31,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F469-1F3FD-200D-1F4BC",
- "non_qualified": null,
- "image": "1f469-1f3fd-200d-1f4bc.png",
- "sheet_x": 19,
- "sheet_y": 32,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F469-1F3FE-200D-1F4BC",
- "non_qualified": null,
- "image": "1f469-1f3fe-200d-1f4bc.png",
- "sheet_x": 19,
- "sheet_y": 33,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F469-1F3FF-200D-1F4BC",
- "non_qualified": null,
- "image": "1f469-1f3ff-200d-1f4bc.png",
- "sheet_x": 19,
- "sheet_y": 34,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- }
- }
- },
- "clock330": {
- "char": "\ud83d\udd5e",
- "key": "clock330",
- "keywords": ["clock330", "CLOCK FACE THREE-THIRTY"],
- "category": "travel_and_places",
- "lib": {
- "name": "CLOCK FACE THREE-THIRTY",
- "unified": "1F55E",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f55e.png",
- "sheet_x": 29,
- "sheet_y": 0,
- "short_name": "clock330",
- "short_names": ["clock330"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 141,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "crossed_swords": {
- "char": "\u2694\ufe0f",
- "key": "crossed_swords",
- "keywords": ["crossed_swords", ""],
- "category": "objects",
- "lib": {
- "name": null,
- "unified": "2694-FE0F",
- "non_qualified": "2694",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "2694-fe0f.png",
- "sheet_x": 50,
- "sheet_y": 4,
- "short_name": "crossed_swords",
- "short_names": ["crossed_swords"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 141,
- "added_in": "4.1",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "eight": {
- "char": "8\ufe0f\u20e3",
- "key": "eight",
- "keywords": ["eight", "KEYCAP 8"],
- "category": "symbols",
- "lib": {
- "name": "KEYCAP 8",
- "unified": "0038-FE0F-20E3",
- "non_qualified": "0038-20E3",
- "docomo": "E6E9",
- "au": "E529",
- "softbank": "E223",
- "google": "FE835",
- "image": "0038-fe0f-20e3.png",
- "sheet_x": 0,
- "sheet_y": 10,
- "short_name": "eight",
- "short_names": ["eight"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 142,
- "added_in": "3.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- },
- "flag-li": {
- "char": "\ud83c\uddf1\ud83c\uddee",
- "key": "flag-li",
- "keywords": ["flag-li", "Liechtenstein Flag"],
- "category": "flags",
- "lib": {
- "name": "Liechtenstein Flag",
- "unified": "1F1F1-1F1EE",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1f1-1f1ee.png",
- "sheet_x": 3,
- "sheet_y": 6,
- "short_name": "flag-li",
- "short_names": ["flag-li"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 142,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "male-scientist": {
- "char": "\ud83d\udc68\u200d\ud83d\udd2c",
- "key": "male-scientist",
- "keywords": ["male-scientist", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F468-200D-1F52C",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f468-200d-1f52c.png",
- "sheet_x": 17,
- "sheet_y": 9,
- "short_name": "male-scientist",
- "short_names": ["male-scientist"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 142,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F468-1F3FB-200D-1F52C",
- "non_qualified": null,
- "image": "1f468-1f3fb-200d-1f52c.png",
- "sheet_x": 17,
- "sheet_y": 10,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F468-1F3FC-200D-1F52C",
- "non_qualified": null,
- "image": "1f468-1f3fc-200d-1f52c.png",
- "sheet_x": 17,
- "sheet_y": 11,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F468-1F3FD-200D-1F52C",
- "non_qualified": null,
- "image": "1f468-1f3fd-200d-1f52c.png",
- "sheet_x": 17,
- "sheet_y": 12,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F468-1F3FE-200D-1F52C",
- "non_qualified": null,
- "image": "1f468-1f3fe-200d-1f52c.png",
- "sheet_x": 17,
- "sheet_y": 13,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F468-1F3FF-200D-1F52C",
- "non_qualified": null,
- "image": "1f468-1f3ff-200d-1f52c.png",
- "sheet_x": 17,
- "sheet_y": 14,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- }
- }
- },
- "gun": {
- "char": "\ud83d\udd2b",
- "key": "gun",
- "keywords": ["gun", "PISTOL"],
- "category": "objects",
- "lib": {
- "name": "PISTOL",
- "unified": "1F52B",
- "non_qualified": null,
- "docomo": null,
- "au": "E50A",
- "softbank": "E113",
- "google": "FE4F5",
- "image": "1f52b.png",
- "sheet_x": 28,
- "sheet_y": 14,
- "short_name": "gun",
- "short_names": ["gun"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 142,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "clock4": {
- "char": "\ud83d\udd53",
- "key": "clock4",
- "keywords": ["clock4", "CLOCK FACE FOUR OCLOCK"],
- "category": "travel_and_places",
- "lib": {
- "name": "CLOCK FACE FOUR OCLOCK",
- "unified": "1F553",
- "non_qualified": null,
- "docomo": "E6BA",
- "au": "E594",
- "softbank": "E027",
- "google": "FE021",
- "image": "1f553.png",
- "sheet_x": 28,
- "sheet_y": 42,
- "short_name": "clock4",
- "short_names": ["clock4"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 142,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "nine": {
- "char": "9\ufe0f\u20e3",
- "key": "nine",
- "keywords": ["nine", "KEYCAP 9"],
- "category": "symbols",
- "lib": {
- "name": "KEYCAP 9",
- "unified": "0039-FE0F-20E3",
- "non_qualified": "0039-20E3",
- "docomo": "E6EA",
- "au": "E52A",
- "softbank": "E224",
- "google": "FE836",
- "image": "0039-fe0f-20e3.png",
- "sheet_x": 0,
- "sheet_y": 11,
- "short_name": "nine",
- "short_names": ["nine"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 143,
- "added_in": "3.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- },
- "flag-lk": {
- "char": "\ud83c\uddf1\ud83c\uddf0",
- "key": "flag-lk",
- "keywords": ["flag-lk", "Sri Lanka Flag"],
- "category": "flags",
- "lib": {
- "name": "Sri Lanka Flag",
- "unified": "1F1F1-1F1F0",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1f1-1f1f0.png",
- "sheet_x": 3,
- "sheet_y": 7,
- "short_name": "flag-lk",
- "short_names": ["flag-lk"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 143,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "bow_and_arrow": {
- "char": "\ud83c\udff9",
- "key": "bow_and_arrow",
- "keywords": ["bow_and_arrow", "BOW AND ARROW"],
- "category": "objects",
- "lib": {
- "name": "BOW AND ARROW",
- "unified": "1F3F9",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f3f9.png",
- "sheet_x": 12,
- "sheet_y": 12,
- "short_name": "bow_and_arrow",
- "short_names": ["bow_and_arrow"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 143,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "female-scientist": {
- "char": "\ud83d\udc69\u200d\ud83d\udd2c",
- "key": "female-scientist",
- "keywords": ["female-scientist", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F469-200D-1F52C",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f469-200d-1f52c.png",
- "sheet_x": 19,
- "sheet_y": 41,
- "short_name": "female-scientist",
- "short_names": ["female-scientist"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 143,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F469-1F3FB-200D-1F52C",
- "non_qualified": null,
- "image": "1f469-1f3fb-200d-1f52c.png",
- "sheet_x": 19,
- "sheet_y": 42,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F469-1F3FC-200D-1F52C",
- "non_qualified": null,
- "image": "1f469-1f3fc-200d-1f52c.png",
- "sheet_x": 19,
- "sheet_y": 43,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F469-1F3FD-200D-1F52C",
- "non_qualified": null,
- "image": "1f469-1f3fd-200d-1f52c.png",
- "sheet_x": 19,
- "sheet_y": 44,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F469-1F3FE-200D-1F52C",
- "non_qualified": null,
- "image": "1f469-1f3fe-200d-1f52c.png",
- "sheet_x": 19,
- "sheet_y": 45,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F469-1F3FF-200D-1F52C",
- "non_qualified": null,
- "image": "1f469-1f3ff-200d-1f52c.png",
- "sheet_x": 19,
- "sheet_y": 46,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- }
- }
- },
- "clock430": {
- "char": "\ud83d\udd5f",
- "key": "clock430",
- "keywords": ["clock430", "CLOCK FACE FOUR-THIRTY"],
- "category": "travel_and_places",
- "lib": {
- "name": "CLOCK FACE FOUR-THIRTY",
- "unified": "1F55F",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f55f.png",
- "sheet_x": 29,
- "sheet_y": 1,
- "short_name": "clock430",
- "short_names": ["clock430"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 143,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "flag-lr": {
- "char": "\ud83c\uddf1\ud83c\uddf7",
- "key": "flag-lr",
- "keywords": ["flag-lr", "Liberia Flag"],
- "category": "flags",
- "lib": {
- "name": "Liberia Flag",
- "unified": "1F1F1-1F1F7",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1f1-1f1f7.png",
- "sheet_x": 3,
- "sheet_y": 8,
- "short_name": "flag-lr",
- "short_names": ["flag-lr"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 144,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "male-technologist": {
- "char": "\ud83d\udc68\u200d\ud83d\udcbb",
- "key": "male-technologist",
- "keywords": ["male-technologist", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F468-200D-1F4BB",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f468-200d-1f4bb.png",
- "sheet_x": 16,
- "sheet_y": 44,
- "short_name": "male-technologist",
- "short_names": ["male-technologist"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 144,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F468-1F3FB-200D-1F4BB",
- "non_qualified": null,
- "image": "1f468-1f3fb-200d-1f4bb.png",
- "sheet_x": 16,
- "sheet_y": 45,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F468-1F3FC-200D-1F4BB",
- "non_qualified": null,
- "image": "1f468-1f3fc-200d-1f4bb.png",
- "sheet_x": 16,
- "sheet_y": 46,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F468-1F3FD-200D-1F4BB",
- "non_qualified": null,
- "image": "1f468-1f3fd-200d-1f4bb.png",
- "sheet_x": 16,
- "sheet_y": 47,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F468-1F3FE-200D-1F4BB",
- "non_qualified": null,
- "image": "1f468-1f3fe-200d-1f4bb.png",
- "sheet_x": 16,
- "sheet_y": 48,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F468-1F3FF-200D-1F4BB",
- "non_qualified": null,
- "image": "1f468-1f3ff-200d-1f4bb.png",
- "sheet_x": 16,
- "sheet_y": 49,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- }
- }
- },
- "keycap_ten": {
- "char": "\ud83d\udd1f",
- "key": "keycap_ten",
- "keywords": ["keycap_ten", "KEYCAP TEN"],
- "category": "symbols",
- "lib": {
- "name": "KEYCAP TEN",
- "unified": "1F51F",
- "non_qualified": null,
- "docomo": null,
- "au": "E52B",
- "softbank": null,
- "google": "FE83B",
- "image": "1f51f.png",
- "sheet_x": 28,
- "sheet_y": 2,
- "short_name": "keycap_ten",
- "short_names": ["keycap_ten"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 144,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "clock5": {
- "char": "\ud83d\udd54",
- "key": "clock5",
- "keywords": ["clock5", "CLOCK FACE FIVE OCLOCK"],
- "category": "travel_and_places",
- "lib": {
- "name": "CLOCK FACE FIVE OCLOCK",
- "unified": "1F554",
- "non_qualified": null,
- "docomo": "E6BA",
- "au": "E594",
- "softbank": "E028",
- "google": "FE022",
- "image": "1f554.png",
- "sheet_x": 28,
- "sheet_y": 43,
- "short_name": "clock5",
- "short_names": ["clock5"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 144,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "shield": {
- "char": "\ud83d\udee1\ufe0f",
- "key": "shield",
- "keywords": ["shield", ""],
- "category": "objects",
- "lib": {
- "name": null,
- "unified": "1F6E1-FE0F",
- "non_qualified": "1F6E1",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f6e1-fe0f.png",
- "sheet_x": 37,
- "sheet_y": 21,
- "short_name": "shield",
- "short_names": ["shield"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 144,
- "added_in": "7.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "flag-ls": {
- "char": "\ud83c\uddf1\ud83c\uddf8",
- "key": "flag-ls",
- "keywords": ["flag-ls", "Lesotho Flag"],
- "category": "flags",
- "lib": {
- "name": "Lesotho Flag",
- "unified": "1F1F1-1F1F8",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1f1-1f1f8.png",
- "sheet_x": 3,
- "sheet_y": 9,
- "short_name": "flag-ls",
- "short_names": ["flag-ls"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 145,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "female-technologist": {
- "char": "\ud83d\udc69\u200d\ud83d\udcbb",
- "key": "female-technologist",
- "keywords": ["female-technologist", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F469-200D-1F4BB",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f469-200d-1f4bb.png",
- "sheet_x": 19,
- "sheet_y": 23,
- "short_name": "female-technologist",
- "short_names": ["female-technologist"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 145,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F469-1F3FB-200D-1F4BB",
- "non_qualified": null,
- "image": "1f469-1f3fb-200d-1f4bb.png",
- "sheet_x": 19,
- "sheet_y": 24,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F469-1F3FC-200D-1F4BB",
- "non_qualified": null,
- "image": "1f469-1f3fc-200d-1f4bb.png",
- "sheet_x": 19,
- "sheet_y": 25,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F469-1F3FD-200D-1F4BB",
- "non_qualified": null,
- "image": "1f469-1f3fd-200d-1f4bb.png",
- "sheet_x": 19,
- "sheet_y": 26,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F469-1F3FE-200D-1F4BB",
- "non_qualified": null,
- "image": "1f469-1f3fe-200d-1f4bb.png",
- "sheet_x": 19,
- "sheet_y": 27,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F469-1F3FF-200D-1F4BB",
- "non_qualified": null,
- "image": "1f469-1f3ff-200d-1f4bb.png",
- "sheet_x": 19,
- "sheet_y": 28,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- }
- }
- },
- "wrench": {
- "char": "\ud83d\udd27",
- "key": "wrench",
- "keywords": ["wrench", "WRENCH"],
- "category": "objects",
- "lib": {
- "name": "WRENCH",
- "unified": "1F527",
- "non_qualified": null,
- "docomo": "E718",
- "au": "E587",
- "softbank": null,
- "google": "FE4C9",
- "image": "1f527.png",
- "sheet_x": 28,
- "sheet_y": 10,
- "short_name": "wrench",
- "short_names": ["wrench"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 145,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "clock530": {
- "char": "\ud83d\udd60",
- "key": "clock530",
- "keywords": ["clock530", "CLOCK FACE FIVE-THIRTY"],
- "category": "travel_and_places",
- "lib": {
- "name": "CLOCK FACE FIVE-THIRTY",
- "unified": "1F560",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f560.png",
- "sheet_x": 29,
- "sheet_y": 2,
- "short_name": "clock530",
- "short_names": ["clock530"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 145,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "flag-lt": {
- "char": "\ud83c\uddf1\ud83c\uddf9",
- "key": "flag-lt",
- "keywords": ["flag-lt", "Lithuania Flag"],
- "category": "flags",
- "lib": {
- "name": "Lithuania Flag",
- "unified": "1F1F1-1F1F9",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1f1-1f1f9.png",
- "sheet_x": 3,
- "sheet_y": 10,
- "short_name": "flag-lt",
- "short_names": ["flag-lt"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 146,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "male-singer": {
- "char": "\ud83d\udc68\u200d\ud83c\udfa4",
- "key": "male-singer",
- "keywords": ["male-singer", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F468-200D-1F3A4",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f468-200d-1f3a4.png",
- "sheet_x": 16,
- "sheet_y": 5,
- "short_name": "male-singer",
- "short_names": ["male-singer"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 146,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F468-1F3FB-200D-1F3A4",
- "non_qualified": null,
- "image": "1f468-1f3fb-200d-1f3a4.png",
- "sheet_x": 16,
- "sheet_y": 6,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F468-1F3FC-200D-1F3A4",
- "non_qualified": null,
- "image": "1f468-1f3fc-200d-1f3a4.png",
- "sheet_x": 16,
- "sheet_y": 7,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F468-1F3FD-200D-1F3A4",
- "non_qualified": null,
- "image": "1f468-1f3fd-200d-1f3a4.png",
- "sheet_x": 16,
- "sheet_y": 8,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F468-1F3FE-200D-1F3A4",
- "non_qualified": null,
- "image": "1f468-1f3fe-200d-1f3a4.png",
- "sheet_x": 16,
- "sheet_y": 9,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F468-1F3FF-200D-1F3A4",
- "non_qualified": null,
- "image": "1f468-1f3ff-200d-1f3a4.png",
- "sheet_x": 16,
- "sheet_y": 10,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- }
- }
- },
- "capital_abcd": {
- "char": "\ud83d\udd20",
- "key": "capital_abcd",
- "keywords": ["capital_abcd", "INPUT SYMBOL FOR LATIN CAPITAL LETTERS"],
- "category": "symbols",
- "lib": {
- "name": "INPUT SYMBOL FOR LATIN CAPITAL LETTERS",
- "unified": "1F520",
- "non_qualified": null,
- "docomo": null,
- "au": "EAFD",
- "softbank": null,
- "google": "FEB7C",
- "image": "1f520.png",
- "sheet_x": 28,
- "sheet_y": 3,
- "short_name": "capital_abcd",
- "short_names": ["capital_abcd"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 146,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "nut_and_bolt": {
- "char": "\ud83d\udd29",
- "key": "nut_and_bolt",
- "keywords": ["nut_and_bolt", "NUT AND BOLT"],
- "category": "objects",
- "lib": {
- "name": "NUT AND BOLT",
- "unified": "1F529",
- "non_qualified": null,
- "docomo": null,
- "au": "E581",
- "softbank": null,
- "google": "FE4CB",
- "image": "1f529.png",
- "sheet_x": 28,
- "sheet_y": 12,
- "short_name": "nut_and_bolt",
- "short_names": ["nut_and_bolt"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 146,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "clock6": {
- "char": "\ud83d\udd55",
- "key": "clock6",
- "keywords": ["clock6", "CLOCK FACE SIX OCLOCK"],
- "category": "travel_and_places",
- "lib": {
- "name": "CLOCK FACE SIX OCLOCK",
- "unified": "1F555",
- "non_qualified": null,
- "docomo": "E6BA",
- "au": "E594",
- "softbank": "E029",
- "google": "FE023",
- "image": "1f555.png",
- "sheet_x": 28,
- "sheet_y": 44,
- "short_name": "clock6",
- "short_names": ["clock6"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 146,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "flag-lu": {
- "char": "\ud83c\uddf1\ud83c\uddfa",
- "key": "flag-lu",
- "keywords": ["flag-lu", "Luxembourg Flag"],
- "category": "flags",
- "lib": {
- "name": "Luxembourg Flag",
- "unified": "1F1F1-1F1FA",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1f1-1f1fa.png",
- "sheet_x": 3,
- "sheet_y": 11,
- "short_name": "flag-lu",
- "short_names": ["flag-lu"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 147,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "female-singer": {
- "char": "\ud83d\udc69\u200d\ud83c\udfa4",
- "key": "female-singer",
- "keywords": ["female-singer", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F469-200D-1F3A4",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f469-200d-1f3a4.png",
- "sheet_x": 18,
- "sheet_y": 42,
- "short_name": "female-singer",
- "short_names": ["female-singer"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 147,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F469-1F3FB-200D-1F3A4",
- "non_qualified": null,
- "image": "1f469-1f3fb-200d-1f3a4.png",
- "sheet_x": 18,
- "sheet_y": 43,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F469-1F3FC-200D-1F3A4",
- "non_qualified": null,
- "image": "1f469-1f3fc-200d-1f3a4.png",
- "sheet_x": 18,
- "sheet_y": 44,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F469-1F3FD-200D-1F3A4",
- "non_qualified": null,
- "image": "1f469-1f3fd-200d-1f3a4.png",
- "sheet_x": 18,
- "sheet_y": 45,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F469-1F3FE-200D-1F3A4",
- "non_qualified": null,
- "image": "1f469-1f3fe-200d-1f3a4.png",
- "sheet_x": 18,
- "sheet_y": 46,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F469-1F3FF-200D-1F3A4",
- "non_qualified": null,
- "image": "1f469-1f3ff-200d-1f3a4.png",
- "sheet_x": 18,
- "sheet_y": 47,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- }
- }
- },
- "abcd": {
- "char": "\ud83d\udd21",
- "key": "abcd",
- "keywords": ["abcd", "INPUT SYMBOL FOR LATIN SMALL LETTERS"],
- "category": "symbols",
- "lib": {
- "name": "INPUT SYMBOL FOR LATIN SMALL LETTERS",
- "unified": "1F521",
- "non_qualified": null,
- "docomo": null,
- "au": "EAFE",
- "softbank": null,
- "google": "FEB7D",
- "image": "1f521.png",
- "sheet_x": 28,
- "sheet_y": 4,
- "short_name": "abcd",
- "short_names": ["abcd"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 147,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "clock630": {
- "char": "\ud83d\udd61",
- "key": "clock630",
- "keywords": ["clock630", "CLOCK FACE SIX-THIRTY"],
- "category": "travel_and_places",
- "lib": {
- "name": "CLOCK FACE SIX-THIRTY",
- "unified": "1F561",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f561.png",
- "sheet_x": 29,
- "sheet_y": 3,
- "short_name": "clock630",
- "short_names": ["clock630"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 147,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "gear": {
- "char": "\u2699\ufe0f",
- "key": "gear",
- "keywords": ["gear", ""],
- "category": "objects",
- "lib": {
- "name": null,
- "unified": "2699-FE0F",
- "non_qualified": "2699",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "2699-fe0f.png",
- "sheet_x": 50,
- "sheet_y": 8,
- "short_name": "gear",
- "short_names": ["gear"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 147,
- "added_in": "4.1",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "flag-lv": {
- "char": "\ud83c\uddf1\ud83c\uddfb",
- "key": "flag-lv",
- "keywords": ["flag-lv", "Latvia Flag"],
- "category": "flags",
- "lib": {
- "name": "Latvia Flag",
- "unified": "1F1F1-1F1FB",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1f1-1f1fb.png",
- "sheet_x": 3,
- "sheet_y": 12,
- "short_name": "flag-lv",
- "short_names": ["flag-lv"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 148,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "male-artist": {
- "char": "\ud83d\udc68\u200d\ud83c\udfa8",
- "key": "male-artist",
- "keywords": ["male-artist", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F468-200D-1F3A8",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f468-200d-1f3a8.png",
- "sheet_x": 16,
- "sheet_y": 11,
- "short_name": "male-artist",
- "short_names": ["male-artist"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 148,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F468-1F3FB-200D-1F3A8",
- "non_qualified": null,
- "image": "1f468-1f3fb-200d-1f3a8.png",
- "sheet_x": 16,
- "sheet_y": 12,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F468-1F3FC-200D-1F3A8",
- "non_qualified": null,
- "image": "1f468-1f3fc-200d-1f3a8.png",
- "sheet_x": 16,
- "sheet_y": 13,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F468-1F3FD-200D-1F3A8",
- "non_qualified": null,
- "image": "1f468-1f3fd-200d-1f3a8.png",
- "sheet_x": 16,
- "sheet_y": 14,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F468-1F3FE-200D-1F3A8",
- "non_qualified": null,
- "image": "1f468-1f3fe-200d-1f3a8.png",
- "sheet_x": 16,
- "sheet_y": 15,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F468-1F3FF-200D-1F3A8",
- "non_qualified": null,
- "image": "1f468-1f3ff-200d-1f3a8.png",
- "sheet_x": 16,
- "sheet_y": 16,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- }
- }
- },
- "clock7": {
- "char": "\ud83d\udd56",
- "key": "clock7",
- "keywords": ["clock7", "CLOCK FACE SEVEN OCLOCK"],
- "category": "travel_and_places",
- "lib": {
- "name": "CLOCK FACE SEVEN OCLOCK",
- "unified": "1F556",
- "non_qualified": null,
- "docomo": "E6BA",
- "au": "E594",
- "softbank": "E02A",
- "google": "FE024",
- "image": "1f556.png",
- "sheet_x": 28,
- "sheet_y": 45,
- "short_name": "clock7",
- "short_names": ["clock7"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 148,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "compression": {
- "char": "\ud83d\udddc\ufe0f",
- "key": "compression",
- "keywords": ["compression", ""],
- "category": "objects",
- "lib": {
- "name": null,
- "unified": "1F5DC-FE0F",
- "non_qualified": "1F5DC",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f5dc-fe0f.png",
- "sheet_x": 30,
- "sheet_y": 29,
- "short_name": "compression",
- "short_names": ["compression"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 148,
- "added_in": "7.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "flag-ly": {
- "char": "\ud83c\uddf1\ud83c\uddfe",
- "key": "flag-ly",
- "keywords": ["flag-ly", "Libya Flag"],
- "category": "flags",
- "lib": {
- "name": "Libya Flag",
- "unified": "1F1F1-1F1FE",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1f1-1f1fe.png",
- "sheet_x": 3,
- "sheet_y": 13,
- "short_name": "flag-ly",
- "short_names": ["flag-ly"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 149,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "female-artist": {
- "char": "\ud83d\udc69\u200d\ud83c\udfa8",
- "key": "female-artist",
- "keywords": ["female-artist", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F469-200D-1F3A8",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f469-200d-1f3a8.png",
- "sheet_x": 18,
- "sheet_y": 48,
- "short_name": "female-artist",
- "short_names": ["female-artist"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 149,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F469-1F3FB-200D-1F3A8",
- "non_qualified": null,
- "image": "1f469-1f3fb-200d-1f3a8.png",
- "sheet_x": 18,
- "sheet_y": 49,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F469-1F3FC-200D-1F3A8",
- "non_qualified": null,
- "image": "1f469-1f3fc-200d-1f3a8.png",
- "sheet_x": 18,
- "sheet_y": 50,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F469-1F3FD-200D-1F3A8",
- "non_qualified": null,
- "image": "1f469-1f3fd-200d-1f3a8.png",
- "sheet_x": 18,
- "sheet_y": 51,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F469-1F3FE-200D-1F3A8",
- "non_qualified": null,
- "image": "1f469-1f3fe-200d-1f3a8.png",
- "sheet_x": 18,
- "sheet_y": 52,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F469-1F3FF-200D-1F3A8",
- "non_qualified": null,
- "image": "1f469-1f3ff-200d-1f3a8.png",
- "sheet_x": 19,
- "sheet_y": 0,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- }
- }
- },
- "symbols": {
- "char": "\ud83d\udd23",
- "key": "symbols",
- "keywords": ["symbols", "INPUT SYMBOL FOR SYMBOLS"],
- "category": "symbols",
- "lib": {
- "name": "INPUT SYMBOL FOR SYMBOLS",
- "unified": "1F523",
- "non_qualified": null,
- "docomo": null,
- "au": "EB00",
- "softbank": null,
- "google": "FEB7F",
- "image": "1f523.png",
- "sheet_x": 28,
- "sheet_y": 6,
- "short_name": "symbols",
- "short_names": ["symbols"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 149,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "clock730": {
- "char": "\ud83d\udd62",
- "key": "clock730",
- "keywords": ["clock730", "CLOCK FACE SEVEN-THIRTY"],
- "category": "travel_and_places",
- "lib": {
- "name": "CLOCK FACE SEVEN-THIRTY",
- "unified": "1F562",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f562.png",
- "sheet_x": 29,
- "sheet_y": 4,
- "short_name": "clock730",
- "short_names": ["clock730"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 149,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "scales": {
- "char": "\u2696\ufe0f",
- "key": "scales",
- "keywords": ["scales", ""],
- "category": "objects",
- "lib": {
- "name": null,
- "unified": "2696-FE0F",
- "non_qualified": "2696",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "2696-fe0f.png",
- "sheet_x": 50,
- "sheet_y": 6,
- "short_name": "scales",
- "short_names": ["scales"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 149,
- "added_in": "4.1",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "flag-ma": {
- "char": "\ud83c\uddf2\ud83c\udde6",
- "key": "flag-ma",
- "keywords": ["flag-ma", "Morocco Flag"],
- "category": "flags",
- "lib": {
- "name": "Morocco Flag",
- "unified": "1F1F2-1F1E6",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1f2-1f1e6.png",
- "sheet_x": 3,
- "sheet_y": 14,
- "short_name": "flag-ma",
- "short_names": ["flag-ma"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 150,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "male-pilot": {
- "char": "\ud83d\udc68\u200d\u2708\ufe0f",
- "key": "male-pilot",
- "keywords": ["male-pilot", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F468-200D-2708-FE0F",
- "non_qualified": "1F468-200D-2708",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f468-200d-2708-fe0f.png",
- "sheet_x": 18,
- "sheet_y": 10,
- "short_name": "male-pilot",
- "short_names": ["male-pilot"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 150,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F468-1F3FB-200D-2708-FE0F",
- "non_qualified": "1F468-1F3FB-200D-2708",
- "image": "1f468-1f3fb-200d-2708-fe0f.png",
- "sheet_x": 18,
- "sheet_y": 11,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F468-1F3FC-200D-2708-FE0F",
- "non_qualified": "1F468-1F3FC-200D-2708",
- "image": "1f468-1f3fc-200d-2708-fe0f.png",
- "sheet_x": 18,
- "sheet_y": 12,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F468-1F3FD-200D-2708-FE0F",
- "non_qualified": "1F468-1F3FD-200D-2708",
- "image": "1f468-1f3fd-200d-2708-fe0f.png",
- "sheet_x": 18,
- "sheet_y": 13,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F468-1F3FE-200D-2708-FE0F",
- "non_qualified": "1F468-1F3FE-200D-2708",
- "image": "1f468-1f3fe-200d-2708-fe0f.png",
- "sheet_x": 18,
- "sheet_y": 14,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F468-1F3FF-200D-2708-FE0F",
- "non_qualified": "1F468-1F3FF-200D-2708",
- "image": "1f468-1f3ff-200d-2708-fe0f.png",
- "sheet_x": 18,
- "sheet_y": 15,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- }
- }
- },
- "link": {
- "char": "\ud83d\udd17",
- "key": "link",
- "keywords": ["link", "LINK SYMBOL"],
- "category": "objects",
- "lib": {
- "name": "LINK SYMBOL",
- "unified": "1F517",
- "non_qualified": null,
- "docomo": null,
- "au": "E58A",
- "softbank": null,
- "google": "FEB4B",
- "image": "1f517.png",
- "sheet_x": 27,
- "sheet_y": 47,
- "short_name": "link",
- "short_names": ["link"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 150,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "abc": {
- "char": "\ud83d\udd24",
- "key": "abc",
- "keywords": ["abc", "INPUT SYMBOL FOR LATIN LETTERS"],
- "category": "symbols",
- "lib": {
- "name": "INPUT SYMBOL FOR LATIN LETTERS",
- "unified": "1F524",
- "non_qualified": null,
- "docomo": null,
- "au": "EB55",
- "softbank": null,
- "google": "FEB80",
- "image": "1f524.png",
- "sheet_x": 28,
- "sheet_y": 7,
- "short_name": "abc",
- "short_names": ["abc"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 150,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "clock8": {
- "char": "\ud83d\udd57",
- "key": "clock8",
- "keywords": ["clock8", "CLOCK FACE EIGHT OCLOCK"],
- "category": "travel_and_places",
- "lib": {
- "name": "CLOCK FACE EIGHT OCLOCK",
- "unified": "1F557",
- "non_qualified": null,
- "docomo": "E6BA",
- "au": "E594",
- "softbank": "E02B",
- "google": "FE025",
- "image": "1f557.png",
- "sheet_x": 28,
- "sheet_y": 46,
- "short_name": "clock8",
- "short_names": ["clock8"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 150,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "a": {
- "char": "\ud83c\udd70\ufe0f",
- "key": "a",
- "keywords": ["a", "NEGATIVE SQUARED LATIN CAPITAL LETTER A"],
- "category": "symbols",
- "lib": {
- "name": "NEGATIVE SQUARED LATIN CAPITAL LETTER A",
- "unified": "1F170-FE0F",
- "non_qualified": "1F170",
- "docomo": null,
- "au": "EB26",
- "softbank": "E532",
- "google": "FE50B",
- "image": "1f170-fe0f.png",
- "sheet_x": 0,
- "sheet_y": 16,
- "short_name": "a",
- "short_names": ["a"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 151,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "flag-mc": {
- "char": "\ud83c\uddf2\ud83c\udde8",
- "key": "flag-mc",
- "keywords": ["flag-mc", "Monaco Flag"],
- "category": "flags",
- "lib": {
- "name": "Monaco Flag",
- "unified": "1F1F2-1F1E8",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1f2-1f1e8.png",
- "sheet_x": 3,
- "sheet_y": 15,
- "short_name": "flag-mc",
- "short_names": ["flag-mc"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 151,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "female-pilot": {
- "char": "\ud83d\udc69\u200d\u2708\ufe0f",
- "key": "female-pilot",
- "keywords": ["female-pilot", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F469-200D-2708-FE0F",
- "non_qualified": "1F469-200D-2708",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f469-200d-2708-fe0f.png",
- "sheet_x": 20,
- "sheet_y": 42,
- "short_name": "female-pilot",
- "short_names": ["female-pilot"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 151,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F469-1F3FB-200D-2708-FE0F",
- "non_qualified": "1F469-1F3FB-200D-2708",
- "image": "1f469-1f3fb-200d-2708-fe0f.png",
- "sheet_x": 20,
- "sheet_y": 43,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F469-1F3FC-200D-2708-FE0F",
- "non_qualified": "1F469-1F3FC-200D-2708",
- "image": "1f469-1f3fc-200d-2708-fe0f.png",
- "sheet_x": 20,
- "sheet_y": 44,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F469-1F3FD-200D-2708-FE0F",
- "non_qualified": "1F469-1F3FD-200D-2708",
- "image": "1f469-1f3fd-200d-2708-fe0f.png",
- "sheet_x": 20,
- "sheet_y": 45,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F469-1F3FE-200D-2708-FE0F",
- "non_qualified": "1F469-1F3FE-200D-2708",
- "image": "1f469-1f3fe-200d-2708-fe0f.png",
- "sheet_x": 20,
- "sheet_y": 46,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F469-1F3FF-200D-2708-FE0F",
- "non_qualified": "1F469-1F3FF-200D-2708",
- "image": "1f469-1f3ff-200d-2708-fe0f.png",
- "sheet_x": 20,
- "sheet_y": 47,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- }
- }
- },
- "clock830": {
- "char": "\ud83d\udd63",
- "key": "clock830",
- "keywords": ["clock830", "CLOCK FACE EIGHT-THIRTY"],
- "category": "travel_and_places",
- "lib": {
- "name": "CLOCK FACE EIGHT-THIRTY",
- "unified": "1F563",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f563.png",
- "sheet_x": 29,
- "sheet_y": 5,
- "short_name": "clock830",
- "short_names": ["clock830"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 151,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "chains": {
- "char": "\u26d3\ufe0f",
- "key": "chains",
- "keywords": ["chains", ""],
- "category": "objects",
- "lib": {
- "name": null,
- "unified": "26D3-FE0F",
- "non_qualified": "26D3",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "26d3-fe0f.png",
- "sheet_x": 50,
- "sheet_y": 25,
- "short_name": "chains",
- "short_names": ["chains"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 151,
- "added_in": "5.2",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "ab": {
- "char": "\ud83c\udd8e",
- "key": "ab",
- "keywords": ["ab", "NEGATIVE SQUARED AB"],
- "category": "symbols",
- "lib": {
- "name": "NEGATIVE SQUARED AB",
- "unified": "1F18E",
- "non_qualified": null,
- "docomo": null,
- "au": "EB29",
- "softbank": "E534",
- "google": "FE50D",
- "image": "1f18e.png",
- "sheet_x": 0,
- "sheet_y": 20,
- "short_name": "ab",
- "short_names": ["ab"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 152,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "flag-md": {
- "char": "\ud83c\uddf2\ud83c\udde9",
- "key": "flag-md",
- "keywords": ["flag-md", "Moldova Flag"],
- "category": "flags",
- "lib": {
- "name": "Moldova Flag",
- "unified": "1F1F2-1F1E9",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1f2-1f1e9.png",
- "sheet_x": 3,
- "sheet_y": 16,
- "short_name": "flag-md",
- "short_names": ["flag-md"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 152,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "male-astronaut": {
- "char": "\ud83d\udc68\u200d\ud83d\ude80",
- "key": "male-astronaut",
- "keywords": ["male-astronaut", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F468-200D-1F680",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f468-200d-1f680.png",
- "sheet_x": 17,
- "sheet_y": 15,
- "short_name": "male-astronaut",
- "short_names": ["male-astronaut"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 152,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F468-1F3FB-200D-1F680",
- "non_qualified": null,
- "image": "1f468-1f3fb-200d-1f680.png",
- "sheet_x": 17,
- "sheet_y": 16,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F468-1F3FC-200D-1F680",
- "non_qualified": null,
- "image": "1f468-1f3fc-200d-1f680.png",
- "sheet_x": 17,
- "sheet_y": 17,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F468-1F3FD-200D-1F680",
- "non_qualified": null,
- "image": "1f468-1f3fd-200d-1f680.png",
- "sheet_x": 17,
- "sheet_y": 18,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F468-1F3FE-200D-1F680",
- "non_qualified": null,
- "image": "1f468-1f3fe-200d-1f680.png",
- "sheet_x": 17,
- "sheet_y": 19,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F468-1F3FF-200D-1F680",
- "non_qualified": null,
- "image": "1f468-1f3ff-200d-1f680.png",
- "sheet_x": 17,
- "sheet_y": 20,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- }
- }
- },
- "clock9": {
- "char": "\ud83d\udd58",
- "key": "clock9",
- "keywords": ["clock9", "CLOCK FACE NINE OCLOCK"],
- "category": "travel_and_places",
- "lib": {
- "name": "CLOCK FACE NINE OCLOCK",
- "unified": "1F558",
- "non_qualified": null,
- "docomo": "E6BA",
- "au": "E594",
- "softbank": "E02C",
- "google": "FE026",
- "image": "1f558.png",
- "sheet_x": 28,
- "sheet_y": 47,
- "short_name": "clock9",
- "short_names": ["clock9"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 152,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "toolbox": {
- "char": "\ud83e\uddf0",
- "key": "toolbox",
- "keywords": ["toolbox", "TOOLBOX"],
- "category": "objects",
- "lib": {
- "name": "TOOLBOX",
- "unified": "1F9F0",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f9f0.png",
- "sheet_x": 48,
- "sheet_y": 4,
- "short_name": "toolbox",
- "short_names": ["toolbox"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 152,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- },
- "b": {
- "char": "\ud83c\udd71\ufe0f",
- "key": "b",
- "keywords": ["b", "NEGATIVE SQUARED LATIN CAPITAL LETTER B"],
- "category": "symbols",
- "lib": {
- "name": "NEGATIVE SQUARED LATIN CAPITAL LETTER B",
- "unified": "1F171-FE0F",
- "non_qualified": "1F171",
- "docomo": null,
- "au": "EB27",
- "softbank": "E533",
- "google": "FE50C",
- "image": "1f171-fe0f.png",
- "sheet_x": 0,
- "sheet_y": 17,
- "short_name": "b",
- "short_names": ["b"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 153,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "flag-me": {
- "char": "\ud83c\uddf2\ud83c\uddea",
- "key": "flag-me",
- "keywords": ["flag-me", "Montenegro Flag"],
- "category": "flags",
- "lib": {
- "name": "Montenegro Flag",
- "unified": "1F1F2-1F1EA",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1f2-1f1ea.png",
- "sheet_x": 3,
- "sheet_y": 17,
- "short_name": "flag-me",
- "short_names": ["flag-me"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 153,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "female-astronaut": {
- "char": "\ud83d\udc69\u200d\ud83d\ude80",
- "key": "female-astronaut",
- "keywords": ["female-astronaut", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F469-200D-1F680",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f469-200d-1f680.png",
- "sheet_x": 19,
- "sheet_y": 47,
- "short_name": "female-astronaut",
- "short_names": ["female-astronaut"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 153,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F469-1F3FB-200D-1F680",
- "non_qualified": null,
- "image": "1f469-1f3fb-200d-1f680.png",
- "sheet_x": 19,
- "sheet_y": 48,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F469-1F3FC-200D-1F680",
- "non_qualified": null,
- "image": "1f469-1f3fc-200d-1f680.png",
- "sheet_x": 19,
- "sheet_y": 49,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F469-1F3FD-200D-1F680",
- "non_qualified": null,
- "image": "1f469-1f3fd-200d-1f680.png",
- "sheet_x": 19,
- "sheet_y": 50,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F469-1F3FE-200D-1F680",
- "non_qualified": null,
- "image": "1f469-1f3fe-200d-1f680.png",
- "sheet_x": 19,
- "sheet_y": 51,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F469-1F3FF-200D-1F680",
- "non_qualified": null,
- "image": "1f469-1f3ff-200d-1f680.png",
- "sheet_x": 19,
- "sheet_y": 52,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- }
- }
- },
- "clock930": {
- "char": "\ud83d\udd64",
- "key": "clock930",
- "keywords": ["clock930", "CLOCK FACE NINE-THIRTY"],
- "category": "travel_and_places",
- "lib": {
- "name": "CLOCK FACE NINE-THIRTY",
- "unified": "1F564",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f564.png",
- "sheet_x": 29,
- "sheet_y": 6,
- "short_name": "clock930",
- "short_names": ["clock930"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 153,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "magnet": {
- "char": "\ud83e\uddf2",
- "key": "magnet",
- "keywords": ["magnet", "MAGNET"],
- "category": "objects",
- "lib": {
- "name": "MAGNET",
- "unified": "1F9F2",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f9f2.png",
- "sheet_x": 48,
- "sheet_y": 6,
- "short_name": "magnet",
- "short_names": ["magnet"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 153,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- },
- "cl": {
- "char": "\ud83c\udd91",
- "key": "cl",
- "keywords": ["cl", "SQUARED CL"],
- "category": "symbols",
- "lib": {
- "name": "SQUARED CL",
- "unified": "1F191",
- "non_qualified": null,
- "docomo": "E6DB",
- "au": "E5AB",
- "softbank": null,
- "google": "FEB84",
- "image": "1f191.png",
- "sheet_x": 0,
- "sheet_y": 21,
- "short_name": "cl",
- "short_names": ["cl"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 154,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "flag-mf": {
- "char": "\ud83c\uddf2\ud83c\uddeb",
- "key": "flag-mf",
- "keywords": ["flag-mf", "St. Martin Flag"],
- "category": "flags",
- "lib": {
- "name": "St. Martin Flag",
- "unified": "1F1F2-1F1EB",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1f2-1f1eb.png",
- "sheet_x": 3,
- "sheet_y": 18,
- "short_name": "flag-mf",
- "short_names": ["flag-mf"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 154,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": false,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "male-firefighter": {
- "char": "\ud83d\udc68\u200d\ud83d\ude92",
- "key": "male-firefighter",
- "keywords": ["male-firefighter", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F468-200D-1F692",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f468-200d-1f692.png",
- "sheet_x": 17,
- "sheet_y": 21,
- "short_name": "male-firefighter",
- "short_names": ["male-firefighter"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 154,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F468-1F3FB-200D-1F692",
- "non_qualified": null,
- "image": "1f468-1f3fb-200d-1f692.png",
- "sheet_x": 17,
- "sheet_y": 22,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F468-1F3FC-200D-1F692",
- "non_qualified": null,
- "image": "1f468-1f3fc-200d-1f692.png",
- "sheet_x": 17,
- "sheet_y": 23,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F468-1F3FD-200D-1F692",
- "non_qualified": null,
- "image": "1f468-1f3fd-200d-1f692.png",
- "sheet_x": 17,
- "sheet_y": 24,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F468-1F3FE-200D-1F692",
- "non_qualified": null,
- "image": "1f468-1f3fe-200d-1f692.png",
- "sheet_x": 17,
- "sheet_y": 25,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F468-1F3FF-200D-1F692",
- "non_qualified": null,
- "image": "1f468-1f3ff-200d-1f692.png",
- "sheet_x": 17,
- "sheet_y": 26,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- }
- }
- },
- "clock10": {
- "char": "\ud83d\udd59",
- "key": "clock10",
- "keywords": ["clock10", "CLOCK FACE TEN OCLOCK"],
- "category": "travel_and_places",
- "lib": {
- "name": "CLOCK FACE TEN OCLOCK",
- "unified": "1F559",
- "non_qualified": null,
- "docomo": "E6BA",
- "au": "E594",
- "softbank": "E02D",
- "google": "FE027",
- "image": "1f559.png",
- "sheet_x": 28,
- "sheet_y": 48,
- "short_name": "clock10",
- "short_names": ["clock10"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 154,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "alembic": {
- "char": "\u2697\ufe0f",
- "key": "alembic",
- "keywords": ["alembic", ""],
- "category": "objects",
- "lib": {
- "name": null,
- "unified": "2697-FE0F",
- "non_qualified": "2697",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "2697-fe0f.png",
- "sheet_x": 50,
- "sheet_y": 7,
- "short_name": "alembic",
- "short_names": ["alembic"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 154,
- "added_in": "4.1",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "cool": {
- "char": "\ud83c\udd92",
- "key": "cool",
- "keywords": ["cool", "SQUARED COOL"],
- "category": "symbols",
- "lib": {
- "name": "SQUARED COOL",
- "unified": "1F192",
- "non_qualified": null,
- "docomo": null,
- "au": "EA85",
- "softbank": "E214",
- "google": "FEB38",
- "image": "1f192.png",
- "sheet_x": 0,
- "sheet_y": 22,
- "short_name": "cool",
- "short_names": ["cool"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 155,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "flag-mg": {
- "char": "\ud83c\uddf2\ud83c\uddec",
- "key": "flag-mg",
- "keywords": ["flag-mg", "Madagascar Flag"],
- "category": "flags",
- "lib": {
- "name": "Madagascar Flag",
- "unified": "1F1F2-1F1EC",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1f2-1f1ec.png",
- "sheet_x": 3,
- "sheet_y": 19,
- "short_name": "flag-mg",
- "short_names": ["flag-mg"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 155,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "female-firefighter": {
- "char": "\ud83d\udc69\u200d\ud83d\ude92",
- "key": "female-firefighter",
- "keywords": ["female-firefighter", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F469-200D-1F692",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f469-200d-1f692.png",
- "sheet_x": 20,
- "sheet_y": 0,
- "short_name": "female-firefighter",
- "short_names": ["female-firefighter"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 155,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F469-1F3FB-200D-1F692",
- "non_qualified": null,
- "image": "1f469-1f3fb-200d-1f692.png",
- "sheet_x": 20,
- "sheet_y": 1,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F469-1F3FC-200D-1F692",
- "non_qualified": null,
- "image": "1f469-1f3fc-200d-1f692.png",
- "sheet_x": 20,
- "sheet_y": 2,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F469-1F3FD-200D-1F692",
- "non_qualified": null,
- "image": "1f469-1f3fd-200d-1f692.png",
- "sheet_x": 20,
- "sheet_y": 3,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F469-1F3FE-200D-1F692",
- "non_qualified": null,
- "image": "1f469-1f3fe-200d-1f692.png",
- "sheet_x": 20,
- "sheet_y": 4,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F469-1F3FF-200D-1F692",
- "non_qualified": null,
- "image": "1f469-1f3ff-200d-1f692.png",
- "sheet_x": 20,
- "sheet_y": 5,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- }
- }
- },
- "clock1030": {
- "char": "\ud83d\udd65",
- "key": "clock1030",
- "keywords": ["clock1030", "CLOCK FACE TEN-THIRTY"],
- "category": "travel_and_places",
- "lib": {
- "name": "CLOCK FACE TEN-THIRTY",
- "unified": "1F565",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f565.png",
- "sheet_x": 29,
- "sheet_y": 7,
- "short_name": "clock1030",
- "short_names": ["clock1030"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 155,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "test_tube": {
- "char": "\ud83e\uddea",
- "key": "test_tube",
- "keywords": ["test_tube", "TEST TUBE"],
- "category": "objects",
- "lib": {
- "name": "TEST TUBE",
- "unified": "1F9EA",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f9ea.png",
- "sheet_x": 47,
- "sheet_y": 51,
- "short_name": "test_tube",
- "short_names": ["test_tube"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 155,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- },
- "free": {
- "char": "\ud83c\udd93",
- "key": "free",
- "keywords": ["free", "SQUARED FREE"],
- "category": "symbols",
- "lib": {
- "name": "SQUARED FREE",
- "unified": "1F193",
- "non_qualified": null,
- "docomo": "E6D7",
- "au": "E578",
- "softbank": null,
- "google": "FEB21",
- "image": "1f193.png",
- "sheet_x": 0,
- "sheet_y": 23,
- "short_name": "free",
- "short_names": ["free"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 156,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "flag-mh": {
- "char": "\ud83c\uddf2\ud83c\udded",
- "key": "flag-mh",
- "keywords": ["flag-mh", "Marshall Islands Flag"],
- "category": "flags",
- "lib": {
- "name": "Marshall Islands Flag",
- "unified": "1F1F2-1F1ED",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1f2-1f1ed.png",
- "sheet_x": 3,
- "sheet_y": 20,
- "short_name": "flag-mh",
- "short_names": ["flag-mh"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 156,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "clock11": {
- "char": "\ud83d\udd5a",
- "key": "clock11",
- "keywords": ["clock11", "CLOCK FACE ELEVEN OCLOCK"],
- "category": "travel_and_places",
- "lib": {
- "name": "CLOCK FACE ELEVEN OCLOCK",
- "unified": "1F55A",
- "non_qualified": null,
- "docomo": "E6BA",
- "au": "E594",
- "softbank": "E02E",
- "google": "FE028",
- "image": "1f55a.png",
- "sheet_x": 28,
- "sheet_y": 49,
- "short_name": "clock11",
- "short_names": ["clock11"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 156,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "petri_dish": {
- "char": "\ud83e\uddeb",
- "key": "petri_dish",
- "keywords": ["petri_dish", "PETRI DISH"],
- "category": "objects",
- "lib": {
- "name": "PETRI DISH",
- "unified": "1F9EB",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f9eb.png",
- "sheet_x": 47,
- "sheet_y": 52,
- "short_name": "petri_dish",
- "short_names": ["petri_dish"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 156,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- },
- "flag-mk": {
- "char": "\ud83c\uddf2\ud83c\uddf0",
- "key": "flag-mk",
- "keywords": ["flag-mk", "Macedonia Flag"],
- "category": "flags",
- "lib": {
- "name": "Macedonia Flag",
- "unified": "1F1F2-1F1F0",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1f2-1f1f0.png",
- "sheet_x": 3,
- "sheet_y": 21,
- "short_name": "flag-mk",
- "short_names": ["flag-mk"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 157,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "male-police-officer": {
- "char": "\ud83d\udc6e\u200d\u2642\ufe0f",
- "key": "male-police-officer",
- "keywords": ["male-police-officer", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F46E-200D-2642-FE0F",
- "non_qualified": "1F46E-200D-2642",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f46e-200d-2642-fe0f.png",
- "sheet_x": 21,
- "sheet_y": 15,
- "short_name": "male-police-officer",
- "short_names": ["male-police-officer"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 157,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F46E-1F3FB-200D-2642-FE0F",
- "non_qualified": "1F46E-1F3FB-200D-2642",
- "image": "1f46e-1f3fb-200d-2642-fe0f.png",
- "sheet_x": 21,
- "sheet_y": 16,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F46E-1F3FC-200D-2642-FE0F",
- "non_qualified": "1F46E-1F3FC-200D-2642",
- "image": "1f46e-1f3fc-200d-2642-fe0f.png",
- "sheet_x": 21,
- "sheet_y": 17,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F46E-1F3FD-200D-2642-FE0F",
- "non_qualified": "1F46E-1F3FD-200D-2642",
- "image": "1f46e-1f3fd-200d-2642-fe0f.png",
- "sheet_x": 21,
- "sheet_y": 18,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F46E-1F3FE-200D-2642-FE0F",
- "non_qualified": "1F46E-1F3FE-200D-2642",
- "image": "1f46e-1f3fe-200d-2642-fe0f.png",
- "sheet_x": 21,
- "sheet_y": 19,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F46E-1F3FF-200D-2642-FE0F",
- "non_qualified": "1F46E-1F3FF-200D-2642",
- "image": "1f46e-1f3ff-200d-2642-fe0f.png",
- "sheet_x": 21,
- "sheet_y": 20,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- },
- "obsoletes": "1F46E"
- }
- },
- "clock1130": {
- "char": "\ud83d\udd66",
- "key": "clock1130",
- "keywords": ["clock1130", "CLOCK FACE ELEVEN-THIRTY"],
- "category": "travel_and_places",
- "lib": {
- "name": "CLOCK FACE ELEVEN-THIRTY",
- "unified": "1F566",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f566.png",
- "sheet_x": 29,
- "sheet_y": 8,
- "short_name": "clock1130",
- "short_names": ["clock1130"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 157,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "dna": {
- "char": "\ud83e\uddec",
- "key": "dna",
- "keywords": ["dna", "DNA DOUBLE HELIX"],
- "category": "objects",
- "lib": {
- "name": "DNA DOUBLE HELIX",
- "unified": "1F9EC",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f9ec.png",
- "sheet_x": 48,
- "sheet_y": 0,
- "short_name": "dna",
- "short_names": ["dna"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 157,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- },
- "information_source": {
- "char": "\u2139\ufe0f",
- "key": "information_source",
- "keywords": ["information_source", "INFORMATION SOURCE"],
- "category": "symbols",
- "lib": {
- "name": "INFORMATION SOURCE",
- "unified": "2139-FE0F",
- "non_qualified": "2139",
- "docomo": null,
- "au": "E533",
- "softbank": null,
- "google": "FEB47",
- "image": "2139-fe0f.png",
- "sheet_x": 48,
- "sheet_y": 23,
- "short_name": "information_source",
- "short_names": ["information_source"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 157,
- "added_in": "3.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "id": {
- "char": "\ud83c\udd94",
- "key": "id",
- "keywords": ["id", "SQUARED ID"],
- "category": "symbols",
- "lib": {
- "name": "SQUARED ID",
- "unified": "1F194",
- "non_qualified": null,
- "docomo": "E6D8",
- "au": "EA88",
- "softbank": "E229",
- "google": "FEB81",
- "image": "1f194.png",
- "sheet_x": 0,
- "sheet_y": 24,
- "short_name": "id",
- "short_names": ["id"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 158,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "flag-ml": {
- "char": "\ud83c\uddf2\ud83c\uddf1",
- "key": "flag-ml",
- "keywords": ["flag-ml", "Mali Flag"],
- "category": "flags",
- "lib": {
- "name": "Mali Flag",
- "unified": "1F1F2-1F1F1",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1f2-1f1f1.png",
- "sheet_x": 3,
- "sheet_y": 22,
- "short_name": "flag-ml",
- "short_names": ["flag-ml"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 158,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "new_moon": {
- "char": "\ud83c\udf11",
- "key": "new_moon",
- "keywords": ["new_moon", "NEW MOON SYMBOL"],
- "category": "travel_and_places",
- "lib": {
- "name": "NEW MOON SYMBOL",
- "unified": "1F311",
- "non_qualified": null,
- "docomo": "E69C",
- "au": "E5A8",
- "softbank": null,
- "google": "FE011",
- "image": "1f311.png",
- "sheet_x": 6,
- "sheet_y": 3,
- "short_name": "new_moon",
- "short_names": ["new_moon"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 158,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "female-police-officer": {
- "char": "\ud83d\udc6e\u200d\u2640\ufe0f",
- "key": "female-police-officer",
- "keywords": ["female-police-officer", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F46E-200D-2640-FE0F",
- "non_qualified": "1F46E-200D-2640",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f46e-200d-2640-fe0f.png",
- "sheet_x": 21,
- "sheet_y": 9,
- "short_name": "female-police-officer",
- "short_names": ["female-police-officer"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 158,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F46E-1F3FB-200D-2640-FE0F",
- "non_qualified": "1F46E-1F3FB-200D-2640",
- "image": "1f46e-1f3fb-200d-2640-fe0f.png",
- "sheet_x": 21,
- "sheet_y": 10,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F46E-1F3FC-200D-2640-FE0F",
- "non_qualified": "1F46E-1F3FC-200D-2640",
- "image": "1f46e-1f3fc-200d-2640-fe0f.png",
- "sheet_x": 21,
- "sheet_y": 11,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F46E-1F3FD-200D-2640-FE0F",
- "non_qualified": "1F46E-1F3FD-200D-2640",
- "image": "1f46e-1f3fd-200d-2640-fe0f.png",
- "sheet_x": 21,
- "sheet_y": 12,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F46E-1F3FE-200D-2640-FE0F",
- "non_qualified": "1F46E-1F3FE-200D-2640",
- "image": "1f46e-1f3fe-200d-2640-fe0f.png",
- "sheet_x": 21,
- "sheet_y": 13,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F46E-1F3FF-200D-2640-FE0F",
- "non_qualified": "1F46E-1F3FF-200D-2640",
- "image": "1f46e-1f3ff-200d-2640-fe0f.png",
- "sheet_x": 21,
- "sheet_y": 14,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- }
- }
- },
- "microscope": {
- "char": "\ud83d\udd2c",
- "key": "microscope",
- "keywords": ["microscope", "MICROSCOPE"],
- "category": "objects",
- "lib": {
- "name": "MICROSCOPE",
- "unified": "1F52C",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f52c.png",
- "sheet_x": 28,
- "sheet_y": 15,
- "short_name": "microscope",
- "short_names": ["microscope"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 158,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "flag-mm": {
- "char": "\ud83c\uddf2\ud83c\uddf2",
- "key": "flag-mm",
- "keywords": ["flag-mm", "Myanmar (Burma) Flag"],
- "category": "flags",
- "lib": {
- "name": "Myanmar (Burma) Flag",
- "unified": "1F1F2-1F1F2",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1f2-1f1f2.png",
- "sheet_x": 3,
- "sheet_y": 23,
- "short_name": "flag-mm",
- "short_names": ["flag-mm"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 159,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "waxing_crescent_moon": {
- "char": "\ud83c\udf12",
- "key": "waxing_crescent_moon",
- "keywords": ["waxing_crescent_moon", "WAXING CRESCENT MOON SYMBOL"],
- "category": "travel_and_places",
- "lib": {
- "name": "WAXING CRESCENT MOON SYMBOL",
- "unified": "1F312",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f312.png",
- "sheet_x": 6,
- "sheet_y": 4,
- "short_name": "waxing_crescent_moon",
- "short_names": ["waxing_crescent_moon"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 159,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "telescope": {
- "char": "\ud83d\udd2d",
- "key": "telescope",
- "keywords": ["telescope", "TELESCOPE"],
- "category": "objects",
- "lib": {
- "name": "TELESCOPE",
- "unified": "1F52D",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f52d.png",
- "sheet_x": 28,
- "sheet_y": 16,
- "short_name": "telescope",
- "short_names": ["telescope"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 159,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "m": {
- "char": "\u24c2\ufe0f",
- "key": "m",
- "keywords": ["m", "CIRCLED LATIN CAPITAL LETTER M"],
- "category": "symbols",
- "lib": {
- "name": "CIRCLED LATIN CAPITAL LETTER M",
- "unified": "24C2-FE0F",
- "non_qualified": "24C2",
- "docomo": "E65C",
- "au": "E5BC",
- "softbank": null,
- "google": "FE7E1",
- "image": "24c2-fe0f.png",
- "sheet_x": 48,
- "sheet_y": 50,
- "short_name": "m",
- "short_names": ["m"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 159,
- "added_in": "1.1",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "new": {
- "char": "\ud83c\udd95",
- "key": "new",
- "keywords": ["new", "SQUARED NEW"],
- "category": "symbols",
- "lib": {
- "name": "SQUARED NEW",
- "unified": "1F195",
- "non_qualified": null,
- "docomo": "E6DD",
- "au": "E5B5",
- "softbank": "E212",
- "google": "FEB36",
- "image": "1f195.png",
- "sheet_x": 0,
- "sheet_y": 25,
- "short_name": "new",
- "short_names": ["new"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 160,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "flag-mn": {
- "char": "\ud83c\uddf2\ud83c\uddf3",
- "key": "flag-mn",
- "keywords": ["flag-mn", "Mongolia Flag"],
- "category": "flags",
- "lib": {
- "name": "Mongolia Flag",
- "unified": "1F1F2-1F1F3",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1f2-1f1f3.png",
- "sheet_x": 3,
- "sheet_y": 24,
- "short_name": "flag-mn",
- "short_names": ["flag-mn"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 160,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "first_quarter_moon": {
- "char": "\ud83c\udf13",
- "key": "first_quarter_moon",
- "keywords": ["first_quarter_moon", "FIRST QUARTER MOON SYMBOL"],
- "category": "travel_and_places",
- "lib": {
- "name": "FIRST QUARTER MOON SYMBOL",
- "unified": "1F313",
- "non_qualified": null,
- "docomo": "E69E",
- "au": "E5AA",
- "softbank": null,
- "google": "FE013",
- "image": "1f313.png",
- "sheet_x": 6,
- "sheet_y": 5,
- "short_name": "first_quarter_moon",
- "short_names": ["first_quarter_moon"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 160,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "satellite_antenna": {
- "char": "\ud83d\udce1",
- "key": "satellite_antenna",
- "keywords": ["satellite_antenna", "SATELLITE ANTENNA"],
- "category": "objects",
- "lib": {
- "name": "SATELLITE ANTENNA",
- "unified": "1F4E1",
- "non_qualified": null,
- "docomo": null,
- "au": "E4A8",
- "softbank": "E14B",
- "google": "FE531",
- "image": "1f4e1.png",
- "sheet_x": 26,
- "sheet_y": 47,
- "short_name": "satellite_antenna",
- "short_names": ["satellite_antenna"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 160,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "male-detective": {
- "char": "\ud83d\udd75\ufe0f\u200d\u2642\ufe0f",
- "key": "male-detective",
- "keywords": ["male-detective", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F575-FE0F-200D-2642-FE0F",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f575-fe0f-200d-2642-fe0f.png",
- "sheet_x": 29,
- "sheet_y": 25,
- "short_name": "male-detective",
- "short_names": ["male-detective"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 160,
- "added_in": "7.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F575-1F3FB-200D-2642-FE0F",
- "non_qualified": "1F575-1F3FB-200D-2642",
- "image": "1f575-1f3fb-200d-2642-fe0f.png",
- "sheet_x": 29,
- "sheet_y": 26,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F575-1F3FC-200D-2642-FE0F",
- "non_qualified": "1F575-1F3FC-200D-2642",
- "image": "1f575-1f3fc-200d-2642-fe0f.png",
- "sheet_x": 29,
- "sheet_y": 27,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F575-1F3FD-200D-2642-FE0F",
- "non_qualified": "1F575-1F3FD-200D-2642",
- "image": "1f575-1f3fd-200d-2642-fe0f.png",
- "sheet_x": 29,
- "sheet_y": 28,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F575-1F3FE-200D-2642-FE0F",
- "non_qualified": "1F575-1F3FE-200D-2642",
- "image": "1f575-1f3fe-200d-2642-fe0f.png",
- "sheet_x": 29,
- "sheet_y": 29,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F575-1F3FF-200D-2642-FE0F",
- "non_qualified": "1F575-1F3FF-200D-2642",
- "image": "1f575-1f3ff-200d-2642-fe0f.png",
- "sheet_x": 29,
- "sheet_y": 30,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- },
- "obsoletes": "1F575-FE0F"
- }
- },
- "ng": {
- "char": "\ud83c\udd96",
- "key": "ng",
- "keywords": ["ng", "SQUARED NG"],
- "category": "symbols",
- "lib": {
- "name": "SQUARED NG",
- "unified": "1F196",
- "non_qualified": null,
- "docomo": "E72F",
- "au": null,
- "softbank": null,
- "google": "FEB28",
- "image": "1f196.png",
- "sheet_x": 0,
- "sheet_y": 26,
- "short_name": "ng",
- "short_names": ["ng"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 161,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "flag-mo": {
- "char": "\ud83c\uddf2\ud83c\uddf4",
- "key": "flag-mo",
- "keywords": ["flag-mo", "Macau SAR China Flag"],
- "category": "flags",
- "lib": {
- "name": "Macau SAR China Flag",
- "unified": "1F1F2-1F1F4",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1f2-1f1f4.png",
- "sheet_x": 3,
- "sheet_y": 25,
- "short_name": "flag-mo",
- "short_names": ["flag-mo"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 161,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "moon": {
- "char": "\ud83c\udf14",
- "key": "moon",
- "keywords": ["moon", "WAXING GIBBOUS MOON SYMBOL"],
- "category": "travel_and_places",
- "lib": {
- "name": "WAXING GIBBOUS MOON SYMBOL",
- "unified": "1F314",
- "non_qualified": null,
- "docomo": "E69D",
- "au": "E5A9",
- "softbank": null,
- "google": "FE012",
- "image": "1f314.png",
- "sheet_x": 6,
- "sheet_y": 6,
- "short_name": "moon",
- "short_names": ["moon", "waxing_gibbous_moon"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 161,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "syringe": {
- "char": "\ud83d\udc89",
- "key": "syringe",
- "keywords": ["syringe", "SYRINGE"],
- "category": "objects",
- "lib": {
- "name": "SYRINGE",
- "unified": "1F489",
- "non_qualified": null,
- "docomo": null,
- "au": "E510",
- "softbank": "E13B",
- "google": "FE509",
- "image": "1f489.png",
- "sheet_x": 25,
- "sheet_y": 7,
- "short_name": "syringe",
- "short_names": ["syringe"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 161,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "female-detective": {
- "char": "\ud83d\udd75\ufe0f\u200d\u2640\ufe0f",
- "key": "female-detective",
- "keywords": ["female-detective", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F575-FE0F-200D-2640-FE0F",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f575-fe0f-200d-2640-fe0f.png",
- "sheet_x": 29,
- "sheet_y": 19,
- "short_name": "female-detective",
- "short_names": ["female-detective"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 161,
- "added_in": "7.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F575-1F3FB-200D-2640-FE0F",
- "non_qualified": "1F575-1F3FB-200D-2640",
- "image": "1f575-1f3fb-200d-2640-fe0f.png",
- "sheet_x": 29,
- "sheet_y": 20,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F575-1F3FC-200D-2640-FE0F",
- "non_qualified": "1F575-1F3FC-200D-2640",
- "image": "1f575-1f3fc-200d-2640-fe0f.png",
- "sheet_x": 29,
- "sheet_y": 21,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F575-1F3FD-200D-2640-FE0F",
- "non_qualified": "1F575-1F3FD-200D-2640",
- "image": "1f575-1f3fd-200d-2640-fe0f.png",
- "sheet_x": 29,
- "sheet_y": 22,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F575-1F3FE-200D-2640-FE0F",
- "non_qualified": "1F575-1F3FE-200D-2640",
- "image": "1f575-1f3fe-200d-2640-fe0f.png",
- "sheet_x": 29,
- "sheet_y": 23,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F575-1F3FF-200D-2640-FE0F",
- "non_qualified": "1F575-1F3FF-200D-2640",
- "image": "1f575-1f3ff-200d-2640-fe0f.png",
- "sheet_x": 29,
- "sheet_y": 24,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- }
- }
- },
- "o2": {
- "char": "\ud83c\udd7e\ufe0f",
- "key": "o2",
- "keywords": ["o2", "NEGATIVE SQUARED LATIN CAPITAL LETTER O"],
- "category": "symbols",
- "lib": {
- "name": "NEGATIVE SQUARED LATIN CAPITAL LETTER O",
- "unified": "1F17E-FE0F",
- "non_qualified": "1F17E",
- "docomo": null,
- "au": "EB28",
- "softbank": "E535",
- "google": "FE50E",
- "image": "1f17e-fe0f.png",
- "sheet_x": 0,
- "sheet_y": 18,
- "short_name": "o2",
- "short_names": ["o2"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 162,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "flag-mp": {
- "char": "\ud83c\uddf2\ud83c\uddf5",
- "key": "flag-mp",
- "keywords": ["flag-mp", "Northern Mariana Islands Flag"],
- "category": "flags",
- "lib": {
- "name": "Northern Mariana Islands Flag",
- "unified": "1F1F2-1F1F5",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1f2-1f1f5.png",
- "sheet_x": 3,
- "sheet_y": 26,
- "short_name": "flag-mp",
- "short_names": ["flag-mp"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 162,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "full_moon": {
- "char": "\ud83c\udf15",
- "key": "full_moon",
- "keywords": ["full_moon", "FULL MOON SYMBOL"],
- "category": "travel_and_places",
- "lib": {
- "name": "FULL MOON SYMBOL",
- "unified": "1F315",
- "non_qualified": null,
- "docomo": "E6A0",
- "au": null,
- "softbank": null,
- "google": "FE015",
- "image": "1f315.png",
- "sheet_x": 6,
- "sheet_y": 7,
- "short_name": "full_moon",
- "short_names": ["full_moon"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 162,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "pill": {
- "char": "\ud83d\udc8a",
- "key": "pill",
- "keywords": ["pill", "PILL"],
- "category": "objects",
- "lib": {
- "name": "PILL",
- "unified": "1F48A",
- "non_qualified": null,
- "docomo": null,
- "au": "EA9A",
- "softbank": "E30F",
- "google": "FE50A",
- "image": "1f48a.png",
- "sheet_x": 25,
- "sheet_y": 8,
- "short_name": "pill",
- "short_names": ["pill"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 162,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "ok": {
- "char": "\ud83c\udd97",
- "key": "ok",
- "keywords": ["ok", "SQUARED OK"],
- "category": "symbols",
- "lib": {
- "name": "SQUARED OK",
- "unified": "1F197",
- "non_qualified": null,
- "docomo": "E70B",
- "au": "E5AD",
- "softbank": "E24D",
- "google": "FEB27",
- "image": "1f197.png",
- "sheet_x": 0,
- "sheet_y": 27,
- "short_name": "ok",
- "short_names": ["ok"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 163,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "flag-mq": {
- "char": "\ud83c\uddf2\ud83c\uddf6",
- "key": "flag-mq",
- "keywords": ["flag-mq", "Martinique Flag"],
- "category": "flags",
- "lib": {
- "name": "Martinique Flag",
- "unified": "1F1F2-1F1F6",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1f2-1f1f6.png",
- "sheet_x": 3,
- "sheet_y": 27,
- "short_name": "flag-mq",
- "short_names": ["flag-mq"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 163,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": false,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "waning_gibbous_moon": {
- "char": "\ud83c\udf16",
- "key": "waning_gibbous_moon",
- "keywords": ["waning_gibbous_moon", "WANING GIBBOUS MOON SYMBOL"],
- "category": "travel_and_places",
- "lib": {
- "name": "WANING GIBBOUS MOON SYMBOL",
- "unified": "1F316",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f316.png",
- "sheet_x": 6,
- "sheet_y": 8,
- "short_name": "waning_gibbous_moon",
- "short_names": ["waning_gibbous_moon"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 163,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "male-guard": {
- "char": "\ud83d\udc82\u200d\u2642\ufe0f",
- "key": "male-guard",
- "keywords": ["male-guard", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F482-200D-2642-FE0F",
- "non_qualified": "1F482-200D-2642",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f482-200d-2642-fe0f.png",
- "sheet_x": 23,
- "sheet_y": 51,
- "short_name": "male-guard",
- "short_names": ["male-guard"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 163,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F482-1F3FB-200D-2642-FE0F",
- "non_qualified": "1F482-1F3FB-200D-2642",
- "image": "1f482-1f3fb-200d-2642-fe0f.png",
- "sheet_x": 23,
- "sheet_y": 52,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F482-1F3FC-200D-2642-FE0F",
- "non_qualified": "1F482-1F3FC-200D-2642",
- "image": "1f482-1f3fc-200d-2642-fe0f.png",
- "sheet_x": 24,
- "sheet_y": 0,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F482-1F3FD-200D-2642-FE0F",
- "non_qualified": "1F482-1F3FD-200D-2642",
- "image": "1f482-1f3fd-200d-2642-fe0f.png",
- "sheet_x": 24,
- "sheet_y": 1,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F482-1F3FE-200D-2642-FE0F",
- "non_qualified": "1F482-1F3FE-200D-2642",
- "image": "1f482-1f3fe-200d-2642-fe0f.png",
- "sheet_x": 24,
- "sheet_y": 2,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F482-1F3FF-200D-2642-FE0F",
- "non_qualified": "1F482-1F3FF-200D-2642",
- "image": "1f482-1f3ff-200d-2642-fe0f.png",
- "sheet_x": 24,
- "sheet_y": 3,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- },
- "obsoletes": "1F482"
- }
- },
- "door": {
- "char": "\ud83d\udeaa",
- "key": "door",
- "keywords": ["door", "DOOR"],
- "category": "objects",
- "lib": {
- "name": "DOOR",
- "unified": "1F6AA",
- "non_qualified": null,
- "docomo": "E714",
- "au": null,
- "softbank": null,
- "google": "FE4F3",
- "image": "1f6aa.png",
- "sheet_x": 35,
- "sheet_y": 29,
- "short_name": "door",
- "short_names": ["door"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 163,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "parking": {
- "char": "\ud83c\udd7f\ufe0f",
- "key": "parking",
- "keywords": ["parking", "NEGATIVE SQUARED LATIN CAPITAL LETTER P"],
- "category": "symbols",
- "lib": {
- "name": "NEGATIVE SQUARED LATIN CAPITAL LETTER P",
- "unified": "1F17F-FE0F",
- "non_qualified": "1F17F",
- "docomo": "E66C",
- "au": "E4A6",
- "softbank": "E14F",
- "google": "FE7F6",
- "image": "1f17f-fe0f.png",
- "sheet_x": 0,
- "sheet_y": 19,
- "short_name": "parking",
- "short_names": ["parking"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 164,
- "added_in": "5.2",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "flag-mr": {
- "char": "\ud83c\uddf2\ud83c\uddf7",
- "key": "flag-mr",
- "keywords": ["flag-mr", "Mauritania Flag"],
- "category": "flags",
- "lib": {
- "name": "Mauritania Flag",
- "unified": "1F1F2-1F1F7",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1f2-1f1f7.png",
- "sheet_x": 3,
- "sheet_y": 28,
- "short_name": "flag-mr",
- "short_names": ["flag-mr"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 164,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "last_quarter_moon": {
- "char": "\ud83c\udf17",
- "key": "last_quarter_moon",
- "keywords": ["last_quarter_moon", "LAST QUARTER MOON SYMBOL"],
- "category": "travel_and_places",
- "lib": {
- "name": "LAST QUARTER MOON SYMBOL",
- "unified": "1F317",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f317.png",
- "sheet_x": 6,
- "sheet_y": 9,
- "short_name": "last_quarter_moon",
- "short_names": ["last_quarter_moon"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 164,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "female-guard": {
- "char": "\ud83d\udc82\u200d\u2640\ufe0f",
- "key": "female-guard",
- "keywords": ["female-guard", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F482-200D-2640-FE0F",
- "non_qualified": "1F482-200D-2640",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f482-200d-2640-fe0f.png",
- "sheet_x": 23,
- "sheet_y": 45,
- "short_name": "female-guard",
- "short_names": ["female-guard"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 164,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F482-1F3FB-200D-2640-FE0F",
- "non_qualified": "1F482-1F3FB-200D-2640",
- "image": "1f482-1f3fb-200d-2640-fe0f.png",
- "sheet_x": 23,
- "sheet_y": 46,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F482-1F3FC-200D-2640-FE0F",
- "non_qualified": "1F482-1F3FC-200D-2640",
- "image": "1f482-1f3fc-200d-2640-fe0f.png",
- "sheet_x": 23,
- "sheet_y": 47,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F482-1F3FD-200D-2640-FE0F",
- "non_qualified": "1F482-1F3FD-200D-2640",
- "image": "1f482-1f3fd-200d-2640-fe0f.png",
- "sheet_x": 23,
- "sheet_y": 48,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F482-1F3FE-200D-2640-FE0F",
- "non_qualified": "1F482-1F3FE-200D-2640",
- "image": "1f482-1f3fe-200d-2640-fe0f.png",
- "sheet_x": 23,
- "sheet_y": 49,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F482-1F3FF-200D-2640-FE0F",
- "non_qualified": "1F482-1F3FF-200D-2640",
- "image": "1f482-1f3ff-200d-2640-fe0f.png",
- "sheet_x": 23,
- "sheet_y": 50,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- }
- }
- },
- "bed": {
- "char": "\ud83d\udecf\ufe0f",
- "key": "bed",
- "keywords": ["bed", ""],
- "category": "objects",
- "lib": {
- "name": null,
- "unified": "1F6CF-FE0F",
- "non_qualified": "1F6CF",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f6cf-fe0f.png",
- "sheet_x": 37,
- "sheet_y": 16,
- "short_name": "bed",
- "short_names": ["bed"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 164,
- "added_in": "7.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "sos": {
- "char": "\ud83c\udd98",
- "key": "sos",
- "keywords": ["sos", "SQUARED SOS"],
- "category": "symbols",
- "lib": {
- "name": "SQUARED SOS",
- "unified": "1F198",
- "non_qualified": null,
- "docomo": null,
- "au": "E4E8",
- "softbank": null,
- "google": "FEB4F",
- "image": "1f198.png",
- "sheet_x": 0,
- "sheet_y": 28,
- "short_name": "sos",
- "short_names": ["sos"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 165,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "flag-ms": {
- "char": "\ud83c\uddf2\ud83c\uddf8",
- "key": "flag-ms",
- "keywords": ["flag-ms", "Montserrat Flag"],
- "category": "flags",
- "lib": {
- "name": "Montserrat Flag",
- "unified": "1F1F2-1F1F8",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1f2-1f1f8.png",
- "sheet_x": 3,
- "sheet_y": 29,
- "short_name": "flag-ms",
- "short_names": ["flag-ms"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 165,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "waning_crescent_moon": {
- "char": "\ud83c\udf18",
- "key": "waning_crescent_moon",
- "keywords": ["waning_crescent_moon", "WANING CRESCENT MOON SYMBOL"],
- "category": "travel_and_places",
- "lib": {
- "name": "WANING CRESCENT MOON SYMBOL",
- "unified": "1F318",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f318.png",
- "sheet_x": 6,
- "sheet_y": 10,
- "short_name": "waning_crescent_moon",
- "short_names": ["waning_crescent_moon"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 165,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "couch_and_lamp": {
- "char": "\ud83d\udecb\ufe0f",
- "key": "couch_and_lamp",
- "keywords": ["couch_and_lamp", ""],
- "category": "objects",
- "lib": {
- "name": null,
- "unified": "1F6CB-FE0F",
- "non_qualified": "1F6CB",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f6cb-fe0f.png",
- "sheet_x": 37,
- "sheet_y": 7,
- "short_name": "couch_and_lamp",
- "short_names": ["couch_and_lamp"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 165,
- "added_in": "7.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "up": {
- "char": "\ud83c\udd99",
- "key": "up",
- "keywords": ["up", "SQUARED UP WITH EXCLAMATION MARK"],
- "category": "symbols",
- "lib": {
- "name": "SQUARED UP WITH EXCLAMATION MARK",
- "unified": "1F199",
- "non_qualified": null,
- "docomo": null,
- "au": "E50F",
- "softbank": "E213",
- "google": "FEB37",
- "image": "1f199.png",
- "sheet_x": 0,
- "sheet_y": 29,
- "short_name": "up",
- "short_names": ["up"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 166,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "flag-mt": {
- "char": "\ud83c\uddf2\ud83c\uddf9",
- "key": "flag-mt",
- "keywords": ["flag-mt", "Malta Flag"],
- "category": "flags",
- "lib": {
- "name": "Malta Flag",
- "unified": "1F1F2-1F1F9",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1f2-1f1f9.png",
- "sheet_x": 3,
- "sheet_y": 30,
- "short_name": "flag-mt",
- "short_names": ["flag-mt"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 166,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "crescent_moon": {
- "char": "\ud83c\udf19",
- "key": "crescent_moon",
- "keywords": ["crescent_moon", "CRESCENT MOON"],
- "category": "travel_and_places",
- "lib": {
- "name": "CRESCENT MOON",
- "unified": "1F319",
- "non_qualified": null,
- "docomo": "E69F",
- "au": "E486",
- "softbank": "E04C",
- "google": "FE014",
- "image": "1f319.png",
- "sheet_x": 6,
- "sheet_y": 11,
- "short_name": "crescent_moon",
- "short_names": ["crescent_moon"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 166,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "male-construction-worker": {
- "char": "\ud83d\udc77\u200d\u2642\ufe0f",
- "key": "male-construction-worker",
- "keywords": ["male-construction-worker", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F477-200D-2642-FE0F",
- "non_qualified": "1F477-200D-2642",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f477-200d-2642-fe0f.png",
- "sheet_x": 22,
- "sheet_y": 49,
- "short_name": "male-construction-worker",
- "short_names": ["male-construction-worker"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 166,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F477-1F3FB-200D-2642-FE0F",
- "non_qualified": "1F477-1F3FB-200D-2642",
- "image": "1f477-1f3fb-200d-2642-fe0f.png",
- "sheet_x": 22,
- "sheet_y": 50,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F477-1F3FC-200D-2642-FE0F",
- "non_qualified": "1F477-1F3FC-200D-2642",
- "image": "1f477-1f3fc-200d-2642-fe0f.png",
- "sheet_x": 22,
- "sheet_y": 51,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F477-1F3FD-200D-2642-FE0F",
- "non_qualified": "1F477-1F3FD-200D-2642",
- "image": "1f477-1f3fd-200d-2642-fe0f.png",
- "sheet_x": 22,
- "sheet_y": 52,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F477-1F3FE-200D-2642-FE0F",
- "non_qualified": "1F477-1F3FE-200D-2642",
- "image": "1f477-1f3fe-200d-2642-fe0f.png",
- "sheet_x": 23,
- "sheet_y": 0,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F477-1F3FF-200D-2642-FE0F",
- "non_qualified": "1F477-1F3FF-200D-2642",
- "image": "1f477-1f3ff-200d-2642-fe0f.png",
- "sheet_x": 23,
- "sheet_y": 1,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- },
- "obsoletes": "1F477"
- }
- },
- "toilet": {
- "char": "\ud83d\udebd",
- "key": "toilet",
- "keywords": ["toilet", "TOILET"],
- "category": "objects",
- "lib": {
- "name": "TOILET",
- "unified": "1F6BD",
- "non_qualified": null,
- "docomo": "E66E",
- "au": "E4A5",
- "softbank": "E140",
- "google": "FE507",
- "image": "1f6bd.png",
- "sheet_x": 36,
- "sheet_y": 46,
- "short_name": "toilet",
- "short_names": ["toilet"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 166,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "vs": {
- "char": "\ud83c\udd9a",
- "key": "vs",
- "keywords": ["vs", "SQUARED VS"],
- "category": "symbols",
- "lib": {
- "name": "SQUARED VS",
- "unified": "1F19A",
- "non_qualified": null,
- "docomo": null,
- "au": "E5D2",
- "softbank": "E12E",
- "google": "FEB32",
- "image": "1f19a.png",
- "sheet_x": 0,
- "sheet_y": 30,
- "short_name": "vs",
- "short_names": ["vs"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 167,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "flag-mu": {
- "char": "\ud83c\uddf2\ud83c\uddfa",
- "key": "flag-mu",
- "keywords": ["flag-mu", "Mauritius Flag"],
- "category": "flags",
- "lib": {
- "name": "Mauritius Flag",
- "unified": "1F1F2-1F1FA",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1f2-1f1fa.png",
- "sheet_x": 3,
- "sheet_y": 31,
- "short_name": "flag-mu",
- "short_names": ["flag-mu"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 167,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "new_moon_with_face": {
- "char": "\ud83c\udf1a",
- "key": "new_moon_with_face",
- "keywords": ["new_moon_with_face", "NEW MOON WITH FACE"],
- "category": "travel_and_places",
- "lib": {
- "name": "NEW MOON WITH FACE",
- "unified": "1F31A",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f31a.png",
- "sheet_x": 6,
- "sheet_y": 12,
- "short_name": "new_moon_with_face",
- "short_names": ["new_moon_with_face"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 167,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "female-construction-worker": {
- "char": "\ud83d\udc77\u200d\u2640\ufe0f",
- "key": "female-construction-worker",
- "keywords": ["female-construction-worker", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F477-200D-2640-FE0F",
- "non_qualified": "1F477-200D-2640",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f477-200d-2640-fe0f.png",
- "sheet_x": 22,
- "sheet_y": 43,
- "short_name": "female-construction-worker",
- "short_names": ["female-construction-worker"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 167,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F477-1F3FB-200D-2640-FE0F",
- "non_qualified": "1F477-1F3FB-200D-2640",
- "image": "1f477-1f3fb-200d-2640-fe0f.png",
- "sheet_x": 22,
- "sheet_y": 44,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F477-1F3FC-200D-2640-FE0F",
- "non_qualified": "1F477-1F3FC-200D-2640",
- "image": "1f477-1f3fc-200d-2640-fe0f.png",
- "sheet_x": 22,
- "sheet_y": 45,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F477-1F3FD-200D-2640-FE0F",
- "non_qualified": "1F477-1F3FD-200D-2640",
- "image": "1f477-1f3fd-200d-2640-fe0f.png",
- "sheet_x": 22,
- "sheet_y": 46,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F477-1F3FE-200D-2640-FE0F",
- "non_qualified": "1F477-1F3FE-200D-2640",
- "image": "1f477-1f3fe-200d-2640-fe0f.png",
- "sheet_x": 22,
- "sheet_y": 47,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F477-1F3FF-200D-2640-FE0F",
- "non_qualified": "1F477-1F3FF-200D-2640",
- "image": "1f477-1f3ff-200d-2640-fe0f.png",
- "sheet_x": 22,
- "sheet_y": 48,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- }
- }
- },
- "shower": {
- "char": "\ud83d\udebf",
- "key": "shower",
- "keywords": ["shower", "SHOWER"],
- "category": "objects",
- "lib": {
- "name": "SHOWER",
- "unified": "1F6BF",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f6bf.png",
- "sheet_x": 36,
- "sheet_y": 48,
- "short_name": "shower",
- "short_names": ["shower"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 167,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "flag-mv": {
- "char": "\ud83c\uddf2\ud83c\uddfb",
- "key": "flag-mv",
- "keywords": ["flag-mv", "Maldives Flag"],
- "category": "flags",
- "lib": {
- "name": "Maldives Flag",
- "unified": "1F1F2-1F1FB",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1f2-1f1fb.png",
- "sheet_x": 3,
- "sheet_y": 32,
- "short_name": "flag-mv",
- "short_names": ["flag-mv"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 168,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "koko": {
- "char": "\ud83c\ude01",
- "key": "koko",
- "keywords": ["koko", "SQUARED KATAKANA KOKO"],
- "category": "symbols",
- "lib": {
- "name": "SQUARED KATAKANA KOKO",
- "unified": "1F201",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": "E203",
- "google": "FEB24",
- "image": "1f201.png",
- "sheet_x": 5,
- "sheet_y": 24,
- "short_name": "koko",
- "short_names": ["koko"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 168,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "first_quarter_moon_with_face": {
- "char": "\ud83c\udf1b",
- "key": "first_quarter_moon_with_face",
- "keywords": ["first_quarter_moon_with_face", "FIRST QUARTER MOON WITH FACE"],
- "category": "travel_and_places",
- "lib": {
- "name": "FIRST QUARTER MOON WITH FACE",
- "unified": "1F31B",
- "non_qualified": null,
- "docomo": "E69E",
- "au": "E489",
- "softbank": null,
- "google": "FE016",
- "image": "1f31b.png",
- "sheet_x": 6,
- "sheet_y": 13,
- "short_name": "first_quarter_moon_with_face",
- "short_names": ["first_quarter_moon_with_face"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 168,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "bathtub": {
- "char": "\ud83d\udec1",
- "key": "bathtub",
- "keywords": ["bathtub", "BATHTUB"],
- "category": "objects",
- "lib": {
- "name": "BATHTUB",
- "unified": "1F6C1",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f6c1.png",
- "sheet_x": 37,
- "sheet_y": 2,
- "short_name": "bathtub",
- "short_names": ["bathtub"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 168,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "prince": {
- "char": "\ud83e\udd34",
- "key": "prince",
- "keywords": ["prince", "PRINCE"],
- "category": "people",
- "lib": {
- "name": "PRINCE",
- "unified": "1F934",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f934.png",
- "sheet_x": 39,
- "sheet_y": 39,
- "short_name": "prince",
- "short_names": ["prince"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 168,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F934-1F3FB",
- "non_qualified": null,
- "image": "1f934-1f3fb.png",
- "sheet_x": 39,
- "sheet_y": 40,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F934-1F3FC",
- "non_qualified": null,
- "image": "1f934-1f3fc.png",
- "sheet_x": 39,
- "sheet_y": 41,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F934-1F3FD",
- "non_qualified": null,
- "image": "1f934-1f3fd.png",
- "sheet_x": 39,
- "sheet_y": 42,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F934-1F3FE",
- "non_qualified": null,
- "image": "1f934-1f3fe.png",
- "sheet_x": 39,
- "sheet_y": 43,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F934-1F3FF",
- "non_qualified": null,
- "image": "1f934-1f3ff.png",
- "sheet_x": 39,
- "sheet_y": 44,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- }
- }
- },
- "flag-mw": {
- "char": "\ud83c\uddf2\ud83c\uddfc",
- "key": "flag-mw",
- "keywords": ["flag-mw", "Malawi Flag"],
- "category": "flags",
- "lib": {
- "name": "Malawi Flag",
- "unified": "1F1F2-1F1FC",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1f2-1f1fc.png",
- "sheet_x": 3,
- "sheet_y": 33,
- "short_name": "flag-mw",
- "short_names": ["flag-mw"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 169,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "sa": {
- "char": "\ud83c\ude02\ufe0f",
- "key": "sa",
- "keywords": ["sa", "SQUARED KATAKANA SA"],
- "category": "symbols",
- "lib": {
- "name": "SQUARED KATAKANA SA",
- "unified": "1F202-FE0F",
- "non_qualified": "1F202",
- "docomo": null,
- "au": "EA87",
- "softbank": "E228",
- "google": "FEB3F",
- "image": "1f202-fe0f.png",
- "sheet_x": 5,
- "sheet_y": 25,
- "short_name": "sa",
- "short_names": ["sa"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 169,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "last_quarter_moon_with_face": {
- "char": "\ud83c\udf1c",
- "key": "last_quarter_moon_with_face",
- "keywords": ["last_quarter_moon_with_face", "LAST QUARTER MOON WITH FACE"],
- "category": "travel_and_places",
- "lib": {
- "name": "LAST QUARTER MOON WITH FACE",
- "unified": "1F31C",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f31c.png",
- "sheet_x": 6,
- "sheet_y": 14,
- "short_name": "last_quarter_moon_with_face",
- "short_names": ["last_quarter_moon_with_face"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 169,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "princess": {
- "char": "\ud83d\udc78",
- "key": "princess",
- "keywords": ["princess", "PRINCESS"],
- "category": "people",
- "lib": {
- "name": "PRINCESS",
- "unified": "1F478",
- "non_qualified": null,
- "docomo": null,
- "au": "EB1A",
- "softbank": "E51C",
- "google": "FE1AB",
- "image": "1f478.png",
- "sheet_x": 23,
- "sheet_y": 8,
- "short_name": "princess",
- "short_names": ["princess"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 169,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F478-1F3FB",
- "non_qualified": null,
- "image": "1f478-1f3fb.png",
- "sheet_x": 23,
- "sheet_y": 9,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FC": {
- "unified": "1F478-1F3FC",
- "non_qualified": null,
- "image": "1f478-1f3fc.png",
- "sheet_x": 23,
- "sheet_y": 10,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FD": {
- "unified": "1F478-1F3FD",
- "non_qualified": null,
- "image": "1f478-1f3fd.png",
- "sheet_x": 23,
- "sheet_y": 11,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FE": {
- "unified": "1F478-1F3FE",
- "non_qualified": null,
- "image": "1f478-1f3fe.png",
- "sheet_x": 23,
- "sheet_y": 12,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FF": {
- "unified": "1F478-1F3FF",
- "non_qualified": null,
- "image": "1f478-1f3ff.png",
- "sheet_x": 23,
- "sheet_y": 13,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- }
- }
- },
- "lotion_bottle": {
- "char": "\ud83e\uddf4",
- "key": "lotion_bottle",
- "keywords": ["lotion_bottle", "LOTION BOTTLE"],
- "category": "objects",
- "lib": {
- "name": "LOTION BOTTLE",
- "unified": "1F9F4",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f9f4.png",
- "sheet_x": 48,
- "sheet_y": 8,
- "short_name": "lotion_bottle",
- "short_names": ["lotion_bottle"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 169,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- },
- "flag-mx": {
- "char": "\ud83c\uddf2\ud83c\uddfd",
- "key": "flag-mx",
- "keywords": ["flag-mx", "Mexico Flag"],
- "category": "flags",
- "lib": {
- "name": "Mexico Flag",
- "unified": "1F1F2-1F1FD",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1f2-1f1fd.png",
- "sheet_x": 3,
- "sheet_y": 34,
- "short_name": "flag-mx",
- "short_names": ["flag-mx"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 170,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "u6708": {
- "char": "\ud83c\ude37\ufe0f",
- "key": "u6708",
- "keywords": ["u6708", "SQUARED CJK UNIFIED IDEOGRAPH-6708"],
- "category": "symbols",
- "lib": {
- "name": "SQUARED CJK UNIFIED IDEOGRAPH-6708",
- "unified": "1F237-FE0F",
- "non_qualified": "1F237",
- "docomo": null,
- "au": null,
- "softbank": "E217",
- "google": "FEB3B",
- "image": "1f237-fe0f.png",
- "sheet_x": 5,
- "sheet_y": 33,
- "short_name": "u6708",
- "short_names": ["u6708"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 170,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "thermometer": {
- "char": "\ud83c\udf21\ufe0f",
- "key": "thermometer",
- "keywords": ["thermometer", ""],
- "category": "travel_and_places",
- "lib": {
- "name": null,
- "unified": "1F321-FE0F",
- "non_qualified": "1F321",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f321-fe0f.png",
- "sheet_x": 6,
- "sheet_y": 19,
- "short_name": "thermometer",
- "short_names": ["thermometer"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 170,
- "added_in": "7.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "safety_pin": {
- "char": "\ud83e\uddf7",
- "key": "safety_pin",
- "keywords": ["safety_pin", "SAFETY PIN"],
- "category": "objects",
- "lib": {
- "name": "SAFETY PIN",
- "unified": "1F9F7",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f9f7.png",
- "sheet_x": 48,
- "sheet_y": 11,
- "short_name": "safety_pin",
- "short_names": ["safety_pin"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 170,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- },
- "flag-my": {
- "char": "\ud83c\uddf2\ud83c\uddfe",
- "key": "flag-my",
- "keywords": ["flag-my", "Malaysia Flag"],
- "category": "flags",
- "lib": {
- "name": "Malaysia Flag",
- "unified": "1F1F2-1F1FE",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1f2-1f1fe.png",
- "sheet_x": 3,
- "sheet_y": 35,
- "short_name": "flag-my",
- "short_names": ["flag-my"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 171,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "u6709": {
- "char": "\ud83c\ude36",
- "key": "u6709",
- "keywords": ["u6709", "SQUARED CJK UNIFIED IDEOGRAPH-6709"],
- "category": "symbols",
- "lib": {
- "name": "SQUARED CJK UNIFIED IDEOGRAPH-6709",
- "unified": "1F236",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": "E215",
- "google": "FEB39",
- "image": "1f236.png",
- "sheet_x": 5,
- "sheet_y": 32,
- "short_name": "u6709",
- "short_names": ["u6709"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 171,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "man-wearing-turban": {
- "char": "\ud83d\udc73\u200d\u2642\ufe0f",
- "key": "man-wearing-turban",
- "keywords": ["man-wearing-turban", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F473-200D-2642-FE0F",
- "non_qualified": "1F473-200D-2642",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f473-200d-2642-fe0f.png",
- "sheet_x": 22,
- "sheet_y": 13,
- "short_name": "man-wearing-turban",
- "short_names": ["man-wearing-turban"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 171,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F473-1F3FB-200D-2642-FE0F",
- "non_qualified": "1F473-1F3FB-200D-2642",
- "image": "1f473-1f3fb-200d-2642-fe0f.png",
- "sheet_x": 22,
- "sheet_y": 14,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F473-1F3FC-200D-2642-FE0F",
- "non_qualified": "1F473-1F3FC-200D-2642",
- "image": "1f473-1f3fc-200d-2642-fe0f.png",
- "sheet_x": 22,
- "sheet_y": 15,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F473-1F3FD-200D-2642-FE0F",
- "non_qualified": "1F473-1F3FD-200D-2642",
- "image": "1f473-1f3fd-200d-2642-fe0f.png",
- "sheet_x": 22,
- "sheet_y": 16,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F473-1F3FE-200D-2642-FE0F",
- "non_qualified": "1F473-1F3FE-200D-2642",
- "image": "1f473-1f3fe-200d-2642-fe0f.png",
- "sheet_x": 22,
- "sheet_y": 17,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F473-1F3FF-200D-2642-FE0F",
- "non_qualified": "1F473-1F3FF-200D-2642",
- "image": "1f473-1f3ff-200d-2642-fe0f.png",
- "sheet_x": 22,
- "sheet_y": 18,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- },
- "obsoletes": "1F473"
- }
- },
- "broom": {
- "char": "\ud83e\uddf9",
- "key": "broom",
- "keywords": ["broom", "BROOM"],
- "category": "objects",
- "lib": {
- "name": "BROOM",
- "unified": "1F9F9",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f9f9.png",
- "sheet_x": 48,
- "sheet_y": 13,
- "short_name": "broom",
- "short_names": ["broom"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 171,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- },
- "sunny": {
- "char": "\u2600\ufe0f",
- "key": "sunny",
- "keywords": ["sunny", "BLACK SUN WITH RAYS"],
- "category": "travel_and_places",
- "lib": {
- "name": "BLACK SUN WITH RAYS",
- "unified": "2600-FE0F",
- "non_qualified": "2600",
- "docomo": "E63E",
- "au": "E488",
- "softbank": "E04A",
- "google": "FE000",
- "image": "2600-fe0f.png",
- "sheet_x": 49,
- "sheet_y": 6,
- "short_name": "sunny",
- "short_names": ["sunny"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 171,
- "added_in": "1.1",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "flag-mz": {
- "char": "\ud83c\uddf2\ud83c\uddff",
- "key": "flag-mz",
- "keywords": ["flag-mz", "Mozambique Flag"],
- "category": "flags",
- "lib": {
- "name": "Mozambique Flag",
- "unified": "1F1F2-1F1FF",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1f2-1f1ff.png",
- "sheet_x": 3,
- "sheet_y": 36,
- "short_name": "flag-mz",
- "short_names": ["flag-mz"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 172,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "u6307": {
- "char": "\ud83c\ude2f",
- "key": "u6307",
- "keywords": ["u6307", "SQUARED CJK UNIFIED IDEOGRAPH-6307"],
- "category": "symbols",
- "lib": {
- "name": "SQUARED CJK UNIFIED IDEOGRAPH-6307",
- "unified": "1F22F",
- "non_qualified": null,
- "docomo": null,
- "au": "EA8B",
- "softbank": "E22C",
- "google": "FEB40",
- "image": "1f22f.png",
- "sheet_x": 5,
- "sheet_y": 27,
- "short_name": "u6307",
- "short_names": ["u6307"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 172,
- "added_in": "5.2",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "full_moon_with_face": {
- "char": "\ud83c\udf1d",
- "key": "full_moon_with_face",
- "keywords": ["full_moon_with_face", "FULL MOON WITH FACE"],
- "category": "travel_and_places",
- "lib": {
- "name": "FULL MOON WITH FACE",
- "unified": "1F31D",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f31d.png",
- "sheet_x": 6,
- "sheet_y": 15,
- "short_name": "full_moon_with_face",
- "short_names": ["full_moon_with_face"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 172,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "woman-wearing-turban": {
- "char": "\ud83d\udc73\u200d\u2640\ufe0f",
- "key": "woman-wearing-turban",
- "keywords": ["woman-wearing-turban", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F473-200D-2640-FE0F",
- "non_qualified": "1F473-200D-2640",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f473-200d-2640-fe0f.png",
- "sheet_x": 22,
- "sheet_y": 7,
- "short_name": "woman-wearing-turban",
- "short_names": ["woman-wearing-turban"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 172,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F473-1F3FB-200D-2640-FE0F",
- "non_qualified": "1F473-1F3FB-200D-2640",
- "image": "1f473-1f3fb-200d-2640-fe0f.png",
- "sheet_x": 22,
- "sheet_y": 8,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F473-1F3FC-200D-2640-FE0F",
- "non_qualified": "1F473-1F3FC-200D-2640",
- "image": "1f473-1f3fc-200d-2640-fe0f.png",
- "sheet_x": 22,
- "sheet_y": 9,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F473-1F3FD-200D-2640-FE0F",
- "non_qualified": "1F473-1F3FD-200D-2640",
- "image": "1f473-1f3fd-200d-2640-fe0f.png",
- "sheet_x": 22,
- "sheet_y": 10,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F473-1F3FE-200D-2640-FE0F",
- "non_qualified": "1F473-1F3FE-200D-2640",
- "image": "1f473-1f3fe-200d-2640-fe0f.png",
- "sheet_x": 22,
- "sheet_y": 11,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F473-1F3FF-200D-2640-FE0F",
- "non_qualified": "1F473-1F3FF-200D-2640",
- "image": "1f473-1f3ff-200d-2640-fe0f.png",
- "sheet_x": 22,
- "sheet_y": 12,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- }
- }
- },
- "basket": {
- "char": "\ud83e\uddfa",
- "key": "basket",
- "keywords": ["basket", "BASKET"],
- "category": "objects",
- "lib": {
- "name": "BASKET",
- "unified": "1F9FA",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f9fa.png",
- "sheet_x": 48,
- "sheet_y": 14,
- "short_name": "basket",
- "short_names": ["basket"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 172,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- },
- "flag-na": {
- "char": "\ud83c\uddf3\ud83c\udde6",
- "key": "flag-na",
- "keywords": ["flag-na", "Namibia Flag"],
- "category": "flags",
- "lib": {
- "name": "Namibia Flag",
- "unified": "1F1F3-1F1E6",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1f3-1f1e6.png",
- "sheet_x": 3,
- "sheet_y": 37,
- "short_name": "flag-na",
- "short_names": ["flag-na"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 173,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "ideograph_advantage": {
- "char": "\ud83c\ude50",
- "key": "ideograph_advantage",
- "keywords": ["ideograph_advantage", "CIRCLED IDEOGRAPH ADVANTAGE"],
- "category": "symbols",
- "lib": {
- "name": "CIRCLED IDEOGRAPH ADVANTAGE",
- "unified": "1F250",
- "non_qualified": null,
- "docomo": null,
- "au": "E4F7",
- "softbank": "E226",
- "google": "FEB3D",
- "image": "1f250.png",
- "sheet_x": 5,
- "sheet_y": 37,
- "short_name": "ideograph_advantage",
- "short_names": ["ideograph_advantage"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 173,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "sun_with_face": {
- "char": "\ud83c\udf1e",
- "key": "sun_with_face",
- "keywords": ["sun_with_face", "SUN WITH FACE"],
- "category": "travel_and_places",
- "lib": {
- "name": "SUN WITH FACE",
- "unified": "1F31E",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f31e.png",
- "sheet_x": 6,
- "sheet_y": 16,
- "short_name": "sun_with_face",
- "short_names": ["sun_with_face"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 173,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "man_with_gua_pi_mao": {
- "char": "\ud83d\udc72",
- "key": "man_with_gua_pi_mao",
- "keywords": ["man_with_gua_pi_mao", "MAN WITH GUA PI MAO"],
- "category": "people",
- "lib": {
- "name": "MAN WITH GUA PI MAO",
- "unified": "1F472",
- "non_qualified": null,
- "docomo": null,
- "au": "EB14",
- "softbank": "E516",
- "google": "FE1A5",
- "image": "1f472.png",
- "sheet_x": 22,
- "sheet_y": 1,
- "short_name": "man_with_gua_pi_mao",
- "short_names": ["man_with_gua_pi_mao"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 173,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F472-1F3FB",
- "non_qualified": null,
- "image": "1f472-1f3fb.png",
- "sheet_x": 22,
- "sheet_y": 2,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FC": {
- "unified": "1F472-1F3FC",
- "non_qualified": null,
- "image": "1f472-1f3fc.png",
- "sheet_x": 22,
- "sheet_y": 3,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FD": {
- "unified": "1F472-1F3FD",
- "non_qualified": null,
- "image": "1f472-1f3fd.png",
- "sheet_x": 22,
- "sheet_y": 4,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FE": {
- "unified": "1F472-1F3FE",
- "non_qualified": null,
- "image": "1f472-1f3fe.png",
- "sheet_x": 22,
- "sheet_y": 5,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FF": {
- "unified": "1F472-1F3FF",
- "non_qualified": null,
- "image": "1f472-1f3ff.png",
- "sheet_x": 22,
- "sheet_y": 6,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- }
- }
- },
- "roll_of_paper": {
- "char": "\ud83e\uddfb",
- "key": "roll_of_paper",
- "keywords": ["roll_of_paper", "ROLL OF PAPER"],
- "category": "objects",
- "lib": {
- "name": "ROLL OF PAPER",
- "unified": "1F9FB",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f9fb.png",
- "sheet_x": 48,
- "sheet_y": 15,
- "short_name": "roll_of_paper",
- "short_names": ["roll_of_paper"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 173,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- },
- "flag-nc": {
- "char": "\ud83c\uddf3\ud83c\udde8",
- "key": "flag-nc",
- "keywords": ["flag-nc", "New Caledonia Flag"],
- "category": "flags",
- "lib": {
- "name": "New Caledonia Flag",
- "unified": "1F1F3-1F1E8",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1f3-1f1e8.png",
- "sheet_x": 3,
- "sheet_y": 38,
- "short_name": "flag-nc",
- "short_names": ["flag-nc"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 174,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": false,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "u5272": {
- "char": "\ud83c\ude39",
- "key": "u5272",
- "keywords": ["u5272", "SQUARED CJK UNIFIED IDEOGRAPH-5272"],
- "category": "symbols",
- "lib": {
- "name": "SQUARED CJK UNIFIED IDEOGRAPH-5272",
- "unified": "1F239",
- "non_qualified": null,
- "docomo": null,
- "au": "EA86",
- "softbank": "E227",
- "google": "FEB3E",
- "image": "1f239.png",
- "sheet_x": 5,
- "sheet_y": 35,
- "short_name": "u5272",
- "short_names": ["u5272"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 174,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "person_with_headscarf": {
- "char": "\ud83e\uddd5",
- "key": "person_with_headscarf",
- "keywords": ["person_with_headscarf", "PERSON WITH HEADSCARF"],
- "category": "people",
- "lib": {
- "name": "PERSON WITH HEADSCARF",
- "unified": "1F9D5",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f9d5.png",
- "sheet_x": 44,
- "sheet_y": 44,
- "short_name": "person_with_headscarf",
- "short_names": ["person_with_headscarf"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 174,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F9D5-1F3FB",
- "non_qualified": null,
- "image": "1f9d5-1f3fb.png",
- "sheet_x": 44,
- "sheet_y": 45,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F9D5-1F3FC",
- "non_qualified": null,
- "image": "1f9d5-1f3fc.png",
- "sheet_x": 44,
- "sheet_y": 46,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F9D5-1F3FD",
- "non_qualified": null,
- "image": "1f9d5-1f3fd.png",
- "sheet_x": 44,
- "sheet_y": 47,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F9D5-1F3FE",
- "non_qualified": null,
- "image": "1f9d5-1f3fe.png",
- "sheet_x": 44,
- "sheet_y": 48,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F9D5-1F3FF",
- "non_qualified": null,
- "image": "1f9d5-1f3ff.png",
- "sheet_x": 44,
- "sheet_y": 49,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- }
- }
- },
- "soap": {
- "char": "\ud83e\uddfc",
- "key": "soap",
- "keywords": ["soap", "BAR OF SOAP"],
- "category": "objects",
- "lib": {
- "name": "BAR OF SOAP",
- "unified": "1F9FC",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f9fc.png",
- "sheet_x": 48,
- "sheet_y": 16,
- "short_name": "soap",
- "short_names": ["soap"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 174,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- },
- "star": {
- "char": "\u2b50",
- "key": "star",
- "keywords": ["star", "WHITE MEDIUM STAR"],
- "category": "travel_and_places",
- "lib": {
- "name": "WHITE MEDIUM STAR",
- "unified": "2B50",
- "non_qualified": null,
- "docomo": null,
- "au": "E48B",
- "softbank": "E32F",
- "google": "FEB68",
- "image": "2b50.png",
- "sheet_x": 52,
- "sheet_y": 11,
- "short_name": "star",
- "short_names": ["star"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 174,
- "added_in": "5.1",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "flag-ne": {
- "char": "\ud83c\uddf3\ud83c\uddea",
- "key": "flag-ne",
- "keywords": ["flag-ne", "Niger Flag"],
- "category": "flags",
- "lib": {
- "name": "Niger Flag",
- "unified": "1F1F3-1F1EA",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1f3-1f1ea.png",
- "sheet_x": 3,
- "sheet_y": 39,
- "short_name": "flag-ne",
- "short_names": ["flag-ne"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 175,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "u7121": {
- "char": "\ud83c\ude1a",
- "key": "u7121",
- "keywords": ["u7121", "SQUARED CJK UNIFIED IDEOGRAPH-7121"],
- "category": "symbols",
- "lib": {
- "name": "SQUARED CJK UNIFIED IDEOGRAPH-7121",
- "unified": "1F21A",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": "E216",
- "google": "FEB3A",
- "image": "1f21a.png",
- "sheet_x": 5,
- "sheet_y": 26,
- "short_name": "u7121",
- "short_names": ["u7121"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 175,
- "added_in": "5.2",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "star2": {
- "char": "\ud83c\udf1f",
- "key": "star2",
- "keywords": ["star2", "GLOWING STAR"],
- "category": "travel_and_places",
- "lib": {
- "name": "GLOWING STAR",
- "unified": "1F31F",
- "non_qualified": null,
- "docomo": null,
- "au": "E48B",
- "softbank": "E335",
- "google": "FEB69",
- "image": "1f31f.png",
- "sheet_x": 6,
- "sheet_y": 17,
- "short_name": "star2",
- "short_names": ["star2"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 175,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "bearded_person": {
- "char": "\ud83e\uddd4",
- "key": "bearded_person",
- "keywords": ["bearded_person", "BEARDED PERSON"],
- "category": "people",
- "lib": {
- "name": "BEARDED PERSON",
- "unified": "1F9D4",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f9d4.png",
- "sheet_x": 44,
- "sheet_y": 38,
- "short_name": "bearded_person",
- "short_names": ["bearded_person"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 175,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F9D4-1F3FB",
- "non_qualified": null,
- "image": "1f9d4-1f3fb.png",
- "sheet_x": 44,
- "sheet_y": 39,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F9D4-1F3FC",
- "non_qualified": null,
- "image": "1f9d4-1f3fc.png",
- "sheet_x": 44,
- "sheet_y": 40,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F9D4-1F3FD",
- "non_qualified": null,
- "image": "1f9d4-1f3fd.png",
- "sheet_x": 44,
- "sheet_y": 41,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F9D4-1F3FE",
- "non_qualified": null,
- "image": "1f9d4-1f3fe.png",
- "sheet_x": 44,
- "sheet_y": 42,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F9D4-1F3FF",
- "non_qualified": null,
- "image": "1f9d4-1f3ff.png",
- "sheet_x": 44,
- "sheet_y": 43,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- }
- }
- },
- "sponge": {
- "char": "\ud83e\uddfd",
- "key": "sponge",
- "keywords": ["sponge", "SPONGE"],
- "category": "objects",
- "lib": {
- "name": "SPONGE",
- "unified": "1F9FD",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f9fd.png",
- "sheet_x": 48,
- "sheet_y": 17,
- "short_name": "sponge",
- "short_names": ["sponge"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 175,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- },
- "flag-nf": {
- "char": "\ud83c\uddf3\ud83c\uddeb",
- "key": "flag-nf",
- "keywords": ["flag-nf", "Norfolk Island Flag"],
- "category": "flags",
- "lib": {
- "name": "Norfolk Island Flag",
- "unified": "1F1F3-1F1EB",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1f3-1f1eb.png",
- "sheet_x": 3,
- "sheet_y": 40,
- "short_name": "flag-nf",
- "short_names": ["flag-nf"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 176,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "u7981": {
- "char": "\ud83c\ude32",
- "key": "u7981",
- "keywords": ["u7981", "SQUARED CJK UNIFIED IDEOGRAPH-7981"],
- "category": "symbols",
- "lib": {
- "name": "SQUARED CJK UNIFIED IDEOGRAPH-7981",
- "unified": "1F232",
- "non_qualified": null,
- "docomo": "E738",
- "au": null,
- "softbank": null,
- "google": "FEB2E",
- "image": "1f232.png",
- "sheet_x": 5,
- "sheet_y": 28,
- "short_name": "u7981",
- "short_names": ["u7981"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 176,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "stars": {
- "char": "\ud83c\udf20",
- "key": "stars",
- "keywords": ["stars", "SHOOTING STAR"],
- "category": "travel_and_places",
- "lib": {
- "name": "SHOOTING STAR",
- "unified": "1F320",
- "non_qualified": null,
- "docomo": null,
- "au": "E468",
- "softbank": null,
- "google": "FEB6A",
- "image": "1f320.png",
- "sheet_x": 6,
- "sheet_y": 18,
- "short_name": "stars",
- "short_names": ["stars"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 176,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "fire_extinguisher": {
- "char": "\ud83e\uddef",
- "key": "fire_extinguisher",
- "keywords": ["fire_extinguisher", "FIRE EXTINGUISHER"],
- "category": "objects",
- "lib": {
- "name": "FIRE EXTINGUISHER",
- "unified": "1F9EF",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f9ef.png",
- "sheet_x": 48,
- "sheet_y": 3,
- "short_name": "fire_extinguisher",
- "short_names": ["fire_extinguisher"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 176,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- },
- "flag-ng": {
- "char": "\ud83c\uddf3\ud83c\uddec",
- "key": "flag-ng",
- "keywords": ["flag-ng", "Nigeria Flag"],
- "category": "flags",
- "lib": {
- "name": "Nigeria Flag",
- "unified": "1F1F3-1F1EC",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1f3-1f1ec.png",
- "sheet_x": 3,
- "sheet_y": 41,
- "short_name": "flag-ng",
- "short_names": ["flag-ng"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 177,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "accept": {
- "char": "\ud83c\ude51",
- "key": "accept",
- "keywords": ["accept", "CIRCLED IDEOGRAPH ACCEPT"],
- "category": "symbols",
- "lib": {
- "name": "CIRCLED IDEOGRAPH ACCEPT",
- "unified": "1F251",
- "non_qualified": null,
- "docomo": null,
- "au": "EB01",
- "softbank": null,
- "google": "FEB50",
- "image": "1f251.png",
- "sheet_x": 5,
- "sheet_y": 38,
- "short_name": "accept",
- "short_names": ["accept"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 177,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "blond-haired-man": {
- "char": "\ud83d\udc71\u200d\u2642\ufe0f",
- "key": "blond-haired-man",
- "keywords": ["blond-haired-man", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F471-200D-2642-FE0F",
- "non_qualified": "1F471-200D-2642",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f471-200d-2642-fe0f.png",
- "sheet_x": 21,
- "sheet_y": 42,
- "short_name": "blond-haired-man",
- "short_names": ["blond-haired-man"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 177,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F471-1F3FB-200D-2642-FE0F",
- "non_qualified": "1F471-1F3FB-200D-2642",
- "image": "1f471-1f3fb-200d-2642-fe0f.png",
- "sheet_x": 21,
- "sheet_y": 43,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F471-1F3FC-200D-2642-FE0F",
- "non_qualified": "1F471-1F3FC-200D-2642",
- "image": "1f471-1f3fc-200d-2642-fe0f.png",
- "sheet_x": 21,
- "sheet_y": 44,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F471-1F3FD-200D-2642-FE0F",
- "non_qualified": "1F471-1F3FD-200D-2642",
- "image": "1f471-1f3fd-200d-2642-fe0f.png",
- "sheet_x": 21,
- "sheet_y": 45,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F471-1F3FE-200D-2642-FE0F",
- "non_qualified": "1F471-1F3FE-200D-2642",
- "image": "1f471-1f3fe-200d-2642-fe0f.png",
- "sheet_x": 21,
- "sheet_y": 46,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F471-1F3FF-200D-2642-FE0F",
- "non_qualified": "1F471-1F3FF-200D-2642",
- "image": "1f471-1f3ff-200d-2642-fe0f.png",
- "sheet_x": 21,
- "sheet_y": 47,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- },
- "obsoletes": "1F471"
- }
- },
- "shopping_trolley": {
- "char": "\ud83d\uded2",
- "key": "shopping_trolley",
- "keywords": ["shopping_trolley", "SHOPPING TROLLEY"],
- "category": "objects",
- "lib": {
- "name": "SHOPPING TROLLEY",
- "unified": "1F6D2",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f6d2.png",
- "sheet_x": 37,
- "sheet_y": 19,
- "short_name": "shopping_trolley",
- "short_names": ["shopping_trolley"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 177,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "cloud": {
- "char": "\u2601\ufe0f",
- "key": "cloud",
- "keywords": ["cloud", "CLOUD"],
- "category": "travel_and_places",
- "lib": {
- "name": "CLOUD",
- "unified": "2601-FE0F",
- "non_qualified": "2601",
- "docomo": "E63F",
- "au": "E48D",
- "softbank": "E049",
- "google": "FE001",
- "image": "2601-fe0f.png",
- "sheet_x": 49,
- "sheet_y": 7,
- "short_name": "cloud",
- "short_names": ["cloud"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 177,
- "added_in": "1.1",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "flag-ni": {
- "char": "\ud83c\uddf3\ud83c\uddee",
- "key": "flag-ni",
- "keywords": ["flag-ni", "Nicaragua Flag"],
- "category": "flags",
- "lib": {
- "name": "Nicaragua Flag",
- "unified": "1F1F3-1F1EE",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1f3-1f1ee.png",
- "sheet_x": 3,
- "sheet_y": 42,
- "short_name": "flag-ni",
- "short_names": ["flag-ni"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 178,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "u7533": {
- "char": "\ud83c\ude38",
- "key": "u7533",
- "keywords": ["u7533", "SQUARED CJK UNIFIED IDEOGRAPH-7533"],
- "category": "symbols",
- "lib": {
- "name": "SQUARED CJK UNIFIED IDEOGRAPH-7533",
- "unified": "1F238",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": "E218",
- "google": "FEB3C",
- "image": "1f238.png",
- "sheet_x": 5,
- "sheet_y": 34,
- "short_name": "u7533",
- "short_names": ["u7533"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 178,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "blond-haired-woman": {
- "char": "\ud83d\udc71\u200d\u2640\ufe0f",
- "key": "blond-haired-woman",
- "keywords": ["blond-haired-woman", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F471-200D-2640-FE0F",
- "non_qualified": "1F471-200D-2640",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f471-200d-2640-fe0f.png",
- "sheet_x": 21,
- "sheet_y": 36,
- "short_name": "blond-haired-woman",
- "short_names": ["blond-haired-woman"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 178,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F471-1F3FB-200D-2640-FE0F",
- "non_qualified": "1F471-1F3FB-200D-2640",
- "image": "1f471-1f3fb-200d-2640-fe0f.png",
- "sheet_x": 21,
- "sheet_y": 37,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F471-1F3FC-200D-2640-FE0F",
- "non_qualified": "1F471-1F3FC-200D-2640",
- "image": "1f471-1f3fc-200d-2640-fe0f.png",
- "sheet_x": 21,
- "sheet_y": 38,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F471-1F3FD-200D-2640-FE0F",
- "non_qualified": "1F471-1F3FD-200D-2640",
- "image": "1f471-1f3fd-200d-2640-fe0f.png",
- "sheet_x": 21,
- "sheet_y": 39,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F471-1F3FE-200D-2640-FE0F",
- "non_qualified": "1F471-1F3FE-200D-2640",
- "image": "1f471-1f3fe-200d-2640-fe0f.png",
- "sheet_x": 21,
- "sheet_y": 40,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F471-1F3FF-200D-2640-FE0F",
- "non_qualified": "1F471-1F3FF-200D-2640",
- "image": "1f471-1f3ff-200d-2640-fe0f.png",
- "sheet_x": 21,
- "sheet_y": 41,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- }
- }
- },
- "smoking": {
- "char": "\ud83d\udeac",
- "key": "smoking",
- "keywords": ["smoking", "SMOKING SYMBOL"],
- "category": "objects",
- "lib": {
- "name": "SMOKING SYMBOL",
- "unified": "1F6AC",
- "non_qualified": null,
- "docomo": "E67F",
- "au": "E47D",
- "softbank": "E30E",
- "google": "FEB1E",
- "image": "1f6ac.png",
- "sheet_x": 35,
- "sheet_y": 31,
- "short_name": "smoking",
- "short_names": ["smoking"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 178,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "partly_sunny": {
- "char": "\u26c5",
- "key": "partly_sunny",
- "keywords": ["partly_sunny", "SUN BEHIND CLOUD"],
- "category": "travel_and_places",
- "lib": {
- "name": "SUN BEHIND CLOUD",
- "unified": "26C5",
- "non_qualified": null,
- "docomo": "E63E-E63F",
- "au": "E48E",
- "softbank": null,
- "google": "FE00F",
- "image": "26c5.png",
- "sheet_x": 50,
- "sheet_y": 20,
- "short_name": "partly_sunny",
- "short_names": ["partly_sunny"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 178,
- "added_in": "5.2",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "flag-nl": {
- "char": "\ud83c\uddf3\ud83c\uddf1",
- "key": "flag-nl",
- "keywords": ["flag-nl", "Netherlands Flag"],
- "category": "flags",
- "lib": {
- "name": "Netherlands Flag",
- "unified": "1F1F3-1F1F1",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1f3-1f1f1.png",
- "sheet_x": 3,
- "sheet_y": 43,
- "short_name": "flag-nl",
- "short_names": ["flag-nl"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 179,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "u5408": {
- "char": "\ud83c\ude34",
- "key": "u5408",
- "keywords": ["u5408", "SQUARED CJK UNIFIED IDEOGRAPH-5408"],
- "category": "symbols",
- "lib": {
- "name": "SQUARED CJK UNIFIED IDEOGRAPH-5408",
- "unified": "1F234",
- "non_qualified": null,
- "docomo": "E73A",
- "au": null,
- "softbank": null,
- "google": "FEB30",
- "image": "1f234.png",
- "sheet_x": 5,
- "sheet_y": 30,
- "short_name": "u5408",
- "short_names": ["u5408"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 179,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "male_red_haired": {
- "char": "\ud83d\udc68\u200d\ud83e\uddb0",
- "key": "male_red_haired",
- "keywords": ["male_red_haired", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F468-200D-1F9B0",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f468-200d-1f9b0.png",
- "sheet_x": 17,
- "sheet_y": 27,
- "short_name": "male_red_haired",
- "short_names": ["male_red_haired"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 179,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F468-1F3FB-200D-1F9B0",
- "non_qualified": null,
- "image": "1f468-1f3fb-200d-1f9b0.png",
- "sheet_x": 17,
- "sheet_y": 28,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F468-1F3FC-200D-1F9B0",
- "non_qualified": null,
- "image": "1f468-1f3fc-200d-1f9b0.png",
- "sheet_x": 17,
- "sheet_y": 29,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F468-1F3FD-200D-1F9B0",
- "non_qualified": null,
- "image": "1f468-1f3fd-200d-1f9b0.png",
- "sheet_x": 17,
- "sheet_y": 30,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F468-1F3FE-200D-1F9B0",
- "non_qualified": null,
- "image": "1f468-1f3fe-200d-1f9b0.png",
- "sheet_x": 17,
- "sheet_y": 31,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F468-1F3FF-200D-1F9B0",
- "non_qualified": null,
- "image": "1f468-1f3ff-200d-1f9b0.png",
- "sheet_x": 17,
- "sheet_y": 32,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- }
- }
- },
- "coffin": {
- "char": "\u26b0\ufe0f",
- "key": "coffin",
- "keywords": ["coffin", ""],
- "category": "objects",
- "lib": {
- "name": null,
- "unified": "26B0-FE0F",
- "non_qualified": "26B0",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "26b0-fe0f.png",
- "sheet_x": 50,
- "sheet_y": 15,
- "short_name": "coffin",
- "short_names": ["coffin"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 179,
- "added_in": "4.1",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "thunder_cloud_and_rain": {
- "char": "\u26c8\ufe0f",
- "key": "thunder_cloud_and_rain",
- "keywords": ["thunder_cloud_and_rain", ""],
- "category": "travel_and_places",
- "lib": {
- "name": null,
- "unified": "26C8-FE0F",
- "non_qualified": "26C8",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "26c8-fe0f.png",
- "sheet_x": 50,
- "sheet_y": 21,
- "short_name": "thunder_cloud_and_rain",
- "short_names": ["thunder_cloud_and_rain"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 179,
- "added_in": "5.2",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "flag-no": {
- "char": "\ud83c\uddf3\ud83c\uddf4",
- "key": "flag-no",
- "keywords": ["flag-no", "Norway Flag"],
- "category": "flags",
- "lib": {
- "name": "Norway Flag",
- "unified": "1F1F3-1F1F4",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1f3-1f1f4.png",
- "sheet_x": 3,
- "sheet_y": 44,
- "short_name": "flag-no",
- "short_names": ["flag-no"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 180,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "u7a7a": {
- "char": "\ud83c\ude33",
- "key": "u7a7a",
- "keywords": ["u7a7a", "SQUARED CJK UNIFIED IDEOGRAPH-7A7A"],
- "category": "symbols",
- "lib": {
- "name": "SQUARED CJK UNIFIED IDEOGRAPH-7A7A",
- "unified": "1F233",
- "non_qualified": null,
- "docomo": "E739",
- "au": "EA8A",
- "softbank": "E22B",
- "google": "FEB2F",
- "image": "1f233.png",
- "sheet_x": 5,
- "sheet_y": 29,
- "short_name": "u7a7a",
- "short_names": ["u7a7a"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 180,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "mostly_sunny": {
- "char": "\ud83c\udf24\ufe0f",
- "key": "mostly_sunny",
- "keywords": ["mostly_sunny", ""],
- "category": "travel_and_places",
- "lib": {
- "name": null,
- "unified": "1F324-FE0F",
- "non_qualified": "1F324",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f324-fe0f.png",
- "sheet_x": 6,
- "sheet_y": 20,
- "short_name": "mostly_sunny",
- "short_names": ["mostly_sunny", "sun_small_cloud"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 180,
- "added_in": "7.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "female_red_haired": {
- "char": "\ud83d\udc69\u200d\ud83e\uddb0",
- "key": "female_red_haired",
- "keywords": ["female_red_haired", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F469-200D-1F9B0",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f469-200d-1f9b0.png",
- "sheet_x": 20,
- "sheet_y": 6,
- "short_name": "female_red_haired",
- "short_names": ["female_red_haired"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 180,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F469-1F3FB-200D-1F9B0",
- "non_qualified": null,
- "image": "1f469-1f3fb-200d-1f9b0.png",
- "sheet_x": 20,
- "sheet_y": 7,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F469-1F3FC-200D-1F9B0",
- "non_qualified": null,
- "image": "1f469-1f3fc-200d-1f9b0.png",
- "sheet_x": 20,
- "sheet_y": 8,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F469-1F3FD-200D-1F9B0",
- "non_qualified": null,
- "image": "1f469-1f3fd-200d-1f9b0.png",
- "sheet_x": 20,
- "sheet_y": 9,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F469-1F3FE-200D-1F9B0",
- "non_qualified": null,
- "image": "1f469-1f3fe-200d-1f9b0.png",
- "sheet_x": 20,
- "sheet_y": 10,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F469-1F3FF-200D-1F9B0",
- "non_qualified": null,
- "image": "1f469-1f3ff-200d-1f9b0.png",
- "sheet_x": 20,
- "sheet_y": 11,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- }
- }
- },
- "funeral_urn": {
- "char": "\u26b1\ufe0f",
- "key": "funeral_urn",
- "keywords": ["funeral_urn", ""],
- "category": "objects",
- "lib": {
- "name": null,
- "unified": "26B1-FE0F",
- "non_qualified": "26B1",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "26b1-fe0f.png",
- "sheet_x": 50,
- "sheet_y": 16,
- "short_name": "funeral_urn",
- "short_names": ["funeral_urn"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 180,
- "added_in": "4.1",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "flag-np": {
- "char": "\ud83c\uddf3\ud83c\uddf5",
- "key": "flag-np",
- "keywords": ["flag-np", "Nepal Flag"],
- "category": "flags",
- "lib": {
- "name": "Nepal Flag",
- "unified": "1F1F3-1F1F5",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1f3-1f1f5.png",
- "sheet_x": 3,
- "sheet_y": 45,
- "short_name": "flag-np",
- "short_names": ["flag-np"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 181,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "barely_sunny": {
- "char": "\ud83c\udf25\ufe0f",
- "key": "barely_sunny",
- "keywords": ["barely_sunny", ""],
- "category": "travel_and_places",
- "lib": {
- "name": null,
- "unified": "1F325-FE0F",
- "non_qualified": "1F325",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f325-fe0f.png",
- "sheet_x": 6,
- "sheet_y": 21,
- "short_name": "barely_sunny",
- "short_names": ["barely_sunny", "sun_behind_cloud"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 181,
- "added_in": "7.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "male_curly_haired": {
- "char": "\ud83d\udc68\u200d\ud83e\uddb1",
- "key": "male_curly_haired",
- "keywords": ["male_curly_haired", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F468-200D-1F9B1",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f468-200d-1f9b1.png",
- "sheet_x": 17,
- "sheet_y": 33,
- "short_name": "male_curly_haired",
- "short_names": ["male_curly_haired"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 181,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F468-1F3FB-200D-1F9B1",
- "non_qualified": null,
- "image": "1f468-1f3fb-200d-1f9b1.png",
- "sheet_x": 17,
- "sheet_y": 34,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F468-1F3FC-200D-1F9B1",
- "non_qualified": null,
- "image": "1f468-1f3fc-200d-1f9b1.png",
- "sheet_x": 17,
- "sheet_y": 35,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F468-1F3FD-200D-1F9B1",
- "non_qualified": null,
- "image": "1f468-1f3fd-200d-1f9b1.png",
- "sheet_x": 17,
- "sheet_y": 36,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F468-1F3FE-200D-1F9B1",
- "non_qualified": null,
- "image": "1f468-1f3fe-200d-1f9b1.png",
- "sheet_x": 17,
- "sheet_y": 37,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F468-1F3FF-200D-1F9B1",
- "non_qualified": null,
- "image": "1f468-1f3ff-200d-1f9b1.png",
- "sheet_x": 17,
- "sheet_y": 38,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- }
- }
- },
- "moyai": {
- "char": "\ud83d\uddff",
- "key": "moyai",
- "keywords": ["moyai", "MOYAI"],
- "category": "objects",
- "lib": {
- "name": "MOYAI",
- "unified": "1F5FF",
- "non_qualified": null,
- "docomo": null,
- "au": "EB6C",
- "softbank": null,
- "google": "FE4C8",
- "image": "1f5ff.png",
- "sheet_x": 30,
- "sheet_y": 42,
- "short_name": "moyai",
- "short_names": ["moyai"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 181,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "congratulations": {
- "char": "\u3297\ufe0f",
- "key": "congratulations",
- "keywords": ["congratulations", "CIRCLED IDEOGRAPH CONGRATULATION"],
- "category": "symbols",
- "lib": {
- "name": "CIRCLED IDEOGRAPH CONGRATULATION",
- "unified": "3297-FE0F",
- "non_qualified": "3297",
- "docomo": null,
- "au": "EA99",
- "softbank": "E30D",
- "google": "FEB43",
- "image": "3297-fe0f.png",
- "sheet_x": 52,
- "sheet_y": 15,
- "short_name": "congratulations",
- "short_names": ["congratulations"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 181,
- "added_in": "1.1",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "flag-nr": {
- "char": "\ud83c\uddf3\ud83c\uddf7",
- "key": "flag-nr",
- "keywords": ["flag-nr", "Nauru Flag"],
- "category": "flags",
- "lib": {
- "name": "Nauru Flag",
- "unified": "1F1F3-1F1F7",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1f3-1f1f7.png",
- "sheet_x": 3,
- "sheet_y": 46,
- "short_name": "flag-nr",
- "short_names": ["flag-nr"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 182,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "partly_sunny_rain": {
- "char": "\ud83c\udf26\ufe0f",
- "key": "partly_sunny_rain",
- "keywords": ["partly_sunny_rain", ""],
- "category": "travel_and_places",
- "lib": {
- "name": null,
- "unified": "1F326-FE0F",
- "non_qualified": "1F326",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f326-fe0f.png",
- "sheet_x": 6,
- "sheet_y": 22,
- "short_name": "partly_sunny_rain",
- "short_names": ["partly_sunny_rain", "sun_behind_rain_cloud"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 182,
- "added_in": "7.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "female_curly_haired": {
- "char": "\ud83d\udc69\u200d\ud83e\uddb1",
- "key": "female_curly_haired",
- "keywords": ["female_curly_haired", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F469-200D-1F9B1",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f469-200d-1f9b1.png",
- "sheet_x": 20,
- "sheet_y": 12,
- "short_name": "female_curly_haired",
- "short_names": ["female_curly_haired"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 182,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F469-1F3FB-200D-1F9B1",
- "non_qualified": null,
- "image": "1f469-1f3fb-200d-1f9b1.png",
- "sheet_x": 20,
- "sheet_y": 13,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F469-1F3FC-200D-1F9B1",
- "non_qualified": null,
- "image": "1f469-1f3fc-200d-1f9b1.png",
- "sheet_x": 20,
- "sheet_y": 14,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F469-1F3FD-200D-1F9B1",
- "non_qualified": null,
- "image": "1f469-1f3fd-200d-1f9b1.png",
- "sheet_x": 20,
- "sheet_y": 15,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F469-1F3FE-200D-1F9B1",
- "non_qualified": null,
- "image": "1f469-1f3fe-200d-1f9b1.png",
- "sheet_x": 20,
- "sheet_y": 16,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F469-1F3FF-200D-1F9B1",
- "non_qualified": null,
- "image": "1f469-1f3ff-200d-1f9b1.png",
- "sheet_x": 20,
- "sheet_y": 17,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- }
- }
- },
- "secret": {
- "char": "\u3299\ufe0f",
- "key": "secret",
- "keywords": ["secret", "CIRCLED IDEOGRAPH SECRET"],
- "category": "symbols",
- "lib": {
- "name": "CIRCLED IDEOGRAPH SECRET",
- "unified": "3299-FE0F",
- "non_qualified": "3299",
- "docomo": "E734",
- "au": "E4F1",
- "softbank": "E315",
- "google": "FEB2B",
- "image": "3299-fe0f.png",
- "sheet_x": 52,
- "sheet_y": 16,
- "short_name": "secret",
- "short_names": ["secret"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 182,
- "added_in": "1.1",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "flag-nu": {
- "char": "\ud83c\uddf3\ud83c\uddfa",
- "key": "flag-nu",
- "keywords": ["flag-nu", "Niue Flag"],
- "category": "flags",
- "lib": {
- "name": "Niue Flag",
- "unified": "1F1F3-1F1FA",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1f3-1f1fa.png",
- "sheet_x": 3,
- "sheet_y": 47,
- "short_name": "flag-nu",
- "short_names": ["flag-nu"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 183,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "u55b6": {
- "char": "\ud83c\ude3a",
- "key": "u55b6",
- "keywords": ["u55b6", "SQUARED CJK UNIFIED IDEOGRAPH-55B6"],
- "category": "symbols",
- "lib": {
- "name": "SQUARED CJK UNIFIED IDEOGRAPH-55B6",
- "unified": "1F23A",
- "non_qualified": null,
- "docomo": null,
- "au": "EA8C",
- "softbank": "E22D",
- "google": "FEB41",
- "image": "1f23a.png",
- "sheet_x": 5,
- "sheet_y": 36,
- "short_name": "u55b6",
- "short_names": ["u55b6"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 183,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "rain_cloud": {
- "char": "\ud83c\udf27\ufe0f",
- "key": "rain_cloud",
- "keywords": ["rain_cloud", ""],
- "category": "travel_and_places",
- "lib": {
- "name": null,
- "unified": "1F327-FE0F",
- "non_qualified": "1F327",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f327-fe0f.png",
- "sheet_x": 6,
- "sheet_y": 23,
- "short_name": "rain_cloud",
- "short_names": ["rain_cloud"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 183,
- "added_in": "7.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "male_bald": {
- "char": "\ud83d\udc68\u200d\ud83e\uddb2",
- "key": "male_bald",
- "keywords": ["male_bald", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F468-200D-1F9B2",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f468-200d-1f9b2.png",
- "sheet_x": 17,
- "sheet_y": 39,
- "short_name": "male_bald",
- "short_names": ["male_bald"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 183,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F468-1F3FB-200D-1F9B2",
- "non_qualified": null,
- "image": "1f468-1f3fb-200d-1f9b2.png",
- "sheet_x": 17,
- "sheet_y": 40,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F468-1F3FC-200D-1F9B2",
- "non_qualified": null,
- "image": "1f468-1f3fc-200d-1f9b2.png",
- "sheet_x": 17,
- "sheet_y": 41,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F468-1F3FD-200D-1F9B2",
- "non_qualified": null,
- "image": "1f468-1f3fd-200d-1f9b2.png",
- "sheet_x": 17,
- "sheet_y": 42,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F468-1F3FE-200D-1F9B2",
- "non_qualified": null,
- "image": "1f468-1f3fe-200d-1f9b2.png",
- "sheet_x": 17,
- "sheet_y": 43,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F468-1F3FF-200D-1F9B2",
- "non_qualified": null,
- "image": "1f468-1f3ff-200d-1f9b2.png",
- "sheet_x": 17,
- "sheet_y": 44,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- }
- }
- },
- "flag-nz": {
- "char": "\ud83c\uddf3\ud83c\uddff",
- "key": "flag-nz",
- "keywords": ["flag-nz", "New Zealand Flag"],
- "category": "flags",
- "lib": {
- "name": "New Zealand Flag",
- "unified": "1F1F3-1F1FF",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1f3-1f1ff.png",
- "sheet_x": 3,
- "sheet_y": 48,
- "short_name": "flag-nz",
- "short_names": ["flag-nz"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 184,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "u6e80": {
- "char": "\ud83c\ude35",
- "key": "u6e80",
- "keywords": ["u6e80", "SQUARED CJK UNIFIED IDEOGRAPH-6E80"],
- "category": "symbols",
- "lib": {
- "name": "SQUARED CJK UNIFIED IDEOGRAPH-6E80",
- "unified": "1F235",
- "non_qualified": null,
- "docomo": "E73B",
- "au": "EA89",
- "softbank": "E22A",
- "google": "FEB31",
- "image": "1f235.png",
- "sheet_x": 5,
- "sheet_y": 31,
- "short_name": "u6e80",
- "short_names": ["u6e80"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 184,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "snow_cloud": {
- "char": "\ud83c\udf28\ufe0f",
- "key": "snow_cloud",
- "keywords": ["snow_cloud", ""],
- "category": "travel_and_places",
- "lib": {
- "name": null,
- "unified": "1F328-FE0F",
- "non_qualified": "1F328",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f328-fe0f.png",
- "sheet_x": 6,
- "sheet_y": 24,
- "short_name": "snow_cloud",
- "short_names": ["snow_cloud"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 184,
- "added_in": "7.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "female_bald": {
- "char": "\ud83d\udc69\u200d\ud83e\uddb2",
- "key": "female_bald",
- "keywords": ["female_bald", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F469-200D-1F9B2",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f469-200d-1f9b2.png",
- "sheet_x": 20,
- "sheet_y": 18,
- "short_name": "female_bald",
- "short_names": ["female_bald"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 184,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F469-1F3FB-200D-1F9B2",
- "non_qualified": null,
- "image": "1f469-1f3fb-200d-1f9b2.png",
- "sheet_x": 20,
- "sheet_y": 19,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F469-1F3FC-200D-1F9B2",
- "non_qualified": null,
- "image": "1f469-1f3fc-200d-1f9b2.png",
- "sheet_x": 20,
- "sheet_y": 20,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F469-1F3FD-200D-1F9B2",
- "non_qualified": null,
- "image": "1f469-1f3fd-200d-1f9b2.png",
- "sheet_x": 20,
- "sheet_y": 21,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F469-1F3FE-200D-1F9B2",
- "non_qualified": null,
- "image": "1f469-1f3fe-200d-1f9b2.png",
- "sheet_x": 20,
- "sheet_y": 22,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F469-1F3FF-200D-1F9B2",
- "non_qualified": null,
- "image": "1f469-1f3ff-200d-1f9b2.png",
- "sheet_x": 20,
- "sheet_y": 23,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- }
- }
- },
- "flag-om": {
- "char": "\ud83c\uddf4\ud83c\uddf2",
- "key": "flag-om",
- "keywords": ["flag-om", "Oman Flag"],
- "category": "flags",
- "lib": {
- "name": "Oman Flag",
- "unified": "1F1F4-1F1F2",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1f4-1f1f2.png",
- "sheet_x": 3,
- "sheet_y": 49,
- "short_name": "flag-om",
- "short_names": ["flag-om"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 185,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "lightning": {
- "char": "\ud83c\udf29\ufe0f",
- "key": "lightning",
- "keywords": ["lightning", ""],
- "category": "travel_and_places",
- "lib": {
- "name": null,
- "unified": "1F329-FE0F",
- "non_qualified": "1F329",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f329-fe0f.png",
- "sheet_x": 6,
- "sheet_y": 25,
- "short_name": "lightning",
- "short_names": ["lightning", "lightning_cloud"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 185,
- "added_in": "7.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "male_white_haired": {
- "char": "\ud83d\udc68\u200d\ud83e\uddb3",
- "key": "male_white_haired",
- "keywords": ["male_white_haired", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F468-200D-1F9B3",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f468-200d-1f9b3.png",
- "sheet_x": 17,
- "sheet_y": 45,
- "short_name": "male_white_haired",
- "short_names": ["male_white_haired"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 185,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F468-1F3FB-200D-1F9B3",
- "non_qualified": null,
- "image": "1f468-1f3fb-200d-1f9b3.png",
- "sheet_x": 17,
- "sheet_y": 46,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F468-1F3FC-200D-1F9B3",
- "non_qualified": null,
- "image": "1f468-1f3fc-200d-1f9b3.png",
- "sheet_x": 17,
- "sheet_y": 47,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F468-1F3FD-200D-1F9B3",
- "non_qualified": null,
- "image": "1f468-1f3fd-200d-1f9b3.png",
- "sheet_x": 17,
- "sheet_y": 48,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F468-1F3FE-200D-1F9B3",
- "non_qualified": null,
- "image": "1f468-1f3fe-200d-1f9b3.png",
- "sheet_x": 17,
- "sheet_y": 49,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F468-1F3FF-200D-1F9B3",
- "non_qualified": null,
- "image": "1f468-1f3ff-200d-1f9b3.png",
- "sheet_x": 17,
- "sheet_y": 50,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- }
- }
- },
- "black_small_square": {
- "char": "\u25aa\ufe0f",
- "key": "black_small_square",
- "keywords": ["black_small_square", "BLACK SMALL SQUARE"],
- "category": "symbols",
- "lib": {
- "name": "BLACK SMALL SQUARE",
- "unified": "25AA-FE0F",
- "non_qualified": "25AA",
- "docomo": null,
- "au": "E532",
- "softbank": null,
- "google": "FEB6E",
- "image": "25aa-fe0f.png",
- "sheet_x": 48,
- "sheet_y": 51,
- "short_name": "black_small_square",
- "short_names": ["black_small_square"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 185,
- "added_in": "1.1",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "flag-pa": {
- "char": "\ud83c\uddf5\ud83c\udde6",
- "key": "flag-pa",
- "keywords": ["flag-pa", "Panama Flag"],
- "category": "flags",
- "lib": {
- "name": "Panama Flag",
- "unified": "1F1F5-1F1E6",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1f5-1f1e6.png",
- "sheet_x": 3,
- "sheet_y": 50,
- "short_name": "flag-pa",
- "short_names": ["flag-pa"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 186,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "tornado": {
- "char": "\ud83c\udf2a\ufe0f",
- "key": "tornado",
- "keywords": ["tornado", ""],
- "category": "travel_and_places",
- "lib": {
- "name": null,
- "unified": "1F32A-FE0F",
- "non_qualified": "1F32A",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f32a-fe0f.png",
- "sheet_x": 6,
- "sheet_y": 26,
- "short_name": "tornado",
- "short_names": ["tornado", "tornado_cloud"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 186,
- "added_in": "7.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "female_white_haired": {
- "char": "\ud83d\udc69\u200d\ud83e\uddb3",
- "key": "female_white_haired",
- "keywords": ["female_white_haired", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F469-200D-1F9B3",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f469-200d-1f9b3.png",
- "sheet_x": 20,
- "sheet_y": 24,
- "short_name": "female_white_haired",
- "short_names": ["female_white_haired"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 186,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F469-1F3FB-200D-1F9B3",
- "non_qualified": null,
- "image": "1f469-1f3fb-200d-1f9b3.png",
- "sheet_x": 20,
- "sheet_y": 25,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F469-1F3FC-200D-1F9B3",
- "non_qualified": null,
- "image": "1f469-1f3fc-200d-1f9b3.png",
- "sheet_x": 20,
- "sheet_y": 26,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F469-1F3FD-200D-1F9B3",
- "non_qualified": null,
- "image": "1f469-1f3fd-200d-1f9b3.png",
- "sheet_x": 20,
- "sheet_y": 27,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F469-1F3FE-200D-1F9B3",
- "non_qualified": null,
- "image": "1f469-1f3fe-200d-1f9b3.png",
- "sheet_x": 20,
- "sheet_y": 28,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F469-1F3FF-200D-1F9B3",
- "non_qualified": null,
- "image": "1f469-1f3ff-200d-1f9b3.png",
- "sheet_x": 20,
- "sheet_y": 29,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- }
- }
- },
- "white_small_square": {
- "char": "\u25ab\ufe0f",
- "key": "white_small_square",
- "keywords": ["white_small_square", "WHITE SMALL SQUARE"],
- "category": "symbols",
- "lib": {
- "name": "WHITE SMALL SQUARE",
- "unified": "25AB-FE0F",
- "non_qualified": "25AB",
- "docomo": null,
- "au": "E531",
- "softbank": null,
- "google": "FEB6D",
- "image": "25ab-fe0f.png",
- "sheet_x": 48,
- "sheet_y": 52,
- "short_name": "white_small_square",
- "short_names": ["white_small_square"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 186,
- "added_in": "1.1",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "flag-pe": {
- "char": "\ud83c\uddf5\ud83c\uddea",
- "key": "flag-pe",
- "keywords": ["flag-pe", "Peru Flag"],
- "category": "flags",
- "lib": {
- "name": "Peru Flag",
- "unified": "1F1F5-1F1EA",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1f5-1f1ea.png",
- "sheet_x": 3,
- "sheet_y": 51,
- "short_name": "flag-pe",
- "short_names": ["flag-pe"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 187,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "fog": {
- "char": "\ud83c\udf2b\ufe0f",
- "key": "fog",
- "keywords": ["fog", ""],
- "category": "travel_and_places",
- "lib": {
- "name": null,
- "unified": "1F32B-FE0F",
- "non_qualified": "1F32B",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f32b-fe0f.png",
- "sheet_x": 6,
- "sheet_y": 27,
- "short_name": "fog",
- "short_names": ["fog"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 187,
- "added_in": "7.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "man_in_tuxedo": {
- "char": "\ud83e\udd35",
- "key": "man_in_tuxedo",
- "keywords": ["man_in_tuxedo", "MAN IN TUXEDO"],
- "category": "people",
- "lib": {
- "name": "MAN IN TUXEDO",
- "unified": "1F935",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f935.png",
- "sheet_x": 39,
- "sheet_y": 45,
- "short_name": "man_in_tuxedo",
- "short_names": ["man_in_tuxedo"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 187,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F935-1F3FB",
- "non_qualified": null,
- "image": "1f935-1f3fb.png",
- "sheet_x": 39,
- "sheet_y": 46,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F935-1F3FC",
- "non_qualified": null,
- "image": "1f935-1f3fc.png",
- "sheet_x": 39,
- "sheet_y": 47,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F935-1F3FD",
- "non_qualified": null,
- "image": "1f935-1f3fd.png",
- "sheet_x": 39,
- "sheet_y": 48,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F935-1F3FE",
- "non_qualified": null,
- "image": "1f935-1f3fe.png",
- "sheet_x": 39,
- "sheet_y": 49,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F935-1F3FF",
- "non_qualified": null,
- "image": "1f935-1f3ff.png",
- "sheet_x": 39,
- "sheet_y": 50,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- }
- }
- },
- "white_medium_square": {
- "char": "\u25fb\ufe0f",
- "key": "white_medium_square",
- "keywords": ["white_medium_square", "WHITE MEDIUM SQUARE"],
- "category": "symbols",
- "lib": {
- "name": "WHITE MEDIUM SQUARE",
- "unified": "25FB-FE0F",
- "non_qualified": "25FB",
- "docomo": null,
- "au": "E538",
- "softbank": null,
- "google": "FEB71",
- "image": "25fb-fe0f.png",
- "sheet_x": 49,
- "sheet_y": 2,
- "short_name": "white_medium_square",
- "short_names": ["white_medium_square"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 187,
- "added_in": "3.2",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "flag-pf": {
- "char": "\ud83c\uddf5\ud83c\uddeb",
- "key": "flag-pf",
- "keywords": ["flag-pf", "French Polynesia Flag"],
- "category": "flags",
- "lib": {
- "name": "French Polynesia Flag",
- "unified": "1F1F5-1F1EB",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1f5-1f1eb.png",
- "sheet_x": 3,
- "sheet_y": 52,
- "short_name": "flag-pf",
- "short_names": ["flag-pf"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 188,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "wind_blowing_face": {
- "char": "\ud83c\udf2c\ufe0f",
- "key": "wind_blowing_face",
- "keywords": ["wind_blowing_face", ""],
- "category": "travel_and_places",
- "lib": {
- "name": null,
- "unified": "1F32C-FE0F",
- "non_qualified": "1F32C",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f32c-fe0f.png",
- "sheet_x": 6,
- "sheet_y": 28,
- "short_name": "wind_blowing_face",
- "short_names": ["wind_blowing_face"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 188,
- "added_in": "7.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "bride_with_veil": {
- "char": "\ud83d\udc70",
- "key": "bride_with_veil",
- "keywords": ["bride_with_veil", "BRIDE WITH VEIL"],
- "category": "people",
- "lib": {
- "name": "BRIDE WITH VEIL",
- "unified": "1F470",
- "non_qualified": null,
- "docomo": null,
- "au": "EAE9",
- "softbank": null,
- "google": "FE1A3",
- "image": "1f470.png",
- "sheet_x": 21,
- "sheet_y": 30,
- "short_name": "bride_with_veil",
- "short_names": ["bride_with_veil"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 188,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F470-1F3FB",
- "non_qualified": null,
- "image": "1f470-1f3fb.png",
- "sheet_x": 21,
- "sheet_y": 31,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FC": {
- "unified": "1F470-1F3FC",
- "non_qualified": null,
- "image": "1f470-1f3fc.png",
- "sheet_x": 21,
- "sheet_y": 32,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FD": {
- "unified": "1F470-1F3FD",
- "non_qualified": null,
- "image": "1f470-1f3fd.png",
- "sheet_x": 21,
- "sheet_y": 33,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FE": {
- "unified": "1F470-1F3FE",
- "non_qualified": null,
- "image": "1f470-1f3fe.png",
- "sheet_x": 21,
- "sheet_y": 34,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FF": {
- "unified": "1F470-1F3FF",
- "non_qualified": null,
- "image": "1f470-1f3ff.png",
- "sheet_x": 21,
- "sheet_y": 35,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- }
- }
- },
- "black_medium_square": {
- "char": "\u25fc\ufe0f",
- "key": "black_medium_square",
- "keywords": ["black_medium_square", "BLACK MEDIUM SQUARE"],
- "category": "symbols",
- "lib": {
- "name": "BLACK MEDIUM SQUARE",
- "unified": "25FC-FE0F",
- "non_qualified": "25FC",
- "docomo": null,
- "au": "E539",
- "softbank": null,
- "google": "FEB72",
- "image": "25fc-fe0f.png",
- "sheet_x": 49,
- "sheet_y": 3,
- "short_name": "black_medium_square",
- "short_names": ["black_medium_square"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 188,
- "added_in": "3.2",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "flag-pg": {
- "char": "\ud83c\uddf5\ud83c\uddec",
- "key": "flag-pg",
- "keywords": ["flag-pg", "Papua New Guinea Flag"],
- "category": "flags",
- "lib": {
- "name": "Papua New Guinea Flag",
- "unified": "1F1F5-1F1EC",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1f5-1f1ec.png",
- "sheet_x": 4,
- "sheet_y": 0,
- "short_name": "flag-pg",
- "short_names": ["flag-pg"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 189,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "cyclone": {
- "char": "\ud83c\udf00",
- "key": "cyclone",
- "keywords": ["cyclone", "CYCLONE"],
- "category": "travel_and_places",
- "lib": {
- "name": "CYCLONE",
- "unified": "1F300",
- "non_qualified": null,
- "docomo": "E643",
- "au": "E469",
- "softbank": "E443",
- "google": "FE005",
- "image": "1f300.png",
- "sheet_x": 5,
- "sheet_y": 39,
- "short_name": "cyclone",
- "short_names": ["cyclone"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 189,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "pregnant_woman": {
- "char": "\ud83e\udd30",
- "key": "pregnant_woman",
- "keywords": ["pregnant_woman", "PREGNANT WOMAN"],
- "category": "people",
- "lib": {
- "name": "PREGNANT WOMAN",
- "unified": "1F930",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f930.png",
- "sheet_x": 39,
- "sheet_y": 15,
- "short_name": "pregnant_woman",
- "short_names": ["pregnant_woman"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 189,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F930-1F3FB",
- "non_qualified": null,
- "image": "1f930-1f3fb.png",
- "sheet_x": 39,
- "sheet_y": 16,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F930-1F3FC",
- "non_qualified": null,
- "image": "1f930-1f3fc.png",
- "sheet_x": 39,
- "sheet_y": 17,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F930-1F3FD",
- "non_qualified": null,
- "image": "1f930-1f3fd.png",
- "sheet_x": 39,
- "sheet_y": 18,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F930-1F3FE",
- "non_qualified": null,
- "image": "1f930-1f3fe.png",
- "sheet_x": 39,
- "sheet_y": 19,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F930-1F3FF",
- "non_qualified": null,
- "image": "1f930-1f3ff.png",
- "sheet_x": 39,
- "sheet_y": 20,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- }
- }
- },
- "white_medium_small_square": {
- "char": "\u25fd",
- "key": "white_medium_small_square",
- "keywords": ["white_medium_small_square", "WHITE MEDIUM SMALL SQUARE"],
- "category": "symbols",
- "lib": {
- "name": "WHITE MEDIUM SMALL SQUARE",
- "unified": "25FD",
- "non_qualified": null,
- "docomo": null,
- "au": "E534",
- "softbank": null,
- "google": "FEB6F",
- "image": "25fd.png",
- "sheet_x": 49,
- "sheet_y": 4,
- "short_name": "white_medium_small_square",
- "short_names": ["white_medium_small_square"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 189,
- "added_in": "3.2",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "flag-ph": {
- "char": "\ud83c\uddf5\ud83c\udded",
- "key": "flag-ph",
- "keywords": ["flag-ph", "Philippines Flag"],
- "category": "flags",
- "lib": {
- "name": "Philippines Flag",
- "unified": "1F1F5-1F1ED",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1f5-1f1ed.png",
- "sheet_x": 4,
- "sheet_y": 1,
- "short_name": "flag-ph",
- "short_names": ["flag-ph"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 190,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "rainbow": {
- "char": "\ud83c\udf08",
- "key": "rainbow",
- "keywords": ["rainbow", "RAINBOW"],
- "category": "travel_and_places",
- "lib": {
- "name": "RAINBOW",
- "unified": "1F308",
- "non_qualified": null,
- "docomo": null,
- "au": "EAF2",
- "softbank": "E44C",
- "google": "FE00D",
- "image": "1f308.png",
- "sheet_x": 5,
- "sheet_y": 47,
- "short_name": "rainbow",
- "short_names": ["rainbow"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 190,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "breast-feeding": {
- "char": "\ud83e\udd31",
- "key": "breast-feeding",
- "keywords": ["breast-feeding", "BREAST-FEEDING"],
- "category": "people",
- "lib": {
- "name": "BREAST-FEEDING",
- "unified": "1F931",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f931.png",
- "sheet_x": 39,
- "sheet_y": 21,
- "short_name": "breast-feeding",
- "short_names": ["breast-feeding"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 190,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F931-1F3FB",
- "non_qualified": null,
- "image": "1f931-1f3fb.png",
- "sheet_x": 39,
- "sheet_y": 22,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F931-1F3FC",
- "non_qualified": null,
- "image": "1f931-1f3fc.png",
- "sheet_x": 39,
- "sheet_y": 23,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F931-1F3FD",
- "non_qualified": null,
- "image": "1f931-1f3fd.png",
- "sheet_x": 39,
- "sheet_y": 24,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F931-1F3FE",
- "non_qualified": null,
- "image": "1f931-1f3fe.png",
- "sheet_x": 39,
- "sheet_y": 25,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F931-1F3FF",
- "non_qualified": null,
- "image": "1f931-1f3ff.png",
- "sheet_x": 39,
- "sheet_y": 26,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- }
- }
- },
- "black_medium_small_square": {
- "char": "\u25fe",
- "key": "black_medium_small_square",
- "keywords": ["black_medium_small_square", "BLACK MEDIUM SMALL SQUARE"],
- "category": "symbols",
- "lib": {
- "name": "BLACK MEDIUM SMALL SQUARE",
- "unified": "25FE",
- "non_qualified": null,
- "docomo": null,
- "au": "E535",
- "softbank": null,
- "google": "FEB70",
- "image": "25fe.png",
- "sheet_x": 49,
- "sheet_y": 5,
- "short_name": "black_medium_small_square",
- "short_names": ["black_medium_small_square"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 190,
- "added_in": "3.2",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "flag-pk": {
- "char": "\ud83c\uddf5\ud83c\uddf0",
- "key": "flag-pk",
- "keywords": ["flag-pk", "Pakistan Flag"],
- "category": "flags",
- "lib": {
- "name": "Pakistan Flag",
- "unified": "1F1F5-1F1F0",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1f5-1f1f0.png",
- "sheet_x": 4,
- "sheet_y": 2,
- "short_name": "flag-pk",
- "short_names": ["flag-pk"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 191,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "closed_umbrella": {
- "char": "\ud83c\udf02",
- "key": "closed_umbrella",
- "keywords": ["closed_umbrella", "CLOSED UMBRELLA"],
- "category": "travel_and_places",
- "lib": {
- "name": "CLOSED UMBRELLA",
- "unified": "1F302",
- "non_qualified": null,
- "docomo": "E645",
- "au": "EAE8",
- "softbank": "E43C",
- "google": "FE007",
- "image": "1f302.png",
- "sheet_x": 5,
- "sheet_y": 41,
- "short_name": "closed_umbrella",
- "short_names": ["closed_umbrella"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 191,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "angel": {
- "char": "\ud83d\udc7c",
- "key": "angel",
- "keywords": ["angel", "BABY ANGEL"],
- "category": "people",
- "lib": {
- "name": "BABY ANGEL",
- "unified": "1F47C",
- "non_qualified": null,
- "docomo": null,
- "au": "E5BF",
- "softbank": "E04E",
- "google": "FE1AF",
- "image": "1f47c.png",
- "sheet_x": 23,
- "sheet_y": 17,
- "short_name": "angel",
- "short_names": ["angel"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 191,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F47C-1F3FB",
- "non_qualified": null,
- "image": "1f47c-1f3fb.png",
- "sheet_x": 23,
- "sheet_y": 18,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FC": {
- "unified": "1F47C-1F3FC",
- "non_qualified": null,
- "image": "1f47c-1f3fc.png",
- "sheet_x": 23,
- "sheet_y": 19,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FD": {
- "unified": "1F47C-1F3FD",
- "non_qualified": null,
- "image": "1f47c-1f3fd.png",
- "sheet_x": 23,
- "sheet_y": 20,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FE": {
- "unified": "1F47C-1F3FE",
- "non_qualified": null,
- "image": "1f47c-1f3fe.png",
- "sheet_x": 23,
- "sheet_y": 21,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FF": {
- "unified": "1F47C-1F3FF",
- "non_qualified": null,
- "image": "1f47c-1f3ff.png",
- "sheet_x": 23,
- "sheet_y": 22,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- }
- }
- },
- "black_large_square": {
- "char": "\u2b1b",
- "key": "black_large_square",
- "keywords": ["black_large_square", "BLACK LARGE SQUARE"],
- "category": "symbols",
- "lib": {
- "name": "BLACK LARGE SQUARE",
- "unified": "2B1B",
- "non_qualified": null,
- "docomo": null,
- "au": "E549",
- "softbank": null,
- "google": "FEB6C",
- "image": "2b1b.png",
- "sheet_x": 52,
- "sheet_y": 9,
- "short_name": "black_large_square",
- "short_names": ["black_large_square"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 191,
- "added_in": "5.1",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "flag-pl": {
- "char": "\ud83c\uddf5\ud83c\uddf1",
- "key": "flag-pl",
- "keywords": ["flag-pl", "Poland Flag"],
- "category": "flags",
- "lib": {
- "name": "Poland Flag",
- "unified": "1F1F5-1F1F1",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1f5-1f1f1.png",
- "sheet_x": 4,
- "sheet_y": 3,
- "short_name": "flag-pl",
- "short_names": ["flag-pl"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 192,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "santa": {
- "char": "\ud83c\udf85",
- "key": "santa",
- "keywords": ["santa", "FATHER CHRISTMAS"],
- "category": "people",
- "lib": {
- "name": "FATHER CHRISTMAS",
- "unified": "1F385",
- "non_qualified": null,
- "docomo": null,
- "au": "EAF0",
- "softbank": "E448",
- "google": "FE513",
- "image": "1f385.png",
- "sheet_x": 8,
- "sheet_y": 11,
- "short_name": "santa",
- "short_names": ["santa"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 192,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F385-1F3FB",
- "non_qualified": null,
- "image": "1f385-1f3fb.png",
- "sheet_x": 8,
- "sheet_y": 12,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FC": {
- "unified": "1F385-1F3FC",
- "non_qualified": null,
- "image": "1f385-1f3fc.png",
- "sheet_x": 8,
- "sheet_y": 13,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FD": {
- "unified": "1F385-1F3FD",
- "non_qualified": null,
- "image": "1f385-1f3fd.png",
- "sheet_x": 8,
- "sheet_y": 14,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FE": {
- "unified": "1F385-1F3FE",
- "non_qualified": null,
- "image": "1f385-1f3fe.png",
- "sheet_x": 8,
- "sheet_y": 15,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FF": {
- "unified": "1F385-1F3FF",
- "non_qualified": null,
- "image": "1f385-1f3ff.png",
- "sheet_x": 8,
- "sheet_y": 16,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- }
- }
- },
- "umbrella": {
- "char": "\u2602\ufe0f",
- "key": "umbrella",
- "keywords": ["umbrella", ""],
- "category": "travel_and_places",
- "lib": {
- "name": null,
- "unified": "2602-FE0F",
- "non_qualified": "2602",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "2602-fe0f.png",
- "sheet_x": 49,
- "sheet_y": 8,
- "short_name": "umbrella",
- "short_names": ["umbrella"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 192,
- "added_in": "1.1",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "white_large_square": {
- "char": "\u2b1c",
- "key": "white_large_square",
- "keywords": ["white_large_square", "WHITE LARGE SQUARE"],
- "category": "symbols",
- "lib": {
- "name": "WHITE LARGE SQUARE",
- "unified": "2B1C",
- "non_qualified": null,
- "docomo": null,
- "au": "E548",
- "softbank": null,
- "google": "FEB6B",
- "image": "2b1c.png",
- "sheet_x": 52,
- "sheet_y": 10,
- "short_name": "white_large_square",
- "short_names": ["white_large_square"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 192,
- "added_in": "5.1",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "flag-pm": {
- "char": "\ud83c\uddf5\ud83c\uddf2",
- "key": "flag-pm",
- "keywords": ["flag-pm", "St. Pierre & Miquelon Flag"],
- "category": "flags",
- "lib": {
- "name": "St. Pierre & Miquelon Flag",
- "unified": "1F1F5-1F1F2",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1f5-1f1f2.png",
- "sheet_x": 4,
- "sheet_y": 4,
- "short_name": "flag-pm",
- "short_names": ["flag-pm"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 193,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": false,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "large_orange_diamond": {
- "char": "\ud83d\udd36",
- "key": "large_orange_diamond",
- "keywords": ["large_orange_diamond", "LARGE ORANGE DIAMOND"],
- "category": "symbols",
- "lib": {
- "name": "LARGE ORANGE DIAMOND",
- "unified": "1F536",
- "non_qualified": null,
- "docomo": null,
- "au": "E546",
- "softbank": null,
- "google": "FEB73",
- "image": "1f536.png",
- "sheet_x": 28,
- "sheet_y": 25,
- "short_name": "large_orange_diamond",
- "short_names": ["large_orange_diamond"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 193,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "mrs_claus": {
- "char": "\ud83e\udd36",
- "key": "mrs_claus",
- "keywords": ["mrs_claus", "MOTHER CHRISTMAS"],
- "category": "people",
- "lib": {
- "name": "MOTHER CHRISTMAS",
- "unified": "1F936",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f936.png",
- "sheet_x": 39,
- "sheet_y": 51,
- "short_name": "mrs_claus",
- "short_names": ["mrs_claus", "mother_christmas"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 193,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F936-1F3FB",
- "non_qualified": null,
- "image": "1f936-1f3fb.png",
- "sheet_x": 39,
- "sheet_y": 52,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F936-1F3FC",
- "non_qualified": null,
- "image": "1f936-1f3fc.png",
- "sheet_x": 40,
- "sheet_y": 0,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F936-1F3FD",
- "non_qualified": null,
- "image": "1f936-1f3fd.png",
- "sheet_x": 40,
- "sheet_y": 1,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F936-1F3FE",
- "non_qualified": null,
- "image": "1f936-1f3fe.png",
- "sheet_x": 40,
- "sheet_y": 2,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F936-1F3FF",
- "non_qualified": null,
- "image": "1f936-1f3ff.png",
- "sheet_x": 40,
- "sheet_y": 3,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- }
- }
- },
- "umbrella_with_rain_drops": {
- "char": "\u2614",
- "key": "umbrella_with_rain_drops",
- "keywords": ["umbrella_with_rain_drops", "UMBRELLA WITH RAIN DROPS"],
- "category": "travel_and_places",
- "lib": {
- "name": "UMBRELLA WITH RAIN DROPS",
- "unified": "2614",
- "non_qualified": null,
- "docomo": "E640",
- "au": "E48C",
- "softbank": "E04B",
- "google": "FE002",
- "image": "2614.png",
- "sheet_x": 49,
- "sheet_y": 13,
- "short_name": "umbrella_with_rain_drops",
- "short_names": ["umbrella_with_rain_drops"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 193,
- "added_in": "4.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "flag-pn": {
- "char": "\ud83c\uddf5\ud83c\uddf3",
- "key": "flag-pn",
- "keywords": ["flag-pn", "Pitcairn Islands Flag"],
- "category": "flags",
- "lib": {
- "name": "Pitcairn Islands Flag",
- "unified": "1F1F5-1F1F3",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1f5-1f1f3.png",
- "sheet_x": 4,
- "sheet_y": 5,
- "short_name": "flag-pn",
- "short_names": ["flag-pn"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 194,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "large_blue_diamond": {
- "char": "\ud83d\udd37",
- "key": "large_blue_diamond",
- "keywords": ["large_blue_diamond", "LARGE BLUE DIAMOND"],
- "category": "symbols",
- "lib": {
- "name": "LARGE BLUE DIAMOND",
- "unified": "1F537",
- "non_qualified": null,
- "docomo": null,
- "au": "E547",
- "softbank": null,
- "google": "FEB74",
- "image": "1f537.png",
- "sheet_x": 28,
- "sheet_y": 26,
- "short_name": "large_blue_diamond",
- "short_names": ["large_blue_diamond"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 194,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "umbrella_on_ground": {
- "char": "\u26f1\ufe0f",
- "key": "umbrella_on_ground",
- "keywords": ["umbrella_on_ground", ""],
- "category": "travel_and_places",
- "lib": {
- "name": null,
- "unified": "26F1-FE0F",
- "non_qualified": "26F1",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "26f1-fe0f.png",
- "sheet_x": 50,
- "sheet_y": 30,
- "short_name": "umbrella_on_ground",
- "short_names": ["umbrella_on_ground"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 194,
- "added_in": "5.2",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "flag-pr": {
- "char": "\ud83c\uddf5\ud83c\uddf7",
- "key": "flag-pr",
- "keywords": ["flag-pr", "Puerto Rico Flag"],
- "category": "flags",
- "lib": {
- "name": "Puerto Rico Flag",
- "unified": "1F1F5-1F1F7",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1f5-1f1f7.png",
- "sheet_x": 4,
- "sheet_y": 6,
- "short_name": "flag-pr",
- "short_names": ["flag-pr"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 195,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "small_orange_diamond": {
- "char": "\ud83d\udd38",
- "key": "small_orange_diamond",
- "keywords": ["small_orange_diamond", "SMALL ORANGE DIAMOND"],
- "category": "symbols",
- "lib": {
- "name": "SMALL ORANGE DIAMOND",
- "unified": "1F538",
- "non_qualified": null,
- "docomo": null,
- "au": "E536",
- "softbank": null,
- "google": "FEB75",
- "image": "1f538.png",
- "sheet_x": 28,
- "sheet_y": 27,
- "short_name": "small_orange_diamond",
- "short_names": ["small_orange_diamond"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 195,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "female_mage": {
- "char": "\ud83e\uddd9\u200d\u2640\ufe0f",
- "key": "female_mage",
- "keywords": ["female_mage", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F9D9-200D-2640-FE0F",
- "non_qualified": "1F9D9-200D-2640",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f9d9-200d-2640-fe0f.png",
- "sheet_x": 45,
- "sheet_y": 51,
- "short_name": "female_mage",
- "short_names": ["female_mage"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 195,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F9D9-1F3FB-200D-2640-FE0F",
- "non_qualified": "1F9D9-1F3FB-200D-2640",
- "image": "1f9d9-1f3fb-200d-2640-fe0f.png",
- "sheet_x": 45,
- "sheet_y": 52,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false,
- "obsoletes": "1F9D9-1F3FB"
- },
- "1F3FC": {
- "unified": "1F9D9-1F3FC-200D-2640-FE0F",
- "non_qualified": "1F9D9-1F3FC-200D-2640",
- "image": "1f9d9-1f3fc-200d-2640-fe0f.png",
- "sheet_x": 46,
- "sheet_y": 0,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false,
- "obsoletes": "1F9D9-1F3FC"
- },
- "1F3FD": {
- "unified": "1F9D9-1F3FD-200D-2640-FE0F",
- "non_qualified": "1F9D9-1F3FD-200D-2640",
- "image": "1f9d9-1f3fd-200d-2640-fe0f.png",
- "sheet_x": 46,
- "sheet_y": 1,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false,
- "obsoletes": "1F9D9-1F3FD"
- },
- "1F3FE": {
- "unified": "1F9D9-1F3FE-200D-2640-FE0F",
- "non_qualified": "1F9D9-1F3FE-200D-2640",
- "image": "1f9d9-1f3fe-200d-2640-fe0f.png",
- "sheet_x": 46,
- "sheet_y": 2,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false,
- "obsoletes": "1F9D9-1F3FE"
- },
- "1F3FF": {
- "unified": "1F9D9-1F3FF-200D-2640-FE0F",
- "non_qualified": "1F9D9-1F3FF-200D-2640",
- "image": "1f9d9-1f3ff-200d-2640-fe0f.png",
- "sheet_x": 46,
- "sheet_y": 3,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false,
- "obsoletes": "1F9D9-1F3FF"
- }
- },
- "obsoletes": "1F9D9"
- }
- },
- "zap": {
- "char": "\u26a1",
- "key": "zap",
- "keywords": ["zap", "HIGH VOLTAGE SIGN"],
- "category": "travel_and_places",
- "lib": {
- "name": "HIGH VOLTAGE SIGN",
- "unified": "26A1",
- "non_qualified": null,
- "docomo": "E642",
- "au": "E487",
- "softbank": "E13D",
- "google": "FE004",
- "image": "26a1.png",
- "sheet_x": 50,
- "sheet_y": 12,
- "short_name": "zap",
- "short_names": ["zap"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 195,
- "added_in": "4.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "flag-ps": {
- "char": "\ud83c\uddf5\ud83c\uddf8",
- "key": "flag-ps",
- "keywords": ["flag-ps", "Palestinian Territories Flag"],
- "category": "flags",
- "lib": {
- "name": "Palestinian Territories Flag",
- "unified": "1F1F5-1F1F8",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1f5-1f1f8.png",
- "sheet_x": 4,
- "sheet_y": 7,
- "short_name": "flag-ps",
- "short_names": ["flag-ps"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 196,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "small_blue_diamond": {
- "char": "\ud83d\udd39",
- "key": "small_blue_diamond",
- "keywords": ["small_blue_diamond", "SMALL BLUE DIAMOND"],
- "category": "symbols",
- "lib": {
- "name": "SMALL BLUE DIAMOND",
- "unified": "1F539",
- "non_qualified": null,
- "docomo": null,
- "au": "E537",
- "softbank": null,
- "google": "FEB76",
- "image": "1f539.png",
- "sheet_x": 28,
- "sheet_y": 28,
- "short_name": "small_blue_diamond",
- "short_names": ["small_blue_diamond"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 196,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "male_mage": {
- "char": "\ud83e\uddd9\u200d\u2642\ufe0f",
- "key": "male_mage",
- "keywords": ["male_mage", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F9D9-200D-2642-FE0F",
- "non_qualified": "1F9D9-200D-2642",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f9d9-200d-2642-fe0f.png",
- "sheet_x": 46,
- "sheet_y": 4,
- "short_name": "male_mage",
- "short_names": ["male_mage"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 196,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F9D9-1F3FB-200D-2642-FE0F",
- "non_qualified": "1F9D9-1F3FB-200D-2642",
- "image": "1f9d9-1f3fb-200d-2642-fe0f.png",
- "sheet_x": 46,
- "sheet_y": 5,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F9D9-1F3FC-200D-2642-FE0F",
- "non_qualified": "1F9D9-1F3FC-200D-2642",
- "image": "1f9d9-1f3fc-200d-2642-fe0f.png",
- "sheet_x": 46,
- "sheet_y": 6,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F9D9-1F3FD-200D-2642-FE0F",
- "non_qualified": "1F9D9-1F3FD-200D-2642",
- "image": "1f9d9-1f3fd-200d-2642-fe0f.png",
- "sheet_x": 46,
- "sheet_y": 7,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F9D9-1F3FE-200D-2642-FE0F",
- "non_qualified": "1F9D9-1F3FE-200D-2642",
- "image": "1f9d9-1f3fe-200d-2642-fe0f.png",
- "sheet_x": 46,
- "sheet_y": 8,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F9D9-1F3FF-200D-2642-FE0F",
- "non_qualified": "1F9D9-1F3FF-200D-2642",
- "image": "1f9d9-1f3ff-200d-2642-fe0f.png",
- "sheet_x": 46,
- "sheet_y": 9,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- }
- }
- },
- "snowflake": {
- "char": "\u2744\ufe0f",
- "key": "snowflake",
- "keywords": ["snowflake", "SNOWFLAKE"],
- "category": "travel_and_places",
- "lib": {
- "name": "SNOWFLAKE",
- "unified": "2744-FE0F",
- "non_qualified": "2744",
- "docomo": null,
- "au": "E48A",
- "softbank": null,
- "google": "FE00E",
- "image": "2744-fe0f.png",
- "sheet_x": 51,
- "sheet_y": 41,
- "short_name": "snowflake",
- "short_names": ["snowflake"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 196,
- "added_in": "1.1",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "flag-pt": {
- "char": "\ud83c\uddf5\ud83c\uddf9",
- "key": "flag-pt",
- "keywords": ["flag-pt", "Portugal Flag"],
- "category": "flags",
- "lib": {
- "name": "Portugal Flag",
- "unified": "1F1F5-1F1F9",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1f5-1f1f9.png",
- "sheet_x": 4,
- "sheet_y": 8,
- "short_name": "flag-pt",
- "short_names": ["flag-pt"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 197,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "small_red_triangle": {
- "char": "\ud83d\udd3a",
- "key": "small_red_triangle",
- "keywords": ["small_red_triangle", "UP-POINTING RED TRIANGLE"],
- "category": "symbols",
- "lib": {
- "name": "UP-POINTING RED TRIANGLE",
- "unified": "1F53A",
- "non_qualified": null,
- "docomo": null,
- "au": "E55A",
- "softbank": null,
- "google": "FEB78",
- "image": "1f53a.png",
- "sheet_x": 28,
- "sheet_y": 29,
- "short_name": "small_red_triangle",
- "short_names": ["small_red_triangle"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 197,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "snowman": {
- "char": "\u2603\ufe0f",
- "key": "snowman",
- "keywords": ["snowman", ""],
- "category": "travel_and_places",
- "lib": {
- "name": null,
- "unified": "2603-FE0F",
- "non_qualified": "2603",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "2603-fe0f.png",
- "sheet_x": 49,
- "sheet_y": 9,
- "short_name": "snowman",
- "short_names": ["snowman"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 197,
- "added_in": "1.1",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "flag-pw": {
- "char": "\ud83c\uddf5\ud83c\uddfc",
- "key": "flag-pw",
- "keywords": ["flag-pw", "Palau Flag"],
- "category": "flags",
- "lib": {
- "name": "Palau Flag",
- "unified": "1F1F5-1F1FC",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1f5-1f1fc.png",
- "sheet_x": 4,
- "sheet_y": 9,
- "short_name": "flag-pw",
- "short_names": ["flag-pw"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 198,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "small_red_triangle_down": {
- "char": "\ud83d\udd3b",
- "key": "small_red_triangle_down",
- "keywords": ["small_red_triangle_down", "DOWN-POINTING RED TRIANGLE"],
- "category": "symbols",
- "lib": {
- "name": "DOWN-POINTING RED TRIANGLE",
- "unified": "1F53B",
- "non_qualified": null,
- "docomo": null,
- "au": "E55B",
- "softbank": null,
- "google": "FEB79",
- "image": "1f53b.png",
- "sheet_x": 28,
- "sheet_y": 30,
- "short_name": "small_red_triangle_down",
- "short_names": ["small_red_triangle_down"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 198,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "female_fairy": {
- "char": "\ud83e\uddda\u200d\u2640\ufe0f",
- "key": "female_fairy",
- "keywords": ["female_fairy", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F9DA-200D-2640-FE0F",
- "non_qualified": "1F9DA-200D-2640",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f9da-200d-2640-fe0f.png",
- "sheet_x": 46,
- "sheet_y": 16,
- "short_name": "female_fairy",
- "short_names": ["female_fairy"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 198,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F9DA-1F3FB-200D-2640-FE0F",
- "non_qualified": "1F9DA-1F3FB-200D-2640",
- "image": "1f9da-1f3fb-200d-2640-fe0f.png",
- "sheet_x": 46,
- "sheet_y": 17,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false,
- "obsoletes": "1F9DA-1F3FB"
- },
- "1F3FC": {
- "unified": "1F9DA-1F3FC-200D-2640-FE0F",
- "non_qualified": "1F9DA-1F3FC-200D-2640",
- "image": "1f9da-1f3fc-200d-2640-fe0f.png",
- "sheet_x": 46,
- "sheet_y": 18,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false,
- "obsoletes": "1F9DA-1F3FC"
- },
- "1F3FD": {
- "unified": "1F9DA-1F3FD-200D-2640-FE0F",
- "non_qualified": "1F9DA-1F3FD-200D-2640",
- "image": "1f9da-1f3fd-200d-2640-fe0f.png",
- "sheet_x": 46,
- "sheet_y": 19,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false,
- "obsoletes": "1F9DA-1F3FD"
- },
- "1F3FE": {
- "unified": "1F9DA-1F3FE-200D-2640-FE0F",
- "non_qualified": "1F9DA-1F3FE-200D-2640",
- "image": "1f9da-1f3fe-200d-2640-fe0f.png",
- "sheet_x": 46,
- "sheet_y": 20,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false,
- "obsoletes": "1F9DA-1F3FE"
- },
- "1F3FF": {
- "unified": "1F9DA-1F3FF-200D-2640-FE0F",
- "non_qualified": "1F9DA-1F3FF-200D-2640",
- "image": "1f9da-1f3ff-200d-2640-fe0f.png",
- "sheet_x": 46,
- "sheet_y": 21,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false,
- "obsoletes": "1F9DA-1F3FF"
- }
- },
- "obsoletes": "1F9DA"
- }
- },
- "snowman_without_snow": {
- "char": "\u26c4",
- "key": "snowman_without_snow",
- "keywords": ["snowman_without_snow", "SNOWMAN WITHOUT SNOW"],
- "category": "travel_and_places",
- "lib": {
- "name": "SNOWMAN WITHOUT SNOW",
- "unified": "26C4",
- "non_qualified": null,
- "docomo": "E641",
- "au": "E485",
- "softbank": "E048",
- "google": "FE003",
- "image": "26c4.png",
- "sheet_x": 50,
- "sheet_y": 19,
- "short_name": "snowman_without_snow",
- "short_names": ["snowman_without_snow"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 198,
- "added_in": "5.2",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "flag-py": {
- "char": "\ud83c\uddf5\ud83c\uddfe",
- "key": "flag-py",
- "keywords": ["flag-py", "Paraguay Flag"],
- "category": "flags",
- "lib": {
- "name": "Paraguay Flag",
- "unified": "1F1F5-1F1FE",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1f5-1f1fe.png",
- "sheet_x": 4,
- "sheet_y": 10,
- "short_name": "flag-py",
- "short_names": ["flag-py"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 199,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "diamond_shape_with_a_dot_inside": {
- "char": "\ud83d\udca0",
- "key": "diamond_shape_with_a_dot_inside",
- "keywords": ["diamond_shape_with_a_dot_inside", "DIAMOND SHAPE WITH A DOT INSIDE"],
- "category": "symbols",
- "lib": {
- "name": "DIAMOND SHAPE WITH A DOT INSIDE",
- "unified": "1F4A0",
- "non_qualified": null,
- "docomo": "E6F8",
- "au": null,
- "softbank": null,
- "google": "FEB55",
- "image": "1f4a0.png",
- "sheet_x": 25,
- "sheet_y": 30,
- "short_name": "diamond_shape_with_a_dot_inside",
- "short_names": ["diamond_shape_with_a_dot_inside"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 199,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "male_fairy": {
- "char": "\ud83e\uddda\u200d\u2642\ufe0f",
- "key": "male_fairy",
- "keywords": ["male_fairy", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F9DA-200D-2642-FE0F",
- "non_qualified": "1F9DA-200D-2642",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f9da-200d-2642-fe0f.png",
- "sheet_x": 46,
- "sheet_y": 22,
- "short_name": "male_fairy",
- "short_names": ["male_fairy"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 199,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F9DA-1F3FB-200D-2642-FE0F",
- "non_qualified": "1F9DA-1F3FB-200D-2642",
- "image": "1f9da-1f3fb-200d-2642-fe0f.png",
- "sheet_x": 46,
- "sheet_y": 23,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F9DA-1F3FC-200D-2642-FE0F",
- "non_qualified": "1F9DA-1F3FC-200D-2642",
- "image": "1f9da-1f3fc-200d-2642-fe0f.png",
- "sheet_x": 46,
- "sheet_y": 24,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F9DA-1F3FD-200D-2642-FE0F",
- "non_qualified": "1F9DA-1F3FD-200D-2642",
- "image": "1f9da-1f3fd-200d-2642-fe0f.png",
- "sheet_x": 46,
- "sheet_y": 25,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F9DA-1F3FE-200D-2642-FE0F",
- "non_qualified": "1F9DA-1F3FE-200D-2642",
- "image": "1f9da-1f3fe-200d-2642-fe0f.png",
- "sheet_x": 46,
- "sheet_y": 26,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F9DA-1F3FF-200D-2642-FE0F",
- "non_qualified": "1F9DA-1F3FF-200D-2642",
- "image": "1f9da-1f3ff-200d-2642-fe0f.png",
- "sheet_x": 46,
- "sheet_y": 27,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- }
- }
- },
- "comet": {
- "char": "\u2604\ufe0f",
- "key": "comet",
- "keywords": ["comet", ""],
- "category": "travel_and_places",
- "lib": {
- "name": null,
- "unified": "2604-FE0F",
- "non_qualified": "2604",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "2604-fe0f.png",
- "sheet_x": 49,
- "sheet_y": 10,
- "short_name": "comet",
- "short_names": ["comet"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 199,
- "added_in": "1.1",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "flag-qa": {
- "char": "\ud83c\uddf6\ud83c\udde6",
- "key": "flag-qa",
- "keywords": ["flag-qa", "Qatar Flag"],
- "category": "flags",
- "lib": {
- "name": "Qatar Flag",
- "unified": "1F1F6-1F1E6",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1f6-1f1e6.png",
- "sheet_x": 4,
- "sheet_y": 11,
- "short_name": "flag-qa",
- "short_names": ["flag-qa"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 200,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "radio_button": {
- "char": "\ud83d\udd18",
- "key": "radio_button",
- "keywords": ["radio_button", "RADIO BUTTON"],
- "category": "symbols",
- "lib": {
- "name": "RADIO BUTTON",
- "unified": "1F518",
- "non_qualified": null,
- "docomo": null,
- "au": "EB04",
- "softbank": null,
- "google": "FEB8C",
- "image": "1f518.png",
- "sheet_x": 27,
- "sheet_y": 48,
- "short_name": "radio_button",
- "short_names": ["radio_button"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 200,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "fire": {
- "char": "\ud83d\udd25",
- "key": "fire",
- "keywords": ["fire", "FIRE"],
- "category": "travel_and_places",
- "lib": {
- "name": "FIRE",
- "unified": "1F525",
- "non_qualified": null,
- "docomo": null,
- "au": "E47B",
- "softbank": "E11D",
- "google": "FE4F6",
- "image": "1f525.png",
- "sheet_x": 28,
- "sheet_y": 8,
- "short_name": "fire",
- "short_names": ["fire"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 200,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "flag-re": {
- "char": "\ud83c\uddf7\ud83c\uddea",
- "key": "flag-re",
- "keywords": ["flag-re", "R\u00e9union Flag"],
- "category": "flags",
- "lib": {
- "name": "R\u00e9union Flag",
- "unified": "1F1F7-1F1EA",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1f7-1f1ea.png",
- "sheet_x": 4,
- "sheet_y": 12,
- "short_name": "flag-re",
- "short_names": ["flag-re"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 201,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": false,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "droplet": {
- "char": "\ud83d\udca7",
- "key": "droplet",
- "keywords": ["droplet", "DROPLET"],
- "category": "travel_and_places",
- "lib": {
- "name": "DROPLET",
- "unified": "1F4A7",
- "non_qualified": null,
- "docomo": "E707",
- "au": "E4E6",
- "softbank": null,
- "google": "FEB5C",
- "image": "1f4a7.png",
- "sheet_x": 25,
- "sheet_y": 37,
- "short_name": "droplet",
- "short_names": ["droplet"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 201,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "black_square_button": {
- "char": "\ud83d\udd32",
- "key": "black_square_button",
- "keywords": ["black_square_button", "BLACK SQUARE BUTTON"],
- "category": "symbols",
- "lib": {
- "name": "BLACK SQUARE BUTTON",
- "unified": "1F532",
- "non_qualified": null,
- "docomo": "E69C",
- "au": "E54B",
- "softbank": "E21A",
- "google": "FEB64",
- "image": "1f532.png",
- "sheet_x": 28,
- "sheet_y": 21,
- "short_name": "black_square_button",
- "short_names": ["black_square_button"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 201,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "female_vampire": {
- "char": "\ud83e\udddb\u200d\u2640\ufe0f",
- "key": "female_vampire",
- "keywords": ["female_vampire", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F9DB-200D-2640-FE0F",
- "non_qualified": "1F9DB-200D-2640",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f9db-200d-2640-fe0f.png",
- "sheet_x": 46,
- "sheet_y": 34,
- "short_name": "female_vampire",
- "short_names": ["female_vampire"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 201,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F9DB-1F3FB-200D-2640-FE0F",
- "non_qualified": "1F9DB-1F3FB-200D-2640",
- "image": "1f9db-1f3fb-200d-2640-fe0f.png",
- "sheet_x": 46,
- "sheet_y": 35,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false,
- "obsoletes": "1F9DB-1F3FB"
- },
- "1F3FC": {
- "unified": "1F9DB-1F3FC-200D-2640-FE0F",
- "non_qualified": "1F9DB-1F3FC-200D-2640",
- "image": "1f9db-1f3fc-200d-2640-fe0f.png",
- "sheet_x": 46,
- "sheet_y": 36,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false,
- "obsoletes": "1F9DB-1F3FC"
- },
- "1F3FD": {
- "unified": "1F9DB-1F3FD-200D-2640-FE0F",
- "non_qualified": "1F9DB-1F3FD-200D-2640",
- "image": "1f9db-1f3fd-200d-2640-fe0f.png",
- "sheet_x": 46,
- "sheet_y": 37,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false,
- "obsoletes": "1F9DB-1F3FD"
- },
- "1F3FE": {
- "unified": "1F9DB-1F3FE-200D-2640-FE0F",
- "non_qualified": "1F9DB-1F3FE-200D-2640",
- "image": "1f9db-1f3fe-200d-2640-fe0f.png",
- "sheet_x": 46,
- "sheet_y": 38,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false,
- "obsoletes": "1F9DB-1F3FE"
- },
- "1F3FF": {
- "unified": "1F9DB-1F3FF-200D-2640-FE0F",
- "non_qualified": "1F9DB-1F3FF-200D-2640",
- "image": "1f9db-1f3ff-200d-2640-fe0f.png",
- "sheet_x": 46,
- "sheet_y": 39,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false,
- "obsoletes": "1F9DB-1F3FF"
- }
- },
- "obsoletes": "1F9DB"
- }
- },
- "flag-ro": {
- "char": "\ud83c\uddf7\ud83c\uddf4",
- "key": "flag-ro",
- "keywords": ["flag-ro", "Romania Flag"],
- "category": "flags",
- "lib": {
- "name": "Romania Flag",
- "unified": "1F1F7-1F1F4",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1f7-1f1f4.png",
- "sheet_x": 4,
- "sheet_y": 13,
- "short_name": "flag-ro",
- "short_names": ["flag-ro"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 202,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "ocean": {
- "char": "\ud83c\udf0a",
- "key": "ocean",
- "keywords": ["ocean", "WATER WAVE"],
- "category": "travel_and_places",
- "lib": {
- "name": "WATER WAVE",
- "unified": "1F30A",
- "non_qualified": null,
- "docomo": "E73F",
- "au": "EB7C",
- "softbank": "E43E",
- "google": "FE038",
- "image": "1f30a.png",
- "sheet_x": 5,
- "sheet_y": 49,
- "short_name": "ocean",
- "short_names": ["ocean"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 202,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "white_square_button": {
- "char": "\ud83d\udd33",
- "key": "white_square_button",
- "keywords": ["white_square_button", "WHITE SQUARE BUTTON"],
- "category": "symbols",
- "lib": {
- "name": "WHITE SQUARE BUTTON",
- "unified": "1F533",
- "non_qualified": null,
- "docomo": "E69C",
- "au": "E54B",
- "softbank": "E21B",
- "google": "FEB67",
- "image": "1f533.png",
- "sheet_x": 28,
- "sheet_y": 22,
- "short_name": "white_square_button",
- "short_names": ["white_square_button"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 202,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "male_vampire": {
- "char": "\ud83e\udddb\u200d\u2642\ufe0f",
- "key": "male_vampire",
- "keywords": ["male_vampire", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F9DB-200D-2642-FE0F",
- "non_qualified": "1F9DB-200D-2642",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f9db-200d-2642-fe0f.png",
- "sheet_x": 46,
- "sheet_y": 40,
- "short_name": "male_vampire",
- "short_names": ["male_vampire"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 202,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F9DB-1F3FB-200D-2642-FE0F",
- "non_qualified": "1F9DB-1F3FB-200D-2642",
- "image": "1f9db-1f3fb-200d-2642-fe0f.png",
- "sheet_x": 46,
- "sheet_y": 41,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F9DB-1F3FC-200D-2642-FE0F",
- "non_qualified": "1F9DB-1F3FC-200D-2642",
- "image": "1f9db-1f3fc-200d-2642-fe0f.png",
- "sheet_x": 46,
- "sheet_y": 42,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F9DB-1F3FD-200D-2642-FE0F",
- "non_qualified": "1F9DB-1F3FD-200D-2642",
- "image": "1f9db-1f3fd-200d-2642-fe0f.png",
- "sheet_x": 46,
- "sheet_y": 43,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F9DB-1F3FE-200D-2642-FE0F",
- "non_qualified": "1F9DB-1F3FE-200D-2642",
- "image": "1f9db-1f3fe-200d-2642-fe0f.png",
- "sheet_x": 46,
- "sheet_y": 44,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F9DB-1F3FF-200D-2642-FE0F",
- "non_qualified": "1F9DB-1F3FF-200D-2642",
- "image": "1f9db-1f3ff-200d-2642-fe0f.png",
- "sheet_x": 46,
- "sheet_y": 45,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- }
- }
- },
- "flag-rs": {
- "char": "\ud83c\uddf7\ud83c\uddf8",
- "key": "flag-rs",
- "keywords": ["flag-rs", "Serbia Flag"],
- "category": "flags",
- "lib": {
- "name": "Serbia Flag",
- "unified": "1F1F7-1F1F8",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1f7-1f1f8.png",
- "sheet_x": 4,
- "sheet_y": 14,
- "short_name": "flag-rs",
- "short_names": ["flag-rs"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 203,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "white_circle": {
- "char": "\u26aa",
- "key": "white_circle",
- "keywords": ["white_circle", "MEDIUM WHITE CIRCLE"],
- "category": "symbols",
- "lib": {
- "name": "MEDIUM WHITE CIRCLE",
- "unified": "26AA",
- "non_qualified": null,
- "docomo": "E69C",
- "au": "E53A",
- "softbank": null,
- "google": "FEB65",
- "image": "26aa.png",
- "sheet_x": 50,
- "sheet_y": 13,
- "short_name": "white_circle",
- "short_names": ["white_circle"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 203,
- "added_in": "4.1",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "ru": {
- "char": "\ud83c\uddf7\ud83c\uddfa",
- "key": "ru",
- "keywords": ["ru", "Russia Flag"],
- "category": "flags",
- "lib": {
- "name": "Russia Flag",
- "unified": "1F1F7-1F1FA",
- "non_qualified": null,
- "docomo": null,
- "au": "E5D6",
- "softbank": "E512",
- "google": "FE4EC",
- "image": "1f1f7-1f1fa.png",
- "sheet_x": 4,
- "sheet_y": 15,
- "short_name": "ru",
- "short_names": ["ru", "flag-ru"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 204,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "mermaid": {
- "char": "\ud83e\udddc\u200d\u2640\ufe0f",
- "key": "mermaid",
- "keywords": ["mermaid", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F9DC-200D-2640-FE0F",
- "non_qualified": "1F9DC-200D-2640",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f9dc-200d-2640-fe0f.png",
- "sheet_x": 46,
- "sheet_y": 52,
- "short_name": "mermaid",
- "short_names": ["mermaid"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 204,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F9DC-1F3FB-200D-2640-FE0F",
- "non_qualified": "1F9DC-1F3FB-200D-2640",
- "image": "1f9dc-1f3fb-200d-2640-fe0f.png",
- "sheet_x": 47,
- "sheet_y": 0,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F9DC-1F3FC-200D-2640-FE0F",
- "non_qualified": "1F9DC-1F3FC-200D-2640",
- "image": "1f9dc-1f3fc-200d-2640-fe0f.png",
- "sheet_x": 47,
- "sheet_y": 1,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F9DC-1F3FD-200D-2640-FE0F",
- "non_qualified": "1F9DC-1F3FD-200D-2640",
- "image": "1f9dc-1f3fd-200d-2640-fe0f.png",
- "sheet_x": 47,
- "sheet_y": 2,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F9DC-1F3FE-200D-2640-FE0F",
- "non_qualified": "1F9DC-1F3FE-200D-2640",
- "image": "1f9dc-1f3fe-200d-2640-fe0f.png",
- "sheet_x": 47,
- "sheet_y": 3,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F9DC-1F3FF-200D-2640-FE0F",
- "non_qualified": "1F9DC-1F3FF-200D-2640",
- "image": "1f9dc-1f3ff-200d-2640-fe0f.png",
- "sheet_x": 47,
- "sheet_y": 4,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- }
- }
- },
- "black_circle": {
- "char": "\u26ab",
- "key": "black_circle",
- "keywords": ["black_circle", "MEDIUM BLACK CIRCLE"],
- "category": "symbols",
- "lib": {
- "name": "MEDIUM BLACK CIRCLE",
- "unified": "26AB",
- "non_qualified": null,
- "docomo": "E69C",
- "au": "E53B",
- "softbank": null,
- "google": "FEB66",
- "image": "26ab.png",
- "sheet_x": 50,
- "sheet_y": 14,
- "short_name": "black_circle",
- "short_names": ["black_circle"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 204,
- "added_in": "4.1",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "flag-rw": {
- "char": "\ud83c\uddf7\ud83c\uddfc",
- "key": "flag-rw",
- "keywords": ["flag-rw", "Rwanda Flag"],
- "category": "flags",
- "lib": {
- "name": "Rwanda Flag",
- "unified": "1F1F7-1F1FC",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1f7-1f1fc.png",
- "sheet_x": 4,
- "sheet_y": 16,
- "short_name": "flag-rw",
- "short_names": ["flag-rw"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 205,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "red_circle": {
- "char": "\ud83d\udd34",
- "key": "red_circle",
- "keywords": ["red_circle", "LARGE RED CIRCLE"],
- "category": "symbols",
- "lib": {
- "name": "LARGE RED CIRCLE",
- "unified": "1F534",
- "non_qualified": null,
- "docomo": "E69C",
- "au": "E54A",
- "softbank": "E219",
- "google": "FEB63",
- "image": "1f534.png",
- "sheet_x": 28,
- "sheet_y": 23,
- "short_name": "red_circle",
- "short_names": ["red_circle"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 205,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "merman": {
- "char": "\ud83e\udddc\u200d\u2642\ufe0f",
- "key": "merman",
- "keywords": ["merman", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F9DC-200D-2642-FE0F",
- "non_qualified": "1F9DC-200D-2642",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f9dc-200d-2642-fe0f.png",
- "sheet_x": 47,
- "sheet_y": 5,
- "short_name": "merman",
- "short_names": ["merman"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 205,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F9DC-1F3FB-200D-2642-FE0F",
- "non_qualified": "1F9DC-1F3FB-200D-2642",
- "image": "1f9dc-1f3fb-200d-2642-fe0f.png",
- "sheet_x": 47,
- "sheet_y": 6,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false,
- "obsoletes": "1F9DC-1F3FB"
- },
- "1F3FC": {
- "unified": "1F9DC-1F3FC-200D-2642-FE0F",
- "non_qualified": "1F9DC-1F3FC-200D-2642",
- "image": "1f9dc-1f3fc-200d-2642-fe0f.png",
- "sheet_x": 47,
- "sheet_y": 7,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false,
- "obsoletes": "1F9DC-1F3FC"
- },
- "1F3FD": {
- "unified": "1F9DC-1F3FD-200D-2642-FE0F",
- "non_qualified": "1F9DC-1F3FD-200D-2642",
- "image": "1f9dc-1f3fd-200d-2642-fe0f.png",
- "sheet_x": 47,
- "sheet_y": 8,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false,
- "obsoletes": "1F9DC-1F3FD"
- },
- "1F3FE": {
- "unified": "1F9DC-1F3FE-200D-2642-FE0F",
- "non_qualified": "1F9DC-1F3FE-200D-2642",
- "image": "1f9dc-1f3fe-200d-2642-fe0f.png",
- "sheet_x": 47,
- "sheet_y": 9,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false,
- "obsoletes": "1F9DC-1F3FE"
- },
- "1F3FF": {
- "unified": "1F9DC-1F3FF-200D-2642-FE0F",
- "non_qualified": "1F9DC-1F3FF-200D-2642",
- "image": "1f9dc-1f3ff-200d-2642-fe0f.png",
- "sheet_x": 47,
- "sheet_y": 10,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false,
- "obsoletes": "1F9DC-1F3FF"
- }
- },
- "obsoletes": "1F9DC"
- }
- },
- "flag-sa": {
- "char": "\ud83c\uddf8\ud83c\udde6",
- "key": "flag-sa",
- "keywords": ["flag-sa", "Saudi Arabia Flag"],
- "category": "flags",
- "lib": {
- "name": "Saudi Arabia Flag",
- "unified": "1F1F8-1F1E6",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1f8-1f1e6.png",
- "sheet_x": 4,
- "sheet_y": 17,
- "short_name": "flag-sa",
- "short_names": ["flag-sa"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 206,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "large_blue_circle": {
- "char": "\ud83d\udd35",
- "key": "large_blue_circle",
- "keywords": ["large_blue_circle", "LARGE BLUE CIRCLE"],
- "category": "symbols",
- "lib": {
- "name": "LARGE BLUE CIRCLE",
- "unified": "1F535",
- "non_qualified": null,
- "docomo": "E69C",
- "au": "E54B",
- "softbank": null,
- "google": "FEB64",
- "image": "1f535.png",
- "sheet_x": 28,
- "sheet_y": 24,
- "short_name": "large_blue_circle",
- "short_names": ["large_blue_circle"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 206,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "flag-sb": {
- "char": "\ud83c\uddf8\ud83c\udde7",
- "key": "flag-sb",
- "keywords": ["flag-sb", "Solomon Islands Flag"],
- "category": "flags",
- "lib": {
- "name": "Solomon Islands Flag",
- "unified": "1F1F8-1F1E7",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1f8-1f1e7.png",
- "sheet_x": 4,
- "sheet_y": 18,
- "short_name": "flag-sb",
- "short_names": ["flag-sb"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 207,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "female_elf": {
- "char": "\ud83e\udddd\u200d\u2640\ufe0f",
- "key": "female_elf",
- "keywords": ["female_elf", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F9DD-200D-2640-FE0F",
- "non_qualified": "1F9DD-200D-2640",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f9dd-200d-2640-fe0f.png",
- "sheet_x": 47,
- "sheet_y": 17,
- "short_name": "female_elf",
- "short_names": ["female_elf"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 207,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F9DD-1F3FB-200D-2640-FE0F",
- "non_qualified": "1F9DD-1F3FB-200D-2640",
- "image": "1f9dd-1f3fb-200d-2640-fe0f.png",
- "sheet_x": 47,
- "sheet_y": 18,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F9DD-1F3FC-200D-2640-FE0F",
- "non_qualified": "1F9DD-1F3FC-200D-2640",
- "image": "1f9dd-1f3fc-200d-2640-fe0f.png",
- "sheet_x": 47,
- "sheet_y": 19,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F9DD-1F3FD-200D-2640-FE0F",
- "non_qualified": "1F9DD-1F3FD-200D-2640",
- "image": "1f9dd-1f3fd-200d-2640-fe0f.png",
- "sheet_x": 47,
- "sheet_y": 20,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F9DD-1F3FE-200D-2640-FE0F",
- "non_qualified": "1F9DD-1F3FE-200D-2640",
- "image": "1f9dd-1f3fe-200d-2640-fe0f.png",
- "sheet_x": 47,
- "sheet_y": 21,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F9DD-1F3FF-200D-2640-FE0F",
- "non_qualified": "1F9DD-1F3FF-200D-2640",
- "image": "1f9dd-1f3ff-200d-2640-fe0f.png",
- "sheet_x": 47,
- "sheet_y": 22,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- }
- }
- },
- "flag-sc": {
- "char": "\ud83c\uddf8\ud83c\udde8",
- "key": "flag-sc",
- "keywords": ["flag-sc", "Seychelles Flag"],
- "category": "flags",
- "lib": {
- "name": "Seychelles Flag",
- "unified": "1F1F8-1F1E8",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1f8-1f1e8.png",
- "sheet_x": 4,
- "sheet_y": 19,
- "short_name": "flag-sc",
- "short_names": ["flag-sc"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 208,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "male_elf": {
- "char": "\ud83e\udddd\u200d\u2642\ufe0f",
- "key": "male_elf",
- "keywords": ["male_elf", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F9DD-200D-2642-FE0F",
- "non_qualified": "1F9DD-200D-2642",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f9dd-200d-2642-fe0f.png",
- "sheet_x": 47,
- "sheet_y": 23,
- "short_name": "male_elf",
- "short_names": ["male_elf"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 208,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F9DD-1F3FB-200D-2642-FE0F",
- "non_qualified": "1F9DD-1F3FB-200D-2642",
- "image": "1f9dd-1f3fb-200d-2642-fe0f.png",
- "sheet_x": 47,
- "sheet_y": 24,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false,
- "obsoletes": "1F9DD-1F3FB"
- },
- "1F3FC": {
- "unified": "1F9DD-1F3FC-200D-2642-FE0F",
- "non_qualified": "1F9DD-1F3FC-200D-2642",
- "image": "1f9dd-1f3fc-200d-2642-fe0f.png",
- "sheet_x": 47,
- "sheet_y": 25,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false,
- "obsoletes": "1F9DD-1F3FC"
- },
- "1F3FD": {
- "unified": "1F9DD-1F3FD-200D-2642-FE0F",
- "non_qualified": "1F9DD-1F3FD-200D-2642",
- "image": "1f9dd-1f3fd-200d-2642-fe0f.png",
- "sheet_x": 47,
- "sheet_y": 26,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false,
- "obsoletes": "1F9DD-1F3FD"
- },
- "1F3FE": {
- "unified": "1F9DD-1F3FE-200D-2642-FE0F",
- "non_qualified": "1F9DD-1F3FE-200D-2642",
- "image": "1f9dd-1f3fe-200d-2642-fe0f.png",
- "sheet_x": 47,
- "sheet_y": 27,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false,
- "obsoletes": "1F9DD-1F3FE"
- },
- "1F3FF": {
- "unified": "1F9DD-1F3FF-200D-2642-FE0F",
- "non_qualified": "1F9DD-1F3FF-200D-2642",
- "image": "1f9dd-1f3ff-200d-2642-fe0f.png",
- "sheet_x": 47,
- "sheet_y": 28,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false,
- "obsoletes": "1F9DD-1F3FF"
- }
- },
- "obsoletes": "1F9DD"
- }
- },
- "flag-sd": {
- "char": "\ud83c\uddf8\ud83c\udde9",
- "key": "flag-sd",
- "keywords": ["flag-sd", "Sudan Flag"],
- "category": "flags",
- "lib": {
- "name": "Sudan Flag",
- "unified": "1F1F8-1F1E9",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1f8-1f1e9.png",
- "sheet_x": 4,
- "sheet_y": 20,
- "short_name": "flag-sd",
- "short_names": ["flag-sd"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 209,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "flag-se": {
- "char": "\ud83c\uddf8\ud83c\uddea",
- "key": "flag-se",
- "keywords": ["flag-se", "Sweden Flag"],
- "category": "flags",
- "lib": {
- "name": "Sweden Flag",
- "unified": "1F1F8-1F1EA",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1f8-1f1ea.png",
- "sheet_x": 4,
- "sheet_y": 21,
- "short_name": "flag-se",
- "short_names": ["flag-se"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 210,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "female_genie": {
- "char": "\ud83e\uddde\u200d\u2640\ufe0f",
- "key": "female_genie",
- "keywords": ["female_genie", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F9DE-200D-2640-FE0F",
- "non_qualified": "1F9DE-200D-2640",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f9de-200d-2640-fe0f.png",
- "sheet_x": 47,
- "sheet_y": 35,
- "short_name": "female_genie",
- "short_names": ["female_genie"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 210,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "flag-sg": {
- "char": "\ud83c\uddf8\ud83c\uddec",
- "key": "flag-sg",
- "keywords": ["flag-sg", "Singapore Flag"],
- "category": "flags",
- "lib": {
- "name": "Singapore Flag",
- "unified": "1F1F8-1F1EC",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1f8-1f1ec.png",
- "sheet_x": 4,
- "sheet_y": 22,
- "short_name": "flag-sg",
- "short_names": ["flag-sg"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 211,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "male_genie": {
- "char": "\ud83e\uddde\u200d\u2642\ufe0f",
- "key": "male_genie",
- "keywords": ["male_genie", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F9DE-200D-2642-FE0F",
- "non_qualified": "1F9DE-200D-2642",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f9de-200d-2642-fe0f.png",
- "sheet_x": 47,
- "sheet_y": 36,
- "short_name": "male_genie",
- "short_names": ["male_genie"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 211,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "obsoletes": "1F9DE"
- }
- },
- "flag-sh": {
- "char": "\ud83c\uddf8\ud83c\udded",
- "key": "flag-sh",
- "keywords": ["flag-sh", "St. Helena Flag"],
- "category": "flags",
- "lib": {
- "name": "St. Helena Flag",
- "unified": "1F1F8-1F1ED",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1f8-1f1ed.png",
- "sheet_x": 4,
- "sheet_y": 23,
- "short_name": "flag-sh",
- "short_names": ["flag-sh"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 212,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "flag-si": {
- "char": "\ud83c\uddf8\ud83c\uddee",
- "key": "flag-si",
- "keywords": ["flag-si", "Slovenia Flag"],
- "category": "flags",
- "lib": {
- "name": "Slovenia Flag",
- "unified": "1F1F8-1F1EE",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1f8-1f1ee.png",
- "sheet_x": 4,
- "sheet_y": 24,
- "short_name": "flag-si",
- "short_names": ["flag-si"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 213,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "female_zombie": {
- "char": "\ud83e\udddf\u200d\u2640\ufe0f",
- "key": "female_zombie",
- "keywords": ["female_zombie", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F9DF-200D-2640-FE0F",
- "non_qualified": "1F9DF-200D-2640",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f9df-200d-2640-fe0f.png",
- "sheet_x": 47,
- "sheet_y": 38,
- "short_name": "female_zombie",
- "short_names": ["female_zombie"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 213,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "flag-sj": {
- "char": "\ud83c\uddf8\ud83c\uddef",
- "key": "flag-sj",
- "keywords": ["flag-sj", "Svalbard & Jan Mayen Flag"],
- "category": "flags",
- "lib": {
- "name": "Svalbard & Jan Mayen Flag",
- "unified": "1F1F8-1F1EF",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1f8-1f1ef.png",
- "sheet_x": 4,
- "sheet_y": 25,
- "short_name": "flag-sj",
- "short_names": ["flag-sj"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 214,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "male_zombie": {
- "char": "\ud83e\udddf\u200d\u2642\ufe0f",
- "key": "male_zombie",
- "keywords": ["male_zombie", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F9DF-200D-2642-FE0F",
- "non_qualified": "1F9DF-200D-2642",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f9df-200d-2642-fe0f.png",
- "sheet_x": 47,
- "sheet_y": 39,
- "short_name": "male_zombie",
- "short_names": ["male_zombie"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 214,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "obsoletes": "1F9DF"
- }
- },
- "flag-sk": {
- "char": "\ud83c\uddf8\ud83c\uddf0",
- "key": "flag-sk",
- "keywords": ["flag-sk", "Slovakia Flag"],
- "category": "flags",
- "lib": {
- "name": "Slovakia Flag",
- "unified": "1F1F8-1F1F0",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1f8-1f1f0.png",
- "sheet_x": 4,
- "sheet_y": 26,
- "short_name": "flag-sk",
- "short_names": ["flag-sk"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 215,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "flag-sl": {
- "char": "\ud83c\uddf8\ud83c\uddf1",
- "key": "flag-sl",
- "keywords": ["flag-sl", "Sierra Leone Flag"],
- "category": "flags",
- "lib": {
- "name": "Sierra Leone Flag",
- "unified": "1F1F8-1F1F1",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1f8-1f1f1.png",
- "sheet_x": 4,
- "sheet_y": 27,
- "short_name": "flag-sl",
- "short_names": ["flag-sl"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 216,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "man-frowning": {
- "char": "\ud83d\ude4d\u200d\u2642\ufe0f",
- "key": "man-frowning",
- "keywords": ["man-frowning", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F64D-200D-2642-FE0F",
- "non_qualified": "1F64D-200D-2642",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f64d-200d-2642-fe0f.png",
- "sheet_x": 33,
- "sheet_y": 40,
- "short_name": "man-frowning",
- "short_names": ["man-frowning"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 216,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F64D-1F3FB-200D-2642-FE0F",
- "non_qualified": "1F64D-1F3FB-200D-2642",
- "image": "1f64d-1f3fb-200d-2642-fe0f.png",
- "sheet_x": 33,
- "sheet_y": 41,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F64D-1F3FC-200D-2642-FE0F",
- "non_qualified": "1F64D-1F3FC-200D-2642",
- "image": "1f64d-1f3fc-200d-2642-fe0f.png",
- "sheet_x": 33,
- "sheet_y": 42,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F64D-1F3FD-200D-2642-FE0F",
- "non_qualified": "1F64D-1F3FD-200D-2642",
- "image": "1f64d-1f3fd-200d-2642-fe0f.png",
- "sheet_x": 33,
- "sheet_y": 43,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F64D-1F3FE-200D-2642-FE0F",
- "non_qualified": "1F64D-1F3FE-200D-2642",
- "image": "1f64d-1f3fe-200d-2642-fe0f.png",
- "sheet_x": 33,
- "sheet_y": 44,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F64D-1F3FF-200D-2642-FE0F",
- "non_qualified": "1F64D-1F3FF-200D-2642",
- "image": "1f64d-1f3ff-200d-2642-fe0f.png",
- "sheet_x": 33,
- "sheet_y": 45,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- }
- }
- },
- "flag-sm": {
- "char": "\ud83c\uddf8\ud83c\uddf2",
- "key": "flag-sm",
- "keywords": ["flag-sm", "San Marino Flag"],
- "category": "flags",
- "lib": {
- "name": "San Marino Flag",
- "unified": "1F1F8-1F1F2",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1f8-1f1f2.png",
- "sheet_x": 4,
- "sheet_y": 28,
- "short_name": "flag-sm",
- "short_names": ["flag-sm"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 217,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "woman-frowning": {
- "char": "\ud83d\ude4d\u200d\u2640\ufe0f",
- "key": "woman-frowning",
- "keywords": ["woman-frowning", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F64D-200D-2640-FE0F",
- "non_qualified": "1F64D-200D-2640",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f64d-200d-2640-fe0f.png",
- "sheet_x": 33,
- "sheet_y": 34,
- "short_name": "woman-frowning",
- "short_names": ["woman-frowning"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 217,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F64D-1F3FB-200D-2640-FE0F",
- "non_qualified": "1F64D-1F3FB-200D-2640",
- "image": "1f64d-1f3fb-200d-2640-fe0f.png",
- "sheet_x": 33,
- "sheet_y": 35,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F64D-1F3FC-200D-2640-FE0F",
- "non_qualified": "1F64D-1F3FC-200D-2640",
- "image": "1f64d-1f3fc-200d-2640-fe0f.png",
- "sheet_x": 33,
- "sheet_y": 36,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F64D-1F3FD-200D-2640-FE0F",
- "non_qualified": "1F64D-1F3FD-200D-2640",
- "image": "1f64d-1f3fd-200d-2640-fe0f.png",
- "sheet_x": 33,
- "sheet_y": 37,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F64D-1F3FE-200D-2640-FE0F",
- "non_qualified": "1F64D-1F3FE-200D-2640",
- "image": "1f64d-1f3fe-200d-2640-fe0f.png",
- "sheet_x": 33,
- "sheet_y": 38,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F64D-1F3FF-200D-2640-FE0F",
- "non_qualified": "1F64D-1F3FF-200D-2640",
- "image": "1f64d-1f3ff-200d-2640-fe0f.png",
- "sheet_x": 33,
- "sheet_y": 39,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- },
- "obsoletes": "1F64D"
- }
- },
- "flag-sn": {
- "char": "\ud83c\uddf8\ud83c\uddf3",
- "key": "flag-sn",
- "keywords": ["flag-sn", "Senegal Flag"],
- "category": "flags",
- "lib": {
- "name": "Senegal Flag",
- "unified": "1F1F8-1F1F3",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1f8-1f1f3.png",
- "sheet_x": 4,
- "sheet_y": 29,
- "short_name": "flag-sn",
- "short_names": ["flag-sn"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 218,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "flag-so": {
- "char": "\ud83c\uddf8\ud83c\uddf4",
- "key": "flag-so",
- "keywords": ["flag-so", "Somalia Flag"],
- "category": "flags",
- "lib": {
- "name": "Somalia Flag",
- "unified": "1F1F8-1F1F4",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1f8-1f1f4.png",
- "sheet_x": 4,
- "sheet_y": 30,
- "short_name": "flag-so",
- "short_names": ["flag-so"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 219,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "man-pouting": {
- "char": "\ud83d\ude4e\u200d\u2642\ufe0f",
- "key": "man-pouting",
- "keywords": ["man-pouting", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F64E-200D-2642-FE0F",
- "non_qualified": "1F64E-200D-2642",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f64e-200d-2642-fe0f.png",
- "sheet_x": 34,
- "sheet_y": 5,
- "short_name": "man-pouting",
- "short_names": ["man-pouting"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 219,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F64E-1F3FB-200D-2642-FE0F",
- "non_qualified": "1F64E-1F3FB-200D-2642",
- "image": "1f64e-1f3fb-200d-2642-fe0f.png",
- "sheet_x": 34,
- "sheet_y": 6,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F64E-1F3FC-200D-2642-FE0F",
- "non_qualified": "1F64E-1F3FC-200D-2642",
- "image": "1f64e-1f3fc-200d-2642-fe0f.png",
- "sheet_x": 34,
- "sheet_y": 7,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F64E-1F3FD-200D-2642-FE0F",
- "non_qualified": "1F64E-1F3FD-200D-2642",
- "image": "1f64e-1f3fd-200d-2642-fe0f.png",
- "sheet_x": 34,
- "sheet_y": 8,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F64E-1F3FE-200D-2642-FE0F",
- "non_qualified": "1F64E-1F3FE-200D-2642",
- "image": "1f64e-1f3fe-200d-2642-fe0f.png",
- "sheet_x": 34,
- "sheet_y": 9,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F64E-1F3FF-200D-2642-FE0F",
- "non_qualified": "1F64E-1F3FF-200D-2642",
- "image": "1f64e-1f3ff-200d-2642-fe0f.png",
- "sheet_x": 34,
- "sheet_y": 10,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- }
- }
- },
- "flag-sr": {
- "char": "\ud83c\uddf8\ud83c\uddf7",
- "key": "flag-sr",
- "keywords": ["flag-sr", "Suriname Flag"],
- "category": "flags",
- "lib": {
- "name": "Suriname Flag",
- "unified": "1F1F8-1F1F7",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1f8-1f1f7.png",
- "sheet_x": 4,
- "sheet_y": 31,
- "short_name": "flag-sr",
- "short_names": ["flag-sr"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 220,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "woman-pouting": {
- "char": "\ud83d\ude4e\u200d\u2640\ufe0f",
- "key": "woman-pouting",
- "keywords": ["woman-pouting", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F64E-200D-2640-FE0F",
- "non_qualified": "1F64E-200D-2640",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f64e-200d-2640-fe0f.png",
- "sheet_x": 33,
- "sheet_y": 52,
- "short_name": "woman-pouting",
- "short_names": ["woman-pouting"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 220,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F64E-1F3FB-200D-2640-FE0F",
- "non_qualified": "1F64E-1F3FB-200D-2640",
- "image": "1f64e-1f3fb-200d-2640-fe0f.png",
- "sheet_x": 34,
- "sheet_y": 0,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F64E-1F3FC-200D-2640-FE0F",
- "non_qualified": "1F64E-1F3FC-200D-2640",
- "image": "1f64e-1f3fc-200d-2640-fe0f.png",
- "sheet_x": 34,
- "sheet_y": 1,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F64E-1F3FD-200D-2640-FE0F",
- "non_qualified": "1F64E-1F3FD-200D-2640",
- "image": "1f64e-1f3fd-200d-2640-fe0f.png",
- "sheet_x": 34,
- "sheet_y": 2,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F64E-1F3FE-200D-2640-FE0F",
- "non_qualified": "1F64E-1F3FE-200D-2640",
- "image": "1f64e-1f3fe-200d-2640-fe0f.png",
- "sheet_x": 34,
- "sheet_y": 3,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F64E-1F3FF-200D-2640-FE0F",
- "non_qualified": "1F64E-1F3FF-200D-2640",
- "image": "1f64e-1f3ff-200d-2640-fe0f.png",
- "sheet_x": 34,
- "sheet_y": 4,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- },
- "obsoletes": "1F64E"
- }
- },
- "flag-ss": {
- "char": "\ud83c\uddf8\ud83c\uddf8",
- "key": "flag-ss",
- "keywords": ["flag-ss", "South Sudan Flag"],
- "category": "flags",
- "lib": {
- "name": "South Sudan Flag",
- "unified": "1F1F8-1F1F8",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1f8-1f1f8.png",
- "sheet_x": 4,
- "sheet_y": 32,
- "short_name": "flag-ss",
- "short_names": ["flag-ss"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 221,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "flag-st": {
- "char": "\ud83c\uddf8\ud83c\uddf9",
- "key": "flag-st",
- "keywords": ["flag-st", "S\u00e3o Tom\u00e9 & Pr\u00edncipe Flag"],
- "category": "flags",
- "lib": {
- "name": "S\u00e3o Tom\u00e9 & Pr\u00edncipe Flag",
- "unified": "1F1F8-1F1F9",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1f8-1f1f9.png",
- "sheet_x": 4,
- "sheet_y": 33,
- "short_name": "flag-st",
- "short_names": ["flag-st"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 222,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "man-gesturing-no": {
- "char": "\ud83d\ude45\u200d\u2642\ufe0f",
- "key": "man-gesturing-no",
- "keywords": ["man-gesturing-no", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F645-200D-2642-FE0F",
- "non_qualified": "1F645-200D-2642",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f645-200d-2642-fe0f.png",
- "sheet_x": 32,
- "sheet_y": 12,
- "short_name": "man-gesturing-no",
- "short_names": ["man-gesturing-no"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 222,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F645-1F3FB-200D-2642-FE0F",
- "non_qualified": "1F645-1F3FB-200D-2642",
- "image": "1f645-1f3fb-200d-2642-fe0f.png",
- "sheet_x": 32,
- "sheet_y": 13,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F645-1F3FC-200D-2642-FE0F",
- "non_qualified": "1F645-1F3FC-200D-2642",
- "image": "1f645-1f3fc-200d-2642-fe0f.png",
- "sheet_x": 32,
- "sheet_y": 14,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F645-1F3FD-200D-2642-FE0F",
- "non_qualified": "1F645-1F3FD-200D-2642",
- "image": "1f645-1f3fd-200d-2642-fe0f.png",
- "sheet_x": 32,
- "sheet_y": 15,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F645-1F3FE-200D-2642-FE0F",
- "non_qualified": "1F645-1F3FE-200D-2642",
- "image": "1f645-1f3fe-200d-2642-fe0f.png",
- "sheet_x": 32,
- "sheet_y": 16,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F645-1F3FF-200D-2642-FE0F",
- "non_qualified": "1F645-1F3FF-200D-2642",
- "image": "1f645-1f3ff-200d-2642-fe0f.png",
- "sheet_x": 32,
- "sheet_y": 17,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- }
- }
- },
- "flag-sv": {
- "char": "\ud83c\uddf8\ud83c\uddfb",
- "key": "flag-sv",
- "keywords": ["flag-sv", "El Salvador Flag"],
- "category": "flags",
- "lib": {
- "name": "El Salvador Flag",
- "unified": "1F1F8-1F1FB",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1f8-1f1fb.png",
- "sheet_x": 4,
- "sheet_y": 34,
- "short_name": "flag-sv",
- "short_names": ["flag-sv"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 223,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "woman-gesturing-no": {
- "char": "\ud83d\ude45\u200d\u2640\ufe0f",
- "key": "woman-gesturing-no",
- "keywords": ["woman-gesturing-no", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F645-200D-2640-FE0F",
- "non_qualified": "1F645-200D-2640",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f645-200d-2640-fe0f.png",
- "sheet_x": 32,
- "sheet_y": 6,
- "short_name": "woman-gesturing-no",
- "short_names": ["woman-gesturing-no"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 223,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F645-1F3FB-200D-2640-FE0F",
- "non_qualified": "1F645-1F3FB-200D-2640",
- "image": "1f645-1f3fb-200d-2640-fe0f.png",
- "sheet_x": 32,
- "sheet_y": 7,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F645-1F3FC-200D-2640-FE0F",
- "non_qualified": "1F645-1F3FC-200D-2640",
- "image": "1f645-1f3fc-200d-2640-fe0f.png",
- "sheet_x": 32,
- "sheet_y": 8,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F645-1F3FD-200D-2640-FE0F",
- "non_qualified": "1F645-1F3FD-200D-2640",
- "image": "1f645-1f3fd-200d-2640-fe0f.png",
- "sheet_x": 32,
- "sheet_y": 9,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F645-1F3FE-200D-2640-FE0F",
- "non_qualified": "1F645-1F3FE-200D-2640",
- "image": "1f645-1f3fe-200d-2640-fe0f.png",
- "sheet_x": 32,
- "sheet_y": 10,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F645-1F3FF-200D-2640-FE0F",
- "non_qualified": "1F645-1F3FF-200D-2640",
- "image": "1f645-1f3ff-200d-2640-fe0f.png",
- "sheet_x": 32,
- "sheet_y": 11,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- },
- "obsoletes": "1F645"
- }
- },
- "flag-sx": {
- "char": "\ud83c\uddf8\ud83c\uddfd",
- "key": "flag-sx",
- "keywords": ["flag-sx", "Sint Maarten Flag"],
- "category": "flags",
- "lib": {
- "name": "Sint Maarten Flag",
- "unified": "1F1F8-1F1FD",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1f8-1f1fd.png",
- "sheet_x": 4,
- "sheet_y": 35,
- "short_name": "flag-sx",
- "short_names": ["flag-sx"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 224,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "flag-sy": {
- "char": "\ud83c\uddf8\ud83c\uddfe",
- "key": "flag-sy",
- "keywords": ["flag-sy", "Syria Flag"],
- "category": "flags",
- "lib": {
- "name": "Syria Flag",
- "unified": "1F1F8-1F1FE",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1f8-1f1fe.png",
- "sheet_x": 4,
- "sheet_y": 36,
- "short_name": "flag-sy",
- "short_names": ["flag-sy"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 225,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "man-gesturing-ok": {
- "char": "\ud83d\ude46\u200d\u2642\ufe0f",
- "key": "man-gesturing-ok",
- "keywords": ["man-gesturing-ok", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F646-200D-2642-FE0F",
- "non_qualified": "1F646-200D-2642",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f646-200d-2642-fe0f.png",
- "sheet_x": 32,
- "sheet_y": 30,
- "short_name": "man-gesturing-ok",
- "short_names": ["man-gesturing-ok"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 225,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F646-1F3FB-200D-2642-FE0F",
- "non_qualified": "1F646-1F3FB-200D-2642",
- "image": "1f646-1f3fb-200d-2642-fe0f.png",
- "sheet_x": 32,
- "sheet_y": 31,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F646-1F3FC-200D-2642-FE0F",
- "non_qualified": "1F646-1F3FC-200D-2642",
- "image": "1f646-1f3fc-200d-2642-fe0f.png",
- "sheet_x": 32,
- "sheet_y": 32,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F646-1F3FD-200D-2642-FE0F",
- "non_qualified": "1F646-1F3FD-200D-2642",
- "image": "1f646-1f3fd-200d-2642-fe0f.png",
- "sheet_x": 32,
- "sheet_y": 33,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F646-1F3FE-200D-2642-FE0F",
- "non_qualified": "1F646-1F3FE-200D-2642",
- "image": "1f646-1f3fe-200d-2642-fe0f.png",
- "sheet_x": 32,
- "sheet_y": 34,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F646-1F3FF-200D-2642-FE0F",
- "non_qualified": "1F646-1F3FF-200D-2642",
- "image": "1f646-1f3ff-200d-2642-fe0f.png",
- "sheet_x": 32,
- "sheet_y": 35,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- }
- }
- },
- "flag-sz": {
- "char": "\ud83c\uddf8\ud83c\uddff",
- "key": "flag-sz",
- "keywords": ["flag-sz", "Swaziland Flag"],
- "category": "flags",
- "lib": {
- "name": "Swaziland Flag",
- "unified": "1F1F8-1F1FF",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1f8-1f1ff.png",
- "sheet_x": 4,
- "sheet_y": 37,
- "short_name": "flag-sz",
- "short_names": ["flag-sz"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 226,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "woman-gesturing-ok": {
- "char": "\ud83d\ude46\u200d\u2640\ufe0f",
- "key": "woman-gesturing-ok",
- "keywords": ["woman-gesturing-ok", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F646-200D-2640-FE0F",
- "non_qualified": "1F646-200D-2640",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f646-200d-2640-fe0f.png",
- "sheet_x": 32,
- "sheet_y": 24,
- "short_name": "woman-gesturing-ok",
- "short_names": ["woman-gesturing-ok"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 226,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F646-1F3FB-200D-2640-FE0F",
- "non_qualified": "1F646-1F3FB-200D-2640",
- "image": "1f646-1f3fb-200d-2640-fe0f.png",
- "sheet_x": 32,
- "sheet_y": 25,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F646-1F3FC-200D-2640-FE0F",
- "non_qualified": "1F646-1F3FC-200D-2640",
- "image": "1f646-1f3fc-200d-2640-fe0f.png",
- "sheet_x": 32,
- "sheet_y": 26,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F646-1F3FD-200D-2640-FE0F",
- "non_qualified": "1F646-1F3FD-200D-2640",
- "image": "1f646-1f3fd-200d-2640-fe0f.png",
- "sheet_x": 32,
- "sheet_y": 27,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F646-1F3FE-200D-2640-FE0F",
- "non_qualified": "1F646-1F3FE-200D-2640",
- "image": "1f646-1f3fe-200d-2640-fe0f.png",
- "sheet_x": 32,
- "sheet_y": 28,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F646-1F3FF-200D-2640-FE0F",
- "non_qualified": "1F646-1F3FF-200D-2640",
- "image": "1f646-1f3ff-200d-2640-fe0f.png",
- "sheet_x": 32,
- "sheet_y": 29,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- },
- "obsoletes": "1F646"
- }
- },
- "flag-ta": {
- "char": "\ud83c\uddf9\ud83c\udde6",
- "key": "flag-ta",
- "keywords": ["flag-ta", "Tristan da Cunha Flag"],
- "category": "flags",
- "lib": {
- "name": "Tristan da Cunha Flag",
- "unified": "1F1F9-1F1E6",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1f9-1f1e6.png",
- "sheet_x": 4,
- "sheet_y": 38,
- "short_name": "flag-ta",
- "short_names": ["flag-ta"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 227,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "flag-tc": {
- "char": "\ud83c\uddf9\ud83c\udde8",
- "key": "flag-tc",
- "keywords": ["flag-tc", "Turks & Caicos Islands Flag"],
- "category": "flags",
- "lib": {
- "name": "Turks & Caicos Islands Flag",
- "unified": "1F1F9-1F1E8",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1f9-1f1e8.png",
- "sheet_x": 4,
- "sheet_y": 39,
- "short_name": "flag-tc",
- "short_names": ["flag-tc"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 228,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "man-tipping-hand": {
- "char": "\ud83d\udc81\u200d\u2642\ufe0f",
- "key": "man-tipping-hand",
- "keywords": ["man-tipping-hand", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F481-200D-2642-FE0F",
- "non_qualified": "1F481-200D-2642",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f481-200d-2642-fe0f.png",
- "sheet_x": 23,
- "sheet_y": 33,
- "short_name": "man-tipping-hand",
- "short_names": ["man-tipping-hand"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 228,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F481-1F3FB-200D-2642-FE0F",
- "non_qualified": "1F481-1F3FB-200D-2642",
- "image": "1f481-1f3fb-200d-2642-fe0f.png",
- "sheet_x": 23,
- "sheet_y": 34,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F481-1F3FC-200D-2642-FE0F",
- "non_qualified": "1F481-1F3FC-200D-2642",
- "image": "1f481-1f3fc-200d-2642-fe0f.png",
- "sheet_x": 23,
- "sheet_y": 35,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F481-1F3FD-200D-2642-FE0F",
- "non_qualified": "1F481-1F3FD-200D-2642",
- "image": "1f481-1f3fd-200d-2642-fe0f.png",
- "sheet_x": 23,
- "sheet_y": 36,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F481-1F3FE-200D-2642-FE0F",
- "non_qualified": "1F481-1F3FE-200D-2642",
- "image": "1f481-1f3fe-200d-2642-fe0f.png",
- "sheet_x": 23,
- "sheet_y": 37,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F481-1F3FF-200D-2642-FE0F",
- "non_qualified": "1F481-1F3FF-200D-2642",
- "image": "1f481-1f3ff-200d-2642-fe0f.png",
- "sheet_x": 23,
- "sheet_y": 38,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- }
- }
- },
- "flag-td": {
- "char": "\ud83c\uddf9\ud83c\udde9",
- "key": "flag-td",
- "keywords": ["flag-td", "Chad Flag"],
- "category": "flags",
- "lib": {
- "name": "Chad Flag",
- "unified": "1F1F9-1F1E9",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1f9-1f1e9.png",
- "sheet_x": 4,
- "sheet_y": 40,
- "short_name": "flag-td",
- "short_names": ["flag-td"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 229,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "woman-tipping-hand": {
- "char": "\ud83d\udc81\u200d\u2640\ufe0f",
- "key": "woman-tipping-hand",
- "keywords": ["woman-tipping-hand", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F481-200D-2640-FE0F",
- "non_qualified": "1F481-200D-2640",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f481-200d-2640-fe0f.png",
- "sheet_x": 23,
- "sheet_y": 27,
- "short_name": "woman-tipping-hand",
- "short_names": ["woman-tipping-hand"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 229,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F481-1F3FB-200D-2640-FE0F",
- "non_qualified": "1F481-1F3FB-200D-2640",
- "image": "1f481-1f3fb-200d-2640-fe0f.png",
- "sheet_x": 23,
- "sheet_y": 28,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F481-1F3FC-200D-2640-FE0F",
- "non_qualified": "1F481-1F3FC-200D-2640",
- "image": "1f481-1f3fc-200d-2640-fe0f.png",
- "sheet_x": 23,
- "sheet_y": 29,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F481-1F3FD-200D-2640-FE0F",
- "non_qualified": "1F481-1F3FD-200D-2640",
- "image": "1f481-1f3fd-200d-2640-fe0f.png",
- "sheet_x": 23,
- "sheet_y": 30,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F481-1F3FE-200D-2640-FE0F",
- "non_qualified": "1F481-1F3FE-200D-2640",
- "image": "1f481-1f3fe-200d-2640-fe0f.png",
- "sheet_x": 23,
- "sheet_y": 31,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F481-1F3FF-200D-2640-FE0F",
- "non_qualified": "1F481-1F3FF-200D-2640",
- "image": "1f481-1f3ff-200d-2640-fe0f.png",
- "sheet_x": 23,
- "sheet_y": 32,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- },
- "obsoletes": "1F481"
- }
- },
- "flag-tf": {
- "char": "\ud83c\uddf9\ud83c\uddeb",
- "key": "flag-tf",
- "keywords": ["flag-tf", "French Southern Territories Flag"],
- "category": "flags",
- "lib": {
- "name": "French Southern Territories Flag",
- "unified": "1F1F9-1F1EB",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1f9-1f1eb.png",
- "sheet_x": 4,
- "sheet_y": 41,
- "short_name": "flag-tf",
- "short_names": ["flag-tf"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 230,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": false,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "flag-tg": {
- "char": "\ud83c\uddf9\ud83c\uddec",
- "key": "flag-tg",
- "keywords": ["flag-tg", "Togo Flag"],
- "category": "flags",
- "lib": {
- "name": "Togo Flag",
- "unified": "1F1F9-1F1EC",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1f9-1f1ec.png",
- "sheet_x": 4,
- "sheet_y": 42,
- "short_name": "flag-tg",
- "short_names": ["flag-tg"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 231,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "man-raising-hand": {
- "char": "\ud83d\ude4b\u200d\u2642\ufe0f",
- "key": "man-raising-hand",
- "keywords": ["man-raising-hand", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F64B-200D-2642-FE0F",
- "non_qualified": "1F64B-200D-2642",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f64b-200d-2642-fe0f.png",
- "sheet_x": 33,
- "sheet_y": 16,
- "short_name": "man-raising-hand",
- "short_names": ["man-raising-hand"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 231,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F64B-1F3FB-200D-2642-FE0F",
- "non_qualified": "1F64B-1F3FB-200D-2642",
- "image": "1f64b-1f3fb-200d-2642-fe0f.png",
- "sheet_x": 33,
- "sheet_y": 17,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F64B-1F3FC-200D-2642-FE0F",
- "non_qualified": "1F64B-1F3FC-200D-2642",
- "image": "1f64b-1f3fc-200d-2642-fe0f.png",
- "sheet_x": 33,
- "sheet_y": 18,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F64B-1F3FD-200D-2642-FE0F",
- "non_qualified": "1F64B-1F3FD-200D-2642",
- "image": "1f64b-1f3fd-200d-2642-fe0f.png",
- "sheet_x": 33,
- "sheet_y": 19,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F64B-1F3FE-200D-2642-FE0F",
- "non_qualified": "1F64B-1F3FE-200D-2642",
- "image": "1f64b-1f3fe-200d-2642-fe0f.png",
- "sheet_x": 33,
- "sheet_y": 20,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F64B-1F3FF-200D-2642-FE0F",
- "non_qualified": "1F64B-1F3FF-200D-2642",
- "image": "1f64b-1f3ff-200d-2642-fe0f.png",
- "sheet_x": 33,
- "sheet_y": 21,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- }
- }
- },
- "flag-th": {
- "char": "\ud83c\uddf9\ud83c\udded",
- "key": "flag-th",
- "keywords": ["flag-th", "Thailand Flag"],
- "category": "flags",
- "lib": {
- "name": "Thailand Flag",
- "unified": "1F1F9-1F1ED",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1f9-1f1ed.png",
- "sheet_x": 4,
- "sheet_y": 43,
- "short_name": "flag-th",
- "short_names": ["flag-th"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 232,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "woman-raising-hand": {
- "char": "\ud83d\ude4b\u200d\u2640\ufe0f",
- "key": "woman-raising-hand",
- "keywords": ["woman-raising-hand", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F64B-200D-2640-FE0F",
- "non_qualified": "1F64B-200D-2640",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f64b-200d-2640-fe0f.png",
- "sheet_x": 33,
- "sheet_y": 10,
- "short_name": "woman-raising-hand",
- "short_names": ["woman-raising-hand"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 232,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F64B-1F3FB-200D-2640-FE0F",
- "non_qualified": "1F64B-1F3FB-200D-2640",
- "image": "1f64b-1f3fb-200d-2640-fe0f.png",
- "sheet_x": 33,
- "sheet_y": 11,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F64B-1F3FC-200D-2640-FE0F",
- "non_qualified": "1F64B-1F3FC-200D-2640",
- "image": "1f64b-1f3fc-200d-2640-fe0f.png",
- "sheet_x": 33,
- "sheet_y": 12,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F64B-1F3FD-200D-2640-FE0F",
- "non_qualified": "1F64B-1F3FD-200D-2640",
- "image": "1f64b-1f3fd-200d-2640-fe0f.png",
- "sheet_x": 33,
- "sheet_y": 13,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F64B-1F3FE-200D-2640-FE0F",
- "non_qualified": "1F64B-1F3FE-200D-2640",
- "image": "1f64b-1f3fe-200d-2640-fe0f.png",
- "sheet_x": 33,
- "sheet_y": 14,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F64B-1F3FF-200D-2640-FE0F",
- "non_qualified": "1F64B-1F3FF-200D-2640",
- "image": "1f64b-1f3ff-200d-2640-fe0f.png",
- "sheet_x": 33,
- "sheet_y": 15,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- },
- "obsoletes": "1F64B"
- }
- },
- "flag-tj": {
- "char": "\ud83c\uddf9\ud83c\uddef",
- "key": "flag-tj",
- "keywords": ["flag-tj", "Tajikistan Flag"],
- "category": "flags",
- "lib": {
- "name": "Tajikistan Flag",
- "unified": "1F1F9-1F1EF",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1f9-1f1ef.png",
- "sheet_x": 4,
- "sheet_y": 44,
- "short_name": "flag-tj",
- "short_names": ["flag-tj"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 233,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "flag-tk": {
- "char": "\ud83c\uddf9\ud83c\uddf0",
- "key": "flag-tk",
- "keywords": ["flag-tk", "Tokelau Flag"],
- "category": "flags",
- "lib": {
- "name": "Tokelau Flag",
- "unified": "1F1F9-1F1F0",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1f9-1f1f0.png",
- "sheet_x": 4,
- "sheet_y": 45,
- "short_name": "flag-tk",
- "short_names": ["flag-tk"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 234,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "man-bowing": {
- "char": "\ud83d\ude47\u200d\u2642\ufe0f",
- "key": "man-bowing",
- "keywords": ["man-bowing", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F647-200D-2642-FE0F",
- "non_qualified": "1F647-200D-2642",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f647-200d-2642-fe0f.png",
- "sheet_x": 32,
- "sheet_y": 48,
- "short_name": "man-bowing",
- "short_names": ["man-bowing"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 234,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F647-1F3FB-200D-2642-FE0F",
- "non_qualified": "1F647-1F3FB-200D-2642",
- "image": "1f647-1f3fb-200d-2642-fe0f.png",
- "sheet_x": 32,
- "sheet_y": 49,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F647-1F3FC-200D-2642-FE0F",
- "non_qualified": "1F647-1F3FC-200D-2642",
- "image": "1f647-1f3fc-200d-2642-fe0f.png",
- "sheet_x": 32,
- "sheet_y": 50,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F647-1F3FD-200D-2642-FE0F",
- "non_qualified": "1F647-1F3FD-200D-2642",
- "image": "1f647-1f3fd-200d-2642-fe0f.png",
- "sheet_x": 32,
- "sheet_y": 51,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F647-1F3FE-200D-2642-FE0F",
- "non_qualified": "1F647-1F3FE-200D-2642",
- "image": "1f647-1f3fe-200d-2642-fe0f.png",
- "sheet_x": 32,
- "sheet_y": 52,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F647-1F3FF-200D-2642-FE0F",
- "non_qualified": "1F647-1F3FF-200D-2642",
- "image": "1f647-1f3ff-200d-2642-fe0f.png",
- "sheet_x": 33,
- "sheet_y": 0,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- },
- "obsoletes": "1F647"
- }
- },
- "flag-tl": {
- "char": "\ud83c\uddf9\ud83c\uddf1",
- "key": "flag-tl",
- "keywords": ["flag-tl", "Timor-Leste Flag"],
- "category": "flags",
- "lib": {
- "name": "Timor-Leste Flag",
- "unified": "1F1F9-1F1F1",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1f9-1f1f1.png",
- "sheet_x": 4,
- "sheet_y": 46,
- "short_name": "flag-tl",
- "short_names": ["flag-tl"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 235,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "woman-bowing": {
- "char": "\ud83d\ude47\u200d\u2640\ufe0f",
- "key": "woman-bowing",
- "keywords": ["woman-bowing", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F647-200D-2640-FE0F",
- "non_qualified": "1F647-200D-2640",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f647-200d-2640-fe0f.png",
- "sheet_x": 32,
- "sheet_y": 42,
- "short_name": "woman-bowing",
- "short_names": ["woman-bowing"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 235,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F647-1F3FB-200D-2640-FE0F",
- "non_qualified": "1F647-1F3FB-200D-2640",
- "image": "1f647-1f3fb-200d-2640-fe0f.png",
- "sheet_x": 32,
- "sheet_y": 43,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F647-1F3FC-200D-2640-FE0F",
- "non_qualified": "1F647-1F3FC-200D-2640",
- "image": "1f647-1f3fc-200d-2640-fe0f.png",
- "sheet_x": 32,
- "sheet_y": 44,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F647-1F3FD-200D-2640-FE0F",
- "non_qualified": "1F647-1F3FD-200D-2640",
- "image": "1f647-1f3fd-200d-2640-fe0f.png",
- "sheet_x": 32,
- "sheet_y": 45,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F647-1F3FE-200D-2640-FE0F",
- "non_qualified": "1F647-1F3FE-200D-2640",
- "image": "1f647-1f3fe-200d-2640-fe0f.png",
- "sheet_x": 32,
- "sheet_y": 46,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F647-1F3FF-200D-2640-FE0F",
- "non_qualified": "1F647-1F3FF-200D-2640",
- "image": "1f647-1f3ff-200d-2640-fe0f.png",
- "sheet_x": 32,
- "sheet_y": 47,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- }
- }
- },
- "flag-tm": {
- "char": "\ud83c\uddf9\ud83c\uddf2",
- "key": "flag-tm",
- "keywords": ["flag-tm", "Turkmenistan Flag"],
- "category": "flags",
- "lib": {
- "name": "Turkmenistan Flag",
- "unified": "1F1F9-1F1F2",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1f9-1f1f2.png",
- "sheet_x": 4,
- "sheet_y": 47,
- "short_name": "flag-tm",
- "short_names": ["flag-tm"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 236,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "flag-tn": {
- "char": "\ud83c\uddf9\ud83c\uddf3",
- "key": "flag-tn",
- "keywords": ["flag-tn", "Tunisia Flag"],
- "category": "flags",
- "lib": {
- "name": "Tunisia Flag",
- "unified": "1F1F9-1F1F3",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1f9-1f1f3.png",
- "sheet_x": 4,
- "sheet_y": 48,
- "short_name": "flag-tn",
- "short_names": ["flag-tn"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 237,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "man-facepalming": {
- "char": "\ud83e\udd26\u200d\u2642\ufe0f",
- "key": "man-facepalming",
- "keywords": ["man-facepalming", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F926-200D-2642-FE0F",
- "non_qualified": "1F926-200D-2642",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f926-200d-2642-fe0f.png",
- "sheet_x": 38,
- "sheet_y": 47,
- "short_name": "man-facepalming",
- "short_names": ["man-facepalming"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 237,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F926-1F3FB-200D-2642-FE0F",
- "non_qualified": "1F926-1F3FB-200D-2642",
- "image": "1f926-1f3fb-200d-2642-fe0f.png",
- "sheet_x": 38,
- "sheet_y": 48,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F926-1F3FC-200D-2642-FE0F",
- "non_qualified": "1F926-1F3FC-200D-2642",
- "image": "1f926-1f3fc-200d-2642-fe0f.png",
- "sheet_x": 38,
- "sheet_y": 49,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F926-1F3FD-200D-2642-FE0F",
- "non_qualified": "1F926-1F3FD-200D-2642",
- "image": "1f926-1f3fd-200d-2642-fe0f.png",
- "sheet_x": 38,
- "sheet_y": 50,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F926-1F3FE-200D-2642-FE0F",
- "non_qualified": "1F926-1F3FE-200D-2642",
- "image": "1f926-1f3fe-200d-2642-fe0f.png",
- "sheet_x": 38,
- "sheet_y": 51,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F926-1F3FF-200D-2642-FE0F",
- "non_qualified": "1F926-1F3FF-200D-2642",
- "image": "1f926-1f3ff-200d-2642-fe0f.png",
- "sheet_x": 38,
- "sheet_y": 52,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- }
- }
- },
- "flag-to": {
- "char": "\ud83c\uddf9\ud83c\uddf4",
- "key": "flag-to",
- "keywords": ["flag-to", "Tonga Flag"],
- "category": "flags",
- "lib": {
- "name": "Tonga Flag",
- "unified": "1F1F9-1F1F4",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1f9-1f1f4.png",
- "sheet_x": 4,
- "sheet_y": 49,
- "short_name": "flag-to",
- "short_names": ["flag-to"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 238,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "woman-facepalming": {
- "char": "\ud83e\udd26\u200d\u2640\ufe0f",
- "key": "woman-facepalming",
- "keywords": ["woman-facepalming", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F926-200D-2640-FE0F",
- "non_qualified": "1F926-200D-2640",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f926-200d-2640-fe0f.png",
- "sheet_x": 38,
- "sheet_y": 41,
- "short_name": "woman-facepalming",
- "short_names": ["woman-facepalming"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 238,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F926-1F3FB-200D-2640-FE0F",
- "non_qualified": "1F926-1F3FB-200D-2640",
- "image": "1f926-1f3fb-200d-2640-fe0f.png",
- "sheet_x": 38,
- "sheet_y": 42,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F926-1F3FC-200D-2640-FE0F",
- "non_qualified": "1F926-1F3FC-200D-2640",
- "image": "1f926-1f3fc-200d-2640-fe0f.png",
- "sheet_x": 38,
- "sheet_y": 43,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F926-1F3FD-200D-2640-FE0F",
- "non_qualified": "1F926-1F3FD-200D-2640",
- "image": "1f926-1f3fd-200d-2640-fe0f.png",
- "sheet_x": 38,
- "sheet_y": 44,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F926-1F3FE-200D-2640-FE0F",
- "non_qualified": "1F926-1F3FE-200D-2640",
- "image": "1f926-1f3fe-200d-2640-fe0f.png",
- "sheet_x": 38,
- "sheet_y": 45,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F926-1F3FF-200D-2640-FE0F",
- "non_qualified": "1F926-1F3FF-200D-2640",
- "image": "1f926-1f3ff-200d-2640-fe0f.png",
- "sheet_x": 38,
- "sheet_y": 46,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- }
- }
- },
- "flag-tr": {
- "char": "\ud83c\uddf9\ud83c\uddf7",
- "key": "flag-tr",
- "keywords": ["flag-tr", "Turkey Flag"],
- "category": "flags",
- "lib": {
- "name": "Turkey Flag",
- "unified": "1F1F9-1F1F7",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1f9-1f1f7.png",
- "sheet_x": 4,
- "sheet_y": 50,
- "short_name": "flag-tr",
- "short_names": ["flag-tr"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 239,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "flag-tt": {
- "char": "\ud83c\uddf9\ud83c\uddf9",
- "key": "flag-tt",
- "keywords": ["flag-tt", "Trinidad & Tobago Flag"],
- "category": "flags",
- "lib": {
- "name": "Trinidad & Tobago Flag",
- "unified": "1F1F9-1F1F9",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1f9-1f1f9.png",
- "sheet_x": 4,
- "sheet_y": 51,
- "short_name": "flag-tt",
- "short_names": ["flag-tt"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 240,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "man-shrugging": {
- "char": "\ud83e\udd37\u200d\u2642\ufe0f",
- "key": "man-shrugging",
- "keywords": ["man-shrugging", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F937-200D-2642-FE0F",
- "non_qualified": "1F937-200D-2642",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f937-200d-2642-fe0f.png",
- "sheet_x": 40,
- "sheet_y": 10,
- "short_name": "man-shrugging",
- "short_names": ["man-shrugging"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 240,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F937-1F3FB-200D-2642-FE0F",
- "non_qualified": "1F937-1F3FB-200D-2642",
- "image": "1f937-1f3fb-200d-2642-fe0f.png",
- "sheet_x": 40,
- "sheet_y": 11,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F937-1F3FC-200D-2642-FE0F",
- "non_qualified": "1F937-1F3FC-200D-2642",
- "image": "1f937-1f3fc-200d-2642-fe0f.png",
- "sheet_x": 40,
- "sheet_y": 12,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F937-1F3FD-200D-2642-FE0F",
- "non_qualified": "1F937-1F3FD-200D-2642",
- "image": "1f937-1f3fd-200d-2642-fe0f.png",
- "sheet_x": 40,
- "sheet_y": 13,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F937-1F3FE-200D-2642-FE0F",
- "non_qualified": "1F937-1F3FE-200D-2642",
- "image": "1f937-1f3fe-200d-2642-fe0f.png",
- "sheet_x": 40,
- "sheet_y": 14,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F937-1F3FF-200D-2642-FE0F",
- "non_qualified": "1F937-1F3FF-200D-2642",
- "image": "1f937-1f3ff-200d-2642-fe0f.png",
- "sheet_x": 40,
- "sheet_y": 15,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- }
- }
- },
- "flag-tv": {
- "char": "\ud83c\uddf9\ud83c\uddfb",
- "key": "flag-tv",
- "keywords": ["flag-tv", "Tuvalu Flag"],
- "category": "flags",
- "lib": {
- "name": "Tuvalu Flag",
- "unified": "1F1F9-1F1FB",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1f9-1f1fb.png",
- "sheet_x": 4,
- "sheet_y": 52,
- "short_name": "flag-tv",
- "short_names": ["flag-tv"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 241,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "woman-shrugging": {
- "char": "\ud83e\udd37\u200d\u2640\ufe0f",
- "key": "woman-shrugging",
- "keywords": ["woman-shrugging", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F937-200D-2640-FE0F",
- "non_qualified": "1F937-200D-2640",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f937-200d-2640-fe0f.png",
- "sheet_x": 40,
- "sheet_y": 4,
- "short_name": "woman-shrugging",
- "short_names": ["woman-shrugging"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 241,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F937-1F3FB-200D-2640-FE0F",
- "non_qualified": "1F937-1F3FB-200D-2640",
- "image": "1f937-1f3fb-200d-2640-fe0f.png",
- "sheet_x": 40,
- "sheet_y": 5,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F937-1F3FC-200D-2640-FE0F",
- "non_qualified": "1F937-1F3FC-200D-2640",
- "image": "1f937-1f3fc-200d-2640-fe0f.png",
- "sheet_x": 40,
- "sheet_y": 6,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F937-1F3FD-200D-2640-FE0F",
- "non_qualified": "1F937-1F3FD-200D-2640",
- "image": "1f937-1f3fd-200d-2640-fe0f.png",
- "sheet_x": 40,
- "sheet_y": 7,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F937-1F3FE-200D-2640-FE0F",
- "non_qualified": "1F937-1F3FE-200D-2640",
- "image": "1f937-1f3fe-200d-2640-fe0f.png",
- "sheet_x": 40,
- "sheet_y": 8,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F937-1F3FF-200D-2640-FE0F",
- "non_qualified": "1F937-1F3FF-200D-2640",
- "image": "1f937-1f3ff-200d-2640-fe0f.png",
- "sheet_x": 40,
- "sheet_y": 9,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- }
- }
- },
- "flag-tw": {
- "char": "\ud83c\uddf9\ud83c\uddfc",
- "key": "flag-tw",
- "keywords": ["flag-tw", "Taiwan Flag"],
- "category": "flags",
- "lib": {
- "name": "Taiwan Flag",
- "unified": "1F1F9-1F1FC",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1f9-1f1fc.png",
- "sheet_x": 5,
- "sheet_y": 0,
- "short_name": "flag-tw",
- "short_names": ["flag-tw"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 242,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "flag-tz": {
- "char": "\ud83c\uddf9\ud83c\uddff",
- "key": "flag-tz",
- "keywords": ["flag-tz", "Tanzania Flag"],
- "category": "flags",
- "lib": {
- "name": "Tanzania Flag",
- "unified": "1F1F9-1F1FF",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1f9-1f1ff.png",
- "sheet_x": 5,
- "sheet_y": 1,
- "short_name": "flag-tz",
- "short_names": ["flag-tz"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 243,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "man-getting-massage": {
- "char": "\ud83d\udc86\u200d\u2642\ufe0f",
- "key": "man-getting-massage",
- "keywords": ["man-getting-massage", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F486-200D-2642-FE0F",
- "non_qualified": "1F486-200D-2642",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f486-200d-2642-fe0f.png",
- "sheet_x": 24,
- "sheet_y": 29,
- "short_name": "man-getting-massage",
- "short_names": ["man-getting-massage"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 243,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F486-1F3FB-200D-2642-FE0F",
- "non_qualified": "1F486-1F3FB-200D-2642",
- "image": "1f486-1f3fb-200d-2642-fe0f.png",
- "sheet_x": 24,
- "sheet_y": 30,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F486-1F3FC-200D-2642-FE0F",
- "non_qualified": "1F486-1F3FC-200D-2642",
- "image": "1f486-1f3fc-200d-2642-fe0f.png",
- "sheet_x": 24,
- "sheet_y": 31,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F486-1F3FD-200D-2642-FE0F",
- "non_qualified": "1F486-1F3FD-200D-2642",
- "image": "1f486-1f3fd-200d-2642-fe0f.png",
- "sheet_x": 24,
- "sheet_y": 32,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F486-1F3FE-200D-2642-FE0F",
- "non_qualified": "1F486-1F3FE-200D-2642",
- "image": "1f486-1f3fe-200d-2642-fe0f.png",
- "sheet_x": 24,
- "sheet_y": 33,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F486-1F3FF-200D-2642-FE0F",
- "non_qualified": "1F486-1F3FF-200D-2642",
- "image": "1f486-1f3ff-200d-2642-fe0f.png",
- "sheet_x": 24,
- "sheet_y": 34,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- }
- }
- },
- "flag-ua": {
- "char": "\ud83c\uddfa\ud83c\udde6",
- "key": "flag-ua",
- "keywords": ["flag-ua", "Ukraine Flag"],
- "category": "flags",
- "lib": {
- "name": "Ukraine Flag",
- "unified": "1F1FA-1F1E6",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1fa-1f1e6.png",
- "sheet_x": 5,
- "sheet_y": 2,
- "short_name": "flag-ua",
- "short_names": ["flag-ua"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 244,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "woman-getting-massage": {
- "char": "\ud83d\udc86\u200d\u2640\ufe0f",
- "key": "woman-getting-massage",
- "keywords": ["woman-getting-massage", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F486-200D-2640-FE0F",
- "non_qualified": "1F486-200D-2640",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f486-200d-2640-fe0f.png",
- "sheet_x": 24,
- "sheet_y": 23,
- "short_name": "woman-getting-massage",
- "short_names": ["woman-getting-massage"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 244,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F486-1F3FB-200D-2640-FE0F",
- "non_qualified": "1F486-1F3FB-200D-2640",
- "image": "1f486-1f3fb-200d-2640-fe0f.png",
- "sheet_x": 24,
- "sheet_y": 24,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F486-1F3FC-200D-2640-FE0F",
- "non_qualified": "1F486-1F3FC-200D-2640",
- "image": "1f486-1f3fc-200d-2640-fe0f.png",
- "sheet_x": 24,
- "sheet_y": 25,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F486-1F3FD-200D-2640-FE0F",
- "non_qualified": "1F486-1F3FD-200D-2640",
- "image": "1f486-1f3fd-200d-2640-fe0f.png",
- "sheet_x": 24,
- "sheet_y": 26,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F486-1F3FE-200D-2640-FE0F",
- "non_qualified": "1F486-1F3FE-200D-2640",
- "image": "1f486-1f3fe-200d-2640-fe0f.png",
- "sheet_x": 24,
- "sheet_y": 27,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F486-1F3FF-200D-2640-FE0F",
- "non_qualified": "1F486-1F3FF-200D-2640",
- "image": "1f486-1f3ff-200d-2640-fe0f.png",
- "sheet_x": 24,
- "sheet_y": 28,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- },
- "obsoletes": "1F486"
- }
- },
- "flag-ug": {
- "char": "\ud83c\uddfa\ud83c\uddec",
- "key": "flag-ug",
- "keywords": ["flag-ug", "Uganda Flag"],
- "category": "flags",
- "lib": {
- "name": "Uganda Flag",
- "unified": "1F1FA-1F1EC",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1fa-1f1ec.png",
- "sheet_x": 5,
- "sheet_y": 3,
- "short_name": "flag-ug",
- "short_names": ["flag-ug"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 245,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "flag-um": {
- "char": "\ud83c\uddfa\ud83c\uddf2",
- "key": "flag-um",
- "keywords": ["flag-um", "U.S. Outlying Islands Flag"],
- "category": "flags",
- "lib": {
- "name": "U.S. Outlying Islands Flag",
- "unified": "1F1FA-1F1F2",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1fa-1f1f2.png",
- "sheet_x": 5,
- "sheet_y": 4,
- "short_name": "flag-um",
- "short_names": ["flag-um"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 246,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "man-getting-haircut": {
- "char": "\ud83d\udc87\u200d\u2642\ufe0f",
- "key": "man-getting-haircut",
- "keywords": ["man-getting-haircut", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F487-200D-2642-FE0F",
- "non_qualified": "1F487-200D-2642",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f487-200d-2642-fe0f.png",
- "sheet_x": 24,
- "sheet_y": 47,
- "short_name": "man-getting-haircut",
- "short_names": ["man-getting-haircut"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 246,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F487-1F3FB-200D-2642-FE0F",
- "non_qualified": "1F487-1F3FB-200D-2642",
- "image": "1f487-1f3fb-200d-2642-fe0f.png",
- "sheet_x": 24,
- "sheet_y": 48,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F487-1F3FC-200D-2642-FE0F",
- "non_qualified": "1F487-1F3FC-200D-2642",
- "image": "1f487-1f3fc-200d-2642-fe0f.png",
- "sheet_x": 24,
- "sheet_y": 49,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F487-1F3FD-200D-2642-FE0F",
- "non_qualified": "1F487-1F3FD-200D-2642",
- "image": "1f487-1f3fd-200d-2642-fe0f.png",
- "sheet_x": 24,
- "sheet_y": 50,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F487-1F3FE-200D-2642-FE0F",
- "non_qualified": "1F487-1F3FE-200D-2642",
- "image": "1f487-1f3fe-200d-2642-fe0f.png",
- "sheet_x": 24,
- "sheet_y": 51,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F487-1F3FF-200D-2642-FE0F",
- "non_qualified": "1F487-1F3FF-200D-2642",
- "image": "1f487-1f3ff-200d-2642-fe0f.png",
- "sheet_x": 24,
- "sheet_y": 52,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- }
- }
- },
- "flag-un": {
- "char": "\ud83c\uddfa\ud83c\uddf3",
- "key": "flag-un",
- "keywords": ["flag-un", "United Nations Flag"],
- "category": "flags",
- "lib": {
- "name": "United Nations Flag",
- "unified": "1F1FA-1F1F3",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1fa-1f1f3.png",
- "sheet_x": 5,
- "sheet_y": 5,
- "short_name": "flag-un",
- "short_names": ["flag-un"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 247,
- "added_in": "6.0",
- "has_img_apple": false,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "woman-getting-haircut": {
- "char": "\ud83d\udc87\u200d\u2640\ufe0f",
- "key": "woman-getting-haircut",
- "keywords": ["woman-getting-haircut", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F487-200D-2640-FE0F",
- "non_qualified": "1F487-200D-2640",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f487-200d-2640-fe0f.png",
- "sheet_x": 24,
- "sheet_y": 41,
- "short_name": "woman-getting-haircut",
- "short_names": ["woman-getting-haircut"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 247,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F487-1F3FB-200D-2640-FE0F",
- "non_qualified": "1F487-1F3FB-200D-2640",
- "image": "1f487-1f3fb-200d-2640-fe0f.png",
- "sheet_x": 24,
- "sheet_y": 42,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F487-1F3FC-200D-2640-FE0F",
- "non_qualified": "1F487-1F3FC-200D-2640",
- "image": "1f487-1f3fc-200d-2640-fe0f.png",
- "sheet_x": 24,
- "sheet_y": 43,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F487-1F3FD-200D-2640-FE0F",
- "non_qualified": "1F487-1F3FD-200D-2640",
- "image": "1f487-1f3fd-200d-2640-fe0f.png",
- "sheet_x": 24,
- "sheet_y": 44,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F487-1F3FE-200D-2640-FE0F",
- "non_qualified": "1F487-1F3FE-200D-2640",
- "image": "1f487-1f3fe-200d-2640-fe0f.png",
- "sheet_x": 24,
- "sheet_y": 45,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F487-1F3FF-200D-2640-FE0F",
- "non_qualified": "1F487-1F3FF-200D-2640",
- "image": "1f487-1f3ff-200d-2640-fe0f.png",
- "sheet_x": 24,
- "sheet_y": 46,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- },
- "obsoletes": "1F487"
- }
- },
- "us": {
- "char": "\ud83c\uddfa\ud83c\uddf8",
- "key": "us",
- "keywords": ["us", "United States Flag"],
- "category": "flags",
- "lib": {
- "name": "United States Flag",
- "unified": "1F1FA-1F1F8",
- "non_qualified": null,
- "docomo": null,
- "au": "E573",
- "softbank": "E50C",
- "google": "FE4E6",
- "image": "1f1fa-1f1f8.png",
- "sheet_x": 5,
- "sheet_y": 6,
- "short_name": "us",
- "short_names": ["us", "flag-us"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 248,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "flag-uy": {
- "char": "\ud83c\uddfa\ud83c\uddfe",
- "key": "flag-uy",
- "keywords": ["flag-uy", "Uruguay Flag"],
- "category": "flags",
- "lib": {
- "name": "Uruguay Flag",
- "unified": "1F1FA-1F1FE",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1fa-1f1fe.png",
- "sheet_x": 5,
- "sheet_y": 7,
- "short_name": "flag-uy",
- "short_names": ["flag-uy"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 249,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "man-walking": {
- "char": "\ud83d\udeb6\u200d\u2642\ufe0f",
- "key": "man-walking",
- "keywords": ["man-walking", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F6B6-200D-2642-FE0F",
- "non_qualified": "1F6B6-200D-2642",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f6b6-200d-2642-fe0f.png",
- "sheet_x": 36,
- "sheet_y": 28,
- "short_name": "man-walking",
- "short_names": ["man-walking"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 249,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F6B6-1F3FB-200D-2642-FE0F",
- "non_qualified": "1F6B6-1F3FB-200D-2642",
- "image": "1f6b6-1f3fb-200d-2642-fe0f.png",
- "sheet_x": 36,
- "sheet_y": 29,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F6B6-1F3FC-200D-2642-FE0F",
- "non_qualified": "1F6B6-1F3FC-200D-2642",
- "image": "1f6b6-1f3fc-200d-2642-fe0f.png",
- "sheet_x": 36,
- "sheet_y": 30,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F6B6-1F3FD-200D-2642-FE0F",
- "non_qualified": "1F6B6-1F3FD-200D-2642",
- "image": "1f6b6-1f3fd-200d-2642-fe0f.png",
- "sheet_x": 36,
- "sheet_y": 31,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F6B6-1F3FE-200D-2642-FE0F",
- "non_qualified": "1F6B6-1F3FE-200D-2642",
- "image": "1f6b6-1f3fe-200d-2642-fe0f.png",
- "sheet_x": 36,
- "sheet_y": 32,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F6B6-1F3FF-200D-2642-FE0F",
- "non_qualified": "1F6B6-1F3FF-200D-2642",
- "image": "1f6b6-1f3ff-200d-2642-fe0f.png",
- "sheet_x": 36,
- "sheet_y": 33,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- },
- "obsoletes": "1F6B6"
- }
- },
- "flag-uz": {
- "char": "\ud83c\uddfa\ud83c\uddff",
- "key": "flag-uz",
- "keywords": ["flag-uz", "Uzbekistan Flag"],
- "category": "flags",
- "lib": {
- "name": "Uzbekistan Flag",
- "unified": "1F1FA-1F1FF",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1fa-1f1ff.png",
- "sheet_x": 5,
- "sheet_y": 8,
- "short_name": "flag-uz",
- "short_names": ["flag-uz"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 250,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "woman-walking": {
- "char": "\ud83d\udeb6\u200d\u2640\ufe0f",
- "key": "woman-walking",
- "keywords": ["woman-walking", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F6B6-200D-2640-FE0F",
- "non_qualified": "1F6B6-200D-2640",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f6b6-200d-2640-fe0f.png",
- "sheet_x": 36,
- "sheet_y": 22,
- "short_name": "woman-walking",
- "short_names": ["woman-walking"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 250,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F6B6-1F3FB-200D-2640-FE0F",
- "non_qualified": "1F6B6-1F3FB-200D-2640",
- "image": "1f6b6-1f3fb-200d-2640-fe0f.png",
- "sheet_x": 36,
- "sheet_y": 23,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F6B6-1F3FC-200D-2640-FE0F",
- "non_qualified": "1F6B6-1F3FC-200D-2640",
- "image": "1f6b6-1f3fc-200d-2640-fe0f.png",
- "sheet_x": 36,
- "sheet_y": 24,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F6B6-1F3FD-200D-2640-FE0F",
- "non_qualified": "1F6B6-1F3FD-200D-2640",
- "image": "1f6b6-1f3fd-200d-2640-fe0f.png",
- "sheet_x": 36,
- "sheet_y": 25,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F6B6-1F3FE-200D-2640-FE0F",
- "non_qualified": "1F6B6-1F3FE-200D-2640",
- "image": "1f6b6-1f3fe-200d-2640-fe0f.png",
- "sheet_x": 36,
- "sheet_y": 26,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F6B6-1F3FF-200D-2640-FE0F",
- "non_qualified": "1F6B6-1F3FF-200D-2640",
- "image": "1f6b6-1f3ff-200d-2640-fe0f.png",
- "sheet_x": 36,
- "sheet_y": 27,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- }
- }
- },
- "flag-va": {
- "char": "\ud83c\uddfb\ud83c\udde6",
- "key": "flag-va",
- "keywords": ["flag-va", "Vatican City Flag"],
- "category": "flags",
- "lib": {
- "name": "Vatican City Flag",
- "unified": "1F1FB-1F1E6",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1fb-1f1e6.png",
- "sheet_x": 5,
- "sheet_y": 9,
- "short_name": "flag-va",
- "short_names": ["flag-va"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 251,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "flag-vc": {
- "char": "\ud83c\uddfb\ud83c\udde8",
- "key": "flag-vc",
- "keywords": ["flag-vc", "St. Vincent & Grenadines Flag"],
- "category": "flags",
- "lib": {
- "name": "St. Vincent & Grenadines Flag",
- "unified": "1F1FB-1F1E8",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1fb-1f1e8.png",
- "sheet_x": 5,
- "sheet_y": 10,
- "short_name": "flag-vc",
- "short_names": ["flag-vc"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 252,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "man-running": {
- "char": "\ud83c\udfc3\u200d\u2642\ufe0f",
- "key": "man-running",
- "keywords": ["man-running", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F3C3-200D-2642-FE0F",
- "non_qualified": "1F3C3-200D-2642",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f3c3-200d-2642-fe0f.png",
- "sheet_x": 9,
- "sheet_y": 31,
- "short_name": "man-running",
- "short_names": ["man-running"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 252,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F3C3-1F3FB-200D-2642-FE0F",
- "non_qualified": "1F3C3-1F3FB-200D-2642",
- "image": "1f3c3-1f3fb-200d-2642-fe0f.png",
- "sheet_x": 9,
- "sheet_y": 32,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F3C3-1F3FC-200D-2642-FE0F",
- "non_qualified": "1F3C3-1F3FC-200D-2642",
- "image": "1f3c3-1f3fc-200d-2642-fe0f.png",
- "sheet_x": 9,
- "sheet_y": 33,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F3C3-1F3FD-200D-2642-FE0F",
- "non_qualified": "1F3C3-1F3FD-200D-2642",
- "image": "1f3c3-1f3fd-200d-2642-fe0f.png",
- "sheet_x": 9,
- "sheet_y": 34,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F3C3-1F3FE-200D-2642-FE0F",
- "non_qualified": "1F3C3-1F3FE-200D-2642",
- "image": "1f3c3-1f3fe-200d-2642-fe0f.png",
- "sheet_x": 9,
- "sheet_y": 35,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F3C3-1F3FF-200D-2642-FE0F",
- "non_qualified": "1F3C3-1F3FF-200D-2642",
- "image": "1f3c3-1f3ff-200d-2642-fe0f.png",
- "sheet_x": 9,
- "sheet_y": 36,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- },
- "obsoletes": "1F3C3"
- }
- },
- "flag-ve": {
- "char": "\ud83c\uddfb\ud83c\uddea",
- "key": "flag-ve",
- "keywords": ["flag-ve", "Venezuela Flag"],
- "category": "flags",
- "lib": {
- "name": "Venezuela Flag",
- "unified": "1F1FB-1F1EA",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1fb-1f1ea.png",
- "sheet_x": 5,
- "sheet_y": 11,
- "short_name": "flag-ve",
- "short_names": ["flag-ve"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 253,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "woman-running": {
- "char": "\ud83c\udfc3\u200d\u2640\ufe0f",
- "key": "woman-running",
- "keywords": ["woman-running", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F3C3-200D-2640-FE0F",
- "non_qualified": "1F3C3-200D-2640",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f3c3-200d-2640-fe0f.png",
- "sheet_x": 9,
- "sheet_y": 25,
- "short_name": "woman-running",
- "short_names": ["woman-running"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 253,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F3C3-1F3FB-200D-2640-FE0F",
- "non_qualified": "1F3C3-1F3FB-200D-2640",
- "image": "1f3c3-1f3fb-200d-2640-fe0f.png",
- "sheet_x": 9,
- "sheet_y": 26,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F3C3-1F3FC-200D-2640-FE0F",
- "non_qualified": "1F3C3-1F3FC-200D-2640",
- "image": "1f3c3-1f3fc-200d-2640-fe0f.png",
- "sheet_x": 9,
- "sheet_y": 27,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F3C3-1F3FD-200D-2640-FE0F",
- "non_qualified": "1F3C3-1F3FD-200D-2640",
- "image": "1f3c3-1f3fd-200d-2640-fe0f.png",
- "sheet_x": 9,
- "sheet_y": 28,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F3C3-1F3FE-200D-2640-FE0F",
- "non_qualified": "1F3C3-1F3FE-200D-2640",
- "image": "1f3c3-1f3fe-200d-2640-fe0f.png",
- "sheet_x": 9,
- "sheet_y": 29,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F3C3-1F3FF-200D-2640-FE0F",
- "non_qualified": "1F3C3-1F3FF-200D-2640",
- "image": "1f3c3-1f3ff-200d-2640-fe0f.png",
- "sheet_x": 9,
- "sheet_y": 30,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- }
- }
- },
- "flag-vg": {
- "char": "\ud83c\uddfb\ud83c\uddec",
- "key": "flag-vg",
- "keywords": ["flag-vg", "British Virgin Islands Flag"],
- "category": "flags",
- "lib": {
- "name": "British Virgin Islands Flag",
- "unified": "1F1FB-1F1EC",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1fb-1f1ec.png",
- "sheet_x": 5,
- "sheet_y": 12,
- "short_name": "flag-vg",
- "short_names": ["flag-vg"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 254,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "dancer": {
- "char": "\ud83d\udc83",
- "key": "dancer",
- "keywords": ["dancer", "DANCER"],
- "category": "people",
- "lib": {
- "name": "DANCER",
- "unified": "1F483",
- "non_qualified": null,
- "docomo": null,
- "au": "EB1C",
- "softbank": "E51F",
- "google": "FE1B6",
- "image": "1f483.png",
- "sheet_x": 24,
- "sheet_y": 10,
- "short_name": "dancer",
- "short_names": ["dancer"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 254,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F483-1F3FB",
- "non_qualified": null,
- "image": "1f483-1f3fb.png",
- "sheet_x": 24,
- "sheet_y": 11,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FC": {
- "unified": "1F483-1F3FC",
- "non_qualified": null,
- "image": "1f483-1f3fc.png",
- "sheet_x": 24,
- "sheet_y": 12,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FD": {
- "unified": "1F483-1F3FD",
- "non_qualified": null,
- "image": "1f483-1f3fd.png",
- "sheet_x": 24,
- "sheet_y": 13,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FE": {
- "unified": "1F483-1F3FE",
- "non_qualified": null,
- "image": "1f483-1f3fe.png",
- "sheet_x": 24,
- "sheet_y": 14,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FF": {
- "unified": "1F483-1F3FF",
- "non_qualified": null,
- "image": "1f483-1f3ff.png",
- "sheet_x": 24,
- "sheet_y": 15,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- }
- }
- },
- "flag-vi": {
- "char": "\ud83c\uddfb\ud83c\uddee",
- "key": "flag-vi",
- "keywords": ["flag-vi", "U.S. Virgin Islands Flag"],
- "category": "flags",
- "lib": {
- "name": "U.S. Virgin Islands Flag",
- "unified": "1F1FB-1F1EE",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1fb-1f1ee.png",
- "sheet_x": 5,
- "sheet_y": 13,
- "short_name": "flag-vi",
- "short_names": ["flag-vi"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 255,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "man_dancing": {
- "char": "\ud83d\udd7a",
- "key": "man_dancing",
- "keywords": ["man_dancing", "MAN DANCING"],
- "category": "people",
- "lib": {
- "name": "MAN DANCING",
- "unified": "1F57A",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f57a.png",
- "sheet_x": 29,
- "sheet_y": 41,
- "short_name": "man_dancing",
- "short_names": ["man_dancing"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 255,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F57A-1F3FB",
- "non_qualified": null,
- "image": "1f57a-1f3fb.png",
- "sheet_x": 29,
- "sheet_y": 42,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F57A-1F3FC",
- "non_qualified": null,
- "image": "1f57a-1f3fc.png",
- "sheet_x": 29,
- "sheet_y": 43,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F57A-1F3FD",
- "non_qualified": null,
- "image": "1f57a-1f3fd.png",
- "sheet_x": 29,
- "sheet_y": 44,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F57A-1F3FE",
- "non_qualified": null,
- "image": "1f57a-1f3fe.png",
- "sheet_x": 29,
- "sheet_y": 45,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F57A-1F3FF",
- "non_qualified": null,
- "image": "1f57a-1f3ff.png",
- "sheet_x": 29,
- "sheet_y": 46,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- }
- }
- },
- "flag-vn": {
- "char": "\ud83c\uddfb\ud83c\uddf3",
- "key": "flag-vn",
- "keywords": ["flag-vn", "Vietnam Flag"],
- "category": "flags",
- "lib": {
- "name": "Vietnam Flag",
- "unified": "1F1FB-1F1F3",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1fb-1f1f3.png",
- "sheet_x": 5,
- "sheet_y": 14,
- "short_name": "flag-vn",
- "short_names": ["flag-vn"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 256,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "flag-vu": {
- "char": "\ud83c\uddfb\ud83c\uddfa",
- "key": "flag-vu",
- "keywords": ["flag-vu", "Vanuatu Flag"],
- "category": "flags",
- "lib": {
- "name": "Vanuatu Flag",
- "unified": "1F1FB-1F1FA",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1fb-1f1fa.png",
- "sheet_x": 5,
- "sheet_y": 15,
- "short_name": "flag-vu",
- "short_names": ["flag-vu"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 257,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "man-with-bunny-ears-partying": {
- "char": "\ud83d\udc6f\u200d\u2642\ufe0f",
- "key": "man-with-bunny-ears-partying",
- "keywords": ["man-with-bunny-ears-partying", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F46F-200D-2642-FE0F",
- "non_qualified": "1F46F-200D-2642",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f46f-200d-2642-fe0f.png",
- "sheet_x": 21,
- "sheet_y": 28,
- "short_name": "man-with-bunny-ears-partying",
- "short_names": ["man-with-bunny-ears-partying"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 257,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "flag-wf": {
- "char": "\ud83c\uddfc\ud83c\uddeb",
- "key": "flag-wf",
- "keywords": ["flag-wf", "Wallis & Futuna Flag"],
- "category": "flags",
- "lib": {
- "name": "Wallis & Futuna Flag",
- "unified": "1F1FC-1F1EB",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1fc-1f1eb.png",
- "sheet_x": 5,
- "sheet_y": 16,
- "short_name": "flag-wf",
- "short_names": ["flag-wf"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 258,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": false,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "woman-with-bunny-ears-partying": {
- "char": "\ud83d\udc6f\u200d\u2640\ufe0f",
- "key": "woman-with-bunny-ears-partying",
- "keywords": ["woman-with-bunny-ears-partying", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F46F-200D-2640-FE0F",
- "non_qualified": "1F46F-200D-2640",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f46f-200d-2640-fe0f.png",
- "sheet_x": 21,
- "sheet_y": 27,
- "short_name": "woman-with-bunny-ears-partying",
- "short_names": ["woman-with-bunny-ears-partying"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 258,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "obsoletes": "1F46F"
- }
- },
- "flag-ws": {
- "char": "\ud83c\uddfc\ud83c\uddf8",
- "key": "flag-ws",
- "keywords": ["flag-ws", "Samoa Flag"],
- "category": "flags",
- "lib": {
- "name": "Samoa Flag",
- "unified": "1F1FC-1F1F8",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1fc-1f1f8.png",
- "sheet_x": 5,
- "sheet_y": 17,
- "short_name": "flag-ws",
- "short_names": ["flag-ws"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 259,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "flag-xk": {
- "char": "\ud83c\uddfd\ud83c\uddf0",
- "key": "flag-xk",
- "keywords": ["flag-xk", "Kosovo Flag"],
- "category": "flags",
- "lib": {
- "name": "Kosovo Flag",
- "unified": "1F1FD-1F1F0",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1fd-1f1f0.png",
- "sheet_x": 5,
- "sheet_y": 18,
- "short_name": "flag-xk",
- "short_names": ["flag-xk"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 260,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": false,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "woman_in_steamy_room": {
- "char": "\ud83e\uddd6\u200d\u2640\ufe0f",
- "key": "woman_in_steamy_room",
- "keywords": ["woman_in_steamy_room", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F9D6-200D-2640-FE0F",
- "non_qualified": "1F9D6-200D-2640",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f9d6-200d-2640-fe0f.png",
- "sheet_x": 44,
- "sheet_y": 50,
- "short_name": "woman_in_steamy_room",
- "short_names": ["woman_in_steamy_room"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 260,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F9D6-1F3FB-200D-2640-FE0F",
- "non_qualified": "1F9D6-1F3FB-200D-2640",
- "image": "1f9d6-1f3fb-200d-2640-fe0f.png",
- "sheet_x": 44,
- "sheet_y": 51,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F9D6-1F3FC-200D-2640-FE0F",
- "non_qualified": "1F9D6-1F3FC-200D-2640",
- "image": "1f9d6-1f3fc-200d-2640-fe0f.png",
- "sheet_x": 44,
- "sheet_y": 52,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F9D6-1F3FD-200D-2640-FE0F",
- "non_qualified": "1F9D6-1F3FD-200D-2640",
- "image": "1f9d6-1f3fd-200d-2640-fe0f.png",
- "sheet_x": 45,
- "sheet_y": 0,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F9D6-1F3FE-200D-2640-FE0F",
- "non_qualified": "1F9D6-1F3FE-200D-2640",
- "image": "1f9d6-1f3fe-200d-2640-fe0f.png",
- "sheet_x": 45,
- "sheet_y": 1,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F9D6-1F3FF-200D-2640-FE0F",
- "non_qualified": "1F9D6-1F3FF-200D-2640",
- "image": "1f9d6-1f3ff-200d-2640-fe0f.png",
- "sheet_x": 45,
- "sheet_y": 2,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- }
- }
- },
- "flag-ye": {
- "char": "\ud83c\uddfe\ud83c\uddea",
- "key": "flag-ye",
- "keywords": ["flag-ye", "Yemen Flag"],
- "category": "flags",
- "lib": {
- "name": "Yemen Flag",
- "unified": "1F1FE-1F1EA",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1fe-1f1ea.png",
- "sheet_x": 5,
- "sheet_y": 19,
- "short_name": "flag-ye",
- "short_names": ["flag-ye"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 261,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "man_in_steamy_room": {
- "char": "\ud83e\uddd6\u200d\u2642\ufe0f",
- "key": "man_in_steamy_room",
- "keywords": ["man_in_steamy_room", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F9D6-200D-2642-FE0F",
- "non_qualified": "1F9D6-200D-2642",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f9d6-200d-2642-fe0f.png",
- "sheet_x": 45,
- "sheet_y": 3,
- "short_name": "man_in_steamy_room",
- "short_names": ["man_in_steamy_room"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 261,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F9D6-1F3FB-200D-2642-FE0F",
- "non_qualified": "1F9D6-1F3FB-200D-2642",
- "image": "1f9d6-1f3fb-200d-2642-fe0f.png",
- "sheet_x": 45,
- "sheet_y": 4,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false,
- "obsoletes": "1F9D6-1F3FB"
- },
- "1F3FC": {
- "unified": "1F9D6-1F3FC-200D-2642-FE0F",
- "non_qualified": "1F9D6-1F3FC-200D-2642",
- "image": "1f9d6-1f3fc-200d-2642-fe0f.png",
- "sheet_x": 45,
- "sheet_y": 5,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false,
- "obsoletes": "1F9D6-1F3FC"
- },
- "1F3FD": {
- "unified": "1F9D6-1F3FD-200D-2642-FE0F",
- "non_qualified": "1F9D6-1F3FD-200D-2642",
- "image": "1f9d6-1f3fd-200d-2642-fe0f.png",
- "sheet_x": 45,
- "sheet_y": 6,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false,
- "obsoletes": "1F9D6-1F3FD"
- },
- "1F3FE": {
- "unified": "1F9D6-1F3FE-200D-2642-FE0F",
- "non_qualified": "1F9D6-1F3FE-200D-2642",
- "image": "1f9d6-1f3fe-200d-2642-fe0f.png",
- "sheet_x": 45,
- "sheet_y": 7,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false,
- "obsoletes": "1F9D6-1F3FE"
- },
- "1F3FF": {
- "unified": "1F9D6-1F3FF-200D-2642-FE0F",
- "non_qualified": "1F9D6-1F3FF-200D-2642",
- "image": "1f9d6-1f3ff-200d-2642-fe0f.png",
- "sheet_x": 45,
- "sheet_y": 8,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false,
- "obsoletes": "1F9D6-1F3FF"
- }
- },
- "obsoletes": "1F9D6"
- }
- },
- "flag-yt": {
- "char": "\ud83c\uddfe\ud83c\uddf9",
- "key": "flag-yt",
- "keywords": ["flag-yt", "Mayotte Flag"],
- "category": "flags",
- "lib": {
- "name": "Mayotte Flag",
- "unified": "1F1FE-1F1F9",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1fe-1f1f9.png",
- "sheet_x": 5,
- "sheet_y": 20,
- "short_name": "flag-yt",
- "short_names": ["flag-yt"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 262,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": false,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "flag-za": {
- "char": "\ud83c\uddff\ud83c\udde6",
- "key": "flag-za",
- "keywords": ["flag-za", "South Africa Flag"],
- "category": "flags",
- "lib": {
- "name": "South Africa Flag",
- "unified": "1F1FF-1F1E6",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1ff-1f1e6.png",
- "sheet_x": 5,
- "sheet_y": 21,
- "short_name": "flag-za",
- "short_names": ["flag-za"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 263,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "woman_climbing": {
- "char": "\ud83e\uddd7\u200d\u2640\ufe0f",
- "key": "woman_climbing",
- "keywords": ["woman_climbing", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F9D7-200D-2640-FE0F",
- "non_qualified": "1F9D7-200D-2640",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f9d7-200d-2640-fe0f.png",
- "sheet_x": 45,
- "sheet_y": 15,
- "short_name": "woman_climbing",
- "short_names": ["woman_climbing"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 263,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F9D7-1F3FB-200D-2640-FE0F",
- "non_qualified": "1F9D7-1F3FB-200D-2640",
- "image": "1f9d7-1f3fb-200d-2640-fe0f.png",
- "sheet_x": 45,
- "sheet_y": 16,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false,
- "obsoletes": "1F9D7-1F3FB"
- },
- "1F3FC": {
- "unified": "1F9D7-1F3FC-200D-2640-FE0F",
- "non_qualified": "1F9D7-1F3FC-200D-2640",
- "image": "1f9d7-1f3fc-200d-2640-fe0f.png",
- "sheet_x": 45,
- "sheet_y": 17,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false,
- "obsoletes": "1F9D7-1F3FC"
- },
- "1F3FD": {
- "unified": "1F9D7-1F3FD-200D-2640-FE0F",
- "non_qualified": "1F9D7-1F3FD-200D-2640",
- "image": "1f9d7-1f3fd-200d-2640-fe0f.png",
- "sheet_x": 45,
- "sheet_y": 18,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false,
- "obsoletes": "1F9D7-1F3FD"
- },
- "1F3FE": {
- "unified": "1F9D7-1F3FE-200D-2640-FE0F",
- "non_qualified": "1F9D7-1F3FE-200D-2640",
- "image": "1f9d7-1f3fe-200d-2640-fe0f.png",
- "sheet_x": 45,
- "sheet_y": 19,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false,
- "obsoletes": "1F9D7-1F3FE"
- },
- "1F3FF": {
- "unified": "1F9D7-1F3FF-200D-2640-FE0F",
- "non_qualified": "1F9D7-1F3FF-200D-2640",
- "image": "1f9d7-1f3ff-200d-2640-fe0f.png",
- "sheet_x": 45,
- "sheet_y": 20,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false,
- "obsoletes": "1F9D7-1F3FF"
- }
- },
- "obsoletes": "1F9D7"
- }
- },
- "flag-zm": {
- "char": "\ud83c\uddff\ud83c\uddf2",
- "key": "flag-zm",
- "keywords": ["flag-zm", "Zambia Flag"],
- "category": "flags",
- "lib": {
- "name": "Zambia Flag",
- "unified": "1F1FF-1F1F2",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1ff-1f1f2.png",
- "sheet_x": 5,
- "sheet_y": 22,
- "short_name": "flag-zm",
- "short_names": ["flag-zm"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 264,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "man_climbing": {
- "char": "\ud83e\uddd7\u200d\u2642\ufe0f",
- "key": "man_climbing",
- "keywords": ["man_climbing", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F9D7-200D-2642-FE0F",
- "non_qualified": "1F9D7-200D-2642",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f9d7-200d-2642-fe0f.png",
- "sheet_x": 45,
- "sheet_y": 21,
- "short_name": "man_climbing",
- "short_names": ["man_climbing"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 264,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F9D7-1F3FB-200D-2642-FE0F",
- "non_qualified": "1F9D7-1F3FB-200D-2642",
- "image": "1f9d7-1f3fb-200d-2642-fe0f.png",
- "sheet_x": 45,
- "sheet_y": 22,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F9D7-1F3FC-200D-2642-FE0F",
- "non_qualified": "1F9D7-1F3FC-200D-2642",
- "image": "1f9d7-1f3fc-200d-2642-fe0f.png",
- "sheet_x": 45,
- "sheet_y": 23,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F9D7-1F3FD-200D-2642-FE0F",
- "non_qualified": "1F9D7-1F3FD-200D-2642",
- "image": "1f9d7-1f3fd-200d-2642-fe0f.png",
- "sheet_x": 45,
- "sheet_y": 24,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F9D7-1F3FE-200D-2642-FE0F",
- "non_qualified": "1F9D7-1F3FE-200D-2642",
- "image": "1f9d7-1f3fe-200d-2642-fe0f.png",
- "sheet_x": 45,
- "sheet_y": 25,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F9D7-1F3FF-200D-2642-FE0F",
- "non_qualified": "1F9D7-1F3FF-200D-2642",
- "image": "1f9d7-1f3ff-200d-2642-fe0f.png",
- "sheet_x": 45,
- "sheet_y": 26,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- }
- }
- },
- "flag-zw": {
- "char": "\ud83c\uddff\ud83c\uddfc",
- "key": "flag-zw",
- "keywords": ["flag-zw", "Zimbabwe Flag"],
- "category": "flags",
- "lib": {
- "name": "Zimbabwe Flag",
- "unified": "1F1FF-1F1FC",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f1ff-1f1fc.png",
- "sheet_x": 5,
- "sheet_y": 23,
- "short_name": "flag-zw",
- "short_names": ["flag-zw"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 265,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "flag-england": {
- "char": "\ud83c\udff4\udb40\udc67\udb40\udc62\udb40\udc65\udb40\udc6e\udb40\udc67\udb40\udc7f",
- "key": "flag-england",
- "keywords": ["flag-england", "England Flag"],
- "category": "flags",
- "lib": {
- "name": "England Flag",
- "unified": "1F3F4-E0067-E0062-E0065-E006E-E0067-E007F",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f3f4-e0067-e0062-e0065-e006e-e0067-e007f.png",
- "sheet_x": 12,
- "sheet_y": 5,
- "short_name": "flag-england",
- "short_names": ["flag-england"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 266,
- "added_in": "7.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "woman_in_lotus_position": {
- "char": "\ud83e\uddd8\u200d\u2640\ufe0f",
- "key": "woman_in_lotus_position",
- "keywords": ["woman_in_lotus_position", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F9D8-200D-2640-FE0F",
- "non_qualified": "1F9D8-200D-2640",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f9d8-200d-2640-fe0f.png",
- "sheet_x": 45,
- "sheet_y": 33,
- "short_name": "woman_in_lotus_position",
- "short_names": ["woman_in_lotus_position"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 266,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F9D8-1F3FB-200D-2640-FE0F",
- "non_qualified": "1F9D8-1F3FB-200D-2640",
- "image": "1f9d8-1f3fb-200d-2640-fe0f.png",
- "sheet_x": 45,
- "sheet_y": 34,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false,
- "obsoletes": "1F9D8-1F3FB"
- },
- "1F3FC": {
- "unified": "1F9D8-1F3FC-200D-2640-FE0F",
- "non_qualified": "1F9D8-1F3FC-200D-2640",
- "image": "1f9d8-1f3fc-200d-2640-fe0f.png",
- "sheet_x": 45,
- "sheet_y": 35,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false,
- "obsoletes": "1F9D8-1F3FC"
- },
- "1F3FD": {
- "unified": "1F9D8-1F3FD-200D-2640-FE0F",
- "non_qualified": "1F9D8-1F3FD-200D-2640",
- "image": "1f9d8-1f3fd-200d-2640-fe0f.png",
- "sheet_x": 45,
- "sheet_y": 36,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false,
- "obsoletes": "1F9D8-1F3FD"
- },
- "1F3FE": {
- "unified": "1F9D8-1F3FE-200D-2640-FE0F",
- "non_qualified": "1F9D8-1F3FE-200D-2640",
- "image": "1f9d8-1f3fe-200d-2640-fe0f.png",
- "sheet_x": 45,
- "sheet_y": 37,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false,
- "obsoletes": "1F9D8-1F3FE"
- },
- "1F3FF": {
- "unified": "1F9D8-1F3FF-200D-2640-FE0F",
- "non_qualified": "1F9D8-1F3FF-200D-2640",
- "image": "1f9d8-1f3ff-200d-2640-fe0f.png",
- "sheet_x": 45,
- "sheet_y": 38,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false,
- "obsoletes": "1F9D8-1F3FF"
- }
- },
- "obsoletes": "1F9D8"
- }
- },
- "flag-scotland": {
- "char": "\ud83c\udff4\udb40\udc67\udb40\udc62\udb40\udc73\udb40\udc63\udb40\udc74\udb40\udc7f",
- "key": "flag-scotland",
- "keywords": ["flag-scotland", "Scotland Flag"],
- "category": "flags",
- "lib": {
- "name": "Scotland Flag",
- "unified": "1F3F4-E0067-E0062-E0073-E0063-E0074-E007F",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f3f4-e0067-e0062-e0073-e0063-e0074-e007f.png",
- "sheet_x": 12,
- "sheet_y": 6,
- "short_name": "flag-scotland",
- "short_names": ["flag-scotland"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 267,
- "added_in": "7.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "man_in_lotus_position": {
- "char": "\ud83e\uddd8\u200d\u2642\ufe0f",
- "key": "man_in_lotus_position",
- "keywords": ["man_in_lotus_position", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F9D8-200D-2642-FE0F",
- "non_qualified": "1F9D8-200D-2642",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f9d8-200d-2642-fe0f.png",
- "sheet_x": 45,
- "sheet_y": 39,
- "short_name": "man_in_lotus_position",
- "short_names": ["man_in_lotus_position"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 267,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F9D8-1F3FB-200D-2642-FE0F",
- "non_qualified": "1F9D8-1F3FB-200D-2642",
- "image": "1f9d8-1f3fb-200d-2642-fe0f.png",
- "sheet_x": 45,
- "sheet_y": 40,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F9D8-1F3FC-200D-2642-FE0F",
- "non_qualified": "1F9D8-1F3FC-200D-2642",
- "image": "1f9d8-1f3fc-200d-2642-fe0f.png",
- "sheet_x": 45,
- "sheet_y": 41,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F9D8-1F3FD-200D-2642-FE0F",
- "non_qualified": "1F9D8-1F3FD-200D-2642",
- "image": "1f9d8-1f3fd-200d-2642-fe0f.png",
- "sheet_x": 45,
- "sheet_y": 42,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F9D8-1F3FE-200D-2642-FE0F",
- "non_qualified": "1F9D8-1F3FE-200D-2642",
- "image": "1f9d8-1f3fe-200d-2642-fe0f.png",
- "sheet_x": 45,
- "sheet_y": 43,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F9D8-1F3FF-200D-2642-FE0F",
- "non_qualified": "1F9D8-1F3FF-200D-2642",
- "image": "1f9d8-1f3ff-200d-2642-fe0f.png",
- "sheet_x": 45,
- "sheet_y": 44,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- }
- }
- },
- "flag-wales": {
- "char": "\ud83c\udff4\udb40\udc67\udb40\udc62\udb40\udc77\udb40\udc6c\udb40\udc73\udb40\udc7f",
- "key": "flag-wales",
- "keywords": ["flag-wales", "Wales Flag"],
- "category": "flags",
- "lib": {
- "name": "Wales Flag",
- "unified": "1F3F4-E0067-E0062-E0077-E006C-E0073-E007F",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f3f4-e0067-e0062-e0077-e006c-e0073-e007f.png",
- "sheet_x": 12,
- "sheet_y": 7,
- "short_name": "flag-wales",
- "short_names": ["flag-wales"],
- "text": null,
- "texts": null,
- "category": "Flags",
- "sort_order": 268,
- "added_in": "7.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "bath": {
- "char": "\ud83d\udec0",
- "key": "bath",
- "keywords": ["bath", "BATH"],
- "category": "people",
- "lib": {
- "name": "BATH",
- "unified": "1F6C0",
- "non_qualified": null,
- "docomo": "E6F7",
- "au": "E5D8",
- "softbank": "E13F",
- "google": "FE505",
- "image": "1f6c0.png",
- "sheet_x": 36,
- "sheet_y": 49,
- "short_name": "bath",
- "short_names": ["bath"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 268,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F6C0-1F3FB",
- "non_qualified": null,
- "image": "1f6c0-1f3fb.png",
- "sheet_x": 36,
- "sheet_y": 50,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FC": {
- "unified": "1F6C0-1F3FC",
- "non_qualified": null,
- "image": "1f6c0-1f3fc.png",
- "sheet_x": 36,
- "sheet_y": 51,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FD": {
- "unified": "1F6C0-1F3FD",
- "non_qualified": null,
- "image": "1f6c0-1f3fd.png",
- "sheet_x": 36,
- "sheet_y": 52,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FE": {
- "unified": "1F6C0-1F3FE",
- "non_qualified": null,
- "image": "1f6c0-1f3fe.png",
- "sheet_x": 37,
- "sheet_y": 0,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FF": {
- "unified": "1F6C0-1F3FF",
- "non_qualified": null,
- "image": "1f6c0-1f3ff.png",
- "sheet_x": 37,
- "sheet_y": 1,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- }
- }
- },
- "sleeping_accommodation": {
- "char": "\ud83d\udecc",
- "key": "sleeping_accommodation",
- "keywords": ["sleeping_accommodation", "SLEEPING ACCOMMODATION"],
- "category": "people",
- "lib": {
- "name": "SLEEPING ACCOMMODATION",
- "unified": "1F6CC",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f6cc.png",
- "sheet_x": 37,
- "sheet_y": 8,
- "short_name": "sleeping_accommodation",
- "short_names": ["sleeping_accommodation"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 269,
- "added_in": "7.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F6CC-1F3FB",
- "non_qualified": null,
- "image": "1f6cc-1f3fb.png",
- "sheet_x": 37,
- "sheet_y": 9,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F6CC-1F3FC",
- "non_qualified": null,
- "image": "1f6cc-1f3fc.png",
- "sheet_x": 37,
- "sheet_y": 10,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F6CC-1F3FD",
- "non_qualified": null,
- "image": "1f6cc-1f3fd.png",
- "sheet_x": 37,
- "sheet_y": 11,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F6CC-1F3FE",
- "non_qualified": null,
- "image": "1f6cc-1f3fe.png",
- "sheet_x": 37,
- "sheet_y": 12,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F6CC-1F3FF",
- "non_qualified": null,
- "image": "1f6cc-1f3ff.png",
- "sheet_x": 37,
- "sheet_y": 13,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- }
- }
- },
- "man_in_business_suit_levitating": {
- "char": "\ud83d\udd74\ufe0f",
- "key": "man_in_business_suit_levitating",
- "keywords": ["man_in_business_suit_levitating", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F574-FE0F",
- "non_qualified": "1F574",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f574-fe0f.png",
- "sheet_x": 29,
- "sheet_y": 13,
- "short_name": "man_in_business_suit_levitating",
- "short_names": ["man_in_business_suit_levitating"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 270,
- "added_in": "7.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F574-1F3FB",
- "non_qualified": null,
- "image": "1f574-1f3fb.png",
- "sheet_x": 29,
- "sheet_y": 14,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F574-1F3FC",
- "non_qualified": null,
- "image": "1f574-1f3fc.png",
- "sheet_x": 29,
- "sheet_y": 15,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F574-1F3FD",
- "non_qualified": null,
- "image": "1f574-1f3fd.png",
- "sheet_x": 29,
- "sheet_y": 16,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F574-1F3FE",
- "non_qualified": null,
- "image": "1f574-1f3fe.png",
- "sheet_x": 29,
- "sheet_y": 17,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F574-1F3FF",
- "non_qualified": null,
- "image": "1f574-1f3ff.png",
- "sheet_x": 29,
- "sheet_y": 18,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- }
- }
- },
- "speaking_head_in_silhouette": {
- "char": "\ud83d\udde3\ufe0f",
- "key": "speaking_head_in_silhouette",
- "keywords": ["speaking_head_in_silhouette", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F5E3-FE0F",
- "non_qualified": "1F5E3",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f5e3-fe0f.png",
- "sheet_x": 30,
- "sheet_y": 33,
- "short_name": "speaking_head_in_silhouette",
- "short_names": ["speaking_head_in_silhouette"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 271,
- "added_in": "7.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "bust_in_silhouette": {
- "char": "\ud83d\udc64",
- "key": "bust_in_silhouette",
- "keywords": ["bust_in_silhouette", "BUST IN SILHOUETTE"],
- "category": "people",
- "lib": {
- "name": "BUST IN SILHOUETTE",
- "unified": "1F464",
- "non_qualified": null,
- "docomo": "E6B1",
- "au": null,
- "softbank": null,
- "google": "FE19A",
- "image": "1f464.png",
- "sheet_x": 15,
- "sheet_y": 26,
- "short_name": "bust_in_silhouette",
- "short_names": ["bust_in_silhouette"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 272,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "busts_in_silhouette": {
- "char": "\ud83d\udc65",
- "key": "busts_in_silhouette",
- "keywords": ["busts_in_silhouette", "BUSTS IN SILHOUETTE"],
- "category": "people",
- "lib": {
- "name": "BUSTS IN SILHOUETTE",
- "unified": "1F465",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f465.png",
- "sheet_x": 15,
- "sheet_y": 27,
- "short_name": "busts_in_silhouette",
- "short_names": ["busts_in_silhouette"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 273,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "fencer": {
- "char": "\ud83e\udd3a",
- "key": "fencer",
- "keywords": ["fencer", "FENCER"],
- "category": "people",
- "lib": {
- "name": "FENCER",
- "unified": "1F93A",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f93a.png",
- "sheet_x": 41,
- "sheet_y": 5,
- "short_name": "fencer",
- "short_names": ["fencer"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 274,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "horse_racing": {
- "char": "\ud83c\udfc7",
- "key": "horse_racing",
- "keywords": ["horse_racing", "HORSE RACING"],
- "category": "people",
- "lib": {
- "name": "HORSE RACING",
- "unified": "1F3C7",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f3c7.png",
- "sheet_x": 10,
- "sheet_y": 10,
- "short_name": "horse_racing",
- "short_names": ["horse_racing"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 275,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F3C7-1F3FB",
- "non_qualified": null,
- "image": "1f3c7-1f3fb.png",
- "sheet_x": 10,
- "sheet_y": 11,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FC": {
- "unified": "1F3C7-1F3FC",
- "non_qualified": null,
- "image": "1f3c7-1f3fc.png",
- "sheet_x": 10,
- "sheet_y": 12,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FD": {
- "unified": "1F3C7-1F3FD",
- "non_qualified": null,
- "image": "1f3c7-1f3fd.png",
- "sheet_x": 10,
- "sheet_y": 13,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FE": {
- "unified": "1F3C7-1F3FE",
- "non_qualified": null,
- "image": "1f3c7-1f3fe.png",
- "sheet_x": 10,
- "sheet_y": 14,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FF": {
- "unified": "1F3C7-1F3FF",
- "non_qualified": null,
- "image": "1f3c7-1f3ff.png",
- "sheet_x": 10,
- "sheet_y": 15,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- }
- }
- },
- "skier": {
- "char": "\u26f7\ufe0f",
- "key": "skier",
- "keywords": ["skier", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "26F7-FE0F",
- "non_qualified": "26F7",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "26f7-fe0f.png",
- "sheet_x": 50,
- "sheet_y": 35,
- "short_name": "skier",
- "short_names": ["skier"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 276,
- "added_in": "5.2",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "snowboarder": {
- "char": "\ud83c\udfc2",
- "key": "snowboarder",
- "keywords": ["snowboarder", "SNOWBOARDER"],
- "category": "people",
- "lib": {
- "name": "SNOWBOARDER",
- "unified": "1F3C2",
- "non_qualified": null,
- "docomo": "E712",
- "au": "E4B8",
- "softbank": null,
- "google": "FE7D8",
- "image": "1f3c2.png",
- "sheet_x": 9,
- "sheet_y": 19,
- "short_name": "snowboarder",
- "short_names": ["snowboarder"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 277,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F3C2-1F3FB",
- "non_qualified": null,
- "image": "1f3c2-1f3fb.png",
- "sheet_x": 9,
- "sheet_y": 20,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FC": {
- "unified": "1F3C2-1F3FC",
- "non_qualified": null,
- "image": "1f3c2-1f3fc.png",
- "sheet_x": 9,
- "sheet_y": 21,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FD": {
- "unified": "1F3C2-1F3FD",
- "non_qualified": null,
- "image": "1f3c2-1f3fd.png",
- "sheet_x": 9,
- "sheet_y": 22,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FE": {
- "unified": "1F3C2-1F3FE",
- "non_qualified": null,
- "image": "1f3c2-1f3fe.png",
- "sheet_x": 9,
- "sheet_y": 23,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FF": {
- "unified": "1F3C2-1F3FF",
- "non_qualified": null,
- "image": "1f3c2-1f3ff.png",
- "sheet_x": 9,
- "sheet_y": 24,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- }
- }
- },
- "man-golfing": {
- "char": "\ud83c\udfcc\ufe0f\u200d\u2642\ufe0f",
- "key": "man-golfing",
- "keywords": ["man-golfing", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F3CC-FE0F-200D-2642-FE0F",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f3cc-fe0f-200d-2642-fe0f.png",
- "sheet_x": 11,
- "sheet_y": 7,
- "short_name": "man-golfing",
- "short_names": ["man-golfing"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 279,
- "added_in": "7.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F3CC-1F3FB-200D-2642-FE0F",
- "non_qualified": "1F3CC-1F3FB-200D-2642",
- "image": "1f3cc-1f3fb-200d-2642-fe0f.png",
- "sheet_x": 11,
- "sheet_y": 8,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F3CC-1F3FC-200D-2642-FE0F",
- "non_qualified": "1F3CC-1F3FC-200D-2642",
- "image": "1f3cc-1f3fc-200d-2642-fe0f.png",
- "sheet_x": 11,
- "sheet_y": 9,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F3CC-1F3FD-200D-2642-FE0F",
- "non_qualified": "1F3CC-1F3FD-200D-2642",
- "image": "1f3cc-1f3fd-200d-2642-fe0f.png",
- "sheet_x": 11,
- "sheet_y": 10,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F3CC-1F3FE-200D-2642-FE0F",
- "non_qualified": "1F3CC-1F3FE-200D-2642",
- "image": "1f3cc-1f3fe-200d-2642-fe0f.png",
- "sheet_x": 11,
- "sheet_y": 11,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F3CC-1F3FF-200D-2642-FE0F",
- "non_qualified": "1F3CC-1F3FF-200D-2642",
- "image": "1f3cc-1f3ff-200d-2642-fe0f.png",
- "sheet_x": 11,
- "sheet_y": 12,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- },
- "obsoletes": "1F3CC-FE0F"
- }
- },
- "woman-golfing": {
- "char": "\ud83c\udfcc\ufe0f\u200d\u2640\ufe0f",
- "key": "woman-golfing",
- "keywords": ["woman-golfing", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F3CC-FE0F-200D-2640-FE0F",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f3cc-fe0f-200d-2640-fe0f.png",
- "sheet_x": 11,
- "sheet_y": 1,
- "short_name": "woman-golfing",
- "short_names": ["woman-golfing"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 280,
- "added_in": "7.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F3CC-1F3FB-200D-2640-FE0F",
- "non_qualified": "1F3CC-1F3FB-200D-2640",
- "image": "1f3cc-1f3fb-200d-2640-fe0f.png",
- "sheet_x": 11,
- "sheet_y": 2,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F3CC-1F3FC-200D-2640-FE0F",
- "non_qualified": "1F3CC-1F3FC-200D-2640",
- "image": "1f3cc-1f3fc-200d-2640-fe0f.png",
- "sheet_x": 11,
- "sheet_y": 3,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F3CC-1F3FD-200D-2640-FE0F",
- "non_qualified": "1F3CC-1F3FD-200D-2640",
- "image": "1f3cc-1f3fd-200d-2640-fe0f.png",
- "sheet_x": 11,
- "sheet_y": 4,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F3CC-1F3FE-200D-2640-FE0F",
- "non_qualified": "1F3CC-1F3FE-200D-2640",
- "image": "1f3cc-1f3fe-200d-2640-fe0f.png",
- "sheet_x": 11,
- "sheet_y": 5,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F3CC-1F3FF-200D-2640-FE0F",
- "non_qualified": "1F3CC-1F3FF-200D-2640",
- "image": "1f3cc-1f3ff-200d-2640-fe0f.png",
- "sheet_x": 11,
- "sheet_y": 6,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- }
- }
- },
- "man-surfing": {
- "char": "\ud83c\udfc4\u200d\u2642\ufe0f",
- "key": "man-surfing",
- "keywords": ["man-surfing", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F3C4-200D-2642-FE0F",
- "non_qualified": "1F3C4-200D-2642",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f3c4-200d-2642-fe0f.png",
- "sheet_x": 9,
- "sheet_y": 49,
- "short_name": "man-surfing",
- "short_names": ["man-surfing"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 282,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F3C4-1F3FB-200D-2642-FE0F",
- "non_qualified": "1F3C4-1F3FB-200D-2642",
- "image": "1f3c4-1f3fb-200d-2642-fe0f.png",
- "sheet_x": 9,
- "sheet_y": 50,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F3C4-1F3FC-200D-2642-FE0F",
- "non_qualified": "1F3C4-1F3FC-200D-2642",
- "image": "1f3c4-1f3fc-200d-2642-fe0f.png",
- "sheet_x": 9,
- "sheet_y": 51,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F3C4-1F3FD-200D-2642-FE0F",
- "non_qualified": "1F3C4-1F3FD-200D-2642",
- "image": "1f3c4-1f3fd-200d-2642-fe0f.png",
- "sheet_x": 9,
- "sheet_y": 52,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F3C4-1F3FE-200D-2642-FE0F",
- "non_qualified": "1F3C4-1F3FE-200D-2642",
- "image": "1f3c4-1f3fe-200d-2642-fe0f.png",
- "sheet_x": 10,
- "sheet_y": 0,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F3C4-1F3FF-200D-2642-FE0F",
- "non_qualified": "1F3C4-1F3FF-200D-2642",
- "image": "1f3c4-1f3ff-200d-2642-fe0f.png",
- "sheet_x": 10,
- "sheet_y": 1,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- },
- "obsoletes": "1F3C4"
- }
- },
- "woman-surfing": {
- "char": "\ud83c\udfc4\u200d\u2640\ufe0f",
- "key": "woman-surfing",
- "keywords": ["woman-surfing", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F3C4-200D-2640-FE0F",
- "non_qualified": "1F3C4-200D-2640",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f3c4-200d-2640-fe0f.png",
- "sheet_x": 9,
- "sheet_y": 43,
- "short_name": "woman-surfing",
- "short_names": ["woman-surfing"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 283,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F3C4-1F3FB-200D-2640-FE0F",
- "non_qualified": "1F3C4-1F3FB-200D-2640",
- "image": "1f3c4-1f3fb-200d-2640-fe0f.png",
- "sheet_x": 9,
- "sheet_y": 44,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F3C4-1F3FC-200D-2640-FE0F",
- "non_qualified": "1F3C4-1F3FC-200D-2640",
- "image": "1f3c4-1f3fc-200d-2640-fe0f.png",
- "sheet_x": 9,
- "sheet_y": 45,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F3C4-1F3FD-200D-2640-FE0F",
- "non_qualified": "1F3C4-1F3FD-200D-2640",
- "image": "1f3c4-1f3fd-200d-2640-fe0f.png",
- "sheet_x": 9,
- "sheet_y": 46,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F3C4-1F3FE-200D-2640-FE0F",
- "non_qualified": "1F3C4-1F3FE-200D-2640",
- "image": "1f3c4-1f3fe-200d-2640-fe0f.png",
- "sheet_x": 9,
- "sheet_y": 47,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F3C4-1F3FF-200D-2640-FE0F",
- "non_qualified": "1F3C4-1F3FF-200D-2640",
- "image": "1f3c4-1f3ff-200d-2640-fe0f.png",
- "sheet_x": 9,
- "sheet_y": 48,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- }
- }
- },
- "man-rowing-boat": {
- "char": "\ud83d\udea3\u200d\u2642\ufe0f",
- "key": "man-rowing-boat",
- "keywords": ["man-rowing-boat", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F6A3-200D-2642-FE0F",
- "non_qualified": "1F6A3-200D-2642",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f6a3-200d-2642-fe0f.png",
- "sheet_x": 35,
- "sheet_y": 11,
- "short_name": "man-rowing-boat",
- "short_names": ["man-rowing-boat"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 285,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F6A3-1F3FB-200D-2642-FE0F",
- "non_qualified": "1F6A3-1F3FB-200D-2642",
- "image": "1f6a3-1f3fb-200d-2642-fe0f.png",
- "sheet_x": 35,
- "sheet_y": 12,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F6A3-1F3FC-200D-2642-FE0F",
- "non_qualified": "1F6A3-1F3FC-200D-2642",
- "image": "1f6a3-1f3fc-200d-2642-fe0f.png",
- "sheet_x": 35,
- "sheet_y": 13,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F6A3-1F3FD-200D-2642-FE0F",
- "non_qualified": "1F6A3-1F3FD-200D-2642",
- "image": "1f6a3-1f3fd-200d-2642-fe0f.png",
- "sheet_x": 35,
- "sheet_y": 14,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F6A3-1F3FE-200D-2642-FE0F",
- "non_qualified": "1F6A3-1F3FE-200D-2642",
- "image": "1f6a3-1f3fe-200d-2642-fe0f.png",
- "sheet_x": 35,
- "sheet_y": 15,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F6A3-1F3FF-200D-2642-FE0F",
- "non_qualified": "1F6A3-1F3FF-200D-2642",
- "image": "1f6a3-1f3ff-200d-2642-fe0f.png",
- "sheet_x": 35,
- "sheet_y": 16,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- },
- "obsoletes": "1F6A3"
- }
- },
- "woman-rowing-boat": {
- "char": "\ud83d\udea3\u200d\u2640\ufe0f",
- "key": "woman-rowing-boat",
- "keywords": ["woman-rowing-boat", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F6A3-200D-2640-FE0F",
- "non_qualified": "1F6A3-200D-2640",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f6a3-200d-2640-fe0f.png",
- "sheet_x": 35,
- "sheet_y": 5,
- "short_name": "woman-rowing-boat",
- "short_names": ["woman-rowing-boat"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 286,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F6A3-1F3FB-200D-2640-FE0F",
- "non_qualified": "1F6A3-1F3FB-200D-2640",
- "image": "1f6a3-1f3fb-200d-2640-fe0f.png",
- "sheet_x": 35,
- "sheet_y": 6,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F6A3-1F3FC-200D-2640-FE0F",
- "non_qualified": "1F6A3-1F3FC-200D-2640",
- "image": "1f6a3-1f3fc-200d-2640-fe0f.png",
- "sheet_x": 35,
- "sheet_y": 7,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F6A3-1F3FD-200D-2640-FE0F",
- "non_qualified": "1F6A3-1F3FD-200D-2640",
- "image": "1f6a3-1f3fd-200d-2640-fe0f.png",
- "sheet_x": 35,
- "sheet_y": 8,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F6A3-1F3FE-200D-2640-FE0F",
- "non_qualified": "1F6A3-1F3FE-200D-2640",
- "image": "1f6a3-1f3fe-200d-2640-fe0f.png",
- "sheet_x": 35,
- "sheet_y": 9,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F6A3-1F3FF-200D-2640-FE0F",
- "non_qualified": "1F6A3-1F3FF-200D-2640",
- "image": "1f6a3-1f3ff-200d-2640-fe0f.png",
- "sheet_x": 35,
- "sheet_y": 10,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- }
- }
- },
- "man-swimming": {
- "char": "\ud83c\udfca\u200d\u2642\ufe0f",
- "key": "man-swimming",
- "keywords": ["man-swimming", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F3CA-200D-2642-FE0F",
- "non_qualified": "1F3CA-200D-2642",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f3ca-200d-2642-fe0f.png",
- "sheet_x": 10,
- "sheet_y": 24,
- "short_name": "man-swimming",
- "short_names": ["man-swimming"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 288,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F3CA-1F3FB-200D-2642-FE0F",
- "non_qualified": "1F3CA-1F3FB-200D-2642",
- "image": "1f3ca-1f3fb-200d-2642-fe0f.png",
- "sheet_x": 10,
- "sheet_y": 25,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F3CA-1F3FC-200D-2642-FE0F",
- "non_qualified": "1F3CA-1F3FC-200D-2642",
- "image": "1f3ca-1f3fc-200d-2642-fe0f.png",
- "sheet_x": 10,
- "sheet_y": 26,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F3CA-1F3FD-200D-2642-FE0F",
- "non_qualified": "1F3CA-1F3FD-200D-2642",
- "image": "1f3ca-1f3fd-200d-2642-fe0f.png",
- "sheet_x": 10,
- "sheet_y": 27,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F3CA-1F3FE-200D-2642-FE0F",
- "non_qualified": "1F3CA-1F3FE-200D-2642",
- "image": "1f3ca-1f3fe-200d-2642-fe0f.png",
- "sheet_x": 10,
- "sheet_y": 28,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F3CA-1F3FF-200D-2642-FE0F",
- "non_qualified": "1F3CA-1F3FF-200D-2642",
- "image": "1f3ca-1f3ff-200d-2642-fe0f.png",
- "sheet_x": 10,
- "sheet_y": 29,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- },
- "obsoletes": "1F3CA"
- }
- },
- "woman-swimming": {
- "char": "\ud83c\udfca\u200d\u2640\ufe0f",
- "key": "woman-swimming",
- "keywords": ["woman-swimming", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F3CA-200D-2640-FE0F",
- "non_qualified": "1F3CA-200D-2640",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f3ca-200d-2640-fe0f.png",
- "sheet_x": 10,
- "sheet_y": 18,
- "short_name": "woman-swimming",
- "short_names": ["woman-swimming"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 289,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F3CA-1F3FB-200D-2640-FE0F",
- "non_qualified": "1F3CA-1F3FB-200D-2640",
- "image": "1f3ca-1f3fb-200d-2640-fe0f.png",
- "sheet_x": 10,
- "sheet_y": 19,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F3CA-1F3FC-200D-2640-FE0F",
- "non_qualified": "1F3CA-1F3FC-200D-2640",
- "image": "1f3ca-1f3fc-200d-2640-fe0f.png",
- "sheet_x": 10,
- "sheet_y": 20,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F3CA-1F3FD-200D-2640-FE0F",
- "non_qualified": "1F3CA-1F3FD-200D-2640",
- "image": "1f3ca-1f3fd-200d-2640-fe0f.png",
- "sheet_x": 10,
- "sheet_y": 21,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F3CA-1F3FE-200D-2640-FE0F",
- "non_qualified": "1F3CA-1F3FE-200D-2640",
- "image": "1f3ca-1f3fe-200d-2640-fe0f.png",
- "sheet_x": 10,
- "sheet_y": 22,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F3CA-1F3FF-200D-2640-FE0F",
- "non_qualified": "1F3CA-1F3FF-200D-2640",
- "image": "1f3ca-1f3ff-200d-2640-fe0f.png",
- "sheet_x": 10,
- "sheet_y": 23,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- }
- }
- },
- "man-bouncing-ball": {
- "char": "\u26f9\ufe0f\u200d\u2642\ufe0f",
- "key": "man-bouncing-ball",
- "keywords": ["man-bouncing-ball", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "26F9-FE0F-200D-2642-FE0F",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "26f9-fe0f-200d-2642-fe0f.png",
- "sheet_x": 50,
- "sheet_y": 43,
- "short_name": "man-bouncing-ball",
- "short_names": ["man-bouncing-ball"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 291,
- "added_in": "5.2",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "26F9-1F3FB-200D-2642-FE0F",
- "non_qualified": "26F9-1F3FB-200D-2642",
- "image": "26f9-1f3fb-200d-2642-fe0f.png",
- "sheet_x": 50,
- "sheet_y": 44,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "26F9-1F3FC-200D-2642-FE0F",
- "non_qualified": "26F9-1F3FC-200D-2642",
- "image": "26f9-1f3fc-200d-2642-fe0f.png",
- "sheet_x": 50,
- "sheet_y": 45,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "26F9-1F3FD-200D-2642-FE0F",
- "non_qualified": "26F9-1F3FD-200D-2642",
- "image": "26f9-1f3fd-200d-2642-fe0f.png",
- "sheet_x": 50,
- "sheet_y": 46,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "26F9-1F3FE-200D-2642-FE0F",
- "non_qualified": "26F9-1F3FE-200D-2642",
- "image": "26f9-1f3fe-200d-2642-fe0f.png",
- "sheet_x": 50,
- "sheet_y": 47,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "26F9-1F3FF-200D-2642-FE0F",
- "non_qualified": "26F9-1F3FF-200D-2642",
- "image": "26f9-1f3ff-200d-2642-fe0f.png",
- "sheet_x": 50,
- "sheet_y": 48,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- },
- "obsoletes": "26F9-FE0F"
- }
- },
- "woman-bouncing-ball": {
- "char": "\u26f9\ufe0f\u200d\u2640\ufe0f",
- "key": "woman-bouncing-ball",
- "keywords": ["woman-bouncing-ball", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "26F9-FE0F-200D-2640-FE0F",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "26f9-fe0f-200d-2640-fe0f.png",
- "sheet_x": 50,
- "sheet_y": 37,
- "short_name": "woman-bouncing-ball",
- "short_names": ["woman-bouncing-ball"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 292,
- "added_in": "5.2",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "26F9-1F3FB-200D-2640-FE0F",
- "non_qualified": "26F9-1F3FB-200D-2640",
- "image": "26f9-1f3fb-200d-2640-fe0f.png",
- "sheet_x": 50,
- "sheet_y": 38,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "26F9-1F3FC-200D-2640-FE0F",
- "non_qualified": "26F9-1F3FC-200D-2640",
- "image": "26f9-1f3fc-200d-2640-fe0f.png",
- "sheet_x": 50,
- "sheet_y": 39,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "26F9-1F3FD-200D-2640-FE0F",
- "non_qualified": "26F9-1F3FD-200D-2640",
- "image": "26f9-1f3fd-200d-2640-fe0f.png",
- "sheet_x": 50,
- "sheet_y": 40,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "26F9-1F3FE-200D-2640-FE0F",
- "non_qualified": "26F9-1F3FE-200D-2640",
- "image": "26f9-1f3fe-200d-2640-fe0f.png",
- "sheet_x": 50,
- "sheet_y": 41,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "26F9-1F3FF-200D-2640-FE0F",
- "non_qualified": "26F9-1F3FF-200D-2640",
- "image": "26f9-1f3ff-200d-2640-fe0f.png",
- "sheet_x": 50,
- "sheet_y": 42,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- }
- }
- },
- "man-lifting-weights": {
- "char": "\ud83c\udfcb\ufe0f\u200d\u2642\ufe0f",
- "key": "man-lifting-weights",
- "keywords": ["man-lifting-weights", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F3CB-FE0F-200D-2642-FE0F",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f3cb-fe0f-200d-2642-fe0f.png",
- "sheet_x": 10,
- "sheet_y": 42,
- "short_name": "man-lifting-weights",
- "short_names": ["man-lifting-weights"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 294,
- "added_in": "7.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F3CB-1F3FB-200D-2642-FE0F",
- "non_qualified": "1F3CB-1F3FB-200D-2642",
- "image": "1f3cb-1f3fb-200d-2642-fe0f.png",
- "sheet_x": 10,
- "sheet_y": 43,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F3CB-1F3FC-200D-2642-FE0F",
- "non_qualified": "1F3CB-1F3FC-200D-2642",
- "image": "1f3cb-1f3fc-200d-2642-fe0f.png",
- "sheet_x": 10,
- "sheet_y": 44,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F3CB-1F3FD-200D-2642-FE0F",
- "non_qualified": "1F3CB-1F3FD-200D-2642",
- "image": "1f3cb-1f3fd-200d-2642-fe0f.png",
- "sheet_x": 10,
- "sheet_y": 45,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F3CB-1F3FE-200D-2642-FE0F",
- "non_qualified": "1F3CB-1F3FE-200D-2642",
- "image": "1f3cb-1f3fe-200d-2642-fe0f.png",
- "sheet_x": 10,
- "sheet_y": 46,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F3CB-1F3FF-200D-2642-FE0F",
- "non_qualified": "1F3CB-1F3FF-200D-2642",
- "image": "1f3cb-1f3ff-200d-2642-fe0f.png",
- "sheet_x": 10,
- "sheet_y": 47,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- },
- "obsoletes": "1F3CB-FE0F"
- }
- },
- "woman-lifting-weights": {
- "char": "\ud83c\udfcb\ufe0f\u200d\u2640\ufe0f",
- "key": "woman-lifting-weights",
- "keywords": ["woman-lifting-weights", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F3CB-FE0F-200D-2640-FE0F",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f3cb-fe0f-200d-2640-fe0f.png",
- "sheet_x": 10,
- "sheet_y": 36,
- "short_name": "woman-lifting-weights",
- "short_names": ["woman-lifting-weights"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 295,
- "added_in": "7.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F3CB-1F3FB-200D-2640-FE0F",
- "non_qualified": "1F3CB-1F3FB-200D-2640",
- "image": "1f3cb-1f3fb-200d-2640-fe0f.png",
- "sheet_x": 10,
- "sheet_y": 37,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F3CB-1F3FC-200D-2640-FE0F",
- "non_qualified": "1F3CB-1F3FC-200D-2640",
- "image": "1f3cb-1f3fc-200d-2640-fe0f.png",
- "sheet_x": 10,
- "sheet_y": 38,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F3CB-1F3FD-200D-2640-FE0F",
- "non_qualified": "1F3CB-1F3FD-200D-2640",
- "image": "1f3cb-1f3fd-200d-2640-fe0f.png",
- "sheet_x": 10,
- "sheet_y": 39,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F3CB-1F3FE-200D-2640-FE0F",
- "non_qualified": "1F3CB-1F3FE-200D-2640",
- "image": "1f3cb-1f3fe-200d-2640-fe0f.png",
- "sheet_x": 10,
- "sheet_y": 40,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F3CB-1F3FF-200D-2640-FE0F",
- "non_qualified": "1F3CB-1F3FF-200D-2640",
- "image": "1f3cb-1f3ff-200d-2640-fe0f.png",
- "sheet_x": 10,
- "sheet_y": 41,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- }
- }
- },
- "man-biking": {
- "char": "\ud83d\udeb4\u200d\u2642\ufe0f",
- "key": "man-biking",
- "keywords": ["man-biking", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F6B4-200D-2642-FE0F",
- "non_qualified": "1F6B4-200D-2642",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f6b4-200d-2642-fe0f.png",
- "sheet_x": 35,
- "sheet_y": 45,
- "short_name": "man-biking",
- "short_names": ["man-biking"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 297,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F6B4-1F3FB-200D-2642-FE0F",
- "non_qualified": "1F6B4-1F3FB-200D-2642",
- "image": "1f6b4-1f3fb-200d-2642-fe0f.png",
- "sheet_x": 35,
- "sheet_y": 46,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F6B4-1F3FC-200D-2642-FE0F",
- "non_qualified": "1F6B4-1F3FC-200D-2642",
- "image": "1f6b4-1f3fc-200d-2642-fe0f.png",
- "sheet_x": 35,
- "sheet_y": 47,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F6B4-1F3FD-200D-2642-FE0F",
- "non_qualified": "1F6B4-1F3FD-200D-2642",
- "image": "1f6b4-1f3fd-200d-2642-fe0f.png",
- "sheet_x": 35,
- "sheet_y": 48,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F6B4-1F3FE-200D-2642-FE0F",
- "non_qualified": "1F6B4-1F3FE-200D-2642",
- "image": "1f6b4-1f3fe-200d-2642-fe0f.png",
- "sheet_x": 35,
- "sheet_y": 49,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F6B4-1F3FF-200D-2642-FE0F",
- "non_qualified": "1F6B4-1F3FF-200D-2642",
- "image": "1f6b4-1f3ff-200d-2642-fe0f.png",
- "sheet_x": 35,
- "sheet_y": 50,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- },
- "obsoletes": "1F6B4"
- }
- },
- "woman-biking": {
- "char": "\ud83d\udeb4\u200d\u2640\ufe0f",
- "key": "woman-biking",
- "keywords": ["woman-biking", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F6B4-200D-2640-FE0F",
- "non_qualified": "1F6B4-200D-2640",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f6b4-200d-2640-fe0f.png",
- "sheet_x": 35,
- "sheet_y": 39,
- "short_name": "woman-biking",
- "short_names": ["woman-biking"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 298,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F6B4-1F3FB-200D-2640-FE0F",
- "non_qualified": "1F6B4-1F3FB-200D-2640",
- "image": "1f6b4-1f3fb-200d-2640-fe0f.png",
- "sheet_x": 35,
- "sheet_y": 40,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F6B4-1F3FC-200D-2640-FE0F",
- "non_qualified": "1F6B4-1F3FC-200D-2640",
- "image": "1f6b4-1f3fc-200d-2640-fe0f.png",
- "sheet_x": 35,
- "sheet_y": 41,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F6B4-1F3FD-200D-2640-FE0F",
- "non_qualified": "1F6B4-1F3FD-200D-2640",
- "image": "1f6b4-1f3fd-200d-2640-fe0f.png",
- "sheet_x": 35,
- "sheet_y": 42,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F6B4-1F3FE-200D-2640-FE0F",
- "non_qualified": "1F6B4-1F3FE-200D-2640",
- "image": "1f6b4-1f3fe-200d-2640-fe0f.png",
- "sheet_x": 35,
- "sheet_y": 43,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F6B4-1F3FF-200D-2640-FE0F",
- "non_qualified": "1F6B4-1F3FF-200D-2640",
- "image": "1f6b4-1f3ff-200d-2640-fe0f.png",
- "sheet_x": 35,
- "sheet_y": 44,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- }
- }
- },
- "man-mountain-biking": {
- "char": "\ud83d\udeb5\u200d\u2642\ufe0f",
- "key": "man-mountain-biking",
- "keywords": ["man-mountain-biking", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F6B5-200D-2642-FE0F",
- "non_qualified": "1F6B5-200D-2642",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f6b5-200d-2642-fe0f.png",
- "sheet_x": 36,
- "sheet_y": 10,
- "short_name": "man-mountain-biking",
- "short_names": ["man-mountain-biking"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 300,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F6B5-1F3FB-200D-2642-FE0F",
- "non_qualified": "1F6B5-1F3FB-200D-2642",
- "image": "1f6b5-1f3fb-200d-2642-fe0f.png",
- "sheet_x": 36,
- "sheet_y": 11,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F6B5-1F3FC-200D-2642-FE0F",
- "non_qualified": "1F6B5-1F3FC-200D-2642",
- "image": "1f6b5-1f3fc-200d-2642-fe0f.png",
- "sheet_x": 36,
- "sheet_y": 12,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F6B5-1F3FD-200D-2642-FE0F",
- "non_qualified": "1F6B5-1F3FD-200D-2642",
- "image": "1f6b5-1f3fd-200d-2642-fe0f.png",
- "sheet_x": 36,
- "sheet_y": 13,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F6B5-1F3FE-200D-2642-FE0F",
- "non_qualified": "1F6B5-1F3FE-200D-2642",
- "image": "1f6b5-1f3fe-200d-2642-fe0f.png",
- "sheet_x": 36,
- "sheet_y": 14,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F6B5-1F3FF-200D-2642-FE0F",
- "non_qualified": "1F6B5-1F3FF-200D-2642",
- "image": "1f6b5-1f3ff-200d-2642-fe0f.png",
- "sheet_x": 36,
- "sheet_y": 15,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- },
- "obsoletes": "1F6B5"
- }
- },
- "woman-mountain-biking": {
- "char": "\ud83d\udeb5\u200d\u2640\ufe0f",
- "key": "woman-mountain-biking",
- "keywords": ["woman-mountain-biking", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F6B5-200D-2640-FE0F",
- "non_qualified": "1F6B5-200D-2640",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f6b5-200d-2640-fe0f.png",
- "sheet_x": 36,
- "sheet_y": 4,
- "short_name": "woman-mountain-biking",
- "short_names": ["woman-mountain-biking"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 301,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F6B5-1F3FB-200D-2640-FE0F",
- "non_qualified": "1F6B5-1F3FB-200D-2640",
- "image": "1f6b5-1f3fb-200d-2640-fe0f.png",
- "sheet_x": 36,
- "sheet_y": 5,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F6B5-1F3FC-200D-2640-FE0F",
- "non_qualified": "1F6B5-1F3FC-200D-2640",
- "image": "1f6b5-1f3fc-200d-2640-fe0f.png",
- "sheet_x": 36,
- "sheet_y": 6,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F6B5-1F3FD-200D-2640-FE0F",
- "non_qualified": "1F6B5-1F3FD-200D-2640",
- "image": "1f6b5-1f3fd-200d-2640-fe0f.png",
- "sheet_x": 36,
- "sheet_y": 7,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F6B5-1F3FE-200D-2640-FE0F",
- "non_qualified": "1F6B5-1F3FE-200D-2640",
- "image": "1f6b5-1f3fe-200d-2640-fe0f.png",
- "sheet_x": 36,
- "sheet_y": 8,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F6B5-1F3FF-200D-2640-FE0F",
- "non_qualified": "1F6B5-1F3FF-200D-2640",
- "image": "1f6b5-1f3ff-200d-2640-fe0f.png",
- "sheet_x": 36,
- "sheet_y": 9,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- }
- }
- },
- "racing_car": {
- "char": "\ud83c\udfce\ufe0f",
- "key": "racing_car",
- "keywords": ["racing_car", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F3CE-FE0F",
- "non_qualified": "1F3CE",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f3ce-fe0f.png",
- "sheet_x": 11,
- "sheet_y": 20,
- "short_name": "racing_car",
- "short_names": ["racing_car"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 302,
- "added_in": "7.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "racing_motorcycle": {
- "char": "\ud83c\udfcd\ufe0f",
- "key": "racing_motorcycle",
- "keywords": ["racing_motorcycle", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F3CD-FE0F",
- "non_qualified": "1F3CD",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f3cd-fe0f.png",
- "sheet_x": 11,
- "sheet_y": 19,
- "short_name": "racing_motorcycle",
- "short_names": ["racing_motorcycle"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 303,
- "added_in": "7.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "man-cartwheeling": {
- "char": "\ud83e\udd38\u200d\u2642\ufe0f",
- "key": "man-cartwheeling",
- "keywords": ["man-cartwheeling", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F938-200D-2642-FE0F",
- "non_qualified": "1F938-200D-2642",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f938-200d-2642-fe0f.png",
- "sheet_x": 40,
- "sheet_y": 28,
- "short_name": "man-cartwheeling",
- "short_names": ["man-cartwheeling"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 305,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F938-1F3FB-200D-2642-FE0F",
- "non_qualified": "1F938-1F3FB-200D-2642",
- "image": "1f938-1f3fb-200d-2642-fe0f.png",
- "sheet_x": 40,
- "sheet_y": 29,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F938-1F3FC-200D-2642-FE0F",
- "non_qualified": "1F938-1F3FC-200D-2642",
- "image": "1f938-1f3fc-200d-2642-fe0f.png",
- "sheet_x": 40,
- "sheet_y": 30,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F938-1F3FD-200D-2642-FE0F",
- "non_qualified": "1F938-1F3FD-200D-2642",
- "image": "1f938-1f3fd-200d-2642-fe0f.png",
- "sheet_x": 40,
- "sheet_y": 31,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F938-1F3FE-200D-2642-FE0F",
- "non_qualified": "1F938-1F3FE-200D-2642",
- "image": "1f938-1f3fe-200d-2642-fe0f.png",
- "sheet_x": 40,
- "sheet_y": 32,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F938-1F3FF-200D-2642-FE0F",
- "non_qualified": "1F938-1F3FF-200D-2642",
- "image": "1f938-1f3ff-200d-2642-fe0f.png",
- "sheet_x": 40,
- "sheet_y": 33,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- }
- }
- },
- "woman-cartwheeling": {
- "char": "\ud83e\udd38\u200d\u2640\ufe0f",
- "key": "woman-cartwheeling",
- "keywords": ["woman-cartwheeling", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F938-200D-2640-FE0F",
- "non_qualified": "1F938-200D-2640",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f938-200d-2640-fe0f.png",
- "sheet_x": 40,
- "sheet_y": 22,
- "short_name": "woman-cartwheeling",
- "short_names": ["woman-cartwheeling"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 306,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F938-1F3FB-200D-2640-FE0F",
- "non_qualified": "1F938-1F3FB-200D-2640",
- "image": "1f938-1f3fb-200d-2640-fe0f.png",
- "sheet_x": 40,
- "sheet_y": 23,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F938-1F3FC-200D-2640-FE0F",
- "non_qualified": "1F938-1F3FC-200D-2640",
- "image": "1f938-1f3fc-200d-2640-fe0f.png",
- "sheet_x": 40,
- "sheet_y": 24,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F938-1F3FD-200D-2640-FE0F",
- "non_qualified": "1F938-1F3FD-200D-2640",
- "image": "1f938-1f3fd-200d-2640-fe0f.png",
- "sheet_x": 40,
- "sheet_y": 25,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F938-1F3FE-200D-2640-FE0F",
- "non_qualified": "1F938-1F3FE-200D-2640",
- "image": "1f938-1f3fe-200d-2640-fe0f.png",
- "sheet_x": 40,
- "sheet_y": 26,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F938-1F3FF-200D-2640-FE0F",
- "non_qualified": "1F938-1F3FF-200D-2640",
- "image": "1f938-1f3ff-200d-2640-fe0f.png",
- "sheet_x": 40,
- "sheet_y": 27,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- }
- }
- },
- "man-wrestling": {
- "char": "\ud83e\udd3c\u200d\u2642\ufe0f",
- "key": "man-wrestling",
- "keywords": ["man-wrestling", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F93C-200D-2642-FE0F",
- "non_qualified": "1F93C-200D-2642",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f93c-200d-2642-fe0f.png",
- "sheet_x": 41,
- "sheet_y": 7,
- "short_name": "man-wrestling",
- "short_names": ["man-wrestling"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 308,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "woman-wrestling": {
- "char": "\ud83e\udd3c\u200d\u2640\ufe0f",
- "key": "woman-wrestling",
- "keywords": ["woman-wrestling", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F93C-200D-2640-FE0F",
- "non_qualified": "1F93C-200D-2640",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f93c-200d-2640-fe0f.png",
- "sheet_x": 41,
- "sheet_y": 6,
- "short_name": "woman-wrestling",
- "short_names": ["woman-wrestling"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 309,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "man-playing-water-polo": {
- "char": "\ud83e\udd3d\u200d\u2642\ufe0f",
- "key": "man-playing-water-polo",
- "keywords": ["man-playing-water-polo", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F93D-200D-2642-FE0F",
- "non_qualified": "1F93D-200D-2642",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f93d-200d-2642-fe0f.png",
- "sheet_x": 41,
- "sheet_y": 15,
- "short_name": "man-playing-water-polo",
- "short_names": ["man-playing-water-polo"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 311,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F93D-1F3FB-200D-2642-FE0F",
- "non_qualified": "1F93D-1F3FB-200D-2642",
- "image": "1f93d-1f3fb-200d-2642-fe0f.png",
- "sheet_x": 41,
- "sheet_y": 16,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F93D-1F3FC-200D-2642-FE0F",
- "non_qualified": "1F93D-1F3FC-200D-2642",
- "image": "1f93d-1f3fc-200d-2642-fe0f.png",
- "sheet_x": 41,
- "sheet_y": 17,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F93D-1F3FD-200D-2642-FE0F",
- "non_qualified": "1F93D-1F3FD-200D-2642",
- "image": "1f93d-1f3fd-200d-2642-fe0f.png",
- "sheet_x": 41,
- "sheet_y": 18,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F93D-1F3FE-200D-2642-FE0F",
- "non_qualified": "1F93D-1F3FE-200D-2642",
- "image": "1f93d-1f3fe-200d-2642-fe0f.png",
- "sheet_x": 41,
- "sheet_y": 19,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F93D-1F3FF-200D-2642-FE0F",
- "non_qualified": "1F93D-1F3FF-200D-2642",
- "image": "1f93d-1f3ff-200d-2642-fe0f.png",
- "sheet_x": 41,
- "sheet_y": 20,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- }
- }
- },
- "woman-playing-water-polo": {
- "char": "\ud83e\udd3d\u200d\u2640\ufe0f",
- "key": "woman-playing-water-polo",
- "keywords": ["woman-playing-water-polo", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F93D-200D-2640-FE0F",
- "non_qualified": "1F93D-200D-2640",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f93d-200d-2640-fe0f.png",
- "sheet_x": 41,
- "sheet_y": 9,
- "short_name": "woman-playing-water-polo",
- "short_names": ["woman-playing-water-polo"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 312,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F93D-1F3FB-200D-2640-FE0F",
- "non_qualified": "1F93D-1F3FB-200D-2640",
- "image": "1f93d-1f3fb-200d-2640-fe0f.png",
- "sheet_x": 41,
- "sheet_y": 10,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F93D-1F3FC-200D-2640-FE0F",
- "non_qualified": "1F93D-1F3FC-200D-2640",
- "image": "1f93d-1f3fc-200d-2640-fe0f.png",
- "sheet_x": 41,
- "sheet_y": 11,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F93D-1F3FD-200D-2640-FE0F",
- "non_qualified": "1F93D-1F3FD-200D-2640",
- "image": "1f93d-1f3fd-200d-2640-fe0f.png",
- "sheet_x": 41,
- "sheet_y": 12,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F93D-1F3FE-200D-2640-FE0F",
- "non_qualified": "1F93D-1F3FE-200D-2640",
- "image": "1f93d-1f3fe-200d-2640-fe0f.png",
- "sheet_x": 41,
- "sheet_y": 13,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F93D-1F3FF-200D-2640-FE0F",
- "non_qualified": "1F93D-1F3FF-200D-2640",
- "image": "1f93d-1f3ff-200d-2640-fe0f.png",
- "sheet_x": 41,
- "sheet_y": 14,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- }
- }
- },
- "man-playing-handball": {
- "char": "\ud83e\udd3e\u200d\u2642\ufe0f",
- "key": "man-playing-handball",
- "keywords": ["man-playing-handball", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F93E-200D-2642-FE0F",
- "non_qualified": "1F93E-200D-2642",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f93e-200d-2642-fe0f.png",
- "sheet_x": 41,
- "sheet_y": 33,
- "short_name": "man-playing-handball",
- "short_names": ["man-playing-handball"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 314,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F93E-1F3FB-200D-2642-FE0F",
- "non_qualified": "1F93E-1F3FB-200D-2642",
- "image": "1f93e-1f3fb-200d-2642-fe0f.png",
- "sheet_x": 41,
- "sheet_y": 34,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F93E-1F3FC-200D-2642-FE0F",
- "non_qualified": "1F93E-1F3FC-200D-2642",
- "image": "1f93e-1f3fc-200d-2642-fe0f.png",
- "sheet_x": 41,
- "sheet_y": 35,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F93E-1F3FD-200D-2642-FE0F",
- "non_qualified": "1F93E-1F3FD-200D-2642",
- "image": "1f93e-1f3fd-200d-2642-fe0f.png",
- "sheet_x": 41,
- "sheet_y": 36,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F93E-1F3FE-200D-2642-FE0F",
- "non_qualified": "1F93E-1F3FE-200D-2642",
- "image": "1f93e-1f3fe-200d-2642-fe0f.png",
- "sheet_x": 41,
- "sheet_y": 37,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F93E-1F3FF-200D-2642-FE0F",
- "non_qualified": "1F93E-1F3FF-200D-2642",
- "image": "1f93e-1f3ff-200d-2642-fe0f.png",
- "sheet_x": 41,
- "sheet_y": 38,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- }
- }
- },
- "woman-playing-handball": {
- "char": "\ud83e\udd3e\u200d\u2640\ufe0f",
- "key": "woman-playing-handball",
- "keywords": ["woman-playing-handball", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F93E-200D-2640-FE0F",
- "non_qualified": "1F93E-200D-2640",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f93e-200d-2640-fe0f.png",
- "sheet_x": 41,
- "sheet_y": 27,
- "short_name": "woman-playing-handball",
- "short_names": ["woman-playing-handball"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 315,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F93E-1F3FB-200D-2640-FE0F",
- "non_qualified": "1F93E-1F3FB-200D-2640",
- "image": "1f93e-1f3fb-200d-2640-fe0f.png",
- "sheet_x": 41,
- "sheet_y": 28,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F93E-1F3FC-200D-2640-FE0F",
- "non_qualified": "1F93E-1F3FC-200D-2640",
- "image": "1f93e-1f3fc-200d-2640-fe0f.png",
- "sheet_x": 41,
- "sheet_y": 29,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F93E-1F3FD-200D-2640-FE0F",
- "non_qualified": "1F93E-1F3FD-200D-2640",
- "image": "1f93e-1f3fd-200d-2640-fe0f.png",
- "sheet_x": 41,
- "sheet_y": 30,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F93E-1F3FE-200D-2640-FE0F",
- "non_qualified": "1F93E-1F3FE-200D-2640",
- "image": "1f93e-1f3fe-200d-2640-fe0f.png",
- "sheet_x": 41,
- "sheet_y": 31,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F93E-1F3FF-200D-2640-FE0F",
- "non_qualified": "1F93E-1F3FF-200D-2640",
- "image": "1f93e-1f3ff-200d-2640-fe0f.png",
- "sheet_x": 41,
- "sheet_y": 32,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- }
- }
- },
- "man-juggling": {
- "char": "\ud83e\udd39\u200d\u2642\ufe0f",
- "key": "man-juggling",
- "keywords": ["man-juggling", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F939-200D-2642-FE0F",
- "non_qualified": "1F939-200D-2642",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f939-200d-2642-fe0f.png",
- "sheet_x": 40,
- "sheet_y": 46,
- "short_name": "man-juggling",
- "short_names": ["man-juggling"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 317,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F939-1F3FB-200D-2642-FE0F",
- "non_qualified": "1F939-1F3FB-200D-2642",
- "image": "1f939-1f3fb-200d-2642-fe0f.png",
- "sheet_x": 40,
- "sheet_y": 47,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F939-1F3FC-200D-2642-FE0F",
- "non_qualified": "1F939-1F3FC-200D-2642",
- "image": "1f939-1f3fc-200d-2642-fe0f.png",
- "sheet_x": 40,
- "sheet_y": 48,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F939-1F3FD-200D-2642-FE0F",
- "non_qualified": "1F939-1F3FD-200D-2642",
- "image": "1f939-1f3fd-200d-2642-fe0f.png",
- "sheet_x": 40,
- "sheet_y": 49,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F939-1F3FE-200D-2642-FE0F",
- "non_qualified": "1F939-1F3FE-200D-2642",
- "image": "1f939-1f3fe-200d-2642-fe0f.png",
- "sheet_x": 40,
- "sheet_y": 50,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F939-1F3FF-200D-2642-FE0F",
- "non_qualified": "1F939-1F3FF-200D-2642",
- "image": "1f939-1f3ff-200d-2642-fe0f.png",
- "sheet_x": 40,
- "sheet_y": 51,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- }
- }
- },
- "woman-juggling": {
- "char": "\ud83e\udd39\u200d\u2640\ufe0f",
- "key": "woman-juggling",
- "keywords": ["woman-juggling", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F939-200D-2640-FE0F",
- "non_qualified": "1F939-200D-2640",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f939-200d-2640-fe0f.png",
- "sheet_x": 40,
- "sheet_y": 40,
- "short_name": "woman-juggling",
- "short_names": ["woman-juggling"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 318,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F939-1F3FB-200D-2640-FE0F",
- "non_qualified": "1F939-1F3FB-200D-2640",
- "image": "1f939-1f3fb-200d-2640-fe0f.png",
- "sheet_x": 40,
- "sheet_y": 41,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F939-1F3FC-200D-2640-FE0F",
- "non_qualified": "1F939-1F3FC-200D-2640",
- "image": "1f939-1f3fc-200d-2640-fe0f.png",
- "sheet_x": 40,
- "sheet_y": 42,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F939-1F3FD-200D-2640-FE0F",
- "non_qualified": "1F939-1F3FD-200D-2640",
- "image": "1f939-1f3fd-200d-2640-fe0f.png",
- "sheet_x": 40,
- "sheet_y": 43,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F939-1F3FE-200D-2640-FE0F",
- "non_qualified": "1F939-1F3FE-200D-2640",
- "image": "1f939-1f3fe-200d-2640-fe0f.png",
- "sheet_x": 40,
- "sheet_y": 44,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F939-1F3FF-200D-2640-FE0F",
- "non_qualified": "1F939-1F3FF-200D-2640",
- "image": "1f939-1f3ff-200d-2640-fe0f.png",
- "sheet_x": 40,
- "sheet_y": 45,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- }
- }
- },
- "couple": {
- "char": "\ud83d\udc6b",
- "key": "couple",
- "keywords": ["couple", "MAN AND WOMAN HOLDING HANDS"],
- "category": "people",
- "lib": {
- "name": "MAN AND WOMAN HOLDING HANDS",
- "unified": "1F46B",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": "E428",
- "google": "FE1A0",
- "image": "1f46b.png",
- "sheet_x": 21,
- "sheet_y": 6,
- "short_name": "couple",
- "short_names": ["couple", "man_and_woman_holding_hands"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 319,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "two_men_holding_hands": {
- "char": "\ud83d\udc6c",
- "key": "two_men_holding_hands",
- "keywords": ["two_men_holding_hands", "TWO MEN HOLDING HANDS"],
- "category": "people",
- "lib": {
- "name": "TWO MEN HOLDING HANDS",
- "unified": "1F46C",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f46c.png",
- "sheet_x": 21,
- "sheet_y": 7,
- "short_name": "two_men_holding_hands",
- "short_names": ["two_men_holding_hands"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 320,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "two_women_holding_hands": {
- "char": "\ud83d\udc6d",
- "key": "two_women_holding_hands",
- "keywords": ["two_women_holding_hands", "TWO WOMEN HOLDING HANDS"],
- "category": "people",
- "lib": {
- "name": "TWO WOMEN HOLDING HANDS",
- "unified": "1F46D",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f46d.png",
- "sheet_x": 21,
- "sheet_y": 8,
- "short_name": "two_women_holding_hands",
- "short_names": ["two_women_holding_hands"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 321,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "woman-kiss-man": {
- "char": "\ud83d\udc69\u200d\u2764\ufe0f\u200d\ud83d\udc8b\u200d\ud83d\udc68",
- "key": "woman-kiss-man",
- "keywords": ["woman-kiss-man", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F469-200D-2764-FE0F-200D-1F48B-200D-1F468",
- "non_qualified": "1F469-200D-2764-200D-1F48B-200D-1F468",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f469-200d-2764-fe0f-200d-1f48b-200d-1f468.png",
- "sheet_x": 20,
- "sheet_y": 50,
- "short_name": "woman-kiss-man",
- "short_names": ["woman-kiss-man"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 323,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "obsoletes": "1F48F"
- }
- },
- "man-kiss-man": {
- "char": "\ud83d\udc68\u200d\u2764\ufe0f\u200d\ud83d\udc8b\u200d\ud83d\udc68",
- "key": "man-kiss-man",
- "keywords": ["man-kiss-man", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F468-200D-2764-FE0F-200D-1F48B-200D-1F468",
- "non_qualified": "1F468-200D-2764-200D-1F48B-200D-1F468",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f468-200d-2764-fe0f-200d-1f48b-200d-1f468.png",
- "sheet_x": 18,
- "sheet_y": 17,
- "short_name": "man-kiss-man",
- "short_names": ["man-kiss-man"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 324,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "woman-kiss-woman": {
- "char": "\ud83d\udc69\u200d\u2764\ufe0f\u200d\ud83d\udc8b\u200d\ud83d\udc69",
- "key": "woman-kiss-woman",
- "keywords": ["woman-kiss-woman", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F469-200D-2764-FE0F-200D-1F48B-200D-1F469",
- "non_qualified": "1F469-200D-2764-200D-1F48B-200D-1F469",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f469-200d-2764-fe0f-200d-1f48b-200d-1f469.png",
- "sheet_x": 20,
- "sheet_y": 51,
- "short_name": "woman-kiss-woman",
- "short_names": ["woman-kiss-woman"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 325,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "woman-heart-man": {
- "char": "\ud83d\udc69\u200d\u2764\ufe0f\u200d\ud83d\udc68",
- "key": "woman-heart-man",
- "keywords": ["woman-heart-man", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F469-200D-2764-FE0F-200D-1F468",
- "non_qualified": "1F469-200D-2764-200D-1F468",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f469-200d-2764-fe0f-200d-1f468.png",
- "sheet_x": 20,
- "sheet_y": 48,
- "short_name": "woman-heart-man",
- "short_names": ["woman-heart-man"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 327,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "obsoletes": "1F491"
- }
- },
- "man-heart-man": {
- "char": "\ud83d\udc68\u200d\u2764\ufe0f\u200d\ud83d\udc68",
- "key": "man-heart-man",
- "keywords": ["man-heart-man", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F468-200D-2764-FE0F-200D-1F468",
- "non_qualified": "1F468-200D-2764-200D-1F468",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f468-200d-2764-fe0f-200d-1f468.png",
- "sheet_x": 18,
- "sheet_y": 16,
- "short_name": "man-heart-man",
- "short_names": ["man-heart-man"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 328,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "woman-heart-woman": {
- "char": "\ud83d\udc69\u200d\u2764\ufe0f\u200d\ud83d\udc69",
- "key": "woman-heart-woman",
- "keywords": ["woman-heart-woman", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F469-200D-2764-FE0F-200D-1F469",
- "non_qualified": "1F469-200D-2764-200D-1F469",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f469-200d-2764-fe0f-200d-1f469.png",
- "sheet_x": 20,
- "sheet_y": 49,
- "short_name": "woman-heart-woman",
- "short_names": ["woman-heart-woman"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 329,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "man-woman-boy": {
- "char": "\ud83d\udc68\u200d\ud83d\udc69\u200d\ud83d\udc66",
- "key": "man-woman-boy",
- "keywords": ["man-woman-boy", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F468-200D-1F469-200D-1F466",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f468-200d-1f469-200d-1f466.png",
- "sheet_x": 16,
- "sheet_y": 39,
- "short_name": "man-woman-boy",
- "short_names": ["man-woman-boy", "family"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 331,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true,
- "obsoletes": "1F46A"
- }
- },
- "man-woman-girl": {
- "char": "\ud83d\udc68\u200d\ud83d\udc69\u200d\ud83d\udc67",
- "key": "man-woman-girl",
- "keywords": ["man-woman-girl", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F468-200D-1F469-200D-1F467",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f468-200d-1f469-200d-1f467.png",
- "sheet_x": 16,
- "sheet_y": 41,
- "short_name": "man-woman-girl",
- "short_names": ["man-woman-girl"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 332,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "man-woman-girl-boy": {
- "char": "\ud83d\udc68\u200d\ud83d\udc69\u200d\ud83d\udc67\u200d\ud83d\udc66",
- "key": "man-woman-girl-boy",
- "keywords": ["man-woman-girl-boy", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F468-200D-1F469-200D-1F467-200D-1F466",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f468-200d-1f469-200d-1f467-200d-1f466.png",
- "sheet_x": 16,
- "sheet_y": 42,
- "short_name": "man-woman-girl-boy",
- "short_names": ["man-woman-girl-boy"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 333,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "man-woman-boy-boy": {
- "char": "\ud83d\udc68\u200d\ud83d\udc69\u200d\ud83d\udc66\u200d\ud83d\udc66",
- "key": "man-woman-boy-boy",
- "keywords": ["man-woman-boy-boy", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F468-200D-1F469-200D-1F466-200D-1F466",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f468-200d-1f469-200d-1f466-200d-1f466.png",
- "sheet_x": 16,
- "sheet_y": 40,
- "short_name": "man-woman-boy-boy",
- "short_names": ["man-woman-boy-boy"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 334,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "man-woman-girl-girl": {
- "char": "\ud83d\udc68\u200d\ud83d\udc69\u200d\ud83d\udc67\u200d\ud83d\udc67",
- "key": "man-woman-girl-girl",
- "keywords": ["man-woman-girl-girl", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F468-200D-1F469-200D-1F467-200D-1F467",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f468-200d-1f469-200d-1f467-200d-1f467.png",
- "sheet_x": 16,
- "sheet_y": 43,
- "short_name": "man-woman-girl-girl",
- "short_names": ["man-woman-girl-girl"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 335,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "man-man-boy": {
- "char": "\ud83d\udc68\u200d\ud83d\udc68\u200d\ud83d\udc66",
- "key": "man-man-boy",
- "keywords": ["man-man-boy", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F468-200D-1F468-200D-1F466",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f468-200d-1f468-200d-1f466.png",
- "sheet_x": 16,
- "sheet_y": 34,
- "short_name": "man-man-boy",
- "short_names": ["man-man-boy"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 336,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "man-man-girl": {
- "char": "\ud83d\udc68\u200d\ud83d\udc68\u200d\ud83d\udc67",
- "key": "man-man-girl",
- "keywords": ["man-man-girl", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F468-200D-1F468-200D-1F467",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f468-200d-1f468-200d-1f467.png",
- "sheet_x": 16,
- "sheet_y": 36,
- "short_name": "man-man-girl",
- "short_names": ["man-man-girl"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 337,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "man-man-girl-boy": {
- "char": "\ud83d\udc68\u200d\ud83d\udc68\u200d\ud83d\udc67\u200d\ud83d\udc66",
- "key": "man-man-girl-boy",
- "keywords": ["man-man-girl-boy", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F468-200D-1F468-200D-1F467-200D-1F466",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f468-200d-1f468-200d-1f467-200d-1f466.png",
- "sheet_x": 16,
- "sheet_y": 37,
- "short_name": "man-man-girl-boy",
- "short_names": ["man-man-girl-boy"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 338,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "man-man-boy-boy": {
- "char": "\ud83d\udc68\u200d\ud83d\udc68\u200d\ud83d\udc66\u200d\ud83d\udc66",
- "key": "man-man-boy-boy",
- "keywords": ["man-man-boy-boy", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F468-200D-1F468-200D-1F466-200D-1F466",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f468-200d-1f468-200d-1f466-200d-1f466.png",
- "sheet_x": 16,
- "sheet_y": 35,
- "short_name": "man-man-boy-boy",
- "short_names": ["man-man-boy-boy"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 339,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "man-man-girl-girl": {
- "char": "\ud83d\udc68\u200d\ud83d\udc68\u200d\ud83d\udc67\u200d\ud83d\udc67",
- "key": "man-man-girl-girl",
- "keywords": ["man-man-girl-girl", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F468-200D-1F468-200D-1F467-200D-1F467",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f468-200d-1f468-200d-1f467-200d-1f467.png",
- "sheet_x": 16,
- "sheet_y": 38,
- "short_name": "man-man-girl-girl",
- "short_names": ["man-man-girl-girl"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 340,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "woman-woman-boy": {
- "char": "\ud83d\udc69\u200d\ud83d\udc69\u200d\ud83d\udc66",
- "key": "woman-woman-boy",
- "keywords": ["woman-woman-boy", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F469-200D-1F469-200D-1F466",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f469-200d-1f469-200d-1f466.png",
- "sheet_x": 19,
- "sheet_y": 18,
- "short_name": "woman-woman-boy",
- "short_names": ["woman-woman-boy"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 341,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "woman-woman-girl": {
- "char": "\ud83d\udc69\u200d\ud83d\udc69\u200d\ud83d\udc67",
- "key": "woman-woman-girl",
- "keywords": ["woman-woman-girl", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F469-200D-1F469-200D-1F467",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f469-200d-1f469-200d-1f467.png",
- "sheet_x": 19,
- "sheet_y": 20,
- "short_name": "woman-woman-girl",
- "short_names": ["woman-woman-girl"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 342,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "woman-woman-girl-boy": {
- "char": "\ud83d\udc69\u200d\ud83d\udc69\u200d\ud83d\udc67\u200d\ud83d\udc66",
- "key": "woman-woman-girl-boy",
- "keywords": ["woman-woman-girl-boy", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F469-200D-1F469-200D-1F467-200D-1F466",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f469-200d-1f469-200d-1f467-200d-1f466.png",
- "sheet_x": 19,
- "sheet_y": 21,
- "short_name": "woman-woman-girl-boy",
- "short_names": ["woman-woman-girl-boy"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 343,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "woman-woman-boy-boy": {
- "char": "\ud83d\udc69\u200d\ud83d\udc69\u200d\ud83d\udc66\u200d\ud83d\udc66",
- "key": "woman-woman-boy-boy",
- "keywords": ["woman-woman-boy-boy", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F469-200D-1F469-200D-1F466-200D-1F466",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f469-200d-1f469-200d-1f466-200d-1f466.png",
- "sheet_x": 19,
- "sheet_y": 19,
- "short_name": "woman-woman-boy-boy",
- "short_names": ["woman-woman-boy-boy"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 344,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "woman-woman-girl-girl": {
- "char": "\ud83d\udc69\u200d\ud83d\udc69\u200d\ud83d\udc67\u200d\ud83d\udc67",
- "key": "woman-woman-girl-girl",
- "keywords": ["woman-woman-girl-girl", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F469-200D-1F469-200D-1F467-200D-1F467",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f469-200d-1f469-200d-1f467-200d-1f467.png",
- "sheet_x": 19,
- "sheet_y": 22,
- "short_name": "woman-woman-girl-girl",
- "short_names": ["woman-woman-girl-girl"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 345,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "man-boy": {
- "char": "\ud83d\udc68\u200d\ud83d\udc66",
- "key": "man-boy",
- "keywords": ["man-boy", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F468-200D-1F466",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f468-200d-1f466.png",
- "sheet_x": 16,
- "sheet_y": 30,
- "short_name": "man-boy",
- "short_names": ["man-boy"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 346,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "man-boy-boy": {
- "char": "\ud83d\udc68\u200d\ud83d\udc66\u200d\ud83d\udc66",
- "key": "man-boy-boy",
- "keywords": ["man-boy-boy", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F468-200D-1F466-200D-1F466",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f468-200d-1f466-200d-1f466.png",
- "sheet_x": 16,
- "sheet_y": 29,
- "short_name": "man-boy-boy",
- "short_names": ["man-boy-boy"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 347,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "man-girl": {
- "char": "\ud83d\udc68\u200d\ud83d\udc67",
- "key": "man-girl",
- "keywords": ["man-girl", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F468-200D-1F467",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f468-200d-1f467.png",
- "sheet_x": 16,
- "sheet_y": 33,
- "short_name": "man-girl",
- "short_names": ["man-girl"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 348,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "man-girl-boy": {
- "char": "\ud83d\udc68\u200d\ud83d\udc67\u200d\ud83d\udc66",
- "key": "man-girl-boy",
- "keywords": ["man-girl-boy", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F468-200D-1F467-200D-1F466",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f468-200d-1f467-200d-1f466.png",
- "sheet_x": 16,
- "sheet_y": 31,
- "short_name": "man-girl-boy",
- "short_names": ["man-girl-boy"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 349,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "man-girl-girl": {
- "char": "\ud83d\udc68\u200d\ud83d\udc67\u200d\ud83d\udc67",
- "key": "man-girl-girl",
- "keywords": ["man-girl-girl", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F468-200D-1F467-200D-1F467",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f468-200d-1f467-200d-1f467.png",
- "sheet_x": 16,
- "sheet_y": 32,
- "short_name": "man-girl-girl",
- "short_names": ["man-girl-girl"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 350,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "woman-boy": {
- "char": "\ud83d\udc69\u200d\ud83d\udc66",
- "key": "woman-boy",
- "keywords": ["woman-boy", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F469-200D-1F466",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f469-200d-1f466.png",
- "sheet_x": 19,
- "sheet_y": 14,
- "short_name": "woman-boy",
- "short_names": ["woman-boy"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 351,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "woman-boy-boy": {
- "char": "\ud83d\udc69\u200d\ud83d\udc66\u200d\ud83d\udc66",
- "key": "woman-boy-boy",
- "keywords": ["woman-boy-boy", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F469-200D-1F466-200D-1F466",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f469-200d-1f466-200d-1f466.png",
- "sheet_x": 19,
- "sheet_y": 13,
- "short_name": "woman-boy-boy",
- "short_names": ["woman-boy-boy"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 352,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "woman-girl": {
- "char": "\ud83d\udc69\u200d\ud83d\udc67",
- "key": "woman-girl",
- "keywords": ["woman-girl", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F469-200D-1F467",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f469-200d-1f467.png",
- "sheet_x": 19,
- "sheet_y": 17,
- "short_name": "woman-girl",
- "short_names": ["woman-girl"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 353,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "woman-girl-boy": {
- "char": "\ud83d\udc69\u200d\ud83d\udc67\u200d\ud83d\udc66",
- "key": "woman-girl-boy",
- "keywords": ["woman-girl-boy", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F469-200D-1F467-200D-1F466",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f469-200d-1f467-200d-1f466.png",
- "sheet_x": 19,
- "sheet_y": 15,
- "short_name": "woman-girl-boy",
- "short_names": ["woman-girl-boy"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 354,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "woman-girl-girl": {
- "char": "\ud83d\udc69\u200d\ud83d\udc67\u200d\ud83d\udc67",
- "key": "woman-girl-girl",
- "keywords": ["woman-girl-girl", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F469-200D-1F467-200D-1F467",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f469-200d-1f467-200d-1f467.png",
- "sheet_x": 19,
- "sheet_y": 16,
- "short_name": "woman-girl-girl",
- "short_names": ["woman-girl-girl"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 355,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "selfie": {
- "char": "\ud83e\udd33",
- "key": "selfie",
- "keywords": ["selfie", "SELFIE"],
- "category": "people",
- "lib": {
- "name": "SELFIE",
- "unified": "1F933",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f933.png",
- "sheet_x": 39,
- "sheet_y": 33,
- "short_name": "selfie",
- "short_names": ["selfie"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 356,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F933-1F3FB",
- "non_qualified": null,
- "image": "1f933-1f3fb.png",
- "sheet_x": 39,
- "sheet_y": 34,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F933-1F3FC",
- "non_qualified": null,
- "image": "1f933-1f3fc.png",
- "sheet_x": 39,
- "sheet_y": 35,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F933-1F3FD",
- "non_qualified": null,
- "image": "1f933-1f3fd.png",
- "sheet_x": 39,
- "sheet_y": 36,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F933-1F3FE",
- "non_qualified": null,
- "image": "1f933-1f3fe.png",
- "sheet_x": 39,
- "sheet_y": 37,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F933-1F3FF",
- "non_qualified": null,
- "image": "1f933-1f3ff.png",
- "sheet_x": 39,
- "sheet_y": 38,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- }
- }
- },
- "muscle": {
- "char": "\ud83d\udcaa",
- "key": "muscle",
- "keywords": ["muscle", "FLEXED BICEPS"],
- "category": "people",
- "lib": {
- "name": "FLEXED BICEPS",
- "unified": "1F4AA",
- "non_qualified": null,
- "docomo": null,
- "au": "E4E9",
- "softbank": "E14C",
- "google": "FEB5E",
- "image": "1f4aa.png",
- "sheet_x": 25,
- "sheet_y": 40,
- "short_name": "muscle",
- "short_names": ["muscle"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 357,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F4AA-1F3FB",
- "non_qualified": null,
- "image": "1f4aa-1f3fb.png",
- "sheet_x": 25,
- "sheet_y": 41,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FC": {
- "unified": "1F4AA-1F3FC",
- "non_qualified": null,
- "image": "1f4aa-1f3fc.png",
- "sheet_x": 25,
- "sheet_y": 42,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FD": {
- "unified": "1F4AA-1F3FD",
- "non_qualified": null,
- "image": "1f4aa-1f3fd.png",
- "sheet_x": 25,
- "sheet_y": 43,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FE": {
- "unified": "1F4AA-1F3FE",
- "non_qualified": null,
- "image": "1f4aa-1f3fe.png",
- "sheet_x": 25,
- "sheet_y": 44,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FF": {
- "unified": "1F4AA-1F3FF",
- "non_qualified": null,
- "image": "1f4aa-1f3ff.png",
- "sheet_x": 25,
- "sheet_y": 45,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- }
- }
- },
- "leg": {
- "char": "\ud83e\uddb5",
- "key": "leg",
- "keywords": ["leg", "LEG"],
- "category": "people",
- "lib": {
- "name": "LEG",
- "unified": "1F9B5",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f9b5.png",
- "sheet_x": 43,
- "sheet_y": 32,
- "short_name": "leg",
- "short_names": ["leg"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 358,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F9B5-1F3FB",
- "non_qualified": null,
- "image": "1f9b5-1f3fb.png",
- "sheet_x": 43,
- "sheet_y": 33,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F9B5-1F3FC",
- "non_qualified": null,
- "image": "1f9b5-1f3fc.png",
- "sheet_x": 43,
- "sheet_y": 34,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F9B5-1F3FD",
- "non_qualified": null,
- "image": "1f9b5-1f3fd.png",
- "sheet_x": 43,
- "sheet_y": 35,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F9B5-1F3FE",
- "non_qualified": null,
- "image": "1f9b5-1f3fe.png",
- "sheet_x": 43,
- "sheet_y": 36,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F9B5-1F3FF",
- "non_qualified": null,
- "image": "1f9b5-1f3ff.png",
- "sheet_x": 43,
- "sheet_y": 37,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- }
- }
- },
- "foot": {
- "char": "\ud83e\uddb6",
- "key": "foot",
- "keywords": ["foot", "FOOT"],
- "category": "people",
- "lib": {
- "name": "FOOT",
- "unified": "1F9B6",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f9b6.png",
- "sheet_x": 43,
- "sheet_y": 38,
- "short_name": "foot",
- "short_names": ["foot"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 359,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F9B6-1F3FB",
- "non_qualified": null,
- "image": "1f9b6-1f3fb.png",
- "sheet_x": 43,
- "sheet_y": 39,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F9B6-1F3FC",
- "non_qualified": null,
- "image": "1f9b6-1f3fc.png",
- "sheet_x": 43,
- "sheet_y": 40,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F9B6-1F3FD",
- "non_qualified": null,
- "image": "1f9b6-1f3fd.png",
- "sheet_x": 43,
- "sheet_y": 41,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F9B6-1F3FE",
- "non_qualified": null,
- "image": "1f9b6-1f3fe.png",
- "sheet_x": 43,
- "sheet_y": 42,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F9B6-1F3FF",
- "non_qualified": null,
- "image": "1f9b6-1f3ff.png",
- "sheet_x": 43,
- "sheet_y": 43,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- }
- }
- },
- "point_left": {
- "char": "\ud83d\udc48",
- "key": "point_left",
- "keywords": ["point_left", "WHITE LEFT POINTING BACKHAND INDEX"],
- "category": "people",
- "lib": {
- "name": "WHITE LEFT POINTING BACKHAND INDEX",
- "unified": "1F448",
- "non_qualified": null,
- "docomo": null,
- "au": "E4FF",
- "softbank": "E230",
- "google": "FEB9B",
- "image": "1f448.png",
- "sheet_x": 14,
- "sheet_y": 6,
- "short_name": "point_left",
- "short_names": ["point_left"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 360,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F448-1F3FB",
- "non_qualified": null,
- "image": "1f448-1f3fb.png",
- "sheet_x": 14,
- "sheet_y": 7,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FC": {
- "unified": "1F448-1F3FC",
- "non_qualified": null,
- "image": "1f448-1f3fc.png",
- "sheet_x": 14,
- "sheet_y": 8,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FD": {
- "unified": "1F448-1F3FD",
- "non_qualified": null,
- "image": "1f448-1f3fd.png",
- "sheet_x": 14,
- "sheet_y": 9,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FE": {
- "unified": "1F448-1F3FE",
- "non_qualified": null,
- "image": "1f448-1f3fe.png",
- "sheet_x": 14,
- "sheet_y": 10,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FF": {
- "unified": "1F448-1F3FF",
- "non_qualified": null,
- "image": "1f448-1f3ff.png",
- "sheet_x": 14,
- "sheet_y": 11,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- }
- }
- },
- "point_right": {
- "char": "\ud83d\udc49",
- "key": "point_right",
- "keywords": ["point_right", "WHITE RIGHT POINTING BACKHAND INDEX"],
- "category": "people",
- "lib": {
- "name": "WHITE RIGHT POINTING BACKHAND INDEX",
- "unified": "1F449",
- "non_qualified": null,
- "docomo": null,
- "au": "E500",
- "softbank": "E231",
- "google": "FEB9C",
- "image": "1f449.png",
- "sheet_x": 14,
- "sheet_y": 12,
- "short_name": "point_right",
- "short_names": ["point_right"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 361,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F449-1F3FB",
- "non_qualified": null,
- "image": "1f449-1f3fb.png",
- "sheet_x": 14,
- "sheet_y": 13,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FC": {
- "unified": "1F449-1F3FC",
- "non_qualified": null,
- "image": "1f449-1f3fc.png",
- "sheet_x": 14,
- "sheet_y": 14,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FD": {
- "unified": "1F449-1F3FD",
- "non_qualified": null,
- "image": "1f449-1f3fd.png",
- "sheet_x": 14,
- "sheet_y": 15,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FE": {
- "unified": "1F449-1F3FE",
- "non_qualified": null,
- "image": "1f449-1f3fe.png",
- "sheet_x": 14,
- "sheet_y": 16,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FF": {
- "unified": "1F449-1F3FF",
- "non_qualified": null,
- "image": "1f449-1f3ff.png",
- "sheet_x": 14,
- "sheet_y": 17,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- }
- }
- },
- "point_up": {
- "char": "\u261d\ufe0f",
- "key": "point_up",
- "keywords": ["point_up", "WHITE UP POINTING INDEX"],
- "category": "people",
- "lib": {
- "name": "WHITE UP POINTING INDEX",
- "unified": "261D-FE0F",
- "non_qualified": "261D",
- "docomo": null,
- "au": "E4F6",
- "softbank": "E00F",
- "google": "FEB98",
- "image": "261d-fe0f.png",
- "sheet_x": 49,
- "sheet_y": 16,
- "short_name": "point_up",
- "short_names": ["point_up"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 362,
- "added_in": "1.1",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true,
- "skin_variations": {
- "1F3FB": {
- "unified": "261D-1F3FB",
- "non_qualified": null,
- "image": "261d-1f3fb.png",
- "sheet_x": 49,
- "sheet_y": 17,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FC": {
- "unified": "261D-1F3FC",
- "non_qualified": null,
- "image": "261d-1f3fc.png",
- "sheet_x": 49,
- "sheet_y": 18,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FD": {
- "unified": "261D-1F3FD",
- "non_qualified": null,
- "image": "261d-1f3fd.png",
- "sheet_x": 49,
- "sheet_y": 19,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FE": {
- "unified": "261D-1F3FE",
- "non_qualified": null,
- "image": "261d-1f3fe.png",
- "sheet_x": 49,
- "sheet_y": 20,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FF": {
- "unified": "261D-1F3FF",
- "non_qualified": null,
- "image": "261d-1f3ff.png",
- "sheet_x": 49,
- "sheet_y": 21,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- }
- }
- },
- "point_up_2": {
- "char": "\ud83d\udc46",
- "key": "point_up_2",
- "keywords": ["point_up_2", "WHITE UP POINTING BACKHAND INDEX"],
- "category": "people",
- "lib": {
- "name": "WHITE UP POINTING BACKHAND INDEX",
- "unified": "1F446",
- "non_qualified": null,
- "docomo": null,
- "au": "EA8D",
- "softbank": "E22E",
- "google": "FEB99",
- "image": "1f446.png",
- "sheet_x": 13,
- "sheet_y": 47,
- "short_name": "point_up_2",
- "short_names": ["point_up_2"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 363,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F446-1F3FB",
- "non_qualified": null,
- "image": "1f446-1f3fb.png",
- "sheet_x": 13,
- "sheet_y": 48,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FC": {
- "unified": "1F446-1F3FC",
- "non_qualified": null,
- "image": "1f446-1f3fc.png",
- "sheet_x": 13,
- "sheet_y": 49,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FD": {
- "unified": "1F446-1F3FD",
- "non_qualified": null,
- "image": "1f446-1f3fd.png",
- "sheet_x": 13,
- "sheet_y": 50,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FE": {
- "unified": "1F446-1F3FE",
- "non_qualified": null,
- "image": "1f446-1f3fe.png",
- "sheet_x": 13,
- "sheet_y": 51,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FF": {
- "unified": "1F446-1F3FF",
- "non_qualified": null,
- "image": "1f446-1f3ff.png",
- "sheet_x": 13,
- "sheet_y": 52,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- }
- }
- },
- "middle_finger": {
- "char": "\ud83d\udd95",
- "key": "middle_finger",
- "keywords": ["middle_finger", "REVERSED HAND WITH MIDDLE FINGER EXTENDED"],
- "category": "people",
- "lib": {
- "name": "REVERSED HAND WITH MIDDLE FINGER EXTENDED",
- "unified": "1F595",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f595.png",
- "sheet_x": 30,
- "sheet_y": 5,
- "short_name": "middle_finger",
- "short_names": ["middle_finger", "reversed_hand_with_middle_finger_extended"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 364,
- "added_in": "7.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F595-1F3FB",
- "non_qualified": null,
- "image": "1f595-1f3fb.png",
- "sheet_x": 30,
- "sheet_y": 6,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F595-1F3FC",
- "non_qualified": null,
- "image": "1f595-1f3fc.png",
- "sheet_x": 30,
- "sheet_y": 7,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F595-1F3FD",
- "non_qualified": null,
- "image": "1f595-1f3fd.png",
- "sheet_x": 30,
- "sheet_y": 8,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F595-1F3FE",
- "non_qualified": null,
- "image": "1f595-1f3fe.png",
- "sheet_x": 30,
- "sheet_y": 9,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F595-1F3FF",
- "non_qualified": null,
- "image": "1f595-1f3ff.png",
- "sheet_x": 30,
- "sheet_y": 10,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- }
- }
- },
- "point_down": {
- "char": "\ud83d\udc47",
- "key": "point_down",
- "keywords": ["point_down", "WHITE DOWN POINTING BACKHAND INDEX"],
- "category": "people",
- "lib": {
- "name": "WHITE DOWN POINTING BACKHAND INDEX",
- "unified": "1F447",
- "non_qualified": null,
- "docomo": null,
- "au": "EA8E",
- "softbank": "E22F",
- "google": "FEB9A",
- "image": "1f447.png",
- "sheet_x": 14,
- "sheet_y": 0,
- "short_name": "point_down",
- "short_names": ["point_down"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 365,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F447-1F3FB",
- "non_qualified": null,
- "image": "1f447-1f3fb.png",
- "sheet_x": 14,
- "sheet_y": 1,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FC": {
- "unified": "1F447-1F3FC",
- "non_qualified": null,
- "image": "1f447-1f3fc.png",
- "sheet_x": 14,
- "sheet_y": 2,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FD": {
- "unified": "1F447-1F3FD",
- "non_qualified": null,
- "image": "1f447-1f3fd.png",
- "sheet_x": 14,
- "sheet_y": 3,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FE": {
- "unified": "1F447-1F3FE",
- "non_qualified": null,
- "image": "1f447-1f3fe.png",
- "sheet_x": 14,
- "sheet_y": 4,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FF": {
- "unified": "1F447-1F3FF",
- "non_qualified": null,
- "image": "1f447-1f3ff.png",
- "sheet_x": 14,
- "sheet_y": 5,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- }
- }
- },
- "v": {
- "char": "\u270c\ufe0f",
- "key": "v",
- "keywords": ["v", "VICTORY HAND"],
- "category": "people",
- "lib": {
- "name": "VICTORY HAND",
- "unified": "270C-FE0F",
- "non_qualified": "270C",
- "docomo": "E694",
- "au": "E5A6",
- "softbank": "E011",
- "google": "FEB94",
- "image": "270c-fe0f.png",
- "sheet_x": 51,
- "sheet_y": 20,
- "short_name": "v",
- "short_names": ["v"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 366,
- "added_in": "1.1",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true,
- "skin_variations": {
- "1F3FB": {
- "unified": "270C-1F3FB",
- "non_qualified": null,
- "image": "270c-1f3fb.png",
- "sheet_x": 51,
- "sheet_y": 21,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FC": {
- "unified": "270C-1F3FC",
- "non_qualified": null,
- "image": "270c-1f3fc.png",
- "sheet_x": 51,
- "sheet_y": 22,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FD": {
- "unified": "270C-1F3FD",
- "non_qualified": null,
- "image": "270c-1f3fd.png",
- "sheet_x": 51,
- "sheet_y": 23,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FE": {
- "unified": "270C-1F3FE",
- "non_qualified": null,
- "image": "270c-1f3fe.png",
- "sheet_x": 51,
- "sheet_y": 24,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FF": {
- "unified": "270C-1F3FF",
- "non_qualified": null,
- "image": "270c-1f3ff.png",
- "sheet_x": 51,
- "sheet_y": 25,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- }
- }
- },
- "crossed_fingers": {
- "char": "\ud83e\udd1e",
- "key": "crossed_fingers",
- "keywords": ["crossed_fingers", "HAND WITH INDEX AND MIDDLE FINGERS CROSSED"],
- "category": "people",
- "lib": {
- "name": "HAND WITH INDEX AND MIDDLE FINGERS CROSSED",
- "unified": "1F91E",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f91e.png",
- "sheet_x": 38,
- "sheet_y": 23,
- "short_name": "crossed_fingers",
- "short_names": ["crossed_fingers", "hand_with_index_and_middle_fingers_crossed"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 367,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F91E-1F3FB",
- "non_qualified": null,
- "image": "1f91e-1f3fb.png",
- "sheet_x": 38,
- "sheet_y": 24,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F91E-1F3FC",
- "non_qualified": null,
- "image": "1f91e-1f3fc.png",
- "sheet_x": 38,
- "sheet_y": 25,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F91E-1F3FD",
- "non_qualified": null,
- "image": "1f91e-1f3fd.png",
- "sheet_x": 38,
- "sheet_y": 26,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F91E-1F3FE",
- "non_qualified": null,
- "image": "1f91e-1f3fe.png",
- "sheet_x": 38,
- "sheet_y": 27,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F91E-1F3FF",
- "non_qualified": null,
- "image": "1f91e-1f3ff.png",
- "sheet_x": 38,
- "sheet_y": 28,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- }
- }
- },
- "spock-hand": {
- "char": "\ud83d\udd96",
- "key": "spock-hand",
- "keywords": ["spock-hand", "RAISED HAND WITH PART BETWEEN MIDDLE AND RING FINGERS"],
- "category": "people",
- "lib": {
- "name": "RAISED HAND WITH PART BETWEEN MIDDLE AND RING FINGERS",
- "unified": "1F596",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f596.png",
- "sheet_x": 30,
- "sheet_y": 11,
- "short_name": "spock-hand",
- "short_names": ["spock-hand"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 368,
- "added_in": "7.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F596-1F3FB",
- "non_qualified": null,
- "image": "1f596-1f3fb.png",
- "sheet_x": 30,
- "sheet_y": 12,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F596-1F3FC",
- "non_qualified": null,
- "image": "1f596-1f3fc.png",
- "sheet_x": 30,
- "sheet_y": 13,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F596-1F3FD",
- "non_qualified": null,
- "image": "1f596-1f3fd.png",
- "sheet_x": 30,
- "sheet_y": 14,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F596-1F3FE",
- "non_qualified": null,
- "image": "1f596-1f3fe.png",
- "sheet_x": 30,
- "sheet_y": 15,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F596-1F3FF",
- "non_qualified": null,
- "image": "1f596-1f3ff.png",
- "sheet_x": 30,
- "sheet_y": 16,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- }
- }
- },
- "the_horns": {
- "char": "\ud83e\udd18",
- "key": "the_horns",
- "keywords": ["the_horns", "SIGN OF THE HORNS"],
- "category": "people",
- "lib": {
- "name": "SIGN OF THE HORNS",
- "unified": "1F918",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f918.png",
- "sheet_x": 37,
- "sheet_y": 45,
- "short_name": "the_horns",
- "short_names": ["the_horns", "sign_of_the_horns"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 369,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F918-1F3FB",
- "non_qualified": null,
- "image": "1f918-1f3fb.png",
- "sheet_x": 37,
- "sheet_y": 46,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F918-1F3FC",
- "non_qualified": null,
- "image": "1f918-1f3fc.png",
- "sheet_x": 37,
- "sheet_y": 47,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F918-1F3FD",
- "non_qualified": null,
- "image": "1f918-1f3fd.png",
- "sheet_x": 37,
- "sheet_y": 48,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F918-1F3FE",
- "non_qualified": null,
- "image": "1f918-1f3fe.png",
- "sheet_x": 37,
- "sheet_y": 49,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F918-1F3FF",
- "non_qualified": null,
- "image": "1f918-1f3ff.png",
- "sheet_x": 37,
- "sheet_y": 50,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- }
- }
- },
- "call_me_hand": {
- "char": "\ud83e\udd19",
- "key": "call_me_hand",
- "keywords": ["call_me_hand", "CALL ME HAND"],
- "category": "people",
- "lib": {
- "name": "CALL ME HAND",
- "unified": "1F919",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f919.png",
- "sheet_x": 37,
- "sheet_y": 51,
- "short_name": "call_me_hand",
- "short_names": ["call_me_hand"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 370,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F919-1F3FB",
- "non_qualified": null,
- "image": "1f919-1f3fb.png",
- "sheet_x": 37,
- "sheet_y": 52,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F919-1F3FC",
- "non_qualified": null,
- "image": "1f919-1f3fc.png",
- "sheet_x": 38,
- "sheet_y": 0,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F919-1F3FD",
- "non_qualified": null,
- "image": "1f919-1f3fd.png",
- "sheet_x": 38,
- "sheet_y": 1,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F919-1F3FE",
- "non_qualified": null,
- "image": "1f919-1f3fe.png",
- "sheet_x": 38,
- "sheet_y": 2,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F919-1F3FF",
- "non_qualified": null,
- "image": "1f919-1f3ff.png",
- "sheet_x": 38,
- "sheet_y": 3,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- }
- }
- },
- "raised_hand_with_fingers_splayed": {
- "char": "\ud83d\udd90\ufe0f",
- "key": "raised_hand_with_fingers_splayed",
- "keywords": ["raised_hand_with_fingers_splayed", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F590-FE0F",
- "non_qualified": "1F590",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f590-fe0f.png",
- "sheet_x": 29,
- "sheet_y": 52,
- "short_name": "raised_hand_with_fingers_splayed",
- "short_names": ["raised_hand_with_fingers_splayed"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 371,
- "added_in": "7.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F590-1F3FB",
- "non_qualified": null,
- "image": "1f590-1f3fb.png",
- "sheet_x": 30,
- "sheet_y": 0,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F590-1F3FC",
- "non_qualified": null,
- "image": "1f590-1f3fc.png",
- "sheet_x": 30,
- "sheet_y": 1,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F590-1F3FD",
- "non_qualified": null,
- "image": "1f590-1f3fd.png",
- "sheet_x": 30,
- "sheet_y": 2,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F590-1F3FE",
- "non_qualified": null,
- "image": "1f590-1f3fe.png",
- "sheet_x": 30,
- "sheet_y": 3,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F590-1F3FF",
- "non_qualified": null,
- "image": "1f590-1f3ff.png",
- "sheet_x": 30,
- "sheet_y": 4,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- }
- }
- },
- "hand": {
- "char": "\u270b",
- "key": "hand",
- "keywords": ["hand", "RAISED HAND"],
- "category": "people",
- "lib": {
- "name": "RAISED HAND",
- "unified": "270B",
- "non_qualified": null,
- "docomo": "E695",
- "au": "E5A7",
- "softbank": "E012",
- "google": "FEB95",
- "image": "270b.png",
- "sheet_x": 51,
- "sheet_y": 14,
- "short_name": "hand",
- "short_names": ["hand", "raised_hand"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 372,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true,
- "skin_variations": {
- "1F3FB": {
- "unified": "270B-1F3FB",
- "non_qualified": null,
- "image": "270b-1f3fb.png",
- "sheet_x": 51,
- "sheet_y": 15,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FC": {
- "unified": "270B-1F3FC",
- "non_qualified": null,
- "image": "270b-1f3fc.png",
- "sheet_x": 51,
- "sheet_y": 16,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FD": {
- "unified": "270B-1F3FD",
- "non_qualified": null,
- "image": "270b-1f3fd.png",
- "sheet_x": 51,
- "sheet_y": 17,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FE": {
- "unified": "270B-1F3FE",
- "non_qualified": null,
- "image": "270b-1f3fe.png",
- "sheet_x": 51,
- "sheet_y": 18,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FF": {
- "unified": "270B-1F3FF",
- "non_qualified": null,
- "image": "270b-1f3ff.png",
- "sheet_x": 51,
- "sheet_y": 19,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- }
- }
- },
- "ok_hand": {
- "char": "\ud83d\udc4c",
- "key": "ok_hand",
- "keywords": ["ok_hand", "OK HAND SIGN"],
- "category": "people",
- "lib": {
- "name": "OK HAND SIGN",
- "unified": "1F44C",
- "non_qualified": null,
- "docomo": "E70B",
- "au": "EAD4",
- "softbank": "E420",
- "google": "FEB9F",
- "image": "1f44c.png",
- "sheet_x": 14,
- "sheet_y": 30,
- "short_name": "ok_hand",
- "short_names": ["ok_hand"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 373,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F44C-1F3FB",
- "non_qualified": null,
- "image": "1f44c-1f3fb.png",
- "sheet_x": 14,
- "sheet_y": 31,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FC": {
- "unified": "1F44C-1F3FC",
- "non_qualified": null,
- "image": "1f44c-1f3fc.png",
- "sheet_x": 14,
- "sheet_y": 32,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FD": {
- "unified": "1F44C-1F3FD",
- "non_qualified": null,
- "image": "1f44c-1f3fd.png",
- "sheet_x": 14,
- "sheet_y": 33,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FE": {
- "unified": "1F44C-1F3FE",
- "non_qualified": null,
- "image": "1f44c-1f3fe.png",
- "sheet_x": 14,
- "sheet_y": 34,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FF": {
- "unified": "1F44C-1F3FF",
- "non_qualified": null,
- "image": "1f44c-1f3ff.png",
- "sheet_x": 14,
- "sheet_y": 35,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- }
- }
- },
- "+1": {
- "char": "\ud83d\udc4d",
- "key": "+1",
- "keywords": ["+1", "THUMBS UP SIGN"],
- "category": "people",
- "lib": {
- "name": "THUMBS UP SIGN",
- "unified": "1F44D",
- "non_qualified": null,
- "docomo": "E727",
- "au": "E4F9",
- "softbank": "E00E",
- "google": "FEB97",
- "image": "1f44d.png",
- "sheet_x": 14,
- "sheet_y": 36,
- "short_name": "+1",
- "short_names": ["+1", "thumbsup"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 374,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F44D-1F3FB",
- "non_qualified": null,
- "image": "1f44d-1f3fb.png",
- "sheet_x": 14,
- "sheet_y": 37,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FC": {
- "unified": "1F44D-1F3FC",
- "non_qualified": null,
- "image": "1f44d-1f3fc.png",
- "sheet_x": 14,
- "sheet_y": 38,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FD": {
- "unified": "1F44D-1F3FD",
- "non_qualified": null,
- "image": "1f44d-1f3fd.png",
- "sheet_x": 14,
- "sheet_y": 39,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FE": {
- "unified": "1F44D-1F3FE",
- "non_qualified": null,
- "image": "1f44d-1f3fe.png",
- "sheet_x": 14,
- "sheet_y": 40,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FF": {
- "unified": "1F44D-1F3FF",
- "non_qualified": null,
- "image": "1f44d-1f3ff.png",
- "sheet_x": 14,
- "sheet_y": 41,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- }
- }
- },
- "-1": {
- "char": "\ud83d\udc4e",
- "key": "-1",
- "keywords": ["-1", "THUMBS DOWN SIGN"],
- "category": "people",
- "lib": {
- "name": "THUMBS DOWN SIGN",
- "unified": "1F44E",
- "non_qualified": null,
- "docomo": "E700",
- "au": "EAD5",
- "softbank": "E421",
- "google": "FEBA0",
- "image": "1f44e.png",
- "sheet_x": 14,
- "sheet_y": 42,
- "short_name": "-1",
- "short_names": ["-1", "thumbsdown"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 375,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F44E-1F3FB",
- "non_qualified": null,
- "image": "1f44e-1f3fb.png",
- "sheet_x": 14,
- "sheet_y": 43,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FC": {
- "unified": "1F44E-1F3FC",
- "non_qualified": null,
- "image": "1f44e-1f3fc.png",
- "sheet_x": 14,
- "sheet_y": 44,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FD": {
- "unified": "1F44E-1F3FD",
- "non_qualified": null,
- "image": "1f44e-1f3fd.png",
- "sheet_x": 14,
- "sheet_y": 45,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FE": {
- "unified": "1F44E-1F3FE",
- "non_qualified": null,
- "image": "1f44e-1f3fe.png",
- "sheet_x": 14,
- "sheet_y": 46,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FF": {
- "unified": "1F44E-1F3FF",
- "non_qualified": null,
- "image": "1f44e-1f3ff.png",
- "sheet_x": 14,
- "sheet_y": 47,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- }
- }
- },
- "fist": {
- "char": "\u270a",
- "key": "fist",
- "keywords": ["fist", "RAISED FIST"],
- "category": "people",
- "lib": {
- "name": "RAISED FIST",
- "unified": "270A",
- "non_qualified": null,
- "docomo": "E693",
- "au": "EB83",
- "softbank": "E010",
- "google": "FEB93",
- "image": "270a.png",
- "sheet_x": 51,
- "sheet_y": 8,
- "short_name": "fist",
- "short_names": ["fist"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 376,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true,
- "skin_variations": {
- "1F3FB": {
- "unified": "270A-1F3FB",
- "non_qualified": null,
- "image": "270a-1f3fb.png",
- "sheet_x": 51,
- "sheet_y": 9,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FC": {
- "unified": "270A-1F3FC",
- "non_qualified": null,
- "image": "270a-1f3fc.png",
- "sheet_x": 51,
- "sheet_y": 10,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FD": {
- "unified": "270A-1F3FD",
- "non_qualified": null,
- "image": "270a-1f3fd.png",
- "sheet_x": 51,
- "sheet_y": 11,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FE": {
- "unified": "270A-1F3FE",
- "non_qualified": null,
- "image": "270a-1f3fe.png",
- "sheet_x": 51,
- "sheet_y": 12,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FF": {
- "unified": "270A-1F3FF",
- "non_qualified": null,
- "image": "270a-1f3ff.png",
- "sheet_x": 51,
- "sheet_y": 13,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- }
- }
- },
- "facepunch": {
- "char": "\ud83d\udc4a",
- "key": "facepunch",
- "keywords": ["facepunch", "FISTED HAND SIGN"],
- "category": "people",
- "lib": {
- "name": "FISTED HAND SIGN",
- "unified": "1F44A",
- "non_qualified": null,
- "docomo": "E6FD",
- "au": "E4F3",
- "softbank": "E00D",
- "google": "FEB96",
- "image": "1f44a.png",
- "sheet_x": 14,
- "sheet_y": 18,
- "short_name": "facepunch",
- "short_names": ["facepunch", "punch"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 377,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F44A-1F3FB",
- "non_qualified": null,
- "image": "1f44a-1f3fb.png",
- "sheet_x": 14,
- "sheet_y": 19,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FC": {
- "unified": "1F44A-1F3FC",
- "non_qualified": null,
- "image": "1f44a-1f3fc.png",
- "sheet_x": 14,
- "sheet_y": 20,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FD": {
- "unified": "1F44A-1F3FD",
- "non_qualified": null,
- "image": "1f44a-1f3fd.png",
- "sheet_x": 14,
- "sheet_y": 21,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FE": {
- "unified": "1F44A-1F3FE",
- "non_qualified": null,
- "image": "1f44a-1f3fe.png",
- "sheet_x": 14,
- "sheet_y": 22,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FF": {
- "unified": "1F44A-1F3FF",
- "non_qualified": null,
- "image": "1f44a-1f3ff.png",
- "sheet_x": 14,
- "sheet_y": 23,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- }
- }
- },
- "left-facing_fist": {
- "char": "\ud83e\udd1b",
- "key": "left-facing_fist",
- "keywords": ["left-facing_fist", "LEFT-FACING FIST"],
- "category": "people",
- "lib": {
- "name": "LEFT-FACING FIST",
- "unified": "1F91B",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f91b.png",
- "sheet_x": 38,
- "sheet_y": 10,
- "short_name": "left-facing_fist",
- "short_names": ["left-facing_fist"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 378,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F91B-1F3FB",
- "non_qualified": null,
- "image": "1f91b-1f3fb.png",
- "sheet_x": 38,
- "sheet_y": 11,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F91B-1F3FC",
- "non_qualified": null,
- "image": "1f91b-1f3fc.png",
- "sheet_x": 38,
- "sheet_y": 12,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F91B-1F3FD",
- "non_qualified": null,
- "image": "1f91b-1f3fd.png",
- "sheet_x": 38,
- "sheet_y": 13,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F91B-1F3FE",
- "non_qualified": null,
- "image": "1f91b-1f3fe.png",
- "sheet_x": 38,
- "sheet_y": 14,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F91B-1F3FF",
- "non_qualified": null,
- "image": "1f91b-1f3ff.png",
- "sheet_x": 38,
- "sheet_y": 15,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- }
- }
- },
- "right-facing_fist": {
- "char": "\ud83e\udd1c",
- "key": "right-facing_fist",
- "keywords": ["right-facing_fist", "RIGHT-FACING FIST"],
- "category": "people",
- "lib": {
- "name": "RIGHT-FACING FIST",
- "unified": "1F91C",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f91c.png",
- "sheet_x": 38,
- "sheet_y": 16,
- "short_name": "right-facing_fist",
- "short_names": ["right-facing_fist"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 379,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F91C-1F3FB",
- "non_qualified": null,
- "image": "1f91c-1f3fb.png",
- "sheet_x": 38,
- "sheet_y": 17,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F91C-1F3FC",
- "non_qualified": null,
- "image": "1f91c-1f3fc.png",
- "sheet_x": 38,
- "sheet_y": 18,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F91C-1F3FD",
- "non_qualified": null,
- "image": "1f91c-1f3fd.png",
- "sheet_x": 38,
- "sheet_y": 19,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F91C-1F3FE",
- "non_qualified": null,
- "image": "1f91c-1f3fe.png",
- "sheet_x": 38,
- "sheet_y": 20,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F91C-1F3FF",
- "non_qualified": null,
- "image": "1f91c-1f3ff.png",
- "sheet_x": 38,
- "sheet_y": 21,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- }
- }
- },
- "raised_back_of_hand": {
- "char": "\ud83e\udd1a",
- "key": "raised_back_of_hand",
- "keywords": ["raised_back_of_hand", "RAISED BACK OF HAND"],
- "category": "people",
- "lib": {
- "name": "RAISED BACK OF HAND",
- "unified": "1F91A",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f91a.png",
- "sheet_x": 38,
- "sheet_y": 4,
- "short_name": "raised_back_of_hand",
- "short_names": ["raised_back_of_hand"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 380,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F91A-1F3FB",
- "non_qualified": null,
- "image": "1f91a-1f3fb.png",
- "sheet_x": 38,
- "sheet_y": 5,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F91A-1F3FC",
- "non_qualified": null,
- "image": "1f91a-1f3fc.png",
- "sheet_x": 38,
- "sheet_y": 6,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F91A-1F3FD",
- "non_qualified": null,
- "image": "1f91a-1f3fd.png",
- "sheet_x": 38,
- "sheet_y": 7,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F91A-1F3FE",
- "non_qualified": null,
- "image": "1f91a-1f3fe.png",
- "sheet_x": 38,
- "sheet_y": 8,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F91A-1F3FF",
- "non_qualified": null,
- "image": "1f91a-1f3ff.png",
- "sheet_x": 38,
- "sheet_y": 9,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- }
- }
- },
- "wave": {
- "char": "\ud83d\udc4b",
- "key": "wave",
- "keywords": ["wave", "WAVING HAND SIGN"],
- "category": "people",
- "lib": {
- "name": "WAVING HAND SIGN",
- "unified": "1F44B",
- "non_qualified": null,
- "docomo": "E695",
- "au": "EAD6",
- "softbank": "E41E",
- "google": "FEB9D",
- "image": "1f44b.png",
- "sheet_x": 14,
- "sheet_y": 24,
- "short_name": "wave",
- "short_names": ["wave"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 381,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F44B-1F3FB",
- "non_qualified": null,
- "image": "1f44b-1f3fb.png",
- "sheet_x": 14,
- "sheet_y": 25,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FC": {
- "unified": "1F44B-1F3FC",
- "non_qualified": null,
- "image": "1f44b-1f3fc.png",
- "sheet_x": 14,
- "sheet_y": 26,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FD": {
- "unified": "1F44B-1F3FD",
- "non_qualified": null,
- "image": "1f44b-1f3fd.png",
- "sheet_x": 14,
- "sheet_y": 27,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FE": {
- "unified": "1F44B-1F3FE",
- "non_qualified": null,
- "image": "1f44b-1f3fe.png",
- "sheet_x": 14,
- "sheet_y": 28,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FF": {
- "unified": "1F44B-1F3FF",
- "non_qualified": null,
- "image": "1f44b-1f3ff.png",
- "sheet_x": 14,
- "sheet_y": 29,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- }
- }
- },
- "i_love_you_hand_sign": {
- "char": "\ud83e\udd1f",
- "key": "i_love_you_hand_sign",
- "keywords": ["i_love_you_hand_sign", "I LOVE YOU HAND SIGN"],
- "category": "people",
- "lib": {
- "name": "I LOVE YOU HAND SIGN",
- "unified": "1F91F",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f91f.png",
- "sheet_x": 38,
- "sheet_y": 29,
- "short_name": "i_love_you_hand_sign",
- "short_names": ["i_love_you_hand_sign"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 382,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F91F-1F3FB",
- "non_qualified": null,
- "image": "1f91f-1f3fb.png",
- "sheet_x": 38,
- "sheet_y": 30,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F91F-1F3FC",
- "non_qualified": null,
- "image": "1f91f-1f3fc.png",
- "sheet_x": 38,
- "sheet_y": 31,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F91F-1F3FD",
- "non_qualified": null,
- "image": "1f91f-1f3fd.png",
- "sheet_x": 38,
- "sheet_y": 32,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F91F-1F3FE",
- "non_qualified": null,
- "image": "1f91f-1f3fe.png",
- "sheet_x": 38,
- "sheet_y": 33,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F91F-1F3FF",
- "non_qualified": null,
- "image": "1f91f-1f3ff.png",
- "sheet_x": 38,
- "sheet_y": 34,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- }
- }
- },
- "writing_hand": {
- "char": "\u270d\ufe0f",
- "key": "writing_hand",
- "keywords": ["writing_hand", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "270D-FE0F",
- "non_qualified": "270D",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "270d-fe0f.png",
- "sheet_x": 51,
- "sheet_y": 26,
- "short_name": "writing_hand",
- "short_names": ["writing_hand"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 383,
- "added_in": "1.1",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "270D-1F3FB",
- "non_qualified": null,
- "image": "270d-1f3fb.png",
- "sheet_x": 51,
- "sheet_y": 27,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "270D-1F3FC",
- "non_qualified": null,
- "image": "270d-1f3fc.png",
- "sheet_x": 51,
- "sheet_y": 28,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "270D-1F3FD",
- "non_qualified": null,
- "image": "270d-1f3fd.png",
- "sheet_x": 51,
- "sheet_y": 29,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "270D-1F3FE",
- "non_qualified": null,
- "image": "270d-1f3fe.png",
- "sheet_x": 51,
- "sheet_y": 30,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "270D-1F3FF",
- "non_qualified": null,
- "image": "270d-1f3ff.png",
- "sheet_x": 51,
- "sheet_y": 31,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- }
- }
- },
- "clap": {
- "char": "\ud83d\udc4f",
- "key": "clap",
- "keywords": ["clap", "CLAPPING HANDS SIGN"],
- "category": "people",
- "lib": {
- "name": "CLAPPING HANDS SIGN",
- "unified": "1F44F",
- "non_qualified": null,
- "docomo": null,
- "au": "EAD3",
- "softbank": "E41F",
- "google": "FEB9E",
- "image": "1f44f.png",
- "sheet_x": 14,
- "sheet_y": 48,
- "short_name": "clap",
- "short_names": ["clap"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 384,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F44F-1F3FB",
- "non_qualified": null,
- "image": "1f44f-1f3fb.png",
- "sheet_x": 14,
- "sheet_y": 49,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FC": {
- "unified": "1F44F-1F3FC",
- "non_qualified": null,
- "image": "1f44f-1f3fc.png",
- "sheet_x": 14,
- "sheet_y": 50,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FD": {
- "unified": "1F44F-1F3FD",
- "non_qualified": null,
- "image": "1f44f-1f3fd.png",
- "sheet_x": 14,
- "sheet_y": 51,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FE": {
- "unified": "1F44F-1F3FE",
- "non_qualified": null,
- "image": "1f44f-1f3fe.png",
- "sheet_x": 14,
- "sheet_y": 52,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FF": {
- "unified": "1F44F-1F3FF",
- "non_qualified": null,
- "image": "1f44f-1f3ff.png",
- "sheet_x": 15,
- "sheet_y": 0,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- }
- }
- },
- "open_hands": {
- "char": "\ud83d\udc50",
- "key": "open_hands",
- "keywords": ["open_hands", "OPEN HANDS SIGN"],
- "category": "people",
- "lib": {
- "name": "OPEN HANDS SIGN",
- "unified": "1F450",
- "non_qualified": null,
- "docomo": "E695",
- "au": "EAD6",
- "softbank": "E422",
- "google": "FEBA1",
- "image": "1f450.png",
- "sheet_x": 15,
- "sheet_y": 1,
- "short_name": "open_hands",
- "short_names": ["open_hands"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 385,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F450-1F3FB",
- "non_qualified": null,
- "image": "1f450-1f3fb.png",
- "sheet_x": 15,
- "sheet_y": 2,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FC": {
- "unified": "1F450-1F3FC",
- "non_qualified": null,
- "image": "1f450-1f3fc.png",
- "sheet_x": 15,
- "sheet_y": 3,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FD": {
- "unified": "1F450-1F3FD",
- "non_qualified": null,
- "image": "1f450-1f3fd.png",
- "sheet_x": 15,
- "sheet_y": 4,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FE": {
- "unified": "1F450-1F3FE",
- "non_qualified": null,
- "image": "1f450-1f3fe.png",
- "sheet_x": 15,
- "sheet_y": 5,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FF": {
- "unified": "1F450-1F3FF",
- "non_qualified": null,
- "image": "1f450-1f3ff.png",
- "sheet_x": 15,
- "sheet_y": 6,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- }
- }
- },
- "raised_hands": {
- "char": "\ud83d\ude4c",
- "key": "raised_hands",
- "keywords": ["raised_hands", "PERSON RAISING BOTH HANDS IN CELEBRATION"],
- "category": "people",
- "lib": {
- "name": "PERSON RAISING BOTH HANDS IN CELEBRATION",
- "unified": "1F64C",
- "non_qualified": null,
- "docomo": null,
- "au": "EB86",
- "softbank": "E427",
- "google": "FE358",
- "image": "1f64c.png",
- "sheet_x": 33,
- "sheet_y": 28,
- "short_name": "raised_hands",
- "short_names": ["raised_hands"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 386,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F64C-1F3FB",
- "non_qualified": null,
- "image": "1f64c-1f3fb.png",
- "sheet_x": 33,
- "sheet_y": 29,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FC": {
- "unified": "1F64C-1F3FC",
- "non_qualified": null,
- "image": "1f64c-1f3fc.png",
- "sheet_x": 33,
- "sheet_y": 30,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FD": {
- "unified": "1F64C-1F3FD",
- "non_qualified": null,
- "image": "1f64c-1f3fd.png",
- "sheet_x": 33,
- "sheet_y": 31,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FE": {
- "unified": "1F64C-1F3FE",
- "non_qualified": null,
- "image": "1f64c-1f3fe.png",
- "sheet_x": 33,
- "sheet_y": 32,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FF": {
- "unified": "1F64C-1F3FF",
- "non_qualified": null,
- "image": "1f64c-1f3ff.png",
- "sheet_x": 33,
- "sheet_y": 33,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- }
- }
- },
- "palms_up_together": {
- "char": "\ud83e\udd32",
- "key": "palms_up_together",
- "keywords": ["palms_up_together", "PALMS UP TOGETHER"],
- "category": "people",
- "lib": {
- "name": "PALMS UP TOGETHER",
- "unified": "1F932",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f932.png",
- "sheet_x": 39,
- "sheet_y": 27,
- "short_name": "palms_up_together",
- "short_names": ["palms_up_together"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 387,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F932-1F3FB",
- "non_qualified": null,
- "image": "1f932-1f3fb.png",
- "sheet_x": 39,
- "sheet_y": 28,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F932-1F3FC",
- "non_qualified": null,
- "image": "1f932-1f3fc.png",
- "sheet_x": 39,
- "sheet_y": 29,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F932-1F3FD",
- "non_qualified": null,
- "image": "1f932-1f3fd.png",
- "sheet_x": 39,
- "sheet_y": 30,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F932-1F3FE",
- "non_qualified": null,
- "image": "1f932-1f3fe.png",
- "sheet_x": 39,
- "sheet_y": 31,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F932-1F3FF",
- "non_qualified": null,
- "image": "1f932-1f3ff.png",
- "sheet_x": 39,
- "sheet_y": 32,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- }
- }
- },
- "pray": {
- "char": "\ud83d\ude4f",
- "key": "pray",
- "keywords": ["pray", "PERSON WITH FOLDED HANDS"],
- "category": "people",
- "lib": {
- "name": "PERSON WITH FOLDED HANDS",
- "unified": "1F64F",
- "non_qualified": null,
- "docomo": null,
- "au": "EAD2",
- "softbank": "E41D",
- "google": "FE35B",
- "image": "1f64f.png",
- "sheet_x": 34,
- "sheet_y": 17,
- "short_name": "pray",
- "short_names": ["pray"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 388,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F64F-1F3FB",
- "non_qualified": null,
- "image": "1f64f-1f3fb.png",
- "sheet_x": 34,
- "sheet_y": 18,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FC": {
- "unified": "1F64F-1F3FC",
- "non_qualified": null,
- "image": "1f64f-1f3fc.png",
- "sheet_x": 34,
- "sheet_y": 19,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FD": {
- "unified": "1F64F-1F3FD",
- "non_qualified": null,
- "image": "1f64f-1f3fd.png",
- "sheet_x": 34,
- "sheet_y": 20,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FE": {
- "unified": "1F64F-1F3FE",
- "non_qualified": null,
- "image": "1f64f-1f3fe.png",
- "sheet_x": 34,
- "sheet_y": 21,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FF": {
- "unified": "1F64F-1F3FF",
- "non_qualified": null,
- "image": "1f64f-1f3ff.png",
- "sheet_x": 34,
- "sheet_y": 22,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- }
- }
- },
- "handshake": {
- "char": "\ud83e\udd1d",
- "key": "handshake",
- "keywords": ["handshake", "HANDSHAKE"],
- "category": "people",
- "lib": {
- "name": "HANDSHAKE",
- "unified": "1F91D",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f91d.png",
- "sheet_x": 38,
- "sheet_y": 22,
- "short_name": "handshake",
- "short_names": ["handshake"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 389,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "nail_care": {
- "char": "\ud83d\udc85",
- "key": "nail_care",
- "keywords": ["nail_care", "NAIL POLISH"],
- "category": "people",
- "lib": {
- "name": "NAIL POLISH",
- "unified": "1F485",
- "non_qualified": null,
- "docomo": null,
- "au": "EAA0",
- "softbank": "E31D",
- "google": "FE196",
- "image": "1f485.png",
- "sheet_x": 24,
- "sheet_y": 17,
- "short_name": "nail_care",
- "short_names": ["nail_care"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 390,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F485-1F3FB",
- "non_qualified": null,
- "image": "1f485-1f3fb.png",
- "sheet_x": 24,
- "sheet_y": 18,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FC": {
- "unified": "1F485-1F3FC",
- "non_qualified": null,
- "image": "1f485-1f3fc.png",
- "sheet_x": 24,
- "sheet_y": 19,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FD": {
- "unified": "1F485-1F3FD",
- "non_qualified": null,
- "image": "1f485-1f3fd.png",
- "sheet_x": 24,
- "sheet_y": 20,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FE": {
- "unified": "1F485-1F3FE",
- "non_qualified": null,
- "image": "1f485-1f3fe.png",
- "sheet_x": 24,
- "sheet_y": 21,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FF": {
- "unified": "1F485-1F3FF",
- "non_qualified": null,
- "image": "1f485-1f3ff.png",
- "sheet_x": 24,
- "sheet_y": 22,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- }
- }
- },
- "ear": {
- "char": "\ud83d\udc42",
- "key": "ear",
- "keywords": ["ear", "EAR"],
- "category": "people",
- "lib": {
- "name": "EAR",
- "unified": "1F442",
- "non_qualified": null,
- "docomo": "E692",
- "au": "E5A5",
- "softbank": "E41B",
- "google": "FE191",
- "image": "1f442.png",
- "sheet_x": 13,
- "sheet_y": 33,
- "short_name": "ear",
- "short_names": ["ear"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 391,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F442-1F3FB",
- "non_qualified": null,
- "image": "1f442-1f3fb.png",
- "sheet_x": 13,
- "sheet_y": 34,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FC": {
- "unified": "1F442-1F3FC",
- "non_qualified": null,
- "image": "1f442-1f3fc.png",
- "sheet_x": 13,
- "sheet_y": 35,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FD": {
- "unified": "1F442-1F3FD",
- "non_qualified": null,
- "image": "1f442-1f3fd.png",
- "sheet_x": 13,
- "sheet_y": 36,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FE": {
- "unified": "1F442-1F3FE",
- "non_qualified": null,
- "image": "1f442-1f3fe.png",
- "sheet_x": 13,
- "sheet_y": 37,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FF": {
- "unified": "1F442-1F3FF",
- "non_qualified": null,
- "image": "1f442-1f3ff.png",
- "sheet_x": 13,
- "sheet_y": 38,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- }
- }
- },
- "nose": {
- "char": "\ud83d\udc43",
- "key": "nose",
- "keywords": ["nose", "NOSE"],
- "category": "people",
- "lib": {
- "name": "NOSE",
- "unified": "1F443",
- "non_qualified": null,
- "docomo": null,
- "au": "EAD0",
- "softbank": "E41A",
- "google": "FE192",
- "image": "1f443.png",
- "sheet_x": 13,
- "sheet_y": 39,
- "short_name": "nose",
- "short_names": ["nose"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 392,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F443-1F3FB",
- "non_qualified": null,
- "image": "1f443-1f3fb.png",
- "sheet_x": 13,
- "sheet_y": 40,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FC": {
- "unified": "1F443-1F3FC",
- "non_qualified": null,
- "image": "1f443-1f3fc.png",
- "sheet_x": 13,
- "sheet_y": 41,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FD": {
- "unified": "1F443-1F3FD",
- "non_qualified": null,
- "image": "1f443-1f3fd.png",
- "sheet_x": 13,
- "sheet_y": 42,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FE": {
- "unified": "1F443-1F3FE",
- "non_qualified": null,
- "image": "1f443-1f3fe.png",
- "sheet_x": 13,
- "sheet_y": 43,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FF": {
- "unified": "1F443-1F3FF",
- "non_qualified": null,
- "image": "1f443-1f3ff.png",
- "sheet_x": 13,
- "sheet_y": 44,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- }
- }
- },
- "footprints": {
- "char": "\ud83d\udc63",
- "key": "footprints",
- "keywords": ["footprints", "FOOTPRINTS"],
- "category": "people",
- "lib": {
- "name": "FOOTPRINTS",
- "unified": "1F463",
- "non_qualified": null,
- "docomo": "E698",
- "au": "EB2A",
- "softbank": "E536",
- "google": "FE553",
- "image": "1f463.png",
- "sheet_x": 15,
- "sheet_y": 25,
- "short_name": "footprints",
- "short_names": ["footprints"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 393,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "eyes": {
- "char": "\ud83d\udc40",
- "key": "eyes",
- "keywords": ["eyes", "EYES"],
- "category": "people",
- "lib": {
- "name": "EYES",
- "unified": "1F440",
- "non_qualified": null,
- "docomo": "E691",
- "au": "E5A4",
- "softbank": "E419",
- "google": "FE190",
- "image": "1f440.png",
- "sheet_x": 13,
- "sheet_y": 30,
- "short_name": "eyes",
- "short_names": ["eyes"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 394,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "eye": {
- "char": "\ud83d\udc41\ufe0f",
- "key": "eye",
- "keywords": ["eye", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F441-FE0F",
- "non_qualified": "1F441",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f441-fe0f.png",
- "sheet_x": 13,
- "sheet_y": 32,
- "short_name": "eye",
- "short_names": ["eye"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 395,
- "added_in": "7.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "eye-in-speech-bubble": {
- "char": "\ud83d\udc41\ufe0f\u200d\ud83d\udde8\ufe0f",
- "key": "eye-in-speech-bubble",
- "keywords": ["eye-in-speech-bubble", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F441-FE0F-200D-1F5E8-FE0F",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f441-fe0f-200d-1f5e8-fe0f.png",
- "sheet_x": 13,
- "sheet_y": 31,
- "short_name": "eye-in-speech-bubble",
- "short_names": ["eye-in-speech-bubble"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 396,
- "added_in": "7.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- },
- "brain": {
- "char": "\ud83e\udde0",
- "key": "brain",
- "keywords": ["brain", "BRAIN"],
- "category": "people",
- "lib": {
- "name": "BRAIN",
- "unified": "1F9E0",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f9e0.png",
- "sheet_x": 47,
- "sheet_y": 41,
- "short_name": "brain",
- "short_names": ["brain"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 397,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "bone": {
- "char": "\ud83e\uddb4",
- "key": "bone",
- "keywords": ["bone", "BONE"],
- "category": "people",
- "lib": {
- "name": "BONE",
- "unified": "1F9B4",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f9b4.png",
- "sheet_x": 43,
- "sheet_y": 31,
- "short_name": "bone",
- "short_names": ["bone"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 398,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- },
- "tooth": {
- "char": "\ud83e\uddb7",
- "key": "tooth",
- "keywords": ["tooth", "TOOTH"],
- "category": "people",
- "lib": {
- "name": "TOOTH",
- "unified": "1F9B7",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f9b7.png",
- "sheet_x": 43,
- "sheet_y": 44,
- "short_name": "tooth",
- "short_names": ["tooth"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 399,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- },
- "tongue": {
- "char": "\ud83d\udc45",
- "key": "tongue",
- "keywords": ["tongue", "TONGUE"],
- "category": "people",
- "lib": {
- "name": "TONGUE",
- "unified": "1F445",
- "non_qualified": null,
- "docomo": "E728",
- "au": "EB47",
- "softbank": null,
- "google": "FE194",
- "image": "1f445.png",
- "sheet_x": 13,
- "sheet_y": 46,
- "short_name": "tongue",
- "short_names": ["tongue"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 400,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "lips": {
- "char": "\ud83d\udc44",
- "key": "lips",
- "keywords": ["lips", "MOUTH"],
- "category": "people",
- "lib": {
- "name": "MOUTH",
- "unified": "1F444",
- "non_qualified": null,
- "docomo": "E6F9",
- "au": "EAD1",
- "softbank": "E41C",
- "google": "FE193",
- "image": "1f444.png",
- "sheet_x": 13,
- "sheet_y": 45,
- "short_name": "lips",
- "short_names": ["lips"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 401,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "kiss": {
- "char": "\ud83d\udc8b",
- "key": "kiss",
- "keywords": ["kiss", "KISS MARK"],
- "category": "people",
- "lib": {
- "name": "KISS MARK",
- "unified": "1F48B",
- "non_qualified": null,
- "docomo": "E6F9",
- "au": "E4EB",
- "softbank": "E003",
- "google": "FE823",
- "image": "1f48b.png",
- "sheet_x": 25,
- "sheet_y": 9,
- "short_name": "kiss",
- "short_names": ["kiss"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 402,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "cupid": {
- "char": "\ud83d\udc98",
- "key": "cupid",
- "keywords": ["cupid", "HEART WITH ARROW"],
- "category": "people",
- "lib": {
- "name": "HEART WITH ARROW",
- "unified": "1F498",
- "non_qualified": null,
- "docomo": "E6EC",
- "au": "E4EA",
- "softbank": "E329",
- "google": "FEB12",
- "image": "1f498.png",
- "sheet_x": 25,
- "sheet_y": 22,
- "short_name": "cupid",
- "short_names": ["cupid"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 403,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "heart": {
- "char": "\u2764\ufe0f",
- "key": "heart",
- "keywords": ["heart", "HEAVY BLACK HEART"],
- "category": "people",
- "lib": {
- "name": "HEAVY BLACK HEART",
- "unified": "2764-FE0F",
- "non_qualified": "2764",
- "docomo": "E6EC",
- "au": "E595",
- "softbank": "E022",
- "google": "FEB0C",
- "image": "2764-fe0f.png",
- "sheet_x": 51,
- "sheet_y": 50,
- "short_name": "heart",
- "short_names": ["heart"],
- "text": "<3",
- "texts": ["<3"],
- "category": "Smileys & People",
- "sort_order": 404,
- "added_in": "1.1",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "heartbeat": {
- "char": "\ud83d\udc93",
- "key": "heartbeat",
- "keywords": ["heartbeat", "BEATING HEART"],
- "category": "people",
- "lib": {
- "name": "BEATING HEART",
- "unified": "1F493",
- "non_qualified": null,
- "docomo": "E6ED",
- "au": "EB75",
- "softbank": "E327",
- "google": "FEB0D",
- "image": "1f493.png",
- "sheet_x": 25,
- "sheet_y": 17,
- "short_name": "heartbeat",
- "short_names": ["heartbeat"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 405,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "broken_heart": {
- "char": "\ud83d\udc94",
- "key": "broken_heart",
- "keywords": ["broken_heart", "BROKEN HEART"],
- "category": "people",
- "lib": {
- "name": "BROKEN HEART",
- "unified": "1F494",
- "non_qualified": null,
- "docomo": "E6EE",
- "au": "E477",
- "softbank": "E023",
- "google": "FEB0E",
- "image": "1f494.png",
- "sheet_x": 25,
- "sheet_y": 18,
- "short_name": "broken_heart",
- "short_names": ["broken_heart"],
- "text": "3",
- "texts": ["3"],
- "category": "Smileys & People",
- "sort_order": 406,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "two_hearts": {
- "char": "\ud83d\udc95",
- "key": "two_hearts",
- "keywords": ["two_hearts", "TWO HEARTS"],
- "category": "people",
- "lib": {
- "name": "TWO HEARTS",
- "unified": "1F495",
- "non_qualified": null,
- "docomo": "E6EF",
- "au": "E478",
- "softbank": null,
- "google": "FEB0F",
- "image": "1f495.png",
- "sheet_x": 25,
- "sheet_y": 19,
- "short_name": "two_hearts",
- "short_names": ["two_hearts"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 407,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "sparkling_heart": {
- "char": "\ud83d\udc96",
- "key": "sparkling_heart",
- "keywords": ["sparkling_heart", "SPARKLING HEART"],
- "category": "people",
- "lib": {
- "name": "SPARKLING HEART",
- "unified": "1F496",
- "non_qualified": null,
- "docomo": "E6EC",
- "au": "EAA6",
- "softbank": null,
- "google": "FEB10",
- "image": "1f496.png",
- "sheet_x": 25,
- "sheet_y": 20,
- "short_name": "sparkling_heart",
- "short_names": ["sparkling_heart"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 408,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "heartpulse": {
- "char": "\ud83d\udc97",
- "key": "heartpulse",
- "keywords": ["heartpulse", "GROWING HEART"],
- "category": "people",
- "lib": {
- "name": "GROWING HEART",
- "unified": "1F497",
- "non_qualified": null,
- "docomo": "E6ED",
- "au": "EB75",
- "softbank": "E328",
- "google": "FEB11",
- "image": "1f497.png",
- "sheet_x": 25,
- "sheet_y": 21,
- "short_name": "heartpulse",
- "short_names": ["heartpulse"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 409,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "blue_heart": {
- "char": "\ud83d\udc99",
- "key": "blue_heart",
- "keywords": ["blue_heart", "BLUE HEART"],
- "category": "people",
- "lib": {
- "name": "BLUE HEART",
- "unified": "1F499",
- "non_qualified": null,
- "docomo": "E6EC",
- "au": "EAA7",
- "softbank": "E32A",
- "google": "FEB13",
- "image": "1f499.png",
- "sheet_x": 25,
- "sheet_y": 23,
- "short_name": "blue_heart",
- "short_names": ["blue_heart"],
- "text": "<3",
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 410,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "green_heart": {
- "char": "\ud83d\udc9a",
- "key": "green_heart",
- "keywords": ["green_heart", "GREEN HEART"],
- "category": "people",
- "lib": {
- "name": "GREEN HEART",
- "unified": "1F49A",
- "non_qualified": null,
- "docomo": "E6EC",
- "au": "EAA8",
- "softbank": "E32B",
- "google": "FEB14",
- "image": "1f49a.png",
- "sheet_x": 25,
- "sheet_y": 24,
- "short_name": "green_heart",
- "short_names": ["green_heart"],
- "text": "<3",
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 411,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "yellow_heart": {
- "char": "\ud83d\udc9b",
- "key": "yellow_heart",
- "keywords": ["yellow_heart", "YELLOW HEART"],
- "category": "people",
- "lib": {
- "name": "YELLOW HEART",
- "unified": "1F49B",
- "non_qualified": null,
- "docomo": "E6EC",
- "au": "EAA9",
- "softbank": "E32C",
- "google": "FEB15",
- "image": "1f49b.png",
- "sheet_x": 25,
- "sheet_y": 25,
- "short_name": "yellow_heart",
- "short_names": ["yellow_heart"],
- "text": "<3",
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 412,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "orange_heart": {
- "char": "\ud83e\udde1",
- "key": "orange_heart",
- "keywords": ["orange_heart", "ORANGE HEART"],
- "category": "people",
- "lib": {
- "name": "ORANGE HEART",
- "unified": "1F9E1",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f9e1.png",
- "sheet_x": 47,
- "sheet_y": 42,
- "short_name": "orange_heart",
- "short_names": ["orange_heart"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 413,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "purple_heart": {
- "char": "\ud83d\udc9c",
- "key": "purple_heart",
- "keywords": ["purple_heart", "PURPLE HEART"],
- "category": "people",
- "lib": {
- "name": "PURPLE HEART",
- "unified": "1F49C",
- "non_qualified": null,
- "docomo": "E6EC",
- "au": "EAAA",
- "softbank": "E32D",
- "google": "FEB16",
- "image": "1f49c.png",
- "sheet_x": 25,
- "sheet_y": 26,
- "short_name": "purple_heart",
- "short_names": ["purple_heart"],
- "text": "<3",
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 414,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "black_heart": {
- "char": "\ud83d\udda4",
- "key": "black_heart",
- "keywords": ["black_heart", "BLACK HEART"],
- "category": "people",
- "lib": {
- "name": "BLACK HEART",
- "unified": "1F5A4",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f5a4.png",
- "sheet_x": 30,
- "sheet_y": 17,
- "short_name": "black_heart",
- "short_names": ["black_heart"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 415,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "gift_heart": {
- "char": "\ud83d\udc9d",
- "key": "gift_heart",
- "keywords": ["gift_heart", "HEART WITH RIBBON"],
- "category": "people",
- "lib": {
- "name": "HEART WITH RIBBON",
- "unified": "1F49D",
- "non_qualified": null,
- "docomo": "E6EC",
- "au": "EB54",
- "softbank": "E437",
- "google": "FEB17",
- "image": "1f49d.png",
- "sheet_x": 25,
- "sheet_y": 27,
- "short_name": "gift_heart",
- "short_names": ["gift_heart"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 416,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "revolving_hearts": {
- "char": "\ud83d\udc9e",
- "key": "revolving_hearts",
- "keywords": ["revolving_hearts", "REVOLVING HEARTS"],
- "category": "people",
- "lib": {
- "name": "REVOLVING HEARTS",
- "unified": "1F49E",
- "non_qualified": null,
- "docomo": "E6ED",
- "au": "E5AF",
- "softbank": null,
- "google": "FEB18",
- "image": "1f49e.png",
- "sheet_x": 25,
- "sheet_y": 28,
- "short_name": "revolving_hearts",
- "short_names": ["revolving_hearts"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 417,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "heart_decoration": {
- "char": "\ud83d\udc9f",
- "key": "heart_decoration",
- "keywords": ["heart_decoration", "HEART DECORATION"],
- "category": "people",
- "lib": {
- "name": "HEART DECORATION",
- "unified": "1F49F",
- "non_qualified": null,
- "docomo": "E6F8",
- "au": "E595",
- "softbank": "E204",
- "google": "FEB19",
- "image": "1f49f.png",
- "sheet_x": 25,
- "sheet_y": 29,
- "short_name": "heart_decoration",
- "short_names": ["heart_decoration"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 418,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "heavy_heart_exclamation_mark_ornament": {
- "char": "\u2763\ufe0f",
- "key": "heavy_heart_exclamation_mark_ornament",
- "keywords": ["heavy_heart_exclamation_mark_ornament", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "2763-FE0F",
- "non_qualified": "2763",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "2763-fe0f.png",
- "sheet_x": 51,
- "sheet_y": 49,
- "short_name": "heavy_heart_exclamation_mark_ornament",
- "short_names": ["heavy_heart_exclamation_mark_ornament"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 419,
- "added_in": "1.1",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "love_letter": {
- "char": "\ud83d\udc8c",
- "key": "love_letter",
- "keywords": ["love_letter", "LOVE LETTER"],
- "category": "people",
- "lib": {
- "name": "LOVE LETTER",
- "unified": "1F48C",
- "non_qualified": null,
- "docomo": "E717",
- "au": "EB78",
- "softbank": null,
- "google": "FE824",
- "image": "1f48c.png",
- "sheet_x": 25,
- "sheet_y": 10,
- "short_name": "love_letter",
- "short_names": ["love_letter"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 420,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "zzz": {
- "char": "\ud83d\udca4",
- "key": "zzz",
- "keywords": ["zzz", "SLEEPING SYMBOL"],
- "category": "people",
- "lib": {
- "name": "SLEEPING SYMBOL",
- "unified": "1F4A4",
- "non_qualified": null,
- "docomo": "E701",
- "au": "E475",
- "softbank": "E13C",
- "google": "FEB59",
- "image": "1f4a4.png",
- "sheet_x": 25,
- "sheet_y": 34,
- "short_name": "zzz",
- "short_names": ["zzz"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 421,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "anger": {
- "char": "\ud83d\udca2",
- "key": "anger",
- "keywords": ["anger", "ANGER SYMBOL"],
- "category": "people",
- "lib": {
- "name": "ANGER SYMBOL",
- "unified": "1F4A2",
- "non_qualified": null,
- "docomo": "E6FC",
- "au": "E4E5",
- "softbank": "E334",
- "google": "FEB57",
- "image": "1f4a2.png",
- "sheet_x": 25,
- "sheet_y": 32,
- "short_name": "anger",
- "short_names": ["anger"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 422,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "bomb": {
- "char": "\ud83d\udca3",
- "key": "bomb",
- "keywords": ["bomb", "BOMB"],
- "category": "people",
- "lib": {
- "name": "BOMB",
- "unified": "1F4A3",
- "non_qualified": null,
- "docomo": "E6FE",
- "au": "E47A",
- "softbank": "E311",
- "google": "FEB58",
- "image": "1f4a3.png",
- "sheet_x": 25,
- "sheet_y": 33,
- "short_name": "bomb",
- "short_names": ["bomb"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 423,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "boom": {
- "char": "\ud83d\udca5",
- "key": "boom",
- "keywords": ["boom", "COLLISION SYMBOL"],
- "category": "people",
- "lib": {
- "name": "COLLISION SYMBOL",
- "unified": "1F4A5",
- "non_qualified": null,
- "docomo": "E705",
- "au": "E5B0",
- "softbank": null,
- "google": "FEB5A",
- "image": "1f4a5.png",
- "sheet_x": 25,
- "sheet_y": 35,
- "short_name": "boom",
- "short_names": ["boom", "collision"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 424,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "sweat_drops": {
- "char": "\ud83d\udca6",
- "key": "sweat_drops",
- "keywords": ["sweat_drops", "SPLASHING SWEAT SYMBOL"],
- "category": "people",
- "lib": {
- "name": "SPLASHING SWEAT SYMBOL",
- "unified": "1F4A6",
- "non_qualified": null,
- "docomo": "E706",
- "au": "E5B1",
- "softbank": "E331",
- "google": "FEB5B",
- "image": "1f4a6.png",
- "sheet_x": 25,
- "sheet_y": 36,
- "short_name": "sweat_drops",
- "short_names": ["sweat_drops"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 425,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "dash": {
- "char": "\ud83d\udca8",
- "key": "dash",
- "keywords": ["dash", "DASH SYMBOL"],
- "category": "people",
- "lib": {
- "name": "DASH SYMBOL",
- "unified": "1F4A8",
- "non_qualified": null,
- "docomo": "E708",
- "au": "E4F4",
- "softbank": "E330",
- "google": "FEB5D",
- "image": "1f4a8.png",
- "sheet_x": 25,
- "sheet_y": 38,
- "short_name": "dash",
- "short_names": ["dash"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 426,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "dizzy": {
- "char": "\ud83d\udcab",
- "key": "dizzy",
- "keywords": ["dizzy", "DIZZY SYMBOL"],
- "category": "people",
- "lib": {
- "name": "DIZZY SYMBOL",
- "unified": "1F4AB",
- "non_qualified": null,
- "docomo": null,
- "au": "EB5C",
- "softbank": null,
- "google": "FEB5F",
- "image": "1f4ab.png",
- "sheet_x": 25,
- "sheet_y": 46,
- "short_name": "dizzy",
- "short_names": ["dizzy"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 427,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "speech_balloon": {
- "char": "\ud83d\udcac",
- "key": "speech_balloon",
- "keywords": ["speech_balloon", "SPEECH BALLOON"],
- "category": "people",
- "lib": {
- "name": "SPEECH BALLOON",
- "unified": "1F4AC",
- "non_qualified": null,
- "docomo": null,
- "au": "E4FD",
- "softbank": null,
- "google": "FE532",
- "image": "1f4ac.png",
- "sheet_x": 25,
- "sheet_y": 47,
- "short_name": "speech_balloon",
- "short_names": ["speech_balloon"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 428,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "left_speech_bubble": {
- "char": "\ud83d\udde8\ufe0f",
- "key": "left_speech_bubble",
- "keywords": ["left_speech_bubble", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F5E8-FE0F",
- "non_qualified": "1F5E8",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f5e8-fe0f.png",
- "sheet_x": 30,
- "sheet_y": 34,
- "short_name": "left_speech_bubble",
- "short_names": ["left_speech_bubble"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 429,
- "added_in": "7.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "right_anger_bubble": {
- "char": "\ud83d\uddef\ufe0f",
- "key": "right_anger_bubble",
- "keywords": ["right_anger_bubble", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F5EF-FE0F",
- "non_qualified": "1F5EF",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f5ef-fe0f.png",
- "sheet_x": 30,
- "sheet_y": 35,
- "short_name": "right_anger_bubble",
- "short_names": ["right_anger_bubble"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 430,
- "added_in": "7.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "thought_balloon": {
- "char": "\ud83d\udcad",
- "key": "thought_balloon",
- "keywords": ["thought_balloon", "THOUGHT BALLOON"],
- "category": "people",
- "lib": {
- "name": "THOUGHT BALLOON",
- "unified": "1F4AD",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f4ad.png",
- "sheet_x": 25,
- "sheet_y": 48,
- "short_name": "thought_balloon",
- "short_names": ["thought_balloon"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 431,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "hole": {
- "char": "\ud83d\udd73\ufe0f",
- "key": "hole",
- "keywords": ["hole", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F573-FE0F",
- "non_qualified": "1F573",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f573-fe0f.png",
- "sheet_x": 29,
- "sheet_y": 12,
- "short_name": "hole",
- "short_names": ["hole"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 432,
- "added_in": "7.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "eyeglasses": {
- "char": "\ud83d\udc53",
- "key": "eyeglasses",
- "keywords": ["eyeglasses", "EYEGLASSES"],
- "category": "people",
- "lib": {
- "name": "EYEGLASSES",
- "unified": "1F453",
- "non_qualified": null,
- "docomo": "E69A",
- "au": "E4FE",
- "softbank": null,
- "google": "FE4CE",
- "image": "1f453.png",
- "sheet_x": 15,
- "sheet_y": 9,
- "short_name": "eyeglasses",
- "short_names": ["eyeglasses"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 433,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "dark_sunglasses": {
- "char": "\ud83d\udd76\ufe0f",
- "key": "dark_sunglasses",
- "keywords": ["dark_sunglasses", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F576-FE0F",
- "non_qualified": "1F576",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f576-fe0f.png",
- "sheet_x": 29,
- "sheet_y": 37,
- "short_name": "dark_sunglasses",
- "short_names": ["dark_sunglasses"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 434,
- "added_in": "7.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "goggles": {
- "char": "\ud83e\udd7d",
- "key": "goggles",
- "keywords": ["goggles", "GOGGLES"],
- "category": "people",
- "lib": {
- "name": "GOGGLES",
- "unified": "1F97D",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f97d.png",
- "sheet_x": 42,
- "sheet_y": 46,
- "short_name": "goggles",
- "short_names": ["goggles"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 435,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- },
- "lab_coat": {
- "char": "\ud83e\udd7c",
- "key": "lab_coat",
- "keywords": ["lab_coat", "LAB COAT"],
- "category": "people",
- "lib": {
- "name": "LAB COAT",
- "unified": "1F97C",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f97c.png",
- "sheet_x": 42,
- "sheet_y": 45,
- "short_name": "lab_coat",
- "short_names": ["lab_coat"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 436,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- },
- "necktie": {
- "char": "\ud83d\udc54",
- "key": "necktie",
- "keywords": ["necktie", "NECKTIE"],
- "category": "people",
- "lib": {
- "name": "NECKTIE",
- "unified": "1F454",
- "non_qualified": null,
- "docomo": null,
- "au": "EA93",
- "softbank": "E302",
- "google": "FE4D3",
- "image": "1f454.png",
- "sheet_x": 15,
- "sheet_y": 10,
- "short_name": "necktie",
- "short_names": ["necktie"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 437,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "shirt": {
- "char": "\ud83d\udc55",
- "key": "shirt",
- "keywords": ["shirt", "T-SHIRT"],
- "category": "people",
- "lib": {
- "name": "T-SHIRT",
- "unified": "1F455",
- "non_qualified": null,
- "docomo": "E70E",
- "au": "E5B6",
- "softbank": "E006",
- "google": "FE4CF",
- "image": "1f455.png",
- "sheet_x": 15,
- "sheet_y": 11,
- "short_name": "shirt",
- "short_names": ["shirt", "tshirt"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 438,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "jeans": {
- "char": "\ud83d\udc56",
- "key": "jeans",
- "keywords": ["jeans", "JEANS"],
- "category": "people",
- "lib": {
- "name": "JEANS",
- "unified": "1F456",
- "non_qualified": null,
- "docomo": "E711",
- "au": "EB77",
- "softbank": null,
- "google": "FE4D0",
- "image": "1f456.png",
- "sheet_x": 15,
- "sheet_y": 12,
- "short_name": "jeans",
- "short_names": ["jeans"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 439,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "scarf": {
- "char": "\ud83e\udde3",
- "key": "scarf",
- "keywords": ["scarf", "SCARF"],
- "category": "people",
- "lib": {
- "name": "SCARF",
- "unified": "1F9E3",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f9e3.png",
- "sheet_x": 47,
- "sheet_y": 44,
- "short_name": "scarf",
- "short_names": ["scarf"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 440,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "gloves": {
- "char": "\ud83e\udde4",
- "key": "gloves",
- "keywords": ["gloves", "GLOVES"],
- "category": "people",
- "lib": {
- "name": "GLOVES",
- "unified": "1F9E4",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f9e4.png",
- "sheet_x": 47,
- "sheet_y": 45,
- "short_name": "gloves",
- "short_names": ["gloves"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 441,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "coat": {
- "char": "\ud83e\udde5",
- "key": "coat",
- "keywords": ["coat", "COAT"],
- "category": "people",
- "lib": {
- "name": "COAT",
- "unified": "1F9E5",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f9e5.png",
- "sheet_x": 47,
- "sheet_y": 46,
- "short_name": "coat",
- "short_names": ["coat"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 442,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "socks": {
- "char": "\ud83e\udde6",
- "key": "socks",
- "keywords": ["socks", "SOCKS"],
- "category": "people",
- "lib": {
- "name": "SOCKS",
- "unified": "1F9E6",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f9e6.png",
- "sheet_x": 47,
- "sheet_y": 47,
- "short_name": "socks",
- "short_names": ["socks"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 443,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "dress": {
- "char": "\ud83d\udc57",
- "key": "dress",
- "keywords": ["dress", "DRESS"],
- "category": "people",
- "lib": {
- "name": "DRESS",
- "unified": "1F457",
- "non_qualified": null,
- "docomo": null,
- "au": "EB6B",
- "softbank": "E319",
- "google": "FE4D5",
- "image": "1f457.png",
- "sheet_x": 15,
- "sheet_y": 13,
- "short_name": "dress",
- "short_names": ["dress"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 444,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "kimono": {
- "char": "\ud83d\udc58",
- "key": "kimono",
- "keywords": ["kimono", "KIMONO"],
- "category": "people",
- "lib": {
- "name": "KIMONO",
- "unified": "1F458",
- "non_qualified": null,
- "docomo": null,
- "au": "EAA3",
- "softbank": "E321",
- "google": "FE4D9",
- "image": "1f458.png",
- "sheet_x": 15,
- "sheet_y": 14,
- "short_name": "kimono",
- "short_names": ["kimono"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 445,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "bikini": {
- "char": "\ud83d\udc59",
- "key": "bikini",
- "keywords": ["bikini", "BIKINI"],
- "category": "people",
- "lib": {
- "name": "BIKINI",
- "unified": "1F459",
- "non_qualified": null,
- "docomo": null,
- "au": "EAA4",
- "softbank": "E322",
- "google": "FE4DA",
- "image": "1f459.png",
- "sheet_x": 15,
- "sheet_y": 15,
- "short_name": "bikini",
- "short_names": ["bikini"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 446,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "womans_clothes": {
- "char": "\ud83d\udc5a",
- "key": "womans_clothes",
- "keywords": ["womans_clothes", "WOMANS CLOTHES"],
- "category": "people",
- "lib": {
- "name": "WOMANS CLOTHES",
- "unified": "1F45A",
- "non_qualified": null,
- "docomo": "E70E",
- "au": "E50D",
- "softbank": null,
- "google": "FE4DB",
- "image": "1f45a.png",
- "sheet_x": 15,
- "sheet_y": 16,
- "short_name": "womans_clothes",
- "short_names": ["womans_clothes"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 447,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "purse": {
- "char": "\ud83d\udc5b",
- "key": "purse",
- "keywords": ["purse", "PURSE"],
- "category": "people",
- "lib": {
- "name": "PURSE",
- "unified": "1F45B",
- "non_qualified": null,
- "docomo": "E70F",
- "au": "E504",
- "softbank": null,
- "google": "FE4DC",
- "image": "1f45b.png",
- "sheet_x": 15,
- "sheet_y": 17,
- "short_name": "purse",
- "short_names": ["purse"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 448,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "handbag": {
- "char": "\ud83d\udc5c",
- "key": "handbag",
- "keywords": ["handbag", "HANDBAG"],
- "category": "people",
- "lib": {
- "name": "HANDBAG",
- "unified": "1F45C",
- "non_qualified": null,
- "docomo": "E682",
- "au": "E49C",
- "softbank": "E323",
- "google": "FE4F0",
- "image": "1f45c.png",
- "sheet_x": 15,
- "sheet_y": 18,
- "short_name": "handbag",
- "short_names": ["handbag"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 449,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "pouch": {
- "char": "\ud83d\udc5d",
- "key": "pouch",
- "keywords": ["pouch", "POUCH"],
- "category": "people",
- "lib": {
- "name": "POUCH",
- "unified": "1F45D",
- "non_qualified": null,
- "docomo": "E6AD",
- "au": null,
- "softbank": null,
- "google": "FE4F1",
- "image": "1f45d.png",
- "sheet_x": 15,
- "sheet_y": 19,
- "short_name": "pouch",
- "short_names": ["pouch"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 450,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "shopping_bags": {
- "char": "\ud83d\udecd\ufe0f",
- "key": "shopping_bags",
- "keywords": ["shopping_bags", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "1F6CD-FE0F",
- "non_qualified": "1F6CD",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f6cd-fe0f.png",
- "sheet_x": 37,
- "sheet_y": 14,
- "short_name": "shopping_bags",
- "short_names": ["shopping_bags"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 451,
- "added_in": "7.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "school_satchel": {
- "char": "\ud83c\udf92",
- "key": "school_satchel",
- "keywords": ["school_satchel", "SCHOOL SATCHEL"],
- "category": "people",
- "lib": {
- "name": "SCHOOL SATCHEL",
- "unified": "1F392",
- "non_qualified": null,
- "docomo": null,
- "au": "EAE6",
- "softbank": "E43A",
- "google": "FE51B",
- "image": "1f392.png",
- "sheet_x": 8,
- "sheet_y": 29,
- "short_name": "school_satchel",
- "short_names": ["school_satchel"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 452,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "mans_shoe": {
- "char": "\ud83d\udc5e",
- "key": "mans_shoe",
- "keywords": ["mans_shoe", "MANS SHOE"],
- "category": "people",
- "lib": {
- "name": "MANS SHOE",
- "unified": "1F45E",
- "non_qualified": null,
- "docomo": "E699",
- "au": "E5B7",
- "softbank": null,
- "google": "FE4CC",
- "image": "1f45e.png",
- "sheet_x": 15,
- "sheet_y": 20,
- "short_name": "mans_shoe",
- "short_names": ["mans_shoe", "shoe"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 453,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "athletic_shoe": {
- "char": "\ud83d\udc5f",
- "key": "athletic_shoe",
- "keywords": ["athletic_shoe", "ATHLETIC SHOE"],
- "category": "people",
- "lib": {
- "name": "ATHLETIC SHOE",
- "unified": "1F45F",
- "non_qualified": null,
- "docomo": "E699",
- "au": "EB2B",
- "softbank": "E007",
- "google": "FE4CD",
- "image": "1f45f.png",
- "sheet_x": 15,
- "sheet_y": 21,
- "short_name": "athletic_shoe",
- "short_names": ["athletic_shoe"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 454,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "hiking_boot": {
- "char": "\ud83e\udd7e",
- "key": "hiking_boot",
- "keywords": ["hiking_boot", "HIKING BOOT"],
- "category": "people",
- "lib": {
- "name": "HIKING BOOT",
- "unified": "1F97E",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f97e.png",
- "sheet_x": 42,
- "sheet_y": 47,
- "short_name": "hiking_boot",
- "short_names": ["hiking_boot"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 455,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- },
- "woman\u2019s_flat_shoe": {
- "char": "\ud83e\udd7f",
- "key": "woman\u2019s_flat_shoe",
- "keywords": ["woman\u2019s_flat_shoe", "FLAT SHOE"],
- "category": "people",
- "lib": {
- "name": "FLAT SHOE",
- "unified": "1F97F",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f97f.png",
- "sheet_x": 42,
- "sheet_y": 48,
- "short_name": "woman\u2019s_flat_shoe",
- "short_names": ["woman\u2019s_flat_shoe"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 456,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- },
- "high_heel": {
- "char": "\ud83d\udc60",
- "key": "high_heel",
- "keywords": ["high_heel", "HIGH-HEELED SHOE"],
- "category": "people",
- "lib": {
- "name": "HIGH-HEELED SHOE",
- "unified": "1F460",
- "non_qualified": null,
- "docomo": "E674",
- "au": "E51A",
- "softbank": "E13E",
- "google": "FE4D6",
- "image": "1f460.png",
- "sheet_x": 15,
- "sheet_y": 22,
- "short_name": "high_heel",
- "short_names": ["high_heel"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 457,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "sandal": {
- "char": "\ud83d\udc61",
- "key": "sandal",
- "keywords": ["sandal", "WOMANS SANDAL"],
- "category": "people",
- "lib": {
- "name": "WOMANS SANDAL",
- "unified": "1F461",
- "non_qualified": null,
- "docomo": "E674",
- "au": "E51A",
- "softbank": "E31A",
- "google": "FE4D7",
- "image": "1f461.png",
- "sheet_x": 15,
- "sheet_y": 23,
- "short_name": "sandal",
- "short_names": ["sandal"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 458,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "boot": {
- "char": "\ud83d\udc62",
- "key": "boot",
- "keywords": ["boot", "WOMANS BOOTS"],
- "category": "people",
- "lib": {
- "name": "WOMANS BOOTS",
- "unified": "1F462",
- "non_qualified": null,
- "docomo": null,
- "au": "EA9F",
- "softbank": "E31B",
- "google": "FE4D8",
- "image": "1f462.png",
- "sheet_x": 15,
- "sheet_y": 24,
- "short_name": "boot",
- "short_names": ["boot"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 459,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "crown": {
- "char": "\ud83d\udc51",
- "key": "crown",
- "keywords": ["crown", "CROWN"],
- "category": "people",
- "lib": {
- "name": "CROWN",
- "unified": "1F451",
- "non_qualified": null,
- "docomo": "E71A",
- "au": "E5C9",
- "softbank": "E10E",
- "google": "FE4D1",
- "image": "1f451.png",
- "sheet_x": 15,
- "sheet_y": 7,
- "short_name": "crown",
- "short_names": ["crown"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 460,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "womans_hat": {
- "char": "\ud83d\udc52",
- "key": "womans_hat",
- "keywords": ["womans_hat", "WOMANS HAT"],
- "category": "people",
- "lib": {
- "name": "WOMANS HAT",
- "unified": "1F452",
- "non_qualified": null,
- "docomo": null,
- "au": "EA9E",
- "softbank": "E318",
- "google": "FE4D4",
- "image": "1f452.png",
- "sheet_x": 15,
- "sheet_y": 8,
- "short_name": "womans_hat",
- "short_names": ["womans_hat"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 461,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "tophat": {
- "char": "\ud83c\udfa9",
- "key": "tophat",
- "keywords": ["tophat", "TOP HAT"],
- "category": "people",
- "lib": {
- "name": "TOP HAT",
- "unified": "1F3A9",
- "non_qualified": null,
- "docomo": "E67C",
- "au": "EAF5",
- "softbank": "E503",
- "google": "FE805",
- "image": "1f3a9.png",
- "sheet_x": 8,
- "sheet_y": 47,
- "short_name": "tophat",
- "short_names": ["tophat"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 462,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "mortar_board": {
- "char": "\ud83c\udf93",
- "key": "mortar_board",
- "keywords": ["mortar_board", "GRADUATION CAP"],
- "category": "people",
- "lib": {
- "name": "GRADUATION CAP",
- "unified": "1F393",
- "non_qualified": null,
- "docomo": null,
- "au": "EAE5",
- "softbank": "E439",
- "google": "FE51A",
- "image": "1f393.png",
- "sheet_x": 8,
- "sheet_y": 30,
- "short_name": "mortar_board",
- "short_names": ["mortar_board"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 463,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "billed_cap": {
- "char": "\ud83e\udde2",
- "key": "billed_cap",
- "keywords": ["billed_cap", "BILLED CAP"],
- "category": "people",
- "lib": {
- "name": "BILLED CAP",
- "unified": "1F9E2",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f9e2.png",
- "sheet_x": 47,
- "sheet_y": 43,
- "short_name": "billed_cap",
- "short_names": ["billed_cap"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 464,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "helmet_with_white_cross": {
- "char": "\u26d1\ufe0f",
- "key": "helmet_with_white_cross",
- "keywords": ["helmet_with_white_cross", ""],
- "category": "people",
- "lib": {
- "name": null,
- "unified": "26D1-FE0F",
- "non_qualified": "26D1",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "26d1-fe0f.png",
- "sheet_x": 50,
- "sheet_y": 24,
- "short_name": "helmet_with_white_cross",
- "short_names": ["helmet_with_white_cross"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 465,
- "added_in": "5.2",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "prayer_beads": {
- "char": "\ud83d\udcff",
- "key": "prayer_beads",
- "keywords": ["prayer_beads", "PRAYER BEADS"],
- "category": "people",
- "lib": {
- "name": "PRAYER BEADS",
- "unified": "1F4FF",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f4ff.png",
- "sheet_x": 27,
- "sheet_y": 23,
- "short_name": "prayer_beads",
- "short_names": ["prayer_beads"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 466,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- },
- "lipstick": {
- "char": "\ud83d\udc84",
- "key": "lipstick",
- "keywords": ["lipstick", "LIPSTICK"],
- "category": "people",
- "lib": {
- "name": "LIPSTICK",
- "unified": "1F484",
- "non_qualified": null,
- "docomo": "E710",
- "au": "E509",
- "softbank": "E31C",
- "google": "FE195",
- "image": "1f484.png",
- "sheet_x": 24,
- "sheet_y": 16,
- "short_name": "lipstick",
- "short_names": ["lipstick"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 467,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "ring": {
- "char": "\ud83d\udc8d",
- "key": "ring",
- "keywords": ["ring", "RING"],
- "category": "people",
- "lib": {
- "name": "RING",
- "unified": "1F48D",
- "non_qualified": null,
- "docomo": "E71B",
- "au": "E514",
- "softbank": "E034",
- "google": "FE825",
- "image": "1f48d.png",
- "sheet_x": 25,
- "sheet_y": 11,
- "short_name": "ring",
- "short_names": ["ring"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 468,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "gem": {
- "char": "\ud83d\udc8e",
- "key": "gem",
- "keywords": ["gem", "GEM STONE"],
- "category": "people",
- "lib": {
- "name": "GEM STONE",
- "unified": "1F48E",
- "non_qualified": null,
- "docomo": "E71B",
- "au": "E514",
- "softbank": "E035",
- "google": "FE826",
- "image": "1f48e.png",
- "sheet_x": 25,
- "sheet_y": 12,
- "short_name": "gem",
- "short_names": ["gem"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 469,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- },
- "man_superhero": {
- "char": "\ud83e\uddb8\u200d\ud83d\udc68",
- "key": "man_superhero",
- "keywords": ["man_superhero", ""],
- "lib": {
- "name": null,
- "unified": "1F9B8-200D-1F468",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f9b8-200d-1f468.png",
- "sheet_x": 43,
- "sheet_y": 45,
- "short_name": "man_superhero",
- "short_names": ["man_superhero"],
- "text": null,
- "texts": null,
- "category": null,
- "sort_order": null,
- "added_in": null,
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F9B8-1F3FB-200D-1F468",
- "non_qualified": null,
- "image": "1f9b8-1f3fb-200d-1f468.png",
- "sheet_x": 43,
- "sheet_y": 46,
- "added_in": null,
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F9B8-1F3FC-200D-1F468",
- "non_qualified": null,
- "image": "1f9b8-1f3fc-200d-1f468.png",
- "sheet_x": 43,
- "sheet_y": 47,
- "added_in": null,
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F9B8-1F3FD-200D-1F468",
- "non_qualified": null,
- "image": "1f9b8-1f3fd-200d-1f468.png",
- "sheet_x": 43,
- "sheet_y": 48,
- "added_in": null,
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F9B8-1F3FE-200D-1F468",
- "non_qualified": null,
- "image": "1f9b8-1f3fe-200d-1f468.png",
- "sheet_x": 43,
- "sheet_y": 49,
- "added_in": null,
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F9B8-1F3FF-200D-1F468",
- "non_qualified": null,
- "image": "1f9b8-1f3ff-200d-1f468.png",
- "sheet_x": 43,
- "sheet_y": 50,
- "added_in": null,
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- }
- }
- },
- "woman_superhero": {
- "char": "\ud83e\uddb8\u200d\ud83d\udc69",
- "key": "woman_superhero",
- "keywords": ["woman_superhero", ""],
- "lib": {
- "name": null,
- "unified": "1F9B8-200D-1F469",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f9b8-200d-1f469.png",
- "sheet_x": 43,
- "sheet_y": 51,
- "short_name": "woman_superhero",
- "short_names": ["woman_superhero"],
- "text": null,
- "texts": null,
- "category": null,
- "sort_order": null,
- "added_in": null,
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F9B8-1F3FB-200D-1F469",
- "non_qualified": null,
- "image": "1f9b8-1f3fb-200d-1f469.png",
- "sheet_x": 43,
- "sheet_y": 52,
- "added_in": null,
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F9B8-1F3FC-200D-1F469",
- "non_qualified": null,
- "image": "1f9b8-1f3fc-200d-1f469.png",
- "sheet_x": 44,
- "sheet_y": 0,
- "added_in": null,
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F9B8-1F3FD-200D-1F469",
- "non_qualified": null,
- "image": "1f9b8-1f3fd-200d-1f469.png",
- "sheet_x": 44,
- "sheet_y": 1,
- "added_in": null,
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F9B8-1F3FE-200D-1F469",
- "non_qualified": null,
- "image": "1f9b8-1f3fe-200d-1f469.png",
- "sheet_x": 44,
- "sheet_y": 2,
- "added_in": null,
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F9B8-1F3FF-200D-1F469",
- "non_qualified": null,
- "image": "1f9b8-1f3ff-200d-1f469.png",
- "sheet_x": 44,
- "sheet_y": 3,
- "added_in": null,
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- }
- }
- },
- "man_supervillain": {
- "char": "\ud83e\uddb9\u200d\ud83d\udc68",
- "key": "man_supervillain",
- "keywords": ["man_supervillain", ""],
- "lib": {
- "name": null,
- "unified": "1F9B9-200D-1F468",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f9b9-200d-1f468.png",
- "sheet_x": 44,
- "sheet_y": 4,
- "short_name": "man_supervillain",
- "short_names": ["man_supervillain"],
- "text": null,
- "texts": null,
- "category": null,
- "sort_order": null,
- "added_in": null,
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F9B9-1F3FB-200D-1F468",
- "non_qualified": null,
- "image": "1f9b9-1f3fb-200d-1f468.png",
- "sheet_x": 44,
- "sheet_y": 5,
- "added_in": null,
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F9B9-1F3FC-200D-1F468",
- "non_qualified": null,
- "image": "1f9b9-1f3fc-200d-1f468.png",
- "sheet_x": 44,
- "sheet_y": 6,
- "added_in": null,
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F9B9-1F3FD-200D-1F468",
- "non_qualified": null,
- "image": "1f9b9-1f3fd-200d-1f468.png",
- "sheet_x": 44,
- "sheet_y": 7,
- "added_in": null,
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F9B9-1F3FE-200D-1F468",
- "non_qualified": null,
- "image": "1f9b9-1f3fe-200d-1f468.png",
- "sheet_x": 44,
- "sheet_y": 8,
- "added_in": null,
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F9B9-1F3FF-200D-1F468",
- "non_qualified": null,
- "image": "1f9b9-1f3ff-200d-1f468.png",
- "sheet_x": 44,
- "sheet_y": 9,
- "added_in": null,
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- }
- }
- },
- "woman_supervillain": {
- "char": "\ud83e\uddb9\u200d\ud83d\udc69",
- "key": "woman_supervillain",
- "keywords": ["woman_supervillain", ""],
- "lib": {
- "name": null,
- "unified": "1F9B9-200D-1F469",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f9b9-200d-1f469.png",
- "sheet_x": 44,
- "sheet_y": 10,
- "short_name": "woman_supervillain",
- "short_names": ["woman_supervillain"],
- "text": null,
- "texts": null,
- "category": null,
- "sort_order": null,
- "added_in": null,
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F9B9-1F3FB-200D-1F469",
- "non_qualified": null,
- "image": "1f9b9-1f3fb-200d-1f469.png",
- "sheet_x": 44,
- "sheet_y": 11,
- "added_in": null,
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F9B9-1F3FC-200D-1F469",
- "non_qualified": null,
- "image": "1f9b9-1f3fc-200d-1f469.png",
- "sheet_x": 44,
- "sheet_y": 12,
- "added_in": null,
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F9B9-1F3FD-200D-1F469",
- "non_qualified": null,
- "image": "1f9b9-1f3fd-200d-1f469.png",
- "sheet_x": 44,
- "sheet_y": 13,
- "added_in": null,
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F9B9-1F3FE-200D-1F469",
- "non_qualified": null,
- "image": "1f9b9-1f3fe-200d-1f469.png",
- "sheet_x": 44,
- "sheet_y": 14,
- "added_in": null,
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F9B9-1F3FF-200D-1F469",
- "non_qualified": null,
- "image": "1f9b9-1f3ff-200d-1f469.png",
- "sheet_x": 44,
- "sheet_y": 15,
- "added_in": null,
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- }
- }
- }
- },
- "emojiArray": [{
- "keywords": ["numbers", "pass", "hundred", "century", "POINTS", "perfect", "quiz", "HUNDRED", "SYMBOLscore", "exam", "test", "100"],
- "emoji_key": "100"
- }, {
- "keywords": ["blue-square", "SYMBOL", "FOR", "NUMBERSnumbers", "1234", "INPUT"],
- "emoji_key": "1234"
- }, {
- "keywords": ["GLOBE", "EARTH", "world", "earth", "international", "EUROPE-AFRICAglobe", "africa", "earth_africa"],
- "emoji_key": "earth_africa"
- }, {
- "keywords": ["grapes", "wine", "food", "GRAPESfruit"],
- "emoji_key": "grapes"
- }, {
- "keywords": ["o", "jack_o_lantern", "creepy", "jack", "pumpkin", "fall", "lantern", "light", "JACK-O-LANTERNhalloween"],
- "emoji_key": "jack_o_lantern"
- }, {
- "keywords": ["gokart", "checkered", "finishline", "CHEQUERED", "flag", "race", "FLAGcontest", "checkered_flag"],
- "emoji_key": "checkered_flag"
- }, {
- "keywords": ["AUTOMATED", "MACHINEmoney", "TELLER", "cash", "bank", "sales", "atm", "blue-square", "payment"],
- "emoji_key": "atm"
- }, {
- "keywords": ["MODIFIER", "EMOJI", "FITZPATRICK", "skin-tone-2", "TYPE-1-2"],
- "emoji_key": "skin-tone-2"
- }, {
- "keywords": ["face", "MONKEY", "nature", "monkey", "circus", "monkey_face", "FACEanimal"],
- "emoji_key": "monkey_face"
- }, {
- "keywords": ["SPEAKER", "volume", "mute", "silence", "quiet", "CANCELLATION", "STROKEsound", "WITH"],
- "emoji_key": "mute"
- }, {
- "keywords": ["happy", "grinning", ":D", "GRINNING", "joy", "smile", "FACEface", "grin"],
- "emoji_key": "grinning"
- }, {
- "keywords": ["GLOBE", "earth_americas", "AMERICASglobe", "EARTH", "world", "earth", "international", "americas", "USA"],
- "emoji_key": "earth_americas"
- }, {
- "keywords": ["MELONfruit", "melon", "nature", "food"],
- "emoji_key": "melon"
- }, {
- "keywords": ["vacation", "christmas_tree", "TREEfestival", "xmas", "CHRISTMAS", "tree", "december", "celebration", "christmas"],
- "emoji_key": "christmas_tree"
- }, {
- "keywords": ["MODIFIER", "TYPE-3", "EMOJI", "FITZPATRICK", "skin-tone-3"],
- "emoji_key": "skin-tone-3"
- }, {
- "keywords": ["monkey", "circus", "MONKEYanimal", "nature", "banana"],
- "emoji_key": "monkey"
- }, {
- "keywords": ["volume", "speaker", "broadcast", "SPEAKERsound", "silence"],
- "emoji_key": "speaker"
- }, {
- "keywords": ["SMILING", "happy", "GRINNING", "FACE", "joy", "smile", "EYESface", "kawaii", "grin", "WITH"],
- "emoji_key": "grin"
- }, {
- "keywords": ["triangular_flag_on_post", "TRIANGULAR", "milestone", "post", "place", "on", "flag", "triangular", "FLAG", "ON", "POSTmark"],
- "emoji_key": "triangular_flag_on_post"
- }, {
- "keywords": ["LITTER", "IN", "sign", "SYMBOLblue-square", "place", "human", "in", "put", "info", "litter", "its", "PLACE", "PUT", "ITS", "put_litter_in_its_place"],
- "emoji_key": "put_litter_in_its_place"
- }, {
- "keywords": ["GLOBE", "ASIA-AUSTRALIAglobe", "earth_asia", "EARTH", "east", "world", "earth", "asia", "international"],
- "emoji_key": "earth_asia"
- }, {
- "keywords": ["WATERMELONfruit", "summer", "watermelon", "food", "picnic"],
- "emoji_key": "watermelon"
- }, {
- "keywords": ["congratulations", "FIREWORKSphoto", "festival", "fireworks", "carnival"],
- "emoji_key": "fireworks"
- }, {
- "keywords": ["CROSSED", "crossed_flags", "nation", "country", "FLAGSjapanese", "flags", "crossed", "border"],
- "emoji_key": "crossed_flags"
- }, {
- "keywords": ["MODIFIER", "skin-tone-4", "EMOJI", "FITZPATRICK", "TYPE-4"],
- "emoji_key": "skin-tone-4"
- }, {
- "keywords": ["SPEAKER", "WAVEvolume", "speaker", "ONE", "broadcast", "sound", "SOUND", "WITH"],
- "emoji_key": "sound"
- }, {
- "keywords": ["haha", "cry", "OF", "TEARS", "happy", "joy", "FACE", "happytears", "tears", "weep", "WITH", "JOYface"],
- "emoji_key": "joy"
- }, {
- "keywords": ["liquid", "POTABLE", "potable", "SYMBOLblue-square", "restroom", "WATER", "cleaning", "water", "faucet", "potable_water"],
- "emoji_key": "potable_water"
- }, {
- "keywords": ["GORILLAanimal", "circus", "gorilla", "nature"],
- "emoji_key": "gorilla"
- }, {
- "keywords": ["GLOBE", "MERIDIANSearth", "interweb", "world", "i18n", "meridians", "with", "international", "globe_with_meridians", "globe", "internet", "WITH"],
- "emoji_key": "globe_with_meridians"
- }, {
- "keywords": ["TANGERINEfood", "tangerine", "orange", "fruit", "nature"],
- "emoji_key": "tangerine"
- }, {
- "keywords": ["SPARKLERstars", "shine", "sparkler", "FIREWORK", "night"],
- "emoji_key": "sparkler"
- }, {
- "keywords": ["waving_black_flag", "flag", "waving", "FLAG", "black", "WAVING", "BLACK"],
- "emoji_key": "waving_black_flag"
- }, {
- "keywords": ["MODIFIER", "skin-tone-5", "TYPE-5", "EMOJI", "FITZPATRICK"],
- "emoji_key": "skin-tone-5"
- }, {
- "keywords": ["DOG", "woof", "faithful", "pet", "puppy", "friend", "nature", "dog", "FACEanimal"],
- "emoji_key": "dog"
- }, {
- "keywords": ["SPEAKER", "speaker", "broadcast", "loud", "noisy", "loud_sound", "noise", "THREE", "sound", "WAVESvolume", "SOUND", "WITH"],
- "emoji_key": "loud_sound"
- }, {
- "keywords": ["THE", "rolling_on_the_floor_laughing", "laughing", "on", "floor", "FLOOR", "rolling", "LAUGHING", "ON", "ROLLING", "the"],
- "emoji_key": "rolling_on_the_floor_laughing"
- }, {
- "keywords": ["SYMBOLblue-square", "wheelchair", "WHEELCHAIR", "accessibility", "a11y", "disabled"],
- "emoji_key": "wheelchair"
- }, {
- "keywords": ["lemon", "LEMONfruit", "nature"],
- "emoji_key": "lemon"
- }, {
- "keywords": ["", "flag", "waving", "white", "waving_white_flag"],
- "emoji_key": "waving_white_flag"
- }, {
- "keywords": ["MODIFIER", "skin-tone-6", "TYPE-6", "EMOJI", "FITZPATRICK"],
- "emoji_key": "skin-tone-6"
- }, {
- "keywords": ["faithful", "doge", "pet", "friend", "dog2", "DOGanimal", "nature"],
- "emoji_key": "dog2"
- }, {
- "keywords": ["sound", "ADDRESS", "LOUDSPEAKERvolume", "PUBLIC", "loudspeaker"],
- "emoji_key": "loudspeaker"
- }, {
- "keywords": ["map", "world", "direction", "location", "world_map"],
- "emoji_key": "world_map"
- }, {
- "keywords": ["haha", "funny", ":)", "SMILING", "smiley", "happy", "MOUTHface", ":D", "FACE", "joy", "OPEN", "smile", "WITH"],
- "emoji_key": "smiley"
- }, {
- "keywords": ["MENS", "restroom", "wc", "gender", "SYMBOLtoilet", "male", "blue-square", "mens"],
- "emoji_key": "mens"
- }, {
- "keywords": ["FIRECRACKER", "firecracker"],
- "emoji_key": "firecracker"
- }, {
- "keywords": ["BANANAfruit", "monkey", "banana", "food"],
- "emoji_key": "banana"
- }, {
- "keywords": ["rainbow-flag", ""],
- "emoji_key": "rainbow-flag"
- }, {
- "keywords": ["poodle", "pet", "nature", "101", "animal", "POODLEdog"],
- "emoji_key": "poodle"
- }, {
- "keywords": ["volume", "speaker", "mega", "MEGAPHONEsound", "CHEERING"],
- "emoji_key": "mega"
- }, {
- "keywords": ["OF", "japanese", "japan", "asia", "country", "SILHOUETTE", "JAPANnation"],
- "emoji_key": "japan"
- }, {
- "keywords": ["funny", "haha", ":)", "SMILING", "happy", "like", "AND", ":D", "FACE", "joy", "OPEN", "smile", "laugh", "EYESface", "MOUTH", "WITH"],
- "emoji_key": "smile"
- }, {
- "keywords": ["loo", "restroom", "womens", "SYMBOLpurple-square", "gender", "woman", "WOMENS", "female", "toilet"],
- "emoji_key": "womens"
- }, {
- "keywords": ["SPARKLESstars", "shine", "awesome", "good", "cool", "sparkles", "shiny", "magic"],
- "emoji_key": "sparkles"
- }, {
- "keywords": ["PINEAPPLEfruit", "food", "pineapple", "nature"],
- "emoji_key": "pineapple"
- }, {
- "keywords": ["BALLOONparty", "birthday", "celebration", "circus", "balloon"],
- "emoji_key": "balloon"
- }, {
- "keywords": ["", "pirate_flag", "pirate", "flag"],
- "emoji_key": "pirate_flag"
- }, {
- "keywords": ["wild", "WOLF", "wolf", "nature", "FACEanimal"],
- "emoji_key": "wolf"
- }, {
- "keywords": ["postal_horn", "HORNinstrument", "POSTAL", "horn", "music", "postal"],
- "emoji_key": "postal_horn"
- }, {
- "keywords": ["SMILING", "happy", "AND", "SWEATface", "FACE", "sweat", "OPEN", "smile", "laugh", "relief", "COLD", "MOUTH", "sweat_smile", "WITH", "hot"],
- "emoji_key": "sweat_smile"
- }, {
- "keywords": ["RESTROOMblue-square", "restroom", "wc", "refresh", "gender", "toilet"],
- "emoji_key": "restroom"
- }, {
- "keywords": ["COMPASS", "compass"],
- "emoji_key": "compass"
- }, {
- "keywords": ["flag-ac", "Flag", "Island", "Ascension"],
- "emoji_key": "flag-ac"
- }, {
- "keywords": ["congratulations", "birthday", "PARTY", "celebration", "circus", "POPPERparty", "tada", "magic"],
- "emoji_key": "tada"
- }, {
- "keywords": ["snow_capped_mountain", "", "mountain", "capped", "snow"],
- "emoji_key": "snow_capped_mountain"
- }, {
- "keywords": ["bell", "notification", "xmas", "BELLsound", "chime", "christmas"],
- "emoji_key": "bell"
- }, {
- "keywords": ["haha", "SMILING", "face", "glad", "lol", "AND", "EYEShappy", "FACE", "TIGHTLY-CLOSED", "joy", "OPEN", "laugh", "satisfied", "MOUTH", "WITH", "laughing", "XD"],
- "emoji_key": "laughing"
- }, {
- "keywords": ["child", "SYMBOLorange-square", "BABY", "baby", "baby_symbol", "symbol"],
- "emoji_key": "baby_symbol"
- }, {
- "keywords": ["mango", "MANGO"],
- "emoji_key": "mango"
- }, {
- "keywords": ["face", "FOX", "fox_face", "fox", "nature", "FACEanimal"],
- "emoji_key": "fox_face"
- }, {
- "keywords": ["Andorra", "Flag", "flag-ad"],
- "emoji_key": "flag-ad"
- }, {
- "keywords": ["RED", "APPLEfruit", "school", "apple", "mac"],
- "emoji_key": "apple"
- }, {
- "keywords": ["confetti_ball", "BALLfestival", "birthday", "confetti", "CONFETTI", "ball", "party", "circus"],
- "emoji_key": "confetti_ball"
- }, {
- "keywords": ["volume", "bell", "BELL", "mute", "no_bell", "silent", "no", "quiet", "CANCELLATION", "STROKEsound", "WITH"],
- "emoji_key": "no_bell"
- }, {
- "keywords": ["happy", "secret", "WINKING", "smile", "FACEface", "mischievous", ";)", "eye", "wink"],
- "emoji_key": "wink"
- }, {
- "keywords": ["restroom", "wc", "WATER", "CLOSETtoilet", "blue-square"],
- "emoji_key": "wc"
- }, {
- "keywords": ["raccoon", "RACCOON"],
- "emoji_key": "raccoon"
- }, {
- "keywords": ["environment", "mountain", "nature", "photo"],
- "emoji_key": "mountain"
- }, {
- "keywords": ["Emirates", "flag-ae", "United", "Flag", "Arab"],
- "emoji_key": "flag-ae"
- }, {
- "keywords": ["VOLCANOphoto", "disaster", "volcano", "nature"],
- "emoji_key": "volcano"
- }, {
- "keywords": ["APPLEfruit", "apple", "green", "GREEN", "nature", "green_apple"],
- "emoji_key": "green_apple"
- }, {
- "keywords": ["TREEplant", "nature", "summer", "TANABATA", "tree", "branch", "tanabata_tree", "tanabata"],
- "emoji_key": "tanabata_tree"
- }, {
- "keywords": ["musical_score", "clef", "SCOREtreble", "MUSICAL", "musical", "score", "compose"],
- "emoji_key": "musical_score"
- }, {
- "keywords": ["kitten", "meow", "pet", "CAT", "cat", "nature", "FACEanimal"],
- "emoji_key": "cat"
- }, {
- "keywords": ["SMILING", "happy", "flushed", "FACE", "joy", "embarrassed", "blush", "smile", "crush", "EYESface", "shy", "WITH"],
- "emoji_key": "blush"
- }, {
- "keywords": ["passport", "PASSPORT", "control", "CONTROLcustom", "passport_control", "blue-square"],
- "emoji_key": "passport_control"
- }, {
- "keywords": ["Afghanistan", "flag-af", "Flag"],
- "emoji_key": "flag-af"
- }, {
- "keywords": ["food", "PEARfruit", "pear", "nature"],
- "emoji_key": "pear"
- }, {
- "keywords": ["bamboo", "panda", "vegetable", "PINE", "decoration", "DECORATIONplant", "nature", "pine"],
- "emoji_key": "bamboo"
- }, {
- "keywords": ["tone", "MUSICAL", "note", "musical", "musical_note", "NOTEscore", "sound"],
- "emoji_key": "musical_note"
- }, {
- "keywords": ["meow", "cat2", "pet", "CATanimal", "cats"],
- "emoji_key": "cat2"
- }, {
- "keywords": ["mountain", "japanese", "mount", "mount_fuji", "MOUNT", "FUJIphoto", "fuji", "nature"],
- "emoji_key": "mount_fuji"
- }, {
- "keywords": ["tongue", "face", "nom", "FACE", "joy", "silly", "yummy", "savouring", "DELICIOUS", "smile", "FOODhappy", "yum", "SAVOURING", "delicious"],
- "emoji_key": "yum"
- }, {
- "keywords": ["CUSTOMSpassport", "customs", "border", "blue-square"],
- "emoji_key": "customs"
- }, {
- "keywords": ["&", "flag-ag", "Barbuda", "Flag", "Antigua"],
- "emoji_key": "flag-ag"
- }, {
- "keywords": ["food", "PEACHfruit", "nature", "peach"],
- "emoji_key": "peach"
- }, {
- "keywords": ["kimono", "toy", "dolls", "JAPANESE", "DOLLSjapanese"],
- "emoji_key": "dolls"
- }, {
- "keywords": ["notes", "MUSICAL", "score", "MULTIPLE", "NOTESmusic"],
- "emoji_key": "notes"
- }, {
- "keywords": ["outdoors", "tent", "photo", "camping"],
- "emoji_key": "camping"
- }, {
- "keywords": ["sunglasses", "SMILING", "SUNGLASSESface", "FACE", "cool", "sunglass", "summer", "smile", "beach", "WITH"],
- "emoji_key": "sunglasses"
- }, {
- "keywords": ["baggage", "BAGGAGE", "claim", "baggage_claim", "CLAIMblue-square", "transport", "airport"],
- "emoji_key": "baggage_claim"
- }, {
- "keywords": ["lion_face", "face", "FACE", "lion", "LION"],
- "emoji_key": "lion_face"
- }, {
- "keywords": ["flag-ai", "Flag", "Anguilla"],
- "emoji_key": "flag-ai"
- }, {
- "keywords": ["CHERRIESfood", "fruit", "cherries"],
- "emoji_key": "cherries"
- }, {
- "keywords": ["japanese", "banner", "STREAMERfish", "CARP", "flags", "koinobori", "carp"],
- "emoji_key": "flags"
- }, {
- "keywords": ["microphone", "sing", "talkshow", "studio", "recording", "studio_microphone", "artist"],
- "emoji_key": "studio_microphone"
- }, {
- "keywords": ["", "with", "beach", "beach_with_umbrella", "umbrella"],
- "emoji_key": "beach_with_umbrella"
- }, {
- "keywords": ["danger", "nature", "tiger", "roar", "wild", "cat", "TIGER", "FACEanimal"],
- "emoji_key": "tiger"
- }, {
- "keywords": ["affection", "SMILING", "like", "FACE", "heart", "eyes", "HEART-SHAPED", "love", "infatuation", "heart_eyes", "crush", "EYESface", "WITH", "valentines"],
- "emoji_key": "heart_eyes"
- }, {
- "keywords": ["travel", "luggage", "LUGGAGEblue-square", "left_luggage", "LEFT", "left"],
- "emoji_key": "left_luggage"
- }, {
- "keywords": ["Albania", "flag-al", "Flag"],
- "emoji_key": "flag-al"
- }, {
- "keywords": ["strawberry", "food", "nature", "STRAWBERRYfruit"],
- "emoji_key": "strawberry"
- }, {
- "keywords": ["CHIMEnature", "wind_chime", "bell", "wind", "spring", "WIND", "ding", "chime"],
- "emoji_key": "wind_chime"
- }, {
- "keywords": ["slider", "level", "scale", "level_slider"],
- "emoji_key": "level_slider"
- }, {
- "keywords": ["desert", "saharah", "warm", "photo"],
- "emoji_key": "desert"
- }, {
- "keywords": ["tiger2", "roar", "TIGERanimal", "nature"],
- "emoji_key": "tiger2"
- }, {
- "keywords": ["kissing", "affection", "A", "like", "kissing_heart", "FACE", "heart", "love", "infatuation", "KISSface", "kiss", "THROWING", "valentines"],
- "emoji_key": "kissing_heart"
- }, {
- "keywords": ["wip", "alert", "problem", "warning", "WARNING", "error", "issue", "SIGNexclamation"],
- "emoji_key": "warning"
- }, {
- "keywords": ["flag-am", "Flag", "Armenia"],
- "emoji_key": "flag-am"
- }, {
- "keywords": ["MOON", "rice", "VIEWING", "japan", "asia", "scene", "tsukimi", "CEREMONYphoto", "rice_scene"],
- "emoji_key": "rice_scene"
- }, {
- "keywords": ["control_knobs", "dial", "control", "knobs"],
- "emoji_key": "control_knobs"
- }, {
- "keywords": ["desert_island", "mojito", "tropical", "desert", "island", "photo"],
- "emoji_key": "desert_island"
- }, {
- "keywords": ["leopard", "LEOPARDanimal", "nature"],
- "emoji_key": "leopard"
- }, {
- "keywords": ["danger", "driving", "sign", "CROSSINGschool", "CHILDREN", "yellow-diamond", "children", "children_crossing", "warning", "crossing"],
- "emoji_key": "children_crossing"
- }, {
- "keywords": ["kiwifruit", "KIWIFRUIT"],
- "emoji_key": "kiwifruit"
- }, {
- "keywords": ["hearts", "SMILING", "smiling", "face", "HEARTS", "AND", "FACE", "with", "EYES", "THREE", "WITH", "3", "smiling_face_with_3_hearts"],
- "emoji_key": "smiling_face_with_3_hearts"
- }, {
- "keywords": ["Flag", "Angola", "flag-ao"],
- "emoji_key": "flag-ao"
- }, {
- "keywords": ["vegetable", "TOMATOfruit", "nature", "tomato", "food"],
- "emoji_key": "tomato"
- }, {
- "keywords": ["microphone", "sing", "talkshow", "PA", "MICROPHONEsound", "music"],
- "emoji_key": "microphone"
- }, {
- "keywords": ["park", "national", "national_park", "environment", "nature", "photo"],
- "emoji_key": "national_park"
- }, {
- "keywords": ["horse", "nature", "HORSE", "brown", "FACEanimal"],
- "emoji_key": "horse"
- }, {
- "keywords": ["kissing", "KISSING", "face", "FACElove", "like", "infatuation", "kiss", "3", "valentines"],
- "emoji_key": "kissing"
- }, {
- "keywords": ["RED", "red", "envelope", "ENVELOPE", "GIFT", "red_envelope"],
- "emoji_key": "red_envelope"
- }, {
- "keywords": ["security", "no_entry", "denied", "entry", "NO", "ENTRYlimit", "circle", "no", "privacy", "bad", "stop"],
- "emoji_key": "no_entry"
- }, {
- "keywords": ["Antarctica", "flag-aq", "Flag"],
- "emoji_key": "flag-aq"
- }, {
- "keywords": ["bowtie", "pink", "RIBBONdecoration", "ribbon", "girl"],
- "emoji_key": "ribbon"
- }, {
- "keywords": ["score", "headphones", "gadgets", "HEADPHONEmusic"],
- "emoji_key": "headphones"
- }, {
- "keywords": ["venue", "place", "sports", "concert", "stadium", "photo"],
- "emoji_key": "stadium"
- }, {
- "keywords": ["HORSEanimal", "racehorse", "luck", "gamble"],
- "emoji_key": "racehorse"
- }, {
- "keywords": ["kissing", "affection", "KISSING", "smiling", "SMILING", "FACE", "eyes", "infatuation", "kissing_smiling_eyes", "EYESface", "kiss", "WITH", "valentines"],
- "emoji_key": "kissing_smiling_eyes"
- }, {
- "keywords": ["denied", "sign", "entry", "NO", "disallow", "ENTRY", "circle", "SIGNforbid", "no", "limit", "no_entry_sign", "stop"],
- "emoji_key": "no_entry_sign"
- }, {
- "keywords": ["COCONUTfruit", "coconut", "food", "nature", "palm"],
- "emoji_key": "coconut"
- }, {
- "keywords": ["flag-ar", "Flag", "Argentina"],
- "emoji_key": "flag-ar"
- }, {
- "keywords": ["birthday", "WRAPPED", "xmas", "PRESENTpresent", "gift", "christmas"],
- "emoji_key": "gift"
- }, {
- "keywords": ["building", "history", "art", "classical", "culture", "classical_building"],
- "emoji_key": "classical_building"
- }, {
- "keywords": ["podcast", "radio", "RADIOcommunication", "program", "music"],
- "emoji_key": "radio"
- }, {
- "keywords": ["kissing", "affection", "KISSING", "like", "FACE", "eyes", "kissing_closed_eyes", "love", "infatuation", "EYESface", "kiss", "closed", "WITH", "CLOSED", "valentines"],
- "emoji_key": "kissing_closed_eyes"
- }, {
- "keywords": ["bicycles", "NO", "prohibited", "circle", "no", "BICYCLEScyclist", "no_bicycles"],
- "emoji_key": "no_bicycles"
- }, {
- "keywords": ["AVOCADOfruit", "food", "avocado"],
- "emoji_key": "avocado"
- }, {
- "keywords": ["face", "unicorn", "unicorn_face", "FACE", "UNICORN"],
- "emoji_key": "unicorn_face"
- }, {
- "keywords": ["Flag", "American", "flag-as", "Samoa"],
- "emoji_key": "flag-as"
- }, {
- "keywords": ["AUBERGINEvegetable", "eggplant", "nature", "aubergine", "food"],
- "emoji_key": "eggplant"
- }, {
- "keywords": ["support", "reminder_ribbon", "reminder", "sports", "awareness", "ribbon", "cause"],
- "emoji_key": "reminder_ribbon"
- }, {
- "keywords": ["SAXOPHONEmusic", "saxophone", "blues", "instrument", "jazz"],
- "emoji_key": "saxophone"
- }, {
- "keywords": ["wip", "progress", "building", "building_construction", "construction", "working"],
- "emoji_key": "building_construction"
- }, {
- "keywords": ["SMOKING", "smell", "smoke", "NO", "SYMBOLcigarette", "smoking", "no", "no_smoking", "blue-square"],
- "emoji_key": "no_smoking"
- }, {
- "keywords": ["zebra", "face", "ZEBRA", "FACE", "zebra_face"],
- "emoji_key": "zebra_face"
- }, {
- "keywords": ["SMILING", "relaxed", "massage", "happiness", "WHITE", "blush", "FACEface"],
- "emoji_key": "relaxed"
- }, {
- "keywords": ["flag-at", "Austria", "Flag"],
- "emoji_key": "flag-at"
- }, {
- "keywords": ["", "admission_tickets", "tickets", "admission"],
- "emoji_key": "admission_tickets"
- }, {
- "keywords": ["GUITARmusic", "instrument", "guitar"],
- "emoji_key": "guitar"
- }, {
- "keywords": ["SMILING", "face", "smiling", "smile", "slightly", "FACEface", "SLIGHTLY", "slightly_smiling_face"],
- "emoji_key": "slightly_smiling_face"
- }, {
- "keywords": ["LITTER", "NOT", "bin", "do_not_litter", "DO", "circle", "not", "garbage", "litter", "SYMBOLtrash", "do"],
- "emoji_key": "do_not_litter"
- }, {
- "keywords": ["vegatable", "tuber", "POTATOfood", "potato", "starch"],
- "emoji_key": "potato"
- }, {
- "keywords": ["horns", "DEERanimal", "deer", "venison", "nature"],
- "emoji_key": "deer"
- }, {
- "keywords": ["BRICK", "bricks"],
- "emoji_key": "bricks"
- }, {
- "keywords": ["Australia", "Flag", "flag-au"],
- "emoji_key": "flag-au"
- }, {
- "keywords": ["ticket", "pass", "concert", "TICKETevent"],
- "emoji_key": "ticket"
- }, {
- "keywords": ["keyboard", "MUSICAL", "musical", "KEYBOARDpiano", "musical_keyboard", "instrument", "compose"],
- "emoji_key": "musical_keyboard"
- }, {
- "keywords": ["house", "buildings", "house_buildings", ""],
- "emoji_key": "house_buildings"
- }, {
- "keywords": ["ox", "cow", "moo", "COW", "milk", "animal", "nature", "FACEbeef"],
- "emoji_key": "cow"
- }, {
- "keywords": ["SYMBOLdrink", "non-potable_water", "WATER", "circle", "water", "non-potable", "faucet", "tap", "NON-POTABLE"],
- "emoji_key": "non-potable_water"
- }, {
- "keywords": ["hugging", "face", "FACE", "HUGGING", "hugging_face"],
- "emoji_key": "hugging_face"
- }, {
- "keywords": ["orange", "CARROTvegetable", "food", "carrot"],
- "emoji_key": "carrot"
- }, {
- "keywords": ["Aruba", "flag-aw", "Flag"],
- "emoji_key": "flag-aw"
- }, {
- "keywords": ["vegetable", "OF", "corn", "plant", "MAIZEfood", "EAR"],
- "emoji_key": "corn"
- }, {
- "keywords": ["", "medal"],
- "emoji_key": "medal"
- }, {
- "keywords": ["TRUMPETmusic", "brass", "trumpet"],
- "emoji_key": "trumpet"
- }, {
- "keywords": ["", "derelict_house_building", "building", "house", "derelict"],
- "emoji_key": "derelict_house_building"
- }, {
- "keywords": ["cow", "beef", "OXanimal", "ox"],
- "emoji_key": "ox"
- }, {
- "keywords": ["PEDESTRIANSrules", "NO", "circle", "no", "crossing", "walking", "pedestrians", "no_pedestrians"],
- "emoji_key": "no_pedestrians"
- }, {
- "keywords": ["star-struck", "GRINNING", "FACE", "STAR", "EYES", "WITH"],
- "emoji_key": "star-struck"
- }, {
- "keywords": ["flag-ax", "Islands", "Flag", "\u00c5land"],
- "emoji_key": "flag-ax"
- }, {
- "keywords": ["spicy", "chilli", "hot_pepper", "pepper", "chili", "food", "hot"],
- "emoji_key": "hot_pepper"
- }, {
- "keywords": ["violin", "symphony", "VIOLINmusic", "instrument", "orchestra"],
- "emoji_key": "violin"
- }, {
- "keywords": ["award", "ceremony", "place", "ftw", "TROPHYwin", "contest", "trophy"],
- "emoji_key": "trophy"
- }, {
- "keywords": ["home", "house", "HOUSE", "BUILDINGbuilding"],
- "emoji_key": "house"
- }, {
- "keywords": ["ox", "BUFFALOanimal", "cow", "WATER", "water_buffalo", "water", "nature", "buffalo"],
- "emoji_key": "water_buffalo"
- }, {
- "keywords": ["no_mobile_phones", "mute", "MOBILE", "NO", "PHONESiphone", "circle", "no", "phones", "mobile"],
- "emoji_key": "no_mobile_phones"
- }, {
- "keywords": ["thinking_face", "THINKING", "face", "FACE", "thinking"],
- "emoji_key": "thinking_face"
- }, {
- "keywords": ["Azerbaijan", "Flag", "flag-az"],
- "emoji_key": "flag-az"
- }, {
- "keywords": ["SPORTS", "MEDAL", "sports", "medal", "sports_medal"],
- "emoji_key": "sports_medal"
- }, {
- "keywords": ["garden", "GARDENhome", "house", "nature", "with", "house_with_garden", "plant", "HOUSE", "WITH"],
- "emoji_key": "house_with_garden"
- }, {
- "keywords": ["ox", "cow2", "COWbeef", "moo", "milk", "animal", "nature"],
- "emoji_key": "cow2"
- }, {
- "keywords": ["drink", "pub", "minor", "underage", "ONE", "NO", "circle", "UNDER", "SYMBOL18", "EIGHTEEN", "night"],
- "emoji_key": "underage"
- }, {
- "keywords": ["eyebrow", "face", "ONE", "FACE", "EYEBROW", "RAISED", "with", "face_with_raised_eyebrow", "raised", "WITH"],
- "emoji_key": "face_with_raised_eyebrow"
- }, {
- "keywords": ["drum_with_drumsticks", "DRUMSTICKS", "DRUM", "drumsticks", "with", "WITH", "drum"],
- "emoji_key": "drum_with_drumsticks"
- }, {
- "keywords": ["pickle", "food", "cucumber", "CUCUMBERfruit"],
- "emoji_key": "cucumber"
- }, {
- "keywords": ["Herzegovina", "&", "Bosnia", "flag-ba", "Flag"],
- "emoji_key": "flag-ba"
- }, {
- "keywords": ["bureau", "BUILDINGbuilding", "OFFICE", "office", "work"],
- "emoji_key": "office"
- }, {
- "keywords": ["pig", "PIG", "oink", "nature", "FACEanimal"],
- "emoji_key": "pig"
- }, {
- "keywords": ["iphone", "gadgets", "MOBILE", "apple", "PHONEtechnology", "dial"],
- "emoji_key": "iphone"
- }, {
- "keywords": ["neutral_face", "face", "FACEindifference", "meh", "NEUTRAL", "neutral", ":|"],
- "emoji_key": "neutral_face"
- }, {
- "keywords": ["MEDAL", "first_place_medal", "place", "medal", "first", "FIRST", "PLACE"],
- "emoji_key": "first_place_medal"
- }, {
- "keywords": ["leafy_green", "leafy", "green", "GREEN", "LEAFY"],
- "emoji_key": "leafy_green"
- }, {
- "keywords": ["", "radioactive", "sign", "radioactive_sign"],
- "emoji_key": "radioactive_sign"
- }, {
- "keywords": ["flag-bb", "Flag", "Barbados"],
- "emoji_key": "flag-bb"
- }, {
- "keywords": ["OFFICEbuilding", "post", "post_office", "POST", "office", "envelope", "communication", "JAPANESE"],
- "emoji_key": "post_office"
- }, {
- "keywords": ["pig2", "PIGanimal", "nature"],
- "emoji_key": "pig2"
- }, {
- "keywords": ["MOBILE", "LEFTiphone", "AT", "ARROW", "incoming", "RIGHTWARDS", "PHONE", "WITH", "calling"],
- "emoji_key": "calling"
- }, {
- "keywords": ["EXPRESSIONLESS", "indifferent", "expressionless", "deadpan", "meh", "-", "FACEface"],
- "emoji_key": "expressionless"
- }, {
- "keywords": ["MEDAL", "second", "second_place_medal", "SECOND", "place", "medal", "PLACE"],
- "emoji_key": "second_place_medal"
- }, {
- "keywords": ["BROCCOLIfruit", "food", "vegetable", "broccoli"],
- "emoji_key": "broccoli"
- }, {
- "keywords": ["sign", "", "biohazard", "biohazard_sign"],
- "emoji_key": "biohazard_sign"
- }, {
- "keywords": ["Flag", "flag-bd", "Bangladesh"],
- "emoji_key": "flag-bd"
- }, {
- "keywords": ["MUSHROOMplant", "vegetable", "mushroom"],
- "emoji_key": "mushroom"
- }, {
- "keywords": ["OFFICEbuilding", "european_post_office", "post", "POST", "office", "european", "EUROPEAN", "email"],
- "emoji_key": "european_post_office"
- }, {
- "keywords": ["boar", "BOARanimal", "nature"],
- "emoji_key": "boar"
- }, {
- "keywords": ["MOUTHface", "FACE", "mouth", "hellokitty", "no", "WITHOUT", "no_mouth"],
- "emoji_key": "no_mouth"
- }, {
- "keywords": ["MEDAL", "place", "THIRD", "medal", "third", "third_place_medal", "PLACE"],
- "emoji_key": "third_place_medal"
- }, {
- "keywords": ["TELEPHONEtechnology", "phone", "communication", "telephone", "BLACK", "dial"],
- "emoji_key": "phone"
- }, {
- "keywords": ["top", "UPWARDS", "arrow", "up", "direction", "arrow_up", "BLACK", "continue", "ARROWblue-square"],
- "emoji_key": "arrow_up"
- }, {
- "keywords": ["Belgium", "flag-be", "Flag"],
- "emoji_key": "flag-be"
- }, {
- "keywords": ["doctor", "HOSPITALbuilding", "health", "surgery", "hospital"],
- "emoji_key": "hospital"
- }, {
- "keywords": ["pig", "nose", "NOSEanimal", "pig_nose", "PIG", "oink"],
- "emoji_key": "pig_nose"
- }, {
- "keywords": ["receiver", "TELEPHONE", "telephone_receiver", "RECEIVERtechnology", "communication", "telephone", "dial"],
- "emoji_key": "telephone_receiver"
- }, {
- "keywords": ["face", "FACE", "eyes", "with", "EYES", "rolling", "ROLLING", "WITH", "face_with_rolling_eyes"],
- "emoji_key": "face_with_rolling_eyes"
- }, {
- "keywords": ["peanuts", "nut", "PEANUTSfood"],
- "emoji_key": "peanuts"
- }, {
- "keywords": ["point", "arrow", "northeast", "direction", "EAST", "arrow_upper_right", "NORTH", "ARROWblue-square", "diagonal", "upper", "right"],
- "emoji_key": "arrow_upper_right"
- }, {
- "keywords": ["soccer", "BALLsports", "football", "SOCCER"],
- "emoji_key": "soccer"
- }, {
- "keywords": ["Burkina", "flag-bf", "Flag", "Faso"],
- "emoji_key": "flag-bf"
- }, {
- "keywords": ["chestnut", "CHESTNUTfood", "squirrel"],
- "emoji_key": "chestnut"
- }, {
- "keywords": ["business", "cash", "enterprise", "BANKbuilding", "bank", "money", "sales"],
- "emoji_key": "bank"
- }, {
- "keywords": ["RAManimal", "nature", "sheep", "ram"],
- "emoji_key": "ram"
- }, {
- "keywords": ["PAGERbbcall", "pager", "90s", "oldschool"],
- "emoji_key": "pager"
- }, {
- "keywords": ["smug", "smirk", "mean", "smile", "prank", "FACEface", "sarcasm", "SMIRKING"],
- "emoji_key": "smirk"
- }, {
- "keywords": ["balls", "BASEBALLsports", "baseball"],
- "emoji_key": "baseball"
- }, {
- "keywords": ["next", "arrow", "arrow_right", "ARROWblue-square", "BLACK", "RIGHTWARDS", "right"],
- "emoji_key": "arrow_right"
- }, {
- "keywords": ["flag-bg", "Flag", "Bulgaria"],
- "emoji_key": "flag-bg"
- }, {
- "keywords": ["BREADfood", "wheat", "breakfast", "bread", "toast"],
- "emoji_key": "bread"
- }, {
- "keywords": ["HOTELbuilding", "accomodation", "checkin", "hotel"],
- "emoji_key": "hotel"
- }, {
- "keywords": ["shipit", "wool", "sheep", "SHEEPanimal", "nature"],
- "emoji_key": "sheep"
- }, {
- "keywords": ["fax", "FAX", "technology", "MACHINEcommunication"],
- "emoji_key": "fax"
- }, {
- "keywords": ["persevere", "no", "FACEface", "upset", "PERSEVERING", "oops", "sick"],
- "emoji_key": "persevere"
- }, {
- "keywords": ["softball", "SOFTBALL"],
- "emoji_key": "softball"
- }, {
- "keywords": ["SOUTH", "arrow", "direction", "lower", "arrow_lower_right", "EAST", "ARROWblue-square", "diagonal", "southeast", "right"],
- "emoji_key": "arrow_lower_right"
- }, {
- "keywords": ["Flag", "Bahrain", "flag-bh"],
- "emoji_key": "flag-bh"
- }, {
- "keywords": ["HOOPsports", "NBA", "basketball", "AND", "balls", "BASKETBALL"],
- "emoji_key": "basketball"
- }, {
- "keywords": ["affection", "hotel", "love", "LOVE", "dating", "love_hotel", "HOTELlike"],
- "emoji_key": "love_hotel"
- }, {
- "keywords": ["goat", "GOATanimal", "nature"],
- "emoji_key": "goat"
- }, {
- "keywords": ["energy", "BATTERYpower", "sustain", "battery"],
- "emoji_key": "battery"
- }, {
- "keywords": ["disappointed", "phew", "nervous", "sweat", "RELIEVED", "disappointed_relieved", "relieved", "FACEface", "BUT", "DISAPPOINTED"],
- "emoji_key": "disappointed_relieved"
- }, {
- "keywords": ["CROISSANTfood", "french", "croissant", "bread"],
- "emoji_key": "croissant"
- }, {
- "keywords": ["arrow", "DOWNWARDS", "bottom", "down", "arrow_down", "direction", "BLACK", "ARROWblue-square"],
- "emoji_key": "arrow_down"
- }, {
- "keywords": ["flag-bi", "Burundi", "Flag"],
- "emoji_key": "flag-bi"
- }, {
- "keywords": ["volleyball", "VOLLEYBALLsports", "balls"],
- "emoji_key": "volleyball"
- }, {
- "keywords": ["convenience", "store", "groceries", "shopping", "STOREbuilding", "CONVENIENCE", "convenience_store"],
- "emoji_key": "convenience_store"
- }, {
- "keywords": ["camel", "hump", "desert", "CAMELanimal", "dromedary_camel", "dromedary", "DROMEDARY", "hot"],
- "emoji_key": "dromedary_camel"
- }, {
- "keywords": ["ELECTRIC", "PLUGcharger", "electric_plug", "power", "plug", "electric"],
- "emoji_key": "electric_plug"
- }, {
- "keywords": ["open", "wow", "impressed", "whoa", "MOUTHface", "mouth", "FACE", "OPEN", "open_mouth", "surprise", "WITH", ":O"],
- "emoji_key": "open_mouth"
- }, {
- "keywords": ["BREADfood", "BAGUETTE", "baguette", "french", "baguette_bread", "bread"],
- "emoji_key": "baguette_bread"
- }, {
- "keywords": ["SOUTH", "arrow", "direction", "lower", "southwest", "arrow_lower_left", "ARROWblue-square", "diagonal", "WEST", "left"],
- "emoji_key": "arrow_lower_left"
- }, {
- "keywords": ["Benin", "Flag", "flag-bj"],
- "emoji_key": "flag-bj"
- }, {
- "keywords": ["football", "balls", "NFL", "AMERICAN", "FOOTBALLsports"],
- "emoji_key": "football"
- }, {
- "keywords": ["learn", "school", "SCHOOLbuilding", "teach", "education", "student"],
- "emoji_key": "school"
- }, {
- "keywords": ["camel", "hump", "BACTRIAN", "desert", "CAMELanimal", "nature", "hot"],
- "emoji_key": "camel"
- }, {
- "keywords": ["laptop", "PERSONAL", "screen", "computer", "display", "monitor", "COMPUTERtechnology"],
- "emoji_key": "computer"
- }, {
- "keywords": ["zipper", "face", "secret", "mouth", "sealed", "ZIPPER-MOUTH", "zipper_mouth_face", "FACEface"],
- "emoji_key": "zipper_mouth_face"
- }, {
- "keywords": ["pretzel", "PRETZELfood", "twisted", "bread"],
- "emoji_key": "pretzel"
- }, {
- "keywords": ["previous", "arrow", "back", "arrow_left", "LEFTWARDS", "BLACK", "ARROWblue-square", "left"],
- "emoji_key": "arrow_left"
- }, {
- "keywords": ["flag-bl", "Flag", "St.", "Barth\u00e9lemy"],
- "emoji_key": "flag-bl"
- }, {
- "keywords": ["team", "rugby", "RUGBY", "football", "rugby_football", "FOOTBALLsports"],
- "emoji_key": "rugby_football"
- }, {
- "keywords": ["store", "department", "shopping", "mall", "DEPARTMENT", "STOREbuilding", "department_store"],
- "emoji_key": "department_store"
- }, {
- "keywords": ["computing", "desktop_computer", "technology", "desktop", "screen", "computer"],
- "emoji_key": "desktop_computer"
- }, {
- "keywords": ["shh", "woo", "HUSHED", "FACEface", "hushed"],
- "emoji_key": "hushed"
- }, {
- "keywords": ["BAGEL", "bagel"],
- "emoji_key": "bagel"
- }, {
- "keywords": ["LLAMA", "llama"],
- "emoji_key": "llama"
- }, {
- "keywords": ["point", "arrow", "direction", "arrow_upper_left", "NORTH", "ARROWblue-square", "diagonal", "northwest", "upper", "WEST", "left"],
- "emoji_key": "arrow_upper_left"
- }, {
- "keywords": ["Bermuda", "Flag", "flag-bm"],
- "emoji_key": "flag-bm"
- }, {
- "keywords": ["BALLsports", "RACQUET", "TENNIS", "AND", "tennis", "balls", "green"],
- "emoji_key": "tennis"
- }, {
- "keywords": ["factory", "smoke", "FACTORYbuilding", "industry", "pollution"],
- "emoji_key": "factory"
- }, {
- "keywords": ["ink", "paper", "printer"],
- "emoji_key": "printer"
- }, {
- "keywords": ["nap", "rest", "tired", "FACEface", "SLEEPY", "sleepy"],
- "emoji_key": "sleepy"
- }, {
- "keywords": ["flapjacks", "breakfast", "PANCAKESfood", "pancakes", "hotcakes"],
- "emoji_key": "pancakes"
- }, {
- "keywords": ["face", "FACE", "GIRAFFE", "giraffe_face", "giraffe"],
- "emoji_key": "giraffe_face"
- }, {
- "keywords": ["UP", "way", "arrow", "up", "down", "direction", "vertical", "arrow_up_down", "DOWN", "ARROWblue-square"],
- "emoji_key": "arrow_up_down"
- }, {
- "keywords": ["Flag", "flag-bn", "Brunei"],
- "emoji_key": "flag-bn"
- }, {
- "keywords": ["building", "japanese", "japanese_castle", "castle", "CASTLEphoto", "JAPANESE"],
- "emoji_key": "japanese_castle"
- }, {
- "keywords": ["nose", "ELEPHANTanimal", "nature", "circus", "th", "elephant"],
- "emoji_key": "elephant"
- }, {
- "keywords": ["face", "tired_face", "frustrated", "whine", "FACEsick", "tired", "upset", "TIRED"],
- "emoji_key": "tired_face"
- }, {
- "keywords": ["flying", "FLYING", "flying_disc", "DISC", "disc"],
- "emoji_key": "flying_disc"
- }, {
- "keywords": ["cheese", "CHEESE", "WEDGE", "cheese_wedge", "wedge"],
- "emoji_key": "cheese_wedge"
- }, {
- "keywords": ["arrow", "sideways", "left_right_arrow", "direction", "left", "RIGHT", "horizontal", "LEFT", "right", "ARROWshape"],
- "emoji_key": "left_right_arrow"
- }, {
- "keywords": ["text", "type", "technology", "keyboard", "computer", "input"],
- "emoji_key": "keyboard"
- }, {
- "keywords": ["flag-bo", "Bolivia", "Flag"],
- "emoji_key": "flag-bo"
- }, {
- "keywords": ["meat_on_bone", "bone", "MEAT", "drumstick", "meat", "on", "ON", "BONEgood", "food"],
- "emoji_key": "meat_on_bone"
- }, {
- "keywords": ["bowling", "fun", "BOWLINGsports", "play"],
- "emoji_key": "bowling"
- }, {
- "keywords": ["CASTLEbuilding", "european_castle", "history", "castle", "EUROPEAN", "european", "royalty"],
- "emoji_key": "european_castle"
- }, {
- "keywords": ["", "three", "three_button_mouse", "mouse", "button"],
- "emoji_key": "three_button_mouse"
- }, {
- "keywords": ["SLEEPING", "sleeping", "tired", "FACEface", "sleepy", "zzz", "night"],
- "emoji_key": "sleeping"
- }, {
- "keywords": ["rhinoceros", "RHINOCEROSanimal", "nature", "horn"],
- "emoji_key": "rhinoceros"
- }, {
- "keywords": ["blue-square", "enter", "leftwards", "HOOKback", "arrow", "with", "ARROW", "undo", "return", "LEFTWARDS", "leftwards_arrow_with_hook", "WITH", "hook"],
- "emoji_key": "leftwards_arrow_with_hook"
- }, {
- "keywords": ["Caribbean", "Netherlands", "flag-bq", "Flag"],
- "emoji_key": "flag-bq"
- }, {
- "keywords": ["leg", "POULTRY", "drumstick", "meat", "LEGfood", "chicken", "turkey", "bird", "poultry", "poultry_leg"],
- "emoji_key": "poultry_leg"
- }, {
- "keywords": ["and", "cricket_bat_and_ball", "ball", "AND", "cricket", "bat", "CRICKET", "BAT", "BALL"],
- "emoji_key": "cricket_bat_and_ball"
- }, {
- "keywords": ["affection", "like", "couple", "marriage", "groom", "wedding", "bride", "WEDDINGlove"],
- "emoji_key": "wedding"
- }, {
- "keywords": ["trackball", "trackpad", "technology"],
- "emoji_key": "trackball"
- }, {
- "keywords": ["phew", "relaxed", "massage", "happiness", "RELIEVED", "FACEface", "relieved"],
- "emoji_key": "relieved"
- }, {
- "keywords": ["hippopotamus", "HIPPOPOTAMUS"],
- "emoji_key": "hippopotamus"
- }, {
- "keywords": ["arrow_right_hook", "arrow", "direction", "ARROW", "HOOKblue-square", "rotate", "return", "RIGHTWARDS", "WITH", "right", "hook"],
- "emoji_key": "arrow_right_hook"
- }, {
- "keywords": ["flag-br", "Brazil", "Flag"],
- "emoji_key": "flag-br"
- }, {
- "keywords": ["FIELD", "and", "field", "hockey", "AND", "ball", "stick", "STICK", "HOCKEY", "field_hockey_stick_and_ball", "BALL"],
- "emoji_key": "field_hockey_stick_and_ball"
- }, {
- "keywords": ["cheese", "rodent", "MOUSE", "mouse", "nature", "FACEanimal", "wedge"],
- "emoji_key": "mouse"
- }, {
- "keywords": ["disk", "record", "minidisc", "90s", "data", "MINIDISCtechnology"],
- "emoji_key": "minidisc"
- }, {
- "keywords": ["tokyo", "japanese", "tokyo_tower", "TOKYO", "TOWERphoto", "tower"],
- "emoji_key": "tokyo_tower"
- }, {
- "keywords": ["tongue", "STUCK-OUT", "stuck", "out", "FACE", "stuck_out_tongue", "TONGUEface", "smile", "prank", "childish", "mischievous", "playful", "WITH"],
- "emoji_key": "stuck_out_tongue"
- }, {
- "keywords": ["OF", "cut_of_meat", "CUT", "MEATsteak", "meat", "cut", "of"],
- "emoji_key": "cut_of_meat"
- }, {
- "keywords": ["top", "arrow_heading_up", "POINTING", "arrow", "up", "THEN", "UPWARDSblue-square", "direction", "ARROW", "heading", "RIGHTWARDS", "CURVING"],
- "emoji_key": "arrow_heading_up"
- }, {
- "keywords": ["Flag", "flag-bs", "Bahamas"],
- "emoji_key": "flag-bs"
- }, {
- "keywords": ["ICE", "ice", "and", "hockey", "puck", "AND", "PUCK", "stick", "STICK", "HOCKEY", "ice_hockey_stick_and_puck"],
- "emoji_key": "ice_hockey_stick_and_puck"
- }, {
- "keywords": ["MOUSEanimal", "mouse2", "nature", "rodent"],
- "emoji_key": "mouse2"
- }, {
- "keywords": ["DISKoldschool", "disk", "floppy", "technology", "save", "floppy_disk", "90s", "80s", "FLOPPY"],
- "emoji_key": "floppy_disk"
- }, {
- "keywords": ["OF", "liberty", "statue", "STATUE", "of", "newyork", "statue_of_liberty", "LIBERTYamerican"],
- "emoji_key": "statue_of_liberty"
- }, {
- "keywords": ["tongue", "smile", "mischievous", "out", "prank", "wink", "TONGUE", "stuck_out_tongue_winking_eye", "STUCK-OUT", "FACE", "WINKING", "childish", "playful", "winking", "WITH", "stuck", "AND", "eye", "EYEface"],
- "emoji_key": "stuck_out_tongue_winking_eye"
- }, {
- "keywords": ["pig", "bacon", "meat", "breakfast", "pork", "BACONfood"],
- "emoji_key": "bacon"
- }, {
- "keywords": ["POINTING", "THEN", "arrow_heading_down", "arrow", "bottom", "DOWNWARDSblue-square", "down", "direction", "ARROW", "heading", "RIGHTWARDS", "CURVING"],
- "emoji_key": "arrow_heading_down"
- }, {
- "keywords": ["flag-bt", "Bhutan", "Flag"],
- "emoji_key": "flag-bt"
- }, {
- "keywords": ["fast", "hamburger", "beef", "cheeseburger", "king", "mcdonalds", "HAMBURGERmeat", "burger", "food"],
- "emoji_key": "hamburger"
- }, {
- "keywords": ["RATanimal", "rat", "rodent", "mouse"],
- "emoji_key": "rat"
- }, {
- "keywords": ["cd", "disk", "DISCtechnology", "disc", "dvd", "OPTICAL", "90s"],
- "emoji_key": "cd"
- }, {
- "keywords": ["round", "UPWARDS", "CLOCKWISE", "repeat", "arrows", "DOWNWARDS", "clockwise", "AND", "OPEN", "CIRCLE", "arrows_clockwise", "ARROWSsync", "cycle"],
- "emoji_key": "arrows_clockwise"
- }, {
- "keywords": ["TONGUE", "tongue", "STUCK-OUT", "stuck", "out", "AND", "FACE", "TIGHTLY-CLOSED", "eyes", "smile", "prank", "EYESface", "mischievous", "playful", "closed", "WITH", "stuck_out_tongue_closed_eyes"],
- "emoji_key": "stuck_out_tongue_closed_eyes"
- }, {
- "keywords": ["LACROSSE", "lacrosse", "AND", "STICK", "BALL"],
- "emoji_key": "lacrosse"
- }, {
- "keywords": ["christ", "church", "CHURCHbuilding", "religion"],
- "emoji_key": "church"
- }, {
- "keywords": ["Flag", "Bouvet", "flag-bv", "Island"],
- "emoji_key": "flag-bv"
- }, {
- "keywords": ["fast", "snack", "fries", "FRIESchips", "FRENCH", "food"],
- "emoji_key": "fries"
- }, {
- "keywords": ["and", "table_tennis_paddle_and_ball", "TENNIS", "ball", "tennis", "AND", "TABLE", "paddle", "BALL", "table", "PADDLE"],
- "emoji_key": "table_tennis_paddle_and_ball"
- }, {
- "keywords": ["FACEanimal", "HAMSTER", "nature", "hamster"],
- "emoji_key": "hamster"
- }, {
- "keywords": ["dvd", "disk", "disc", "DVDcd"],
- "emoji_key": "dvd"
- }, {
- "keywords": ["sync", "UPWARDS", "arrows", "DOWNWARDS", "AND", "ARROWSblue-square", "counterclockwise", "OPEN", "CIRCLE", "arrows_counterclockwise", "cycle", "ANTICLOCKWISE"],
- "emoji_key": "arrows_counterclockwise"
- }, {
- "keywords": ["MOSQUEislam", "worship", "minaret", "mosque"],
- "emoji_key": "mosque"
- }, {
- "keywords": ["drooling_face", "drooling", "face", "DROOLING", "FACEface"],
- "emoji_key": "drooling_face"
- }, {
- "keywords": ["flag-bw", "Flag", "Botswana"],
- "emoji_key": "flag-bw"
- }, {
- "keywords": ["SLICE", "PIZZAfood", "OF", "party", "pizza"],
- "emoji_key": "pizza"
- }, {
- "keywords": ["and", "RACQUET", "AND", "SHUTTLECOCK", "badminton_racquet_and_shuttlecock", "shuttlecock", "badminton", "racquet", "BADMINTON"],
- "emoji_key": "badminton_racquet_and_shuttlecock"
- }, {
- "keywords": ["RABBIT", "rabbit", "pet", "bunny", "spring", "magic", "nature", "FACEanimal"],
- "emoji_key": "rabbit"
- }, {
- "keywords": ["ABOVEarrow", "words", "BACK", "ARROW", "back", "return", "LEFTWARDS", "WITH"],
- "emoji_key": "back"
- }, {
- "keywords": ["synagogue", "SYNAGOGUEjudaism", "temple", "jewish", "worship"],
- "emoji_key": "synagogue"
- }, {
- "keywords": ["bored", "face", "FACEindifference", "serious", "unamused", "sarcasm", "UNAMUSED", "straight"],
- "emoji_key": "unamused"
- }, {
- "keywords": ["ABACUS", "abacus"],
- "emoji_key": "abacus"
- }, {
- "keywords": ["Flag", "flag-by", "Belarus"],
- "emoji_key": "flag-by"
- }, {
- "keywords": ["frankfurter", "DOGfood", "HOT", "hotdog"],
- "emoji_key": "hotdog"
- }, {
- "keywords": ["CAMERAfilm", "camera", "MOVIE", "record", "movie", "movie_camera"],
- "emoji_key": "movie_camera"
- }, {
- "keywords": ["pet", "rabbit2", "spring", "RABBITanimal", "nature", "magic"],
- "emoji_key": "rabbit2"
- }, {
- "keywords": ["ABOVEwords", "arrow", "ARROW", "end", "LEFTWARDS", "END", "WITH"],
- "emoji_key": "end"
- }, {
- "keywords": ["SWEATface", "FACE", "sad", "sweat", "exercise", "tired", "COLD", "WITH", "hot"],
- "emoji_key": "sweat"
- }, {
- "keywords": ["fighting", "GLOVEsports", "BOXING", "boxing", "boxing_glove", "glove"],
- "emoji_key": "boxing_glove"
- }, {
- "keywords": ["kyoto", "shinto_shrine", "japan", "temple", "shinto", "shrine"],
- "emoji_key": "shinto_shrine"
- }, {
- "keywords": ["Belize", "flag-bz", "Flag"],
- "emoji_key": "flag-bz"
- }, {
- "keywords": ["", "frames", "film_frames", "film"],
- "emoji_key": "film_frames"
- }, {
- "keywords": ["chipmunk", "squirrel", "rodent", "animal", "nature"],
- "emoji_key": "chipmunk"
- }, {
- "keywords": ["ABOVEarrow", "LEFT", "words", "on", "ARROW", "RIGHT", "ON", "EXCLAMATION", "WITH", "MARK"],
- "emoji_key": "on"
- }, {
- "keywords": ["KAABAmecca", "kaaba", "islam", "mosque"],
- "emoji_key": "kaaba"
- }, {
- "keywords": ["sad", "PENSIVE", "pensive", "FACEface", "upset", "depressed"],
- "emoji_key": "pensive"
- }, {
- "keywords": ["taekwondo", "ARTS", "karate", "UNIFORMjudo", "MARTIAL", "arts", "uniform", "martial_arts_uniform", "martial"],
- "emoji_key": "martial_arts_uniform"
- }, {
- "keywords": ["SANDWICHfood", "lunch", "sandwich", "bread"],
- "emoji_key": "sandwich"
- }, {
- "keywords": ["flag-ca", "Flag", "Canada"],
- "emoji_key": "flag-ca"
- }, {
- "keywords": ["mexican", "TACOfood", "taco"],
- "emoji_key": "taco"
- }, {
- "keywords": ["tape", "projector", "record", "film", "movie", "film_projector", "video"],
- "emoji_key": "film_projector"
- }, {
- "keywords": ["ABOVEarrow", "words", "ARROW", "SOON", "soon", "RIGHTWARDS", "WITH"],
- "emoji_key": "soon"
- }, {
- "keywords": ["confused", "CONFUSED", "hmmm", ":/", "huh", "weird", "FACEface", "indifference"],
- "emoji_key": "confused"
- }, {
- "keywords": ["NETsports", "goal", "GOAL", "goal_net", "net"],
- "emoji_key": "goal_net"
- }, {
- "keywords": ["HEDGEHOGanimal", "nature", "spiny", "hedgehog"],
- "emoji_key": "hedgehog"
- }, {
- "keywords": ["fresh", "fountain", "summer", "water", "FOUNTAINphoto"],
- "emoji_key": "fountain"
- }, {
- "keywords": ["Islands", "flag-cc", "(Keeling)", "Cocos", "Flag"],
- "emoji_key": "flag-cc"
- }, {
- "keywords": ["mexican", "BURRITOfood", "burrito"],
- "emoji_key": "burrito"
- }, {
- "keywords": ["BOARDmovie", "clapper", "CLAPPER", "record", "film"],
- "emoji_key": "clapper"
- }, {
- "keywords": ["blue-square", "top", "UPWARDS", "ABOVEwords", "TOP", "ARROW", "WITH"],
- "emoji_key": "top"
- }, {
- "keywords": ["face", "UPSIDE-DOWN", "down", "silly", "upside_down_face", "upside", "smile", "FACEface", "flipped"],
- "emoji_key": "upside_down_face"
- }, {
- "keywords": ["BATanimal", "blind", "vampire", "bat", "nature"],
- "emoji_key": "bat"
- }, {
- "keywords": ["business", "HOLEsports", "IN", "hole", "golf", "flag", "summer", "FLAG"],
- "emoji_key": "golf"
- }, {
- "keywords": ["TENTphoto", "outdoors", "tent", "camping"],
- "emoji_key": "tent"
- }, {
- "keywords": ["Congo", "flag-cd", "Kinshasa", "-", "Flag"],
- "emoji_key": "flag-cd"
- }, {
- "keywords": ["mountain", "foggy", "FOGGYphoto"],
- "emoji_key": "foggy"
- }, {
- "keywords": ["BEAR", "bear", "wild", "nature", "FACEanimal"],
- "emoji_key": "bear"
- }, {
- "keywords": ["show", "television", "program", "tv", "oldschool", "TELEVISIONtechnology"],
- "emoji_key": "tv"
- }, {
- "keywords": ["prayer", "OF", "place", "church", "temple", "WORSHIPreligion", "place_of_worship", "of", "PLACE", "worship"],
- "emoji_key": "place_of_worship"
- }, {
- "keywords": ["face", "mouth", "money", "MONEY-MOUTH", "rich", "FACEface", "dollar", "money_mouth_face"],
- "emoji_key": "money_mouth_face"
- }, {
- "keywords": ["STUFFED", "FLATBREADfood", "flatbread", "gyro", "stuffed_flatbread", "stuffed"],
- "emoji_key": "stuffed_flatbread"
- }, {
- "keywords": ["skate", "sports", "ice_skate", "ice"],
- "emoji_key": "ice_skate"
- }, {
- "keywords": ["flag-cf", "African", "Republic", "Central", "Flag"],
- "emoji_key": "flag-cf"
- }, {
- "keywords": ["night_with_stars", "NIGHT", "downtown", "with", "stars", "STARSevening", "city", "WITH", "night"],
- "emoji_key": "night_with_stars"
- }, {
- "keywords": ["and", "pole", "AND", "fishing", "summer", "fish", "hobby", "FISHfood", "fishing_pole_and_fish", "POLE", "FISHING"],
- "emoji_key": "fishing_pole_and_fish"
- }, {
- "keywords": ["KOALAanimal", "koala", "nature"],
- "emoji_key": "koala"
- }, {
- "keywords": ["photography", "camera", "CAMERAgadgets"],
- "emoji_key": "camera"
- }, {
- "keywords": ["poisoned", "ASTONISHED", "astonished", "FACEface", "xox", "surprised"],
- "emoji_key": "astonished"
- }, {
- "keywords": ["chicken", "egg", "EGGfood", "breakfast"],
- "emoji_key": "egg"
- }, {
- "keywords": ["atom_symbol", "chemistry", "physics", "atom", "science", "symbol"],
- "emoji_key": "atom_symbol"
- }, {
- "keywords": ["flag-cg", "Brazzaville", "Congo", "-", "Flag"],
- "emoji_key": "flag-cg"
- }, {
- "keywords": ["egg", "fried", "COOKINGfood", "kitchen", "fried_egg", "breakfast"],
- "emoji_key": "fried_egg"
- }, {
- "keywords": ["sash", "RUNNING", "pageant", "running_shirt_with_sash", "with", "running", "SASHplay", "WITH", "shirt", "SHIRT"],
- "emoji_key": "running_shirt_with_sash"
- }, {
- "keywords": ["life", "urban", "cityscape", "photo", "night"],
- "emoji_key": "cityscape"
- }, {
- "keywords": ["panda", "face", "nature", "PANDA", "panda_face", "FACEanimal"],
- "emoji_key": "panda_face"
- }, {
- "keywords": ["camera", "flash", "with", "FLASH", "CAMERA", "camera_with_flash", "WITH"],
- "emoji_key": "camera_with_flash"
- }, {
- "keywords": ["", "om_symbol", "om", "symbol"],
- "emoji_key": "om_symbol"
- }, {
- "keywords": ["", "face", "frowning", "white", "white_frowning_face"],
- "emoji_key": "white_frowning_face"
- }, {
- "keywords": ["Flag", "flag-ch", "Switzerland"],
- "emoji_key": "flag-ch"
- }, {
- "keywords": ["sunrise", "vacation", "MOUNTAINSview", "over", "OVER", "sunrise_over_mountains", "SUNRISE", "mountains", "photo"],
- "emoji_key": "sunrise_over_mountains"
- }, {
- "keywords": ["cold", "AND", "SKI", "winter", "snow", "ski", "BOOTsports"],
- "emoji_key": "ski"
- }, {
- "keywords": ["CAMERAfilm", "camera", "VIDEO", "record", "video_camera", "video"],
- "emoji_key": "video_camera"
- }, {
- "keywords": ["disappointed", "face", "frowning", "sad", "slightly_frowning_face", "slightly", "FACEface", "upset", "SLIGHTLY", "FROWNING"],
- "emoji_key": "slightly_frowning_face"
- }, {
- "keywords": ["SHALLOW", "shallow", "OF", "casserole", "paella", "cooking", "PAN", "pan", "of", "FOODfood", "shallow_pan_of_food", "food"],
- "emoji_key": "shallow_pan_of_food"
- }, {
- "keywords": ["kangaroo", "KANGAROO"],
- "emoji_key": "kangaroo"
- }, {
- "keywords": ["david", "star_of_david", "judaism", "of", "star"],
- "emoji_key": "star_of_david"
- }, {
- "keywords": ["d\u2019Ivoire", "flag-ci", "Flag", "C\u00f4te"],
- "emoji_key": "flag-ci"
- }, {
- "keywords": ["sunrise", "vacation", "SUNRISEmorning", "view", "photo"],
- "emoji_key": "sunrise"
- }, {
- "keywords": ["POT", "OF", "meat", "stew", "FOODfood", "soup"],
- "emoji_key": "stew"
- }, {
- "keywords": ["VIDEOCASSETTErecord", "oldschool", "vhs", "80s", "90s", "video"],
- "emoji_key": "vhs"
- }, {
- "keywords": ["unwell", "confused", "FACEface", "CONFOUNDED", ":S", "oops", "confounded", "sick"],
- "emoji_key": "confounded"
- }, {
- "keywords": ["sled", "SLEDsleigh", "luge", "toboggan"],
- "emoji_key": "sled"
- }, {
- "keywords": ["badger", "BADGER"],
- "emoji_key": "badger"
- }, {
- "keywords": ["wheel", "wheel_of_dharma", "jainism", "sikhism", "of", "hinduism", "dharma", "buddhism"],
- "emoji_key": "wheel_of_dharma"
- }, {
- "keywords": ["Islands", "Flag", "flag-ck", "Cook"],
- "emoji_key": "flag-ck"
- }, {
- "keywords": ["sunset", "buildings", "AT", "evening", "CITYSCAPE", "city", "city_sunset", "DUSKphoto", "sky"],
- "emoji_key": "city_sunset"
- }, {
- "keywords": ["PAW", "feet", "PRINTS"],
- "emoji_key": "feet"
- }, {
- "keywords": ["LEFT-POINTING", "find", "mag", "detective", "zoom", "MAGNIFYING", "GLASSsearch"],
- "emoji_key": "mag"
- }, {
- "keywords": ["disappointed", ":(", "sad", "FACEface", "upset", "depressed", "DISAPPOINTED"],
- "emoji_key": "disappointed"
- }, {
- "keywords": ["CURLING", "curling", "STONEsports", "curling_stone", "stone"],
- "emoji_key": "curling_stone"
- }, {
- "keywords": ["SPOONfood", "bowl_with_spoon", "BOWL", "spoon", "cereal", "porridge", "oatmeal", "with", "breakfast", "bowl", "WITH"],
- "emoji_key": "bowl_with_spoon"
- }, {
- "keywords": ["yin_yang", "balance", "yang", "yin"],
- "emoji_key": "yin_yang"
- }, {
- "keywords": ["Chile", "Flag", "flag-cl"],
- "emoji_key": "flag-cl"
- }, {
- "keywords": ["dawn", "SUNSET", "sunrise", "good", "city_sunrise", "OVER", "BUILDINGSphoto", "city", "morning"],
- "emoji_key": "city_sunrise"
- }, {
- "keywords": ["HITgame", "play", "target", "dart", "bullseye", "bar", "DIRECT"],
- "emoji_key": "dart"
- }, {
- "keywords": ["RIGHT-POINTING", "GLASSsearch", "mag", "find", "detective", "zoom", "MAGNIFYING", "mag_right", "right"],
- "emoji_key": "mag_right"
- }, {
- "keywords": [":(", "worried", "nervous", "FACEface", "WORRIED", "concern"],
- "emoji_key": "worried"
- }, {
- "keywords": ["SALADfood", "green_salad", "lettuce", "salad", "green", "GREEN", "healthy"],
- "emoji_key": "green_salad"
- }, {
- "keywords": ["TURKEYanimal", "turkey", "bird"],
- "emoji_key": "turkey"
- }, {
- "keywords": ["latin", "cross", "latin_cross", "christianity"],
- "emoji_key": "latin_cross"
- }, {
- "keywords": ["flag-cm", "Flag", "Cameroon"],
- "emoji_key": "flag-cm"
- }, {
- "keywords": ["bridge_at_night", "sanfrancisco", "bridge", "AT", "at", "BRIDGE", "NIGHTphoto", "night"],
- "emoji_key": "bridge_at_night"
- }, {
- "keywords": ["snack", "theater", "popcorn", "POPCORNfood", "films", "movie"],
- "emoji_key": "popcorn"
- }, {
- "keywords": ["game", "luck", "BILLIARDSpool", "hobby", "8ball", "magic"],
- "emoji_key": "8ball"
- }, {
- "keywords": ["chicken", "cluck", "CHICKENanimal", "bird", "nature"],
- "emoji_key": "chicken"
- }, {
- "keywords": ["fire", "candle", "wax"],
- "emoji_key": "candle"
- }, {
- "keywords": ["OF", "LOOK", "pride", "phew", "FACE", "triumph", "proud", "TRIUMPHface", "gas", "WITH"],
- "emoji_key": "triumph"
- }, {
- "keywords": ["orthodox", "religion", "cross", "orthodox_cross", "suppedaneum"],
- "emoji_key": "orthodox_cross"
- }, {
- "keywords": ["Flagchina", "nation", "country", "chinese", "China", "flag", "banner", "cn", "prc"],
- "emoji_key": "cn"
- }, {
- "keywords": ["chicken", "ROOSTERanimal", "nature", "rooster"],
- "emoji_key": "rooster"
- }, {
- "keywords": ["bulb", "LIGHT", "ELECTRIC", "BULBlight", "electricity", "idea"],
- "emoji_key": "bulb"
- }, {
- "keywords": ["crystal_ball", "CRYSTAL", "teller", "ball", "party", "circus", "fortune", "crystal", "BALLdisco", "magic"],
- "emoji_key": "crystal_ball"
- }, {
- "keywords": ["cry", "CRYING", "sad", "tears", "FACEface", "upset", "depressed", ":'("],
- "emoji_key": "cry"
- }, {
- "keywords": ["SALT", "salt", "SHAKER"],
- "emoji_key": "salt"
- }, {
- "keywords": ["and", "islam", "crescent", "star_and_crescent", "star"],
- "emoji_key": "star_and_crescent"
- }, {
- "keywords": ["HOT", "hotsprings", "SPRINGSbath", "warm", "relax"],
- "emoji_key": "hotsprings"
- }, {
- "keywords": ["Colombia", "Flag", "flag-co"],
- "emoji_key": "flag-co"
- }, {
- "keywords": ["MILKY", "space", "WAYphoto", "way", "milky_way", "stars", "milky"],
- "emoji_key": "milky_way"
- }, {
- "keywords": ["egg", "HATCHING", "CHICKanimal", "hatching_chick", "chick", "chicken", "bird", "born", "baby", "hatching"],
- "emoji_key": "hatching_chick"
- }, {
- "keywords": ["TORCHdark", "ELECTRIC", "camping", "flashlight", "sight", "night"],
- "emoji_key": "flashlight"
- }, {
- "keywords": ["cry", "CRYING", "sad", "LOUDLY", "tears", "FACEface", "sob", "upset", "depressed"],
- "emoji_key": "sob"
- }, {
- "keywords": ["canned", "CANNED", "soup", "FOODfood", "food", "canned_food"],
- "emoji_key": "canned_food"
- }, {
- "keywords": ["nazar_amulet", "NAZAR", "nazar", "AMULET", "amulet"],
- "emoji_key": "nazar_amulet"
- }, {
- "keywords": ["peace_symbol", "peace", "symbol", "hippie"],
- "emoji_key": "peace_symbol"
- }, {
- "keywords": ["Island", "Clipperton", "Flag", "flag-cp"],
- "emoji_key": "flag-cp"
- }, {
- "keywords": ["box", "japanese", "BENTO", "BOXfood", "bento"],
- "emoji_key": "bento"
- }, {
- "keywords": ["carousel_horse", "carousel", "HORSEphoto", "horse", "CAROUSEL", "carnival"],
- "emoji_key": "carousel_horse"
- }, {
- "keywords": ["game", "PS4", "VIDEO", "GAMEplay", "video_game", "console", "controller", "video"],
- "emoji_key": "video_game"
- }, {
- "keywords": ["lantern", "halloween", "LANTERNlight", "paper", "spooky", "IZAKAYA", "izakaya", "izakaya_lantern"],
- "emoji_key": "izakaya_lantern"
- }, {
- "keywords": ["CHICKanimal", "chick", "chicken", "bird", "baby_chick", "BABY", "baby"],
- "emoji_key": "baby_chick"
- }, {
- "keywords": ["menorah", "BRANCHES", "nine", "branches", "menorah_with_nine_branches", "with", "NINE", "WITH", "MENORAH"],
- "emoji_key": "menorah_with_nine_branches"
- }, {
- "keywords": ["frowning", "MOUTHface", "FACE", "OPEN", "what", "FROWNING", "WITH", "aw"],
- "emoji_key": "frowning"
- }, {
- "keywords": ["Rica", "Flag", "flag-cr", "Costa"],
- "emoji_key": "flag-cr"
- }, {
- "keywords": ["cracker", "rice_cracker", "rice", "japanese", "CRACKERfood", "RICE"],
- "emoji_key": "rice_cracker"
- }, {
- "keywords": ["ferris", "wheel", "FERRIS", "WHEELphoto", "carnival", "londoneye", "ferris_wheel"],
- "emoji_key": "ferris_wheel"
- }, {
- "keywords": ["hatched_chick", "CHICKanimal", "chick", "chicken", "bird", "BABY", "baby", "hatched", "FRONT-FACING"],
- "emoji_key": "hatched_chick"
- }, {
- "keywords": ["DECORATIVE", "COVERclassroom", "notes", "paper", "cover", "study", "with", "notebook_with_decorative_cover", "decorative", "record", "notebook", "WITH", "NOTEBOOK"],
- "emoji_key": "notebook_with_decorative_cover"
- }, {
- "keywords": ["MIDDLE", "six", "pointed", "religion", "hexagram", "STAR", "POINTED", "six_pointed_star", "SIX", "jewish", "DOTpurple-square", "WITH", "star"],
- "emoji_key": "six_pointed_star"
- }, {
- "keywords": ["joystick", "play", "game"],
- "emoji_key": "joystick"
- }, {
- "keywords": ["nervous", "anguished", "FACEface", "stunned", "ANGUISHED"],
- "emoji_key": "anguished"
- }, {
- "keywords": ["Cuba", "Flag", "flag-cu"],
- "emoji_key": "flag-cu"
- }, {
- "keywords": ["rice", "rice_ball", "japanese", "ball", "RICE", "BALLfood"],
- "emoji_key": "rice_ball"
- }, {
- "keywords": ["roller_coaster", "fun", "ROLLER", "playground", "COASTERcarnival", "roller", "coaster", "photo"],
- "emoji_key": "roller_coaster"
- }, {
- "keywords": ["vegas", "luck", "casino", "SLOT", "machine", "gamble", "fruit", "slot_machine", "slot", "MACHINEbet"],
- "emoji_key": "slot_machine"
- }, {
- "keywords": ["BIRDanimal", "fly", "tweet", "spring", "bird", "nature"],
- "emoji_key": "bird"
- }, {
- "keywords": ["BOOKread", "learn", "closed_book", "library", "knowledge", "book", "closed", "textbook", "CLOSED"],
- "emoji_key": "closed_book"
- }, {
- "keywords": ["terrified", "scared", "nervous", "huh", "FACEface", "fearful", "FEARFUL", "oops"],
- "emoji_key": "fearful"
- }, {
- "keywords": ["ARIESsign", "purple-square", "astrology", "zodiac", "aries"],
- "emoji_key": "aries"
- }, {
- "keywords": ["Verde", "Cape", "Flag", "flag-cv"],
- "emoji_key": "flag-cv"
- }, {
- "keywords": ["rice", "asian", "china", "RICEfood", "COOKED"],
- "emoji_key": "rice"
- }, {
- "keywords": ["game", "luck", "tabletop", "play", "die", "game_die", "random", "DIEdice", "GAME"],
- "emoji_key": "game_die"
- }, {
- "keywords": ["penguin", "PENGUINanimal", "nature"],
- "emoji_key": "penguin"
- }, {
- "keywords": ["salon", "barber", "BARBER", "POLEhair", "style"],
- "emoji_key": "barber"
- }, {
- "keywords": ["OPEN", "BOOK", "book"],
- "emoji_key": "book"
- }, {
- "keywords": ["sad", "frustrated", "weary", "tired", "FACEface", "upset", "WEARY", "sleepy"],
- "emoji_key": "weary"
- }, {
- "keywords": ["sign", "TAURUSpurple-square", "taurus", "astrology", "zodiac"],
- "emoji_key": "taurus"
- }, {
- "keywords": ["flag-cw", "Flag", "Cura\u00e7ao"],
- "emoji_key": "flag-cw"
- }, {
- "keywords": ["CURRY", "spicy", "curry", "AND", "indian", "RICEfood", "hot"],
- "emoji_key": "curry"
- }, {
- "keywords": ["circus_tent", "party", "CIRCUS", "carnival", "circus", "TENTfestival", "tent"],
- "emoji_key": "circus_tent"
- }, {
- "keywords": ["BOOKread", "study", "green_book", "library", "knowledge", "book", "green", "GREEN"],
- "emoji_key": "green_book"
- }, {
- "keywords": ["", "peace", "of", "dove_of_peace", "dove"],
- "emoji_key": "dove_of_peace"
- }, {
- "keywords": ["blown", "shocked", "FACE", "mind", "head", "exploding_head", "SHOCKED", "EXPLODING", "WITH", "exploding", "HEADface"],
- "emoji_key": "exploding_head"
- }, {
- "keywords": ["jigsaw", "PIECE", "PUZZLE", "JIGSAW"],
- "emoji_key": "jigsaw"
- }, {
- "keywords": ["gemini", "GEMINIsign", "purple-square", "astrology", "zodiac"],
- "emoji_key": "gemini"
- }, {
- "keywords": ["Christmas", "flag-cx", "Flag", "Island"],
- "emoji_key": "flag-cx"
- }, {
- "keywords": ["noodle", "japanese", "STEAMING", "chopsticks", "ramen", "BOWLfood"],
- "emoji_key": "ramen"
- }, {
- "keywords": ["BOOKread", "learn", "study", "BLUE", "library", "book", "blue", "knowledge", "blue_book"],
- "emoji_key": "blue_book"
- }, {
- "keywords": ["grimace", "teeth", "grimacing", "FACEface", "GRIMACING"],
- "emoji_key": "grimacing"
- }, {
- "keywords": ["LOCOMOTIVEtransportation", "steam_locomotive", "vehicle", "STEAM", "steam", "train", "locomotive"],
- "emoji_key": "steam_locomotive"
- }, {
- "keywords": ["eagle", "EAGLEanimal", "bird", "nature"],
- "emoji_key": "eagle"
- }, {
- "keywords": ["TEDDY", "BEAR", "bear", "teddy", "teddy_bear"],
- "emoji_key": "teddy_bear"
- }, {
- "keywords": ["cancer", "CANCERsign", "purple-square", "astrology", "zodiac"],
- "emoji_key": "cancer"
- }, {
- "keywords": ["Cyprus", "Flag", "flag-cy"],
- "emoji_key": "flag-cy"
- }, {
- "keywords": ["spaghetti", "SPAGHETTIfood", "noodle", "italian"],
- "emoji_key": "spaghetti"
- }, {
- "keywords": ["BOOKread", "orange_book", "study", "orange", "library", "ORANGE", "book", "knowledge", "textbook"],
- "emoji_key": "orange_book"
- }, {
- "keywords": ["cold", "cold_sweat", "AND", "SWEATface", "FACE", "nervous", "sweat", "OPEN", "COLD", "MOUTH", "WITH"],
- "emoji_key": "cold_sweat"
- }, {
- "keywords": ["vehicle", "RAILWAY", "railway_car", "railway", "CARtransportation", "car"],
- "emoji_key": "railway_car"
- }, {
- "keywords": ["nature", "mallard", "bird", "DUCKanimal", "duck"],
- "emoji_key": "duck"
- }, {
- "keywords": ["leo", "LEOsign", "purple-square", "astrology", "zodiac"],
- "emoji_key": "leo"
- }, {
- "keywords": ["SUITpoker", "spades", "suits", "SPADE", "BLACK", "cards", "magic"],
- "emoji_key": "spades"
- }, {
- "keywords": ["Flag", "flag-cz", "Czechia"],
- "emoji_key": "flag-cz"
- }, {
- "keywords": ["ROASTED", "sweet", "POTATOfood", "potato", "SWEET", "nature", "sweet_potato"],
- "emoji_key": "sweet_potato"
- }, {
- "keywords": ["BOOKSliterature", "study", "library", "books"],
- "emoji_key": "books"
- }, {
- "keywords": ["IN", "scared", "FACE", "FEARface", "omg", "scream", "munch", "SCREAMING"],
- "emoji_key": "scream"
- }, {
- "keywords": ["vehicle", "TRAINtransportation", "bullettrain_side", "bullettrain", "HIGH-SPEED", "side"],
- "emoji_key": "bullettrain_side"
- }, {
- "keywords": ["SWAN", "swan"],
- "emoji_key": "swan"
- }, {
- "keywords": ["purple-square", "astrology", "virgo", "VIRGOsign", "zodiac"],
- "emoji_key": "virgo"
- }, {
- "keywords": ["hearts", "SUITpoker", "suits", "BLACK", "cards", "HEART", "magic"],
- "emoji_key": "hearts"
- }, {
- "keywords": ["Germany", "nation", "country", "flag", "banner", "Flaggerman", "de"],
- "emoji_key": "de"
- }, {
- "keywords": ["ODENfood", "japanese", "oden"],
- "emoji_key": "oden"
- }, {
- "keywords": ["notes", "paper", "study", "NOTEBOOKstationery", "record", "notebook"],
- "emoji_key": "notebook"
- }, {
- "keywords": ["NOSEtransportation", "speed", "fast", "vehicle", "front", "bullettrain_front", "BULLET", "bullettrain", "HIGH-SPEED", "public", "TRAIN", "WITH", "travel"],
- "emoji_key": "bullettrain_front"
- }, {
- "keywords": ["hot_face", "OVERHEATED", "face", "FACE", "hot"],
- "emoji_key": "hot_face"
- }, {
- "keywords": ["hoot", "bird", "OWLanimal", "nature", "owl"],
- "emoji_key": "owl"
- }, {
- "keywords": ["LIBRAsign", "purple-square", "astrology", "libra", "zodiac"],
- "emoji_key": "libra"
- }, {
- "keywords": ["SUITpoker", "diamonds", "suits", "DIAMOND", "BLACK", "cards", "magic"],
- "emoji_key": "diamonds"
- }, {
- "keywords": ["Diego", "Flag", "Garcia", "flag-dg"],
- "emoji_key": "flag-dg"
- }, {
- "keywords": ["rice", "sushi", "japanese", "fish", "SUSHIfood"],
- "emoji_key": "sushi"
- }, {
- "keywords": ["paper", "LEDGERnotes", "ledger"],
- "emoji_key": "ledger"
- }, {
- "keywords": ["vehicle", "train2", "TRAINtransportation"],
- "emoji_key": "train2"
- }, {
- "keywords": ["cold", "cold_face", "face", "FACE", "FREEZING"],
- "emoji_key": "cold_face"
- }, {
- "keywords": ["peacock", "PEACOCK"],
- "emoji_key": "peacock"
- }, {
- "keywords": ["scorpius", "SCORPIUSsign", "purple-square", "astrology", "zodiac", "scorpio"],
- "emoji_key": "scorpius"
- }, {
- "keywords": ["SUITpoker", "CLUB", "suits", "cards", "BLACK", "clubs", "magic"],
- "emoji_key": "clubs"
- }, {
- "keywords": ["flag-dj", "Djibouti", "Flag"],
- "emoji_key": "flag-dj"
- }, {
- "keywords": ["fried", "appetizer", "SHRIMPfood", "FRIED", "fried_shrimp", "summer", "shrimp", "animal"],
- "emoji_key": "fried_shrimp"
- }, {
- "keywords": ["page_with_curl", "curl", "PAGE", "page", "paper", "office", "with", "CURLdocuments", "WITH"],
- "emoji_key": "page_with_curl"
- }, {
- "keywords": ["FLUSHED", "flushed", "flattered", "blush", "FACEface", "shy"],
- "emoji_key": "flushed"
- }, {
- "keywords": ["tube", "underground", "metro", "METROtransportation", "mrt", "blue-square"],
- "emoji_key": "metro"
- }, {
- "keywords": ["PARROT", "parrot"],
- "emoji_key": "parrot"
- }, {
- "keywords": ["sagittarius", "purple-square", "astrology", "zodiac", "SAGITTARIUSsign"],
- "emoji_key": "sagittarius"
- }, {
- "keywords": ["", "chess", "pawn", "chess_pawn"],
- "emoji_key": "chess_pawn"
- }, {
- "keywords": ["game", "play", "JOKERpoker", "black", "CARD", "BLACK", "cards", "joker", "black_joker", "PLAYING", "magic"],
- "emoji_key": "black_joker"
- }, {
- "keywords": ["Denmark", "flag-dk", "Flag"],
- "emoji_key": "flag-dk"
- }, {
- "keywords": ["DESIGNfood", "sea", "cake", "fish_cake", "japan", "kamaboko", "ramen", "SWIRL", "CAKE", "swirl", "pink", "FISH", "fish", "beach", "surimi", "narutomaki", "WITH"],
- "emoji_key": "fish_cake"
- }, {
- "keywords": ["toad", "croak", "FROG", "frog", "nature", "FACEanimal"],
- "emoji_key": "frog"
- }, {
- "keywords": ["SCROLLdocuments", "ancient", "paper", "history", "scroll"],
- "emoji_key": "scroll"
- }, {
- "keywords": ["LIGHT", "RAILtransportation", "vehicle", "rail", "light_rail", "light"],
- "emoji_key": "light_rail"
- }, {
- "keywords": ["face", "AND", "ONE", "FACE", "GRINNING", "zany_face", "zany", "SMALL", "EYE", "LARGE", "WITH"],
- "emoji_key": "zany_face"
- }, {
- "keywords": ["capricorn", "purple-square", "astrology", "zodiac", "CAPRICORNsign"],
- "emoji_key": "capricorn"
- }, {
- "keywords": ["RED", "DRAGONgame", "MAHJONG", "play", "chinese", "TILE", "kanji", "mahjong"],
- "emoji_key": "mahjong"
- }, {
- "keywords": ["Flag", "flag-dm", "Dominica"],
- "emoji_key": "flag-dm"
- }, {
- "keywords": ["CROCODILEanimal", "crocodile", "alligator", "lizard", "nature", "reptile"],
- "emoji_key": "crocodile"
- }, {
- "keywords": ["UPdocuments", "information", "PAGE", "page", "FACING", "up", "facing", "paper", "office", "page_facing_up"],
- "emoji_key": "page_facing_up"
- }, {
- "keywords": ["DIZZY", "face", "dizzy", "FACEspent", "unconscious", "xox", "dizzy_face"],
- "emoji_key": "dizzy_face"
- }, {
- "keywords": ["station", "STATIONtransportation", "vehicle", "public"],
- "emoji_key": "station"
- }, {
- "keywords": ["MOON", "cake", "CAKE", "moon_cake", "moon"],
- "emoji_key": "moon_cake"
- }, {
- "keywords": ["AQUARIUSsign", "purple-square", "aquarius", "astrology", "zodiac"],
- "emoji_key": "aquarius"
- }, {
- "keywords": ["Dominican", "Flag", "flag-do", "Republic"],
- "emoji_key": "flag-do"
- }, {
- "keywords": ["japanese", "dessert", "meat", "sweet", "barbecue", "dango", "DANGOfood"],
- "emoji_key": "dango"
- }, {
- "keywords": ["sunset", "CARDSgame", "red", "playing", "flower_playing_cards", "FLOWER", "cards", "flower", "PLAYING"],
- "emoji_key": "flower_playing_cards"
- }, {
- "keywords": ["turtle", "slow", "TURTLEanimal", "nature", "tortoise"],
- "emoji_key": "turtle"
- }, {
- "keywords": ["NEWSPAPERpress", "headline", "newspaper"],
- "emoji_key": "newspaper"
- }, {
- "keywords": ["hate", "mad", "FACEangry", "despise", "POUTING", "rage"],
- "emoji_key": "rage"
- }, {
- "keywords": ["vehicle", "tram", "TRAMtransportation"],
- "emoji_key": "tram"
- }, {
- "keywords": ["sign", "pisces", "PISCESpurple-square", "astrology", "zodiac"],
- "emoji_key": "pisces"
- }, {
- "keywords": ["Flag", "flag-dz", "Algeria"],
- "emoji_key": "flag-dz"
- }, {
- "keywords": ["theater", "performing", "drama", "PERFORMING", "ARTSacting", "arts", "performing_arts"],
- "emoji_key": "performing_arts"
- }, {
- "keywords": ["", "newspaper", "up", "rolled_up_newspaper", "rolled"],
- "emoji_key": "rolled_up_newspaper"
- }, {
- "keywords": ["annoyed", "FACEmad", "face", "frustrated", "angry", "ANGRY"],
- "emoji_key": "angry"
- }, {
- "keywords": ["monorail", "MONORAILtransportation", "vehicle"],
- "emoji_key": "monorail"
- }, {
- "keywords": ["dumpling", "empanada", "potsticker", "DUMPLINGfood", "pierogi"],
- "emoji_key": "dumpling"
- }, {
- "keywords": ["reptile", "nature", "LIZARDanimal", "lizard"],
- "emoji_key": "lizard"
- }, {
- "keywords": ["OPHIUCHUSsign", "purple-square", "astrology", "ophiuchus", "constellation"],
- "emoji_key": "ophiuchus"
- }, {
- "keywords": ["flag-ea", "Ceuta", "&", "Flag", "Melilla"],
- "emoji_key": "flag-ea"
- }, {
- "keywords": ["evil", "hiss", "SNAKEanimal", "python", "nature", "snake"],
- "emoji_key": "snake"
- }, {
- "keywords": ["BOOKMARK", "tidy", "order", "save", "bookmark_tabs", "TABSfavorite", "tabs", "bookmark"],
- "emoji_key": "bookmark_tabs"
- }, {
- "keywords": ["shuffle", "arrows", "ARROWSblue-square", "random", "music", "rightwards", "RIGHTWARDS", "twisted", "twisted_rightwards_arrows", "TWISTED"],
- "emoji_key": "twisted_rightwards_arrows"
- }, {
- "keywords": ["", "with", "picture", "frame_with_picture", "frame"],
- "emoji_key": "frame_with_picture"
- }, {
- "keywords": ["mountain_railway", "mountain", "vehicle", "railway", "RAILWAYtransportation", "MOUNTAIN"],
- "emoji_key": "mountain_railway"
- }, {
- "keywords": ["face", "COVERING", "symbols", "mouth", "on", "FACE", "SYMBOLS", "face_with_symbols_on_mouth", "with", "SERIOUS", "MOUTH", "WITH"],
- "emoji_key": "face_with_symbols_on_mouth"
- }, {
- "keywords": ["COOKIEfood", "FORTUNE", "prophecy", "fortune", "cookie", "fortune_cookie"],
- "emoji_key": "fortune_cookie"
- }, {
- "keywords": ["Ecuador", "flag-ec", "Flag"],
- "emoji_key": "flag-ec"
- }, {
- "keywords": ["ARTIST", "colors", "art", "PALETTEdesign", "draw", "paint"],
- "emoji_key": "art"
- }, {
- "keywords": ["face", "chinese", "myth", "green", "DRAGON", "nature", "dragon_face", "FACEanimal", "dragon"],
- "emoji_key": "dragon_face"
- }, {
- "keywords": ["CLOCKWISE", "repeat", "AND", "ARROWSloop", "OPEN", "CIRCLE", "record", "LEFTWARDS", "RIGHTWARDS"],
- "emoji_key": "repeat"
- }, {
- "keywords": ["save", "label", "BOOKMARKfavorite", "bookmark"],
- "emoji_key": "bookmark"
- }, {
- "keywords": ["disease", "MASKface", "FACE", "ill", "MEDICAL", "WITH", "mask", "sick"],
- "emoji_key": "mask"
- }, {
- "keywords": ["carriage", "vehicle", "TRAM", "public", "train", "CARtransportation", "travel"],
- "emoji_key": "train"
- }, {
- "keywords": ["TAKEOUT", "box", "BOXfood", "leftovers", "takeout_box", "takeout"],
- "emoji_key": "takeout_box"
- }, {
- "keywords": ["Estonia", "Flag", "flag-ee"],
- "emoji_key": "flag-ee"
- }, {
- "keywords": ["CREAMfood", "ICE", "dessert", "summer", "icecream", "SOFT", "hot"],
- "emoji_key": "icecream"
- }, {
- "keywords": ["label", "sale", "tag"],
- "emoji_key": "label"
- }, {
- "keywords": ["chinese", "DRAGONanimal", "myth", "green", "nature", "dragon"],
- "emoji_key": "dragon"
- }, {
- "keywords": ["CLOCKWISE", "repeat", "loop", "AND", "CIRCLED", "ONE", "repeat_one", "ARROWS", "OPEN", "OVERLAYblue-square", "CIRCLE", "LEFTWARDS", "RIGHTWARDS", "WITH", "one"],
- "emoji_key": "repeat_one"
- }, {
- "keywords": ["bus", "transportation", "vehicle", "BUScar"],
- "emoji_key": "bus"
- }, {
- "keywords": ["cold", "face", "THERMOMETERsick", "FACE", "with", "fever", "thermometer", "WITH", "face_with_thermometer", "temperature"],
- "emoji_key": "face_with_thermometer"
- }, {
- "keywords": ["thread", "SPOOL", "OF", "THREAD"],
- "emoji_key": "thread"
- }, {
- "keywords": ["flag-eg", "Egypt", "Flag"],
- "emoji_key": "flag-eg"
- }, {
- "keywords": ["ice", "shaved_ice", "dessert", "SHAVED", "shaved", "summer", "ICEhot"],
- "emoji_key": "shaved_ice"
- }, {
- "keywords": ["coins", "moneybag", "BAGdollar", "MONEY", "sale", "payment"],
- "emoji_key": "moneybag"
- }, {
- "keywords": ["BUSvehicle", "ONCOMING", "oncoming", "oncoming_bus", "bus", "transportation"],
- "emoji_key": "oncoming_bus"
- }, {
- "keywords": ["face", "HEAD-BANDAGEinjured", "FACE", "face_with_head_bandage", "with", "head", "hurt", "clumsy", "bandage", "WITH"],
- "emoji_key": "face_with_head_bandage"
- }, {
- "keywords": ["SAUROPODanimal", "sauropod", "dinosaur", "diplodocus", "extinct", "brachiosaurus", "brontosaurus", "nature"],
- "emoji_key": "sauropod"
- }, {
- "keywords": ["YARN", "BALL", "OF", "yarn"],
- "emoji_key": "yarn"
- }, {
- "keywords": ["TRIANGLEblue-square", "RIGHT-POINTING", "play", "arrow", "forward", "direction", "arrow_forward", "BLACK", "right"],
- "emoji_key": "arrow_forward"
- }, {
- "keywords": ["Flag", "Western", "Sahara", "flag-eh"],
- "emoji_key": "flag-eh"
- }, {
- "keywords": ["CREAMfood", "ICE", "ice", "dessert", "ice_cream", "cream", "hot"],
- "emoji_key": "ice_cream"
- }, {
- "keywords": ["SIGNmoney", "japanese", "BANKNOTE", "currency", "YEN", "sales", "dollar", "WITH", "yen"],
- "emoji_key": "yen"
- }, {
- "keywords": ["transportation", "vehicle", "TROLLEYBUSbart", "trolleybus"],
- "emoji_key": "trolleybus"
- }, {
- "keywords": ["NAUSEATED", "face", "throw", "up", "ill", "nauseated", "FACEface", "green", "gross", "vomit", "nauseated_face", "sick"],
- "emoji_key": "nauseated_face"
- }, {
- "keywords": ["dinosaur", "T-REXanimal", "tyrannosaurus", "extinct", "t-rex", "nature"],
- "emoji_key": "t-rex"
- }, {
- "keywords": ["TRIANGLEblue-square", "fast", "speed", "RIGHT-POINTING", "play", "forward", "fast_forward", "DOUBLE", "BLACK", "continue"],
- "emoji_key": "fast_forward"
- }, {
- "keywords": ["Flag", "Eritrea", "flag-er"],
- "emoji_key": "flag-er"
- }, {
- "keywords": ["doughnut", "DOUGHNUTfood", "snack", "dessert", "sweet", "donut"],
- "emoji_key": "doughnut"
- }, {
- "keywords": ["ocean", "sea", "whale", "SPOUTING", "WHALEanimal", "nature"],
- "emoji_key": "whale"
- }, {
- "keywords": ["SIGNmoney", "DOLLAR", "BANKNOTE", "currency", "bill", "dollar", "sales", "WITH"],
- "emoji_key": "dollar"
- }, {
- "keywords": ["minibus", "car", "transportation", "MINIBUSvehicle"],
- "emoji_key": "minibus"
- }, {
- "keywords": ["VOMITING", "face_vomiting", "face", "FACE", "OPEN", "vomiting", "MOUTH", "WITH"],
- "emoji_key": "face_vomiting"
- }, {
- "keywords": ["double", "triangle", "", "pointing", "vertical", "with", "bar", "black", "black_right_pointing_double_triangle_with_vertical_bar", "right"],
- "emoji_key": "black_right_pointing_double_triangle_with_vertical_bar"
- }, {
- "keywords": ["Flagspain", "nation", "country", "flag", "banner", "es", "Spain"],
- "emoji_key": "es"
- }, {
- "keywords": ["COOKIEfood", "snack", "chocolate", "oreo", "dessert", "sweet", "cookie"],
- "emoji_key": "cookie"
- }, {
- "keywords": ["ocean", "sea", "nature", "WHALEanimal", "whale2"],
- "emoji_key": "whale2"
- }, {
- "keywords": ["euro", "SIGNmoney", "BANKNOTE", "currency", "EURO", "dollar", "sales", "WITH"],
- "emoji_key": "euro"
- }, {
- "keywords": ["ambulance", "911", "AMBULANCEhealth", "hospital"],
- "emoji_key": "ambulance"
- }, {
- "keywords": ["sneezing", "face", "SNEEZING", "gesundheit", "allergy", "sneezing_face", "FACEface", "sneeze", "sick"],
- "emoji_key": "sneezing_face"
- }, {
- "keywords": ["double", "triangle", "", "pointing", "vertical", "with", "bar", "black", "right", "black_right_pointing_triangle_with_double_vertical_bar"],
- "emoji_key": "black_right_pointing_triangle_with_double_vertical_bar"
- }, {
- "keywords": ["flag-et", "Ethiopia", "Flag"],
- "emoji_key": "flag-et"
- }, {
- "keywords": ["birthday", "cake", "dessert", "BIRTHDAY", "CAKEfood"],
- "emoji_key": "birthday"
- }, {
- "keywords": ["ocean", "sea", "flipper", "DOLPHINanimal", "fins", "fish", "beach", "nature", "dolphin"],
- "emoji_key": "dolphin"
- }, {
- "keywords": ["uk", "BANKNOTE", "pound", "currency", "money", "bills", "SIGNbritish", "POUND", "sales", "sterling", "WITH", "england"],
- "emoji_key": "pound"
- }, {
- "keywords": ["innocent", "SMILING", "halo", "angel", "FACE", "heaven", "WITH", "HALOface"],
- "emoji_key": "innocent"
- }, {
- "keywords": ["vehicle", "ENGINEtransportation", "fire", "FIRE", "fire_engine", "cars", "engine"],
- "emoji_key": "fire_engine"
- }, {
- "keywords": ["TRIANGLEblue-square", "LEFT-POINTING", "arrow", "direction", "arrow_backward", "BLACK", "backward", "left"],
- "emoji_key": "arrow_backward"
- }, {
- "keywords": ["flag-eu", "European", "Flag", "Union"],
- "emoji_key": "flag-eu"
- }, {
- "keywords": ["SHORTCAKEfood", "dessert", "cake"],
- "emoji_key": "cake"
- }, {
- "keywords": ["food", "fish", "FISHanimal", "nature"],
- "emoji_key": "fish"
- }, {
- "keywords": ["money", "with", "wings", "WINGSdollar", "bills", "money_with_wings", "MONEY", "sale", "WITH", "payment"],
- "emoji_key": "money_with_wings"
- }, {
- "keywords": ["legal", "enforcement", "police_car", "POLICE", "police", "law", "cars", "CARvehicle", "transportation", "car"],
- "emoji_key": "police_car"
- }, {
- "keywords": ["face", "COWBOY", "cowboy", "hat", "FACE", "with", "HAT", "WITH", "face_with_cowboy_hat"],
- "emoji_key": "face_with_cowboy_hat"
- }, {
- "keywords": ["TRIANGLEplay", "rewind", "LEFT-POINTING", "DOUBLE", "BLACK", "blue-square"],
- "emoji_key": "rewind"
- }, {
- "keywords": ["flag-fi", "Finland", "Flag"],
- "emoji_key": "flag-fi"
- }, {
- "keywords": ["tropical_fish", "ocean", "FISHanimal", "TROPICAL", "nemo", "tropical", "swim", "fish", "beach"],
- "emoji_key": "tropical_fish"
- }, {
- "keywords": ["credit_card", "card", "shopping", "bill", "CARDmoney", "dollar", "sales", "credit", "payment", "CREDIT"],
- "emoji_key": "credit_card"
- }, {
- "keywords": ["legal", "911", "ONCOMING", "enforcement", "oncoming_police_car", "POLICE", "oncoming", "police", "law", "CARvehicle", "car"],
- "emoji_key": "oncoming_police_car"
- }, {
- "keywords": ["HORN", "face", "PARTY", "AND", "FACE", "partying_face", "HAT", "WITH", "partying"],
- "emoji_key": "partying_face"
- }, {
- "keywords": ["cupcake", "CUPCAKE"],
- "emoji_key": "cupcake"
- }, {
- "keywords": ["double", "triangle", "", "pointing", "vertical", "with", "bar", "black", "black_left_pointing_double_triangle_with_vertical_bar", "left"],
- "emoji_key": "black_left_pointing_double_triangle_with_vertical_bar"
- }, {
- "keywords": ["flag-fj", "Flag", "Fiji"],
- "emoji_key": "flag-fj"
- }, {
- "keywords": ["ocean", "sea", "BLOWFISHanimal", "nature", "blowfish", "food"],
- "emoji_key": "blowfish"
- }, {
- "keywords": ["TRIANGLEblue-square", "triangle", "RED", "point", "top", "arrow", "up", "UP-POINTING", "forward", "direction", "small", "arrow_up_small", "SMALL"],
- "emoji_key": "arrow_up_small"
- }, {
- "keywords": ["vehicle", "TAXIuber", "taxi", "cars", "transportation"],
- "emoji_key": "taxi"
- }, {
- "keywords": ["dessert", "PIEfood", "pastry", "pie"],
- "emoji_key": "pie"
- }, {
- "keywords": ["WAVY", "face", "woozy", "AND", "UNEVEN", "FACE", "EYES", "woozy_face", "MOUTH", "WITH"],
- "emoji_key": "woozy_face"
- }, {
- "keywords": ["RECEIPT", "receipt"],
- "emoji_key": "receipt"
- }, {
- "keywords": ["flag-fk", "Islands", "Flag", "Falkland"],
- "emoji_key": "flag-fk"
- }, {
- "keywords": ["snack", "BARfood", "chocolate", "dessert", "sweet", "chocolate_bar", "bar", "CHOCOLATE"],
- "emoji_key": "chocolate_bar"
- }, {
- "keywords": ["SIGNgreen-square", "UPWARDS", "AND", "stats", "CHART", "presentation", "chart", "TREND", "graph", "YEN", "WITH"],
- "emoji_key": "chart"
- }, {
- "keywords": ["ONCOMING", "TAXIvehicle", "oncoming", "taxi", "oncoming_taxi", "cars", "uber"],
- "emoji_key": "oncoming_taxi"
- }, {
- "keywords": ["face", "pleading_face", "PLEADING", "FACE", "EYES", "WITH", "pleading"],
- "emoji_key": "pleading_face"
- }, {
- "keywords": ["ocean", "shark", "sea", "SHARKanimal", "fins", "fish", "beach", "jaws", "nature"],
- "emoji_key": "shark"
- }, {
- "keywords": ["double", "TRIANGLEblue-square", "top", "arrow", "up", "UP-POINTING", "direction", "arrow_double_up", "DOUBLE", "BLACK"],
- "emoji_key": "arrow_double_up"
- }, {
- "keywords": ["Flag", "Micronesia", "flag-fm"],
- "emoji_key": "flag-fm"
- }, {
- "keywords": ["dessert", "lolly", "CANDYsnack", "sweet", "candy"],
- "emoji_key": "candy"
- }, {
- "keywords": ["ocean", "sea", "OCTOPUSanimal", "octopus", "beach", "creature", "nature"],
- "emoji_key": "octopus"
- }, {
- "keywords": ["CURRENCY", "currency", "exchange", "sales", "dollar", "currency_exchange", "EXCHANGEmoney", "travel"],
- "emoji_key": "currency_exchange"
- }, {
- "keywords": ["arrow_down_small", "TRIANGLEblue-square", "RED", "arrow", "bottom", "down", "direction", "small", "SMALL", "DOWN-POINTING"],
- "emoji_key": "arrow_down_small"
- }, {
- "keywords": ["AUTOMOBILE", "car"],
- "emoji_key": "car"
- }, {
- "keywords": ["pinocchio", "face", "LYING", "FACEface", "lying_face", "lie", "lying"],
- "emoji_key": "lying_face"
- }, {
- "keywords": ["Faroe", "Flag", "Islands", "flag-fo"],
- "emoji_key": "flag-fo"
- }, {
- "keywords": ["snack", "sweet", "LOLLIPOPfood", "candy", "lollipop"],
- "emoji_key": "lollipop"
- }, {
- "keywords": ["shell", "sea", "SHELLnature", "SPIRAL", "beach"],
- "emoji_key": "shell"
- }, {
- "keywords": ["heavy", "sign", "SIGNmoney", "DOLLAR", "buck", "currency", "HEAVY", "heavy_dollar_sign", "dollar", "sales", "payment"],
- "emoji_key": "heavy_dollar_sign"
- }, {
- "keywords": ["ONCOMING", "vehicle", "oncoming", "automobile", "oncoming_automobile", "transportation", "AUTOMOBILEcar"],
- "emoji_key": "oncoming_automobile"
- }, {
- "keywords": ["LIPS", "shushing_face", "face", "COVERING", "FACE", "shushing", "FINGER", "WITH", "CLOSED"],
- "emoji_key": "shushing_face"
- }, {
- "keywords": ["double", "TRIANGLEblue-square", "arrow_double_down", "arrow", "bottom", "down", "direction", "DOUBLE", "BLACK", "DOWN-POINTING"],
- "emoji_key": "arrow_double_down"
- }, {
- "keywords": ["nation", "Flagbanner", "country", "fr", "flag", "french", "france", "France"],
- "emoji_key": "fr"
- }, {
- "keywords": ["custard", "CUSTARDdessert", "food"],
- "emoji_key": "custard"
- }, {
- "keywords": ["vehicle", "blue_car", "VEHICLEtransportation", "blue", "RECREATIONAL", "car"],
- "emoji_key": "blue_car"
- }, {
- "keywords": ["face_with_hand_over_mouth", "HAND", "SMILING", "face", "COVERING", "AND", "mouth", "FACE", "over", "with", "EYES", "MOUTH", "WITH", "hand"],
- "emoji_key": "face_with_hand_over_mouth"
- }, {
- "keywords": ["CRABanimal", "crab", "crustacean"],
- "emoji_key": "crab"
- }, {
- "keywords": ["double", "", "vertical", "double_vertical_bar", "bar"],
- "emoji_key": "double_vertical_bar"
- }, {
- "keywords": ["ENVELOPEletter", "email", "communication", "postal", "inbox"],
- "emoji_key": "email"
- }, {
- "keywords": ["Gabon", "flag-ga", "Flag"],
- "emoji_key": "flag-ga"
- }, {
- "keywords": ["pot", "kitchen", "HONEY", "honey", "honey_pot", "POTbees", "sweet"],
- "emoji_key": "honey_pot"
- }, {
- "keywords": ["SYMBOLcommunication", "E-MAIL", "inbox", "e-mail"],
- "emoji_key": "e-mail"
- }, {
- "keywords": ["TRUCKcars", "DELIVERY", "transportation", "truck"],
- "emoji_key": "truck"
- }, {
- "keywords": ["LOBSTER", "lobster"],
- "emoji_key": "lobster"
- }, {
- "keywords": ["face", "FACE", "with", "face_with_monocle", "WITH", "MONOCLE", "monocle"],
- "emoji_key": "face_with_monocle"
- }, {
- "keywords": ["", "square", "for", "black", "stop", "black_square_for_stop"],
- "emoji_key": "black_square_for_stop"
- }, {
- "keywords": ["United", "Flag", "gb", "Kingdom"],
- "emoji_key": "gb"
- }, {
- "keywords": ["BOTTLEfood", "bottle", "BABY", "baby", "milk", "container", "baby_bottle"],
- "emoji_key": "baby_bottle"
- }, {
- "keywords": ["INCOMING", "ENVELOPEemail", "incoming", "envelope", "incoming_envelope", "inbox"],
- "emoji_key": "incoming_envelope"
- }, {
- "keywords": ["express", "articulated", "LORRYvehicle", "articulated_lorry", "lorry", "cars", "ARTICULATED", "transportation"],
- "emoji_key": "articulated_lorry"
- }, {
- "keywords": ["nerd_face", "geek", "face", "dork", "nerdy", "nerd", "NERD", "FACEface"],
- "emoji_key": "nerd_face"
- }, {
- "keywords": ["ocean", "SHRIMPanimal", "shrimp", "nature", "seafood"],
- "emoji_key": "shrimp"
- }, {
- "keywords": ["", "black_circle_for_record", "circle", "for", "record", "black"],
- "emoji_key": "black_circle_for_record"
- }, {
- "keywords": ["Grenada", "flag-gd", "Flag"],
- "emoji_key": "flag-gd"
- }, {
- "keywords": ["arrow", "DOWNWARDS", "with", "ARROW", "envelope", "ENVELOPE", "envelope_with_arrow", "communication", "WITH", "ABOVEemail"],
- "emoji_key": "envelope_with_arrow"
- }, {
- "keywords": ["SMILING", "smiling", "HORNSdevil", "imp", "FACE", "horns", "smiling_imp", "WITH"],
- "emoji_key": "smiling_imp"
- }, {
- "keywords": ["agriculture", "TRACTORvehicle", "tractor", "farming", "car"],
- "emoji_key": "tractor"
- }, {
- "keywords": ["glass_of_milk", "GLASS", "OF", "of", "MILK", "glass", "milk"],
- "emoji_key": "glass_of_milk"
- }, {
- "keywords": ["ocean", "SQUIDanimal", "sea", "squid", "nature"],
- "emoji_key": "squid"
- }, {
- "keywords": ["", "eject"],
- "emoji_key": "eject"
- }, {
- "keywords": ["Georgia", "Flag", "flag-ge"],
- "emoji_key": "flag-ge"
- }, {
- "keywords": ["stage", "cinema", "theater", "CINEMAblue-square", "record", "film", "movie", "curtain"],
- "emoji_key": "cinema"
- }, {
- "keywords": ["animal", "SNAILslow", "shell", "snail"],
- "emoji_key": "snail"
- }, {
- "keywords": ["imp", "horns", "IMPdevil", "angry"],
- "emoji_key": "imp"
- }, {
- "keywords": ["tray", "outbox", "email", "OUTBOX", "outbox_tray", "TRAYinbox"],
- "emoji_key": "outbox_tray"
- }, {
- "keywords": ["hipster", "bicycle", "exercise", "BICYCLEsports", "bike"],
- "emoji_key": "bike"
- }, {
- "keywords": ["HOT", "caffeine", "espresso", "BEVERAGEbeverage", "coffee", "latte"],
- "emoji_key": "coffee"
- }, {
- "keywords": ["flag-gf", "Flag", "French", "Guiana"],
- "emoji_key": "flag-gf"
- }, {
- "keywords": ["TEACUP", "HANDLEdrink", "british", "tea", "breakfast", "WITHOUT", "green", "bowl"],
- "emoji_key": "tea"
- }, {
- "keywords": ["documents", "inbox_tray", "tray", "INBOX", "TRAYemail", "inbox"],
- "emoji_key": "inbox_tray"
- }, {
- "keywords": ["SYMBOLsun", "brightness", "warm", "summer", "LOW", "afternoon", "BRIGHTNESS", "low", "low_brightness"],
- "emoji_key": "low_brightness"
- }, {
- "keywords": ["SCOOTER", "scooter"],
- "emoji_key": "scooter"
- }, {
- "keywords": ["face", "clown", "CLOWN", "FACEface", "clown_face"],
- "emoji_key": "clown_face"
- }, {
- "keywords": ["butterfly", "caterpillar", "BUTTERFLYanimal", "insect", "nature"],
- "emoji_key": "butterfly"
- }, {
- "keywords": ["Guernsey", "Flag", "flag-gg"],
- "emoji_key": "flag-gg"
- }, {
- "keywords": ["drink", "japanese", "CUPwine", "AND", "BOTTLE", "beverage", "alcohol", "booze", "sake", "SAKE", "drunk"],
- "emoji_key": "sake"
- }, {
- "keywords": ["BUGanimal", "bug", "worm", "insect", "nature"],
- "emoji_key": "bug"
- }, {
- "keywords": ["halloween", "scary", "japanese", "creepy", "devil", "red", "OGREmonster", "japanese_ogre", "JAPANESE", "ogre", "mask", "demon"],
- "emoji_key": "japanese_ogre"
- }, {
- "keywords": ["box", "moving", "package", "gift", "cardboard", "PACKAGEmail"],
- "emoji_key": "package"
- }, {
- "keywords": ["SYMBOLsun", "high_brightness", "brightness", "high", "BRIGHTNESS", "HIGH", "light"],
- "emoji_key": "high_brightness"
- }, {
- "keywords": ["SKATEBOARD", "skateboard"],
- "emoji_key": "skateboard"
- }, {
- "keywords": ["flag-gh", "Flag", "Ghana"],
- "emoji_key": "flag-gh"
- }, {
- "keywords": ["BOTTLE", "champagne", "celebration", "POPPING", "bottle", "wine", "WITH", "CORKdrink"],
- "emoji_key": "champagne"
- }, {
- "keywords": ["ant", "bug", "ANTanimal", "insect", "nature"],
- "emoji_key": "ant"
- }, {
- "keywords": ["scary", "japanese", "evil", "creepy", "goblin", "monster", "GOBLINred", "JAPANESE", "japanese_goblin", "mask"],
- "emoji_key": "japanese_goblin"
- }, {
- "keywords": ["MAILBOX", "mailbox", "inbox", "FLAGemail", "RAISED", "communication", "WITH", "CLOSED"],
- "emoji_key": "mailbox"
- }, {
- "keywords": ["BARSblue-square", "strength", "signal_strength", "bluetooth", "ANTENNA", "wifi", "phone", "signal", "connection", "internet", "bars", "WITH", "reception"],
- "emoji_key": "signal_strength"
- }, {
- "keywords": ["sasha", "scooter", "SCOOTERvehicle", "vespa", "motor", "motor_scooter", "MOTOR"],
- "emoji_key": "motor_scooter"
- }, {
- "keywords": ["Gibraltar", "Flag", "flag-gi"],
- "emoji_key": "flag-gi"
- }, {
- "keywords": ["wine_glass", "alcohol", "drunk", "booze", "glass", "GLASSdrink", "wine", "beverage", "WINE"],
- "emoji_key": "wine_glass"
- }, {
- "keywords": ["bee", "HONEYBEE"],
- "emoji_key": "bee"
- }, {
- "keywords": ["creepy", "skull", "death", "skeleton", "SKULLdead"],
- "emoji_key": "skull"
- }, {
- "keywords": ["MAILBOX", "mailbox", "LOWERED", "inbox", "FLAGemail", "mailbox_closed", "communication", "closed", "WITH", "CLOSED"],
- "emoji_key": "mailbox_closed"
- }, {
- "keywords": ["MODEorange-square", "phone", "vibration_mode", "mode", "VIBRATION", "vibration"],
- "emoji_key": "vibration_mode"
- }, {
- "keywords": ["BUS", "wait", "STOPtransportation", "busstop"],
- "emoji_key": "busstop"
- }, {
- "keywords": ["Greenland", "Flag", "flag-gl"],
- "emoji_key": "flag-gl"
- }, {
- "keywords": ["cocktail", "beverage", "alcohol", "booze", "COCKTAIL", "mojito", "GLASSdrink", "drunk"],
- "emoji_key": "cocktail"
- }, {
- "keywords": ["BEETLEanimal", "LADY", "ladybug", "beetle", "insect", "nature"],
- "emoji_key": "beetle"
- }, {
- "keywords": ["MAILBOX", "mailbox", "mail", "FLAGemail", "RAISED", "with", "OPEN", "communication", "mailbox_with_mail", "WITH", "inbox"],
- "emoji_key": "mailbox_with_mail"
- }, {
- "keywords": ["orange-square", "MOBILE", "off", "silence", "OFFmute", "phone", "PHONE", "quiet", "mobile_phone_off", "mobile"],
- "emoji_key": "mobile_phone_off"
- }, {
- "keywords": ["road", "highway", "interstate", "motorway", "cupertino"],
- "emoji_key": "motorway"
- }, {
- "keywords": ["danger", "evil", "and", "skull", "pirate", "death", "skull_and_crossbones", "poison", "scary", "deadly", "crossbones"],
- "emoji_key": "skull_and_crossbones"
- }, {
- "keywords": ["Gambia", "Flag", "flag-gm"],
- "emoji_key": "flag-gm"
- }, {
- "keywords": ["drink", "TROPICAL", "cocktail", "alcohol", "booze", "mojito", "tropical", "summer", "tropical_drink", "beach", "DRINKbeverage"],
- "emoji_key": "tropical_drink"
- }, {
- "keywords": ["GHOSThalloween", "scary", "ghost", "spooky"],
- "emoji_key": "ghost"
- }, {
- "keywords": ["MAILBOX", "mailbox", "LOWERED", "mail", "FLAGemail", "mailbox_with_no_mail", "with", "OPEN", "no", "WITH", "inbox"],
- "emoji_key": "mailbox_with_no_mail"
- }, {
- "keywords": ["track", "railway", "railway_track", "train", "transportation"],
- "emoji_key": "railway_track"
- }, {
- "keywords": ["cricket", "CRICKETsports"],
- "emoji_key": "cricket"
- }, {
- "keywords": ["", "female_sign", "female", "sign"],
- "emoji_key": "female_sign"
- }, {
- "keywords": ["Flag", "flag-gn", "Guinea"],
- "emoji_key": "flag-gn"
- }, {
- "keywords": ["drink", "MUGrelax", "pub", "BEER", "alcohol", "drunk", "booze", "summer", "party", "beer", "beverage"],
- "emoji_key": "beer"
- }, {
- "keywords": ["space", "outer", "alien", "paul", "ALIENUFO", "weird", "EXTRATERRESTRIAL"],
- "emoji_key": "alien"
- }, {
- "keywords": ["POSTBOXemail", "postbox", "envelope", "letter"],
- "emoji_key": "postbox"
- }, {
- "keywords": ["arachnid", "spider", "animal"],
- "emoji_key": "spider"
- }, {
- "keywords": ["oil_drum", "oil", "barrell", "drum"],
- "emoji_key": "oil_drum"
- }, {
- "keywords": ["male", "", "male_sign", "sign"],
- "emoji_key": "male_sign"
- }, {
- "keywords": ["Flag", "flag-gp", "Guadeloupe"],
- "emoji_key": "flag-gp"
- }, {
- "keywords": ["drink", "beers", "BEER", "pub", "CLINKING", "alcohol", "drunk", "booze", "summer", "party", "beverage", "MUGSrelax"],
- "emoji_key": "beers"
- }, {
- "keywords": ["space", "play", "invader", "space_invader", "arcade", "ALIEN", "MONSTERgame"],
- "emoji_key": "space_invader"
- }, {
- "keywords": ["arachnid", "insect", "spider_web", "web", "silk", "spider", "animal"],
- "emoji_key": "spider_web"
- }, {
- "keywords": ["", "box", "ballot_box_with_ballot", "with", "ballot"],
- "emoji_key": "ballot_box_with_ballot"
- }, {
- "keywords": ["", "symbol", "medical_symbol", "medical"],
- "emoji_key": "medical_symbol"
- }, {
- "keywords": ["FUEL", "petroleum", "PUMPgas", "station", "fuelpump"],
- "emoji_key": "fuelpump"
- }, {
- "keywords": ["Flag", "Guinea", "flag-gq", "Equatorial"],
- "emoji_key": "flag-gq"
- }, {
- "keywords": ["CARS", "ambulance", "rotating", "LIGHTpolice", "911", "emergency", "alert", "pinged", "POLICE", "legal", "law", "rotating_light", "REVOLVING", "error", "light"],
- "emoji_key": "rotating_light"
- }, {
- "keywords": ["face", "robot_face", "FACE", "robot", "ROBOT"],
- "emoji_key": "robot_face"
- }, {
- "keywords": ["drink", "clinking_glasses", "CLINKING", "alcohol", "celebrate", "glasses", "party", "cheers", "clinking", "GLASSESbeverage"],
- "emoji_key": "clinking_glasses"
- }, {
- "keywords": ["arachnid", "scorpion", "SCORPIONanimal"],
- "emoji_key": "scorpion"
- }, {
- "keywords": ["", "infinity"],
- "emoji_key": "infinity"
- }, {
- "keywords": ["pencil2", "writing", "school", "paper", "study", "PENCILstationery", "write"],
- "emoji_key": "pencil2"
- }, {
- "keywords": ["flag-gr", "Flag", "Greece"],
- "emoji_key": "flag-gr"
- }, {
- "keywords": ["hankey", "POO", "OF", "PILE"],
- "emoji_key": "hankey"
- }, {
- "keywords": ["LIGHTtransportation", "TRAFFIC", "traffic_light", "HORIZONTAL", "signal", "traffic", "light"],
- "emoji_key": "traffic_light"
- }, {
- "keywords": ["TUMBLER", "shot", "alcohol", "drunk", "booze", "scotch", "tumbler_glass", "bourbon", "whisky", "glass", "liquor", "GLASSdrink", "beverage", "tumbler"],
- "emoji_key": "tumbler_glass"
- }, {
- "keywords": ["mosquito", "MOSQUITO"],
- "emoji_key": "mosquito"
- }, {
- "keywords": ["SYMBOLarrow", "trash", "RECYCLING", "garbage", "UNIVERSAL", "BLACK", "recycle", "environment"],
- "emoji_key": "recycle"
- }, {
- "keywords": ["NIBpen", "nib", "writing", "black_nib", "write", "black", "BLACK", "stationery"],
- "emoji_key": "black_nib"
- }, {
- "keywords": ["Georgia", "Sandwich", "South", "Islands", "&", "flag-gs", "Flag"],
- "emoji_key": "flag-gs"
- }, {
- "keywords": ["", "lower_left_fountain_pen", "fountain", "lower", "pen", "left"],
- "emoji_key": "lower_left_fountain_pen"
- }, {
- "keywords": ["MOUTHanimal", "SMILING", "smiley", "happy", "FACE", "CAT", "OPEN", "smile", "cats", "smiley_cat", "cat", "WITH"],
- "emoji_key": "smiley_cat"
- }, {
- "keywords": ["LIGHTtransportation", "TRAFFIC", "driving", "vertical", "VERTICAL", "traffic", "vertical_traffic_light", "light"],
- "emoji_key": "vertical_traffic_light"
- }, {
- "keywords": ["CUP", "straw", "with", "soda", "cup_with_straw", "STRAWdrink", "WITH", "cup"],
- "emoji_key": "cup_with_straw"
- }, {
- "keywords": ["microbe", "MICROBE"],
- "emoji_key": "microbe"
- }, {
- "keywords": ["fleur_de_lis", "fleur", "scout", "lis", "decorative", "de"],
- "emoji_key": "fleur_de_lis"
- }, {
- "keywords": ["Flag", "Guatemala", "flag-gt"],
- "emoji_key": "flag-gt"
- }, {
- "keywords": ["spring", "BOUQUETflowers", "nature", "bouquet"],
- "emoji_key": "bouquet"
- }, {
- "keywords": ["TRIDENT", "EMBLEMweapon", "trident", "spear"],
- "emoji_key": "trident"
- }, {
- "keywords": ["", "ballpoint", "lower", "pen", "lower_left_ballpoint_pen", "left"],
- "emoji_key": "lower_left_ballpoint_pen"
- }, {
- "keywords": ["SMILING", "GRINNING", "FACE", "CAT", "smile_cat", "EYESanimal", "smile", "cats", "cat", "WITH"],
- "emoji_key": "smile_cat"
- }, {
- "keywords": ["sign", "SIGN", "octagonal", "octagonal_sign", "OCTAGONAL"],
- "emoji_key": "octagonal_sign"
- }, {
- "keywords": ["CHOPSTICKSfood", "chopsticks"],
- "emoji_key": "chopsticks"
- }, {
- "keywords": ["Guam", "flag-gu", "Flag"],
- "emoji_key": "flag-gu"
- }, {
- "keywords": ["cherry_blossom", "BLOSSOMnature", "blossom", "plant", "cherry", "spring", "CHERRY", "flower"],
- "emoji_key": "cherry_blossom"
- }, {
- "keywords": ["", "plate", "knife", "knife_fork_plate", "fork"],
- "emoji_key": "knife_fork_plate"
- }, {
- "keywords": ["name", "NAME", "forbid", "BADGEfire", "name_badge", "badge"],
- "emoji_key": "name_badge"
- }, {
- "keywords": ["", "lower", "paintbrush", "lower_left_paintbrush", "left"],
- "emoji_key": "lower_left_paintbrush"
- }, {
- "keywords": ["haha", "OF", "TEARS", "happy", "FACE", "joy", "JOYanimal", "CAT", "joy_cat", "cats", "tears", "cat", "WITH"],
- "emoji_key": "joy_cat"
- }, {
- "keywords": ["caution", "progress", "CONSTRUCTION", "warning", "construction", "SIGNwip"],
- "emoji_key": "construction"
- }, {
- "keywords": ["flag-gw", "Guinea-Bissau", "Flag"],
- "emoji_key": "flag-gw"
- }, {
- "keywords": ["KNIFEcutlery", "kitchen", "and", "FORK", "AND", "knife", "fork", "fork_and_knife"],
- "emoji_key": "fork_and_knife"
- }, {
- "keywords": ["flower", "WHITE", "white", "spring", "white_flower", "FLOWERjapanese"],
- "emoji_key": "white_flower"
- }, {
- "keywords": ["SYMBOL", "shield", "FOR", "JAPANESE", "BEGINNERbadge", "beginner"],
- "emoji_key": "beginner"
- }, {
- "keywords": ["", "lower_left_crayon", "crayon", "lower", "left"],
- "emoji_key": "lower_left_crayon"
- }, {
- "keywords": ["affection", "SMILING", "like", "FACE", "heart", "eyes", "CAT", "HEART-SHAPED", "EYESanimal", "love", "cats", "valentines", "cat", "WITH", "heart_eyes_cat"],
- "emoji_key": "heart_eyes_cat"
- }, {
- "keywords": ["ferry", "sea", "boat", "ANCHORship", "anchor"],
- "emoji_key": "anchor"
- }, {
- "keywords": ["Flag", "Guyana", "flag-gy"],
- "emoji_key": "flag-gy"
- }, {
- "keywords": ["decoration", "flower", "rosette", "military"],
- "emoji_key": "rosette"
- }, {
- "keywords": ["legal", "documents", "writing", "MEMOwrite", "paper", "quiz", "study", "exam", "test", "compose", "memo", "stationery", "pencil"],
- "emoji_key": "memo"
- }, {
- "keywords": ["smirk", "FACE", "CAT", "WRY", "smirk_cat", "SMILEanimal", "cats", "cat", "WITH"],
- "emoji_key": "smirk_cat"
- }, {
- "keywords": ["SPOONcutlery", "tableware", "kitchen", "spoon"],
- "emoji_key": "spoon"
- }, {
- "keywords": ["SAILBOAT", "boat"],
- "emoji_key": "boat"
- }, {
- "keywords": ["round", "CIRCLEcircle", "HEAVY", "LARGE", "o"],
- "emoji_key": "o"
- }, {
- "keywords": ["Kong", "flag-hk", "SAR", "China", "Hong", "Flag"],
- "emoji_key": "flag-hk"
- }, {
- "keywords": ["rose", "love", "spring", "ROSEflowers", "valentines"],
- "emoji_key": "rose"
- }, {
- "keywords": ["legal", "documents", "briefcase", "law", "job", "career", "BRIEFCASEbusiness", "work"],
- "emoji_key": "briefcase"
- }, {
- "keywords": ["hocho", "HOCHOknife", "kitchen", "blade", "weapon", "cutlery"],
- "emoji_key": "hocho"
- }, {
- "keywords": ["kissing", "KISSING", "kissing_cat", "FACE", "CAT", "EYESanimal", "cats", "kiss", "cat", "WITH", "CLOSED"],
- "emoji_key": "kissing_cat"
- }, {
- "keywords": ["water", "paddle", "CANOEboat", "canoe", "ship"],
- "emoji_key": "canoe"
- }, {
- "keywords": ["check", "MARKgreen-square", "vote", "answer", "white_check_mark", "ok", "HEAVY", "WHITE", "white", "tick", "CHECK", "election", "agree", "mark"],
- "emoji_key": "white_check_mark"
- }, {
- "keywords": ["Islands", "flag-hm", "McDonald", "&", "Heard", "Flag"],
- "emoji_key": "flag-hm"
- }, {
- "keywords": ["amphora", "jar", "AMPHORAvase"],
- "emoji_key": "amphora"
- }, {
- "keywords": ["FILE", "business", "office", "file_folder", "folder", "file", "FOLDERdocuments"],
- "emoji_key": "file_folder"
- }, {
- "keywords": ["scared", "CAT", "scream_cat", "scream", "munch", "cats", "WEARY", "cat", "FACEanimal"],
- "emoji_key": "scream_cat"
- }, {
- "keywords": ["vehicle", "summer", "speedboat", "transportation", "SPEEDBOATship"],
- "emoji_key": "speedboat"
- }, {
- "keywords": ["wilted_flower", "WILTED", "wilted", "flower", "nature", "FLOWERplant"],
- "emoji_key": "wilted_flower"
- }, {
- "keywords": ["check", "yes", "box", "BOX", "CHECKok", "BALLOT", "vote", "confirm", "black-square", "with", "tick", "election", "ballot", "WITH", "ballot_box_with_check", "agree"],
- "emoji_key": "ballot_box_with_check"
- }, {
- "keywords": ["Honduras", "Flag", "flag-hn"],
- "emoji_key": "flag-hn"
- }, {
- "keywords": ["hibiscus", "HIBISCUSplant", "vegetable", "beach", "flowers"],
- "emoji_key": "hibiscus"
- }, {
- "keywords": ["open", "FILE", "OPEN", "file", "folder", "load", "open_file_folder", "FOLDERdocuments"],
- "emoji_key": "open_file_folder"
- }, {
- "keywords": ["cry", "face", "CRYING", "sad", "CAT", "tears", "cats", "upset", "FACEanimal", "weep", "crying", "cat", "crying_cat_face"],
- "emoji_key": "crying_cat_face"
- }, {
- "keywords": ["passenger_ship", "ferry", "passenger", "yacht", "cruise", "ship"],
- "emoji_key": "passenger_ship"
- }, {
- "keywords": ["check", "nike", "heavy", "yes", "answer", "HEAVY", "heavy_check_mark", "tick", "CHECK", "mark", "MARKok"],
- "emoji_key": "heavy_check_mark"
- }, {
- "keywords": ["Croatia", "Flag", "flag-hr"],
- "emoji_key": "flag-hr"
- }, {
- "keywords": ["fall", "plant", "sunflower", "SUNFLOWERnature"],
- "emoji_key": "sunflower"
- }, {
- "keywords": ["card", "business", "index", "card_index_dividers", "organizing", "stationery", "dividers"],
- "emoji_key": "card_index_dividers"
- }, {
- "keywords": ["pouting", "pouting_cat", "CAT", "cats", "POUTING", "cat", "FACEanimal"],
- "emoji_key": "pouting_cat"
- }, {
- "keywords": ["yacht", "ferry", "boat", "ship"],
- "emoji_key": "ferry"
- }, {
- "keywords": ["MULTIPLICATION", "heavy", "calculation", "Xmath", "HEAVY", "multiplication", "x", "heavy_multiplication_x"],
- "emoji_key": "heavy_multiplication_x"
- }, {
- "keywords": ["Haiti", "Flag", "flag-ht"],
- "emoji_key": "flag-ht"
- }, {
- "keywords": ["yellow", "blossom", "BLOSSOMnature", "flowers"],
- "emoji_key": "blossom"
- }, {
- "keywords": ["schedule", "CALENDARcalendar", "date"],
- "emoji_key": "date"
- }, {
- "keywords": ["SEE-NO-EVIL", "haha", "evil", "see_no_evil", "MONKEYmonkey", "no", "animal", "nature", "see"],
- "emoji_key": "see_no_evil"
- }, {
- "keywords": ["motor_boat", "boat", "ship", "motor"],
- "emoji_key": "motor_boat"
- }, {
- "keywords": ["cancel", "remove", "CROSS", "x", "delete", "MARKno"],
- "emoji_key": "x"
- }, {
- "keywords": ["Flag", "flag-hu", "Hungary"],
- "emoji_key": "flag-hu"
- }, {
- "keywords": ["tulip", "summer", "plant", "spring", "TULIPflowers", "nature"],
- "emoji_key": "tulip"
- }, {
- "keywords": ["TEAR-OFF", "CALENDARschedule", "planning", "date", "calendar"],
- "emoji_key": "calendar"
- }, {
- "keywords": ["evil", "hear_no_evil", "monkey", "no", "hear", "MONKEYanimal", "HEAR-NO-EVIL", "nature"],
- "emoji_key": "hear_no_evil"
- }, {
- "keywords": ["titanic", "ship", "deploy", "SHIPtransportation"],
- "emoji_key": "ship"
- }, {
- "keywords": ["negative_squared_cross_mark", "deny", "squared", "negative", "CROSS", "MARKx", "cross", "green-square", "no", "SQUARED", "NEGATIVE", "mark"],
- "emoji_key": "negative_squared_cross_mark"
- }, {
- "keywords": ["flag-ic", "Islands", "Flag", "Canary"],
- "emoji_key": "flag-ic"
- }, {
- "keywords": ["lawn", "seedling", "spring", "grass", "SEEDLINGplant", "nature"],
- "emoji_key": "seedling"
- }, {
- "keywords": ["", "note", "pad", "spiral", "spiral_note_pad"],
- "emoji_key": "spiral_note_pad"
- }, {
- "keywords": ["evil", "SPEAK-NO-EVIL", "omg", "speak", "speak_no_evil", "MONKEYmonkey", "no", "animal", "nature"],
- "emoji_key": "speak_no_evil"
- }, {
- "keywords": ["AIRPLANEvehicle", "fly", "flight", "airplane", "transportation"],
- "emoji_key": "airplane"
- }, {
- "keywords": ["heavy", "sign", "heavy_plus_sign", "addition", "SIGNmath", "calculation", "increase", "HEAVY", "more", "PLUS", "plus"],
- "emoji_key": "heavy_plus_sign"
- }, {
- "keywords": ["Indonesia", "flag-id", "Flag"],
- "emoji_key": "flag-id"
- }, {
- "keywords": ["TREEplant", "evergreen_tree", "tree", "evergreen", "EVERGREEN", "nature"],
- "emoji_key": "evergreen_tree"
- }, {
- "keywords": ["toddler", "BABYchild", "boy", "baby", "girl"],
- "emoji_key": "baby"
- }, {
- "keywords": ["", "pad", "spiral", "calendar", "spiral_calendar_pad"],
- "emoji_key": "spiral_calendar_pad"
- }, {
- "keywords": ["vehicle", "fly", "small", "flight", "airplane", "small_airplane", "transportation"],
- "emoji_key": "small_airplane"
- }, {
- "keywords": ["heavy", "sign", "MINUS", "less", "SIGNmath", "calculation", "HEAVY", "minus", "subtract", "heavy_minus_sign"],
- "emoji_key": "heavy_minus_sign"
- }, {
- "keywords": ["Ireland", "Flag", "flag-ie"],
- "emoji_key": "flag-ie"
- }, {
- "keywords": ["DECIDUOUS", "TREEplant", "deciduous_tree", "tree", "deciduous", "nature"],
- "emoji_key": "deciduous_tree"
- }, {
- "keywords": ["card", "index", "INDEXbusiness", "CARD", "card_index", "stationery"],
- "emoji_key": "card_index"
- }, {
- "keywords": ["DEPARTURE", "airplane_departure", "AIRPLANE", "departure", "airplane"],
- "emoji_key": "airplane_departure"
- }, {
- "keywords": ["child", "CHILDgender-neutral", "young"],
- "emoji_key": "child"
- }, {
- "keywords": ["math", "heavy", "sign", "calculation", "heavy_division_sign", "HEAVY", "division", "SIGNdivide", "DIVISION"],
- "emoji_key": "heavy_division_sign"
- }, {
- "keywords": ["flag-il", "Flag", "Israel"],
- "emoji_key": "flag-il"
- }, {
- "keywords": ["vegetable", "TREEplant", "mojito", "summer", "tropical", "tree", "PALM", "beach", "palm_tree", "nature", "palm"],
- "emoji_key": "palm_tree"
- }, {
- "keywords": ["teenager", "guy", "boy", "male", "BOYman"],
- "emoji_key": "boy"
- }, {
- "keywords": ["business", "UPWARDS", "economics", "good", "success", "stats", "CHART", "presentation", "with", "chart", "chart_with_upwards_trend", "TRENDgraph", "money", "trend", "sales", "recovery", "WITH", "upwards"],
- "emoji_key": "chart_with_upwards_trend"
- }, {
- "keywords": ["AIRPLANE", "airplane_arriving", "airplane", "arriving", "ARRIVING"],
- "emoji_key": "airplane_arriving"
- }, {
- "keywords": ["curly_loop", "shape", "loop", "curly", "CURLY", "squiggle", "draw", "LOOPscribble"],
- "emoji_key": "curly_loop"
- }, {
- "keywords": ["Isle", "flag-im", "Man", "of", "Flag"],
- "emoji_key": "flag-im"
- }, {
- "keywords": ["CACTUSvegetable", "plant", "nature", "cactus"],
- "emoji_key": "cactus"
- }, {
- "keywords": ["GIRLfemale", "girl", "teenager", "woman"],
- "emoji_key": "girl"
- }, {
- "keywords": ["SEATsit", "fly", "airplane", "transport", "flight", "seat", "bus"],
- "emoji_key": "seat"
- }, {
- "keywords": ["recession", "business", "economics", "downwards", "DOWNWARDS", "stats", "CHART", "presentation", "with", "chart", "chart_with_downwards_trend", "TRENDgraph", "money", "failure", "trend", "bad", "sales", "WITH"],
- "emoji_key": "chart_with_downwards_trend"
- }, {
- "keywords": ["LOOPtape", "loop", "cassette", "CURLY", "DOUBLE"],
- "emoji_key": "loop"
- }, {
- "keywords": ["Flag", "flag-in", "India"],
- "emoji_key": "flag-in"
- }, {
- "keywords": ["rice", "OF", "RICEnature", "plant", "of", "EAR", "ear", "ear_of_rice"],
- "emoji_key": "ear_of_rice"
- }, {
- "keywords": ["stats", "bar_chart", "presentation", "chart", "BAR", "CHARTgraph", "bar"],
- "emoji_key": "bar_chart"
- }, {
- "keywords": ["helicopter", "HELICOPTERtransportation", "vehicle", "fly"],
- "emoji_key": "helicopter"
- }, {
- "keywords": ["ADULTgender-neutral", "adult", "person"],
- "emoji_key": "adult"
- }, {
- "keywords": ["part_alternation_mark", "business", "MARKgraph", "economics", "alternation", "PART", "ALTERNATION", "stats", "presentation", "bad", "mark", "part"],
- "emoji_key": "part_alternation_mark"
- }, {
- "keywords": ["Indian", "British", "Ocean", "flag-io", "Flag", "Territory"],
- "emoji_key": "flag-io"
- }, {
- "keywords": ["weed", "lawn", "medicine", "plant", "herb", "grass", "HERBvegetable"],
- "emoji_key": "herb"
- }, {
- "keywords": ["dad", "father", "classy", "guy", "sir", "MANmustache", "man", "moustache"],
- "emoji_key": "man"
- }, {
- "keywords": ["documents", "CLIPBOARDstationery", "clipboard"],
- "emoji_key": "clipboard"
- }, {
- "keywords": ["RAILWAYvehicle", "suspension_railway", "suspension", "railway", "transportation", "SUSPENSION"],
- "emoji_key": "suspension_railway"
- }, {
- "keywords": ["eight", "sparkle", "ASTERISKstar", "SPOKED", "green-square", "EIGHT", "eight_spoked_asterisk", "spoked", "asterisk"],
- "emoji_key": "eight_spoked_asterisk"
- }, {
- "keywords": ["Iraq", "Flag", "flag-iq"],
- "emoji_key": "flag-iq"
- }, {
- "keywords": ["lady", "girls", "WOMANfemale", "woman"],
- "emoji_key": "woman"
- }, {
- "keywords": ["PUSHPINstationery", "here", "mark", "pushpin"],
- "emoji_key": "pushpin"
- }, {
- "keywords": ["mountain", "vehicle", "cableway", "CABLEWAYtransportation", "ski", "mountain_cableway", "MOUNTAIN"],
- "emoji_key": "mountain_cableway"
- }, {
- "keywords": ["shamrock", "vegetable", "plant", "clover", "irish", "nature"],
- "emoji_key": "shamrock"
- }, {
- "keywords": ["eight", "pointed", "shape", "polygon", "POINTED", "eight_pointed_black_star", "black", "EIGHT", "BLACK", "STARorange-square", "star"],
- "emoji_key": "eight_pointed_black_star"
- }, {
- "keywords": ["flag-ir", "Flag", "Iran"],
- "emoji_key": "flag-ir"
- }, {
- "keywords": ["lucky", "four_leaf_clover", "nature", "FOUR", "plant", "clover", "four", "CLOVERvegetable", "irish", "LEAF", "leaf"],
- "emoji_key": "four_leaf_clover"
- }, {
- "keywords": ["round", "here", "map", "PUSHPINstationery", "location", "pushpin", "ROUND", "round_pushpin"],
- "emoji_key": "round_pushpin"
- }, {
- "keywords": ["vehicle", "AERIAL", "aerial_tramway", "aerial", "tramway", "ski", "TRAMWAYtransportation"],
- "emoji_key": "aerial_tramway"
- }, {
- "keywords": ["adult", "older_adult", "ADULThuman", "gender-neutral", "senior", "elder", "older", "OLDER"],
- "emoji_key": "older_adult"
- }, {
- "keywords": ["good", "awesome", "sparkle", "fireworks", "green-square", "SPARKLEstars"],
- "emoji_key": "sparkle"
- }, {
- "keywords": ["flag-is", "Iceland", "Flag"],
- "emoji_key": "flag-is"
- }, {
- "keywords": ["MAPLE", "vegetable", "fall", "plant", "maple_leaf", "ca", "maple", "leaf", "LEAFnature"],
- "emoji_key": "maple_leaf"
- }, {
- "keywords": ["MANhuman", "older_man", "men", "old", "senior", "male", "man", "elder", "older", "OLDER"],
- "emoji_key": "older_man"
- }, {
- "keywords": ["stationery", "paperclip", "PAPERCLIPdocuments"],
- "emoji_key": "paperclip"
- }, {
- "keywords": ["space", "radio", "satellite", "communication", "future"],
- "emoji_key": "satellite"
- }, {
- "keywords": ["bangbang", "surprise", "MARKexclamation", "DOUBLE", "EXCLAMATION"],
- "emoji_key": "bangbang"
- }, {
- "keywords": ["nation", "country", "Italy", "flag", "banner", "it", "Flagitaly"],
- "emoji_key": "it"
- }, {
- "keywords": ["fallen_leaf", "vegetable", "FALLEN", "fallen", "plant", "leaves", "leaf", "LEAFnature"],
- "emoji_key": "fallen_leaf"
- }, {
- "keywords": ["older_woman", "lady", "WOMANhuman", "women", "old", "senior", "woman", "elder", "older", "female", "OLDER"],
- "emoji_key": "older_woman"
- }, {
- "keywords": ["linked_paperclips", "", "linked", "paperclips"],
- "emoji_key": "linked_paperclips"
- }, {
- "keywords": ["NASA", "space", "outer", "fly", "staffmode", "ROCKETlaunch", "ship", "rocket"],
- "emoji_key": "rocket"
- }, {
- "keywords": ["surprise", "interrobang", "MARKwat", "punctuation", "EXCLAMATION", "QUESTION"],
- "emoji_key": "interrobang"
- }, {
- "keywords": ["Jersey", "Flag", "flag-je"],
- "emoji_key": "flag-je"
- }, {
- "keywords": ["lawn", "vegetable", "IN", "WINDnature", "FLUTTERING", "plant", "tree", "spring", "grass", "leaves", "LEAF"],
- "emoji_key": "leaves"
- }, {
- "keywords": ["", "male-doctor"],
- "emoji_key": "male-doctor"
- }, {
- "keywords": ["ruler", "STRAIGHT", "straight_ruler", "math", "school", "architect", "drawing", "calculate", "length", "sketch", "RULERstationery", "straight"],
- "emoji_key": "straight_ruler"
- }, {
- "keywords": ["vehicle", "flying", "FLYING", "SAUCERtransportation", "saucer", "ufo", "flying_saucer"],
- "emoji_key": "flying_saucer"
- }, {
- "keywords": ["confused", "question", "ORNAMENTdoubt", "BLACK", "QUESTION", "MARK"],
- "emoji_key": "question"
- }, {
- "keywords": ["Flag", "flag-jm", "Jamaica"],
- "emoji_key": "flag-jm"
- }, {
- "keywords": ["", "female-doctor"],
- "emoji_key": "female-doctor"
- }, {
- "keywords": ["TRIANGULAR", "ruler", "math", "architect", "triangular_ruler", "triangular", "sketch", "RULERstationery"],
- "emoji_key": "triangular_ruler"
- }, {
- "keywords": ["bellhop_bell", "bellhop", "service", "bell"],
- "emoji_key": "bellhop_bell"
- }, {
- "keywords": ["grey_question", "gray", "confused", "huh", "question", "WHITE", "ORNAMENTdoubts", "QUESTION", "MARK", "grey"],
- "emoji_key": "grey_question"
- }, {
- "keywords": ["Flag", "flag-jo", "Jordan"],
- "emoji_key": "flag-jo"
- }, {
- "keywords": ["", "male-student"],
- "emoji_key": "male-student"
- }, {
- "keywords": ["LUGGAGE", "luggage"],
- "emoji_key": "luggage"
- }, {
- "keywords": ["BLACK", "SCISSORSstationery", "cut", "scissors"],
- "emoji_key": "scissors"
- }, {
- "keywords": ["exclamation", "wow", "gray", "ORNAMENTsurprise", "WHITE", "warning", "grey_exclamation", "punctuation", "EXCLAMATION", "MARK", "grey"],
- "emoji_key": "grey_exclamation"
- }, {
- "keywords": ["Flagjapanese", "Japan", "nation", "country", "jp", "flag", "banner"],
- "emoji_key": "jp"
- }, {
- "keywords": ["female-student", ""],
- "emoji_key": "female-student"
- }, {
- "keywords": ["business", "card", "box", "card_file_box", "stationery", "file"],
- "emoji_key": "card_file_box"
- }, {
- "keywords": ["HOURGLASStime", "hourglass", "quiz", "exam", "test", "clock", "oldschool", "limit"],
- "emoji_key": "hourglass"
- }, {
- "keywords": ["exclamation", "surprise", "wow", "danger", "HEAVY", "warning", "punctuation", "EXCLAMATION", "SYMBOLheavy", "MARK", "mark"],
- "emoji_key": "exclamation"
- }, {
- "keywords": ["Flag", "Kenya", "flag-ke"],
- "emoji_key": "flag-ke"
- }, {
- "keywords": ["", "male-teacher"],
- "emoji_key": "male-teacher"
- }, {
- "keywords": ["organizing", "file_cabinet", "cabinet", "file", "filing"],
- "emoji_key": "file_cabinet"
- }, {
- "keywords": ["sand", "FLOWING", "hourglass", "flowing", "HOURGLASS", "time", "countdown", "SANDoldschool", "hourglass_flowing_sand", "WITH"],
- "emoji_key": "hourglass_flowing_sand"
- }, {
- "keywords": ["WAVY", "DASHdraw", "line", "mustache", "wavy_dash", "scribble", "squiggle", "wavy", "moustache", "dash"],
- "emoji_key": "wavy_dash"
- }, {
- "keywords": ["legal", "copyright", "law", "circle", "SIGNip", "license", "COPYRIGHT"],
- "emoji_key": "copyright"
- }, {
- "keywords": ["Kyrgyzstan", "Flag", "flag-kg"],
- "emoji_key": "flag-kg"
- }, {
- "keywords": ["female-teacher", ""],
- "emoji_key": "female-teacher"
- }, {
- "keywords": ["toss", "bin", "trash", "garbage", "wastebasket", "rubbish"],
- "emoji_key": "wastebasket"
- }, {
- "keywords": ["accessories", "WATCHtime", "watch"],
- "emoji_key": "watch"
- }, {
- "keywords": ["REGISTERED", "SIGNalphabet", "registered", "circle"],
- "emoji_key": "registered"
- }, {
- "keywords": ["Cambodia", "Flag", "flag-kh"],
- "emoji_key": "flag-kh"
- }, {
- "keywords": ["", "male-judge"],
- "emoji_key": "male-judge"
- }, {
- "keywords": ["password", "LOCKsecurity", "lock", "padlock"],
- "emoji_key": "lock"
- }, {
- "keywords": ["wake", "alarm", "ALARM", "alarm_clock", "clock", "CLOCKtime"],
- "emoji_key": "alarm_clock"
- }, {
- "keywords": ["Kiribati", "flag-ki", "Flag"],
- "emoji_key": "flag-ki"
- }, {
- "keywords": ["", "female-judge"],
- "emoji_key": "female-judge"
- }, {
- "keywords": ["OPEN", "security", "unlock", "LOCKprivacy"],
- "emoji_key": "unlock"
- }, {
- "keywords": ["legal", "tm", "law", "brand", "TRADE", "MARK", "SIGNtrademark"],
- "emoji_key": "tm"
- }, {
- "keywords": ["deadline", "stopwatch", "time"],
- "emoji_key": "stopwatch"
- }, {
- "keywords": ["KEYsymbol", "HASH", "hash", "blue-square", "twitter"],
- "emoji_key": "hash"
- }, {
- "keywords": ["Comoros", "Flag", "flag-km"],
- "emoji_key": "flag-km"
- }, {
- "keywords": ["male-farmer", ""],
- "emoji_key": "male-farmer"
- }, {
- "keywords": ["PENsecurity", "secret", "LOCK", "pen", "with", "lock_with_ink_pen", "ink", "WITH", "lock", "INK"],
- "emoji_key": "lock_with_ink_pen"
- }, {
- "keywords": ["alarm", "timer", "clock", "timer_clock"],
- "emoji_key": "timer_clock"
- }, {
- "keywords": ["keycap", "", "star", "keycap_star"],
- "emoji_key": "keycap_star"
- }, {
- "keywords": ["Kitts", "&", "flag-kn", "St.", "Flag", "Nevis"],
- "emoji_key": "flag-kn"
- }, {
- "keywords": ["", "female-farmer"],
- "emoji_key": "female-farmer"
- }, {
- "keywords": ["key", "CLOSED", "LOCK", "privacy", "with", "closed_lock_with_key", "KEYsecurity", "closed", "WITH", "lock"],
- "emoji_key": "closed_lock_with_key"
- }, {
- "keywords": ["time", "clock", "mantelpiece_clock", "mantelpiece"],
- "emoji_key": "mantelpiece_clock"
- }, {
- "keywords": ["numbers", "null", "00", "KEYCAP", "zero", "blue-square"],
- "emoji_key": "zero"
- }, {
- "keywords": ["flag-kp", "North", "Korea", "Flag"],
- "emoji_key": "flag-kp"
- }, {
- "keywords": ["", "male-cook"],
- "emoji_key": "male-cook"
- }, {
- "keywords": ["door", "password", "key", "KEYlock"],
- "emoji_key": "key"
- }, {
- "keywords": ["OCLOCKtime", "midnight", "schedule", "clock12", "FACE", "midday", "late", "CLOCK", "noon", "early", "TWELVE"],
- "emoji_key": "clock12"
- }, {
- "keywords": ["numbers", "1", "KEYCAP", "one", "1blue-square"],
- "emoji_key": "one"
- }, {
- "keywords": ["kr", "South", "Flagsouth", "nation", "country", "Korea", "flag", "banner", "korea"],
- "emoji_key": "kr"
- }, {
- "keywords": ["", "female-cook"],
- "emoji_key": "female-cook"
- }, {
- "keywords": ["schedule", "clock1230", "FACE", "late", "CLOCK", "early", "TWELVE-THIRTYtime"],
- "emoji_key": "clock1230"
- }, {
- "keywords": ["old_key", "key", "door", "password", "old", "lock"],
- "emoji_key": "old_key"
- }, {
- "keywords": ["two", "2", "2numbers", "prime", "KEYCAP", "blue-square"],
- "emoji_key": "two"
- }, {
- "keywords": ["flag-kw", "Flag", "Kuwait"],
- "emoji_key": "flag-kw"
- }, {
- "keywords": ["", "male-mechanic"],
- "emoji_key": "male-mechanic"
- }, {
- "keywords": ["create", "build", "HAMMERtools", "hammer"],
- "emoji_key": "hammer"
- }, {
- "keywords": ["OCLOCKtime", "schedule", "ONE", "FACE", "late", "CLOCK", "early", "clock1"],
- "emoji_key": "clock1"
- }, {
- "keywords": ["three", "numbers", "33", "prime", "KEYCAP", "blue-square"],
- "emoji_key": "three"
- }, {
- "keywords": ["Islands", "flag-ky", "Flag", "Cayman"],
- "emoji_key": "flag-ky"
- }, {
- "keywords": ["female-mechanic", ""],
- "emoji_key": "female-mechanic"
- }, {
- "keywords": ["schedule", "clock130", "FACE", "late", "CLOCK", "ONE-THIRTYtime", "early"],
- "emoji_key": "clock130"
- }, {
- "keywords": ["tools", "dig", "pick"],
- "emoji_key": "pick"
- }, {
- "keywords": ["numbers", "four", "44", "KEYCAP", "blue-square"],
- "emoji_key": "four"
- }, {
- "keywords": ["flag-kz", "Flag", "Kazakhstan"],
- "emoji_key": "flag-kz"
- }, {
- "keywords": ["", "male-factory-worker"],
- "emoji_key": "male-factory-worker"
- }, {
- "keywords": ["OCLOCKtime", "clock2", "schedule", "FACE", "late", "CLOCK", "early", "TWO"],
- "emoji_key": "clock2"
- }, {
- "keywords": ["hammer_and_pick", "and", "tools", "create", "build", "pick", "hammer"],
- "emoji_key": "hammer_and_pick"
- }, {
- "keywords": ["five", "numbers", "55", "prime", "KEYCAP", "blue-square"],
- "emoji_key": "five"
- }, {
- "keywords": ["flag-la", "Flag", "Laos"],
- "emoji_key": "flag-la"
- }, {
- "keywords": ["", "female-factory-worker"],
- "emoji_key": "female-factory-worker"
- }, {
- "keywords": ["schedule", "FACE", "late", "CLOCK", "early", "TWO-THIRTYtime", "clock230"],
- "emoji_key": "clock230"
- }, {
- "keywords": ["and", "wrench", "hammer_and_wrench", "tools", "create", "build", "hammer"],
- "emoji_key": "hammer_and_wrench"
- }, {
- "keywords": ["numbers", "six", "66", "KEYCAP", "blue-square"],
- "emoji_key": "six"
- }, {
- "keywords": ["Lebanon", "flag-lb", "Flag"],
- "emoji_key": "flag-lb"
- }, {
- "keywords": ["", "male-office-worker"],
- "emoji_key": "male-office-worker"
- }, {
- "keywords": ["OCLOCKtime", "clock3", "schedule", "FACE", "late", "CLOCK", "THREE", "early"],
- "emoji_key": "clock3"
- }, {
- "keywords": ["", "dagger", "knife", "dagger_knife"],
- "emoji_key": "dagger_knife"
- }, {
- "keywords": ["numbers", "seven", "prime", "KEYCAP", "blue-square", "77"],
- "emoji_key": "seven"
- }, {
- "keywords": ["St.", "Lucia", "Flag", "flag-lc"],
- "emoji_key": "flag-lc"
- }, {
- "keywords": ["", "female-office-worker"],
- "emoji_key": "female-office-worker"
- }, {
- "keywords": ["schedule", "FACE", "late", "CLOCK", "early", "THREE-THIRTYtime", "clock330"],
- "emoji_key": "clock330"
- }, {
- "keywords": ["crossed_swords", "crossed", "weapon", "swords"],
- "emoji_key": "crossed_swords"
- }, {
- "keywords": ["numbers", "eight", "88", "KEYCAP", "blue-square"],
- "emoji_key": "eight"
- }, {
- "keywords": ["Flag", "Liechtenstein", "flag-li"],
- "emoji_key": "flag-li"
- }, {
- "keywords": ["male-scientist", ""],
- "emoji_key": "male-scientist"
- }, {
- "keywords": ["gun", "pistol", "weapon", "PISTOLviolence", "revolver"],
- "emoji_key": "gun"
- }, {
- "keywords": ["OCLOCKtime", "schedule", "FACE", "late", "FOUR", "CLOCK", "early", "clock4"],
- "emoji_key": "clock4"
- }, {
- "keywords": ["9", "numbers", "nine", "9blue-square", "KEYCAP"],
- "emoji_key": "nine"
- }, {
- "keywords": ["Lanka", "Flag", "Sri", "flag-lk"],
- "emoji_key": "flag-lk"
- }, {
- "keywords": ["bow_and_arrow", "and", "arrow", "BOW", "AND", "ARROWsports", "bow"],
- "emoji_key": "bow_and_arrow"
- }, {
- "keywords": ["", "female-scientist"],
- "emoji_key": "female-scientist"
- }, {
- "keywords": ["schedule", "FACE", "late", "FOUR-THIRTYtime", "CLOCK", "clock430", "early"],
- "emoji_key": "clock430"
- }, {
- "keywords": ["flag-lr", "Liberia", "Flag"],
- "emoji_key": "flag-lr"
- }, {
- "keywords": ["", "male-technologist"],
- "emoji_key": "male-technologist"
- }, {
- "keywords": ["keycap_ten", "10", "ten", "keycap", "KEYCAP", "blue-square", "TENnumbers"],
- "emoji_key": "keycap_ten"
- }, {
- "keywords": ["OCLOCKtime", "schedule", "FACE", "clock5", "late", "CLOCK", "early", "FIVE"],
- "emoji_key": "clock5"
- }, {
- "keywords": ["security", "protection", "shield"],
- "emoji_key": "shield"
- }, {
- "keywords": ["flag-ls", "Lesotho", "Flag"],
- "emoji_key": "flag-ls"
- }, {
- "keywords": ["female-technologist", ""],
- "emoji_key": "female-technologist"
- }, {
- "keywords": ["WRENCHtools", "wrench", "maintainer", "diy", "ikea", "fix"],
- "emoji_key": "wrench"
- }, {
- "keywords": ["schedule", "FACE", "late", "clock530", "CLOCK", "early", "FIVE-THIRTYtime"],
- "emoji_key": "clock530"
- }, {
- "keywords": ["Lithuania", "Flag", "flag-lt"],
- "emoji_key": "flag-lt"
- }, {
- "keywords": ["", "male-singer"],
- "emoji_key": "male-singer"
- }, {
- "keywords": ["LATIN", "SYMBOL", "words", "LETTERSalphabet", "FOR", "CAPITAL", "abcd", "capital_abcd", "capital", "blue-square", "INPUT"],
- "emoji_key": "capital_abcd"
- }, {
- "keywords": ["nut", "and", "tools", "AND", "BOLThandy", "nut_and_bolt", "NUT", "bolt", "fix"],
- "emoji_key": "nut_and_bolt"
- }, {
- "keywords": ["OCLOCKtime", "dawn", "schedule", "FACE", "late", "CLOCK", "SIX", "early", "clock6", "dusk"],
- "emoji_key": "clock6"
- }, {
- "keywords": ["Luxembourg", "flag-lu", "Flag"],
- "emoji_key": "flag-lu"
- }, {
- "keywords": ["", "female-singer"],
- "emoji_key": "female-singer"
- }, {
- "keywords": ["LATIN", "alphabet", "SYMBOL", "LETTERSblue-square", "FOR", "abcd", "SMALL", "INPUT"],
- "emoji_key": "abcd"
- }, {
- "keywords": ["clock630", "schedule", "SIX-THIRTYtime", "FACE", "late", "CLOCK", "early"],
- "emoji_key": "clock630"
- }, {
- "keywords": ["gear", "cog"],
- "emoji_key": "gear"
- }, {
- "keywords": ["flag-lv", "Flag", "Latvia"],
- "emoji_key": "flag-lv"
- }, {
- "keywords": ["", "male-artist"],
- "emoji_key": "male-artist"
- }, {
- "keywords": ["OCLOCKtime", "schedule", "clock7", "FACE", "late", "CLOCK", "SEVEN", "early"],
- "emoji_key": "clock7"
- }, {
- "keywords": ["compression", ""],
- "emoji_key": "compression"
- }, {
- "keywords": ["Libya", "Flag", "flag-ly"],
- "emoji_key": "flag-ly"
- }, {
- "keywords": ["", "female-artist"],
- "emoji_key": "female-artist"
- }, {
- "keywords": ["SYMBOL", "ampersand", "glyphs", "symbols", "percent", "FOR", "note", "characters", "music", "SYMBOLSblue-square", "INPUT"],
- "emoji_key": "symbols"
- }, {
- "keywords": ["schedule", "FACE", "late", "CLOCK", "early", "clock730", "SEVEN-THIRTYtime"],
- "emoji_key": "clock730"
- }, {
- "keywords": ["scales", ""],
- "emoji_key": "scales"
- }, {
- "keywords": ["flag-ma", "Morocco", "Flag"],
- "emoji_key": "flag-ma"
- }, {
- "keywords": ["", "male-pilot"],
- "emoji_key": "male-pilot"
- }, {
- "keywords": ["url", "LINK", "SYMBOLrings", "link"],
- "emoji_key": "link"
- }, {
- "keywords": ["LATIN", "alphabet", "SYMBOL", "abc", "LETTERSblue-square", "FOR", "INPUT"],
- "emoji_key": "abc"
- }, {
- "keywords": ["OCLOCKtime", "schedule", "FACE", "late", "CLOCK", "clock8", "early", "EIGHT"],
- "emoji_key": "clock8"
- }, {
- "keywords": ["LATIN", "letter", "alphabet", "LETTER", "CAPITAL", "Ared-square", "a", "SQUARED", "NEGATIVE"],
- "emoji_key": "a"
- }, {
- "keywords": ["flag-mc", "Flag", "Monaco"],
- "emoji_key": "flag-mc"
- }, {
- "keywords": ["", "female-pilot"],
- "emoji_key": "female-pilot"
- }, {
- "keywords": ["clock830", "schedule", "FACE", "late", "CLOCK", "EIGHT-THIRTYtime", "early"],
- "emoji_key": "clock830"
- }, {
- "keywords": ["chains", "arrest", "lock"],
- "emoji_key": "chains"
- }, {
- "keywords": ["alphabet", "ABred-square", "ab", "SQUARED", "NEGATIVE"],
- "emoji_key": "ab"
- }, {
- "keywords": ["Flag", "Moldova", "flag-md"],
- "emoji_key": "flag-md"
- }, {
- "keywords": ["male-astronaut", ""],
- "emoji_key": "male-astronaut"
- }, {
- "keywords": ["OCLOCKtime", "schedule", "FACE", "late", "CLOCK", "clock9", "early", "NINE"],
- "emoji_key": "clock9"
- }, {
- "keywords": ["TOOLBOX", "toolbox"],
- "emoji_key": "toolbox"
- }, {
- "keywords": ["LATIN", "b", "letter", "Bred-square", "alphabet", "LETTER", "CAPITAL", "SQUARED", "NEGATIVE"],
- "emoji_key": "b"
- }, {
- "keywords": ["flag-me", "Montenegro", "Flag"],
- "emoji_key": "flag-me"
- }, {
- "keywords": ["", "female-astronaut"],
- "emoji_key": "female-astronaut"
- }, {
- "keywords": ["schedule", "clock930", "FACE", "late", "CLOCK", "NINE-THIRTYtime", "early"],
- "emoji_key": "clock930"
- }, {
- "keywords": ["MAGNET", "magnet"],
- "emoji_key": "magnet"
- }, {
- "keywords": ["cl", "words", "red-square", "SQUARED", "CLalphabet"],
- "emoji_key": "cl"
- }, {
- "keywords": ["St.", "flag-mf", "Flag", "Martin"],
- "emoji_key": "flag-mf"
- }, {
- "keywords": ["", "male-firefighter"],
- "emoji_key": "male-firefighter"
- }, {
- "keywords": ["OCLOCKtime", "clock10", "schedule", "FACE", "late", "CLOCK", "early", "TEN"],
- "emoji_key": "clock10"
- }, {
- "keywords": ["alembic", "chemistry", "distilling", "science", "experiment"],
- "emoji_key": "alembic"
- }, {
- "keywords": ["SQUARED", "COOLwords", "blue-square", "cool"],
- "emoji_key": "cool"
- }, {
- "keywords": ["flag-mg", "Flag", "Madagascar"],
- "emoji_key": "flag-mg"
- }, {
- "keywords": ["", "female-firefighter"],
- "emoji_key": "female-firefighter"
- }, {
- "keywords": ["schedule", "FACE", "late", "clock1030", "CLOCK", "early", "TEN-THIRTYtime"],
- "emoji_key": "clock1030"
- }, {
- "keywords": ["tube", "TUBE", "test_tube", "test", "TEST"],
- "emoji_key": "test_tube"
- }, {
- "keywords": ["SQUARED", "words", "free", "FREEblue-square"],
- "emoji_key": "free"
- }, {
- "keywords": ["Islands", "Flag", "Marshall", "flag-mh"],
- "emoji_key": "flag-mh"
- }, {
- "keywords": ["OCLOCKtime", "ELEVEN", "schedule", "FACE", "late", "CLOCK", "clock11", "early"],
- "emoji_key": "clock11"
- }, {
- "keywords": ["petri", "DISH", "dish", "petri_dish", "PETRI"],
- "emoji_key": "petri_dish"
- }, {
- "keywords": ["flag-mk", "Flag", "Macedonia"],
- "emoji_key": "flag-mk"
- }, {
- "keywords": ["", "male-police-officer"],
- "emoji_key": "male-police-officer"
- }, {
- "keywords": ["schedule", "FACE", "late", "CLOCK", "early", "ELEVEN-THIRTYtime", "clock1130"],
- "emoji_key": "clock1130"
- }, {
- "keywords": ["HELIX", "dna", "DNA", "DOUBLE"],
- "emoji_key": "dna"
- }, {
- "keywords": ["information_source", "information", "source", "letter", "alphabet", "INFORMATION", "SOURCEblue-square"],
- "emoji_key": "information_source"
- }, {
- "keywords": ["SQUARED", "IDpurple-square", "id", "words"],
- "emoji_key": "id"
- }, {
- "keywords": ["Mali", "Flag", "flag-ml"],
- "emoji_key": "flag-ml"
- }, {
- "keywords": ["MOON", "new_moon", "space", "sleep", "SYMBOLnature", "planet", "evening", "new", "twilight", "moon", "NEW", "night"],
- "emoji_key": "new_moon"
- }, {
- "keywords": ["female-police-officer", ""],
- "emoji_key": "female-police-officer"
- }, {
- "keywords": ["science", "study", "MICROSCOPElaboratory", "experiment", "zoomin", "microscope"],
- "emoji_key": "microscope"
- }, {
- "keywords": ["Myanmar", "Flag", "(Burma)", "flag-mm"],
- "emoji_key": "flag-mm"
- }, {
- "keywords": ["MOON", "WAXING", "space", "sleep", "SYMBOLnature", "planet", "evening", "crescent", "waxing", "twilight", "moon", "waxing_crescent_moon", "CRESCENT", "night"],
- "emoji_key": "waxing_crescent_moon"
- }, {
- "keywords": ["space", "telescope", "science", "astronomy", "zoom", "TELESCOPEstars"],
- "emoji_key": "telescope"
- }, {
- "keywords": ["LATIN", "letter", "m", "LETTER", "CIRCLED", "CAPITAL", "Malphabet", "blue-circle"],
- "emoji_key": "m"
- }, {
- "keywords": ["words", "new", "NEWblue-square", "SQUARED", "start"],
- "emoji_key": "new"
- }, {
- "keywords": ["Flag", "Mongolia", "flag-mn"],
- "emoji_key": "flag-mn"
- }, {
- "keywords": ["MOON", "quarter", "space", "QUARTER", "sleep", "SYMBOLnature", "planet", "evening", "first", "FIRST", "first_quarter_moon", "twilight", "moon", "night"],
- "emoji_key": "first_quarter_moon"
- }, {
- "keywords": ["antenna", "satellite_antenna", "SATELLITE", "ANTENNA", "satellite"],
- "emoji_key": "satellite_antenna"
- }, {
- "keywords": ["", "male-detective"],
- "emoji_key": "male-detective"
- }, {
- "keywords": ["shape", "words", "NGblue-square", "icon", "ng", "SQUARED"],
- "emoji_key": "ng"
- }, {
- "keywords": ["Macau", "SAR", "China", "flag-mo", "Flag"],
- "emoji_key": "flag-mo"
- }, {
- "keywords": ["MOON", "WAXING", "SYMBOL", "moon", "GIBBOUS"],
- "emoji_key": "moon"
- }, {
- "keywords": ["doctor", "needle", "drugs", "blood", "medicine", "SYRINGEhealth", "syringe", "nurse", "hospital"],
- "emoji_key": "syringe"
- }, {
- "keywords": ["", "female-detective"],
- "emoji_key": "female-detective"
- }, {
- "keywords": ["LATIN", "letter", "LETTER", "CAPITAL", "Oalphabet", "red-square", "o2", "SQUARED", "NEGATIVE"],
- "emoji_key": "o2"
- }, {
- "keywords": ["Northern", "Islands", "flag-mp", "Flag", "Mariana"],
- "emoji_key": "flag-mp"
- }, {
- "keywords": ["MOON", "space", "yellow", "moon", "sleep", "SYMBOLnature", "night", "full_moon", "planet", "evening", "twilight", "FULL", "full"],
- "emoji_key": "full_moon"
- }, {
- "keywords": ["doctor", "medicine", "pharmacy", "PILLhealth", "pill", "drug"],
- "emoji_key": "pill"
- }, {
- "keywords": ["yes", "ok", "OKgood", "SQUARED", "blue-square", "agree"],
- "emoji_key": "ok"
- }, {
- "keywords": ["flag-mq", "Flag", "Martinique"],
- "emoji_key": "flag-mq"
- }, {
- "keywords": ["MOON", "space", "WANING", "gibbous", "sleep", "moon", "waning", "SYMBOLnature", "planet", "evening", "waxing", "twilight", "waning_gibbous_moon", "GIBBOUS", "night"],
- "emoji_key": "waning_gibbous_moon"
- }, {
- "keywords": ["", "male-guard"],
- "emoji_key": "male-guard"
- }, {
- "keywords": ["door", "entry", "exit", "DOORhouse"],
- "emoji_key": "door"
- }, {
- "keywords": ["LATIN", "blue-square", "letter", "alphabet", "LETTER", "parking", "Pcars", "CAPITAL", "SQUARED", "NEGATIVE"],
- "emoji_key": "parking"
- }, {
- "keywords": ["flag-mr", "Flag", "Mauritania"],
- "emoji_key": "flag-mr"
- }, {
- "keywords": ["MOON", "last", "quarter", "space", "QUARTER", "sleep", "SYMBOLnature", "last_quarter_moon", "planet", "evening", "LAST", "twilight", "moon", "night"],
- "emoji_key": "last_quarter_moon"
- }, {
- "keywords": ["", "female-guard"],
- "emoji_key": "female-guard"
- }, {
- "keywords": ["rest", "bed", "sleep"],
- "emoji_key": "bed"
- }, {
- "keywords": ["emergency", "911", "words", "sos", "red-square", "SQUARED", "SOShelp"],
- "emoji_key": "sos"
- }, {
- "keywords": ["flag-ms", "Montserrat", "Flag"],
- "emoji_key": "flag-ms"
- }, {
- "keywords": ["MOON", "space", "WANING", "sleep", "waning", "SYMBOLnature", "planet", "evening", "waning_crescent_moon", "crescent", "twilight", "moon", "CRESCENT", "night"],
- "emoji_key": "waning_crescent_moon"
- }, {
- "keywords": ["chill", "and", "couch_and_lamp", "read", "lamp", "couch"],
- "emoji_key": "couch_and_lamp"
- }, {
- "keywords": ["UP", "up", "MARKblue-square", "above", "high", "SQUARED", "EXCLAMATION", "WITH"],
- "emoji_key": "up"
- }, {
- "keywords": ["Malta", "Flag", "flag-mt"],
- "emoji_key": "flag-mt"
- }, {
- "keywords": ["sleep", "sky", "MOONnight", "evening", "crescent_moon", "magic", "crescent", "moon", "CRESCENT"],
- "emoji_key": "crescent_moon"
- }, {
- "keywords": ["male-construction-worker", ""],
- "emoji_key": "male-construction-worker"
- }, {
- "keywords": ["bathroom", "potty", "washroom", "wc", "TOILETrestroom", "toilet"],
- "emoji_key": "toilet"
- }, {
- "keywords": ["SQUARED", "VSwords", "orange-square", "vs"],
- "emoji_key": "vs"
- }, {
- "keywords": ["Flag", "Mauritius", "flag-mu"],
- "emoji_key": "flag-mu"
- }, {
- "keywords": ["MOON", "space", "face", "sleep", "new_moon_with_face", "planet", "evening", "with", "new", "FACEnature", "twilight", "moon", "WITH", "NEW", "night"],
- "emoji_key": "new_moon_with_face"
- }, {
- "keywords": ["", "female-construction-worker"],
- "emoji_key": "female-construction-worker"
- }, {
- "keywords": ["water", "SHOWERclean", "shower", "bathroom"],
- "emoji_key": "shower"
- }, {
- "keywords": ["Maldives", "Flag", "flag-mv"],
- "emoji_key": "flag-mv"
- }, {
- "keywords": ["here", "japanese", "destination", "KATAKANA", "katakana", "koko", "SQUARED", "KOKOblue-square"],
- "emoji_key": "koko"
- }, {
- "keywords": ["MOON", "quarter", "space", "QUARTER", "face", "sleep", "planet", "evening", "with", "FACEnature", "first", "FIRST", "twilight", "moon", "WITH", "first_quarter_moon_with_face", "night"],
- "emoji_key": "first_quarter_moon_with_face"
- }, {
- "keywords": ["BATHTUBclean", "bathtub", "bathroom", "shower"],
- "emoji_key": "bathtub"
- }, {
- "keywords": ["royal", "PRINCEboy", "crown", "king", "male", "man", "prince"],
- "emoji_key": "prince"
- }, {
- "keywords": ["flag-mw", "Malawi", "Flag"],
- "emoji_key": "flag-mw"
- }, {
- "keywords": ["KATAKANA", "katakana", "sa", "SAjapanese", "SQUARED", "blue-square"],
- "emoji_key": "sa"
- }, {
- "keywords": ["MOON", "last", "quarter", "space", "QUARTER", "face", "sleep", "planet", "evening", "with", "LAST", "FACEnature", "last_quarter_moon_with_face", "twilight", "moon", "WITH", "night"],
- "emoji_key": "last_quarter_moon_with_face"
- }, {
- "keywords": ["blond", "royal", "queen", "crown", "PRINCESSgirl", "princess", "woman", "female"],
- "emoji_key": "princess"
- }, {
- "keywords": ["lotion_bottle", "BOTTLE", "lotion", "bottle", "LOTION"],
- "emoji_key": "lotion_bottle"
- }, {
- "keywords": ["Flag", "Mexico", "flag-mx"],
- "emoji_key": "flag-mx"
- }, {
- "keywords": ["orange-square", "UNIFIED", "u6708", "month", "CJK", "japanese", "IDEOGRAPH-6708chinese", "kanji", "SQUARED", "moon"],
- "emoji_key": "u6708"
- }, {
- "keywords": ["cold", "weather", "thermometer", "hot", "temperature"],
- "emoji_key": "thermometer"
- }, {
- "keywords": ["safety", "PIN", "safety_pin", "pin", "SAFETY"],
- "emoji_key": "safety_pin"
- }, {
- "keywords": ["Flag", "flag-my", "Malaysia"],
- "emoji_key": "flag-my"
- }, {
- "keywords": ["UNIFIED", "CJK", "u6709", "chinese", "kanji", "IDEOGRAPH-6709orange-square", "have", "SQUARED"],
- "emoji_key": "u6709"
- }, {
- "keywords": ["", "man-wearing-turban"],
- "emoji_key": "man-wearing-turban"
- }, {
- "keywords": ["BROOM", "broom"],
- "emoji_key": "broom"
- }, {
- "keywords": ["brightness", "RAYSweather", "nature", "summer", "spring", "SUN", "beach", "sunny", "WITH", "BLACK"],
- "emoji_key": "sunny"
- }, {
- "keywords": ["flag-mz", "Flag", "Mozambique"],
- "emoji_key": "flag-mz"
- }, {
- "keywords": ["IDEOGRAPH-6307chinese", "point", "u6307", "UNIFIED", "CJK", "kanji", "green-square", "SQUARED"],
- "emoji_key": "u6307"
- }, {
- "keywords": ["MOON", "space", "face", "sleep", "night", "FULL", "full_moon_with_face", "planet", "evening", "with", "FACEnature", "twilight", "moon", "WITH", "full"],
- "emoji_key": "full_moon_with_face"
- }, {
- "keywords": ["", "woman-wearing-turban"],
- "emoji_key": "woman-wearing-turban"
- }, {
- "keywords": ["BASKET", "basket"],
- "emoji_key": "basket"
- }, {
- "keywords": ["Namibia", "Flag", "flag-na"],
- "emoji_key": "flag-na"
- }, {
- "keywords": ["obtain", "advantage", "CIRCLED", "ADVANTAGEchinese", "circle", "kanji", "get", "ideograph", "IDEOGRAPH", "ideograph_advantage"],
- "emoji_key": "ideograph_advantage"
- }, {
- "keywords": ["face", "with", "SUN", "FACEnature", "morning", "WITH", "sun_with_face", "sky", "sun"],
- "emoji_key": "sun_with_face"
- }, {
- "keywords": ["GUA", "MAOmale", "mao", "gua", "PI", "chinese", "pi", "with", "boy", "man_with_gua_pi_mao", "man", "WITH", "MAN"],
- "emoji_key": "man_with_gua_pi_mao"
- }, {
- "keywords": ["roll", "OF", "roll_of_paper", "paper", "of", "PAPER", "ROLL"],
- "emoji_key": "roll_of_paper"
- }, {
- "keywords": ["Caledonia", "Flag", "New", "flag-nc"],
- "emoji_key": "flag-nc"
- }, {
- "keywords": ["divide", "UNIFIED", "pink-square", "CJK", "u5272", "chinese", "kanji", "SQUARED", "IDEOGRAPH-5272cut"],
- "emoji_key": "u5272"
- }, {
- "keywords": ["headscarf", "person_with_headscarf", "person", "with", "PERSON", "HEADSCARF", "WITH"],
- "emoji_key": "person_with_headscarf"
- }, {
- "keywords": ["BAR", "soap", "OF", "SOAP"],
- "emoji_key": "soap"
- }, {
- "keywords": ["yellow", "STARnight", "MEDIUM", "WHITE", "star"],
- "emoji_key": "star"
- }, {
- "keywords": ["flag-ne", "Flag", "Niger"],
- "emoji_key": "flag-ne"
- }, {
- "keywords": ["orange-square", "UNIFIED", "japanese", "CJK", "IDEOGRAPH-7121nothing", "chinese", "u7121", "kanji", "SQUARED"],
- "emoji_key": "u7121"
- }, {
- "keywords": ["star2", "awesome", "sparkle", "good", "STARnight", "magic", "GLOWING"],
- "emoji_key": "star2"
- }, {
- "keywords": ["bearded_person", "BEARDED", "bearded", "person", "PERSONperson", "bewhiskered"],
- "emoji_key": "bearded_person"
- }, {
- "keywords": ["SPONGE", "sponge"],
- "emoji_key": "sponge"
- }, {
- "keywords": ["flag-nf", "Flag", "Norfolk", "Island"],
- "emoji_key": "flag-nf"
- }, {
- "keywords": ["IDEOGRAPH-7981kanji", "UNIFIED", "japanese", "CJK", "forbidden", "chinese", "red-square", "u7981", "restricted", "SQUARED", "limit"],
- "emoji_key": "u7981"
- }, {
- "keywords": ["STARnight", "SHOOTING", "stars", "photo"],
- "emoji_key": "stars"
- }, {
- "keywords": ["fire_extinguisher", "EXTINGUISHER", "fire", "extinguisher", "FIRE"],
- "emoji_key": "fire_extinguisher"
- }, {
- "keywords": ["flag-ng", "Flag", "Nigeria"],
- "emoji_key": "flag-ng"
- }, {
- "keywords": ["yes", "accept", "good", "CIRCLED", "chinese", "kanji", "ACCEPTok", "orange-circle", "IDEOGRAPH", "agree"],
- "emoji_key": "accept"
- }, {
- "keywords": ["", "blond-haired-man"],
- "emoji_key": "blond-haired-man"
- }, {
- "keywords": ["shopping_trolley", "trolley", "shopping", "SHOPPING", "TROLLEY"],
- "emoji_key": "shopping_trolley"
- }, {
- "keywords": ["CLOUDweather", "cloud", "sky"],
- "emoji_key": "cloud"
- }, {
- "keywords": ["flag-ni", "Flag", "Nicaragua"],
- "emoji_key": "flag-ni"
- }, {
- "keywords": ["orange-square", "UNIFIED", "japanese", "CJK", "u7533", "IDEOGRAPH-7533chinese", "kanji", "SQUARED"],
- "emoji_key": "u7533"
- }, {
- "keywords": ["", "blond-haired-woman"],
- "emoji_key": "blond-haired-woman"
- }, {
- "keywords": ["cigarette", "SMOKING", "SYMBOLkills", "smoke", "joint", "smoking", "tobacco"],
- "emoji_key": "smoking"
- }, {
- "keywords": ["partly_sunny", "CLOUDweather", "cloudy", "fall", "spring", "SUN", "sunny", "partly", "morning", "nature", "BEHIND"],
- "emoji_key": "partly_sunny"
- }, {
- "keywords": ["Netherlands", "Flag", "flag-nl"],
- "emoji_key": "flag-nl"
- }, {
- "keywords": ["IDEOGRAPH-5408japanese", "UNIFIED", "join", "CJK", "chinese", "kanji", "red-square", "u5408", "SQUARED"],
- "emoji_key": "u5408"
- }, {
- "keywords": ["", "male_red_haired", "red", "male", "haired"],
- "emoji_key": "male_red_haired"
- }, {
- "keywords": ["vampire", "box", "funeral", "cemetery", "die", "death", "rip", "dead", "graveyard", "coffin", "casket"],
- "emoji_key": "coffin"
- }, {
- "keywords": ["", "rain", "and", "cloud", "thunder_cloud_and_rain", "thunder"],
- "emoji_key": "thunder_cloud_and_rain"
- }, {
- "keywords": ["Flag", "flag-no", "Norway"],
- "emoji_key": "flag-no"
- }, {
- "keywords": ["UNIFIED", "japanese", "CJK", "chinese", "u7a7a", "empty", "SQUARED", "IDEOGRAPH-7A7Akanji", "blue-square", "sky"],
- "emoji_key": "u7a7a"
- }, {
- "keywords": ["mostly", "", "sunny", "mostly_sunny"],
- "emoji_key": "mostly_sunny"
- }, {
- "keywords": ["", "red", "female_red_haired", "female", "haired"],
- "emoji_key": "female_red_haired"
- }, {
- "keywords": ["funeral", "die", "death", "rip", "dead", "funeral_urn", "urn", "ashes"],
- "emoji_key": "funeral_urn"
- }, {
- "keywords": ["Nepal", "Flag", "flag-np"],
- "emoji_key": "flag-np"
- }, {
- "keywords": ["sunny", "", "barely_sunny", "barely"],
- "emoji_key": "barely_sunny"
- }, {
- "keywords": ["", "male_curly_haired", "curly", "male", "haired"],
- "emoji_key": "male_curly_haired"
- }, {
- "keywords": ["moyai", "MOYAIrock", "easter", "island", "moai"],
- "emoji_key": "moyai"
- }, {
- "keywords": ["congratulations", "japanese", "CONGRATULATIONchinese", "CIRCLED", "kanji", "IDEOGRAPH", "red-circle"],
- "emoji_key": "congratulations"
- }, {
- "keywords": ["flag-nr", "Flag", "Nauru"],
- "emoji_key": "flag-nr"
- }, {
- "keywords": ["", "rain", "sunny", "partly", "partly_sunny_rain"],
- "emoji_key": "partly_sunny_rain"
- }, {
- "keywords": ["", "female_curly_haired", "curly", "female", "haired"],
- "emoji_key": "female_curly_haired"
- }, {
- "keywords": ["secret", "CIRCLED", "chinese", "SECRETprivacy", "kanji", "IDEOGRAPH", "sshh", "red-circle"],
- "emoji_key": "secret"
- }, {
- "keywords": ["Flag", "Niue", "flag-nu"],
- "emoji_key": "flag-nu"
- }, {
- "keywords": ["orange-square", "UNIFIED", "IDEOGRAPH-55B6japanese", "CJK", "hours", "SQUARED", "opening", "u55b6"],
- "emoji_key": "u55b6"
- }, {
- "keywords": ["", "rain_cloud", "rain", "cloud"],
- "emoji_key": "rain_cloud"
- }, {
- "keywords": ["male", "", "male_bald", "bald"],
- "emoji_key": "male_bald"
- }, {
- "keywords": ["Flag", "flag-nz", "Zealand", "New"],
- "emoji_key": "flag-nz"
- }, {
- "keywords": ["UNIFIED", "IDEOGRAPH-6E80full", "japanese", "CJK", "chinese", "u6e80", "red-square", "kanji", "SQUARED"],
- "emoji_key": "u6e80"
- }, {
- "keywords": ["", "cloud", "snow", "snow_cloud"],
- "emoji_key": "snow_cloud"
- }, {
- "keywords": ["", "female_bald", "female", "bald"],
- "emoji_key": "female_bald"
- }, {
- "keywords": ["Flag", "Oman", "flag-om"],
- "emoji_key": "flag-om"
- }, {
- "keywords": ["", "lightning"],
- "emoji_key": "lightning"
- }, {
- "keywords": ["", "male_white_haired", "white", "male", "haired"],
- "emoji_key": "male_white_haired"
- }, {
- "keywords": ["square", "icon", "small", "black", "SMALL", "BLACK", "SQUAREshape", "black_small_square"],
- "emoji_key": "black_small_square"
- }, {
- "keywords": ["flag-pa", "Flag", "Panama"],
- "emoji_key": "flag-pa"
- }, {
- "keywords": ["tornado", "cyclone", "weather", "twister"],
- "emoji_key": "tornado"
- }, {
- "keywords": ["", "female_white_haired", "white", "female", "haired"],
- "emoji_key": "female_white_haired"
- }, {
- "keywords": ["square", "white_small_square", "icon", "WHITE", "small", "white", "SMALL", "SQUAREshape"],
- "emoji_key": "white_small_square"
- }, {
- "keywords": ["flag-pe", "Flag", "Peru"],
- "emoji_key": "flag-pe"
- }, {
- "keywords": ["weather", "fog"],
- "emoji_key": "fog"
- }, {
- "keywords": ["TUXEDOcouple", "IN", "marriage", "groom", "in", "wedding", "tuxedo", "man", "man_in_tuxedo", "MAN"],
- "emoji_key": "man_in_tuxedo"
- }, {
- "keywords": ["stone", "square", "icon", "WHITE", "MEDIUM", "white", "SQUAREshape", "white_medium_square", "medium"],
- "emoji_key": "white_medium_square"
- }, {
- "keywords": ["French", "flag-pf", "Polynesia", "Flag"],
- "emoji_key": "flag-pf"
- }, {
- "keywords": ["", "face", "wind", "blowing", "wind_blowing_face"],
- "emoji_key": "wind_blowing_face"
- }, {
- "keywords": ["VEILcouple", "marriage", "wedding", "with", "veil", "woman", "bride_with_veil", "WITH", "bride", "BRIDE"],
- "emoji_key": "bride_with_veil"
- }, {
- "keywords": ["black_medium_square", "square", "icon", "MEDIUM", "black", "SQUAREshape", "BLACK", "button", "medium"],
- "emoji_key": "black_medium_square"
- }, {
- "keywords": ["Papua", "flag-pg", "Guinea", "Flag", "New"],
- "emoji_key": "flag-pg"
- }, {
- "keywords": ["tornado", "spin", "cloud", "whirlpool", "vortex", "hurricane", "typhoon", "swirl", "CYCLONEweather", "cyclone", "spiral", "blue"],
- "emoji_key": "cyclone"
- }, {
- "keywords": ["WOMANbaby", "PREGNANT", "pregnant", "woman", "pregnant_woman"],
- "emoji_key": "pregnant_woman"
- }, {
- "keywords": ["stone", "square", "icon", "small", "white_medium_small_square", "white", "WHITE", "MEDIUM", "SMALL", "SQUAREshape", "button", "medium"],
- "emoji_key": "white_medium_small_square"
- }, {
- "keywords": ["Philippines", "Flag", "flag-ph"],
- "emoji_key": "flag-ph"
- }, {
- "keywords": ["happy", "unicorn", "face", "RAINBOWnature", "rainbow", "sky", "spring", "photo"],
- "emoji_key": "rainbow"
- }, {
- "keywords": ["breast-feeding", "BREAST-FEEDING"],
- "emoji_key": "breast-feeding"
- }, {
- "keywords": ["square", "black_medium_small_square", "shape", "SQUAREicon", "small", "MEDIUM", "black", "SMALL", "BLACK", "button", "medium"],
- "emoji_key": "black_medium_small_square"
- }, {
- "keywords": ["flag-pk", "Flag", "Pakistan"],
- "emoji_key": "flag-pk"
- }, {
- "keywords": ["rain", "drizzle", "UMBRELLAweather", "umbrella", "closed", "closed_umbrella", "CLOSED"],
- "emoji_key": "closed_umbrella"
- }, {
- "keywords": ["halo", "angel", "wings", "BABY", "ANGELheaven"],
- "emoji_key": "angel"
- }, {
- "keywords": ["square", "icon", "black_large_square", "large", "black", "SQUAREshape", "BLACK", "LARGE", "button"],
- "emoji_key": "black_large_square"
- }, {
- "keywords": ["flag-pl", "Poland", "Flag"],
- "emoji_key": "flag-pl"
- }, {
- "keywords": ["FATHER", "father", "xmas", "CHRISTMASfestival", "male", "man", "santa", "christmas"],
- "emoji_key": "santa"
- }, {
- "keywords": ["umbrella", "weather", "spring", "rainy"],
- "emoji_key": "umbrella"
- }, {
- "keywords": ["white_large_square", "square", "icon", "large", "WHITE", "white", "SQUAREshape", "LARGE", "button", "stone"],
- "emoji_key": "white_large_square"
- }, {
- "keywords": ["Miquelon", "&", "St.", "flag-pm", "Pierre", "Flag"],
- "emoji_key": "flag-pm"
- }, {
- "keywords": ["DIAMONDshape", "diamond", "jewel", "large", "orange", "large_orange_diamond", "ORANGE", "LARGE", "gem"],
- "emoji_key": "large_orange_diamond"
- }, {
- "keywords": ["MOTHER", "mrs_claus", "claus", "xmas", "CHRISTMASwoman", "mrs", "female", "mother", "christmas"],
- "emoji_key": "mrs_claus"
- }, {
- "keywords": ["rain", "umbrella_with_rain_drops", "DROPS", "UMBRELLA", "drops", "with", "RAIN", "umbrella", "WITH"],
- "emoji_key": "umbrella_with_rain_drops"
- }, {
- "keywords": ["flag-pn", "Islands", "Pitcairn", "Flag"],
- "emoji_key": "flag-pn"
- }, {
- "keywords": ["DIAMONDshape", "diamond", "jewel", "large", "BLUE", "blue", "LARGE", "gem", "large_blue_diamond"],
- "emoji_key": "large_blue_diamond"
- }, {
- "keywords": ["", "ground", "on", "umbrella", "umbrella_on_ground"],
- "emoji_key": "umbrella_on_ground"
- }, {
- "keywords": ["Rico", "Flag", "Puerto", "flag-pr"],
- "emoji_key": "flag-pr"
- }, {
- "keywords": ["DIAMONDshape", "diamond", "jewel", "small_orange_diamond", "small", "orange", "SMALL", "ORANGE", "gem"],
- "emoji_key": "small_orange_diamond"
- }, {
- "keywords": ["", "female", "mage", "female_mage"],
- "emoji_key": "female_mage"
- }, {
- "keywords": ["weather", "fast", "zap", "SIGNthunder", "VOLTAGE", "lightning", "bolt", "HIGH"],
- "emoji_key": "zap"
- }, {
- "keywords": ["Flag", "flag-ps", "Territories", "Palestinian"],
- "emoji_key": "flag-ps"
- }, {
- "keywords": ["small_blue_diamond", "DIAMONDshape", "diamond", "jewel", "small", "BLUE", "SMALL", "blue", "gem"],
- "emoji_key": "small_blue_diamond"
- }, {
- "keywords": ["male", "", "male_mage", "mage"],
- "emoji_key": "male_mage"
- }, {
- "keywords": ["cold", "weather", "snowflake", "season", "xmas", "christmas", "SNOWFLAKEwinter"],
- "emoji_key": "snowflake"
- }, {
- "keywords": ["flag-pt", "Flag", "Portugal"],
- "emoji_key": "flag-pt"
- }, {
- "keywords": ["small_red_triangle", "triangle", "RED", "top", "UP-POINTING", "up", "red", "direction", "small", "TRIANGLEshape"],
- "emoji_key": "small_red_triangle"
- }, {
- "keywords": ["cold", "weather", "season", "xmas", "winter", "without", "snow", "snowman", "frozen", "christmas"],
- "emoji_key": "snowman"
- }, {
- "keywords": ["Palau", "Flag", "flag-pw"],
- "emoji_key": "flag-pw"
- }, {
- "keywords": ["triangle", "RED", "bottom", "small_red_triangle_down", "down", "red", "direction", "small", "TRIANGLEshape", "DOWN-POINTING"],
- "emoji_key": "small_red_triangle_down"
- }, {
- "keywords": ["", "fairy", "female", "female_fairy"],
- "emoji_key": "female_fairy"
- }, {
- "keywords": ["SNOW", "snowman_without_snow", "without", "snow", "WITHOUT", "SNOWMAN", "snowman"],
- "emoji_key": "snowman_without_snow"
- }, {
- "keywords": ["Paraguay", "flag-py", "Flag"],
- "emoji_key": "flag-py"
- }, {
- "keywords": ["dot", "A", "diamond_shape_with_a_dot_inside", "diamond", "shape", "crystal", "with", "inside", "fancy", "gem", "DIAMOND", "blue", "a", "DOT", "WITH", "SHAPE", "INSIDEjewel"],
- "emoji_key": "diamond_shape_with_a_dot_inside"
- }, {
- "keywords": ["male", "", "male_fairy", "fairy"],
- "emoji_key": "male_fairy"
- }, {
- "keywords": ["comet", "space"],
- "emoji_key": "comet"
- }, {
- "keywords": ["flag-qa", "Qatar", "Flag"],
- "emoji_key": "flag-qa"
- }, {
- "keywords": ["RADIO", "radio", "BUTTONinput", "circle", "old", "radio_button", "music", "button"],
- "emoji_key": "radio_button"
- }, {
- "keywords": ["fire", "flame", "cook", "FIREhot"],
- "emoji_key": "fire"
- }, {
- "keywords": ["flag-re", "Flag", "R\u00e9union"],
- "emoji_key": "flag-re"
- }, {
- "keywords": ["DROPLETwater", "droplet", "faucet", "spring", "drip"],
- "emoji_key": "droplet"
- }, {
- "keywords": ["SQUARE", "square", "BUTTONshape", "frame", "black", "BLACK", "input", "button", "black_square_button"],
- "emoji_key": "black_square_button"
- }, {
- "keywords": ["", "vampire", "female_vampire", "female"],
- "emoji_key": "female_vampire"
- }, {
- "keywords": ["Romania", "Flag", "flag-ro"],
- "emoji_key": "flag-ro"
- }, {
- "keywords": ["ocean", "wave", "tsunami", "WAVEsea", "WATER", "water", "disaster", "nature"],
- "emoji_key": "ocean"
- }, {
- "keywords": ["SQUARE", "square", "WHITE", "white", "BUTTONshape", "white_square_button", "input", "button"],
- "emoji_key": "white_square_button"
- }, {
- "keywords": ["male", "", "vampire", "male_vampire"],
- "emoji_key": "male_vampire"
- }, {
- "keywords": ["Serbia", "Flag", "flag-rs"],
- "emoji_key": "flag-rs"
- }, {
- "keywords": ["round", "MEDIUM", "WHITE", "white", "circle", "CIRCLEshape", "white_circle"],
- "emoji_key": "white_circle"
- }, {
- "keywords": ["Russia", "federation", "nation", "country", "flag", "banner", "ru", "Flagrussian"],
- "emoji_key": "ru"
- }, {
- "keywords": ["ariel", "merwoman", "woman", "mermaid", "female"],
- "emoji_key": "mermaid"
- }, {
- "keywords": ["round", "black_circle", "MEDIUM", "circle", "CIRCLEshape", "black", "BLACK", "button"],
- "emoji_key": "black_circle"
- }, {
- "keywords": ["Rwanda", "flag-rw", "Flag"],
- "emoji_key": "flag-rw"
- }, {
- "keywords": ["RED", "danger", "red", "red_circle", "circle", "CIRCLEshape", "error", "LARGE"],
- "emoji_key": "red_circle"
- }, {
- "keywords": ["male", "man", "triton", "merman"],
- "emoji_key": "merman"
- }, {
- "keywords": ["Arabia", "Flag", "flag-sa", "Saudi"],
- "emoji_key": "flag-sa"
- }, {
- "keywords": ["icon", "large", "circle", "CIRCLEshape", "BLUE", "blue", "LARGE", "button", "large_blue_circle"],
- "emoji_key": "large_blue_circle"
- }, {
- "keywords": ["Islands", "Solomon", "Flag", "flag-sb"],
- "emoji_key": "flag-sb"
- }, {
- "keywords": ["elf", "", "female_elf", "female"],
- "emoji_key": "female_elf"
- }, {
- "keywords": ["Seychelles", "flag-sc", "Flag"],
- "emoji_key": "flag-sc"
- }, {
- "keywords": ["male", "elf", "male_elf", ""],
- "emoji_key": "male_elf"
- }, {
- "keywords": ["Sudan", "Flag", "flag-sd"],
- "emoji_key": "flag-sd"
- }, {
- "keywords": ["Flag", "flag-se", "Sweden"],
- "emoji_key": "flag-se"
- }, {
- "keywords": ["", "genie", "female_genie", "female"],
- "emoji_key": "female_genie"
- }, {
- "keywords": ["Flag", "flag-sg", "Singapore"],
- "emoji_key": "flag-sg"
- }, {
- "keywords": ["male", "", "male_genie", "genie"],
- "emoji_key": "male_genie"
- }, {
- "keywords": ["St.", "flag-sh", "Flag", "Helena"],
- "emoji_key": "flag-sh"
- }, {
- "keywords": ["Slovenia", "flag-si", "Flag"],
- "emoji_key": "flag-si"
- }, {
- "keywords": ["", "zombie", "female", "female_zombie"],
- "emoji_key": "female_zombie"
- }, {
- "keywords": ["Jan", "Svalbard", "&", "Mayen", "flag-sj", "Flag"],
- "emoji_key": "flag-sj"
- }, {
- "keywords": ["male_zombie", "", "zombie", "male"],
- "emoji_key": "male_zombie"
- }, {
- "keywords": ["Slovakia", "Flag", "flag-sk"],
- "emoji_key": "flag-sk"
- }, {
- "keywords": ["flag-sl", "Leone", "Flag", "Sierra"],
- "emoji_key": "flag-sl"
- }, {
- "keywords": ["", "man-frowning"],
- "emoji_key": "man-frowning"
- }, {
- "keywords": ["San", "Flag", "Marino", "flag-sm"],
- "emoji_key": "flag-sm"
- }, {
- "keywords": ["", "woman-frowning"],
- "emoji_key": "woman-frowning"
- }, {
- "keywords": ["Senegal", "Flag", "flag-sn"],
- "emoji_key": "flag-sn"
- }, {
- "keywords": ["Flag", "Somalia", "flag-so"],
- "emoji_key": "flag-so"
- }, {
- "keywords": ["", "man-pouting"],
- "emoji_key": "man-pouting"
- }, {
- "keywords": ["flag-sr", "Flag", "Suriname"],
- "emoji_key": "flag-sr"
- }, {
- "keywords": ["", "woman-pouting"],
- "emoji_key": "woman-pouting"
- }, {
- "keywords": ["flag-ss", "South", "Flag", "Sudan"],
- "emoji_key": "flag-ss"
- }, {
- "keywords": ["Pr\u00edncipe", "flag-st", "&", "Flag", "S\u00e3o", "Tom\u00e9"],
- "emoji_key": "flag-st"
- }, {
- "keywords": ["", "man-gesturing-no"],
- "emoji_key": "man-gesturing-no"
- }, {
- "keywords": ["El", "flag-sv", "Salvador", "Flag"],
- "emoji_key": "flag-sv"
- }, {
- "keywords": ["", "woman-gesturing-no"],
- "emoji_key": "woman-gesturing-no"
- }, {
- "keywords": ["Sint", "Flag", "flag-sx", "Maarten"],
- "emoji_key": "flag-sx"
- }, {
- "keywords": ["Syria", "Flag", "flag-sy"],
- "emoji_key": "flag-sy"
- }, {
- "keywords": ["", "man-gesturing-ok"],
- "emoji_key": "man-gesturing-ok"
- }, {
- "keywords": ["Flag", "Swaziland", "flag-sz"],
- "emoji_key": "flag-sz"
- }, {
- "keywords": ["", "woman-gesturing-ok"],
- "emoji_key": "woman-gesturing-ok"
- }, {
- "keywords": ["flag-ta", "da", "Tristan", "Cunha", "Flag"],
- "emoji_key": "flag-ta"
- }, {
- "keywords": ["Islands", "flag-tc", "&", "Caicos", "Turks", "Flag"],
- "emoji_key": "flag-tc"
- }, {
- "keywords": ["", "man-tipping-hand"],
- "emoji_key": "man-tipping-hand"
- }, {
- "keywords": ["flag-td", "Chad", "Flag"],
- "emoji_key": "flag-td"
- }, {
- "keywords": ["", "woman-tipping-hand"],
- "emoji_key": "woman-tipping-hand"
- }, {
- "keywords": ["French", "Territories", "flag-tf", "Southern", "Flag"],
- "emoji_key": "flag-tf"
- }, {
- "keywords": ["Flag", "Togo", "flag-tg"],
- "emoji_key": "flag-tg"
- }, {
- "keywords": ["", "man-raising-hand"],
- "emoji_key": "man-raising-hand"
- }, {
- "keywords": ["flag-th", "Flag", "Thailand"],
- "emoji_key": "flag-th"
- }, {
- "keywords": ["", "woman-raising-hand"],
- "emoji_key": "woman-raising-hand"
- }, {
- "keywords": ["Flag", "Tajikistan", "flag-tj"],
- "emoji_key": "flag-tj"
- }, {
- "keywords": ["Tokelau", "flag-tk", "Flag"],
- "emoji_key": "flag-tk"
- }, {
- "keywords": ["", "man-bowing"],
- "emoji_key": "man-bowing"
- }, {
- "keywords": ["Timor-Leste", "Flag", "flag-tl"],
- "emoji_key": "flag-tl"
- }, {
- "keywords": ["", "woman-bowing"],
- "emoji_key": "woman-bowing"
- }, {
- "keywords": ["flag-tm", "Flag", "Turkmenistan"],
- "emoji_key": "flag-tm"
- }, {
- "keywords": ["Flag", "flag-tn", "Tunisia"],
- "emoji_key": "flag-tn"
- }, {
- "keywords": ["man-facepalming", ""],
- "emoji_key": "man-facepalming"
- }, {
- "keywords": ["Flag", "Tonga", "flag-to"],
- "emoji_key": "flag-to"
- }, {
- "keywords": ["", "woman-facepalming"],
- "emoji_key": "woman-facepalming"
- }, {
- "keywords": ["Turkey", "Flag", "flag-tr"],
- "emoji_key": "flag-tr"
- }, {
- "keywords": ["Tobago", "&", "flag-tt", "Flag", "Trinidad"],
- "emoji_key": "flag-tt"
- }, {
- "keywords": ["", "man-shrugging"],
- "emoji_key": "man-shrugging"
- }, {
- "keywords": ["Flag", "flag-tv", "Tuvalu"],
- "emoji_key": "flag-tv"
- }, {
- "keywords": ["", "woman-shrugging"],
- "emoji_key": "woman-shrugging"
- }, {
- "keywords": ["Taiwan", "Flag", "flag-tw"],
- "emoji_key": "flag-tw"
- }, {
- "keywords": ["flag-tz", "Flag", "Tanzania"],
- "emoji_key": "flag-tz"
- }, {
- "keywords": ["", "man-getting-massage"],
- "emoji_key": "man-getting-massage"
- }, {
- "keywords": ["flag-ua", "Flag", "Ukraine"],
- "emoji_key": "flag-ua"
- }, {
- "keywords": ["", "woman-getting-massage"],
- "emoji_key": "woman-getting-massage"
- }, {
- "keywords": ["Flag", "Uganda", "flag-ug"],
- "emoji_key": "flag-ug"
- }, {
- "keywords": ["Islands", "flag-um", "Outlying", "Flag", "U.S."],
- "emoji_key": "flag-um"
- }, {
- "keywords": ["man-getting-haircut", ""],
- "emoji_key": "man-getting-haircut"
- }, {
- "keywords": ["Nations", "flag-un", "United", "Flag"],
- "emoji_key": "flag-un"
- }, {
- "keywords": ["", "woman-getting-haircut"],
- "emoji_key": "woman-getting-haircut"
- }, {
- "keywords": ["us", "nation", "Flagunited", "america", "country", "States", "flag", "banner", "United", "states"],
- "emoji_key": "us"
- }, {
- "keywords": ["Uruguay", "Flag", "flag-uy"],
- "emoji_key": "flag-uy"
- }, {
- "keywords": ["", "man-walking"],
- "emoji_key": "man-walking"
- }, {
- "keywords": ["flag-uz", "Flag", "Uzbekistan"],
- "emoji_key": "flag-uz"
- }, {
- "keywords": ["", "woman-walking"],
- "emoji_key": "woman-walking"
- }, {
- "keywords": ["flag-va", "Vatican", "Flag", "City"],
- "emoji_key": "flag-va"
- }, {
- "keywords": ["&", "St.", "Grenadines", "flag-vc", "Vincent", "Flag"],
- "emoji_key": "flag-vc"
- }, {
- "keywords": ["", "man-running"],
- "emoji_key": "man-running"
- }, {
- "keywords": ["flag-ve", "Flag", "Venezuela"],
- "emoji_key": "flag-ve"
- }, {
- "keywords": ["", "woman-running"],
- "emoji_key": "woman-running"
- }, {
- "keywords": ["Islands", "flag-vg", "British", "Virgin", "Flag"],
- "emoji_key": "flag-vg"
- }, {
- "keywords": ["fun", "dancer", "DANCERfemale", "woman", "girl"],
- "emoji_key": "dancer"
- }, {
- "keywords": ["Islands", "Virgin", "flag-vi", "Flag", "U.S."],
- "emoji_key": "flag-vi"
- }, {
- "keywords": ["man_dancing", "fun", "dancing", "dancer", "boy", "DANCINGmale", "man", "MAN"],
- "emoji_key": "man_dancing"
- }, {
- "keywords": ["flag-vn", "Vietnam", "Flag"],
- "emoji_key": "flag-vn"
- }, {
- "keywords": ["Vanuatu", "Flag", "flag-vu"],
- "emoji_key": "flag-vu"
- }, {
- "keywords": ["", "man-with-bunny-ears-partying"],
- "emoji_key": "man-with-bunny-ears-partying"
- }, {
- "keywords": ["&", "Futuna", "Wallis", "flag-wf", "Flag"],
- "emoji_key": "flag-wf"
- }, {
- "keywords": ["", "woman-with-bunny-ears-partying"],
- "emoji_key": "woman-with-bunny-ears-partying"
- }, {
- "keywords": ["Flag", "Samoa", "flag-ws"],
- "emoji_key": "flag-ws"
- }, {
- "keywords": ["Kosovo", "Flag", "flag-xk"],
- "emoji_key": "flag-xk"
- }, {
- "keywords": ["woman_in_steamy_room", "room", "in", "steamroom", "steamy", "woman", "sauna", "spa", "female"],
- "emoji_key": "woman_in_steamy_room"
- }, {
- "keywords": ["flag-ye", "Flag", "Yemen"],
- "emoji_key": "flag-ye"
- }, {
- "keywords": ["room", "sauna", "in", "steamroom", "steamy", "male", "man", "spa", "man_in_steamy_room"],
- "emoji_key": "man_in_steamy_room"
- }, {
- "keywords": ["Mayotte", "flag-yt", "Flag"],
- "emoji_key": "flag-yt"
- }, {
- "keywords": ["flag-za", "South", "Flag", "Africa"],
- "emoji_key": "flag-za"
- }, {
- "keywords": ["", "woman", "climbing", "woman_climbing"],
- "emoji_key": "woman_climbing"
- }, {
- "keywords": ["Zambia", "Flag", "flag-zm"],
- "emoji_key": "flag-zm"
- }, {
- "keywords": ["", "man_climbing", "climbing", "man"],
- "emoji_key": "man_climbing"
- }, {
- "keywords": ["Zimbabwe", "flag-zw", "Flag"],
- "emoji_key": "flag-zw"
- }, {
- "keywords": ["England", "flag-england", "Flag"],
- "emoji_key": "flag-england"
- }, {
- "keywords": ["woman_in_lotus_position", "meditation", "position", "yoga", "mindfulness", "in", "zen", "serenity", "woman", "female", "lotus"],
- "emoji_key": "woman_in_lotus_position"
- }, {
- "keywords": ["flag-scotland", "Scotland", "Flag"],
- "emoji_key": "flag-scotland"
- }, {
- "keywords": ["meditation", "position", "yoga", "in", "zen", "man_in_lotus_position", "serenity", "male", "man", "mindfulness", "lotus"],
- "emoji_key": "man_in_lotus_position"
- }, {
- "keywords": ["Wales", "Flag", "flag-wales"],
- "emoji_key": "flag-wales"
- }, {
- "keywords": ["bath", "bathroom", "shower", "BATHclean"],
- "emoji_key": "bath"
- }, {
- "keywords": ["SLEEPING", "accommodation", "sleeping_accommodation", "sleeping", "ACCOMMODATION"],
- "emoji_key": "sleeping_accommodation"
- }, {
- "keywords": ["suit", "", "business", "in", "man_in_business_suit_levitating", "levitating", "man"],
- "emoji_key": "man_in_business_suit_levitating"
- }, {
- "keywords": ["", "speaking", "in", "silhouette", "head", "speaking_head_in_silhouette"],
- "emoji_key": "speaking_head_in_silhouette"
- }, {
- "keywords": ["IN", "human", "in", "SILHOUETTEuser", "person", "silhouette", "BUST", "bust", "bust_in_silhouette"],
- "emoji_key": "bust_in_silhouette"
- }, {
- "keywords": ["team", "IN", "BUSTS", "human", "in", "busts", "busts_in_silhouette", "SILHOUETTEuser", "person", "silhouette", "group"],
- "emoji_key": "busts_in_silhouette"
- }, {
- "keywords": ["FENCER", "fencer"],
- "emoji_key": "fencer"
- }, {
- "keywords": ["betting", "luck", "racing", "horse", "horse_racing", "gambling", "competition", "HORSE", "RACINGanimal"],
- "emoji_key": "horse_racing"
- }, {
- "keywords": ["skier", "sports", "winter", "snow"],
- "emoji_key": "skier"
- }, {
- "keywords": ["SNOWBOARDERsports", "winter", "snowboarder"],
- "emoji_key": "snowboarder"
- }, {
- "keywords": ["", "man-golfing"],
- "emoji_key": "man-golfing"
- }, {
- "keywords": ["woman-golfing", ""],
- "emoji_key": "woman-golfing"
- }, {
- "keywords": ["", "man-surfing"],
- "emoji_key": "man-surfing"
- }, {
- "keywords": ["woman-surfing", ""],
- "emoji_key": "woman-surfing"
- }, {
- "keywords": ["", "man-rowing-boat"],
- "emoji_key": "man-rowing-boat"
- }, {
- "keywords": ["woman-rowing-boat", ""],
- "emoji_key": "woman-rowing-boat"
- }, {
- "keywords": ["", "man-swimming"],
- "emoji_key": "man-swimming"
- }, {
- "keywords": ["", "woman-swimming"],
- "emoji_key": "woman-swimming"
- }, {
- "keywords": ["", "man-bouncing-ball"],
- "emoji_key": "man-bouncing-ball"
- }, {
- "keywords": ["", "woman-bouncing-ball"],
- "emoji_key": "woman-bouncing-ball"
- }, {
- "keywords": ["", "man-lifting-weights"],
- "emoji_key": "man-lifting-weights"
- }, {
- "keywords": ["", "woman-lifting-weights"],
- "emoji_key": "woman-lifting-weights"
- }, {
- "keywords": ["", "man-biking"],
- "emoji_key": "man-biking"
- }, {
- "keywords": ["", "woman-biking"],
- "emoji_key": "woman-biking"
- }, {
- "keywords": ["", "man-mountain-biking"],
- "emoji_key": "man-mountain-biking"
- }, {
- "keywords": ["", "woman-mountain-biking"],
- "emoji_key": "woman-mountain-biking"
- }, {
- "keywords": ["fast", "racing", "sports", "race", "racing_car", "f1", "formula", "car"],
- "emoji_key": "racing_car"
- }, {
- "keywords": ["motorcycle", "", "racing_motorcycle", "racing"],
- "emoji_key": "racing_motorcycle"
- }, {
- "keywords": ["", "man-cartwheeling"],
- "emoji_key": "man-cartwheeling"
- }, {
- "keywords": ["woman-cartwheeling", ""],
- "emoji_key": "woman-cartwheeling"
- }, {
- "keywords": ["", "man-wrestling"],
- "emoji_key": "man-wrestling"
- }, {
- "keywords": ["", "woman-wrestling"],
- "emoji_key": "woman-wrestling"
- }, {
- "keywords": ["", "man-playing-water-polo"],
- "emoji_key": "man-playing-water-polo"
- }, {
- "keywords": ["woman-playing-water-polo", ""],
- "emoji_key": "woman-playing-water-polo"
- }, {
- "keywords": ["", "man-playing-handball"],
- "emoji_key": "man-playing-handball"
- }, {
- "keywords": ["", "woman-playing-handball"],
- "emoji_key": "woman-playing-handball"
- }, {
- "keywords": ["", "man-juggling"],
- "emoji_key": "man-juggling"
- }, {
- "keywords": ["", "woman-juggling"],
- "emoji_key": "woman-juggling"
- }, {
- "keywords": ["HOLDING", "affection", "couple", "human", "like", "AND", "marriage", "love", "dating", "date", "people", "HANDSpair", "WOMAN", "MAN", "valentines"],
- "emoji_key": "couple"
- }, {
- "keywords": ["HOLDING", "two_men_holding_hands", "two", "couple", "like", "friendship", "human", "holding", "MEN", "love", "hands", "bromance", "people", "HANDSpair", "TWO", "men"],
- "emoji_key": "two_men_holding_hands"
- }, {
- "keywords": ["HOLDING", "two", "friendship", "couple", "like", "human", "holding", "women", "WOMEN", "love", "HANDSpair", "female", "hands", "people", "two_women_holding_hands", "TWO"],
- "emoji_key": "two_women_holding_hands"
- }, {
- "keywords": ["", "woman-kiss-man"],
- "emoji_key": "woman-kiss-man"
- }, {
- "keywords": ["", "man-kiss-man"],
- "emoji_key": "man-kiss-man"
- }, {
- "keywords": ["", "woman-kiss-woman"],
- "emoji_key": "woman-kiss-woman"
- }, {
- "keywords": ["woman-heart-man", ""],
- "emoji_key": "woman-heart-man"
- }, {
- "keywords": ["", "man-heart-man"],
- "emoji_key": "man-heart-man"
- }, {
- "keywords": ["", "woman-heart-woman"],
- "emoji_key": "woman-heart-woman"
- }, {
- "keywords": ["", "man-woman-boy"],
- "emoji_key": "man-woman-boy"
- }, {
- "keywords": ["", "man-woman-girl"],
- "emoji_key": "man-woman-girl"
- }, {
- "keywords": ["", "man-woman-girl-boy"],
- "emoji_key": "man-woman-girl-boy"
- }, {
- "keywords": ["", "man-woman-boy-boy"],
- "emoji_key": "man-woman-boy-boy"
- }, {
- "keywords": ["", "man-woman-girl-girl"],
- "emoji_key": "man-woman-girl-girl"
- }, {
- "keywords": ["", "man-man-boy"],
- "emoji_key": "man-man-boy"
- }, {
- "keywords": ["", "man-man-girl"],
- "emoji_key": "man-man-girl"
- }, {
- "keywords": ["", "man-man-girl-boy"],
- "emoji_key": "man-man-girl-boy"
- }, {
- "keywords": ["", "man-man-boy-boy"],
- "emoji_key": "man-man-boy-boy"
- }, {
- "keywords": ["", "man-man-girl-girl"],
- "emoji_key": "man-man-girl-girl"
- }, {
- "keywords": ["", "woman-woman-boy"],
- "emoji_key": "woman-woman-boy"
- }, {
- "keywords": ["", "woman-woman-girl"],
- "emoji_key": "woman-woman-girl"
- }, {
- "keywords": ["", "woman-woman-girl-boy"],
- "emoji_key": "woman-woman-girl-boy"
- }, {
- "keywords": ["", "woman-woman-boy-boy"],
- "emoji_key": "woman-woman-boy-boy"
- }, {
- "keywords": ["", "woman-woman-girl-girl"],
- "emoji_key": "woman-woman-girl-girl"
- }, {
- "keywords": ["", "man-boy"],
- "emoji_key": "man-boy"
- }, {
- "keywords": ["man-boy-boy", ""],
- "emoji_key": "man-boy-boy"
- }, {
- "keywords": ["", "man-girl"],
- "emoji_key": "man-girl"
- }, {
- "keywords": ["", "man-girl-boy"],
- "emoji_key": "man-girl-boy"
- }, {
- "keywords": ["", "man-girl-girl"],
- "emoji_key": "man-girl-girl"
- }, {
- "keywords": ["woman-boy", ""],
- "emoji_key": "woman-boy"
- }, {
- "keywords": ["", "woman-boy-boy"],
- "emoji_key": "woman-boy-boy"
- }, {
- "keywords": ["", "woman-girl"],
- "emoji_key": "woman-girl"
- }, {
- "keywords": ["woman-girl-boy", ""],
- "emoji_key": "woman-girl-boy"
- }, {
- "keywords": ["", "woman-girl-girl"],
- "emoji_key": "woman-girl-girl"
- }, {
- "keywords": ["selfie", "SELFIEcamera", "phone"],
- "emoji_key": "selfie"
- }, {
- "keywords": ["FLEXED", "flex", "muscle", "summer", "BICEPSarm", "biceps", "hand", "strong"],
- "emoji_key": "muscle"
- }, {
- "keywords": ["leg", "LEG"],
- "emoji_key": "leg"
- }, {
- "keywords": ["FOOT", "foot"],
- "emoji_key": "foot"
- }, {
- "keywords": ["point", "POINTING", "BACKHAND", "WHITE", "INDEXdirection", "point_left", "LEFT", "hand", "left", "fingers"],
- "emoji_key": "point_left"
- }, {
- "keywords": ["point", "POINTING", "BACKHAND", "direction", "INDEXfingers", "WHITE", "point_right", "RIGHT", "hand", "right"],
- "emoji_key": "point_right"
- }, {
- "keywords": ["point", "UP", "POINTING", "up", "INDEXhand", "direction", "WHITE", "fingers", "point_up"],
- "emoji_key": "point_up"
- }, {
- "keywords": ["point", "UP", "2", "point_up_2", "POINTING", "up", "BACKHAND", "direction", "INDEXfingers", "WHITE", "hand"],
- "emoji_key": "point_up_2"
- }, {
- "keywords": ["REVERSED", "MIDDLE", "HAND", "middle_finger", "EXTENDED", "finger", "FINGER", "WITH", "middle"],
- "emoji_key": "middle_finger"
- }, {
- "keywords": ["point", "POINTING", "BACKHAND", "down", "INDEXfingers", "direction", "WHITE", "point_down", "DOWN", "hand"],
- "emoji_key": "point_down"
- }, {
- "keywords": ["VICTORY", "peace", "two", "v", "victory", "HANDfingers", "hand", "ohyeah"],
- "emoji_key": "v"
- }, {
- "keywords": ["CROSSEDgood", "MIDDLE", "HAND", "lucky", "INDEX", "AND", "FINGERS", "crossed_fingers", "crossed", "WITH", "fingers"],
- "emoji_key": "crossed_fingers"
- }, {
- "keywords": ["MIDDLE", "HAND", "BETWEEN", "spock-hand", "PART", "AND", "RAISED", "RING", "FINGERS", "WITH"],
- "emoji_key": "spock-hand"
- }, {
- "keywords": ["THE", "HORNS", "OF", "SIGN", "the_horns", "horns", "the"],
- "emoji_key": "the_horns"
- }, {
- "keywords": ["me", "gesture", "call_me_hand", "ME", "HANDhands", "call", "hand", "CALL"],
- "emoji_key": "call_me_hand"
- }, {
- "keywords": ["raised_hand_with_fingers_splayed", "with", "raised", "hand", "palm", "splayed", "fingers"],
- "emoji_key": "raised_hand_with_fingers_splayed"
- }, {
- "keywords": ["HAND", "hand", "RAISED"],
- "emoji_key": "hand"
- }, {
- "keywords": ["HAND", "OK", "perfect", "ok", "okay", "ok_hand", "SIGNfingers", "limbs", "hand"],
- "emoji_key": "ok_hand"
- }, {
- "keywords": ["yes", "accept", "UP", "awesome", "good", "like", "SIGNthumbsup", "+1", "THUMBS", "cool", "hand", "agree"],
- "emoji_key": "+1"
- }, {
- "keywords": ["-1", "THUMBS", "SIGNthumbsdown", "no", "DOWN", "hand", "dislike"],
- "emoji_key": "-1"
- }, {
- "keywords": ["grasp", "RAISED", "hand", "fist", "FISTfingers"],
- "emoji_key": "fist"
- }, {
- "keywords": ["HAND", "facepunch", "violence", "hit", "attack", "SIGNangry", "hand", "FISTED", "fist"],
- "emoji_key": "facepunch"
- }, {
- "keywords": ["LEFT-FACING", "left-facing", "left-facing_fist", "FIST", "fist"],
- "emoji_key": "left-facing_fist"
- }, {
- "keywords": ["RIGHT-FACING", "right-facing_fist", "right-facing", "FIST", "fist"],
- "emoji_key": "right-facing_fist"
- }, {
- "keywords": ["OF", "hand", "BACK", "RAISED", "of", "back", "HANDfingers", "raised", "raised_back_of_hand", "backhand"],
- "emoji_key": "raised_back_of_hand"
- }, {
- "keywords": ["HAND", "wave", "SIGNhands", "goodbye", "gesture", "solong", "hello", "palm", "WAVING", "hi", "farewell"],
- "emoji_key": "wave"
- }, {
- "keywords": ["HAND", "sign", "SIGN", "YOU", "i_love_you_hand_sign", "love", "LOVE", "you", "I", "hand", "i"],
- "emoji_key": "i_love_you_hand_sign"
- }, {
- "keywords": ["ballpoint", "writing_hand", "writing", "lower", "pen", "write", "compose", "stationery", "hand", "left"],
- "emoji_key": "writing_hand"
- }, {
- "keywords": ["clap", "SIGNhands", "congrats", "applause", "HANDS", "praise", "CLAPPING", "yay"],
- "emoji_key": "clap"
- }, {
- "keywords": ["open", "butterfly", "HANDS", "OPEN", "SIGNfingers", "open_hands", "hands"],
- "emoji_key": "open_hands"
- }, {
- "keywords": ["yea", "BOTH", "IN", "hooray", "HANDS", "PERSON", "celebration", "hands", "raised_hands", "raised", "CELEBRATIONgesture", "RAISING"],
- "emoji_key": "raised_hands"
- }, {
- "keywords": ["TOGETHER", "palms_up_together", "UP", "palms", "up", "together", "PALMS"],
- "emoji_key": "palms_up_together"
- }, {
- "keywords": ["hope", "highfive", "wish", "PERSON", "FOLDED", "HANDSplease", "pray", "namaste", "WITH"],
- "emoji_key": "pray"
- }, {
- "keywords": ["handshake", "HANDSHAKEagreement", "shake"],
- "emoji_key": "handshake"
- }, {
- "keywords": ["nail_care", "finger", "POLISHbeauty", "fashion", "manicure", "nail", "care", "NAIL"],
- "emoji_key": "nail_care"
- }, {
- "keywords": ["EARface", "listen", "sound", "hear", "ear"],
- "emoji_key": "ear"
- }, {
- "keywords": ["NOSEsmell", "sniff", "nose"],
- "emoji_key": "nose"
- }, {
- "keywords": ["beach", "footprints", "walking", "FOOTPRINTSfeet", "tracking"],
- "emoji_key": "footprints"
- }, {
- "keywords": ["stalk", "watch", "eyes", "EYESlook", "peek", "see"],
- "emoji_key": "eyes"
- }, {
- "keywords": ["face", "watch", "stare", "eye", "see", "look"],
- "emoji_key": "eye"
- }, {
- "keywords": ["eye-in-speech-bubble", ""],
- "emoji_key": "eye-in-speech-bubble"
- }, {
- "keywords": ["intelligent", "BRAINsmart", "brain"],
- "emoji_key": "brain"
- }, {
- "keywords": ["BONE", "bone"],
- "emoji_key": "bone"
- }, {
- "keywords": ["TOOTH", "tooth"],
- "emoji_key": "tooth"
- }, {
- "keywords": ["playful", "tongue", "TONGUEmouth"],
- "emoji_key": "tongue"
- }, {
- "keywords": ["kiss", "MOUTHmouth", "lips"],
- "emoji_key": "lips"
- }, {
- "keywords": ["affection", "like", "KISS", "MARKface", "love", "kiss", "lips", "valentines"],
- "emoji_key": "kiss"
- }, {
- "keywords": ["cupid", "affection", "like", "heart", "ARROWlove", "HEART", "WITH", "valentines"],
- "emoji_key": "cupid"
- }, {
- "keywords": ["like", "heart", "HEAVY", "HEARTlove", "BLACK", "valentines"],
- "emoji_key": "heart"
- }, {
- "keywords": ["affection", "like", "heart", "BEATING", "pink", "HEARTlove", "heartbeat", "valentines"],
- "emoji_key": "heartbeat"
- }, {
- "keywords": ["heartbreak", "broken", "break", "heart", "sorry", "BROKEN", "HEARTsad", "broken_heart"],
- "emoji_key": "broken_heart"
- }, {
- "keywords": ["affection", "hearts", "two", "like", "two_hearts", "HEARTSlove", "heart", "TWO", "valentines"],
- "emoji_key": "two_hearts"
- }, {
- "keywords": ["affection", "SPARKLING", "sparkling_heart", "like", "sparkling", "heart", "HEARTlove", "valentines"],
- "emoji_key": "sparkling_heart"
- }, {
- "keywords": ["heartpulse", "affection", "HEARTlike", "pink", "love", "valentines", "GROWING"],
- "emoji_key": "heartpulse"
- }, {
- "keywords": ["affection", "like", "heart", "blue_heart", "HEARTlove", "BLUE", "blue", "valentines"],
- "emoji_key": "blue_heart"
- }, {
- "keywords": ["affection", "like", "heart", "HEARTlove", "green_heart", "green", "GREEN", "valentines"],
- "emoji_key": "green_heart"
- }, {
- "keywords": ["affection", "yellow", "like", "heart", "HEARTlove", "YELLOW", "valentines", "yellow_heart"],
- "emoji_key": "yellow_heart"
- }, {
- "keywords": ["affection", "like", "orange_heart", "heart", "orange", "HEARTlove", "ORANGE", "valentines"],
- "emoji_key": "orange_heart"
- }, {
- "keywords": ["affection", "like", "PURPLE", "heart", "HEARTlove", "purple", "purple_heart", "valentines"],
- "emoji_key": "purple_heart"
- }, {
- "keywords": ["black_heart", "heart", "HEARTevil", "black", "BLACK"],
- "emoji_key": "black_heart"
- }, {
- "keywords": ["RIBBONlove", "gift_heart", "heart", "HEART", "gift", "WITH", "valentines"],
- "emoji_key": "gift_heart"
- }, {
- "keywords": ["revolving", "affection", "hearts", "revolving_hearts", "like", "HEARTSlove", "REVOLVING", "valentines"],
- "emoji_key": "revolving_hearts"
- }, {
- "keywords": ["like", "DECORATIONpurple-square", "heart", "love", "decoration", "heart_decoration", "HEART"],
- "emoji_key": "heart_decoration"
- }, {
- "keywords": ["exclamation", "", "heavy", "heavy_heart_exclamation_mark_ornament", "ornament", "heart", "mark"],
- "emoji_key": "heavy_heart_exclamation_mark_ornament"
- }, {
- "keywords": ["letter", "affection", "love_letter", "LETTERemail", "like", "love", "LOVE", "envelope", "valentines"],
- "emoji_key": "love_letter"
- }, {
- "keywords": ["SLEEPING", "dream", "tired", "SYMBOLsleepy", "zzz"],
- "emoji_key": "zzz"
- }, {
- "keywords": ["ANGER", "anger", "SYMBOLangry", "mad"],
- "emoji_key": "anger"
- }, {
- "keywords": ["terrorism", "explosion", "explode", "BOMBboom", "bomb"],
- "emoji_key": "bomb"
- }, {
- "keywords": ["blown", "collision", "explosion", "boom", "explode", "SYMBOLbomb", "COLLISION"],
- "emoji_key": "boom"
- }, {
- "keywords": ["oops", "drops", "sweat", "sweat_drops", "SWEAT", "SYMBOLwater", "drip", "SPLASHING"],
- "emoji_key": "sweat_drops"
- }, {
- "keywords": ["air", "shoo", "fast", "SYMBOLwind", "fart", "DASH", "smoke", "puff", "dash"],
- "emoji_key": "dash"
- }, {
- "keywords": ["DIZZY", "shoot", "sparkle", "SYMBOLstar", "dizzy", "magic"],
- "emoji_key": "dizzy"
- }, {
- "keywords": ["SPEECH", "BALLOONbubble", "words", "chatting", "message", "speech", "talk", "balloon", "speech_balloon"],
- "emoji_key": "speech_balloon"
- }, {
- "keywords": ["words", "message", "left_speech_bubble", "speech", "talk", "bubble", "chatting", "left"],
- "emoji_key": "left_speech_bubble"
- }, {
- "keywords": ["speech", "mad", "caption", "anger", "right_anger_bubble", "bubble", "right", "thinking"],
- "emoji_key": "right_anger_bubble"
- }, {
- "keywords": ["BALLOONbubble", "cloud", "dream", "THOUGHT", "speech", "thought", "balloon", "thought_balloon", "thinking"],
- "emoji_key": "thought_balloon"
- }, {
- "keywords": ["embarrassing", "hole"],
- "emoji_key": "hole"
- }, {
- "keywords": ["accessories", "EYEGLASSESfashion", "eyeglasses", "dork", "geek", "nerdy", "eyesight"],
- "emoji_key": "eyeglasses"
- }, {
- "keywords": ["sunglasses", "accessories", "face", "dark", "cool", "dark_sunglasses"],
- "emoji_key": "dark_sunglasses"
- }, {
- "keywords": ["goggles", "GOGGLES"],
- "emoji_key": "goggles"
- }, {
- "keywords": ["coat", "lab", "LAB", "lab_coat", "COAT"],
- "emoji_key": "lab_coat"
- }, {
- "keywords": ["necktie", "business", "formal", "fashion", "NECKTIEshirt", "cloth", "suitup"],
- "emoji_key": "necktie"
- }, {
- "keywords": ["T-SHIRT", "shirt"],
- "emoji_key": "shirt"
- }, {
- "keywords": ["JEANSfashion", "shopping", "jeans"],
- "emoji_key": "jeans"
- }, {
- "keywords": ["SCARFneck", "winter", "scarf", "clothes"],
- "emoji_key": "scarf"
- }, {
- "keywords": ["GLOVEShands", "gloves", "winter", "clothes"],
- "emoji_key": "gloves"
- }, {
- "keywords": ["coat", "COATjacket"],
- "emoji_key": "coat"
- }, {
- "keywords": ["clothes", "SOCKSstockings", "socks"],
- "emoji_key": "socks"
- }, {
- "keywords": ["shopping", "fashion", "dress", "DRESSclothes"],
- "emoji_key": "dress"
- }, {
- "keywords": ["kimono", "japanese", "fashion", "women", "KIMONOdress", "female"],
- "emoji_key": "kimono"
- }, {
- "keywords": ["fashion", "summer", "beach", "woman", "girl", "BIKINIswimming", "female", "bikini"],
- "emoji_key": "bikini"
- }, {
- "keywords": ["womans", "bags", "womans_clothes", "CLOTHESfashion", "WOMANS", "clothes", "shopping", "female"],
- "emoji_key": "womans_clothes"
- }, {
- "keywords": ["PURSEfashion", "accessories", "shopping", "money", "purse", "sales"],
- "emoji_key": "purse"
- }, {
- "keywords": ["accessories", "accessory", "shopping", "handbag", "HANDBAGfashion"],
- "emoji_key": "handbag"
- }, {
- "keywords": ["POUCHbag", "accessories", "pouch", "shopping"],
- "emoji_key": "pouch"
- }, {
- "keywords": ["", "shopping_bags", "bags", "shopping"],
- "emoji_key": "shopping_bags"
- }, {
- "keywords": ["school_satchel", "school", "backpack", "education", "satchel", "bag", "SCHOOL", "SATCHELstudent"],
- "emoji_key": "school_satchel"
- }, {
- "keywords": ["shoe", "mans_shoe", "SHOEfashion", "mans", "male", "MANS"],
- "emoji_key": "mans_shoe"
- }, {
- "keywords": ["shoe", "SHOEshoes", "sports", "athletic_shoe", "sneakers", "ATHLETIC", "athletic"],
- "emoji_key": "athletic_shoe"
- }, {
- "keywords": ["BOOT", "HIKING", "hiking_boot", "boot", "hiking"],
- "emoji_key": "hiking_boot"
- }, {
- "keywords": ["woman\u2019s", "shoe", "SHOE", "FLAT", "flat", "woman\u2019s_flat_shoe"],
- "emoji_key": "woman\u2019s_flat_shoe"
- }, {
- "keywords": ["SHOEfashion", "pumps", "high_heel", "high", "shoes", "HIGH-HEELED", "stiletto", "female", "heel"],
- "emoji_key": "high_heel"
- }, {
- "keywords": ["fashion", "flops", "SANDALshoes", "WOMANS", "sandal", "flip"],
- "emoji_key": "sandal"
- }, {
- "keywords": ["boot", "fashion", "BOOTSshoes", "WOMANS"],
- "emoji_key": "boot"
- }, {
- "keywords": ["CROWNking", "crown", "leader", "lord", "kod", "royalty"],
- "emoji_key": "crown"
- }, {
- "keywords": ["accessories", "lady", "womans", "hat", "womans_hat", "HATfashion", "WOMANS", "spring", "female"],
- "emoji_key": "womans_hat"
- }, {
- "keywords": ["gentleman", "TOP", "tophat", "classy", "HATmagic", "circus"],
- "emoji_key": "tophat"
- }, {
- "keywords": ["legal", "mortar", "learn", "graduation", "CAPschool", "hat", "university", "college", "board", "education", "cap", "GRADUATION", "mortar_board", "degree"],
- "emoji_key": "mortar_board"
- }, {
- "keywords": ["billed", "billed_cap", "cap", "BILLED", "CAP"],
- "emoji_key": "billed_cap"
- }, {
- "keywords": ["", "cross", "with", "white", "helmet_with_white_cross", "helmet"],
- "emoji_key": "helmet_with_white_cross"
- }, {
- "keywords": ["prayer", "religious", "beads", "PRAYER", "prayer_beads", "BEADSdhikr"],
- "emoji_key": "prayer_beads"
- }, {
- "keywords": ["lipstick", "LIPSTICKfemale", "fashion", "woman", "girl"],
- "emoji_key": "lipstick"
- }, {
- "keywords": ["ring", "diamond", "marriage", "fashion", "engagement", "RINGwedding", "gem", "propose", "jewelry", "valentines"],
- "emoji_key": "ring"
- }, {
- "keywords": ["GEM", "diamond", "STONEblue", "ruby", "jewelry", "gem"],
- "emoji_key": "gem"
- }, {
- "keywords": ["", "man", "superhero", "man_superhero"],
- "emoji_key": "man_superhero"
- }, {
- "keywords": ["", "woman_superhero", "superhero", "woman"],
- "emoji_key": "woman_superhero"
- }, {
- "keywords": ["man_supervillain", "man", "supervillain", ""],
- "emoji_key": "man_supervillain"
- }, {
- "keywords": ["", "woman_supervillain", "supervillain", "woman"],
- "emoji_key": "woman_supervillain"
- }]
-}
\ No newline at end of file
+ category: [
+ { key: "fue", title: "Frequently Used" },
+ { key: "people", title: "Smileys & People" },
+ { key: "animals_and_nature", title: "Animals & Nature" },
+ { key: "food_and_drink", title: "Food & Drink" },
+ { key: "activity", title: "Activities" },
+ { key: "travel_and_places", title: "Travel & Places" },
+ { key: "objects", title: "Objects" },
+ { key: "symbols", title: "Symbols" },
+ { key: "flags", title: "Flags" },
+ ],
+ categoryIndexMap: {
+ fue: { key: "fue", title: "Frequently Used", idx: 0 },
+ people: { key: "people", title: "Smileys & People", idx: 1 },
+ animals_and_nature: {
+ key: "animals_and_nature",
+ title: "Animals & Nature",
+ idx: 2,
+ },
+ food_and_drink: { key: "food_and_drink", title: "Food & Drink", idx: 3 },
+ activity: { key: "activity", title: "Activities", idx: 4 },
+ travel_and_places: {
+ key: "travel_and_places",
+ title: "Travel & Places",
+ idx: 5,
+ },
+ objects: { key: "objects", title: "Objects", idx: 6 },
+ symbols: { key: "symbols", title: "Symbols", idx: 7 },
+ flags: { key: "flags", title: "Flags", idx: 8 },
+ },
+ emojiLib: {
+ 100: {
+ char: "💯",
+ key: "100",
+ keywords: ["100", "HUNDRED POINTS SYMBOL"],
+ category: "people",
+ lib: {
+ name: "HUNDRED POINTS SYMBOL",
+ unified: "1F4AF",
+ non_qualified: null,
+ docomo: null,
+ au: "E4F2",
+ softbank: null,
+ google: "FEB7B",
+ image: "1f4af.png",
+ sheet_x: 28,
+ sheet_y: 7,
+ short_name: "100",
+ short_names: ["100"],
+ text: null,
+ texts: null,
+ category: "Smileys & Emotion",
+ subcategory: "emotion",
+ sort_order: 154,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ 1234: {
+ char: "🔢",
+ key: "1234",
+ keywords: ["1234", "INPUT SYMBOL FOR NUMBERS"],
+ category: "symbols",
+ lib: {
+ name: "INPUT SYMBOL FOR NUMBERS",
+ unified: "1F522",
+ non_qualified: null,
+ docomo: null,
+ au: "EAFF",
+ softbank: null,
+ google: "FEB7E",
+ image: "1f522.png",
+ sheet_x: 29,
+ sheet_y: 60,
+ short_name: "1234",
+ short_names: ["1234"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "alphanum",
+ sort_order: 1536,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ grinning: {
+ char: "😀",
+ key: "grinning",
+ keywords: ["grinning", "GRINNING FACE"],
+ category: "people",
+ lib: {
+ name: "GRINNING FACE",
+ unified: "1F600",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f600.png",
+ sheet_x: 32,
+ sheet_y: 21,
+ short_name: "grinning",
+ short_names: ["grinning"],
+ text: ":D",
+ texts: null,
+ category: "Smileys & Emotion",
+ subcategory: "face-smiling",
+ sort_order: 1,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ smiley: {
+ char: "😃",
+ key: "smiley",
+ keywords: ["smiley", "SMILING FACE WITH OPEN MOUTH"],
+ category: "people",
+ lib: {
+ name: "SMILING FACE WITH OPEN MOUTH",
+ unified: "1F603",
+ non_qualified: null,
+ docomo: "E6F0",
+ au: "E471",
+ softbank: "E057",
+ google: "FE330",
+ image: "1f603.png",
+ sheet_x: 32,
+ sheet_y: 24,
+ short_name: "smiley",
+ short_names: ["smiley"],
+ text: ":)",
+ texts: ["=)", "=-)"],
+ category: "Smileys & Emotion",
+ subcategory: "face-smiling",
+ sort_order: 2,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ smile: {
+ char: "😄",
+ key: "smile",
+ keywords: ["smile", "SMILING FACE WITH OPEN MOUTH AND SMILING EYES"],
+ category: "people",
+ lib: {
+ name: "SMILING FACE WITH OPEN MOUTH AND SMILING EYES",
+ unified: "1F604",
+ non_qualified: null,
+ docomo: "E6F0",
+ au: "E471",
+ softbank: "E415",
+ google: "FE338",
+ image: "1f604.png",
+ sheet_x: 32,
+ sheet_y: 25,
+ short_name: "smile",
+ short_names: ["smile"],
+ text: ":)",
+ texts: ["C:", "c:", ":D", ":-D"],
+ category: "Smileys & Emotion",
+ subcategory: "face-smiling",
+ sort_order: 3,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ grin: {
+ char: "😁",
+ key: "grin",
+ keywords: ["grin", "GRINNING FACE WITH SMILING EYES"],
+ category: "people",
+ lib: {
+ name: "GRINNING FACE WITH SMILING EYES",
+ unified: "1F601",
+ non_qualified: null,
+ docomo: "E753",
+ au: "EB80",
+ softbank: "E404",
+ google: "FE333",
+ image: "1f601.png",
+ sheet_x: 32,
+ sheet_y: 22,
+ short_name: "grin",
+ short_names: ["grin"],
+ text: null,
+ texts: null,
+ category: "Smileys & Emotion",
+ subcategory: "face-smiling",
+ sort_order: 4,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ laughing: {
+ char: "😆",
+ key: "laughing",
+ keywords: [
+ "laughing",
+ "SMILING FACE WITH OPEN MOUTH AND TIGHTLY-CLOSED EYES",
+ ],
+ category: "people",
+ lib: {
+ name: "SMILING FACE WITH OPEN MOUTH AND TIGHTLY-CLOSED EYES",
+ unified: "1F606",
+ non_qualified: null,
+ docomo: "E72A",
+ au: "EAC5",
+ softbank: null,
+ google: "FE332",
+ image: "1f606.png",
+ sheet_x: 32,
+ sheet_y: 27,
+ short_name: "laughing",
+ short_names: ["laughing", "satisfied"],
+ text: null,
+ texts: [":>", ":->"],
+ category: "Smileys & Emotion",
+ subcategory: "face-smiling",
+ sort_order: 5,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ sweat_smile: {
+ char: "😅",
+ key: "sweat_smile",
+ keywords: ["sweat_smile", "SMILING FACE WITH OPEN MOUTH AND COLD SWEAT"],
+ category: "people",
+ lib: {
+ name: "SMILING FACE WITH OPEN MOUTH AND COLD SWEAT",
+ unified: "1F605",
+ non_qualified: null,
+ docomo: "E722",
+ au: "E471-E5B1",
+ softbank: null,
+ google: "FE331",
+ image: "1f605.png",
+ sheet_x: 32,
+ sheet_y: 26,
+ short_name: "sweat_smile",
+ short_names: ["sweat_smile"],
+ text: null,
+ texts: null,
+ category: "Smileys & Emotion",
+ subcategory: "face-smiling",
+ sort_order: 6,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ rolling_on_the_floor_laughing: {
+ char: "🤣",
+ key: "rolling_on_the_floor_laughing",
+ keywords: [
+ "rolling_on_the_floor_laughing",
+ "ROLLING ON THE FLOOR LAUGHING",
+ ],
+ category: "people",
+ lib: {
+ name: "ROLLING ON THE FLOOR LAUGHING",
+ unified: "1F923",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f923.png",
+ sheet_x: 40,
+ sheet_y: 17,
+ short_name: "rolling_on_the_floor_laughing",
+ short_names: ["rolling_on_the_floor_laughing"],
+ text: null,
+ texts: null,
+ category: "Smileys & Emotion",
+ subcategory: "face-smiling",
+ sort_order: 7,
+ added_in: "3.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ joy: {
+ char: "😂",
+ key: "joy",
+ keywords: ["joy", "FACE WITH TEARS OF JOY"],
+ category: "people",
+ lib: {
+ name: "FACE WITH TEARS OF JOY",
+ unified: "1F602",
+ non_qualified: null,
+ docomo: "E72A",
+ au: "EB64",
+ softbank: "E412",
+ google: "FE334",
+ image: "1f602.png",
+ sheet_x: 32,
+ sheet_y: 23,
+ short_name: "joy",
+ short_names: ["joy"],
+ text: null,
+ texts: null,
+ category: "Smileys & Emotion",
+ subcategory: "face-smiling",
+ sort_order: 8,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ slightly_smiling_face: {
+ char: "🙂",
+ key: "slightly_smiling_face",
+ keywords: ["slightly_smiling_face", "SLIGHTLY SMILING FACE"],
+ category: "people",
+ lib: {
+ name: "SLIGHTLY SMILING FACE",
+ unified: "1F642",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f642.png",
+ sheet_x: 33,
+ sheet_y: 29,
+ short_name: "slightly_smiling_face",
+ short_names: ["slightly_smiling_face"],
+ text: null,
+ texts: [":)", "(:", ":-)"],
+ category: "Smileys & Emotion",
+ subcategory: "face-smiling",
+ sort_order: 9,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ upside_down_face: {
+ char: "🙃",
+ key: "upside_down_face",
+ keywords: ["upside_down_face", "UPSIDE-DOWN FACE"],
+ category: "people",
+ lib: {
+ name: "UPSIDE-DOWN FACE",
+ unified: "1F643",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f643.png",
+ sheet_x: 33,
+ sheet_y: 30,
+ short_name: "upside_down_face",
+ short_names: ["upside_down_face"],
+ text: null,
+ texts: null,
+ category: "Smileys & Emotion",
+ subcategory: "face-smiling",
+ sort_order: 10,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ melting_face: {
+ char: "🫠",
+ key: "melting_face",
+ keywords: ["melting_face", "MELTING FACE"],
+ category: "people",
+ lib: {
+ name: "MELTING FACE",
+ unified: "1FAE0",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1fae0.png",
+ sheet_x: 55,
+ sheet_y: 30,
+ short_name: "melting_face",
+ short_names: ["melting_face"],
+ text: null,
+ texts: null,
+ category: "Smileys & Emotion",
+ subcategory: "face-smiling",
+ sort_order: 11,
+ added_in: "14.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ wink: {
+ char: "😉",
+ key: "wink",
+ keywords: ["wink", "WINKING FACE"],
+ category: "people",
+ lib: {
+ name: "WINKING FACE",
+ unified: "1F609",
+ non_qualified: null,
+ docomo: "E729",
+ au: "E5C3",
+ softbank: "E405",
+ google: "FE347",
+ image: "1f609.png",
+ sheet_x: 32,
+ sheet_y: 30,
+ short_name: "wink",
+ short_names: ["wink"],
+ text: ";)",
+ texts: [";)", ";-)"],
+ category: "Smileys & Emotion",
+ subcategory: "face-smiling",
+ sort_order: 12,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ blush: {
+ char: "😊",
+ key: "blush",
+ keywords: ["blush", "SMILING FACE WITH SMILING EYES"],
+ category: "people",
+ lib: {
+ name: "SMILING FACE WITH SMILING EYES",
+ unified: "1F60A",
+ non_qualified: null,
+ docomo: "E6F0",
+ au: "EACD",
+ softbank: "E056",
+ google: "FE335",
+ image: "1f60a.png",
+ sheet_x: 32,
+ sheet_y: 31,
+ short_name: "blush",
+ short_names: ["blush"],
+ text: ":)",
+ texts: null,
+ category: "Smileys & Emotion",
+ subcategory: "face-smiling",
+ sort_order: 13,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ innocent: {
+ char: "😇",
+ key: "innocent",
+ keywords: ["innocent", "SMILING FACE WITH HALO"],
+ category: "people",
+ lib: {
+ name: "SMILING FACE WITH HALO",
+ unified: "1F607",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f607.png",
+ sheet_x: 32,
+ sheet_y: 28,
+ short_name: "innocent",
+ short_names: ["innocent"],
+ text: null,
+ texts: null,
+ category: "Smileys & Emotion",
+ subcategory: "face-smiling",
+ sort_order: 14,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ smiling_face_with_3_hearts: {
+ char: "🥰",
+ key: "smiling_face_with_3_hearts",
+ keywords: [
+ "smiling_face_with_3_hearts",
+ "SMILING FACE WITH SMILING EYES AND THREE HEARTS",
+ ],
+ category: "people",
+ lib: {
+ name: "SMILING FACE WITH SMILING EYES AND THREE HEARTS",
+ unified: "1F970",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f970.png",
+ sheet_x: 43,
+ sheet_y: 60,
+ short_name: "smiling_face_with_3_hearts",
+ short_names: ["smiling_face_with_3_hearts"],
+ text: null,
+ texts: null,
+ category: "Smileys & Emotion",
+ subcategory: "face-affection",
+ sort_order: 15,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ heart_eyes: {
+ char: "😍",
+ key: "heart_eyes",
+ keywords: ["heart_eyes", "SMILING FACE WITH HEART-SHAPED EYES"],
+ category: "people",
+ lib: {
+ name: "SMILING FACE WITH HEART-SHAPED EYES",
+ unified: "1F60D",
+ non_qualified: null,
+ docomo: "E726",
+ au: "E5C4",
+ softbank: "E106",
+ google: "FE327",
+ image: "1f60d.png",
+ sheet_x: 32,
+ sheet_y: 34,
+ short_name: "heart_eyes",
+ short_names: ["heart_eyes"],
+ text: null,
+ texts: null,
+ category: "Smileys & Emotion",
+ subcategory: "face-affection",
+ sort_order: 16,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "star-struck": {
+ char: "🤩",
+ key: "star-struck",
+ keywords: ["star-struck", "GRINNING FACE WITH STAR EYES"],
+ category: "people",
+ lib: {
+ name: "GRINNING FACE WITH STAR EYES",
+ unified: "1F929",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f929.png",
+ sheet_x: 40,
+ sheet_y: 40,
+ short_name: "star-struck",
+ short_names: ["star-struck", "grinning_face_with_star_eyes"],
+ text: null,
+ texts: null,
+ category: "Smileys & Emotion",
+ subcategory: "face-affection",
+ sort_order: 17,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ kissing_heart: {
+ char: "😘",
+ key: "kissing_heart",
+ keywords: ["kissing_heart", "FACE THROWING A KISS"],
+ category: "people",
+ lib: {
+ name: "FACE THROWING A KISS",
+ unified: "1F618",
+ non_qualified: null,
+ docomo: "E726",
+ au: "EACF",
+ softbank: "E418",
+ google: "FE32C",
+ image: "1f618.png",
+ sheet_x: 32,
+ sheet_y: 45,
+ short_name: "kissing_heart",
+ short_names: ["kissing_heart"],
+ text: null,
+ texts: [":*", ":-*"],
+ category: "Smileys & Emotion",
+ subcategory: "face-affection",
+ sort_order: 18,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ kissing: {
+ char: "😗",
+ key: "kissing",
+ keywords: ["kissing", "KISSING FACE"],
+ category: "people",
+ lib: {
+ name: "KISSING FACE",
+ unified: "1F617",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f617.png",
+ sheet_x: 32,
+ sheet_y: 44,
+ short_name: "kissing",
+ short_names: ["kissing"],
+ text: null,
+ texts: null,
+ category: "Smileys & Emotion",
+ subcategory: "face-affection",
+ sort_order: 19,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ relaxed: {
+ char: "☺️",
+ key: "relaxed",
+ keywords: ["relaxed", "WHITE SMILING FACE"],
+ category: "people",
+ lib: {
+ name: "WHITE SMILING FACE",
+ unified: "263A-FE0F",
+ non_qualified: "263A",
+ docomo: "E6F0",
+ au: "E4FB",
+ softbank: "E414",
+ google: "FE336",
+ image: "263a-fe0f.png",
+ sheet_x: 57,
+ sheet_y: 35,
+ short_name: "relaxed",
+ short_names: ["relaxed"],
+ text: null,
+ texts: null,
+ category: "Smileys & Emotion",
+ subcategory: "face-affection",
+ sort_order: 20,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ kissing_closed_eyes: {
+ char: "😚",
+ key: "kissing_closed_eyes",
+ keywords: ["kissing_closed_eyes", "KISSING FACE WITH CLOSED EYES"],
+ category: "people",
+ lib: {
+ name: "KISSING FACE WITH CLOSED EYES",
+ unified: "1F61A",
+ non_qualified: null,
+ docomo: "E726",
+ au: "EACE",
+ softbank: "E417",
+ google: "FE32D",
+ image: "1f61a.png",
+ sheet_x: 32,
+ sheet_y: 47,
+ short_name: "kissing_closed_eyes",
+ short_names: ["kissing_closed_eyes"],
+ text: null,
+ texts: null,
+ category: "Smileys & Emotion",
+ subcategory: "face-affection",
+ sort_order: 21,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ kissing_smiling_eyes: {
+ char: "😙",
+ key: "kissing_smiling_eyes",
+ keywords: ["kissing_smiling_eyes", "KISSING FACE WITH SMILING EYES"],
+ category: "people",
+ lib: {
+ name: "KISSING FACE WITH SMILING EYES",
+ unified: "1F619",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f619.png",
+ sheet_x: 32,
+ sheet_y: 46,
+ short_name: "kissing_smiling_eyes",
+ short_names: ["kissing_smiling_eyes"],
+ text: null,
+ texts: null,
+ category: "Smileys & Emotion",
+ subcategory: "face-affection",
+ sort_order: 22,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ smiling_face_with_tear: {
+ char: "🥲",
+ key: "smiling_face_with_tear",
+ keywords: ["smiling_face_with_tear", "SMILING FACE WITH TEAR"],
+ category: "people",
+ lib: {
+ name: "SMILING FACE WITH TEAR",
+ unified: "1F972",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f972.png",
+ sheet_x: 44,
+ sheet_y: 1,
+ short_name: "smiling_face_with_tear",
+ short_names: ["smiling_face_with_tear"],
+ text: null,
+ texts: null,
+ category: "Smileys & Emotion",
+ subcategory: "face-affection",
+ sort_order: 23,
+ added_in: "13.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ yum: {
+ char: "😋",
+ key: "yum",
+ keywords: ["yum", "FACE SAVOURING DELICIOUS FOOD"],
+ category: "people",
+ lib: {
+ name: "FACE SAVOURING DELICIOUS FOOD",
+ unified: "1F60B",
+ non_qualified: null,
+ docomo: "E752",
+ au: "EACD",
+ softbank: null,
+ google: "FE32B",
+ image: "1f60b.png",
+ sheet_x: 32,
+ sheet_y: 32,
+ short_name: "yum",
+ short_names: ["yum"],
+ text: null,
+ texts: null,
+ category: "Smileys & Emotion",
+ subcategory: "face-tongue",
+ sort_order: 24,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ stuck_out_tongue: {
+ char: "😛",
+ key: "stuck_out_tongue",
+ keywords: ["stuck_out_tongue", "FACE WITH STUCK-OUT TONGUE"],
+ category: "people",
+ lib: {
+ name: "FACE WITH STUCK-OUT TONGUE",
+ unified: "1F61B",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f61b.png",
+ sheet_x: 32,
+ sheet_y: 48,
+ short_name: "stuck_out_tongue",
+ short_names: ["stuck_out_tongue"],
+ text: ":p",
+ texts: [":p", ":-p", ":P", ":-P", ":b", ":-b"],
+ category: "Smileys & Emotion",
+ subcategory: "face-tongue",
+ sort_order: 25,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ stuck_out_tongue_winking_eye: {
+ char: "😜",
+ key: "stuck_out_tongue_winking_eye",
+ keywords: [
+ "stuck_out_tongue_winking_eye",
+ "FACE WITH STUCK-OUT TONGUE AND WINKING EYE",
+ ],
+ category: "people",
+ lib: {
+ name: "FACE WITH STUCK-OUT TONGUE AND WINKING EYE",
+ unified: "1F61C",
+ non_qualified: null,
+ docomo: "E728",
+ au: "E4E7",
+ softbank: "E105",
+ google: "FE329",
+ image: "1f61c.png",
+ sheet_x: 32,
+ sheet_y: 49,
+ short_name: "stuck_out_tongue_winking_eye",
+ short_names: ["stuck_out_tongue_winking_eye"],
+ text: ";p",
+ texts: [";p", ";-p", ";b", ";-b", ";P", ";-P"],
+ category: "Smileys & Emotion",
+ subcategory: "face-tongue",
+ sort_order: 26,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ zany_face: {
+ char: "🤪",
+ key: "zany_face",
+ keywords: ["zany_face", "GRINNING FACE WITH ONE LARGE AND ONE SMALL EYE"],
+ category: "people",
+ lib: {
+ name: "GRINNING FACE WITH ONE LARGE AND ONE SMALL EYE",
+ unified: "1F92A",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f92a.png",
+ sheet_x: 40,
+ sheet_y: 41,
+ short_name: "zany_face",
+ short_names: [
+ "zany_face",
+ "grinning_face_with_one_large_and_one_small_eye",
+ ],
+ text: null,
+ texts: null,
+ category: "Smileys & Emotion",
+ subcategory: "face-tongue",
+ sort_order: 27,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ stuck_out_tongue_closed_eyes: {
+ char: "😝",
+ key: "stuck_out_tongue_closed_eyes",
+ keywords: [
+ "stuck_out_tongue_closed_eyes",
+ "FACE WITH STUCK-OUT TONGUE AND TIGHTLY-CLOSED EYES",
+ ],
+ category: "people",
+ lib: {
+ name: "FACE WITH STUCK-OUT TONGUE AND TIGHTLY-CLOSED EYES",
+ unified: "1F61D",
+ non_qualified: null,
+ docomo: "E728",
+ au: "E4E7",
+ softbank: "E409",
+ google: "FE32A",
+ image: "1f61d.png",
+ sheet_x: 32,
+ sheet_y: 50,
+ short_name: "stuck_out_tongue_closed_eyes",
+ short_names: ["stuck_out_tongue_closed_eyes"],
+ text: null,
+ texts: null,
+ category: "Smileys & Emotion",
+ subcategory: "face-tongue",
+ sort_order: 28,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ money_mouth_face: {
+ char: "🤑",
+ key: "money_mouth_face",
+ keywords: ["money_mouth_face", "MONEY-MOUTH FACE"],
+ category: "people",
+ lib: {
+ name: "MONEY-MOUTH FACE",
+ unified: "1F911",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f911.png",
+ sheet_x: 39,
+ sheet_y: 0,
+ short_name: "money_mouth_face",
+ short_names: ["money_mouth_face"],
+ text: null,
+ texts: null,
+ category: "Smileys & Emotion",
+ subcategory: "face-tongue",
+ sort_order: 29,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ hugging_face: {
+ char: "🤗",
+ key: "hugging_face",
+ keywords: ["hugging_face", "HUGGING FACE"],
+ category: "people",
+ lib: {
+ name: "HUGGING FACE",
+ unified: "1F917",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f917.png",
+ sheet_x: 39,
+ sheet_y: 6,
+ short_name: "hugging_face",
+ short_names: ["hugging_face"],
+ text: null,
+ texts: null,
+ category: "Smileys & Emotion",
+ subcategory: "face-hand",
+ sort_order: 30,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ face_with_hand_over_mouth: {
+ char: "🤭",
+ key: "face_with_hand_over_mouth",
+ keywords: [
+ "face_with_hand_over_mouth",
+ "SMILING FACE WITH SMILING EYES AND HAND COVERING MOUTH",
+ ],
+ category: "people",
+ lib: {
+ name: "SMILING FACE WITH SMILING EYES AND HAND COVERING MOUTH",
+ unified: "1F92D",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f92d.png",
+ sheet_x: 40,
+ sheet_y: 44,
+ short_name: "face_with_hand_over_mouth",
+ short_names: [
+ "face_with_hand_over_mouth",
+ "smiling_face_with_smiling_eyes_and_hand_covering_mouth",
+ ],
+ text: null,
+ texts: null,
+ category: "Smileys & Emotion",
+ subcategory: "face-hand",
+ sort_order: 31,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ face_with_open_eyes_and_hand_over_mouth: {
+ char: "🫢",
+ key: "face_with_open_eyes_and_hand_over_mouth",
+ keywords: [
+ "face_with_open_eyes_and_hand_over_mouth",
+ "FACE WITH OPEN EYES AND HAND OVER MOUTH",
+ ],
+ category: "people",
+ lib: {
+ name: "FACE WITH OPEN EYES AND HAND OVER MOUTH",
+ unified: "1FAE2",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1fae2.png",
+ sheet_x: 55,
+ sheet_y: 32,
+ short_name: "face_with_open_eyes_and_hand_over_mouth",
+ short_names: ["face_with_open_eyes_and_hand_over_mouth"],
+ text: null,
+ texts: null,
+ category: "Smileys & Emotion",
+ subcategory: "face-hand",
+ sort_order: 32,
+ added_in: "14.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ face_with_peeking_eye: {
+ char: "🫣",
+ key: "face_with_peeking_eye",
+ keywords: ["face_with_peeking_eye", "FACE WITH PEEKING EYE"],
+ category: "people",
+ lib: {
+ name: "FACE WITH PEEKING EYE",
+ unified: "1FAE3",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1fae3.png",
+ sheet_x: 55,
+ sheet_y: 33,
+ short_name: "face_with_peeking_eye",
+ short_names: ["face_with_peeking_eye"],
+ text: null,
+ texts: null,
+ category: "Smileys & Emotion",
+ subcategory: "face-hand",
+ sort_order: 33,
+ added_in: "14.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ shushing_face: {
+ char: "🤫",
+ key: "shushing_face",
+ keywords: ["shushing_face", "FACE WITH FINGER COVERING CLOSED LIPS"],
+ category: "people",
+ lib: {
+ name: "FACE WITH FINGER COVERING CLOSED LIPS",
+ unified: "1F92B",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f92b.png",
+ sheet_x: 40,
+ sheet_y: 42,
+ short_name: "shushing_face",
+ short_names: ["shushing_face", "face_with_finger_covering_closed_lips"],
+ text: null,
+ texts: null,
+ category: "Smileys & Emotion",
+ subcategory: "face-hand",
+ sort_order: 34,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ thinking_face: {
+ char: "🤔",
+ key: "thinking_face",
+ keywords: ["thinking_face", "THINKING FACE"],
+ category: "people",
+ lib: {
+ name: "THINKING FACE",
+ unified: "1F914",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f914.png",
+ sheet_x: 39,
+ sheet_y: 3,
+ short_name: "thinking_face",
+ short_names: ["thinking_face"],
+ text: null,
+ texts: null,
+ category: "Smileys & Emotion",
+ subcategory: "face-hand",
+ sort_order: 35,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ saluting_face: {
+ char: "🫡",
+ key: "saluting_face",
+ keywords: ["saluting_face", "SALUTING FACE"],
+ category: "people",
+ lib: {
+ name: "SALUTING FACE",
+ unified: "1FAE1",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1fae1.png",
+ sheet_x: 55,
+ sheet_y: 31,
+ short_name: "saluting_face",
+ short_names: ["saluting_face"],
+ text: null,
+ texts: null,
+ category: "Smileys & Emotion",
+ subcategory: "face-hand",
+ sort_order: 36,
+ added_in: "14.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ zipper_mouth_face: {
+ char: "🤐",
+ key: "zipper_mouth_face",
+ keywords: ["zipper_mouth_face", "ZIPPER-MOUTH FACE"],
+ category: "people",
+ lib: {
+ name: "ZIPPER-MOUTH FACE",
+ unified: "1F910",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f910.png",
+ sheet_x: 38,
+ sheet_y: 60,
+ short_name: "zipper_mouth_face",
+ short_names: ["zipper_mouth_face"],
+ text: null,
+ texts: null,
+ category: "Smileys & Emotion",
+ subcategory: "face-neutral-skeptical",
+ sort_order: 37,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ face_with_raised_eyebrow: {
+ char: "🤨",
+ key: "face_with_raised_eyebrow",
+ keywords: ["face_with_raised_eyebrow", "FACE WITH ONE EYEBROW RAISED"],
+ category: "people",
+ lib: {
+ name: "FACE WITH ONE EYEBROW RAISED",
+ unified: "1F928",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f928.png",
+ sheet_x: 40,
+ sheet_y: 39,
+ short_name: "face_with_raised_eyebrow",
+ short_names: [
+ "face_with_raised_eyebrow",
+ "face_with_one_eyebrow_raised",
+ ],
+ text: null,
+ texts: null,
+ category: "Smileys & Emotion",
+ subcategory: "face-neutral-skeptical",
+ sort_order: 38,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ neutral_face: {
+ char: "😐",
+ key: "neutral_face",
+ keywords: ["neutral_face", "NEUTRAL FACE"],
+ category: "people",
+ lib: {
+ name: "NEUTRAL FACE",
+ unified: "1F610",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f610.png",
+ sheet_x: 32,
+ sheet_y: 37,
+ short_name: "neutral_face",
+ short_names: ["neutral_face"],
+ text: null,
+ texts: [":|", ":-|"],
+ category: "Smileys & Emotion",
+ subcategory: "face-neutral-skeptical",
+ sort_order: 39,
+ added_in: "0.7",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ expressionless: {
+ char: "😑",
+ key: "expressionless",
+ keywords: ["expressionless", "EXPRESSIONLESS FACE"],
+ category: "people",
+ lib: {
+ name: "EXPRESSIONLESS FACE",
+ unified: "1F611",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f611.png",
+ sheet_x: 32,
+ sheet_y: 38,
+ short_name: "expressionless",
+ short_names: ["expressionless"],
+ text: null,
+ texts: null,
+ category: "Smileys & Emotion",
+ subcategory: "face-neutral-skeptical",
+ sort_order: 40,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ no_mouth: {
+ char: "😶",
+ key: "no_mouth",
+ keywords: ["no_mouth", "FACE WITHOUT MOUTH"],
+ category: "people",
+ lib: {
+ name: "FACE WITHOUT MOUTH",
+ unified: "1F636",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f636.png",
+ sheet_x: 33,
+ sheet_y: 17,
+ short_name: "no_mouth",
+ short_names: ["no_mouth"],
+ text: null,
+ texts: null,
+ category: "Smileys & Emotion",
+ subcategory: "face-neutral-skeptical",
+ sort_order: 41,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ dotted_line_face: {
+ char: "🫥",
+ key: "dotted_line_face",
+ keywords: ["dotted_line_face", "DOTTED LINE FACE"],
+ category: "people",
+ lib: {
+ name: "DOTTED LINE FACE",
+ unified: "1FAE5",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1fae5.png",
+ sheet_x: 55,
+ sheet_y: 35,
+ short_name: "dotted_line_face",
+ short_names: ["dotted_line_face"],
+ text: null,
+ texts: null,
+ category: "Smileys & Emotion",
+ subcategory: "face-neutral-skeptical",
+ sort_order: 42,
+ added_in: "14.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ face_in_clouds: {
+ char: "😶🌫️",
+ key: "face_in_clouds",
+ keywords: ["face_in_clouds", "FACE IN CLOUDS"],
+ category: "people",
+ lib: {
+ name: "FACE IN CLOUDS",
+ unified: "1F636-200D-1F32B-FE0F",
+ non_qualified: "1F636-200D-1F32B",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f636-200d-1f32b-fe0f.png",
+ sheet_x: 33,
+ sheet_y: 16,
+ short_name: "face_in_clouds",
+ short_names: ["face_in_clouds"],
+ text: null,
+ texts: null,
+ category: "Smileys & Emotion",
+ subcategory: "face-neutral-skeptical",
+ sort_order: 43,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ smirk: {
+ char: "😏",
+ key: "smirk",
+ keywords: ["smirk", "SMIRKING FACE"],
+ category: "people",
+ lib: {
+ name: "SMIRKING FACE",
+ unified: "1F60F",
+ non_qualified: null,
+ docomo: "E72C",
+ au: "EABF",
+ softbank: "E402",
+ google: "FE343",
+ image: "1f60f.png",
+ sheet_x: 32,
+ sheet_y: 36,
+ short_name: "smirk",
+ short_names: ["smirk"],
+ text: null,
+ texts: null,
+ category: "Smileys & Emotion",
+ subcategory: "face-neutral-skeptical",
+ sort_order: 44,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ unamused: {
+ char: "😒",
+ key: "unamused",
+ keywords: ["unamused", "UNAMUSED FACE"],
+ category: "people",
+ lib: {
+ name: "UNAMUSED FACE",
+ unified: "1F612",
+ non_qualified: null,
+ docomo: "E725",
+ au: "EAC9",
+ softbank: "E40E",
+ google: "FE326",
+ image: "1f612.png",
+ sheet_x: 32,
+ sheet_y: 39,
+ short_name: "unamused",
+ short_names: ["unamused"],
+ text: ":(",
+ texts: null,
+ category: "Smileys & Emotion",
+ subcategory: "face-neutral-skeptical",
+ sort_order: 45,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ face_with_rolling_eyes: {
+ char: "🙄",
+ key: "face_with_rolling_eyes",
+ keywords: ["face_with_rolling_eyes", "FACE WITH ROLLING EYES"],
+ category: "people",
+ lib: {
+ name: "FACE WITH ROLLING EYES",
+ unified: "1F644",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f644.png",
+ sheet_x: 33,
+ sheet_y: 31,
+ short_name: "face_with_rolling_eyes",
+ short_names: ["face_with_rolling_eyes"],
+ text: null,
+ texts: null,
+ category: "Smileys & Emotion",
+ subcategory: "face-neutral-skeptical",
+ sort_order: 46,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ grimacing: {
+ char: "😬",
+ key: "grimacing",
+ keywords: ["grimacing", "GRIMACING FACE"],
+ category: "people",
+ lib: {
+ name: "GRIMACING FACE",
+ unified: "1F62C",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f62c.png",
+ sheet_x: 33,
+ sheet_y: 4,
+ short_name: "grimacing",
+ short_names: ["grimacing"],
+ text: null,
+ texts: null,
+ category: "Smileys & Emotion",
+ subcategory: "face-neutral-skeptical",
+ sort_order: 47,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ face_exhaling: {
+ char: "😮💨",
+ key: "face_exhaling",
+ keywords: ["face_exhaling", "FACE EXHALING"],
+ category: "people",
+ lib: {
+ name: "FACE EXHALING",
+ unified: "1F62E-200D-1F4A8",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f62e-200d-1f4a8.png",
+ sheet_x: 33,
+ sheet_y: 6,
+ short_name: "face_exhaling",
+ short_names: ["face_exhaling"],
+ text: null,
+ texts: null,
+ category: "Smileys & Emotion",
+ subcategory: "face-neutral-skeptical",
+ sort_order: 48,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ lying_face: {
+ char: "🤥",
+ key: "lying_face",
+ keywords: ["lying_face", "LYING FACE"],
+ category: "people",
+ lib: {
+ name: "LYING FACE",
+ unified: "1F925",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f925.png",
+ sheet_x: 40,
+ sheet_y: 19,
+ short_name: "lying_face",
+ short_names: ["lying_face"],
+ text: null,
+ texts: null,
+ category: "Smileys & Emotion",
+ subcategory: "face-neutral-skeptical",
+ sort_order: 49,
+ added_in: "3.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ shaking_face: {
+ char: "🫨",
+ key: "shaking_face",
+ keywords: ["shaking_face", "SHAKING FACE"],
+ category: "people",
+ lib: {
+ name: "SHAKING FACE",
+ unified: "1FAE8",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1fae8.png",
+ sheet_x: 55,
+ sheet_y: 38,
+ short_name: "shaking_face",
+ short_names: ["shaking_face"],
+ text: null,
+ texts: null,
+ category: "Smileys & Emotion",
+ subcategory: "face-neutral-skeptical",
+ sort_order: 50,
+ added_in: "15.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: false,
+ has_img_facebook: false,
+ },
+ },
+ relieved: {
+ char: "😌",
+ key: "relieved",
+ keywords: ["relieved", "RELIEVED FACE"],
+ category: "people",
+ lib: {
+ name: "RELIEVED FACE",
+ unified: "1F60C",
+ non_qualified: null,
+ docomo: "E721",
+ au: "EAC5",
+ softbank: "E40A",
+ google: "FE33E",
+ image: "1f60c.png",
+ sheet_x: 32,
+ sheet_y: 33,
+ short_name: "relieved",
+ short_names: ["relieved"],
+ text: null,
+ texts: null,
+ category: "Smileys & Emotion",
+ subcategory: "face-sleepy",
+ sort_order: 51,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ pensive: {
+ char: "😔",
+ key: "pensive",
+ keywords: ["pensive", "PENSIVE FACE"],
+ category: "people",
+ lib: {
+ name: "PENSIVE FACE",
+ unified: "1F614",
+ non_qualified: null,
+ docomo: "E720",
+ au: "EAC0",
+ softbank: "E403",
+ google: "FE340",
+ image: "1f614.png",
+ sheet_x: 32,
+ sheet_y: 41,
+ short_name: "pensive",
+ short_names: ["pensive"],
+ text: null,
+ texts: null,
+ category: "Smileys & Emotion",
+ subcategory: "face-sleepy",
+ sort_order: 52,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ sleepy: {
+ char: "😪",
+ key: "sleepy",
+ keywords: ["sleepy", "SLEEPY FACE"],
+ category: "people",
+ lib: {
+ name: "SLEEPY FACE",
+ unified: "1F62A",
+ non_qualified: null,
+ docomo: "E701",
+ au: "EAC4",
+ softbank: "E408",
+ google: "FE342",
+ image: "1f62a.png",
+ sheet_x: 33,
+ sheet_y: 2,
+ short_name: "sleepy",
+ short_names: ["sleepy"],
+ text: null,
+ texts: null,
+ category: "Smileys & Emotion",
+ subcategory: "face-sleepy",
+ sort_order: 53,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ drooling_face: {
+ char: "🤤",
+ key: "drooling_face",
+ keywords: ["drooling_face", "DROOLING FACE"],
+ category: "people",
+ lib: {
+ name: "DROOLING FACE",
+ unified: "1F924",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f924.png",
+ sheet_x: 40,
+ sheet_y: 18,
+ short_name: "drooling_face",
+ short_names: ["drooling_face"],
+ text: null,
+ texts: null,
+ category: "Smileys & Emotion",
+ subcategory: "face-sleepy",
+ sort_order: 54,
+ added_in: "3.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ sleeping: {
+ char: "😴",
+ key: "sleeping",
+ keywords: ["sleeping", "SLEEPING FACE"],
+ category: "people",
+ lib: {
+ name: "SLEEPING FACE",
+ unified: "1F634",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f634.png",
+ sheet_x: 33,
+ sheet_y: 13,
+ short_name: "sleeping",
+ short_names: ["sleeping"],
+ text: null,
+ texts: null,
+ category: "Smileys & Emotion",
+ subcategory: "face-sleepy",
+ sort_order: 55,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ mask: {
+ char: "😷",
+ key: "mask",
+ keywords: ["mask", "FACE WITH MEDICAL MASK"],
+ category: "people",
+ lib: {
+ name: "FACE WITH MEDICAL MASK",
+ unified: "1F637",
+ non_qualified: null,
+ docomo: null,
+ au: "EAC7",
+ softbank: "E40C",
+ google: "FE32E",
+ image: "1f637.png",
+ sheet_x: 33,
+ sheet_y: 18,
+ short_name: "mask",
+ short_names: ["mask"],
+ text: null,
+ texts: null,
+ category: "Smileys & Emotion",
+ subcategory: "face-unwell",
+ sort_order: 56,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ face_with_thermometer: {
+ char: "🤒",
+ key: "face_with_thermometer",
+ keywords: ["face_with_thermometer", "FACE WITH THERMOMETER"],
+ category: "people",
+ lib: {
+ name: "FACE WITH THERMOMETER",
+ unified: "1F912",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f912.png",
+ sheet_x: 39,
+ sheet_y: 1,
+ short_name: "face_with_thermometer",
+ short_names: ["face_with_thermometer"],
+ text: null,
+ texts: null,
+ category: "Smileys & Emotion",
+ subcategory: "face-unwell",
+ sort_order: 57,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ face_with_head_bandage: {
+ char: "🤕",
+ key: "face_with_head_bandage",
+ keywords: ["face_with_head_bandage", "FACE WITH HEAD-BANDAGE"],
+ category: "people",
+ lib: {
+ name: "FACE WITH HEAD-BANDAGE",
+ unified: "1F915",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f915.png",
+ sheet_x: 39,
+ sheet_y: 4,
+ short_name: "face_with_head_bandage",
+ short_names: ["face_with_head_bandage"],
+ text: null,
+ texts: null,
+ category: "Smileys & Emotion",
+ subcategory: "face-unwell",
+ sort_order: 58,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ nauseated_face: {
+ char: "🤢",
+ key: "nauseated_face",
+ keywords: ["nauseated_face", "NAUSEATED FACE"],
+ category: "people",
+ lib: {
+ name: "NAUSEATED FACE",
+ unified: "1F922",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f922.png",
+ sheet_x: 40,
+ sheet_y: 16,
+ short_name: "nauseated_face",
+ short_names: ["nauseated_face"],
+ text: null,
+ texts: null,
+ category: "Smileys & Emotion",
+ subcategory: "face-unwell",
+ sort_order: 59,
+ added_in: "3.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ face_vomiting: {
+ char: "🤮",
+ key: "face_vomiting",
+ keywords: ["face_vomiting", "FACE WITH OPEN MOUTH VOMITING"],
+ category: "people",
+ lib: {
+ name: "FACE WITH OPEN MOUTH VOMITING",
+ unified: "1F92E",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f92e.png",
+ sheet_x: 40,
+ sheet_y: 45,
+ short_name: "face_vomiting",
+ short_names: ["face_vomiting", "face_with_open_mouth_vomiting"],
+ text: null,
+ texts: null,
+ category: "Smileys & Emotion",
+ subcategory: "face-unwell",
+ sort_order: 60,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ sneezing_face: {
+ char: "🤧",
+ key: "sneezing_face",
+ keywords: ["sneezing_face", "SNEEZING FACE"],
+ category: "people",
+ lib: {
+ name: "SNEEZING FACE",
+ unified: "1F927",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f927.png",
+ sheet_x: 40,
+ sheet_y: 38,
+ short_name: "sneezing_face",
+ short_names: ["sneezing_face"],
+ text: null,
+ texts: null,
+ category: "Smileys & Emotion",
+ subcategory: "face-unwell",
+ sort_order: 61,
+ added_in: "3.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ hot_face: {
+ char: "🥵",
+ key: "hot_face",
+ keywords: ["hot_face", "OVERHEATED FACE"],
+ category: "people",
+ lib: {
+ name: "OVERHEATED FACE",
+ unified: "1F975",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f975.png",
+ sheet_x: 44,
+ sheet_y: 4,
+ short_name: "hot_face",
+ short_names: ["hot_face"],
+ text: null,
+ texts: null,
+ category: "Smileys & Emotion",
+ subcategory: "face-unwell",
+ sort_order: 62,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ cold_face: {
+ char: "🥶",
+ key: "cold_face",
+ keywords: ["cold_face", "FREEZING FACE"],
+ category: "people",
+ lib: {
+ name: "FREEZING FACE",
+ unified: "1F976",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f976.png",
+ sheet_x: 44,
+ sheet_y: 5,
+ short_name: "cold_face",
+ short_names: ["cold_face"],
+ text: null,
+ texts: null,
+ category: "Smileys & Emotion",
+ subcategory: "face-unwell",
+ sort_order: 63,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ woozy_face: {
+ char: "🥴",
+ key: "woozy_face",
+ keywords: ["woozy_face", "FACE WITH UNEVEN EYES AND WAVY MOUTH"],
+ category: "people",
+ lib: {
+ name: "FACE WITH UNEVEN EYES AND WAVY MOUTH",
+ unified: "1F974",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f974.png",
+ sheet_x: 44,
+ sheet_y: 3,
+ short_name: "woozy_face",
+ short_names: ["woozy_face"],
+ text: null,
+ texts: null,
+ category: "Smileys & Emotion",
+ subcategory: "face-unwell",
+ sort_order: 64,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ dizzy_face: {
+ char: "😵",
+ key: "dizzy_face",
+ keywords: ["dizzy_face", "DIZZY FACE"],
+ category: "people",
+ lib: {
+ name: "DIZZY FACE",
+ unified: "1F635",
+ non_qualified: null,
+ docomo: "E6F4",
+ au: "E5AE",
+ softbank: null,
+ google: "FE324",
+ image: "1f635.png",
+ sheet_x: 33,
+ sheet_y: 15,
+ short_name: "dizzy_face",
+ short_names: ["dizzy_face"],
+ text: null,
+ texts: null,
+ category: "Smileys & Emotion",
+ subcategory: "face-unwell",
+ sort_order: 65,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ face_with_spiral_eyes: {
+ char: "😵💫",
+ key: "face_with_spiral_eyes",
+ keywords: ["face_with_spiral_eyes", "FACE WITH SPIRAL EYES"],
+ category: "people",
+ lib: {
+ name: "FACE WITH SPIRAL EYES",
+ unified: "1F635-200D-1F4AB",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f635-200d-1f4ab.png",
+ sheet_x: 33,
+ sheet_y: 14,
+ short_name: "face_with_spiral_eyes",
+ short_names: ["face_with_spiral_eyes"],
+ text: null,
+ texts: null,
+ category: "Smileys & Emotion",
+ subcategory: "face-unwell",
+ sort_order: 66,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ exploding_head: {
+ char: "🤯",
+ key: "exploding_head",
+ keywords: ["exploding_head", "SHOCKED FACE WITH EXPLODING HEAD"],
+ category: "people",
+ lib: {
+ name: "SHOCKED FACE WITH EXPLODING HEAD",
+ unified: "1F92F",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f92f.png",
+ sheet_x: 40,
+ sheet_y: 46,
+ short_name: "exploding_head",
+ short_names: ["exploding_head", "shocked_face_with_exploding_head"],
+ text: null,
+ texts: null,
+ category: "Smileys & Emotion",
+ subcategory: "face-unwell",
+ sort_order: 67,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ face_with_cowboy_hat: {
+ char: "🤠",
+ key: "face_with_cowboy_hat",
+ keywords: ["face_with_cowboy_hat", "FACE WITH COWBOY HAT"],
+ category: "people",
+ lib: {
+ name: "FACE WITH COWBOY HAT",
+ unified: "1F920",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f920.png",
+ sheet_x: 40,
+ sheet_y: 14,
+ short_name: "face_with_cowboy_hat",
+ short_names: ["face_with_cowboy_hat"],
+ text: null,
+ texts: null,
+ category: "Smileys & Emotion",
+ subcategory: "face-hat",
+ sort_order: 68,
+ added_in: "3.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ partying_face: {
+ char: "🥳",
+ key: "partying_face",
+ keywords: ["partying_face", "FACE WITH PARTY HORN AND PARTY HAT"],
+ category: "people",
+ lib: {
+ name: "FACE WITH PARTY HORN AND PARTY HAT",
+ unified: "1F973",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f973.png",
+ sheet_x: 44,
+ sheet_y: 2,
+ short_name: "partying_face",
+ short_names: ["partying_face"],
+ text: null,
+ texts: null,
+ category: "Smileys & Emotion",
+ subcategory: "face-hat",
+ sort_order: 69,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ disguised_face: {
+ char: "🥸",
+ key: "disguised_face",
+ keywords: ["disguised_face", "DISGUISED FACE"],
+ category: "people",
+ lib: {
+ name: "DISGUISED FACE",
+ unified: "1F978",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f978.png",
+ sheet_x: 44,
+ sheet_y: 12,
+ short_name: "disguised_face",
+ short_names: ["disguised_face"],
+ text: null,
+ texts: null,
+ category: "Smileys & Emotion",
+ subcategory: "face-hat",
+ sort_order: 70,
+ added_in: "13.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ sunglasses: {
+ char: "😎",
+ key: "sunglasses",
+ keywords: ["sunglasses", "SMILING FACE WITH SUNGLASSES"],
+ category: "people",
+ lib: {
+ name: "SMILING FACE WITH SUNGLASSES",
+ unified: "1F60E",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f60e.png",
+ sheet_x: 32,
+ sheet_y: 35,
+ short_name: "sunglasses",
+ short_names: ["sunglasses"],
+ text: null,
+ texts: ["8)"],
+ category: "Smileys & Emotion",
+ subcategory: "face-glasses",
+ sort_order: 71,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ nerd_face: {
+ char: "🤓",
+ key: "nerd_face",
+ keywords: ["nerd_face", "NERD FACE"],
+ category: "people",
+ lib: {
+ name: "NERD FACE",
+ unified: "1F913",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f913.png",
+ sheet_x: 39,
+ sheet_y: 2,
+ short_name: "nerd_face",
+ short_names: ["nerd_face"],
+ text: null,
+ texts: null,
+ category: "Smileys & Emotion",
+ subcategory: "face-glasses",
+ sort_order: 72,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ face_with_monocle: {
+ char: "🧐",
+ key: "face_with_monocle",
+ keywords: ["face_with_monocle", "FACE WITH MONOCLE"],
+ category: "people",
+ lib: {
+ name: "FACE WITH MONOCLE",
+ unified: "1F9D0",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f9d0.png",
+ sheet_x: 47,
+ sheet_y: 13,
+ short_name: "face_with_monocle",
+ short_names: ["face_with_monocle"],
+ text: null,
+ texts: null,
+ category: "Smileys & Emotion",
+ subcategory: "face-glasses",
+ sort_order: 73,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ confused: {
+ char: "😕",
+ key: "confused",
+ keywords: ["confused", "CONFUSED FACE"],
+ category: "people",
+ lib: {
+ name: "CONFUSED FACE",
+ unified: "1F615",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f615.png",
+ sheet_x: 32,
+ sheet_y: 42,
+ short_name: "confused",
+ short_names: ["confused"],
+ text: null,
+ texts: [":\\", ":-\\", ":/", ":-/"],
+ category: "Smileys & Emotion",
+ subcategory: "face-concerned",
+ sort_order: 74,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ face_with_diagonal_mouth: {
+ char: "🫤",
+ key: "face_with_diagonal_mouth",
+ keywords: ["face_with_diagonal_mouth", "FACE WITH DIAGONAL MOUTH"],
+ category: "people",
+ lib: {
+ name: "FACE WITH DIAGONAL MOUTH",
+ unified: "1FAE4",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1fae4.png",
+ sheet_x: 55,
+ sheet_y: 34,
+ short_name: "face_with_diagonal_mouth",
+ short_names: ["face_with_diagonal_mouth"],
+ text: null,
+ texts: null,
+ category: "Smileys & Emotion",
+ subcategory: "face-concerned",
+ sort_order: 75,
+ added_in: "14.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ worried: {
+ char: "😟",
+ key: "worried",
+ keywords: ["worried", "WORRIED FACE"],
+ category: "people",
+ lib: {
+ name: "WORRIED FACE",
+ unified: "1F61F",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f61f.png",
+ sheet_x: 32,
+ sheet_y: 52,
+ short_name: "worried",
+ short_names: ["worried"],
+ text: null,
+ texts: null,
+ category: "Smileys & Emotion",
+ subcategory: "face-concerned",
+ sort_order: 76,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ slightly_frowning_face: {
+ char: "🙁",
+ key: "slightly_frowning_face",
+ keywords: ["slightly_frowning_face", "SLIGHTLY FROWNING FACE"],
+ category: "people",
+ lib: {
+ name: "SLIGHTLY FROWNING FACE",
+ unified: "1F641",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f641.png",
+ sheet_x: 33,
+ sheet_y: 28,
+ short_name: "slightly_frowning_face",
+ short_names: ["slightly_frowning_face"],
+ text: null,
+ texts: null,
+ category: "Smileys & Emotion",
+ subcategory: "face-concerned",
+ sort_order: 77,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ white_frowning_face: {
+ char: "☹️",
+ key: "white_frowning_face",
+ keywords: ["white_frowning_face", "FROWNING FACE"],
+ category: "people",
+ lib: {
+ name: "FROWNING FACE",
+ unified: "2639-FE0F",
+ non_qualified: "2639",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "2639-fe0f.png",
+ sheet_x: 57,
+ sheet_y: 34,
+ short_name: "white_frowning_face",
+ short_names: ["white_frowning_face"],
+ text: null,
+ texts: null,
+ category: "Smileys & Emotion",
+ subcategory: "face-concerned",
+ sort_order: 78,
+ added_in: "0.7",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ open_mouth: {
+ char: "😮",
+ key: "open_mouth",
+ keywords: ["open_mouth", "FACE WITH OPEN MOUTH"],
+ category: "people",
+ lib: {
+ name: "FACE WITH OPEN MOUTH",
+ unified: "1F62E",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f62e.png",
+ sheet_x: 33,
+ sheet_y: 7,
+ short_name: "open_mouth",
+ short_names: ["open_mouth"],
+ text: null,
+ texts: [":o", ":-o", ":O", ":-O"],
+ category: "Smileys & Emotion",
+ subcategory: "face-concerned",
+ sort_order: 79,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ hushed: {
+ char: "😯",
+ key: "hushed",
+ keywords: ["hushed", "HUSHED FACE"],
+ category: "people",
+ lib: {
+ name: "HUSHED FACE",
+ unified: "1F62F",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f62f.png",
+ sheet_x: 33,
+ sheet_y: 8,
+ short_name: "hushed",
+ short_names: ["hushed"],
+ text: null,
+ texts: null,
+ category: "Smileys & Emotion",
+ subcategory: "face-concerned",
+ sort_order: 80,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ astonished: {
+ char: "😲",
+ key: "astonished",
+ keywords: ["astonished", "ASTONISHED FACE"],
+ category: "people",
+ lib: {
+ name: "ASTONISHED FACE",
+ unified: "1F632",
+ non_qualified: null,
+ docomo: "E6F4",
+ au: "EACA",
+ softbank: "E410",
+ google: "FE322",
+ image: "1f632.png",
+ sheet_x: 33,
+ sheet_y: 11,
+ short_name: "astonished",
+ short_names: ["astonished"],
+ text: null,
+ texts: null,
+ category: "Smileys & Emotion",
+ subcategory: "face-concerned",
+ sort_order: 81,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ flushed: {
+ char: "😳",
+ key: "flushed",
+ keywords: ["flushed", "FLUSHED FACE"],
+ category: "people",
+ lib: {
+ name: "FLUSHED FACE",
+ unified: "1F633",
+ non_qualified: null,
+ docomo: "E72A",
+ au: "EAC8",
+ softbank: "E40D",
+ google: "FE32F",
+ image: "1f633.png",
+ sheet_x: 33,
+ sheet_y: 12,
+ short_name: "flushed",
+ short_names: ["flushed"],
+ text: null,
+ texts: null,
+ category: "Smileys & Emotion",
+ subcategory: "face-concerned",
+ sort_order: 82,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ pleading_face: {
+ char: "🥺",
+ key: "pleading_face",
+ keywords: ["pleading_face", "FACE WITH PLEADING EYES"],
+ category: "people",
+ lib: {
+ name: "FACE WITH PLEADING EYES",
+ unified: "1F97A",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f97a.png",
+ sheet_x: 44,
+ sheet_y: 14,
+ short_name: "pleading_face",
+ short_names: ["pleading_face"],
+ text: null,
+ texts: null,
+ category: "Smileys & Emotion",
+ subcategory: "face-concerned",
+ sort_order: 83,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ face_holding_back_tears: {
+ char: "🥹",
+ key: "face_holding_back_tears",
+ keywords: ["face_holding_back_tears", "FACE HOLDING BACK TEARS"],
+ category: "people",
+ lib: {
+ name: "FACE HOLDING BACK TEARS",
+ unified: "1F979",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f979.png",
+ sheet_x: 44,
+ sheet_y: 13,
+ short_name: "face_holding_back_tears",
+ short_names: ["face_holding_back_tears"],
+ text: null,
+ texts: null,
+ category: "Smileys & Emotion",
+ subcategory: "face-concerned",
+ sort_order: 84,
+ added_in: "14.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ frowning: {
+ char: "😦",
+ key: "frowning",
+ keywords: ["frowning", "FROWNING FACE WITH OPEN MOUTH"],
+ category: "people",
+ lib: {
+ name: "FROWNING FACE WITH OPEN MOUTH",
+ unified: "1F626",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f626.png",
+ sheet_x: 32,
+ sheet_y: 59,
+ short_name: "frowning",
+ short_names: ["frowning"],
+ text: null,
+ texts: null,
+ category: "Smileys & Emotion",
+ subcategory: "face-concerned",
+ sort_order: 85,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ anguished: {
+ char: "😧",
+ key: "anguished",
+ keywords: ["anguished", "ANGUISHED FACE"],
+ category: "people",
+ lib: {
+ name: "ANGUISHED FACE",
+ unified: "1F627",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f627.png",
+ sheet_x: 32,
+ sheet_y: 60,
+ short_name: "anguished",
+ short_names: ["anguished"],
+ text: null,
+ texts: ["D:"],
+ category: "Smileys & Emotion",
+ subcategory: "face-concerned",
+ sort_order: 86,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ fearful: {
+ char: "😨",
+ key: "fearful",
+ keywords: ["fearful", "FEARFUL FACE"],
+ category: "people",
+ lib: {
+ name: "FEARFUL FACE",
+ unified: "1F628",
+ non_qualified: null,
+ docomo: "E757",
+ au: "EAC6",
+ softbank: "E40B",
+ google: "FE33B",
+ image: "1f628.png",
+ sheet_x: 33,
+ sheet_y: 0,
+ short_name: "fearful",
+ short_names: ["fearful"],
+ text: null,
+ texts: null,
+ category: "Smileys & Emotion",
+ subcategory: "face-concerned",
+ sort_order: 87,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ cold_sweat: {
+ char: "😰",
+ key: "cold_sweat",
+ keywords: ["cold_sweat", "FACE WITH OPEN MOUTH AND COLD SWEAT"],
+ category: "people",
+ lib: {
+ name: "FACE WITH OPEN MOUTH AND COLD SWEAT",
+ unified: "1F630",
+ non_qualified: null,
+ docomo: "E723",
+ au: "EACB",
+ softbank: "E40F",
+ google: "FE325",
+ image: "1f630.png",
+ sheet_x: 33,
+ sheet_y: 9,
+ short_name: "cold_sweat",
+ short_names: ["cold_sweat"],
+ text: null,
+ texts: null,
+ category: "Smileys & Emotion",
+ subcategory: "face-concerned",
+ sort_order: 88,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ disappointed_relieved: {
+ char: "😥",
+ key: "disappointed_relieved",
+ keywords: ["disappointed_relieved", "DISAPPOINTED BUT RELIEVED FACE"],
+ category: "people",
+ lib: {
+ name: "DISAPPOINTED BUT RELIEVED FACE",
+ unified: "1F625",
+ non_qualified: null,
+ docomo: "E723",
+ au: "E5C6",
+ softbank: "E401",
+ google: "FE345",
+ image: "1f625.png",
+ sheet_x: 32,
+ sheet_y: 58,
+ short_name: "disappointed_relieved",
+ short_names: ["disappointed_relieved"],
+ text: null,
+ texts: null,
+ category: "Smileys & Emotion",
+ subcategory: "face-concerned",
+ sort_order: 89,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ cry: {
+ char: "😢",
+ key: "cry",
+ keywords: ["cry", "CRYING FACE"],
+ category: "people",
+ lib: {
+ name: "CRYING FACE",
+ unified: "1F622",
+ non_qualified: null,
+ docomo: "E72E",
+ au: "EB69",
+ softbank: "E413",
+ google: "FE339",
+ image: "1f622.png",
+ sheet_x: 32,
+ sheet_y: 55,
+ short_name: "cry",
+ short_names: ["cry"],
+ text: ":'(",
+ texts: [":'("],
+ category: "Smileys & Emotion",
+ subcategory: "face-concerned",
+ sort_order: 90,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ sob: {
+ char: "😭",
+ key: "sob",
+ keywords: ["sob", "LOUDLY CRYING FACE"],
+ category: "people",
+ lib: {
+ name: "LOUDLY CRYING FACE",
+ unified: "1F62D",
+ non_qualified: null,
+ docomo: "E72D",
+ au: "E473",
+ softbank: "E411",
+ google: "FE33A",
+ image: "1f62d.png",
+ sheet_x: 33,
+ sheet_y: 5,
+ short_name: "sob",
+ short_names: ["sob"],
+ text: ":'(",
+ texts: null,
+ category: "Smileys & Emotion",
+ subcategory: "face-concerned",
+ sort_order: 91,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ scream: {
+ char: "😱",
+ key: "scream",
+ keywords: ["scream", "FACE SCREAMING IN FEAR"],
+ category: "people",
+ lib: {
+ name: "FACE SCREAMING IN FEAR",
+ unified: "1F631",
+ non_qualified: null,
+ docomo: "E757",
+ au: "E5C5",
+ softbank: "E107",
+ google: "FE341",
+ image: "1f631.png",
+ sheet_x: 33,
+ sheet_y: 10,
+ short_name: "scream",
+ short_names: ["scream"],
+ text: null,
+ texts: null,
+ category: "Smileys & Emotion",
+ subcategory: "face-concerned",
+ sort_order: 92,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ confounded: {
+ char: "😖",
+ key: "confounded",
+ keywords: ["confounded", "CONFOUNDED FACE"],
+ category: "people",
+ lib: {
+ name: "CONFOUNDED FACE",
+ unified: "1F616",
+ non_qualified: null,
+ docomo: "E6F3",
+ au: "EAC3",
+ softbank: "E407",
+ google: "FE33F",
+ image: "1f616.png",
+ sheet_x: 32,
+ sheet_y: 43,
+ short_name: "confounded",
+ short_names: ["confounded"],
+ text: null,
+ texts: null,
+ category: "Smileys & Emotion",
+ subcategory: "face-concerned",
+ sort_order: 93,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ persevere: {
+ char: "😣",
+ key: "persevere",
+ keywords: ["persevere", "PERSEVERING FACE"],
+ category: "people",
+ lib: {
+ name: "PERSEVERING FACE",
+ unified: "1F623",
+ non_qualified: null,
+ docomo: "E72B",
+ au: "EAC2",
+ softbank: "E406",
+ google: "FE33C",
+ image: "1f623.png",
+ sheet_x: 32,
+ sheet_y: 56,
+ short_name: "persevere",
+ short_names: ["persevere"],
+ text: null,
+ texts: null,
+ category: "Smileys & Emotion",
+ subcategory: "face-concerned",
+ sort_order: 94,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ disappointed: {
+ char: "😞",
+ key: "disappointed",
+ keywords: ["disappointed", "DISAPPOINTED FACE"],
+ category: "people",
+ lib: {
+ name: "DISAPPOINTED FACE",
+ unified: "1F61E",
+ non_qualified: null,
+ docomo: "E6F2",
+ au: "EAC0",
+ softbank: "E058",
+ google: "FE323",
+ image: "1f61e.png",
+ sheet_x: 32,
+ sheet_y: 51,
+ short_name: "disappointed",
+ short_names: ["disappointed"],
+ text: ":(",
+ texts: ["):", ":(", ":-("],
+ category: "Smileys & Emotion",
+ subcategory: "face-concerned",
+ sort_order: 95,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ sweat: {
+ char: "😓",
+ key: "sweat",
+ keywords: ["sweat", "FACE WITH COLD SWEAT"],
+ category: "people",
+ lib: {
+ name: "FACE WITH COLD SWEAT",
+ unified: "1F613",
+ non_qualified: null,
+ docomo: "E723",
+ au: "E5C6",
+ softbank: "E108",
+ google: "FE344",
+ image: "1f613.png",
+ sheet_x: 32,
+ sheet_y: 40,
+ short_name: "sweat",
+ short_names: ["sweat"],
+ text: null,
+ texts: null,
+ category: "Smileys & Emotion",
+ subcategory: "face-concerned",
+ sort_order: 96,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ weary: {
+ char: "😩",
+ key: "weary",
+ keywords: ["weary", "WEARY FACE"],
+ category: "people",
+ lib: {
+ name: "WEARY FACE",
+ unified: "1F629",
+ non_qualified: null,
+ docomo: "E6F3",
+ au: "EB67",
+ softbank: null,
+ google: "FE321",
+ image: "1f629.png",
+ sheet_x: 33,
+ sheet_y: 1,
+ short_name: "weary",
+ short_names: ["weary"],
+ text: null,
+ texts: null,
+ category: "Smileys & Emotion",
+ subcategory: "face-concerned",
+ sort_order: 97,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ tired_face: {
+ char: "😫",
+ key: "tired_face",
+ keywords: ["tired_face", "TIRED FACE"],
+ category: "people",
+ lib: {
+ name: "TIRED FACE",
+ unified: "1F62B",
+ non_qualified: null,
+ docomo: "E72B",
+ au: "E474",
+ softbank: null,
+ google: "FE346",
+ image: "1f62b.png",
+ sheet_x: 33,
+ sheet_y: 3,
+ short_name: "tired_face",
+ short_names: ["tired_face"],
+ text: null,
+ texts: null,
+ category: "Smileys & Emotion",
+ subcategory: "face-concerned",
+ sort_order: 98,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ yawning_face: {
+ char: "🥱",
+ key: "yawning_face",
+ keywords: ["yawning_face", "YAWNING FACE"],
+ category: "people",
+ lib: {
+ name: "YAWNING FACE",
+ unified: "1F971",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f971.png",
+ sheet_x: 44,
+ sheet_y: 0,
+ short_name: "yawning_face",
+ short_names: ["yawning_face"],
+ text: null,
+ texts: null,
+ category: "Smileys & Emotion",
+ subcategory: "face-concerned",
+ sort_order: 99,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ triumph: {
+ char: "😤",
+ key: "triumph",
+ keywords: ["triumph", "FACE WITH LOOK OF TRIUMPH"],
+ category: "people",
+ lib: {
+ name: "FACE WITH LOOK OF TRIUMPH",
+ unified: "1F624",
+ non_qualified: null,
+ docomo: "E753",
+ au: "EAC1",
+ softbank: null,
+ google: "FE328",
+ image: "1f624.png",
+ sheet_x: 32,
+ sheet_y: 57,
+ short_name: "triumph",
+ short_names: ["triumph"],
+ text: null,
+ texts: null,
+ category: "Smileys & Emotion",
+ subcategory: "face-negative",
+ sort_order: 100,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ rage: {
+ char: "😡",
+ key: "rage",
+ keywords: ["rage", "POUTING FACE"],
+ category: "people",
+ lib: {
+ name: "POUTING FACE",
+ unified: "1F621",
+ non_qualified: null,
+ docomo: "E724",
+ au: "EB5D",
+ softbank: "E416",
+ google: "FE33D",
+ image: "1f621.png",
+ sheet_x: 32,
+ sheet_y: 54,
+ short_name: "rage",
+ short_names: ["rage"],
+ text: null,
+ texts: null,
+ category: "Smileys & Emotion",
+ subcategory: "face-negative",
+ sort_order: 101,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ angry: {
+ char: "😠",
+ key: "angry",
+ keywords: ["angry", "ANGRY FACE"],
+ category: "people",
+ lib: {
+ name: "ANGRY FACE",
+ unified: "1F620",
+ non_qualified: null,
+ docomo: "E6F1",
+ au: "E472",
+ softbank: "E059",
+ google: "FE320",
+ image: "1f620.png",
+ sheet_x: 32,
+ sheet_y: 53,
+ short_name: "angry",
+ short_names: ["angry"],
+ text: null,
+ texts: [">:(", ">:-("],
+ category: "Smileys & Emotion",
+ subcategory: "face-negative",
+ sort_order: 102,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ face_with_symbols_on_mouth: {
+ char: "🤬",
+ key: "face_with_symbols_on_mouth",
+ keywords: [
+ "face_with_symbols_on_mouth",
+ "SERIOUS FACE WITH SYMBOLS COVERING MOUTH",
+ ],
+ category: "people",
+ lib: {
+ name: "SERIOUS FACE WITH SYMBOLS COVERING MOUTH",
+ unified: "1F92C",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f92c.png",
+ sheet_x: 40,
+ sheet_y: 43,
+ short_name: "face_with_symbols_on_mouth",
+ short_names: [
+ "face_with_symbols_on_mouth",
+ "serious_face_with_symbols_covering_mouth",
+ ],
+ text: null,
+ texts: null,
+ category: "Smileys & Emotion",
+ subcategory: "face-negative",
+ sort_order: 103,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ smiling_imp: {
+ char: "😈",
+ key: "smiling_imp",
+ keywords: ["smiling_imp", "SMILING FACE WITH HORNS"],
+ category: "people",
+ lib: {
+ name: "SMILING FACE WITH HORNS",
+ unified: "1F608",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f608.png",
+ sheet_x: 32,
+ sheet_y: 29,
+ short_name: "smiling_imp",
+ short_names: ["smiling_imp"],
+ text: null,
+ texts: null,
+ category: "Smileys & Emotion",
+ subcategory: "face-negative",
+ sort_order: 104,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ imp: {
+ char: "👿",
+ key: "imp",
+ keywords: ["imp", "IMP"],
+ category: "people",
+ lib: {
+ name: "IMP",
+ unified: "1F47F",
+ non_qualified: null,
+ docomo: null,
+ au: "E4EF",
+ softbank: "E11A",
+ google: "FE1B2",
+ image: "1f47f.png",
+ sheet_x: 25,
+ sheet_y: 9,
+ short_name: "imp",
+ short_names: ["imp"],
+ text: null,
+ texts: null,
+ category: "Smileys & Emotion",
+ subcategory: "face-negative",
+ sort_order: 105,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ skull: {
+ char: "💀",
+ key: "skull",
+ keywords: ["skull", "SKULL"],
+ category: "people",
+ lib: {
+ name: "SKULL",
+ unified: "1F480",
+ non_qualified: null,
+ docomo: null,
+ au: "E4F8",
+ softbank: "E11C",
+ google: "FE1B3",
+ image: "1f480.png",
+ sheet_x: 25,
+ sheet_y: 10,
+ short_name: "skull",
+ short_names: ["skull"],
+ text: null,
+ texts: null,
+ category: "Smileys & Emotion",
+ subcategory: "face-negative",
+ sort_order: 106,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ skull_and_crossbones: {
+ char: "☠️",
+ key: "skull_and_crossbones",
+ keywords: ["skull_and_crossbones", "SKULL AND CROSSBONES"],
+ category: "people",
+ lib: {
+ name: "SKULL AND CROSSBONES",
+ unified: "2620-FE0F",
+ non_qualified: "2620",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "2620-fe0f.png",
+ sheet_x: 57,
+ sheet_y: 26,
+ short_name: "skull_and_crossbones",
+ short_names: ["skull_and_crossbones"],
+ text: null,
+ texts: null,
+ category: "Smileys & Emotion",
+ subcategory: "face-negative",
+ sort_order: 107,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ hankey: {
+ char: "💩",
+ key: "hankey",
+ keywords: ["hankey", "PILE OF POO"],
+ category: "people",
+ lib: {
+ name: "PILE OF POO",
+ unified: "1F4A9",
+ non_qualified: null,
+ docomo: null,
+ au: "E4F5",
+ softbank: "E05A",
+ google: "FE4F4",
+ image: "1f4a9.png",
+ sheet_x: 27,
+ sheet_y: 57,
+ short_name: "hankey",
+ short_names: ["hankey", "poop", "shit"],
+ text: null,
+ texts: null,
+ category: "Smileys & Emotion",
+ subcategory: "face-costume",
+ sort_order: 108,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ clown_face: {
+ char: "🤡",
+ key: "clown_face",
+ keywords: ["clown_face", "CLOWN FACE"],
+ category: "people",
+ lib: {
+ name: "CLOWN FACE",
+ unified: "1F921",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f921.png",
+ sheet_x: 40,
+ sheet_y: 15,
+ short_name: "clown_face",
+ short_names: ["clown_face"],
+ text: null,
+ texts: null,
+ category: "Smileys & Emotion",
+ subcategory: "face-costume",
+ sort_order: 109,
+ added_in: "3.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ japanese_ogre: {
+ char: "👹",
+ key: "japanese_ogre",
+ keywords: ["japanese_ogre", "JAPANESE OGRE"],
+ category: "people",
+ lib: {
+ name: "JAPANESE OGRE",
+ unified: "1F479",
+ non_qualified: null,
+ docomo: null,
+ au: "EB44",
+ softbank: null,
+ google: "FE1AC",
+ image: "1f479.png",
+ sheet_x: 24,
+ sheet_y: 59,
+ short_name: "japanese_ogre",
+ short_names: ["japanese_ogre"],
+ text: null,
+ texts: null,
+ category: "Smileys & Emotion",
+ subcategory: "face-costume",
+ sort_order: 110,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ japanese_goblin: {
+ char: "👺",
+ key: "japanese_goblin",
+ keywords: ["japanese_goblin", "JAPANESE GOBLIN"],
+ category: "people",
+ lib: {
+ name: "JAPANESE GOBLIN",
+ unified: "1F47A",
+ non_qualified: null,
+ docomo: null,
+ au: "EB45",
+ softbank: null,
+ google: "FE1AD",
+ image: "1f47a.png",
+ sheet_x: 24,
+ sheet_y: 60,
+ short_name: "japanese_goblin",
+ short_names: ["japanese_goblin"],
+ text: null,
+ texts: null,
+ category: "Smileys & Emotion",
+ subcategory: "face-costume",
+ sort_order: 111,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ ghost: {
+ char: "👻",
+ key: "ghost",
+ keywords: ["ghost", "GHOST"],
+ category: "people",
+ lib: {
+ name: "GHOST",
+ unified: "1F47B",
+ non_qualified: null,
+ docomo: null,
+ au: "E4CB",
+ softbank: "E11B",
+ google: "FE1AE",
+ image: "1f47b.png",
+ sheet_x: 25,
+ sheet_y: 0,
+ short_name: "ghost",
+ short_names: ["ghost"],
+ text: null,
+ texts: null,
+ category: "Smileys & Emotion",
+ subcategory: "face-costume",
+ sort_order: 112,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ alien: {
+ char: "👽",
+ key: "alien",
+ keywords: ["alien", "EXTRATERRESTRIAL ALIEN"],
+ category: "people",
+ lib: {
+ name: "EXTRATERRESTRIAL ALIEN",
+ unified: "1F47D",
+ non_qualified: null,
+ docomo: null,
+ au: "E50E",
+ softbank: "E10C",
+ google: "FE1B0",
+ image: "1f47d.png",
+ sheet_x: 25,
+ sheet_y: 7,
+ short_name: "alien",
+ short_names: ["alien"],
+ text: null,
+ texts: null,
+ category: "Smileys & Emotion",
+ subcategory: "face-costume",
+ sort_order: 113,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ space_invader: {
+ char: "👾",
+ key: "space_invader",
+ keywords: ["space_invader", "ALIEN MONSTER"],
+ category: "people",
+ lib: {
+ name: "ALIEN MONSTER",
+ unified: "1F47E",
+ non_qualified: null,
+ docomo: null,
+ au: "E4EC",
+ softbank: "E12B",
+ google: "FE1B1",
+ image: "1f47e.png",
+ sheet_x: 25,
+ sheet_y: 8,
+ short_name: "space_invader",
+ short_names: ["space_invader"],
+ text: null,
+ texts: null,
+ category: "Smileys & Emotion",
+ subcategory: "face-costume",
+ sort_order: 114,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ robot_face: {
+ char: "🤖",
+ key: "robot_face",
+ keywords: ["robot_face", "ROBOT FACE"],
+ category: "people",
+ lib: {
+ name: "ROBOT FACE",
+ unified: "1F916",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f916.png",
+ sheet_x: 39,
+ sheet_y: 5,
+ short_name: "robot_face",
+ short_names: ["robot_face"],
+ text: null,
+ texts: null,
+ category: "Smileys & Emotion",
+ subcategory: "face-costume",
+ sort_order: 115,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ smiley_cat: {
+ char: "😺",
+ key: "smiley_cat",
+ keywords: ["smiley_cat", "SMILING CAT FACE WITH OPEN MOUTH"],
+ category: "people",
+ lib: {
+ name: "SMILING CAT FACE WITH OPEN MOUTH",
+ unified: "1F63A",
+ non_qualified: null,
+ docomo: "E6F0",
+ au: "EB61",
+ softbank: null,
+ google: "FE348",
+ image: "1f63a.png",
+ sheet_x: 33,
+ sheet_y: 21,
+ short_name: "smiley_cat",
+ short_names: ["smiley_cat"],
+ text: null,
+ texts: null,
+ category: "Smileys & Emotion",
+ subcategory: "cat-face",
+ sort_order: 116,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ smile_cat: {
+ char: "😸",
+ key: "smile_cat",
+ keywords: ["smile_cat", "GRINNING CAT FACE WITH SMILING EYES"],
+ category: "people",
+ lib: {
+ name: "GRINNING CAT FACE WITH SMILING EYES",
+ unified: "1F638",
+ non_qualified: null,
+ docomo: "E753",
+ au: "EB7F",
+ softbank: null,
+ google: "FE349",
+ image: "1f638.png",
+ sheet_x: 33,
+ sheet_y: 19,
+ short_name: "smile_cat",
+ short_names: ["smile_cat"],
+ text: null,
+ texts: null,
+ category: "Smileys & Emotion",
+ subcategory: "cat-face",
+ sort_order: 117,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ joy_cat: {
+ char: "😹",
+ key: "joy_cat",
+ keywords: ["joy_cat", "CAT FACE WITH TEARS OF JOY"],
+ category: "people",
+ lib: {
+ name: "CAT FACE WITH TEARS OF JOY",
+ unified: "1F639",
+ non_qualified: null,
+ docomo: "E72A",
+ au: "EB63",
+ softbank: null,
+ google: "FE34A",
+ image: "1f639.png",
+ sheet_x: 33,
+ sheet_y: 20,
+ short_name: "joy_cat",
+ short_names: ["joy_cat"],
+ text: null,
+ texts: null,
+ category: "Smileys & Emotion",
+ subcategory: "cat-face",
+ sort_order: 118,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ heart_eyes_cat: {
+ char: "😻",
+ key: "heart_eyes_cat",
+ keywords: ["heart_eyes_cat", "SMILING CAT FACE WITH HEART-SHAPED EYES"],
+ category: "people",
+ lib: {
+ name: "SMILING CAT FACE WITH HEART-SHAPED EYES",
+ unified: "1F63B",
+ non_qualified: null,
+ docomo: "E726",
+ au: "EB65",
+ softbank: null,
+ google: "FE34C",
+ image: "1f63b.png",
+ sheet_x: 33,
+ sheet_y: 22,
+ short_name: "heart_eyes_cat",
+ short_names: ["heart_eyes_cat"],
+ text: null,
+ texts: null,
+ category: "Smileys & Emotion",
+ subcategory: "cat-face",
+ sort_order: 119,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ smirk_cat: {
+ char: "😼",
+ key: "smirk_cat",
+ keywords: ["smirk_cat", "CAT FACE WITH WRY SMILE"],
+ category: "people",
+ lib: {
+ name: "CAT FACE WITH WRY SMILE",
+ unified: "1F63C",
+ non_qualified: null,
+ docomo: "E753",
+ au: "EB6A",
+ softbank: null,
+ google: "FE34F",
+ image: "1f63c.png",
+ sheet_x: 33,
+ sheet_y: 23,
+ short_name: "smirk_cat",
+ short_names: ["smirk_cat"],
+ text: null,
+ texts: null,
+ category: "Smileys & Emotion",
+ subcategory: "cat-face",
+ sort_order: 120,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ kissing_cat: {
+ char: "😽",
+ key: "kissing_cat",
+ keywords: ["kissing_cat", "KISSING CAT FACE WITH CLOSED EYES"],
+ category: "people",
+ lib: {
+ name: "KISSING CAT FACE WITH CLOSED EYES",
+ unified: "1F63D",
+ non_qualified: null,
+ docomo: "E726",
+ au: "EB60",
+ softbank: null,
+ google: "FE34B",
+ image: "1f63d.png",
+ sheet_x: 33,
+ sheet_y: 24,
+ short_name: "kissing_cat",
+ short_names: ["kissing_cat"],
+ text: null,
+ texts: null,
+ category: "Smileys & Emotion",
+ subcategory: "cat-face",
+ sort_order: 121,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ scream_cat: {
+ char: "🙀",
+ key: "scream_cat",
+ keywords: ["scream_cat", "WEARY CAT FACE"],
+ category: "people",
+ lib: {
+ name: "WEARY CAT FACE",
+ unified: "1F640",
+ non_qualified: null,
+ docomo: "E6F3",
+ au: "EB66",
+ softbank: null,
+ google: "FE350",
+ image: "1f640.png",
+ sheet_x: 33,
+ sheet_y: 27,
+ short_name: "scream_cat",
+ short_names: ["scream_cat"],
+ text: null,
+ texts: null,
+ category: "Smileys & Emotion",
+ subcategory: "cat-face",
+ sort_order: 122,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ crying_cat_face: {
+ char: "😿",
+ key: "crying_cat_face",
+ keywords: ["crying_cat_face", "CRYING CAT FACE"],
+ category: "people",
+ lib: {
+ name: "CRYING CAT FACE",
+ unified: "1F63F",
+ non_qualified: null,
+ docomo: "E72E",
+ au: "EB68",
+ softbank: null,
+ google: "FE34D",
+ image: "1f63f.png",
+ sheet_x: 33,
+ sheet_y: 26,
+ short_name: "crying_cat_face",
+ short_names: ["crying_cat_face"],
+ text: null,
+ texts: null,
+ category: "Smileys & Emotion",
+ subcategory: "cat-face",
+ sort_order: 123,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ pouting_cat: {
+ char: "😾",
+ key: "pouting_cat",
+ keywords: ["pouting_cat", "POUTING CAT FACE"],
+ category: "people",
+ lib: {
+ name: "POUTING CAT FACE",
+ unified: "1F63E",
+ non_qualified: null,
+ docomo: "E724",
+ au: "EB5E",
+ softbank: null,
+ google: "FE34E",
+ image: "1f63e.png",
+ sheet_x: 33,
+ sheet_y: 25,
+ short_name: "pouting_cat",
+ short_names: ["pouting_cat"],
+ text: null,
+ texts: null,
+ category: "Smileys & Emotion",
+ subcategory: "cat-face",
+ sort_order: 124,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ see_no_evil: {
+ char: "🙈",
+ key: "see_no_evil",
+ keywords: ["see_no_evil", "SEE-NO-EVIL MONKEY"],
+ category: "people",
+ lib: {
+ name: "SEE-NO-EVIL MONKEY",
+ unified: "1F648",
+ non_qualified: null,
+ docomo: null,
+ au: "EB50",
+ softbank: null,
+ google: "FE354",
+ image: "1f648.png",
+ sheet_x: 34,
+ sheet_y: 25,
+ short_name: "see_no_evil",
+ short_names: ["see_no_evil"],
+ text: null,
+ texts: null,
+ category: "Smileys & Emotion",
+ subcategory: "monkey-face",
+ sort_order: 125,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ hear_no_evil: {
+ char: "🙉",
+ key: "hear_no_evil",
+ keywords: ["hear_no_evil", "HEAR-NO-EVIL MONKEY"],
+ category: "people",
+ lib: {
+ name: "HEAR-NO-EVIL MONKEY",
+ unified: "1F649",
+ non_qualified: null,
+ docomo: null,
+ au: "EB52",
+ softbank: null,
+ google: "FE356",
+ image: "1f649.png",
+ sheet_x: 34,
+ sheet_y: 26,
+ short_name: "hear_no_evil",
+ short_names: ["hear_no_evil"],
+ text: null,
+ texts: null,
+ category: "Smileys & Emotion",
+ subcategory: "monkey-face",
+ sort_order: 126,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ speak_no_evil: {
+ char: "🙊",
+ key: "speak_no_evil",
+ keywords: ["speak_no_evil", "SPEAK-NO-EVIL MONKEY"],
+ category: "people",
+ lib: {
+ name: "SPEAK-NO-EVIL MONKEY",
+ unified: "1F64A",
+ non_qualified: null,
+ docomo: null,
+ au: "EB51",
+ softbank: null,
+ google: "FE355",
+ image: "1f64a.png",
+ sheet_x: 34,
+ sheet_y: 27,
+ short_name: "speak_no_evil",
+ short_names: ["speak_no_evil"],
+ text: null,
+ texts: null,
+ category: "Smileys & Emotion",
+ subcategory: "monkey-face",
+ sort_order: 127,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ love_letter: {
+ char: "💌",
+ key: "love_letter",
+ keywords: ["love_letter", "LOVE LETTER"],
+ category: "people",
+ lib: {
+ name: "LOVE LETTER",
+ unified: "1F48C",
+ non_qualified: null,
+ docomo: "E717",
+ au: "EB78",
+ softbank: null,
+ google: "FE824",
+ image: "1f48c.png",
+ sheet_x: 26,
+ sheet_y: 39,
+ short_name: "love_letter",
+ short_names: ["love_letter"],
+ text: null,
+ texts: null,
+ category: "Smileys & Emotion",
+ subcategory: "heart",
+ sort_order: 128,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ cupid: {
+ char: "💘",
+ key: "cupid",
+ keywords: ["cupid", "HEART WITH ARROW"],
+ category: "people",
+ lib: {
+ name: "HEART WITH ARROW",
+ unified: "1F498",
+ non_qualified: null,
+ docomo: "E6EC",
+ au: "E4EA",
+ softbank: "E329",
+ google: "FEB12",
+ image: "1f498.png",
+ sheet_x: 27,
+ sheet_y: 40,
+ short_name: "cupid",
+ short_names: ["cupid"],
+ text: null,
+ texts: null,
+ category: "Smileys & Emotion",
+ subcategory: "heart",
+ sort_order: 129,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ gift_heart: {
+ char: "💝",
+ key: "gift_heart",
+ keywords: ["gift_heart", "HEART WITH RIBBON"],
+ category: "people",
+ lib: {
+ name: "HEART WITH RIBBON",
+ unified: "1F49D",
+ non_qualified: null,
+ docomo: "E6EC",
+ au: "EB54",
+ softbank: "E437",
+ google: "FEB17",
+ image: "1f49d.png",
+ sheet_x: 27,
+ sheet_y: 45,
+ short_name: "gift_heart",
+ short_names: ["gift_heart"],
+ text: null,
+ texts: null,
+ category: "Smileys & Emotion",
+ subcategory: "heart",
+ sort_order: 130,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ sparkling_heart: {
+ char: "💖",
+ key: "sparkling_heart",
+ keywords: ["sparkling_heart", "SPARKLING HEART"],
+ category: "people",
+ lib: {
+ name: "SPARKLING HEART",
+ unified: "1F496",
+ non_qualified: null,
+ docomo: "E6EC",
+ au: "EAA6",
+ softbank: null,
+ google: "FEB10",
+ image: "1f496.png",
+ sheet_x: 27,
+ sheet_y: 38,
+ short_name: "sparkling_heart",
+ short_names: ["sparkling_heart"],
+ text: null,
+ texts: null,
+ category: "Smileys & Emotion",
+ subcategory: "heart",
+ sort_order: 131,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ heartpulse: {
+ char: "💗",
+ key: "heartpulse",
+ keywords: ["heartpulse", "GROWING HEART"],
+ category: "people",
+ lib: {
+ name: "GROWING HEART",
+ unified: "1F497",
+ non_qualified: null,
+ docomo: "E6ED",
+ au: "EB75",
+ softbank: "E328",
+ google: "FEB11",
+ image: "1f497.png",
+ sheet_x: 27,
+ sheet_y: 39,
+ short_name: "heartpulse",
+ short_names: ["heartpulse"],
+ text: null,
+ texts: null,
+ category: "Smileys & Emotion",
+ subcategory: "heart",
+ sort_order: 132,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ heartbeat: {
+ char: "💓",
+ key: "heartbeat",
+ keywords: ["heartbeat", "BEATING HEART"],
+ category: "people",
+ lib: {
+ name: "BEATING HEART",
+ unified: "1F493",
+ non_qualified: null,
+ docomo: "E6ED",
+ au: "EB75",
+ softbank: "E327",
+ google: "FEB0D",
+ image: "1f493.png",
+ sheet_x: 27,
+ sheet_y: 35,
+ short_name: "heartbeat",
+ short_names: ["heartbeat"],
+ text: null,
+ texts: null,
+ category: "Smileys & Emotion",
+ subcategory: "heart",
+ sort_order: 133,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ revolving_hearts: {
+ char: "💞",
+ key: "revolving_hearts",
+ keywords: ["revolving_hearts", "REVOLVING HEARTS"],
+ category: "people",
+ lib: {
+ name: "REVOLVING HEARTS",
+ unified: "1F49E",
+ non_qualified: null,
+ docomo: "E6ED",
+ au: "E5AF",
+ softbank: null,
+ google: "FEB18",
+ image: "1f49e.png",
+ sheet_x: 27,
+ sheet_y: 46,
+ short_name: "revolving_hearts",
+ short_names: ["revolving_hearts"],
+ text: null,
+ texts: null,
+ category: "Smileys & Emotion",
+ subcategory: "heart",
+ sort_order: 134,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ two_hearts: {
+ char: "💕",
+ key: "two_hearts",
+ keywords: ["two_hearts", "TWO HEARTS"],
+ category: "people",
+ lib: {
+ name: "TWO HEARTS",
+ unified: "1F495",
+ non_qualified: null,
+ docomo: "E6EF",
+ au: "E478",
+ softbank: null,
+ google: "FEB0F",
+ image: "1f495.png",
+ sheet_x: 27,
+ sheet_y: 37,
+ short_name: "two_hearts",
+ short_names: ["two_hearts"],
+ text: null,
+ texts: null,
+ category: "Smileys & Emotion",
+ subcategory: "heart",
+ sort_order: 135,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ heart_decoration: {
+ char: "💟",
+ key: "heart_decoration",
+ keywords: ["heart_decoration", "HEART DECORATION"],
+ category: "people",
+ lib: {
+ name: "HEART DECORATION",
+ unified: "1F49F",
+ non_qualified: null,
+ docomo: "E6F8",
+ au: "E595",
+ softbank: "E204",
+ google: "FEB19",
+ image: "1f49f.png",
+ sheet_x: 27,
+ sheet_y: 47,
+ short_name: "heart_decoration",
+ short_names: ["heart_decoration"],
+ text: null,
+ texts: null,
+ category: "Smileys & Emotion",
+ subcategory: "heart",
+ sort_order: 136,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ heavy_heart_exclamation_mark_ornament: {
+ char: "❣️",
+ key: "heavy_heart_exclamation_mark_ornament",
+ keywords: ["heavy_heart_exclamation_mark_ornament", "HEART EXCLAMATION"],
+ category: "people",
+ lib: {
+ name: "HEART EXCLAMATION",
+ unified: "2763-FE0F",
+ non_qualified: "2763",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "2763-fe0f.png",
+ sheet_x: 59,
+ sheet_y: 38,
+ short_name: "heavy_heart_exclamation_mark_ornament",
+ short_names: ["heavy_heart_exclamation_mark_ornament"],
+ text: null,
+ texts: null,
+ category: "Smileys & Emotion",
+ subcategory: "heart",
+ sort_order: 137,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ broken_heart: {
+ char: "💔",
+ key: "broken_heart",
+ keywords: ["broken_heart", "BROKEN HEART"],
+ category: "people",
+ lib: {
+ name: "BROKEN HEART",
+ unified: "1F494",
+ non_qualified: null,
+ docomo: "E6EE",
+ au: "E477",
+ softbank: "E023",
+ google: "FEB0E",
+ image: "1f494.png",
+ sheet_x: 27,
+ sheet_y: 36,
+ short_name: "broken_heart",
+ short_names: ["broken_heart"],
+ text: "3",
+ texts: ["3"],
+ category: "Smileys & Emotion",
+ subcategory: "heart",
+ sort_order: 138,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ heart_on_fire: {
+ char: "❤️🔥",
+ key: "heart_on_fire",
+ keywords: ["heart_on_fire", "HEART ON FIRE"],
+ category: "people",
+ lib: {
+ name: "HEART ON FIRE",
+ unified: "2764-FE0F-200D-1F525",
+ non_qualified: "2764-200D-1F525",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "2764-fe0f-200d-1f525.png",
+ sheet_x: 59,
+ sheet_y: 39,
+ short_name: "heart_on_fire",
+ short_names: ["heart_on_fire"],
+ text: null,
+ texts: null,
+ category: "Smileys & Emotion",
+ subcategory: "heart",
+ sort_order: 139,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ mending_heart: {
+ char: "❤️🩹",
+ key: "mending_heart",
+ keywords: ["mending_heart", "MENDING HEART"],
+ category: "people",
+ lib: {
+ name: "MENDING HEART",
+ unified: "2764-FE0F-200D-1FA79",
+ non_qualified: "2764-200D-1FA79",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "2764-fe0f-200d-1fa79.png",
+ sheet_x: 59,
+ sheet_y: 40,
+ short_name: "mending_heart",
+ short_names: ["mending_heart"],
+ text: null,
+ texts: null,
+ category: "Smileys & Emotion",
+ subcategory: "heart",
+ sort_order: 140,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ heart: {
+ char: "❤️",
+ key: "heart",
+ keywords: ["heart", "HEAVY BLACK HEART"],
+ category: "people",
+ lib: {
+ name: "HEAVY BLACK HEART",
+ unified: "2764-FE0F",
+ non_qualified: "2764",
+ docomo: "E6EC",
+ au: "E595",
+ softbank: "E022",
+ google: "FEB0C",
+ image: "2764-fe0f.png",
+ sheet_x: 59,
+ sheet_y: 41,
+ short_name: "heart",
+ short_names: ["heart"],
+ text: "<3",
+ texts: ["<3"],
+ category: "Smileys & Emotion",
+ subcategory: "heart",
+ sort_order: 141,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ pink_heart: {
+ char: "🩷",
+ key: "pink_heart",
+ keywords: ["pink_heart", "PINK HEART"],
+ category: "people",
+ lib: {
+ name: "PINK HEART",
+ unified: "1FA77",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1fa77.png",
+ sheet_x: 53,
+ sheet_y: 55,
+ short_name: "pink_heart",
+ short_names: ["pink_heart"],
+ text: null,
+ texts: null,
+ category: "Smileys & Emotion",
+ subcategory: "heart",
+ sort_order: 142,
+ added_in: "15.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: false,
+ has_img_facebook: false,
+ },
+ },
+ orange_heart: {
+ char: "🧡",
+ key: "orange_heart",
+ keywords: ["orange_heart", "ORANGE HEART"],
+ category: "people",
+ lib: {
+ name: "ORANGE HEART",
+ unified: "1F9E1",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f9e1.png",
+ sheet_x: 53,
+ sheet_y: 17,
+ short_name: "orange_heart",
+ short_names: ["orange_heart"],
+ text: null,
+ texts: null,
+ category: "Smileys & Emotion",
+ subcategory: "heart",
+ sort_order: 143,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ yellow_heart: {
+ char: "💛",
+ key: "yellow_heart",
+ keywords: ["yellow_heart", "YELLOW HEART"],
+ category: "people",
+ lib: {
+ name: "YELLOW HEART",
+ unified: "1F49B",
+ non_qualified: null,
+ docomo: "E6EC",
+ au: "EAA9",
+ softbank: "E32C",
+ google: "FEB15",
+ image: "1f49b.png",
+ sheet_x: 27,
+ sheet_y: 43,
+ short_name: "yellow_heart",
+ short_names: ["yellow_heart"],
+ text: "<3",
+ texts: null,
+ category: "Smileys & Emotion",
+ subcategory: "heart",
+ sort_order: 144,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ green_heart: {
+ char: "💚",
+ key: "green_heart",
+ keywords: ["green_heart", "GREEN HEART"],
+ category: "people",
+ lib: {
+ name: "GREEN HEART",
+ unified: "1F49A",
+ non_qualified: null,
+ docomo: "E6EC",
+ au: "EAA8",
+ softbank: "E32B",
+ google: "FEB14",
+ image: "1f49a.png",
+ sheet_x: 27,
+ sheet_y: 42,
+ short_name: "green_heart",
+ short_names: ["green_heart"],
+ text: "<3",
+ texts: null,
+ category: "Smileys & Emotion",
+ subcategory: "heart",
+ sort_order: 145,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ blue_heart: {
+ char: "💙",
+ key: "blue_heart",
+ keywords: ["blue_heart", "BLUE HEART"],
+ category: "people",
+ lib: {
+ name: "BLUE HEART",
+ unified: "1F499",
+ non_qualified: null,
+ docomo: "E6EC",
+ au: "EAA7",
+ softbank: "E32A",
+ google: "FEB13",
+ image: "1f499.png",
+ sheet_x: 27,
+ sheet_y: 41,
+ short_name: "blue_heart",
+ short_names: ["blue_heart"],
+ text: "<3",
+ texts: null,
+ category: "Smileys & Emotion",
+ subcategory: "heart",
+ sort_order: 146,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ light_blue_heart: {
+ char: "🩵",
+ key: "light_blue_heart",
+ keywords: ["light_blue_heart", "LIGHT BLUE HEART"],
+ category: "people",
+ lib: {
+ name: "LIGHT BLUE HEART",
+ unified: "1FA75",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1fa75.png",
+ sheet_x: 53,
+ sheet_y: 53,
+ short_name: "light_blue_heart",
+ short_names: ["light_blue_heart"],
+ text: null,
+ texts: null,
+ category: "Smileys & Emotion",
+ subcategory: "heart",
+ sort_order: 147,
+ added_in: "15.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: false,
+ has_img_facebook: false,
+ },
+ },
+ purple_heart: {
+ char: "💜",
+ key: "purple_heart",
+ keywords: ["purple_heart", "PURPLE HEART"],
+ category: "people",
+ lib: {
+ name: "PURPLE HEART",
+ unified: "1F49C",
+ non_qualified: null,
+ docomo: "E6EC",
+ au: "EAAA",
+ softbank: "E32D",
+ google: "FEB16",
+ image: "1f49c.png",
+ sheet_x: 27,
+ sheet_y: 44,
+ short_name: "purple_heart",
+ short_names: ["purple_heart"],
+ text: "<3",
+ texts: null,
+ category: "Smileys & Emotion",
+ subcategory: "heart",
+ sort_order: 148,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ brown_heart: {
+ char: "🤎",
+ key: "brown_heart",
+ keywords: ["brown_heart", "BROWN HEART"],
+ category: "people",
+ lib: {
+ name: "BROWN HEART",
+ unified: "1F90E",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f90e.png",
+ sheet_x: 38,
+ sheet_y: 53,
+ short_name: "brown_heart",
+ short_names: ["brown_heart"],
+ text: null,
+ texts: null,
+ category: "Smileys & Emotion",
+ subcategory: "heart",
+ sort_order: 149,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ black_heart: {
+ char: "🖤",
+ key: "black_heart",
+ keywords: ["black_heart", "BLACK HEART"],
+ category: "people",
+ lib: {
+ name: "BLACK HEART",
+ unified: "1F5A4",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f5a4.png",
+ sheet_x: 31,
+ sheet_y: 56,
+ short_name: "black_heart",
+ short_names: ["black_heart"],
+ text: null,
+ texts: null,
+ category: "Smileys & Emotion",
+ subcategory: "heart",
+ sort_order: 150,
+ added_in: "3.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ grey_heart: {
+ char: "🩶",
+ key: "grey_heart",
+ keywords: ["grey_heart", "GREY HEART"],
+ category: "people",
+ lib: {
+ name: "GREY HEART",
+ unified: "1FA76",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1fa76.png",
+ sheet_x: 53,
+ sheet_y: 54,
+ short_name: "grey_heart",
+ short_names: ["grey_heart"],
+ text: null,
+ texts: null,
+ category: "Smileys & Emotion",
+ subcategory: "heart",
+ sort_order: 151,
+ added_in: "15.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: false,
+ has_img_facebook: false,
+ },
+ },
+ white_heart: {
+ char: "🤍",
+ key: "white_heart",
+ keywords: ["white_heart", "WHITE HEART"],
+ category: "people",
+ lib: {
+ name: "WHITE HEART",
+ unified: "1F90D",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f90d.png",
+ sheet_x: 38,
+ sheet_y: 52,
+ short_name: "white_heart",
+ short_names: ["white_heart"],
+ text: null,
+ texts: null,
+ category: "Smileys & Emotion",
+ subcategory: "heart",
+ sort_order: 152,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ kiss: {
+ char: "💋",
+ key: "kiss",
+ keywords: ["kiss", "KISS MARK"],
+ category: "people",
+ lib: {
+ name: "KISS MARK",
+ unified: "1F48B",
+ non_qualified: null,
+ docomo: "E6F9",
+ au: "E4EB",
+ softbank: "E003",
+ google: "FE823",
+ image: "1f48b.png",
+ sheet_x: 26,
+ sheet_y: 38,
+ short_name: "kiss",
+ short_names: ["kiss"],
+ text: null,
+ texts: null,
+ category: "Smileys & Emotion",
+ subcategory: "emotion",
+ sort_order: 153,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ anger: {
+ char: "💢",
+ key: "anger",
+ keywords: ["anger", "ANGER SYMBOL"],
+ category: "people",
+ lib: {
+ name: "ANGER SYMBOL",
+ unified: "1F4A2",
+ non_qualified: null,
+ docomo: "E6FC",
+ au: "E4E5",
+ softbank: "E334",
+ google: "FEB57",
+ image: "1f4a2.png",
+ sheet_x: 27,
+ sheet_y: 50,
+ short_name: "anger",
+ short_names: ["anger"],
+ text: null,
+ texts: null,
+ category: "Smileys & Emotion",
+ subcategory: "emotion",
+ sort_order: 155,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ boom: {
+ char: "💥",
+ key: "boom",
+ keywords: ["boom", "COLLISION SYMBOL"],
+ category: "people",
+ lib: {
+ name: "COLLISION SYMBOL",
+ unified: "1F4A5",
+ non_qualified: null,
+ docomo: "E705",
+ au: "E5B0",
+ softbank: null,
+ google: "FEB5A",
+ image: "1f4a5.png",
+ sheet_x: 27,
+ sheet_y: 53,
+ short_name: "boom",
+ short_names: ["boom", "collision"],
+ text: null,
+ texts: null,
+ category: "Smileys & Emotion",
+ subcategory: "emotion",
+ sort_order: 156,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ dizzy: {
+ char: "💫",
+ key: "dizzy",
+ keywords: ["dizzy", "DIZZY SYMBOL"],
+ category: "people",
+ lib: {
+ name: "DIZZY SYMBOL",
+ unified: "1F4AB",
+ non_qualified: null,
+ docomo: null,
+ au: "EB5C",
+ softbank: null,
+ google: "FEB5F",
+ image: "1f4ab.png",
+ sheet_x: 28,
+ sheet_y: 3,
+ short_name: "dizzy",
+ short_names: ["dizzy"],
+ text: null,
+ texts: null,
+ category: "Smileys & Emotion",
+ subcategory: "emotion",
+ sort_order: 157,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ sweat_drops: {
+ char: "💦",
+ key: "sweat_drops",
+ keywords: ["sweat_drops", "SPLASHING SWEAT SYMBOL"],
+ category: "people",
+ lib: {
+ name: "SPLASHING SWEAT SYMBOL",
+ unified: "1F4A6",
+ non_qualified: null,
+ docomo: "E706",
+ au: "E5B1",
+ softbank: "E331",
+ google: "FEB5B",
+ image: "1f4a6.png",
+ sheet_x: 27,
+ sheet_y: 54,
+ short_name: "sweat_drops",
+ short_names: ["sweat_drops"],
+ text: null,
+ texts: null,
+ category: "Smileys & Emotion",
+ subcategory: "emotion",
+ sort_order: 158,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ dash: {
+ char: "💨",
+ key: "dash",
+ keywords: ["dash", "DASH SYMBOL"],
+ category: "people",
+ lib: {
+ name: "DASH SYMBOL",
+ unified: "1F4A8",
+ non_qualified: null,
+ docomo: "E708",
+ au: "E4F4",
+ softbank: "E330",
+ google: "FEB5D",
+ image: "1f4a8.png",
+ sheet_x: 27,
+ sheet_y: 56,
+ short_name: "dash",
+ short_names: ["dash"],
+ text: null,
+ texts: null,
+ category: "Smileys & Emotion",
+ subcategory: "emotion",
+ sort_order: 159,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ hole: {
+ char: "🕳️",
+ key: "hole",
+ keywords: ["hole", "HOLE"],
+ category: "people",
+ lib: {
+ name: "HOLE",
+ unified: "1F573-FE0F",
+ non_qualified: "1F573",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f573-fe0f.png",
+ sheet_x: 30,
+ sheet_y: 59,
+ short_name: "hole",
+ short_names: ["hole"],
+ text: null,
+ texts: null,
+ category: "Smileys & Emotion",
+ subcategory: "emotion",
+ sort_order: 160,
+ added_in: "0.7",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ speech_balloon: {
+ char: "💬",
+ key: "speech_balloon",
+ keywords: ["speech_balloon", "SPEECH BALLOON"],
+ category: "people",
+ lib: {
+ name: "SPEECH BALLOON",
+ unified: "1F4AC",
+ non_qualified: null,
+ docomo: null,
+ au: "E4FD",
+ softbank: null,
+ google: "FE532",
+ image: "1f4ac.png",
+ sheet_x: 28,
+ sheet_y: 4,
+ short_name: "speech_balloon",
+ short_names: ["speech_balloon"],
+ text: null,
+ texts: null,
+ category: "Smileys & Emotion",
+ subcategory: "emotion",
+ sort_order: 161,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "eye-in-speech-bubble": {
+ char: "👁️🗨️",
+ key: "eye-in-speech-bubble",
+ keywords: ["eye-in-speech-bubble", "EYE IN SPEECH BUBBLE"],
+ category: "people",
+ lib: {
+ name: "EYE IN SPEECH BUBBLE",
+ unified: "1F441-FE0F-200D-1F5E8-FE0F",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f441-fe0f-200d-1f5e8-fe0f.png",
+ sheet_x: 11,
+ sheet_y: 54,
+ short_name: "eye-in-speech-bubble",
+ short_names: ["eye-in-speech-bubble"],
+ text: null,
+ texts: null,
+ category: "Smileys & Emotion",
+ subcategory: "emotion",
+ sort_order: 162,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: false,
+ },
+ },
+ left_speech_bubble: {
+ char: "🗨️",
+ key: "left_speech_bubble",
+ keywords: ["left_speech_bubble", "LEFT SPEECH BUBBLE"],
+ category: "people",
+ lib: {
+ name: "LEFT SPEECH BUBBLE",
+ unified: "1F5E8-FE0F",
+ non_qualified: "1F5E8",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f5e8-fe0f.png",
+ sheet_x: 32,
+ sheet_y: 12,
+ short_name: "left_speech_bubble",
+ short_names: ["left_speech_bubble"],
+ text: null,
+ texts: null,
+ category: "Smileys & Emotion",
+ subcategory: "emotion",
+ sort_order: 163,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ right_anger_bubble: {
+ char: "🗯️",
+ key: "right_anger_bubble",
+ keywords: ["right_anger_bubble", "RIGHT ANGER BUBBLE"],
+ category: "people",
+ lib: {
+ name: "RIGHT ANGER BUBBLE",
+ unified: "1F5EF-FE0F",
+ non_qualified: "1F5EF",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f5ef-fe0f.png",
+ sheet_x: 32,
+ sheet_y: 13,
+ short_name: "right_anger_bubble",
+ short_names: ["right_anger_bubble"],
+ text: null,
+ texts: null,
+ category: "Smileys & Emotion",
+ subcategory: "emotion",
+ sort_order: 164,
+ added_in: "0.7",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ thought_balloon: {
+ char: "💭",
+ key: "thought_balloon",
+ keywords: ["thought_balloon", "THOUGHT BALLOON"],
+ category: "people",
+ lib: {
+ name: "THOUGHT BALLOON",
+ unified: "1F4AD",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f4ad.png",
+ sheet_x: 28,
+ sheet_y: 5,
+ short_name: "thought_balloon",
+ short_names: ["thought_balloon"],
+ text: null,
+ texts: null,
+ category: "Smileys & Emotion",
+ subcategory: "emotion",
+ sort_order: 165,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ zzz: {
+ char: "💤",
+ key: "zzz",
+ keywords: ["zzz", "SLEEPING SYMBOL"],
+ category: "people",
+ lib: {
+ name: "SLEEPING SYMBOL",
+ unified: "1F4A4",
+ non_qualified: null,
+ docomo: "E701",
+ au: "E475",
+ softbank: "E13C",
+ google: "FEB59",
+ image: "1f4a4.png",
+ sheet_x: 27,
+ sheet_y: 52,
+ short_name: "zzz",
+ short_names: ["zzz"],
+ text: null,
+ texts: null,
+ category: "Smileys & Emotion",
+ subcategory: "emotion",
+ sort_order: 166,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ wave: {
+ char: "👋",
+ key: "wave",
+ keywords: ["wave", "WAVING HAND SIGN"],
+ category: "people",
+ lib: {
+ name: "WAVING HAND SIGN",
+ unified: "1F44B",
+ non_qualified: null,
+ docomo: "E695",
+ au: "EAD6",
+ softbank: "E41E",
+ google: "FEB9D",
+ image: "1f44b.png",
+ sheet_x: 12,
+ sheet_y: 39,
+ short_name: "wave",
+ short_names: ["wave"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "hand-fingers-open",
+ sort_order: 167,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F44B-1F3FB",
+ non_qualified: null,
+ image: "1f44b-1f3fb.png",
+ sheet_x: 12,
+ sheet_y: 40,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F44B-1F3FC",
+ non_qualified: null,
+ image: "1f44b-1f3fc.png",
+ sheet_x: 12,
+ sheet_y: 41,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F44B-1F3FD",
+ non_qualified: null,
+ image: "1f44b-1f3fd.png",
+ sheet_x: 12,
+ sheet_y: 42,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F44B-1F3FE",
+ non_qualified: null,
+ image: "1f44b-1f3fe.png",
+ sheet_x: 12,
+ sheet_y: 43,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F44B-1F3FF",
+ non_qualified: null,
+ image: "1f44b-1f3ff.png",
+ sheet_x: 12,
+ sheet_y: 44,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ raised_back_of_hand: {
+ char: "🤚",
+ key: "raised_back_of_hand",
+ keywords: ["raised_back_of_hand", "RAISED BACK OF HAND"],
+ category: "people",
+ lib: {
+ name: "RAISED BACK OF HAND",
+ unified: "1F91A",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f91a.png",
+ sheet_x: 39,
+ sheet_y: 19,
+ short_name: "raised_back_of_hand",
+ short_names: ["raised_back_of_hand"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "hand-fingers-open",
+ sort_order: 168,
+ added_in: "3.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F91A-1F3FB",
+ non_qualified: null,
+ image: "1f91a-1f3fb.png",
+ sheet_x: 39,
+ sheet_y: 20,
+ added_in: "3.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F91A-1F3FC",
+ non_qualified: null,
+ image: "1f91a-1f3fc.png",
+ sheet_x: 39,
+ sheet_y: 21,
+ added_in: "3.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F91A-1F3FD",
+ non_qualified: null,
+ image: "1f91a-1f3fd.png",
+ sheet_x: 39,
+ sheet_y: 22,
+ added_in: "3.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F91A-1F3FE",
+ non_qualified: null,
+ image: "1f91a-1f3fe.png",
+ sheet_x: 39,
+ sheet_y: 23,
+ added_in: "3.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F91A-1F3FF",
+ non_qualified: null,
+ image: "1f91a-1f3ff.png",
+ sheet_x: 39,
+ sheet_y: 24,
+ added_in: "3.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ raised_hand_with_fingers_splayed: {
+ char: "🖐️",
+ key: "raised_hand_with_fingers_splayed",
+ keywords: [
+ "raised_hand_with_fingers_splayed",
+ "HAND WITH FINGERS SPLAYED",
+ ],
+ category: "people",
+ lib: {
+ name: "HAND WITH FINGERS SPLAYED",
+ unified: "1F590-FE0F",
+ non_qualified: "1F590",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f590-fe0f.png",
+ sheet_x: 31,
+ sheet_y: 38,
+ short_name: "raised_hand_with_fingers_splayed",
+ short_names: ["raised_hand_with_fingers_splayed"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "hand-fingers-open",
+ sort_order: 169,
+ added_in: "0.7",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F590-1F3FB",
+ non_qualified: null,
+ image: "1f590-1f3fb.png",
+ sheet_x: 31,
+ sheet_y: 39,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F590-1F3FC",
+ non_qualified: null,
+ image: "1f590-1f3fc.png",
+ sheet_x: 31,
+ sheet_y: 40,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F590-1F3FD",
+ non_qualified: null,
+ image: "1f590-1f3fd.png",
+ sheet_x: 31,
+ sheet_y: 41,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F590-1F3FE",
+ non_qualified: null,
+ image: "1f590-1f3fe.png",
+ sheet_x: 31,
+ sheet_y: 42,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F590-1F3FF",
+ non_qualified: null,
+ image: "1f590-1f3ff.png",
+ sheet_x: 31,
+ sheet_y: 43,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ hand: {
+ char: "✋",
+ key: "hand",
+ keywords: ["hand", "RAISED HAND"],
+ category: "people",
+ lib: {
+ name: "RAISED HAND",
+ unified: "270B",
+ non_qualified: null,
+ docomo: "E695",
+ au: "E5A7",
+ softbank: "E012",
+ google: "FEB95",
+ image: "270b.png",
+ sheet_x: 59,
+ sheet_y: 3,
+ short_name: "hand",
+ short_names: ["hand", "raised_hand"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "hand-fingers-open",
+ sort_order: 170,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "270B-1F3FB",
+ non_qualified: null,
+ image: "270b-1f3fb.png",
+ sheet_x: 59,
+ sheet_y: 4,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "270B-1F3FC",
+ non_qualified: null,
+ image: "270b-1f3fc.png",
+ sheet_x: 59,
+ sheet_y: 5,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "270B-1F3FD",
+ non_qualified: null,
+ image: "270b-1f3fd.png",
+ sheet_x: 59,
+ sheet_y: 6,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "270B-1F3FE",
+ non_qualified: null,
+ image: "270b-1f3fe.png",
+ sheet_x: 59,
+ sheet_y: 7,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "270B-1F3FF",
+ non_qualified: null,
+ image: "270b-1f3ff.png",
+ sheet_x: 59,
+ sheet_y: 8,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ "spock-hand": {
+ char: "🖖",
+ key: "spock-hand",
+ keywords: [
+ "spock-hand",
+ "RAISED HAND WITH PART BETWEEN MIDDLE AND RING FINGERS",
+ ],
+ category: "people",
+ lib: {
+ name: "RAISED HAND WITH PART BETWEEN MIDDLE AND RING FINGERS",
+ unified: "1F596",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f596.png",
+ sheet_x: 31,
+ sheet_y: 50,
+ short_name: "spock-hand",
+ short_names: ["spock-hand"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "hand-fingers-open",
+ sort_order: 171,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F596-1F3FB",
+ non_qualified: null,
+ image: "1f596-1f3fb.png",
+ sheet_x: 31,
+ sheet_y: 51,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F596-1F3FC",
+ non_qualified: null,
+ image: "1f596-1f3fc.png",
+ sheet_x: 31,
+ sheet_y: 52,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F596-1F3FD",
+ non_qualified: null,
+ image: "1f596-1f3fd.png",
+ sheet_x: 31,
+ sheet_y: 53,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F596-1F3FE",
+ non_qualified: null,
+ image: "1f596-1f3fe.png",
+ sheet_x: 31,
+ sheet_y: 54,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F596-1F3FF",
+ non_qualified: null,
+ image: "1f596-1f3ff.png",
+ sheet_x: 31,
+ sheet_y: 55,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ rightwards_hand: {
+ char: "🫱",
+ key: "rightwards_hand",
+ keywords: ["rightwards_hand", "RIGHTWARDS HAND"],
+ category: "people",
+ lib: {
+ name: "RIGHTWARDS HAND",
+ unified: "1FAF1",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1faf1.png",
+ sheet_x: 55,
+ sheet_y: 45,
+ short_name: "rightwards_hand",
+ short_names: ["rightwards_hand"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "hand-fingers-open",
+ sort_order: 172,
+ added_in: "14.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1FAF1-1F3FB",
+ non_qualified: null,
+ image: "1faf1-1f3fb.png",
+ sheet_x: 55,
+ sheet_y: 46,
+ added_in: "14.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1FAF1-1F3FC",
+ non_qualified: null,
+ image: "1faf1-1f3fc.png",
+ sheet_x: 55,
+ sheet_y: 47,
+ added_in: "14.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1FAF1-1F3FD",
+ non_qualified: null,
+ image: "1faf1-1f3fd.png",
+ sheet_x: 55,
+ sheet_y: 48,
+ added_in: "14.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1FAF1-1F3FE",
+ non_qualified: null,
+ image: "1faf1-1f3fe.png",
+ sheet_x: 55,
+ sheet_y: 49,
+ added_in: "14.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1FAF1-1F3FF",
+ non_qualified: null,
+ image: "1faf1-1f3ff.png",
+ sheet_x: 55,
+ sheet_y: 50,
+ added_in: "14.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ leftwards_hand: {
+ char: "🫲",
+ key: "leftwards_hand",
+ keywords: ["leftwards_hand", "LEFTWARDS HAND"],
+ category: "people",
+ lib: {
+ name: "LEFTWARDS HAND",
+ unified: "1FAF2",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1faf2.png",
+ sheet_x: 55,
+ sheet_y: 51,
+ short_name: "leftwards_hand",
+ short_names: ["leftwards_hand"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "hand-fingers-open",
+ sort_order: 173,
+ added_in: "14.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1FAF2-1F3FB",
+ non_qualified: null,
+ image: "1faf2-1f3fb.png",
+ sheet_x: 55,
+ sheet_y: 52,
+ added_in: "14.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1FAF2-1F3FC",
+ non_qualified: null,
+ image: "1faf2-1f3fc.png",
+ sheet_x: 55,
+ sheet_y: 53,
+ added_in: "14.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1FAF2-1F3FD",
+ non_qualified: null,
+ image: "1faf2-1f3fd.png",
+ sheet_x: 55,
+ sheet_y: 54,
+ added_in: "14.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1FAF2-1F3FE",
+ non_qualified: null,
+ image: "1faf2-1f3fe.png",
+ sheet_x: 55,
+ sheet_y: 55,
+ added_in: "14.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1FAF2-1F3FF",
+ non_qualified: null,
+ image: "1faf2-1f3ff.png",
+ sheet_x: 55,
+ sheet_y: 56,
+ added_in: "14.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ palm_down_hand: {
+ char: "🫳",
+ key: "palm_down_hand",
+ keywords: ["palm_down_hand", "PALM DOWN HAND"],
+ category: "people",
+ lib: {
+ name: "PALM DOWN HAND",
+ unified: "1FAF3",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1faf3.png",
+ sheet_x: 55,
+ sheet_y: 57,
+ short_name: "palm_down_hand",
+ short_names: ["palm_down_hand"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "hand-fingers-open",
+ sort_order: 174,
+ added_in: "14.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1FAF3-1F3FB",
+ non_qualified: null,
+ image: "1faf3-1f3fb.png",
+ sheet_x: 55,
+ sheet_y: 58,
+ added_in: "14.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1FAF3-1F3FC",
+ non_qualified: null,
+ image: "1faf3-1f3fc.png",
+ sheet_x: 55,
+ sheet_y: 59,
+ added_in: "14.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1FAF3-1F3FD",
+ non_qualified: null,
+ image: "1faf3-1f3fd.png",
+ sheet_x: 55,
+ sheet_y: 60,
+ added_in: "14.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1FAF3-1F3FE",
+ non_qualified: null,
+ image: "1faf3-1f3fe.png",
+ sheet_x: 56,
+ sheet_y: 0,
+ added_in: "14.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1FAF3-1F3FF",
+ non_qualified: null,
+ image: "1faf3-1f3ff.png",
+ sheet_x: 56,
+ sheet_y: 1,
+ added_in: "14.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ palm_up_hand: {
+ char: "🫴",
+ key: "palm_up_hand",
+ keywords: ["palm_up_hand", "PALM UP HAND"],
+ category: "people",
+ lib: {
+ name: "PALM UP HAND",
+ unified: "1FAF4",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1faf4.png",
+ sheet_x: 56,
+ sheet_y: 2,
+ short_name: "palm_up_hand",
+ short_names: ["palm_up_hand"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "hand-fingers-open",
+ sort_order: 175,
+ added_in: "14.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1FAF4-1F3FB",
+ non_qualified: null,
+ image: "1faf4-1f3fb.png",
+ sheet_x: 56,
+ sheet_y: 3,
+ added_in: "14.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1FAF4-1F3FC",
+ non_qualified: null,
+ image: "1faf4-1f3fc.png",
+ sheet_x: 56,
+ sheet_y: 4,
+ added_in: "14.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1FAF4-1F3FD",
+ non_qualified: null,
+ image: "1faf4-1f3fd.png",
+ sheet_x: 56,
+ sheet_y: 5,
+ added_in: "14.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1FAF4-1F3FE",
+ non_qualified: null,
+ image: "1faf4-1f3fe.png",
+ sheet_x: 56,
+ sheet_y: 6,
+ added_in: "14.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1FAF4-1F3FF",
+ non_qualified: null,
+ image: "1faf4-1f3ff.png",
+ sheet_x: 56,
+ sheet_y: 7,
+ added_in: "14.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ leftwards_pushing_hand: {
+ char: "🫷",
+ key: "leftwards_pushing_hand",
+ keywords: ["leftwards_pushing_hand", "LEFTWARDS PUSHING HAND"],
+ category: "people",
+ lib: {
+ name: "LEFTWARDS PUSHING HAND",
+ unified: "1FAF7",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1faf7.png",
+ sheet_x: 56,
+ sheet_y: 20,
+ short_name: "leftwards_pushing_hand",
+ short_names: ["leftwards_pushing_hand"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "hand-fingers-open",
+ sort_order: 176,
+ added_in: "15.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: false,
+ has_img_facebook: false,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1FAF7-1F3FB",
+ non_qualified: null,
+ image: "1faf7-1f3fb.png",
+ sheet_x: 56,
+ sheet_y: 21,
+ added_in: "15.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: false,
+ has_img_facebook: false,
+ },
+ "1F3FC": {
+ unified: "1FAF7-1F3FC",
+ non_qualified: null,
+ image: "1faf7-1f3fc.png",
+ sheet_x: 56,
+ sheet_y: 22,
+ added_in: "15.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: false,
+ has_img_facebook: false,
+ },
+ "1F3FD": {
+ unified: "1FAF7-1F3FD",
+ non_qualified: null,
+ image: "1faf7-1f3fd.png",
+ sheet_x: 56,
+ sheet_y: 23,
+ added_in: "15.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: false,
+ has_img_facebook: false,
+ },
+ "1F3FE": {
+ unified: "1FAF7-1F3FE",
+ non_qualified: null,
+ image: "1faf7-1f3fe.png",
+ sheet_x: 56,
+ sheet_y: 24,
+ added_in: "15.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: false,
+ has_img_facebook: false,
+ },
+ "1F3FF": {
+ unified: "1FAF7-1F3FF",
+ non_qualified: null,
+ image: "1faf7-1f3ff.png",
+ sheet_x: 56,
+ sheet_y: 25,
+ added_in: "15.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: false,
+ has_img_facebook: false,
+ },
+ },
+ },
+ },
+ rightwards_pushing_hand: {
+ char: "🫸",
+ key: "rightwards_pushing_hand",
+ keywords: ["rightwards_pushing_hand", "RIGHTWARDS PUSHING HAND"],
+ category: "people",
+ lib: {
+ name: "RIGHTWARDS PUSHING HAND",
+ unified: "1FAF8",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1faf8.png",
+ sheet_x: 56,
+ sheet_y: 26,
+ short_name: "rightwards_pushing_hand",
+ short_names: ["rightwards_pushing_hand"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "hand-fingers-open",
+ sort_order: 177,
+ added_in: "15.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: false,
+ has_img_facebook: false,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1FAF8-1F3FB",
+ non_qualified: null,
+ image: "1faf8-1f3fb.png",
+ sheet_x: 56,
+ sheet_y: 27,
+ added_in: "15.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: false,
+ has_img_facebook: false,
+ },
+ "1F3FC": {
+ unified: "1FAF8-1F3FC",
+ non_qualified: null,
+ image: "1faf8-1f3fc.png",
+ sheet_x: 56,
+ sheet_y: 28,
+ added_in: "15.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: false,
+ has_img_facebook: false,
+ },
+ "1F3FD": {
+ unified: "1FAF8-1F3FD",
+ non_qualified: null,
+ image: "1faf8-1f3fd.png",
+ sheet_x: 56,
+ sheet_y: 29,
+ added_in: "15.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: false,
+ has_img_facebook: false,
+ },
+ "1F3FE": {
+ unified: "1FAF8-1F3FE",
+ non_qualified: null,
+ image: "1faf8-1f3fe.png",
+ sheet_x: 56,
+ sheet_y: 30,
+ added_in: "15.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: false,
+ has_img_facebook: false,
+ },
+ "1F3FF": {
+ unified: "1FAF8-1F3FF",
+ non_qualified: null,
+ image: "1faf8-1f3ff.png",
+ sheet_x: 56,
+ sheet_y: 31,
+ added_in: "15.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: false,
+ has_img_facebook: false,
+ },
+ },
+ },
+ },
+ ok_hand: {
+ char: "👌",
+ key: "ok_hand",
+ keywords: ["ok_hand", "OK HAND SIGN"],
+ category: "people",
+ lib: {
+ name: "OK HAND SIGN",
+ unified: "1F44C",
+ non_qualified: null,
+ docomo: "E70B",
+ au: "EAD4",
+ softbank: "E420",
+ google: "FEB9F",
+ image: "1f44c.png",
+ sheet_x: 12,
+ sheet_y: 45,
+ short_name: "ok_hand",
+ short_names: ["ok_hand"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "hand-fingers-partial",
+ sort_order: 178,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F44C-1F3FB",
+ non_qualified: null,
+ image: "1f44c-1f3fb.png",
+ sheet_x: 12,
+ sheet_y: 46,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F44C-1F3FC",
+ non_qualified: null,
+ image: "1f44c-1f3fc.png",
+ sheet_x: 12,
+ sheet_y: 47,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F44C-1F3FD",
+ non_qualified: null,
+ image: "1f44c-1f3fd.png",
+ sheet_x: 12,
+ sheet_y: 48,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F44C-1F3FE",
+ non_qualified: null,
+ image: "1f44c-1f3fe.png",
+ sheet_x: 12,
+ sheet_y: 49,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F44C-1F3FF",
+ non_qualified: null,
+ image: "1f44c-1f3ff.png",
+ sheet_x: 12,
+ sheet_y: 50,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ pinched_fingers: {
+ char: "🤌",
+ key: "pinched_fingers",
+ keywords: ["pinched_fingers", "PINCHED FINGERS"],
+ category: "people",
+ lib: {
+ name: "PINCHED FINGERS",
+ unified: "1F90C",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f90c.png",
+ sheet_x: 38,
+ sheet_y: 46,
+ short_name: "pinched_fingers",
+ short_names: ["pinched_fingers"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "hand-fingers-partial",
+ sort_order: 179,
+ added_in: "13.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F90C-1F3FB",
+ non_qualified: null,
+ image: "1f90c-1f3fb.png",
+ sheet_x: 38,
+ sheet_y: 47,
+ added_in: "13.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F90C-1F3FC",
+ non_qualified: null,
+ image: "1f90c-1f3fc.png",
+ sheet_x: 38,
+ sheet_y: 48,
+ added_in: "13.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F90C-1F3FD",
+ non_qualified: null,
+ image: "1f90c-1f3fd.png",
+ sheet_x: 38,
+ sheet_y: 49,
+ added_in: "13.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F90C-1F3FE",
+ non_qualified: null,
+ image: "1f90c-1f3fe.png",
+ sheet_x: 38,
+ sheet_y: 50,
+ added_in: "13.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F90C-1F3FF",
+ non_qualified: null,
+ image: "1f90c-1f3ff.png",
+ sheet_x: 38,
+ sheet_y: 51,
+ added_in: "13.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ pinching_hand: {
+ char: "🤏",
+ key: "pinching_hand",
+ keywords: ["pinching_hand", "PINCHING HAND"],
+ category: "people",
+ lib: {
+ name: "PINCHING HAND",
+ unified: "1F90F",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f90f.png",
+ sheet_x: 38,
+ sheet_y: 54,
+ short_name: "pinching_hand",
+ short_names: ["pinching_hand"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "hand-fingers-partial",
+ sort_order: 180,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F90F-1F3FB",
+ non_qualified: null,
+ image: "1f90f-1f3fb.png",
+ sheet_x: 38,
+ sheet_y: 55,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F90F-1F3FC",
+ non_qualified: null,
+ image: "1f90f-1f3fc.png",
+ sheet_x: 38,
+ sheet_y: 56,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F90F-1F3FD",
+ non_qualified: null,
+ image: "1f90f-1f3fd.png",
+ sheet_x: 38,
+ sheet_y: 57,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F90F-1F3FE",
+ non_qualified: null,
+ image: "1f90f-1f3fe.png",
+ sheet_x: 38,
+ sheet_y: 58,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F90F-1F3FF",
+ non_qualified: null,
+ image: "1f90f-1f3ff.png",
+ sheet_x: 38,
+ sheet_y: 59,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ v: {
+ char: "✌️",
+ key: "v",
+ keywords: ["v", "VICTORY HAND"],
+ category: "people",
+ lib: {
+ name: "VICTORY HAND",
+ unified: "270C-FE0F",
+ non_qualified: "270C",
+ docomo: "E694",
+ au: "E5A6",
+ softbank: "E011",
+ google: "FEB94",
+ image: "270c-fe0f.png",
+ sheet_x: 59,
+ sheet_y: 9,
+ short_name: "v",
+ short_names: ["v"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "hand-fingers-partial",
+ sort_order: 181,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "270C-1F3FB",
+ non_qualified: null,
+ image: "270c-1f3fb.png",
+ sheet_x: 59,
+ sheet_y: 10,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "270C-1F3FC",
+ non_qualified: null,
+ image: "270c-1f3fc.png",
+ sheet_x: 59,
+ sheet_y: 11,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "270C-1F3FD",
+ non_qualified: null,
+ image: "270c-1f3fd.png",
+ sheet_x: 59,
+ sheet_y: 12,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "270C-1F3FE",
+ non_qualified: null,
+ image: "270c-1f3fe.png",
+ sheet_x: 59,
+ sheet_y: 13,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "270C-1F3FF",
+ non_qualified: null,
+ image: "270c-1f3ff.png",
+ sheet_x: 59,
+ sheet_y: 14,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ crossed_fingers: {
+ char: "🤞",
+ key: "crossed_fingers",
+ keywords: [
+ "crossed_fingers",
+ "HAND WITH INDEX AND MIDDLE FINGERS CROSSED",
+ ],
+ category: "people",
+ lib: {
+ name: "HAND WITH INDEX AND MIDDLE FINGERS CROSSED",
+ unified: "1F91E",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f91e.png",
+ sheet_x: 40,
+ sheet_y: 2,
+ short_name: "crossed_fingers",
+ short_names: [
+ "crossed_fingers",
+ "hand_with_index_and_middle_fingers_crossed",
+ ],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "hand-fingers-partial",
+ sort_order: 182,
+ added_in: "3.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F91E-1F3FB",
+ non_qualified: null,
+ image: "1f91e-1f3fb.png",
+ sheet_x: 40,
+ sheet_y: 3,
+ added_in: "3.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F91E-1F3FC",
+ non_qualified: null,
+ image: "1f91e-1f3fc.png",
+ sheet_x: 40,
+ sheet_y: 4,
+ added_in: "3.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F91E-1F3FD",
+ non_qualified: null,
+ image: "1f91e-1f3fd.png",
+ sheet_x: 40,
+ sheet_y: 5,
+ added_in: "3.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F91E-1F3FE",
+ non_qualified: null,
+ image: "1f91e-1f3fe.png",
+ sheet_x: 40,
+ sheet_y: 6,
+ added_in: "3.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F91E-1F3FF",
+ non_qualified: null,
+ image: "1f91e-1f3ff.png",
+ sheet_x: 40,
+ sheet_y: 7,
+ added_in: "3.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ hand_with_index_finger_and_thumb_crossed: {
+ char: "🫰",
+ key: "hand_with_index_finger_and_thumb_crossed",
+ keywords: [
+ "hand_with_index_finger_and_thumb_crossed",
+ "HAND WITH INDEX FINGER AND THUMB CROSSED",
+ ],
+ category: "people",
+ lib: {
+ name: "HAND WITH INDEX FINGER AND THUMB CROSSED",
+ unified: "1FAF0",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1faf0.png",
+ sheet_x: 55,
+ sheet_y: 39,
+ short_name: "hand_with_index_finger_and_thumb_crossed",
+ short_names: ["hand_with_index_finger_and_thumb_crossed"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "hand-fingers-partial",
+ sort_order: 183,
+ added_in: "14.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1FAF0-1F3FB",
+ non_qualified: null,
+ image: "1faf0-1f3fb.png",
+ sheet_x: 55,
+ sheet_y: 40,
+ added_in: "14.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1FAF0-1F3FC",
+ non_qualified: null,
+ image: "1faf0-1f3fc.png",
+ sheet_x: 55,
+ sheet_y: 41,
+ added_in: "14.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1FAF0-1F3FD",
+ non_qualified: null,
+ image: "1faf0-1f3fd.png",
+ sheet_x: 55,
+ sheet_y: 42,
+ added_in: "14.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1FAF0-1F3FE",
+ non_qualified: null,
+ image: "1faf0-1f3fe.png",
+ sheet_x: 55,
+ sheet_y: 43,
+ added_in: "14.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1FAF0-1F3FF",
+ non_qualified: null,
+ image: "1faf0-1f3ff.png",
+ sheet_x: 55,
+ sheet_y: 44,
+ added_in: "14.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ i_love_you_hand_sign: {
+ char: "🤟",
+ key: "i_love_you_hand_sign",
+ keywords: ["i_love_you_hand_sign", "I LOVE YOU HAND SIGN"],
+ category: "people",
+ lib: {
+ name: "I LOVE YOU HAND SIGN",
+ unified: "1F91F",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f91f.png",
+ sheet_x: 40,
+ sheet_y: 8,
+ short_name: "i_love_you_hand_sign",
+ short_names: ["i_love_you_hand_sign"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "hand-fingers-partial",
+ sort_order: 184,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F91F-1F3FB",
+ non_qualified: null,
+ image: "1f91f-1f3fb.png",
+ sheet_x: 40,
+ sheet_y: 9,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F91F-1F3FC",
+ non_qualified: null,
+ image: "1f91f-1f3fc.png",
+ sheet_x: 40,
+ sheet_y: 10,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F91F-1F3FD",
+ non_qualified: null,
+ image: "1f91f-1f3fd.png",
+ sheet_x: 40,
+ sheet_y: 11,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F91F-1F3FE",
+ non_qualified: null,
+ image: "1f91f-1f3fe.png",
+ sheet_x: 40,
+ sheet_y: 12,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F91F-1F3FF",
+ non_qualified: null,
+ image: "1f91f-1f3ff.png",
+ sheet_x: 40,
+ sheet_y: 13,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ the_horns: {
+ char: "🤘",
+ key: "the_horns",
+ keywords: ["the_horns", "SIGN OF THE HORNS"],
+ category: "people",
+ lib: {
+ name: "SIGN OF THE HORNS",
+ unified: "1F918",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f918.png",
+ sheet_x: 39,
+ sheet_y: 7,
+ short_name: "the_horns",
+ short_names: ["the_horns", "sign_of_the_horns"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "hand-fingers-partial",
+ sort_order: 185,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F918-1F3FB",
+ non_qualified: null,
+ image: "1f918-1f3fb.png",
+ sheet_x: 39,
+ sheet_y: 8,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F918-1F3FC",
+ non_qualified: null,
+ image: "1f918-1f3fc.png",
+ sheet_x: 39,
+ sheet_y: 9,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F918-1F3FD",
+ non_qualified: null,
+ image: "1f918-1f3fd.png",
+ sheet_x: 39,
+ sheet_y: 10,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F918-1F3FE",
+ non_qualified: null,
+ image: "1f918-1f3fe.png",
+ sheet_x: 39,
+ sheet_y: 11,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F918-1F3FF",
+ non_qualified: null,
+ image: "1f918-1f3ff.png",
+ sheet_x: 39,
+ sheet_y: 12,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ call_me_hand: {
+ char: "🤙",
+ key: "call_me_hand",
+ keywords: ["call_me_hand", "CALL ME HAND"],
+ category: "people",
+ lib: {
+ name: "CALL ME HAND",
+ unified: "1F919",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f919.png",
+ sheet_x: 39,
+ sheet_y: 13,
+ short_name: "call_me_hand",
+ short_names: ["call_me_hand"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "hand-fingers-partial",
+ sort_order: 186,
+ added_in: "3.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F919-1F3FB",
+ non_qualified: null,
+ image: "1f919-1f3fb.png",
+ sheet_x: 39,
+ sheet_y: 14,
+ added_in: "3.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F919-1F3FC",
+ non_qualified: null,
+ image: "1f919-1f3fc.png",
+ sheet_x: 39,
+ sheet_y: 15,
+ added_in: "3.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F919-1F3FD",
+ non_qualified: null,
+ image: "1f919-1f3fd.png",
+ sheet_x: 39,
+ sheet_y: 16,
+ added_in: "3.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F919-1F3FE",
+ non_qualified: null,
+ image: "1f919-1f3fe.png",
+ sheet_x: 39,
+ sheet_y: 17,
+ added_in: "3.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F919-1F3FF",
+ non_qualified: null,
+ image: "1f919-1f3ff.png",
+ sheet_x: 39,
+ sheet_y: 18,
+ added_in: "3.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ point_left: {
+ char: "👈",
+ key: "point_left",
+ keywords: ["point_left", "WHITE LEFT POINTING BACKHAND INDEX"],
+ category: "people",
+ lib: {
+ name: "WHITE LEFT POINTING BACKHAND INDEX",
+ unified: "1F448",
+ non_qualified: null,
+ docomo: null,
+ au: "E4FF",
+ softbank: "E230",
+ google: "FEB9B",
+ image: "1f448.png",
+ sheet_x: 12,
+ sheet_y: 21,
+ short_name: "point_left",
+ short_names: ["point_left"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "hand-single-finger",
+ sort_order: 187,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F448-1F3FB",
+ non_qualified: null,
+ image: "1f448-1f3fb.png",
+ sheet_x: 12,
+ sheet_y: 22,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F448-1F3FC",
+ non_qualified: null,
+ image: "1f448-1f3fc.png",
+ sheet_x: 12,
+ sheet_y: 23,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F448-1F3FD",
+ non_qualified: null,
+ image: "1f448-1f3fd.png",
+ sheet_x: 12,
+ sheet_y: 24,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F448-1F3FE",
+ non_qualified: null,
+ image: "1f448-1f3fe.png",
+ sheet_x: 12,
+ sheet_y: 25,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F448-1F3FF",
+ non_qualified: null,
+ image: "1f448-1f3ff.png",
+ sheet_x: 12,
+ sheet_y: 26,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ point_right: {
+ char: "👉",
+ key: "point_right",
+ keywords: ["point_right", "WHITE RIGHT POINTING BACKHAND INDEX"],
+ category: "people",
+ lib: {
+ name: "WHITE RIGHT POINTING BACKHAND INDEX",
+ unified: "1F449",
+ non_qualified: null,
+ docomo: null,
+ au: "E500",
+ softbank: "E231",
+ google: "FEB9C",
+ image: "1f449.png",
+ sheet_x: 12,
+ sheet_y: 27,
+ short_name: "point_right",
+ short_names: ["point_right"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "hand-single-finger",
+ sort_order: 188,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F449-1F3FB",
+ non_qualified: null,
+ image: "1f449-1f3fb.png",
+ sheet_x: 12,
+ sheet_y: 28,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F449-1F3FC",
+ non_qualified: null,
+ image: "1f449-1f3fc.png",
+ sheet_x: 12,
+ sheet_y: 29,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F449-1F3FD",
+ non_qualified: null,
+ image: "1f449-1f3fd.png",
+ sheet_x: 12,
+ sheet_y: 30,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F449-1F3FE",
+ non_qualified: null,
+ image: "1f449-1f3fe.png",
+ sheet_x: 12,
+ sheet_y: 31,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F449-1F3FF",
+ non_qualified: null,
+ image: "1f449-1f3ff.png",
+ sheet_x: 12,
+ sheet_y: 32,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ point_up_2: {
+ char: "👆",
+ key: "point_up_2",
+ keywords: ["point_up_2", "WHITE UP POINTING BACKHAND INDEX"],
+ category: "people",
+ lib: {
+ name: "WHITE UP POINTING BACKHAND INDEX",
+ unified: "1F446",
+ non_qualified: null,
+ docomo: null,
+ au: "EA8D",
+ softbank: "E22E",
+ google: "FEB99",
+ image: "1f446.png",
+ sheet_x: 12,
+ sheet_y: 9,
+ short_name: "point_up_2",
+ short_names: ["point_up_2"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "hand-single-finger",
+ sort_order: 189,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F446-1F3FB",
+ non_qualified: null,
+ image: "1f446-1f3fb.png",
+ sheet_x: 12,
+ sheet_y: 10,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F446-1F3FC",
+ non_qualified: null,
+ image: "1f446-1f3fc.png",
+ sheet_x: 12,
+ sheet_y: 11,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F446-1F3FD",
+ non_qualified: null,
+ image: "1f446-1f3fd.png",
+ sheet_x: 12,
+ sheet_y: 12,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F446-1F3FE",
+ non_qualified: null,
+ image: "1f446-1f3fe.png",
+ sheet_x: 12,
+ sheet_y: 13,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F446-1F3FF",
+ non_qualified: null,
+ image: "1f446-1f3ff.png",
+ sheet_x: 12,
+ sheet_y: 14,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ middle_finger: {
+ char: "🖕",
+ key: "middle_finger",
+ keywords: ["middle_finger", "REVERSED HAND WITH MIDDLE FINGER EXTENDED"],
+ category: "people",
+ lib: {
+ name: "REVERSED HAND WITH MIDDLE FINGER EXTENDED",
+ unified: "1F595",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f595.png",
+ sheet_x: 31,
+ sheet_y: 44,
+ short_name: "middle_finger",
+ short_names: [
+ "middle_finger",
+ "reversed_hand_with_middle_finger_extended",
+ ],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "hand-single-finger",
+ sort_order: 190,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F595-1F3FB",
+ non_qualified: null,
+ image: "1f595-1f3fb.png",
+ sheet_x: 31,
+ sheet_y: 45,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F595-1F3FC",
+ non_qualified: null,
+ image: "1f595-1f3fc.png",
+ sheet_x: 31,
+ sheet_y: 46,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F595-1F3FD",
+ non_qualified: null,
+ image: "1f595-1f3fd.png",
+ sheet_x: 31,
+ sheet_y: 47,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F595-1F3FE",
+ non_qualified: null,
+ image: "1f595-1f3fe.png",
+ sheet_x: 31,
+ sheet_y: 48,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F595-1F3FF",
+ non_qualified: null,
+ image: "1f595-1f3ff.png",
+ sheet_x: 31,
+ sheet_y: 49,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ point_down: {
+ char: "👇",
+ key: "point_down",
+ keywords: ["point_down", "WHITE DOWN POINTING BACKHAND INDEX"],
+ category: "people",
+ lib: {
+ name: "WHITE DOWN POINTING BACKHAND INDEX",
+ unified: "1F447",
+ non_qualified: null,
+ docomo: null,
+ au: "EA8E",
+ softbank: "E22F",
+ google: "FEB9A",
+ image: "1f447.png",
+ sheet_x: 12,
+ sheet_y: 15,
+ short_name: "point_down",
+ short_names: ["point_down"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "hand-single-finger",
+ sort_order: 191,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F447-1F3FB",
+ non_qualified: null,
+ image: "1f447-1f3fb.png",
+ sheet_x: 12,
+ sheet_y: 16,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F447-1F3FC",
+ non_qualified: null,
+ image: "1f447-1f3fc.png",
+ sheet_x: 12,
+ sheet_y: 17,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F447-1F3FD",
+ non_qualified: null,
+ image: "1f447-1f3fd.png",
+ sheet_x: 12,
+ sheet_y: 18,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F447-1F3FE",
+ non_qualified: null,
+ image: "1f447-1f3fe.png",
+ sheet_x: 12,
+ sheet_y: 19,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F447-1F3FF",
+ non_qualified: null,
+ image: "1f447-1f3ff.png",
+ sheet_x: 12,
+ sheet_y: 20,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ point_up: {
+ char: "☝️",
+ key: "point_up",
+ keywords: ["point_up", "WHITE UP POINTING INDEX"],
+ category: "people",
+ lib: {
+ name: "WHITE UP POINTING INDEX",
+ unified: "261D-FE0F",
+ non_qualified: "261D",
+ docomo: null,
+ au: "E4F6",
+ softbank: "E00F",
+ google: "FEB98",
+ image: "261d-fe0f.png",
+ sheet_x: 57,
+ sheet_y: 20,
+ short_name: "point_up",
+ short_names: ["point_up"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "hand-single-finger",
+ sort_order: 192,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "261D-1F3FB",
+ non_qualified: null,
+ image: "261d-1f3fb.png",
+ sheet_x: 57,
+ sheet_y: 21,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "261D-1F3FC",
+ non_qualified: null,
+ image: "261d-1f3fc.png",
+ sheet_x: 57,
+ sheet_y: 22,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "261D-1F3FD",
+ non_qualified: null,
+ image: "261d-1f3fd.png",
+ sheet_x: 57,
+ sheet_y: 23,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "261D-1F3FE",
+ non_qualified: null,
+ image: "261d-1f3fe.png",
+ sheet_x: 57,
+ sheet_y: 24,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "261D-1F3FF",
+ non_qualified: null,
+ image: "261d-1f3ff.png",
+ sheet_x: 57,
+ sheet_y: 25,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ index_pointing_at_the_viewer: {
+ char: "🫵",
+ key: "index_pointing_at_the_viewer",
+ keywords: [
+ "index_pointing_at_the_viewer",
+ "INDEX POINTING AT THE VIEWER",
+ ],
+ category: "people",
+ lib: {
+ name: "INDEX POINTING AT THE VIEWER",
+ unified: "1FAF5",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1faf5.png",
+ sheet_x: 56,
+ sheet_y: 8,
+ short_name: "index_pointing_at_the_viewer",
+ short_names: ["index_pointing_at_the_viewer"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "hand-single-finger",
+ sort_order: 193,
+ added_in: "14.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1FAF5-1F3FB",
+ non_qualified: null,
+ image: "1faf5-1f3fb.png",
+ sheet_x: 56,
+ sheet_y: 9,
+ added_in: "14.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1FAF5-1F3FC",
+ non_qualified: null,
+ image: "1faf5-1f3fc.png",
+ sheet_x: 56,
+ sheet_y: 10,
+ added_in: "14.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1FAF5-1F3FD",
+ non_qualified: null,
+ image: "1faf5-1f3fd.png",
+ sheet_x: 56,
+ sheet_y: 11,
+ added_in: "14.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1FAF5-1F3FE",
+ non_qualified: null,
+ image: "1faf5-1f3fe.png",
+ sheet_x: 56,
+ sheet_y: 12,
+ added_in: "14.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1FAF5-1F3FF",
+ non_qualified: null,
+ image: "1faf5-1f3ff.png",
+ sheet_x: 56,
+ sheet_y: 13,
+ added_in: "14.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ "+1": {
+ char: "👍",
+ key: "+1",
+ keywords: ["+1", "THUMBS UP SIGN"],
+ category: "people",
+ lib: {
+ name: "THUMBS UP SIGN",
+ unified: "1F44D",
+ non_qualified: null,
+ docomo: "E727",
+ au: "E4F9",
+ softbank: "E00E",
+ google: "FEB97",
+ image: "1f44d.png",
+ sheet_x: 12,
+ sheet_y: 51,
+ short_name: "+1",
+ short_names: ["+1", "thumbsup"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "hand-fingers-closed",
+ sort_order: 194,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F44D-1F3FB",
+ non_qualified: null,
+ image: "1f44d-1f3fb.png",
+ sheet_x: 12,
+ sheet_y: 52,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F44D-1F3FC",
+ non_qualified: null,
+ image: "1f44d-1f3fc.png",
+ sheet_x: 12,
+ sheet_y: 53,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F44D-1F3FD",
+ non_qualified: null,
+ image: "1f44d-1f3fd.png",
+ sheet_x: 12,
+ sheet_y: 54,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F44D-1F3FE",
+ non_qualified: null,
+ image: "1f44d-1f3fe.png",
+ sheet_x: 12,
+ sheet_y: 55,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F44D-1F3FF",
+ non_qualified: null,
+ image: "1f44d-1f3ff.png",
+ sheet_x: 12,
+ sheet_y: 56,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ "-1": {
+ char: "👎",
+ key: "-1",
+ keywords: ["-1", "THUMBS DOWN SIGN"],
+ category: "people",
+ lib: {
+ name: "THUMBS DOWN SIGN",
+ unified: "1F44E",
+ non_qualified: null,
+ docomo: "E700",
+ au: "EAD5",
+ softbank: "E421",
+ google: "FEBA0",
+ image: "1f44e.png",
+ sheet_x: 12,
+ sheet_y: 57,
+ short_name: "-1",
+ short_names: ["-1", "thumbsdown"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "hand-fingers-closed",
+ sort_order: 195,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F44E-1F3FB",
+ non_qualified: null,
+ image: "1f44e-1f3fb.png",
+ sheet_x: 12,
+ sheet_y: 58,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F44E-1F3FC",
+ non_qualified: null,
+ image: "1f44e-1f3fc.png",
+ sheet_x: 12,
+ sheet_y: 59,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F44E-1F3FD",
+ non_qualified: null,
+ image: "1f44e-1f3fd.png",
+ sheet_x: 12,
+ sheet_y: 60,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F44E-1F3FE",
+ non_qualified: null,
+ image: "1f44e-1f3fe.png",
+ sheet_x: 13,
+ sheet_y: 0,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F44E-1F3FF",
+ non_qualified: null,
+ image: "1f44e-1f3ff.png",
+ sheet_x: 13,
+ sheet_y: 1,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ fist: {
+ char: "✊",
+ key: "fist",
+ keywords: ["fist", "RAISED FIST"],
+ category: "people",
+ lib: {
+ name: "RAISED FIST",
+ unified: "270A",
+ non_qualified: null,
+ docomo: "E693",
+ au: "EB83",
+ softbank: "E010",
+ google: "FEB93",
+ image: "270a.png",
+ sheet_x: 58,
+ sheet_y: 58,
+ short_name: "fist",
+ short_names: ["fist"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "hand-fingers-closed",
+ sort_order: 196,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "270A-1F3FB",
+ non_qualified: null,
+ image: "270a-1f3fb.png",
+ sheet_x: 58,
+ sheet_y: 59,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "270A-1F3FC",
+ non_qualified: null,
+ image: "270a-1f3fc.png",
+ sheet_x: 58,
+ sheet_y: 60,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "270A-1F3FD",
+ non_qualified: null,
+ image: "270a-1f3fd.png",
+ sheet_x: 59,
+ sheet_y: 0,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "270A-1F3FE",
+ non_qualified: null,
+ image: "270a-1f3fe.png",
+ sheet_x: 59,
+ sheet_y: 1,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "270A-1F3FF",
+ non_qualified: null,
+ image: "270a-1f3ff.png",
+ sheet_x: 59,
+ sheet_y: 2,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ facepunch: {
+ char: "👊",
+ key: "facepunch",
+ keywords: ["facepunch", "FISTED HAND SIGN"],
+ category: "people",
+ lib: {
+ name: "FISTED HAND SIGN",
+ unified: "1F44A",
+ non_qualified: null,
+ docomo: "E6FD",
+ au: "E4F3",
+ softbank: "E00D",
+ google: "FEB96",
+ image: "1f44a.png",
+ sheet_x: 12,
+ sheet_y: 33,
+ short_name: "facepunch",
+ short_names: ["facepunch", "punch"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "hand-fingers-closed",
+ sort_order: 197,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F44A-1F3FB",
+ non_qualified: null,
+ image: "1f44a-1f3fb.png",
+ sheet_x: 12,
+ sheet_y: 34,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F44A-1F3FC",
+ non_qualified: null,
+ image: "1f44a-1f3fc.png",
+ sheet_x: 12,
+ sheet_y: 35,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F44A-1F3FD",
+ non_qualified: null,
+ image: "1f44a-1f3fd.png",
+ sheet_x: 12,
+ sheet_y: 36,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F44A-1F3FE",
+ non_qualified: null,
+ image: "1f44a-1f3fe.png",
+ sheet_x: 12,
+ sheet_y: 37,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F44A-1F3FF",
+ non_qualified: null,
+ image: "1f44a-1f3ff.png",
+ sheet_x: 12,
+ sheet_y: 38,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ "left-facing_fist": {
+ char: "🤛",
+ key: "left-facing_fist",
+ keywords: ["left-facing_fist", "LEFT-FACING FIST"],
+ category: "people",
+ lib: {
+ name: "LEFT-FACING FIST",
+ unified: "1F91B",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f91b.png",
+ sheet_x: 39,
+ sheet_y: 25,
+ short_name: "left-facing_fist",
+ short_names: ["left-facing_fist"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "hand-fingers-closed",
+ sort_order: 198,
+ added_in: "3.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F91B-1F3FB",
+ non_qualified: null,
+ image: "1f91b-1f3fb.png",
+ sheet_x: 39,
+ sheet_y: 26,
+ added_in: "3.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F91B-1F3FC",
+ non_qualified: null,
+ image: "1f91b-1f3fc.png",
+ sheet_x: 39,
+ sheet_y: 27,
+ added_in: "3.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F91B-1F3FD",
+ non_qualified: null,
+ image: "1f91b-1f3fd.png",
+ sheet_x: 39,
+ sheet_y: 28,
+ added_in: "3.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F91B-1F3FE",
+ non_qualified: null,
+ image: "1f91b-1f3fe.png",
+ sheet_x: 39,
+ sheet_y: 29,
+ added_in: "3.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F91B-1F3FF",
+ non_qualified: null,
+ image: "1f91b-1f3ff.png",
+ sheet_x: 39,
+ sheet_y: 30,
+ added_in: "3.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ "right-facing_fist": {
+ char: "🤜",
+ key: "right-facing_fist",
+ keywords: ["right-facing_fist", "RIGHT-FACING FIST"],
+ category: "people",
+ lib: {
+ name: "RIGHT-FACING FIST",
+ unified: "1F91C",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f91c.png",
+ sheet_x: 39,
+ sheet_y: 31,
+ short_name: "right-facing_fist",
+ short_names: ["right-facing_fist"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "hand-fingers-closed",
+ sort_order: 199,
+ added_in: "3.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F91C-1F3FB",
+ non_qualified: null,
+ image: "1f91c-1f3fb.png",
+ sheet_x: 39,
+ sheet_y: 32,
+ added_in: "3.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F91C-1F3FC",
+ non_qualified: null,
+ image: "1f91c-1f3fc.png",
+ sheet_x: 39,
+ sheet_y: 33,
+ added_in: "3.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F91C-1F3FD",
+ non_qualified: null,
+ image: "1f91c-1f3fd.png",
+ sheet_x: 39,
+ sheet_y: 34,
+ added_in: "3.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F91C-1F3FE",
+ non_qualified: null,
+ image: "1f91c-1f3fe.png",
+ sheet_x: 39,
+ sheet_y: 35,
+ added_in: "3.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F91C-1F3FF",
+ non_qualified: null,
+ image: "1f91c-1f3ff.png",
+ sheet_x: 39,
+ sheet_y: 36,
+ added_in: "3.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ clap: {
+ char: "👏",
+ key: "clap",
+ keywords: ["clap", "CLAPPING HANDS SIGN"],
+ category: "people",
+ lib: {
+ name: "CLAPPING HANDS SIGN",
+ unified: "1F44F",
+ non_qualified: null,
+ docomo: null,
+ au: "EAD3",
+ softbank: "E41F",
+ google: "FEB9E",
+ image: "1f44f.png",
+ sheet_x: 13,
+ sheet_y: 2,
+ short_name: "clap",
+ short_names: ["clap"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "hands",
+ sort_order: 200,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F44F-1F3FB",
+ non_qualified: null,
+ image: "1f44f-1f3fb.png",
+ sheet_x: 13,
+ sheet_y: 3,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F44F-1F3FC",
+ non_qualified: null,
+ image: "1f44f-1f3fc.png",
+ sheet_x: 13,
+ sheet_y: 4,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F44F-1F3FD",
+ non_qualified: null,
+ image: "1f44f-1f3fd.png",
+ sheet_x: 13,
+ sheet_y: 5,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F44F-1F3FE",
+ non_qualified: null,
+ image: "1f44f-1f3fe.png",
+ sheet_x: 13,
+ sheet_y: 6,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F44F-1F3FF",
+ non_qualified: null,
+ image: "1f44f-1f3ff.png",
+ sheet_x: 13,
+ sheet_y: 7,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ raised_hands: {
+ char: "🙌",
+ key: "raised_hands",
+ keywords: ["raised_hands", "PERSON RAISING BOTH HANDS IN CELEBRATION"],
+ category: "people",
+ lib: {
+ name: "PERSON RAISING BOTH HANDS IN CELEBRATION",
+ unified: "1F64C",
+ non_qualified: null,
+ docomo: null,
+ au: "EB86",
+ softbank: "E427",
+ google: "FE358",
+ image: "1f64c.png",
+ sheet_x: 34,
+ sheet_y: 46,
+ short_name: "raised_hands",
+ short_names: ["raised_hands"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "hands",
+ sort_order: 201,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F64C-1F3FB",
+ non_qualified: null,
+ image: "1f64c-1f3fb.png",
+ sheet_x: 34,
+ sheet_y: 47,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F64C-1F3FC",
+ non_qualified: null,
+ image: "1f64c-1f3fc.png",
+ sheet_x: 34,
+ sheet_y: 48,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F64C-1F3FD",
+ non_qualified: null,
+ image: "1f64c-1f3fd.png",
+ sheet_x: 34,
+ sheet_y: 49,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F64C-1F3FE",
+ non_qualified: null,
+ image: "1f64c-1f3fe.png",
+ sheet_x: 34,
+ sheet_y: 50,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F64C-1F3FF",
+ non_qualified: null,
+ image: "1f64c-1f3ff.png",
+ sheet_x: 34,
+ sheet_y: 51,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ heart_hands: {
+ char: "🫶",
+ key: "heart_hands",
+ keywords: ["heart_hands", "HEART HANDS"],
+ category: "people",
+ lib: {
+ name: "HEART HANDS",
+ unified: "1FAF6",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1faf6.png",
+ sheet_x: 56,
+ sheet_y: 14,
+ short_name: "heart_hands",
+ short_names: ["heart_hands"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "hands",
+ sort_order: 202,
+ added_in: "14.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1FAF6-1F3FB",
+ non_qualified: null,
+ image: "1faf6-1f3fb.png",
+ sheet_x: 56,
+ sheet_y: 15,
+ added_in: "14.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1FAF6-1F3FC",
+ non_qualified: null,
+ image: "1faf6-1f3fc.png",
+ sheet_x: 56,
+ sheet_y: 16,
+ added_in: "14.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1FAF6-1F3FD",
+ non_qualified: null,
+ image: "1faf6-1f3fd.png",
+ sheet_x: 56,
+ sheet_y: 17,
+ added_in: "14.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1FAF6-1F3FE",
+ non_qualified: null,
+ image: "1faf6-1f3fe.png",
+ sheet_x: 56,
+ sheet_y: 18,
+ added_in: "14.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1FAF6-1F3FF",
+ non_qualified: null,
+ image: "1faf6-1f3ff.png",
+ sheet_x: 56,
+ sheet_y: 19,
+ added_in: "14.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ open_hands: {
+ char: "👐",
+ key: "open_hands",
+ keywords: ["open_hands", "OPEN HANDS SIGN"],
+ category: "people",
+ lib: {
+ name: "OPEN HANDS SIGN",
+ unified: "1F450",
+ non_qualified: null,
+ docomo: "E695",
+ au: "EAD6",
+ softbank: "E422",
+ google: "FEBA1",
+ image: "1f450.png",
+ sheet_x: 13,
+ sheet_y: 8,
+ short_name: "open_hands",
+ short_names: ["open_hands"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "hands",
+ sort_order: 203,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F450-1F3FB",
+ non_qualified: null,
+ image: "1f450-1f3fb.png",
+ sheet_x: 13,
+ sheet_y: 9,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F450-1F3FC",
+ non_qualified: null,
+ image: "1f450-1f3fc.png",
+ sheet_x: 13,
+ sheet_y: 10,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F450-1F3FD",
+ non_qualified: null,
+ image: "1f450-1f3fd.png",
+ sheet_x: 13,
+ sheet_y: 11,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F450-1F3FE",
+ non_qualified: null,
+ image: "1f450-1f3fe.png",
+ sheet_x: 13,
+ sheet_y: 12,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F450-1F3FF",
+ non_qualified: null,
+ image: "1f450-1f3ff.png",
+ sheet_x: 13,
+ sheet_y: 13,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ palms_up_together: {
+ char: "🤲",
+ key: "palms_up_together",
+ keywords: ["palms_up_together", "PALMS UP TOGETHER"],
+ category: "people",
+ lib: {
+ name: "PALMS UP TOGETHER",
+ unified: "1F932",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f932.png",
+ sheet_x: 40,
+ sheet_y: 59,
+ short_name: "palms_up_together",
+ short_names: ["palms_up_together"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "hands",
+ sort_order: 204,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F932-1F3FB",
+ non_qualified: null,
+ image: "1f932-1f3fb.png",
+ sheet_x: 40,
+ sheet_y: 60,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F932-1F3FC",
+ non_qualified: null,
+ image: "1f932-1f3fc.png",
+ sheet_x: 41,
+ sheet_y: 0,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F932-1F3FD",
+ non_qualified: null,
+ image: "1f932-1f3fd.png",
+ sheet_x: 41,
+ sheet_y: 1,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F932-1F3FE",
+ non_qualified: null,
+ image: "1f932-1f3fe.png",
+ sheet_x: 41,
+ sheet_y: 2,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F932-1F3FF",
+ non_qualified: null,
+ image: "1f932-1f3ff.png",
+ sheet_x: 41,
+ sheet_y: 3,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ handshake: {
+ char: "🤝",
+ key: "handshake",
+ keywords: ["handshake", "HANDSHAKE"],
+ category: "people",
+ lib: {
+ name: "HANDSHAKE",
+ unified: "1F91D",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f91d.png",
+ sheet_x: 39,
+ sheet_y: 37,
+ short_name: "handshake",
+ short_names: ["handshake"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "hands",
+ sort_order: 205,
+ added_in: "3.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F91D-1F3FB",
+ non_qualified: null,
+ image: "1f91d-1f3fb.png",
+ sheet_x: 39,
+ sheet_y: 38,
+ added_in: "14.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F91D-1F3FC",
+ non_qualified: null,
+ image: "1f91d-1f3fc.png",
+ sheet_x: 39,
+ sheet_y: 39,
+ added_in: "14.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F91D-1F3FD",
+ non_qualified: null,
+ image: "1f91d-1f3fd.png",
+ sheet_x: 39,
+ sheet_y: 40,
+ added_in: "14.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F91D-1F3FE",
+ non_qualified: null,
+ image: "1f91d-1f3fe.png",
+ sheet_x: 39,
+ sheet_y: 41,
+ added_in: "14.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F91D-1F3FF",
+ non_qualified: null,
+ image: "1f91d-1f3ff.png",
+ sheet_x: 39,
+ sheet_y: 42,
+ added_in: "14.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FB-1F3FC": {
+ unified: "1FAF1-1F3FB-200D-1FAF2-1F3FC",
+ non_qualified: null,
+ image: "1faf1-1f3fb-200d-1faf2-1f3fc.png",
+ sheet_x: 39,
+ sheet_y: 43,
+ added_in: "14.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FB-1F3FD": {
+ unified: "1FAF1-1F3FB-200D-1FAF2-1F3FD",
+ non_qualified: null,
+ image: "1faf1-1f3fb-200d-1faf2-1f3fd.png",
+ sheet_x: 39,
+ sheet_y: 44,
+ added_in: "14.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FB-1F3FE": {
+ unified: "1FAF1-1F3FB-200D-1FAF2-1F3FE",
+ non_qualified: null,
+ image: "1faf1-1f3fb-200d-1faf2-1f3fe.png",
+ sheet_x: 39,
+ sheet_y: 45,
+ added_in: "14.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FB-1F3FF": {
+ unified: "1FAF1-1F3FB-200D-1FAF2-1F3FF",
+ non_qualified: null,
+ image: "1faf1-1f3fb-200d-1faf2-1f3ff.png",
+ sheet_x: 39,
+ sheet_y: 46,
+ added_in: "14.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC-1F3FB": {
+ unified: "1FAF1-1F3FC-200D-1FAF2-1F3FB",
+ non_qualified: null,
+ image: "1faf1-1f3fc-200d-1faf2-1f3fb.png",
+ sheet_x: 39,
+ sheet_y: 47,
+ added_in: "14.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC-1F3FD": {
+ unified: "1FAF1-1F3FC-200D-1FAF2-1F3FD",
+ non_qualified: null,
+ image: "1faf1-1f3fc-200d-1faf2-1f3fd.png",
+ sheet_x: 39,
+ sheet_y: 48,
+ added_in: "14.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC-1F3FE": {
+ unified: "1FAF1-1F3FC-200D-1FAF2-1F3FE",
+ non_qualified: null,
+ image: "1faf1-1f3fc-200d-1faf2-1f3fe.png",
+ sheet_x: 39,
+ sheet_y: 49,
+ added_in: "14.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC-1F3FF": {
+ unified: "1FAF1-1F3FC-200D-1FAF2-1F3FF",
+ non_qualified: null,
+ image: "1faf1-1f3fc-200d-1faf2-1f3ff.png",
+ sheet_x: 39,
+ sheet_y: 50,
+ added_in: "14.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD-1F3FB": {
+ unified: "1FAF1-1F3FD-200D-1FAF2-1F3FB",
+ non_qualified: null,
+ image: "1faf1-1f3fd-200d-1faf2-1f3fb.png",
+ sheet_x: 39,
+ sheet_y: 51,
+ added_in: "14.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD-1F3FC": {
+ unified: "1FAF1-1F3FD-200D-1FAF2-1F3FC",
+ non_qualified: null,
+ image: "1faf1-1f3fd-200d-1faf2-1f3fc.png",
+ sheet_x: 39,
+ sheet_y: 52,
+ added_in: "14.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD-1F3FE": {
+ unified: "1FAF1-1F3FD-200D-1FAF2-1F3FE",
+ non_qualified: null,
+ image: "1faf1-1f3fd-200d-1faf2-1f3fe.png",
+ sheet_x: 39,
+ sheet_y: 53,
+ added_in: "14.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD-1F3FF": {
+ unified: "1FAF1-1F3FD-200D-1FAF2-1F3FF",
+ non_qualified: null,
+ image: "1faf1-1f3fd-200d-1faf2-1f3ff.png",
+ sheet_x: 39,
+ sheet_y: 54,
+ added_in: "14.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE-1F3FB": {
+ unified: "1FAF1-1F3FE-200D-1FAF2-1F3FB",
+ non_qualified: null,
+ image: "1faf1-1f3fe-200d-1faf2-1f3fb.png",
+ sheet_x: 39,
+ sheet_y: 55,
+ added_in: "14.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE-1F3FC": {
+ unified: "1FAF1-1F3FE-200D-1FAF2-1F3FC",
+ non_qualified: null,
+ image: "1faf1-1f3fe-200d-1faf2-1f3fc.png",
+ sheet_x: 39,
+ sheet_y: 56,
+ added_in: "14.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE-1F3FD": {
+ unified: "1FAF1-1F3FE-200D-1FAF2-1F3FD",
+ non_qualified: null,
+ image: "1faf1-1f3fe-200d-1faf2-1f3fd.png",
+ sheet_x: 39,
+ sheet_y: 57,
+ added_in: "14.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE-1F3FF": {
+ unified: "1FAF1-1F3FE-200D-1FAF2-1F3FF",
+ non_qualified: null,
+ image: "1faf1-1f3fe-200d-1faf2-1f3ff.png",
+ sheet_x: 39,
+ sheet_y: 58,
+ added_in: "14.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF-1F3FB": {
+ unified: "1FAF1-1F3FF-200D-1FAF2-1F3FB",
+ non_qualified: null,
+ image: "1faf1-1f3ff-200d-1faf2-1f3fb.png",
+ sheet_x: 39,
+ sheet_y: 59,
+ added_in: "14.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF-1F3FC": {
+ unified: "1FAF1-1F3FF-200D-1FAF2-1F3FC",
+ non_qualified: null,
+ image: "1faf1-1f3ff-200d-1faf2-1f3fc.png",
+ sheet_x: 39,
+ sheet_y: 60,
+ added_in: "14.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF-1F3FD": {
+ unified: "1FAF1-1F3FF-200D-1FAF2-1F3FD",
+ non_qualified: null,
+ image: "1faf1-1f3ff-200d-1faf2-1f3fd.png",
+ sheet_x: 40,
+ sheet_y: 0,
+ added_in: "14.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF-1F3FE": {
+ unified: "1FAF1-1F3FF-200D-1FAF2-1F3FE",
+ non_qualified: null,
+ image: "1faf1-1f3ff-200d-1faf2-1f3fe.png",
+ sheet_x: 40,
+ sheet_y: 1,
+ added_in: "14.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ pray: {
+ char: "🙏",
+ key: "pray",
+ keywords: ["pray", "PERSON WITH FOLDED HANDS"],
+ category: "people",
+ lib: {
+ name: "PERSON WITH FOLDED HANDS",
+ unified: "1F64F",
+ non_qualified: null,
+ docomo: null,
+ au: "EAD2",
+ softbank: "E41D",
+ google: "FE35B",
+ image: "1f64f.png",
+ sheet_x: 35,
+ sheet_y: 27,
+ short_name: "pray",
+ short_names: ["pray"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "hands",
+ sort_order: 206,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F64F-1F3FB",
+ non_qualified: null,
+ image: "1f64f-1f3fb.png",
+ sheet_x: 35,
+ sheet_y: 28,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F64F-1F3FC",
+ non_qualified: null,
+ image: "1f64f-1f3fc.png",
+ sheet_x: 35,
+ sheet_y: 29,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F64F-1F3FD",
+ non_qualified: null,
+ image: "1f64f-1f3fd.png",
+ sheet_x: 35,
+ sheet_y: 30,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F64F-1F3FE",
+ non_qualified: null,
+ image: "1f64f-1f3fe.png",
+ sheet_x: 35,
+ sheet_y: 31,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F64F-1F3FF",
+ non_qualified: null,
+ image: "1f64f-1f3ff.png",
+ sheet_x: 35,
+ sheet_y: 32,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ writing_hand: {
+ char: "✍️",
+ key: "writing_hand",
+ keywords: ["writing_hand", "WRITING HAND"],
+ category: "people",
+ lib: {
+ name: "WRITING HAND",
+ unified: "270D-FE0F",
+ non_qualified: "270D",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "270d-fe0f.png",
+ sheet_x: 59,
+ sheet_y: 15,
+ short_name: "writing_hand",
+ short_names: ["writing_hand"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "hand-prop",
+ sort_order: 207,
+ added_in: "0.7",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "270D-1F3FB",
+ non_qualified: null,
+ image: "270d-1f3fb.png",
+ sheet_x: 59,
+ sheet_y: 16,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "270D-1F3FC",
+ non_qualified: null,
+ image: "270d-1f3fc.png",
+ sheet_x: 59,
+ sheet_y: 17,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "270D-1F3FD",
+ non_qualified: null,
+ image: "270d-1f3fd.png",
+ sheet_x: 59,
+ sheet_y: 18,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "270D-1F3FE",
+ non_qualified: null,
+ image: "270d-1f3fe.png",
+ sheet_x: 59,
+ sheet_y: 19,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "270D-1F3FF",
+ non_qualified: null,
+ image: "270d-1f3ff.png",
+ sheet_x: 59,
+ sheet_y: 20,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ nail_care: {
+ char: "💅",
+ key: "nail_care",
+ keywords: ["nail_care", "NAIL POLISH"],
+ category: "people",
+ lib: {
+ name: "NAIL POLISH",
+ unified: "1F485",
+ non_qualified: null,
+ docomo: null,
+ au: "EAA0",
+ softbank: "E31D",
+ google: "FE196",
+ image: "1f485.png",
+ sheet_x: 25,
+ sheet_y: 54,
+ short_name: "nail_care",
+ short_names: ["nail_care"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "hand-prop",
+ sort_order: 208,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F485-1F3FB",
+ non_qualified: null,
+ image: "1f485-1f3fb.png",
+ sheet_x: 25,
+ sheet_y: 55,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F485-1F3FC",
+ non_qualified: null,
+ image: "1f485-1f3fc.png",
+ sheet_x: 25,
+ sheet_y: 56,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F485-1F3FD",
+ non_qualified: null,
+ image: "1f485-1f3fd.png",
+ sheet_x: 25,
+ sheet_y: 57,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F485-1F3FE",
+ non_qualified: null,
+ image: "1f485-1f3fe.png",
+ sheet_x: 25,
+ sheet_y: 58,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F485-1F3FF",
+ non_qualified: null,
+ image: "1f485-1f3ff.png",
+ sheet_x: 25,
+ sheet_y: 59,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ selfie: {
+ char: "🤳",
+ key: "selfie",
+ keywords: ["selfie", "SELFIE"],
+ category: "people",
+ lib: {
+ name: "SELFIE",
+ unified: "1F933",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f933.png",
+ sheet_x: 41,
+ sheet_y: 4,
+ short_name: "selfie",
+ short_names: ["selfie"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "hand-prop",
+ sort_order: 209,
+ added_in: "3.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F933-1F3FB",
+ non_qualified: null,
+ image: "1f933-1f3fb.png",
+ sheet_x: 41,
+ sheet_y: 5,
+ added_in: "3.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F933-1F3FC",
+ non_qualified: null,
+ image: "1f933-1f3fc.png",
+ sheet_x: 41,
+ sheet_y: 6,
+ added_in: "3.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F933-1F3FD",
+ non_qualified: null,
+ image: "1f933-1f3fd.png",
+ sheet_x: 41,
+ sheet_y: 7,
+ added_in: "3.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F933-1F3FE",
+ non_qualified: null,
+ image: "1f933-1f3fe.png",
+ sheet_x: 41,
+ sheet_y: 8,
+ added_in: "3.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F933-1F3FF",
+ non_qualified: null,
+ image: "1f933-1f3ff.png",
+ sheet_x: 41,
+ sheet_y: 9,
+ added_in: "3.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ muscle: {
+ char: "💪",
+ key: "muscle",
+ keywords: ["muscle", "FLEXED BICEPS"],
+ category: "people",
+ lib: {
+ name: "FLEXED BICEPS",
+ unified: "1F4AA",
+ non_qualified: null,
+ docomo: null,
+ au: "E4E9",
+ softbank: "E14C",
+ google: "FEB5E",
+ image: "1f4aa.png",
+ sheet_x: 27,
+ sheet_y: 58,
+ short_name: "muscle",
+ short_names: ["muscle"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "body-parts",
+ sort_order: 210,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F4AA-1F3FB",
+ non_qualified: null,
+ image: "1f4aa-1f3fb.png",
+ sheet_x: 27,
+ sheet_y: 59,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F4AA-1F3FC",
+ non_qualified: null,
+ image: "1f4aa-1f3fc.png",
+ sheet_x: 27,
+ sheet_y: 60,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F4AA-1F3FD",
+ non_qualified: null,
+ image: "1f4aa-1f3fd.png",
+ sheet_x: 28,
+ sheet_y: 0,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F4AA-1F3FE",
+ non_qualified: null,
+ image: "1f4aa-1f3fe.png",
+ sheet_x: 28,
+ sheet_y: 1,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F4AA-1F3FF",
+ non_qualified: null,
+ image: "1f4aa-1f3ff.png",
+ sheet_x: 28,
+ sheet_y: 2,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ mechanical_arm: {
+ char: "🦾",
+ key: "mechanical_arm",
+ keywords: ["mechanical_arm", "MECHANICAL ARM"],
+ category: "people",
+ lib: {
+ name: "MECHANICAL ARM",
+ unified: "1F9BE",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f9be.png",
+ sheet_x: 46,
+ sheet_y: 5,
+ short_name: "mechanical_arm",
+ short_names: ["mechanical_arm"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "body-parts",
+ sort_order: 211,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ mechanical_leg: {
+ char: "🦿",
+ key: "mechanical_leg",
+ keywords: ["mechanical_leg", "MECHANICAL LEG"],
+ category: "people",
+ lib: {
+ name: "MECHANICAL LEG",
+ unified: "1F9BF",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f9bf.png",
+ sheet_x: 46,
+ sheet_y: 6,
+ short_name: "mechanical_leg",
+ short_names: ["mechanical_leg"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "body-parts",
+ sort_order: 212,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ leg: {
+ char: "🦵",
+ key: "leg",
+ keywords: ["leg", "LEG"],
+ category: "people",
+ lib: {
+ name: "LEG",
+ unified: "1F9B5",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f9b5.png",
+ sheet_x: 45,
+ sheet_y: 8,
+ short_name: "leg",
+ short_names: ["leg"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "body-parts",
+ sort_order: 213,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F9B5-1F3FB",
+ non_qualified: null,
+ image: "1f9b5-1f3fb.png",
+ sheet_x: 45,
+ sheet_y: 9,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F9B5-1F3FC",
+ non_qualified: null,
+ image: "1f9b5-1f3fc.png",
+ sheet_x: 45,
+ sheet_y: 10,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F9B5-1F3FD",
+ non_qualified: null,
+ image: "1f9b5-1f3fd.png",
+ sheet_x: 45,
+ sheet_y: 11,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F9B5-1F3FE",
+ non_qualified: null,
+ image: "1f9b5-1f3fe.png",
+ sheet_x: 45,
+ sheet_y: 12,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F9B5-1F3FF",
+ non_qualified: null,
+ image: "1f9b5-1f3ff.png",
+ sheet_x: 45,
+ sheet_y: 13,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ foot: {
+ char: "🦶",
+ key: "foot",
+ keywords: ["foot", "FOOT"],
+ category: "people",
+ lib: {
+ name: "FOOT",
+ unified: "1F9B6",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f9b6.png",
+ sheet_x: 45,
+ sheet_y: 14,
+ short_name: "foot",
+ short_names: ["foot"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "body-parts",
+ sort_order: 214,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F9B6-1F3FB",
+ non_qualified: null,
+ image: "1f9b6-1f3fb.png",
+ sheet_x: 45,
+ sheet_y: 15,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F9B6-1F3FC",
+ non_qualified: null,
+ image: "1f9b6-1f3fc.png",
+ sheet_x: 45,
+ sheet_y: 16,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F9B6-1F3FD",
+ non_qualified: null,
+ image: "1f9b6-1f3fd.png",
+ sheet_x: 45,
+ sheet_y: 17,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F9B6-1F3FE",
+ non_qualified: null,
+ image: "1f9b6-1f3fe.png",
+ sheet_x: 45,
+ sheet_y: 18,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F9B6-1F3FF",
+ non_qualified: null,
+ image: "1f9b6-1f3ff.png",
+ sheet_x: 45,
+ sheet_y: 19,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ ear: {
+ char: "👂",
+ key: "ear",
+ keywords: ["ear", "EAR"],
+ category: "people",
+ lib: {
+ name: "EAR",
+ unified: "1F442",
+ non_qualified: null,
+ docomo: "E692",
+ au: "E5A5",
+ softbank: "E41B",
+ google: "FE191",
+ image: "1f442.png",
+ sheet_x: 11,
+ sheet_y: 56,
+ short_name: "ear",
+ short_names: ["ear"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "body-parts",
+ sort_order: 215,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F442-1F3FB",
+ non_qualified: null,
+ image: "1f442-1f3fb.png",
+ sheet_x: 11,
+ sheet_y: 57,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F442-1F3FC",
+ non_qualified: null,
+ image: "1f442-1f3fc.png",
+ sheet_x: 11,
+ sheet_y: 58,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F442-1F3FD",
+ non_qualified: null,
+ image: "1f442-1f3fd.png",
+ sheet_x: 11,
+ sheet_y: 59,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F442-1F3FE",
+ non_qualified: null,
+ image: "1f442-1f3fe.png",
+ sheet_x: 11,
+ sheet_y: 60,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F442-1F3FF",
+ non_qualified: null,
+ image: "1f442-1f3ff.png",
+ sheet_x: 12,
+ sheet_y: 0,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ ear_with_hearing_aid: {
+ char: "🦻",
+ key: "ear_with_hearing_aid",
+ keywords: ["ear_with_hearing_aid", "EAR WITH HEARING AID"],
+ category: "people",
+ lib: {
+ name: "EAR WITH HEARING AID",
+ unified: "1F9BB",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f9bb.png",
+ sheet_x: 45,
+ sheet_y: 58,
+ short_name: "ear_with_hearing_aid",
+ short_names: ["ear_with_hearing_aid"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "body-parts",
+ sort_order: 216,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F9BB-1F3FB",
+ non_qualified: null,
+ image: "1f9bb-1f3fb.png",
+ sheet_x: 45,
+ sheet_y: 59,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F9BB-1F3FC",
+ non_qualified: null,
+ image: "1f9bb-1f3fc.png",
+ sheet_x: 45,
+ sheet_y: 60,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F9BB-1F3FD",
+ non_qualified: null,
+ image: "1f9bb-1f3fd.png",
+ sheet_x: 46,
+ sheet_y: 0,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F9BB-1F3FE",
+ non_qualified: null,
+ image: "1f9bb-1f3fe.png",
+ sheet_x: 46,
+ sheet_y: 1,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F9BB-1F3FF",
+ non_qualified: null,
+ image: "1f9bb-1f3ff.png",
+ sheet_x: 46,
+ sheet_y: 2,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ nose: {
+ char: "👃",
+ key: "nose",
+ keywords: ["nose", "NOSE"],
+ category: "people",
+ lib: {
+ name: "NOSE",
+ unified: "1F443",
+ non_qualified: null,
+ docomo: null,
+ au: "EAD0",
+ softbank: "E41A",
+ google: "FE192",
+ image: "1f443.png",
+ sheet_x: 12,
+ sheet_y: 1,
+ short_name: "nose",
+ short_names: ["nose"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "body-parts",
+ sort_order: 217,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F443-1F3FB",
+ non_qualified: null,
+ image: "1f443-1f3fb.png",
+ sheet_x: 12,
+ sheet_y: 2,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F443-1F3FC",
+ non_qualified: null,
+ image: "1f443-1f3fc.png",
+ sheet_x: 12,
+ sheet_y: 3,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F443-1F3FD",
+ non_qualified: null,
+ image: "1f443-1f3fd.png",
+ sheet_x: 12,
+ sheet_y: 4,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F443-1F3FE",
+ non_qualified: null,
+ image: "1f443-1f3fe.png",
+ sheet_x: 12,
+ sheet_y: 5,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F443-1F3FF",
+ non_qualified: null,
+ image: "1f443-1f3ff.png",
+ sheet_x: 12,
+ sheet_y: 6,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ brain: {
+ char: "🧠",
+ key: "brain",
+ keywords: ["brain", "BRAIN"],
+ category: "people",
+ lib: {
+ name: "BRAIN",
+ unified: "1F9E0",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f9e0.png",
+ sheet_x: 53,
+ sheet_y: 16,
+ short_name: "brain",
+ short_names: ["brain"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "body-parts",
+ sort_order: 218,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ anatomical_heart: {
+ char: "🫀",
+ key: "anatomical_heart",
+ keywords: ["anatomical_heart", "ANATOMICAL HEART"],
+ category: "people",
+ lib: {
+ name: "ANATOMICAL HEART",
+ unified: "1FAC0",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1fac0.png",
+ sheet_x: 54,
+ sheet_y: 56,
+ short_name: "anatomical_heart",
+ short_names: ["anatomical_heart"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "body-parts",
+ sort_order: 219,
+ added_in: "13.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ lungs: {
+ char: "🫁",
+ key: "lungs",
+ keywords: ["lungs", "LUNGS"],
+ category: "people",
+ lib: {
+ name: "LUNGS",
+ unified: "1FAC1",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1fac1.png",
+ sheet_x: 54,
+ sheet_y: 57,
+ short_name: "lungs",
+ short_names: ["lungs"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "body-parts",
+ sort_order: 220,
+ added_in: "13.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ tooth: {
+ char: "🦷",
+ key: "tooth",
+ keywords: ["tooth", "TOOTH"],
+ category: "people",
+ lib: {
+ name: "TOOTH",
+ unified: "1F9B7",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f9b7.png",
+ sheet_x: 45,
+ sheet_y: 20,
+ short_name: "tooth",
+ short_names: ["tooth"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "body-parts",
+ sort_order: 221,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ bone: {
+ char: "🦴",
+ key: "bone",
+ keywords: ["bone", "BONE"],
+ category: "people",
+ lib: {
+ name: "BONE",
+ unified: "1F9B4",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f9b4.png",
+ sheet_x: 45,
+ sheet_y: 7,
+ short_name: "bone",
+ short_names: ["bone"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "body-parts",
+ sort_order: 222,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ eyes: {
+ char: "👀",
+ key: "eyes",
+ keywords: ["eyes", "EYES"],
+ category: "people",
+ lib: {
+ name: "EYES",
+ unified: "1F440",
+ non_qualified: null,
+ docomo: "E691",
+ au: "E5A4",
+ softbank: "E419",
+ google: "FE190",
+ image: "1f440.png",
+ sheet_x: 11,
+ sheet_y: 53,
+ short_name: "eyes",
+ short_names: ["eyes"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "body-parts",
+ sort_order: 223,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ eye: {
+ char: "👁️",
+ key: "eye",
+ keywords: ["eye", "EYE"],
+ category: "people",
+ lib: {
+ name: "EYE",
+ unified: "1F441-FE0F",
+ non_qualified: "1F441",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f441-fe0f.png",
+ sheet_x: 11,
+ sheet_y: 55,
+ short_name: "eye",
+ short_names: ["eye"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "body-parts",
+ sort_order: 224,
+ added_in: "0.7",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ tongue: {
+ char: "👅",
+ key: "tongue",
+ keywords: ["tongue", "TONGUE"],
+ category: "people",
+ lib: {
+ name: "TONGUE",
+ unified: "1F445",
+ non_qualified: null,
+ docomo: "E728",
+ au: "EB47",
+ softbank: null,
+ google: "FE194",
+ image: "1f445.png",
+ sheet_x: 12,
+ sheet_y: 8,
+ short_name: "tongue",
+ short_names: ["tongue"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "body-parts",
+ sort_order: 225,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ lips: {
+ char: "👄",
+ key: "lips",
+ keywords: ["lips", "MOUTH"],
+ category: "people",
+ lib: {
+ name: "MOUTH",
+ unified: "1F444",
+ non_qualified: null,
+ docomo: "E6F9",
+ au: "EAD1",
+ softbank: "E41C",
+ google: "FE193",
+ image: "1f444.png",
+ sheet_x: 12,
+ sheet_y: 7,
+ short_name: "lips",
+ short_names: ["lips"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "body-parts",
+ sort_order: 226,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ biting_lip: {
+ char: "🫦",
+ key: "biting_lip",
+ keywords: ["biting_lip", "BITING LIP"],
+ category: "people",
+ lib: {
+ name: "BITING LIP",
+ unified: "1FAE6",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1fae6.png",
+ sheet_x: 55,
+ sheet_y: 36,
+ short_name: "biting_lip",
+ short_names: ["biting_lip"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "body-parts",
+ sort_order: 227,
+ added_in: "14.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ baby: {
+ char: "👶",
+ key: "baby",
+ keywords: ["baby", "BABY"],
+ category: "people",
+ lib: {
+ name: "BABY",
+ unified: "1F476",
+ non_qualified: null,
+ docomo: null,
+ au: "EB18",
+ softbank: "E51A",
+ google: "FE1A9",
+ image: "1f476.png",
+ sheet_x: 24,
+ sheet_y: 29,
+ short_name: "baby",
+ short_names: ["baby"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person",
+ sort_order: 228,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F476-1F3FB",
+ non_qualified: null,
+ image: "1f476-1f3fb.png",
+ sheet_x: 24,
+ sheet_y: 30,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F476-1F3FC",
+ non_qualified: null,
+ image: "1f476-1f3fc.png",
+ sheet_x: 24,
+ sheet_y: 31,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F476-1F3FD",
+ non_qualified: null,
+ image: "1f476-1f3fd.png",
+ sheet_x: 24,
+ sheet_y: 32,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F476-1F3FE",
+ non_qualified: null,
+ image: "1f476-1f3fe.png",
+ sheet_x: 24,
+ sheet_y: 33,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F476-1F3FF",
+ non_qualified: null,
+ image: "1f476-1f3ff.png",
+ sheet_x: 24,
+ sheet_y: 34,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ child: {
+ char: "🧒",
+ key: "child",
+ keywords: ["child", "CHILD"],
+ category: "people",
+ lib: {
+ name: "CHILD",
+ unified: "1F9D2",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f9d2.png",
+ sheet_x: 50,
+ sheet_y: 13,
+ short_name: "child",
+ short_names: ["child"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person",
+ sort_order: 229,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F9D2-1F3FB",
+ non_qualified: null,
+ image: "1f9d2-1f3fb.png",
+ sheet_x: 50,
+ sheet_y: 14,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F9D2-1F3FC",
+ non_qualified: null,
+ image: "1f9d2-1f3fc.png",
+ sheet_x: 50,
+ sheet_y: 15,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F9D2-1F3FD",
+ non_qualified: null,
+ image: "1f9d2-1f3fd.png",
+ sheet_x: 50,
+ sheet_y: 16,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F9D2-1F3FE",
+ non_qualified: null,
+ image: "1f9d2-1f3fe.png",
+ sheet_x: 50,
+ sheet_y: 17,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F9D2-1F3FF",
+ non_qualified: null,
+ image: "1f9d2-1f3ff.png",
+ sheet_x: 50,
+ sheet_y: 18,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ boy: {
+ char: "👦",
+ key: "boy",
+ keywords: ["boy", "BOY"],
+ category: "people",
+ lib: {
+ name: "BOY",
+ unified: "1F466",
+ non_qualified: null,
+ docomo: "E6F0",
+ au: "E4FC",
+ softbank: "E001",
+ google: "FE19B",
+ image: "1f466.png",
+ sheet_x: 13,
+ sheet_y: 35,
+ short_name: "boy",
+ short_names: ["boy"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person",
+ sort_order: 230,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F466-1F3FB",
+ non_qualified: null,
+ image: "1f466-1f3fb.png",
+ sheet_x: 13,
+ sheet_y: 36,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F466-1F3FC",
+ non_qualified: null,
+ image: "1f466-1f3fc.png",
+ sheet_x: 13,
+ sheet_y: 37,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F466-1F3FD",
+ non_qualified: null,
+ image: "1f466-1f3fd.png",
+ sheet_x: 13,
+ sheet_y: 38,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F466-1F3FE",
+ non_qualified: null,
+ image: "1f466-1f3fe.png",
+ sheet_x: 13,
+ sheet_y: 39,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F466-1F3FF",
+ non_qualified: null,
+ image: "1f466-1f3ff.png",
+ sheet_x: 13,
+ sheet_y: 40,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ girl: {
+ char: "👧",
+ key: "girl",
+ keywords: ["girl", "GIRL"],
+ category: "people",
+ lib: {
+ name: "GIRL",
+ unified: "1F467",
+ non_qualified: null,
+ docomo: "E6F0",
+ au: "E4FA",
+ softbank: "E002",
+ google: "FE19C",
+ image: "1f467.png",
+ sheet_x: 13,
+ sheet_y: 41,
+ short_name: "girl",
+ short_names: ["girl"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person",
+ sort_order: 231,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F467-1F3FB",
+ non_qualified: null,
+ image: "1f467-1f3fb.png",
+ sheet_x: 13,
+ sheet_y: 42,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F467-1F3FC",
+ non_qualified: null,
+ image: "1f467-1f3fc.png",
+ sheet_x: 13,
+ sheet_y: 43,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F467-1F3FD",
+ non_qualified: null,
+ image: "1f467-1f3fd.png",
+ sheet_x: 13,
+ sheet_y: 44,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F467-1F3FE",
+ non_qualified: null,
+ image: "1f467-1f3fe.png",
+ sheet_x: 13,
+ sheet_y: 45,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F467-1F3FF",
+ non_qualified: null,
+ image: "1f467-1f3ff.png",
+ sheet_x: 13,
+ sheet_y: 46,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ adult: {
+ char: "🧑",
+ key: "adult",
+ keywords: ["adult", "ADULT"],
+ category: "people",
+ lib: {
+ name: "ADULT",
+ unified: "1F9D1",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f9d1.png",
+ sheet_x: 50,
+ sheet_y: 7,
+ short_name: "adult",
+ short_names: ["adult"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person",
+ sort_order: 232,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F9D1-1F3FB",
+ non_qualified: null,
+ image: "1f9d1-1f3fb.png",
+ sheet_x: 50,
+ sheet_y: 8,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F9D1-1F3FC",
+ non_qualified: null,
+ image: "1f9d1-1f3fc.png",
+ sheet_x: 50,
+ sheet_y: 9,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F9D1-1F3FD",
+ non_qualified: null,
+ image: "1f9d1-1f3fd.png",
+ sheet_x: 50,
+ sheet_y: 10,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F9D1-1F3FE",
+ non_qualified: null,
+ image: "1f9d1-1f3fe.png",
+ sheet_x: 50,
+ sheet_y: 11,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F9D1-1F3FF",
+ non_qualified: null,
+ image: "1f9d1-1f3ff.png",
+ sheet_x: 50,
+ sheet_y: 12,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ man: {
+ char: "👨",
+ key: "man",
+ keywords: ["man", "MAN"],
+ category: "people",
+ lib: {
+ name: "MAN",
+ unified: "1F468",
+ non_qualified: null,
+ docomo: "E6F0",
+ au: "E4FC",
+ softbank: "E004",
+ google: "FE19D",
+ image: "1f468.png",
+ sheet_x: 17,
+ sheet_y: 14,
+ short_name: "man",
+ short_names: ["man"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person",
+ sort_order: 234,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F468-1F3FB",
+ non_qualified: null,
+ image: "1f468-1f3fb.png",
+ sheet_x: 17,
+ sheet_y: 15,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F468-1F3FC",
+ non_qualified: null,
+ image: "1f468-1f3fc.png",
+ sheet_x: 17,
+ sheet_y: 16,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F468-1F3FD",
+ non_qualified: null,
+ image: "1f468-1f3fd.png",
+ sheet_x: 17,
+ sheet_y: 17,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F468-1F3FE",
+ non_qualified: null,
+ image: "1f468-1f3fe.png",
+ sheet_x: 17,
+ sheet_y: 18,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F468-1F3FF",
+ non_qualified: null,
+ image: "1f468-1f3ff.png",
+ sheet_x: 17,
+ sheet_y: 19,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ bearded_person: {
+ char: "🧔",
+ key: "bearded_person",
+ keywords: ["bearded_person", "BEARDED PERSON"],
+ category: "people",
+ lib: {
+ name: "BEARDED PERSON",
+ unified: "1F9D4",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f9d4.png",
+ sheet_x: 50,
+ sheet_y: 37,
+ short_name: "bearded_person",
+ short_names: ["bearded_person"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person",
+ sort_order: 235,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F9D4-1F3FB",
+ non_qualified: null,
+ image: "1f9d4-1f3fb.png",
+ sheet_x: 50,
+ sheet_y: 38,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F9D4-1F3FC",
+ non_qualified: null,
+ image: "1f9d4-1f3fc.png",
+ sheet_x: 50,
+ sheet_y: 39,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F9D4-1F3FD",
+ non_qualified: null,
+ image: "1f9d4-1f3fd.png",
+ sheet_x: 50,
+ sheet_y: 40,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F9D4-1F3FE",
+ non_qualified: null,
+ image: "1f9d4-1f3fe.png",
+ sheet_x: 50,
+ sheet_y: 41,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F9D4-1F3FF",
+ non_qualified: null,
+ image: "1f9d4-1f3ff.png",
+ sheet_x: 50,
+ sheet_y: 42,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ man_with_beard: {
+ char: "🧔♂️",
+ key: "man_with_beard",
+ keywords: ["man_with_beard", "MAN: BEARD"],
+ category: "people",
+ lib: {
+ name: "MAN: BEARD",
+ unified: "1F9D4-200D-2642-FE0F",
+ non_qualified: "1F9D4-200D-2642",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f9d4-200d-2642-fe0f.png",
+ sheet_x: 50,
+ sheet_y: 31,
+ short_name: "man_with_beard",
+ short_names: ["man_with_beard"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person",
+ sort_order: 236,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F9D4-1F3FB-200D-2642-FE0F",
+ non_qualified: "1F9D4-1F3FB-200D-2642",
+ image: "1f9d4-1f3fb-200d-2642-fe0f.png",
+ sheet_x: 50,
+ sheet_y: 32,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F9D4-1F3FC-200D-2642-FE0F",
+ non_qualified: "1F9D4-1F3FC-200D-2642",
+ image: "1f9d4-1f3fc-200d-2642-fe0f.png",
+ sheet_x: 50,
+ sheet_y: 33,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F9D4-1F3FD-200D-2642-FE0F",
+ non_qualified: "1F9D4-1F3FD-200D-2642",
+ image: "1f9d4-1f3fd-200d-2642-fe0f.png",
+ sheet_x: 50,
+ sheet_y: 34,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F9D4-1F3FE-200D-2642-FE0F",
+ non_qualified: "1F9D4-1F3FE-200D-2642",
+ image: "1f9d4-1f3fe-200d-2642-fe0f.png",
+ sheet_x: 50,
+ sheet_y: 35,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F9D4-1F3FF-200D-2642-FE0F",
+ non_qualified: "1F9D4-1F3FF-200D-2642",
+ image: "1f9d4-1f3ff-200d-2642-fe0f.png",
+ sheet_x: 50,
+ sheet_y: 36,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ woman_with_beard: {
+ char: "🧔♀️",
+ key: "woman_with_beard",
+ keywords: ["woman_with_beard", "WOMAN: BEARD"],
+ category: "people",
+ lib: {
+ name: "WOMAN: BEARD",
+ unified: "1F9D4-200D-2640-FE0F",
+ non_qualified: "1F9D4-200D-2640",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f9d4-200d-2640-fe0f.png",
+ sheet_x: 50,
+ sheet_y: 25,
+ short_name: "woman_with_beard",
+ short_names: ["woman_with_beard"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person",
+ sort_order: 237,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F9D4-1F3FB-200D-2640-FE0F",
+ non_qualified: "1F9D4-1F3FB-200D-2640",
+ image: "1f9d4-1f3fb-200d-2640-fe0f.png",
+ sheet_x: 50,
+ sheet_y: 26,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F9D4-1F3FC-200D-2640-FE0F",
+ non_qualified: "1F9D4-1F3FC-200D-2640",
+ image: "1f9d4-1f3fc-200d-2640-fe0f.png",
+ sheet_x: 50,
+ sheet_y: 27,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F9D4-1F3FD-200D-2640-FE0F",
+ non_qualified: "1F9D4-1F3FD-200D-2640",
+ image: "1f9d4-1f3fd-200d-2640-fe0f.png",
+ sheet_x: 50,
+ sheet_y: 28,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F9D4-1F3FE-200D-2640-FE0F",
+ non_qualified: "1F9D4-1F3FE-200D-2640",
+ image: "1f9d4-1f3fe-200d-2640-fe0f.png",
+ sheet_x: 50,
+ sheet_y: 29,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F9D4-1F3FF-200D-2640-FE0F",
+ non_qualified: "1F9D4-1F3FF-200D-2640",
+ image: "1f9d4-1f3ff-200d-2640-fe0f.png",
+ sheet_x: 50,
+ sheet_y: 30,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ red_haired_man: {
+ char: "👨🦰",
+ key: "red_haired_man",
+ keywords: ["red_haired_man", "MAN: RED HAIR"],
+ category: "people",
+ lib: {
+ name: "MAN: RED HAIR",
+ unified: "1F468-200D-1F9B0",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f468-200d-1f9b0.png",
+ sheet_x: 15,
+ sheet_y: 30,
+ short_name: "red_haired_man",
+ short_names: ["red_haired_man"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person",
+ sort_order: 238,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F468-1F3FB-200D-1F9B0",
+ non_qualified: null,
+ image: "1f468-1f3fb-200d-1f9b0.png",
+ sheet_x: 15,
+ sheet_y: 31,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F468-1F3FC-200D-1F9B0",
+ non_qualified: null,
+ image: "1f468-1f3fc-200d-1f9b0.png",
+ sheet_x: 15,
+ sheet_y: 32,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F468-1F3FD-200D-1F9B0",
+ non_qualified: null,
+ image: "1f468-1f3fd-200d-1f9b0.png",
+ sheet_x: 15,
+ sheet_y: 33,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F468-1F3FE-200D-1F9B0",
+ non_qualified: null,
+ image: "1f468-1f3fe-200d-1f9b0.png",
+ sheet_x: 15,
+ sheet_y: 34,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F468-1F3FF-200D-1F9B0",
+ non_qualified: null,
+ image: "1f468-1f3ff-200d-1f9b0.png",
+ sheet_x: 15,
+ sheet_y: 35,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ curly_haired_man: {
+ char: "👨🦱",
+ key: "curly_haired_man",
+ keywords: ["curly_haired_man", "MAN: CURLY HAIR"],
+ category: "people",
+ lib: {
+ name: "MAN: CURLY HAIR",
+ unified: "1F468-200D-1F9B1",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f468-200d-1f9b1.png",
+ sheet_x: 15,
+ sheet_y: 36,
+ short_name: "curly_haired_man",
+ short_names: ["curly_haired_man"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person",
+ sort_order: 239,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F468-1F3FB-200D-1F9B1",
+ non_qualified: null,
+ image: "1f468-1f3fb-200d-1f9b1.png",
+ sheet_x: 15,
+ sheet_y: 37,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F468-1F3FC-200D-1F9B1",
+ non_qualified: null,
+ image: "1f468-1f3fc-200d-1f9b1.png",
+ sheet_x: 15,
+ sheet_y: 38,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F468-1F3FD-200D-1F9B1",
+ non_qualified: null,
+ image: "1f468-1f3fd-200d-1f9b1.png",
+ sheet_x: 15,
+ sheet_y: 39,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F468-1F3FE-200D-1F9B1",
+ non_qualified: null,
+ image: "1f468-1f3fe-200d-1f9b1.png",
+ sheet_x: 15,
+ sheet_y: 40,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F468-1F3FF-200D-1F9B1",
+ non_qualified: null,
+ image: "1f468-1f3ff-200d-1f9b1.png",
+ sheet_x: 15,
+ sheet_y: 41,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ white_haired_man: {
+ char: "👨🦳",
+ key: "white_haired_man",
+ keywords: ["white_haired_man", "MAN: WHITE HAIR"],
+ category: "people",
+ lib: {
+ name: "MAN: WHITE HAIR",
+ unified: "1F468-200D-1F9B3",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f468-200d-1f9b3.png",
+ sheet_x: 15,
+ sheet_y: 48,
+ short_name: "white_haired_man",
+ short_names: ["white_haired_man"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person",
+ sort_order: 240,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F468-1F3FB-200D-1F9B3",
+ non_qualified: null,
+ image: "1f468-1f3fb-200d-1f9b3.png",
+ sheet_x: 15,
+ sheet_y: 49,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F468-1F3FC-200D-1F9B3",
+ non_qualified: null,
+ image: "1f468-1f3fc-200d-1f9b3.png",
+ sheet_x: 15,
+ sheet_y: 50,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F468-1F3FD-200D-1F9B3",
+ non_qualified: null,
+ image: "1f468-1f3fd-200d-1f9b3.png",
+ sheet_x: 15,
+ sheet_y: 51,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F468-1F3FE-200D-1F9B3",
+ non_qualified: null,
+ image: "1f468-1f3fe-200d-1f9b3.png",
+ sheet_x: 15,
+ sheet_y: 52,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F468-1F3FF-200D-1F9B3",
+ non_qualified: null,
+ image: "1f468-1f3ff-200d-1f9b3.png",
+ sheet_x: 15,
+ sheet_y: 53,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ bald_man: {
+ char: "👨🦲",
+ key: "bald_man",
+ keywords: ["bald_man", "MAN: BALD"],
+ category: "people",
+ lib: {
+ name: "MAN: BALD",
+ unified: "1F468-200D-1F9B2",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f468-200d-1f9b2.png",
+ sheet_x: 15,
+ sheet_y: 42,
+ short_name: "bald_man",
+ short_names: ["bald_man"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person",
+ sort_order: 241,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F468-1F3FB-200D-1F9B2",
+ non_qualified: null,
+ image: "1f468-1f3fb-200d-1f9b2.png",
+ sheet_x: 15,
+ sheet_y: 43,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F468-1F3FC-200D-1F9B2",
+ non_qualified: null,
+ image: "1f468-1f3fc-200d-1f9b2.png",
+ sheet_x: 15,
+ sheet_y: 44,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F468-1F3FD-200D-1F9B2",
+ non_qualified: null,
+ image: "1f468-1f3fd-200d-1f9b2.png",
+ sheet_x: 15,
+ sheet_y: 45,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F468-1F3FE-200D-1F9B2",
+ non_qualified: null,
+ image: "1f468-1f3fe-200d-1f9b2.png",
+ sheet_x: 15,
+ sheet_y: 46,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F468-1F3FF-200D-1F9B2",
+ non_qualified: null,
+ image: "1f468-1f3ff-200d-1f9b2.png",
+ sheet_x: 15,
+ sheet_y: 47,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ woman: {
+ char: "👩",
+ key: "woman",
+ keywords: ["woman", "WOMAN"],
+ category: "people",
+ lib: {
+ name: "WOMAN",
+ unified: "1F469",
+ non_qualified: null,
+ docomo: "E6F0",
+ au: "E4FA",
+ softbank: "E005",
+ google: "FE19E",
+ image: "1f469.png",
+ sheet_x: 21,
+ sheet_y: 34,
+ short_name: "woman",
+ short_names: ["woman"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person",
+ sort_order: 242,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F469-1F3FB",
+ non_qualified: null,
+ image: "1f469-1f3fb.png",
+ sheet_x: 21,
+ sheet_y: 35,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F469-1F3FC",
+ non_qualified: null,
+ image: "1f469-1f3fc.png",
+ sheet_x: 21,
+ sheet_y: 36,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F469-1F3FD",
+ non_qualified: null,
+ image: "1f469-1f3fd.png",
+ sheet_x: 21,
+ sheet_y: 37,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F469-1F3FE",
+ non_qualified: null,
+ image: "1f469-1f3fe.png",
+ sheet_x: 21,
+ sheet_y: 38,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F469-1F3FF",
+ non_qualified: null,
+ image: "1f469-1f3ff.png",
+ sheet_x: 21,
+ sheet_y: 39,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ red_haired_woman: {
+ char: "👩🦰",
+ key: "red_haired_woman",
+ keywords: ["red_haired_woman", "WOMAN: RED HAIR"],
+ category: "people",
+ lib: {
+ name: "WOMAN: RED HAIR",
+ unified: "1F469-200D-1F9B0",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f469-200d-1f9b0.png",
+ sheet_x: 18,
+ sheet_y: 59,
+ short_name: "red_haired_woman",
+ short_names: ["red_haired_woman"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person",
+ sort_order: 243,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F469-1F3FB-200D-1F9B0",
+ non_qualified: null,
+ image: "1f469-1f3fb-200d-1f9b0.png",
+ sheet_x: 18,
+ sheet_y: 60,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F469-1F3FC-200D-1F9B0",
+ non_qualified: null,
+ image: "1f469-1f3fc-200d-1f9b0.png",
+ sheet_x: 19,
+ sheet_y: 0,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F469-1F3FD-200D-1F9B0",
+ non_qualified: null,
+ image: "1f469-1f3fd-200d-1f9b0.png",
+ sheet_x: 19,
+ sheet_y: 1,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F469-1F3FE-200D-1F9B0",
+ non_qualified: null,
+ image: "1f469-1f3fe-200d-1f9b0.png",
+ sheet_x: 19,
+ sheet_y: 2,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F469-1F3FF-200D-1F9B0",
+ non_qualified: null,
+ image: "1f469-1f3ff-200d-1f9b0.png",
+ sheet_x: 19,
+ sheet_y: 3,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ red_haired_person: {
+ char: "🧑🦰",
+ key: "red_haired_person",
+ keywords: ["red_haired_person", "PERSON: RED HAIR"],
+ category: "people",
+ lib: {
+ name: "PERSON: RED HAIR",
+ unified: "1F9D1-200D-1F9B0",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f9d1-200d-1f9b0.png",
+ sheet_x: 49,
+ sheet_y: 14,
+ short_name: "red_haired_person",
+ short_names: ["red_haired_person"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person",
+ sort_order: 244,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F9D1-1F3FB-200D-1F9B0",
+ non_qualified: null,
+ image: "1f9d1-1f3fb-200d-1f9b0.png",
+ sheet_x: 49,
+ sheet_y: 15,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F9D1-1F3FC-200D-1F9B0",
+ non_qualified: null,
+ image: "1f9d1-1f3fc-200d-1f9b0.png",
+ sheet_x: 49,
+ sheet_y: 16,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F9D1-1F3FD-200D-1F9B0",
+ non_qualified: null,
+ image: "1f9d1-1f3fd-200d-1f9b0.png",
+ sheet_x: 49,
+ sheet_y: 17,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F9D1-1F3FE-200D-1F9B0",
+ non_qualified: null,
+ image: "1f9d1-1f3fe-200d-1f9b0.png",
+ sheet_x: 49,
+ sheet_y: 18,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F9D1-1F3FF-200D-1F9B0",
+ non_qualified: null,
+ image: "1f9d1-1f3ff-200d-1f9b0.png",
+ sheet_x: 49,
+ sheet_y: 19,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ curly_haired_woman: {
+ char: "👩🦱",
+ key: "curly_haired_woman",
+ keywords: ["curly_haired_woman", "WOMAN: CURLY HAIR"],
+ category: "people",
+ lib: {
+ name: "WOMAN: CURLY HAIR",
+ unified: "1F469-200D-1F9B1",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f469-200d-1f9b1.png",
+ sheet_x: 19,
+ sheet_y: 4,
+ short_name: "curly_haired_woman",
+ short_names: ["curly_haired_woman"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person",
+ sort_order: 245,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F469-1F3FB-200D-1F9B1",
+ non_qualified: null,
+ image: "1f469-1f3fb-200d-1f9b1.png",
+ sheet_x: 19,
+ sheet_y: 5,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F469-1F3FC-200D-1F9B1",
+ non_qualified: null,
+ image: "1f469-1f3fc-200d-1f9b1.png",
+ sheet_x: 19,
+ sheet_y: 6,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F469-1F3FD-200D-1F9B1",
+ non_qualified: null,
+ image: "1f469-1f3fd-200d-1f9b1.png",
+ sheet_x: 19,
+ sheet_y: 7,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F469-1F3FE-200D-1F9B1",
+ non_qualified: null,
+ image: "1f469-1f3fe-200d-1f9b1.png",
+ sheet_x: 19,
+ sheet_y: 8,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F469-1F3FF-200D-1F9B1",
+ non_qualified: null,
+ image: "1f469-1f3ff-200d-1f9b1.png",
+ sheet_x: 19,
+ sheet_y: 9,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ curly_haired_person: {
+ char: "🧑🦱",
+ key: "curly_haired_person",
+ keywords: ["curly_haired_person", "PERSON: CURLY HAIR"],
+ category: "people",
+ lib: {
+ name: "PERSON: CURLY HAIR",
+ unified: "1F9D1-200D-1F9B1",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f9d1-200d-1f9b1.png",
+ sheet_x: 49,
+ sheet_y: 20,
+ short_name: "curly_haired_person",
+ short_names: ["curly_haired_person"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person",
+ sort_order: 246,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F9D1-1F3FB-200D-1F9B1",
+ non_qualified: null,
+ image: "1f9d1-1f3fb-200d-1f9b1.png",
+ sheet_x: 49,
+ sheet_y: 21,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F9D1-1F3FC-200D-1F9B1",
+ non_qualified: null,
+ image: "1f9d1-1f3fc-200d-1f9b1.png",
+ sheet_x: 49,
+ sheet_y: 22,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F9D1-1F3FD-200D-1F9B1",
+ non_qualified: null,
+ image: "1f9d1-1f3fd-200d-1f9b1.png",
+ sheet_x: 49,
+ sheet_y: 23,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F9D1-1F3FE-200D-1F9B1",
+ non_qualified: null,
+ image: "1f9d1-1f3fe-200d-1f9b1.png",
+ sheet_x: 49,
+ sheet_y: 24,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F9D1-1F3FF-200D-1F9B1",
+ non_qualified: null,
+ image: "1f9d1-1f3ff-200d-1f9b1.png",
+ sheet_x: 49,
+ sheet_y: 25,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ white_haired_woman: {
+ char: "👩🦳",
+ key: "white_haired_woman",
+ keywords: ["white_haired_woman", "WOMAN: WHITE HAIR"],
+ category: "people",
+ lib: {
+ name: "WOMAN: WHITE HAIR",
+ unified: "1F469-200D-1F9B3",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f469-200d-1f9b3.png",
+ sheet_x: 19,
+ sheet_y: 16,
+ short_name: "white_haired_woman",
+ short_names: ["white_haired_woman"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person",
+ sort_order: 247,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F469-1F3FB-200D-1F9B3",
+ non_qualified: null,
+ image: "1f469-1f3fb-200d-1f9b3.png",
+ sheet_x: 19,
+ sheet_y: 17,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F469-1F3FC-200D-1F9B3",
+ non_qualified: null,
+ image: "1f469-1f3fc-200d-1f9b3.png",
+ sheet_x: 19,
+ sheet_y: 18,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F469-1F3FD-200D-1F9B3",
+ non_qualified: null,
+ image: "1f469-1f3fd-200d-1f9b3.png",
+ sheet_x: 19,
+ sheet_y: 19,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F469-1F3FE-200D-1F9B3",
+ non_qualified: null,
+ image: "1f469-1f3fe-200d-1f9b3.png",
+ sheet_x: 19,
+ sheet_y: 20,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F469-1F3FF-200D-1F9B3",
+ non_qualified: null,
+ image: "1f469-1f3ff-200d-1f9b3.png",
+ sheet_x: 19,
+ sheet_y: 21,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ white_haired_person: {
+ char: "🧑🦳",
+ key: "white_haired_person",
+ keywords: ["white_haired_person", "PERSON: WHITE HAIR"],
+ category: "people",
+ lib: {
+ name: "PERSON: WHITE HAIR",
+ unified: "1F9D1-200D-1F9B3",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f9d1-200d-1f9b3.png",
+ sheet_x: 49,
+ sheet_y: 32,
+ short_name: "white_haired_person",
+ short_names: ["white_haired_person"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person",
+ sort_order: 248,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F9D1-1F3FB-200D-1F9B3",
+ non_qualified: null,
+ image: "1f9d1-1f3fb-200d-1f9b3.png",
+ sheet_x: 49,
+ sheet_y: 33,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F9D1-1F3FC-200D-1F9B3",
+ non_qualified: null,
+ image: "1f9d1-1f3fc-200d-1f9b3.png",
+ sheet_x: 49,
+ sheet_y: 34,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F9D1-1F3FD-200D-1F9B3",
+ non_qualified: null,
+ image: "1f9d1-1f3fd-200d-1f9b3.png",
+ sheet_x: 49,
+ sheet_y: 35,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F9D1-1F3FE-200D-1F9B3",
+ non_qualified: null,
+ image: "1f9d1-1f3fe-200d-1f9b3.png",
+ sheet_x: 49,
+ sheet_y: 36,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F9D1-1F3FF-200D-1F9B3",
+ non_qualified: null,
+ image: "1f9d1-1f3ff-200d-1f9b3.png",
+ sheet_x: 49,
+ sheet_y: 37,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ bald_woman: {
+ char: "👩🦲",
+ key: "bald_woman",
+ keywords: ["bald_woman", "WOMAN: BALD"],
+ category: "people",
+ lib: {
+ name: "WOMAN: BALD",
+ unified: "1F469-200D-1F9B2",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f469-200d-1f9b2.png",
+ sheet_x: 19,
+ sheet_y: 10,
+ short_name: "bald_woman",
+ short_names: ["bald_woman"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person",
+ sort_order: 249,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F469-1F3FB-200D-1F9B2",
+ non_qualified: null,
+ image: "1f469-1f3fb-200d-1f9b2.png",
+ sheet_x: 19,
+ sheet_y: 11,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F469-1F3FC-200D-1F9B2",
+ non_qualified: null,
+ image: "1f469-1f3fc-200d-1f9b2.png",
+ sheet_x: 19,
+ sheet_y: 12,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F469-1F3FD-200D-1F9B2",
+ non_qualified: null,
+ image: "1f469-1f3fd-200d-1f9b2.png",
+ sheet_x: 19,
+ sheet_y: 13,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F469-1F3FE-200D-1F9B2",
+ non_qualified: null,
+ image: "1f469-1f3fe-200d-1f9b2.png",
+ sheet_x: 19,
+ sheet_y: 14,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F469-1F3FF-200D-1F9B2",
+ non_qualified: null,
+ image: "1f469-1f3ff-200d-1f9b2.png",
+ sheet_x: 19,
+ sheet_y: 15,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ bald_person: {
+ char: "🧑🦲",
+ key: "bald_person",
+ keywords: ["bald_person", "PERSON: BALD"],
+ category: "people",
+ lib: {
+ name: "PERSON: BALD",
+ unified: "1F9D1-200D-1F9B2",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f9d1-200d-1f9b2.png",
+ sheet_x: 49,
+ sheet_y: 26,
+ short_name: "bald_person",
+ short_names: ["bald_person"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person",
+ sort_order: 250,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F9D1-1F3FB-200D-1F9B2",
+ non_qualified: null,
+ image: "1f9d1-1f3fb-200d-1f9b2.png",
+ sheet_x: 49,
+ sheet_y: 27,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F9D1-1F3FC-200D-1F9B2",
+ non_qualified: null,
+ image: "1f9d1-1f3fc-200d-1f9b2.png",
+ sheet_x: 49,
+ sheet_y: 28,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F9D1-1F3FD-200D-1F9B2",
+ non_qualified: null,
+ image: "1f9d1-1f3fd-200d-1f9b2.png",
+ sheet_x: 49,
+ sheet_y: 29,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F9D1-1F3FE-200D-1F9B2",
+ non_qualified: null,
+ image: "1f9d1-1f3fe-200d-1f9b2.png",
+ sheet_x: 49,
+ sheet_y: 30,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F9D1-1F3FF-200D-1F9B2",
+ non_qualified: null,
+ image: "1f9d1-1f3ff-200d-1f9b2.png",
+ sheet_x: 49,
+ sheet_y: 31,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ "blond-haired-woman": {
+ char: "👱♀️",
+ key: "blond-haired-woman",
+ keywords: ["blond-haired-woman", "WOMAN: BLOND HAIR"],
+ category: "people",
+ lib: {
+ name: "WOMAN: BLOND HAIR",
+ unified: "1F471-200D-2640-FE0F",
+ non_qualified: "1F471-200D-2640",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f471-200d-2640-fe0f.png",
+ sheet_x: 23,
+ sheet_y: 36,
+ short_name: "blond-haired-woman",
+ short_names: ["blond-haired-woman"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person",
+ sort_order: 251,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F471-1F3FB-200D-2640-FE0F",
+ non_qualified: "1F471-1F3FB-200D-2640",
+ image: "1f471-1f3fb-200d-2640-fe0f.png",
+ sheet_x: 23,
+ sheet_y: 37,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F471-1F3FC-200D-2640-FE0F",
+ non_qualified: "1F471-1F3FC-200D-2640",
+ image: "1f471-1f3fc-200d-2640-fe0f.png",
+ sheet_x: 23,
+ sheet_y: 38,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F471-1F3FD-200D-2640-FE0F",
+ non_qualified: "1F471-1F3FD-200D-2640",
+ image: "1f471-1f3fd-200d-2640-fe0f.png",
+ sheet_x: 23,
+ sheet_y: 39,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F471-1F3FE-200D-2640-FE0F",
+ non_qualified: "1F471-1F3FE-200D-2640",
+ image: "1f471-1f3fe-200d-2640-fe0f.png",
+ sheet_x: 23,
+ sheet_y: 40,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F471-1F3FF-200D-2640-FE0F",
+ non_qualified: "1F471-1F3FF-200D-2640",
+ image: "1f471-1f3ff-200d-2640-fe0f.png",
+ sheet_x: 23,
+ sheet_y: 41,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ "blond-haired-man": {
+ char: "👱♂️",
+ key: "blond-haired-man",
+ keywords: ["blond-haired-man", "MAN: BLOND HAIR"],
+ category: "people",
+ lib: {
+ name: "MAN: BLOND HAIR",
+ unified: "1F471-200D-2642-FE0F",
+ non_qualified: "1F471-200D-2642",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f471-200d-2642-fe0f.png",
+ sheet_x: 23,
+ sheet_y: 42,
+ short_name: "blond-haired-man",
+ short_names: ["blond-haired-man"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person",
+ sort_order: 252,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F471-1F3FB-200D-2642-FE0F",
+ non_qualified: "1F471-1F3FB-200D-2642",
+ image: "1f471-1f3fb-200d-2642-fe0f.png",
+ sheet_x: 23,
+ sheet_y: 43,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F471-1F3FC-200D-2642-FE0F",
+ non_qualified: "1F471-1F3FC-200D-2642",
+ image: "1f471-1f3fc-200d-2642-fe0f.png",
+ sheet_x: 23,
+ sheet_y: 44,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F471-1F3FD-200D-2642-FE0F",
+ non_qualified: "1F471-1F3FD-200D-2642",
+ image: "1f471-1f3fd-200d-2642-fe0f.png",
+ sheet_x: 23,
+ sheet_y: 45,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F471-1F3FE-200D-2642-FE0F",
+ non_qualified: "1F471-1F3FE-200D-2642",
+ image: "1f471-1f3fe-200d-2642-fe0f.png",
+ sheet_x: 23,
+ sheet_y: 46,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F471-1F3FF-200D-2642-FE0F",
+ non_qualified: "1F471-1F3FF-200D-2642",
+ image: "1f471-1f3ff-200d-2642-fe0f.png",
+ sheet_x: 23,
+ sheet_y: 47,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ obsoletes: "1F471",
+ },
+ },
+ older_adult: {
+ char: "🧓",
+ key: "older_adult",
+ keywords: ["older_adult", "OLDER ADULT"],
+ category: "people",
+ lib: {
+ name: "OLDER ADULT",
+ unified: "1F9D3",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f9d3.png",
+ sheet_x: 50,
+ sheet_y: 19,
+ short_name: "older_adult",
+ short_names: ["older_adult"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person",
+ sort_order: 253,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F9D3-1F3FB",
+ non_qualified: null,
+ image: "1f9d3-1f3fb.png",
+ sheet_x: 50,
+ sheet_y: 20,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F9D3-1F3FC",
+ non_qualified: null,
+ image: "1f9d3-1f3fc.png",
+ sheet_x: 50,
+ sheet_y: 21,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F9D3-1F3FD",
+ non_qualified: null,
+ image: "1f9d3-1f3fd.png",
+ sheet_x: 50,
+ sheet_y: 22,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F9D3-1F3FE",
+ non_qualified: null,
+ image: "1f9d3-1f3fe.png",
+ sheet_x: 50,
+ sheet_y: 23,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F9D3-1F3FF",
+ non_qualified: null,
+ image: "1f9d3-1f3ff.png",
+ sheet_x: 50,
+ sheet_y: 24,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ older_man: {
+ char: "👴",
+ key: "older_man",
+ keywords: ["older_man", "OLDER MAN"],
+ category: "people",
+ lib: {
+ name: "OLDER MAN",
+ unified: "1F474",
+ non_qualified: null,
+ docomo: null,
+ au: "EB16",
+ softbank: "E518",
+ google: "FE1A7",
+ image: "1f474.png",
+ sheet_x: 24,
+ sheet_y: 17,
+ short_name: "older_man",
+ short_names: ["older_man"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person",
+ sort_order: 254,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F474-1F3FB",
+ non_qualified: null,
+ image: "1f474-1f3fb.png",
+ sheet_x: 24,
+ sheet_y: 18,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F474-1F3FC",
+ non_qualified: null,
+ image: "1f474-1f3fc.png",
+ sheet_x: 24,
+ sheet_y: 19,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F474-1F3FD",
+ non_qualified: null,
+ image: "1f474-1f3fd.png",
+ sheet_x: 24,
+ sheet_y: 20,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F474-1F3FE",
+ non_qualified: null,
+ image: "1f474-1f3fe.png",
+ sheet_x: 24,
+ sheet_y: 21,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F474-1F3FF",
+ non_qualified: null,
+ image: "1f474-1f3ff.png",
+ sheet_x: 24,
+ sheet_y: 22,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ older_woman: {
+ char: "👵",
+ key: "older_woman",
+ keywords: ["older_woman", "OLDER WOMAN"],
+ category: "people",
+ lib: {
+ name: "OLDER WOMAN",
+ unified: "1F475",
+ non_qualified: null,
+ docomo: null,
+ au: "EB17",
+ softbank: "E519",
+ google: "FE1A8",
+ image: "1f475.png",
+ sheet_x: 24,
+ sheet_y: 23,
+ short_name: "older_woman",
+ short_names: ["older_woman"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person",
+ sort_order: 255,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F475-1F3FB",
+ non_qualified: null,
+ image: "1f475-1f3fb.png",
+ sheet_x: 24,
+ sheet_y: 24,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F475-1F3FC",
+ non_qualified: null,
+ image: "1f475-1f3fc.png",
+ sheet_x: 24,
+ sheet_y: 25,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F475-1F3FD",
+ non_qualified: null,
+ image: "1f475-1f3fd.png",
+ sheet_x: 24,
+ sheet_y: 26,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F475-1F3FE",
+ non_qualified: null,
+ image: "1f475-1f3fe.png",
+ sheet_x: 24,
+ sheet_y: 27,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F475-1F3FF",
+ non_qualified: null,
+ image: "1f475-1f3ff.png",
+ sheet_x: 24,
+ sheet_y: 28,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ "man-frowning": {
+ char: "🙍♂️",
+ key: "man-frowning",
+ keywords: ["man-frowning", "MAN FROWNING"],
+ category: "people",
+ lib: {
+ name: "MAN FROWNING",
+ unified: "1F64D-200D-2642-FE0F",
+ non_qualified: "1F64D-200D-2642",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f64d-200d-2642-fe0f.png",
+ sheet_x: 34,
+ sheet_y: 58,
+ short_name: "man-frowning",
+ short_names: ["man-frowning"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-gesture",
+ sort_order: 257,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F64D-1F3FB-200D-2642-FE0F",
+ non_qualified: "1F64D-1F3FB-200D-2642",
+ image: "1f64d-1f3fb-200d-2642-fe0f.png",
+ sheet_x: 34,
+ sheet_y: 59,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F64D-1F3FC-200D-2642-FE0F",
+ non_qualified: "1F64D-1F3FC-200D-2642",
+ image: "1f64d-1f3fc-200d-2642-fe0f.png",
+ sheet_x: 34,
+ sheet_y: 60,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F64D-1F3FD-200D-2642-FE0F",
+ non_qualified: "1F64D-1F3FD-200D-2642",
+ image: "1f64d-1f3fd-200d-2642-fe0f.png",
+ sheet_x: 35,
+ sheet_y: 0,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F64D-1F3FE-200D-2642-FE0F",
+ non_qualified: "1F64D-1F3FE-200D-2642",
+ image: "1f64d-1f3fe-200d-2642-fe0f.png",
+ sheet_x: 35,
+ sheet_y: 1,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F64D-1F3FF-200D-2642-FE0F",
+ non_qualified: "1F64D-1F3FF-200D-2642",
+ image: "1f64d-1f3ff-200d-2642-fe0f.png",
+ sheet_x: 35,
+ sheet_y: 2,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ "woman-frowning": {
+ char: "🙍♀️",
+ key: "woman-frowning",
+ keywords: ["woman-frowning", "WOMAN FROWNING"],
+ category: "people",
+ lib: {
+ name: "WOMAN FROWNING",
+ unified: "1F64D-200D-2640-FE0F",
+ non_qualified: "1F64D-200D-2640",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f64d-200d-2640-fe0f.png",
+ sheet_x: 34,
+ sheet_y: 52,
+ short_name: "woman-frowning",
+ short_names: ["woman-frowning"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-gesture",
+ sort_order: 258,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F64D-1F3FB-200D-2640-FE0F",
+ non_qualified: "1F64D-1F3FB-200D-2640",
+ image: "1f64d-1f3fb-200d-2640-fe0f.png",
+ sheet_x: 34,
+ sheet_y: 53,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F64D-1F3FC-200D-2640-FE0F",
+ non_qualified: "1F64D-1F3FC-200D-2640",
+ image: "1f64d-1f3fc-200d-2640-fe0f.png",
+ sheet_x: 34,
+ sheet_y: 54,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F64D-1F3FD-200D-2640-FE0F",
+ non_qualified: "1F64D-1F3FD-200D-2640",
+ image: "1f64d-1f3fd-200d-2640-fe0f.png",
+ sheet_x: 34,
+ sheet_y: 55,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F64D-1F3FE-200D-2640-FE0F",
+ non_qualified: "1F64D-1F3FE-200D-2640",
+ image: "1f64d-1f3fe-200d-2640-fe0f.png",
+ sheet_x: 34,
+ sheet_y: 56,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F64D-1F3FF-200D-2640-FE0F",
+ non_qualified: "1F64D-1F3FF-200D-2640",
+ image: "1f64d-1f3ff-200d-2640-fe0f.png",
+ sheet_x: 34,
+ sheet_y: 57,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ obsoletes: "1F64D",
+ },
+ },
+ "man-pouting": {
+ char: "🙎♂️",
+ key: "man-pouting",
+ keywords: ["man-pouting", "MAN POUTING"],
+ category: "people",
+ lib: {
+ name: "MAN POUTING",
+ unified: "1F64E-200D-2642-FE0F",
+ non_qualified: "1F64E-200D-2642",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f64e-200d-2642-fe0f.png",
+ sheet_x: 35,
+ sheet_y: 15,
+ short_name: "man-pouting",
+ short_names: ["man-pouting"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-gesture",
+ sort_order: 260,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F64E-1F3FB-200D-2642-FE0F",
+ non_qualified: "1F64E-1F3FB-200D-2642",
+ image: "1f64e-1f3fb-200d-2642-fe0f.png",
+ sheet_x: 35,
+ sheet_y: 16,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F64E-1F3FC-200D-2642-FE0F",
+ non_qualified: "1F64E-1F3FC-200D-2642",
+ image: "1f64e-1f3fc-200d-2642-fe0f.png",
+ sheet_x: 35,
+ sheet_y: 17,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F64E-1F3FD-200D-2642-FE0F",
+ non_qualified: "1F64E-1F3FD-200D-2642",
+ image: "1f64e-1f3fd-200d-2642-fe0f.png",
+ sheet_x: 35,
+ sheet_y: 18,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F64E-1F3FE-200D-2642-FE0F",
+ non_qualified: "1F64E-1F3FE-200D-2642",
+ image: "1f64e-1f3fe-200d-2642-fe0f.png",
+ sheet_x: 35,
+ sheet_y: 19,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F64E-1F3FF-200D-2642-FE0F",
+ non_qualified: "1F64E-1F3FF-200D-2642",
+ image: "1f64e-1f3ff-200d-2642-fe0f.png",
+ sheet_x: 35,
+ sheet_y: 20,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ "woman-pouting": {
+ char: "🙎♀️",
+ key: "woman-pouting",
+ keywords: ["woman-pouting", "WOMAN POUTING"],
+ category: "people",
+ lib: {
+ name: "WOMAN POUTING",
+ unified: "1F64E-200D-2640-FE0F",
+ non_qualified: "1F64E-200D-2640",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f64e-200d-2640-fe0f.png",
+ sheet_x: 35,
+ sheet_y: 9,
+ short_name: "woman-pouting",
+ short_names: ["woman-pouting"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-gesture",
+ sort_order: 261,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F64E-1F3FB-200D-2640-FE0F",
+ non_qualified: "1F64E-1F3FB-200D-2640",
+ image: "1f64e-1f3fb-200d-2640-fe0f.png",
+ sheet_x: 35,
+ sheet_y: 10,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F64E-1F3FC-200D-2640-FE0F",
+ non_qualified: "1F64E-1F3FC-200D-2640",
+ image: "1f64e-1f3fc-200d-2640-fe0f.png",
+ sheet_x: 35,
+ sheet_y: 11,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F64E-1F3FD-200D-2640-FE0F",
+ non_qualified: "1F64E-1F3FD-200D-2640",
+ image: "1f64e-1f3fd-200d-2640-fe0f.png",
+ sheet_x: 35,
+ sheet_y: 12,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F64E-1F3FE-200D-2640-FE0F",
+ non_qualified: "1F64E-1F3FE-200D-2640",
+ image: "1f64e-1f3fe-200d-2640-fe0f.png",
+ sheet_x: 35,
+ sheet_y: 13,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F64E-1F3FF-200D-2640-FE0F",
+ non_qualified: "1F64E-1F3FF-200D-2640",
+ image: "1f64e-1f3ff-200d-2640-fe0f.png",
+ sheet_x: 35,
+ sheet_y: 14,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ obsoletes: "1F64E",
+ },
+ },
+ "man-gesturing-no": {
+ char: "🙅♂️",
+ key: "man-gesturing-no",
+ keywords: ["man-gesturing-no", "MAN GESTURING NO"],
+ category: "people",
+ lib: {
+ name: "MAN GESTURING NO",
+ unified: "1F645-200D-2642-FE0F",
+ non_qualified: "1F645-200D-2642",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f645-200d-2642-fe0f.png",
+ sheet_x: 33,
+ sheet_y: 38,
+ short_name: "man-gesturing-no",
+ short_names: ["man-gesturing-no"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-gesture",
+ sort_order: 263,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F645-1F3FB-200D-2642-FE0F",
+ non_qualified: "1F645-1F3FB-200D-2642",
+ image: "1f645-1f3fb-200d-2642-fe0f.png",
+ sheet_x: 33,
+ sheet_y: 39,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F645-1F3FC-200D-2642-FE0F",
+ non_qualified: "1F645-1F3FC-200D-2642",
+ image: "1f645-1f3fc-200d-2642-fe0f.png",
+ sheet_x: 33,
+ sheet_y: 40,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F645-1F3FD-200D-2642-FE0F",
+ non_qualified: "1F645-1F3FD-200D-2642",
+ image: "1f645-1f3fd-200d-2642-fe0f.png",
+ sheet_x: 33,
+ sheet_y: 41,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F645-1F3FE-200D-2642-FE0F",
+ non_qualified: "1F645-1F3FE-200D-2642",
+ image: "1f645-1f3fe-200d-2642-fe0f.png",
+ sheet_x: 33,
+ sheet_y: 42,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F645-1F3FF-200D-2642-FE0F",
+ non_qualified: "1F645-1F3FF-200D-2642",
+ image: "1f645-1f3ff-200d-2642-fe0f.png",
+ sheet_x: 33,
+ sheet_y: 43,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ "woman-gesturing-no": {
+ char: "🙅♀️",
+ key: "woman-gesturing-no",
+ keywords: ["woman-gesturing-no", "WOMAN GESTURING NO"],
+ category: "people",
+ lib: {
+ name: "WOMAN GESTURING NO",
+ unified: "1F645-200D-2640-FE0F",
+ non_qualified: "1F645-200D-2640",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f645-200d-2640-fe0f.png",
+ sheet_x: 33,
+ sheet_y: 32,
+ short_name: "woman-gesturing-no",
+ short_names: ["woman-gesturing-no"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-gesture",
+ sort_order: 264,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F645-1F3FB-200D-2640-FE0F",
+ non_qualified: "1F645-1F3FB-200D-2640",
+ image: "1f645-1f3fb-200d-2640-fe0f.png",
+ sheet_x: 33,
+ sheet_y: 33,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F645-1F3FC-200D-2640-FE0F",
+ non_qualified: "1F645-1F3FC-200D-2640",
+ image: "1f645-1f3fc-200d-2640-fe0f.png",
+ sheet_x: 33,
+ sheet_y: 34,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F645-1F3FD-200D-2640-FE0F",
+ non_qualified: "1F645-1F3FD-200D-2640",
+ image: "1f645-1f3fd-200d-2640-fe0f.png",
+ sheet_x: 33,
+ sheet_y: 35,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F645-1F3FE-200D-2640-FE0F",
+ non_qualified: "1F645-1F3FE-200D-2640",
+ image: "1f645-1f3fe-200d-2640-fe0f.png",
+ sheet_x: 33,
+ sheet_y: 36,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F645-1F3FF-200D-2640-FE0F",
+ non_qualified: "1F645-1F3FF-200D-2640",
+ image: "1f645-1f3ff-200d-2640-fe0f.png",
+ sheet_x: 33,
+ sheet_y: 37,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ obsoletes: "1F645",
+ },
+ },
+ "man-gesturing-ok": {
+ char: "🙆♂️",
+ key: "man-gesturing-ok",
+ keywords: ["man-gesturing-ok", "MAN GESTURING OK"],
+ category: "people",
+ lib: {
+ name: "MAN GESTURING OK",
+ unified: "1F646-200D-2642-FE0F",
+ non_qualified: "1F646-200D-2642",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f646-200d-2642-fe0f.png",
+ sheet_x: 33,
+ sheet_y: 56,
+ short_name: "man-gesturing-ok",
+ short_names: ["man-gesturing-ok"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-gesture",
+ sort_order: 266,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F646-1F3FB-200D-2642-FE0F",
+ non_qualified: "1F646-1F3FB-200D-2642",
+ image: "1f646-1f3fb-200d-2642-fe0f.png",
+ sheet_x: 33,
+ sheet_y: 57,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F646-1F3FC-200D-2642-FE0F",
+ non_qualified: "1F646-1F3FC-200D-2642",
+ image: "1f646-1f3fc-200d-2642-fe0f.png",
+ sheet_x: 33,
+ sheet_y: 58,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F646-1F3FD-200D-2642-FE0F",
+ non_qualified: "1F646-1F3FD-200D-2642",
+ image: "1f646-1f3fd-200d-2642-fe0f.png",
+ sheet_x: 33,
+ sheet_y: 59,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F646-1F3FE-200D-2642-FE0F",
+ non_qualified: "1F646-1F3FE-200D-2642",
+ image: "1f646-1f3fe-200d-2642-fe0f.png",
+ sheet_x: 33,
+ sheet_y: 60,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F646-1F3FF-200D-2642-FE0F",
+ non_qualified: "1F646-1F3FF-200D-2642",
+ image: "1f646-1f3ff-200d-2642-fe0f.png",
+ sheet_x: 34,
+ sheet_y: 0,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ "woman-gesturing-ok": {
+ char: "🙆♀️",
+ key: "woman-gesturing-ok",
+ keywords: ["woman-gesturing-ok", "WOMAN GESTURING OK"],
+ category: "people",
+ lib: {
+ name: "WOMAN GESTURING OK",
+ unified: "1F646-200D-2640-FE0F",
+ non_qualified: "1F646-200D-2640",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f646-200d-2640-fe0f.png",
+ sheet_x: 33,
+ sheet_y: 50,
+ short_name: "woman-gesturing-ok",
+ short_names: ["woman-gesturing-ok"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-gesture",
+ sort_order: 267,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F646-1F3FB-200D-2640-FE0F",
+ non_qualified: "1F646-1F3FB-200D-2640",
+ image: "1f646-1f3fb-200d-2640-fe0f.png",
+ sheet_x: 33,
+ sheet_y: 51,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F646-1F3FC-200D-2640-FE0F",
+ non_qualified: "1F646-1F3FC-200D-2640",
+ image: "1f646-1f3fc-200d-2640-fe0f.png",
+ sheet_x: 33,
+ sheet_y: 52,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F646-1F3FD-200D-2640-FE0F",
+ non_qualified: "1F646-1F3FD-200D-2640",
+ image: "1f646-1f3fd-200d-2640-fe0f.png",
+ sheet_x: 33,
+ sheet_y: 53,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F646-1F3FE-200D-2640-FE0F",
+ non_qualified: "1F646-1F3FE-200D-2640",
+ image: "1f646-1f3fe-200d-2640-fe0f.png",
+ sheet_x: 33,
+ sheet_y: 54,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F646-1F3FF-200D-2640-FE0F",
+ non_qualified: "1F646-1F3FF-200D-2640",
+ image: "1f646-1f3ff-200d-2640-fe0f.png",
+ sheet_x: 33,
+ sheet_y: 55,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ obsoletes: "1F646",
+ },
+ },
+ "man-tipping-hand": {
+ char: "💁♂️",
+ key: "man-tipping-hand",
+ keywords: ["man-tipping-hand", "MAN TIPPING HAND"],
+ category: "people",
+ lib: {
+ name: "MAN TIPPING HAND",
+ unified: "1F481-200D-2642-FE0F",
+ non_qualified: "1F481-200D-2642",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f481-200d-2642-fe0f.png",
+ sheet_x: 25,
+ sheet_y: 17,
+ short_name: "man-tipping-hand",
+ short_names: ["man-tipping-hand"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-gesture",
+ sort_order: 269,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F481-1F3FB-200D-2642-FE0F",
+ non_qualified: "1F481-1F3FB-200D-2642",
+ image: "1f481-1f3fb-200d-2642-fe0f.png",
+ sheet_x: 25,
+ sheet_y: 18,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F481-1F3FC-200D-2642-FE0F",
+ non_qualified: "1F481-1F3FC-200D-2642",
+ image: "1f481-1f3fc-200d-2642-fe0f.png",
+ sheet_x: 25,
+ sheet_y: 19,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F481-1F3FD-200D-2642-FE0F",
+ non_qualified: "1F481-1F3FD-200D-2642",
+ image: "1f481-1f3fd-200d-2642-fe0f.png",
+ sheet_x: 25,
+ sheet_y: 20,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F481-1F3FE-200D-2642-FE0F",
+ non_qualified: "1F481-1F3FE-200D-2642",
+ image: "1f481-1f3fe-200d-2642-fe0f.png",
+ sheet_x: 25,
+ sheet_y: 21,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F481-1F3FF-200D-2642-FE0F",
+ non_qualified: "1F481-1F3FF-200D-2642",
+ image: "1f481-1f3ff-200d-2642-fe0f.png",
+ sheet_x: 25,
+ sheet_y: 22,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ "woman-tipping-hand": {
+ char: "💁♀️",
+ key: "woman-tipping-hand",
+ keywords: ["woman-tipping-hand", "WOMAN TIPPING HAND"],
+ category: "people",
+ lib: {
+ name: "WOMAN TIPPING HAND",
+ unified: "1F481-200D-2640-FE0F",
+ non_qualified: "1F481-200D-2640",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f481-200d-2640-fe0f.png",
+ sheet_x: 25,
+ sheet_y: 11,
+ short_name: "woman-tipping-hand",
+ short_names: ["woman-tipping-hand"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-gesture",
+ sort_order: 270,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F481-1F3FB-200D-2640-FE0F",
+ non_qualified: "1F481-1F3FB-200D-2640",
+ image: "1f481-1f3fb-200d-2640-fe0f.png",
+ sheet_x: 25,
+ sheet_y: 12,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F481-1F3FC-200D-2640-FE0F",
+ non_qualified: "1F481-1F3FC-200D-2640",
+ image: "1f481-1f3fc-200d-2640-fe0f.png",
+ sheet_x: 25,
+ sheet_y: 13,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F481-1F3FD-200D-2640-FE0F",
+ non_qualified: "1F481-1F3FD-200D-2640",
+ image: "1f481-1f3fd-200d-2640-fe0f.png",
+ sheet_x: 25,
+ sheet_y: 14,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F481-1F3FE-200D-2640-FE0F",
+ non_qualified: "1F481-1F3FE-200D-2640",
+ image: "1f481-1f3fe-200d-2640-fe0f.png",
+ sheet_x: 25,
+ sheet_y: 15,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F481-1F3FF-200D-2640-FE0F",
+ non_qualified: "1F481-1F3FF-200D-2640",
+ image: "1f481-1f3ff-200d-2640-fe0f.png",
+ sheet_x: 25,
+ sheet_y: 16,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ obsoletes: "1F481",
+ },
+ },
+ "man-raising-hand": {
+ char: "🙋♂️",
+ key: "man-raising-hand",
+ keywords: ["man-raising-hand", "MAN RAISING HAND"],
+ category: "people",
+ lib: {
+ name: "MAN RAISING HAND",
+ unified: "1F64B-200D-2642-FE0F",
+ non_qualified: "1F64B-200D-2642",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f64b-200d-2642-fe0f.png",
+ sheet_x: 34,
+ sheet_y: 34,
+ short_name: "man-raising-hand",
+ short_names: ["man-raising-hand"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-gesture",
+ sort_order: 272,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F64B-1F3FB-200D-2642-FE0F",
+ non_qualified: "1F64B-1F3FB-200D-2642",
+ image: "1f64b-1f3fb-200d-2642-fe0f.png",
+ sheet_x: 34,
+ sheet_y: 35,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F64B-1F3FC-200D-2642-FE0F",
+ non_qualified: "1F64B-1F3FC-200D-2642",
+ image: "1f64b-1f3fc-200d-2642-fe0f.png",
+ sheet_x: 34,
+ sheet_y: 36,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F64B-1F3FD-200D-2642-FE0F",
+ non_qualified: "1F64B-1F3FD-200D-2642",
+ image: "1f64b-1f3fd-200d-2642-fe0f.png",
+ sheet_x: 34,
+ sheet_y: 37,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F64B-1F3FE-200D-2642-FE0F",
+ non_qualified: "1F64B-1F3FE-200D-2642",
+ image: "1f64b-1f3fe-200d-2642-fe0f.png",
+ sheet_x: 34,
+ sheet_y: 38,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F64B-1F3FF-200D-2642-FE0F",
+ non_qualified: "1F64B-1F3FF-200D-2642",
+ image: "1f64b-1f3ff-200d-2642-fe0f.png",
+ sheet_x: 34,
+ sheet_y: 39,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ "woman-raising-hand": {
+ char: "🙋♀️",
+ key: "woman-raising-hand",
+ keywords: ["woman-raising-hand", "WOMAN RAISING HAND"],
+ category: "people",
+ lib: {
+ name: "WOMAN RAISING HAND",
+ unified: "1F64B-200D-2640-FE0F",
+ non_qualified: "1F64B-200D-2640",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f64b-200d-2640-fe0f.png",
+ sheet_x: 34,
+ sheet_y: 28,
+ short_name: "woman-raising-hand",
+ short_names: ["woman-raising-hand"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-gesture",
+ sort_order: 273,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F64B-1F3FB-200D-2640-FE0F",
+ non_qualified: "1F64B-1F3FB-200D-2640",
+ image: "1f64b-1f3fb-200d-2640-fe0f.png",
+ sheet_x: 34,
+ sheet_y: 29,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F64B-1F3FC-200D-2640-FE0F",
+ non_qualified: "1F64B-1F3FC-200D-2640",
+ image: "1f64b-1f3fc-200d-2640-fe0f.png",
+ sheet_x: 34,
+ sheet_y: 30,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F64B-1F3FD-200D-2640-FE0F",
+ non_qualified: "1F64B-1F3FD-200D-2640",
+ image: "1f64b-1f3fd-200d-2640-fe0f.png",
+ sheet_x: 34,
+ sheet_y: 31,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F64B-1F3FE-200D-2640-FE0F",
+ non_qualified: "1F64B-1F3FE-200D-2640",
+ image: "1f64b-1f3fe-200d-2640-fe0f.png",
+ sheet_x: 34,
+ sheet_y: 32,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F64B-1F3FF-200D-2640-FE0F",
+ non_qualified: "1F64B-1F3FF-200D-2640",
+ image: "1f64b-1f3ff-200d-2640-fe0f.png",
+ sheet_x: 34,
+ sheet_y: 33,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ obsoletes: "1F64B",
+ },
+ },
+ deaf_person: {
+ char: "🧏",
+ key: "deaf_person",
+ keywords: ["deaf_person", "DEAF PERSON"],
+ category: "people",
+ lib: {
+ name: "DEAF PERSON",
+ unified: "1F9CF",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f9cf.png",
+ sheet_x: 47,
+ sheet_y: 7,
+ short_name: "deaf_person",
+ short_names: ["deaf_person"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-gesture",
+ sort_order: 274,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F9CF-1F3FB",
+ non_qualified: null,
+ image: "1f9cf-1f3fb.png",
+ sheet_x: 47,
+ sheet_y: 8,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F9CF-1F3FC",
+ non_qualified: null,
+ image: "1f9cf-1f3fc.png",
+ sheet_x: 47,
+ sheet_y: 9,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F9CF-1F3FD",
+ non_qualified: null,
+ image: "1f9cf-1f3fd.png",
+ sheet_x: 47,
+ sheet_y: 10,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F9CF-1F3FE",
+ non_qualified: null,
+ image: "1f9cf-1f3fe.png",
+ sheet_x: 47,
+ sheet_y: 11,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F9CF-1F3FF",
+ non_qualified: null,
+ image: "1f9cf-1f3ff.png",
+ sheet_x: 47,
+ sheet_y: 12,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ deaf_man: {
+ char: "🧏♂️",
+ key: "deaf_man",
+ keywords: ["deaf_man", "DEAF MAN"],
+ category: "people",
+ lib: {
+ name: "DEAF MAN",
+ unified: "1F9CF-200D-2642-FE0F",
+ non_qualified: "1F9CF-200D-2642",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f9cf-200d-2642-fe0f.png",
+ sheet_x: 47,
+ sheet_y: 1,
+ short_name: "deaf_man",
+ short_names: ["deaf_man"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-gesture",
+ sort_order: 275,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F9CF-1F3FB-200D-2642-FE0F",
+ non_qualified: "1F9CF-1F3FB-200D-2642",
+ image: "1f9cf-1f3fb-200d-2642-fe0f.png",
+ sheet_x: 47,
+ sheet_y: 2,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F9CF-1F3FC-200D-2642-FE0F",
+ non_qualified: "1F9CF-1F3FC-200D-2642",
+ image: "1f9cf-1f3fc-200d-2642-fe0f.png",
+ sheet_x: 47,
+ sheet_y: 3,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F9CF-1F3FD-200D-2642-FE0F",
+ non_qualified: "1F9CF-1F3FD-200D-2642",
+ image: "1f9cf-1f3fd-200d-2642-fe0f.png",
+ sheet_x: 47,
+ sheet_y: 4,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F9CF-1F3FE-200D-2642-FE0F",
+ non_qualified: "1F9CF-1F3FE-200D-2642",
+ image: "1f9cf-1f3fe-200d-2642-fe0f.png",
+ sheet_x: 47,
+ sheet_y: 5,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F9CF-1F3FF-200D-2642-FE0F",
+ non_qualified: "1F9CF-1F3FF-200D-2642",
+ image: "1f9cf-1f3ff-200d-2642-fe0f.png",
+ sheet_x: 47,
+ sheet_y: 6,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ deaf_woman: {
+ char: "🧏♀️",
+ key: "deaf_woman",
+ keywords: ["deaf_woman", "DEAF WOMAN"],
+ category: "people",
+ lib: {
+ name: "DEAF WOMAN",
+ unified: "1F9CF-200D-2640-FE0F",
+ non_qualified: "1F9CF-200D-2640",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f9cf-200d-2640-fe0f.png",
+ sheet_x: 46,
+ sheet_y: 56,
+ short_name: "deaf_woman",
+ short_names: ["deaf_woman"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-gesture",
+ sort_order: 276,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F9CF-1F3FB-200D-2640-FE0F",
+ non_qualified: "1F9CF-1F3FB-200D-2640",
+ image: "1f9cf-1f3fb-200d-2640-fe0f.png",
+ sheet_x: 46,
+ sheet_y: 57,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F9CF-1F3FC-200D-2640-FE0F",
+ non_qualified: "1F9CF-1F3FC-200D-2640",
+ image: "1f9cf-1f3fc-200d-2640-fe0f.png",
+ sheet_x: 46,
+ sheet_y: 58,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F9CF-1F3FD-200D-2640-FE0F",
+ non_qualified: "1F9CF-1F3FD-200D-2640",
+ image: "1f9cf-1f3fd-200d-2640-fe0f.png",
+ sheet_x: 46,
+ sheet_y: 59,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F9CF-1F3FE-200D-2640-FE0F",
+ non_qualified: "1F9CF-1F3FE-200D-2640",
+ image: "1f9cf-1f3fe-200d-2640-fe0f.png",
+ sheet_x: 46,
+ sheet_y: 60,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F9CF-1F3FF-200D-2640-FE0F",
+ non_qualified: "1F9CF-1F3FF-200D-2640",
+ image: "1f9cf-1f3ff-200d-2640-fe0f.png",
+ sheet_x: 47,
+ sheet_y: 0,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ bow: {
+ char: "🙇",
+ key: "bow",
+ keywords: ["bow", "PERSON BOWING DEEPLY"],
+ category: "people",
+ lib: {
+ name: "PERSON BOWING DEEPLY",
+ unified: "1F647",
+ non_qualified: null,
+ docomo: null,
+ au: "EAD9",
+ softbank: "E426",
+ google: "FE353",
+ image: "1f647.png",
+ sheet_x: 34,
+ sheet_y: 19,
+ short_name: "bow",
+ short_names: ["bow"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-gesture",
+ sort_order: 277,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F647-1F3FB",
+ non_qualified: null,
+ image: "1f647-1f3fb.png",
+ sheet_x: 34,
+ sheet_y: 20,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F647-1F3FC",
+ non_qualified: null,
+ image: "1f647-1f3fc.png",
+ sheet_x: 34,
+ sheet_y: 21,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F647-1F3FD",
+ non_qualified: null,
+ image: "1f647-1f3fd.png",
+ sheet_x: 34,
+ sheet_y: 22,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F647-1F3FE",
+ non_qualified: null,
+ image: "1f647-1f3fe.png",
+ sheet_x: 34,
+ sheet_y: 23,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F647-1F3FF",
+ non_qualified: null,
+ image: "1f647-1f3ff.png",
+ sheet_x: 34,
+ sheet_y: 24,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ "man-bowing": {
+ char: "🙇♂️",
+ key: "man-bowing",
+ keywords: ["man-bowing", "MAN BOWING"],
+ category: "people",
+ lib: {
+ name: "MAN BOWING",
+ unified: "1F647-200D-2642-FE0F",
+ non_qualified: "1F647-200D-2642",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f647-200d-2642-fe0f.png",
+ sheet_x: 34,
+ sheet_y: 13,
+ short_name: "man-bowing",
+ short_names: ["man-bowing"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-gesture",
+ sort_order: 278,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F647-1F3FB-200D-2642-FE0F",
+ non_qualified: "1F647-1F3FB-200D-2642",
+ image: "1f647-1f3fb-200d-2642-fe0f.png",
+ sheet_x: 34,
+ sheet_y: 14,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F647-1F3FC-200D-2642-FE0F",
+ non_qualified: "1F647-1F3FC-200D-2642",
+ image: "1f647-1f3fc-200d-2642-fe0f.png",
+ sheet_x: 34,
+ sheet_y: 15,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F647-1F3FD-200D-2642-FE0F",
+ non_qualified: "1F647-1F3FD-200D-2642",
+ image: "1f647-1f3fd-200d-2642-fe0f.png",
+ sheet_x: 34,
+ sheet_y: 16,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F647-1F3FE-200D-2642-FE0F",
+ non_qualified: "1F647-1F3FE-200D-2642",
+ image: "1f647-1f3fe-200d-2642-fe0f.png",
+ sheet_x: 34,
+ sheet_y: 17,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F647-1F3FF-200D-2642-FE0F",
+ non_qualified: "1F647-1F3FF-200D-2642",
+ image: "1f647-1f3ff-200d-2642-fe0f.png",
+ sheet_x: 34,
+ sheet_y: 18,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ "woman-bowing": {
+ char: "🙇♀️",
+ key: "woman-bowing",
+ keywords: ["woman-bowing", "WOMAN BOWING"],
+ category: "people",
+ lib: {
+ name: "WOMAN BOWING",
+ unified: "1F647-200D-2640-FE0F",
+ non_qualified: "1F647-200D-2640",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f647-200d-2640-fe0f.png",
+ sheet_x: 34,
+ sheet_y: 7,
+ short_name: "woman-bowing",
+ short_names: ["woman-bowing"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-gesture",
+ sort_order: 279,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F647-1F3FB-200D-2640-FE0F",
+ non_qualified: "1F647-1F3FB-200D-2640",
+ image: "1f647-1f3fb-200d-2640-fe0f.png",
+ sheet_x: 34,
+ sheet_y: 8,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F647-1F3FC-200D-2640-FE0F",
+ non_qualified: "1F647-1F3FC-200D-2640",
+ image: "1f647-1f3fc-200d-2640-fe0f.png",
+ sheet_x: 34,
+ sheet_y: 9,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F647-1F3FD-200D-2640-FE0F",
+ non_qualified: "1F647-1F3FD-200D-2640",
+ image: "1f647-1f3fd-200d-2640-fe0f.png",
+ sheet_x: 34,
+ sheet_y: 10,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F647-1F3FE-200D-2640-FE0F",
+ non_qualified: "1F647-1F3FE-200D-2640",
+ image: "1f647-1f3fe-200d-2640-fe0f.png",
+ sheet_x: 34,
+ sheet_y: 11,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F647-1F3FF-200D-2640-FE0F",
+ non_qualified: "1F647-1F3FF-200D-2640",
+ image: "1f647-1f3ff-200d-2640-fe0f.png",
+ sheet_x: 34,
+ sheet_y: 12,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ "man-facepalming": {
+ char: "🤦♂️",
+ key: "man-facepalming",
+ keywords: ["man-facepalming", "MAN FACEPALMING"],
+ category: "people",
+ lib: {
+ name: "MAN FACEPALMING",
+ unified: "1F926-200D-2642-FE0F",
+ non_qualified: "1F926-200D-2642",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f926-200d-2642-fe0f.png",
+ sheet_x: 40,
+ sheet_y: 26,
+ short_name: "man-facepalming",
+ short_names: ["man-facepalming"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-gesture",
+ sort_order: 281,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F926-1F3FB-200D-2642-FE0F",
+ non_qualified: "1F926-1F3FB-200D-2642",
+ image: "1f926-1f3fb-200d-2642-fe0f.png",
+ sheet_x: 40,
+ sheet_y: 27,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F926-1F3FC-200D-2642-FE0F",
+ non_qualified: "1F926-1F3FC-200D-2642",
+ image: "1f926-1f3fc-200d-2642-fe0f.png",
+ sheet_x: 40,
+ sheet_y: 28,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F926-1F3FD-200D-2642-FE0F",
+ non_qualified: "1F926-1F3FD-200D-2642",
+ image: "1f926-1f3fd-200d-2642-fe0f.png",
+ sheet_x: 40,
+ sheet_y: 29,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F926-1F3FE-200D-2642-FE0F",
+ non_qualified: "1F926-1F3FE-200D-2642",
+ image: "1f926-1f3fe-200d-2642-fe0f.png",
+ sheet_x: 40,
+ sheet_y: 30,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F926-1F3FF-200D-2642-FE0F",
+ non_qualified: "1F926-1F3FF-200D-2642",
+ image: "1f926-1f3ff-200d-2642-fe0f.png",
+ sheet_x: 40,
+ sheet_y: 31,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ "woman-facepalming": {
+ char: "🤦♀️",
+ key: "woman-facepalming",
+ keywords: ["woman-facepalming", "WOMAN FACEPALMING"],
+ category: "people",
+ lib: {
+ name: "WOMAN FACEPALMING",
+ unified: "1F926-200D-2640-FE0F",
+ non_qualified: "1F926-200D-2640",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f926-200d-2640-fe0f.png",
+ sheet_x: 40,
+ sheet_y: 20,
+ short_name: "woman-facepalming",
+ short_names: ["woman-facepalming"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-gesture",
+ sort_order: 282,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F926-1F3FB-200D-2640-FE0F",
+ non_qualified: "1F926-1F3FB-200D-2640",
+ image: "1f926-1f3fb-200d-2640-fe0f.png",
+ sheet_x: 40,
+ sheet_y: 21,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F926-1F3FC-200D-2640-FE0F",
+ non_qualified: "1F926-1F3FC-200D-2640",
+ image: "1f926-1f3fc-200d-2640-fe0f.png",
+ sheet_x: 40,
+ sheet_y: 22,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F926-1F3FD-200D-2640-FE0F",
+ non_qualified: "1F926-1F3FD-200D-2640",
+ image: "1f926-1f3fd-200d-2640-fe0f.png",
+ sheet_x: 40,
+ sheet_y: 23,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F926-1F3FE-200D-2640-FE0F",
+ non_qualified: "1F926-1F3FE-200D-2640",
+ image: "1f926-1f3fe-200d-2640-fe0f.png",
+ sheet_x: 40,
+ sheet_y: 24,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F926-1F3FF-200D-2640-FE0F",
+ non_qualified: "1F926-1F3FF-200D-2640",
+ image: "1f926-1f3ff-200d-2640-fe0f.png",
+ sheet_x: 40,
+ sheet_y: 25,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ "man-shrugging": {
+ char: "🤷♂️",
+ key: "man-shrugging",
+ keywords: ["man-shrugging", "MAN SHRUGGING"],
+ category: "people",
+ lib: {
+ name: "MAN SHRUGGING",
+ unified: "1F937-200D-2642-FE0F",
+ non_qualified: "1F937-200D-2642",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f937-200d-2642-fe0f.png",
+ sheet_x: 41,
+ sheet_y: 46,
+ short_name: "man-shrugging",
+ short_names: ["man-shrugging"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-gesture",
+ sort_order: 284,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F937-1F3FB-200D-2642-FE0F",
+ non_qualified: "1F937-1F3FB-200D-2642",
+ image: "1f937-1f3fb-200d-2642-fe0f.png",
+ sheet_x: 41,
+ sheet_y: 47,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F937-1F3FC-200D-2642-FE0F",
+ non_qualified: "1F937-1F3FC-200D-2642",
+ image: "1f937-1f3fc-200d-2642-fe0f.png",
+ sheet_x: 41,
+ sheet_y: 48,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F937-1F3FD-200D-2642-FE0F",
+ non_qualified: "1F937-1F3FD-200D-2642",
+ image: "1f937-1f3fd-200d-2642-fe0f.png",
+ sheet_x: 41,
+ sheet_y: 49,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F937-1F3FE-200D-2642-FE0F",
+ non_qualified: "1F937-1F3FE-200D-2642",
+ image: "1f937-1f3fe-200d-2642-fe0f.png",
+ sheet_x: 41,
+ sheet_y: 50,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F937-1F3FF-200D-2642-FE0F",
+ non_qualified: "1F937-1F3FF-200D-2642",
+ image: "1f937-1f3ff-200d-2642-fe0f.png",
+ sheet_x: 41,
+ sheet_y: 51,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ "woman-shrugging": {
+ char: "🤷♀️",
+ key: "woman-shrugging",
+ keywords: ["woman-shrugging", "WOMAN SHRUGGING"],
+ category: "people",
+ lib: {
+ name: "WOMAN SHRUGGING",
+ unified: "1F937-200D-2640-FE0F",
+ non_qualified: "1F937-200D-2640",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f937-200d-2640-fe0f.png",
+ sheet_x: 41,
+ sheet_y: 40,
+ short_name: "woman-shrugging",
+ short_names: ["woman-shrugging"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-gesture",
+ sort_order: 285,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F937-1F3FB-200D-2640-FE0F",
+ non_qualified: "1F937-1F3FB-200D-2640",
+ image: "1f937-1f3fb-200d-2640-fe0f.png",
+ sheet_x: 41,
+ sheet_y: 41,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F937-1F3FC-200D-2640-FE0F",
+ non_qualified: "1F937-1F3FC-200D-2640",
+ image: "1f937-1f3fc-200d-2640-fe0f.png",
+ sheet_x: 41,
+ sheet_y: 42,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F937-1F3FD-200D-2640-FE0F",
+ non_qualified: "1F937-1F3FD-200D-2640",
+ image: "1f937-1f3fd-200d-2640-fe0f.png",
+ sheet_x: 41,
+ sheet_y: 43,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F937-1F3FE-200D-2640-FE0F",
+ non_qualified: "1F937-1F3FE-200D-2640",
+ image: "1f937-1f3fe-200d-2640-fe0f.png",
+ sheet_x: 41,
+ sheet_y: 44,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F937-1F3FF-200D-2640-FE0F",
+ non_qualified: "1F937-1F3FF-200D-2640",
+ image: "1f937-1f3ff-200d-2640-fe0f.png",
+ sheet_x: 41,
+ sheet_y: 45,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ health_worker: {
+ char: "🧑⚕️",
+ key: "health_worker",
+ keywords: ["health_worker", "HEALTH WORKER"],
+ category: "people",
+ lib: {
+ name: "HEALTH WORKER",
+ unified: "1F9D1-200D-2695-FE0F",
+ non_qualified: "1F9D1-200D-2695",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f9d1-200d-2695-fe0f.png",
+ sheet_x: 49,
+ sheet_y: 50,
+ short_name: "health_worker",
+ short_names: ["health_worker"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-role",
+ sort_order: 286,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F9D1-1F3FB-200D-2695-FE0F",
+ non_qualified: "1F9D1-1F3FB-200D-2695",
+ image: "1f9d1-1f3fb-200d-2695-fe0f.png",
+ sheet_x: 49,
+ sheet_y: 51,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F9D1-1F3FC-200D-2695-FE0F",
+ non_qualified: "1F9D1-1F3FC-200D-2695",
+ image: "1f9d1-1f3fc-200d-2695-fe0f.png",
+ sheet_x: 49,
+ sheet_y: 52,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F9D1-1F3FD-200D-2695-FE0F",
+ non_qualified: "1F9D1-1F3FD-200D-2695",
+ image: "1f9d1-1f3fd-200d-2695-fe0f.png",
+ sheet_x: 49,
+ sheet_y: 53,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F9D1-1F3FE-200D-2695-FE0F",
+ non_qualified: "1F9D1-1F3FE-200D-2695",
+ image: "1f9d1-1f3fe-200d-2695-fe0f.png",
+ sheet_x: 49,
+ sheet_y: 54,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F9D1-1F3FF-200D-2695-FE0F",
+ non_qualified: "1F9D1-1F3FF-200D-2695",
+ image: "1f9d1-1f3ff-200d-2695-fe0f.png",
+ sheet_x: 49,
+ sheet_y: 55,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ "male-doctor": {
+ char: "👨⚕️",
+ key: "male-doctor",
+ keywords: ["male-doctor", "MAN HEALTH WORKER"],
+ category: "people",
+ lib: {
+ name: "MAN HEALTH WORKER",
+ unified: "1F468-200D-2695-FE0F",
+ non_qualified: "1F468-200D-2695",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f468-200d-2695-fe0f.png",
+ sheet_x: 16,
+ sheet_y: 5,
+ short_name: "male-doctor",
+ short_names: ["male-doctor"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-role",
+ sort_order: 287,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F468-1F3FB-200D-2695-FE0F",
+ non_qualified: "1F468-1F3FB-200D-2695",
+ image: "1f468-1f3fb-200d-2695-fe0f.png",
+ sheet_x: 16,
+ sheet_y: 6,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F468-1F3FC-200D-2695-FE0F",
+ non_qualified: "1F468-1F3FC-200D-2695",
+ image: "1f468-1f3fc-200d-2695-fe0f.png",
+ sheet_x: 16,
+ sheet_y: 7,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F468-1F3FD-200D-2695-FE0F",
+ non_qualified: "1F468-1F3FD-200D-2695",
+ image: "1f468-1f3fd-200d-2695-fe0f.png",
+ sheet_x: 16,
+ sheet_y: 8,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F468-1F3FE-200D-2695-FE0F",
+ non_qualified: "1F468-1F3FE-200D-2695",
+ image: "1f468-1f3fe-200d-2695-fe0f.png",
+ sheet_x: 16,
+ sheet_y: 9,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F468-1F3FF-200D-2695-FE0F",
+ non_qualified: "1F468-1F3FF-200D-2695",
+ image: "1f468-1f3ff-200d-2695-fe0f.png",
+ sheet_x: 16,
+ sheet_y: 10,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ "female-doctor": {
+ char: "👩⚕️",
+ key: "female-doctor",
+ keywords: ["female-doctor", "WOMAN HEALTH WORKER"],
+ category: "people",
+ lib: {
+ name: "WOMAN HEALTH WORKER",
+ unified: "1F469-200D-2695-FE0F",
+ non_qualified: "1F469-200D-2695",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f469-200d-2695-fe0f.png",
+ sheet_x: 19,
+ sheet_y: 34,
+ short_name: "female-doctor",
+ short_names: ["female-doctor"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-role",
+ sort_order: 288,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F469-1F3FB-200D-2695-FE0F",
+ non_qualified: "1F469-1F3FB-200D-2695",
+ image: "1f469-1f3fb-200d-2695-fe0f.png",
+ sheet_x: 19,
+ sheet_y: 35,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F469-1F3FC-200D-2695-FE0F",
+ non_qualified: "1F469-1F3FC-200D-2695",
+ image: "1f469-1f3fc-200d-2695-fe0f.png",
+ sheet_x: 19,
+ sheet_y: 36,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F469-1F3FD-200D-2695-FE0F",
+ non_qualified: "1F469-1F3FD-200D-2695",
+ image: "1f469-1f3fd-200d-2695-fe0f.png",
+ sheet_x: 19,
+ sheet_y: 37,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F469-1F3FE-200D-2695-FE0F",
+ non_qualified: "1F469-1F3FE-200D-2695",
+ image: "1f469-1f3fe-200d-2695-fe0f.png",
+ sheet_x: 19,
+ sheet_y: 38,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F469-1F3FF-200D-2695-FE0F",
+ non_qualified: "1F469-1F3FF-200D-2695",
+ image: "1f469-1f3ff-200d-2695-fe0f.png",
+ sheet_x: 19,
+ sheet_y: 39,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ student: {
+ char: "🧑🎓",
+ key: "student",
+ keywords: ["student", "STUDENT"],
+ category: "people",
+ lib: {
+ name: "STUDENT",
+ unified: "1F9D1-200D-1F393",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f9d1-200d-1f393.png",
+ sheet_x: 47,
+ sheet_y: 38,
+ short_name: "student",
+ short_names: ["student"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-role",
+ sort_order: 289,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F9D1-1F3FB-200D-1F393",
+ non_qualified: null,
+ image: "1f9d1-1f3fb-200d-1f393.png",
+ sheet_x: 47,
+ sheet_y: 39,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F9D1-1F3FC-200D-1F393",
+ non_qualified: null,
+ image: "1f9d1-1f3fc-200d-1f393.png",
+ sheet_x: 47,
+ sheet_y: 40,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F9D1-1F3FD-200D-1F393",
+ non_qualified: null,
+ image: "1f9d1-1f3fd-200d-1f393.png",
+ sheet_x: 47,
+ sheet_y: 41,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F9D1-1F3FE-200D-1F393",
+ non_qualified: null,
+ image: "1f9d1-1f3fe-200d-1f393.png",
+ sheet_x: 47,
+ sheet_y: 42,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F9D1-1F3FF-200D-1F393",
+ non_qualified: null,
+ image: "1f9d1-1f3ff-200d-1f393.png",
+ sheet_x: 47,
+ sheet_y: 43,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ "male-student": {
+ char: "👨🎓",
+ key: "male-student",
+ keywords: ["male-student", "MAN STUDENT"],
+ category: "people",
+ lib: {
+ name: "MAN STUDENT",
+ unified: "1F468-200D-1F393",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f468-200d-1f393.png",
+ sheet_x: 14,
+ sheet_y: 4,
+ short_name: "male-student",
+ short_names: ["male-student"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-role",
+ sort_order: 290,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F468-1F3FB-200D-1F393",
+ non_qualified: null,
+ image: "1f468-1f3fb-200d-1f393.png",
+ sheet_x: 14,
+ sheet_y: 5,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F468-1F3FC-200D-1F393",
+ non_qualified: null,
+ image: "1f468-1f3fc-200d-1f393.png",
+ sheet_x: 14,
+ sheet_y: 6,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F468-1F3FD-200D-1F393",
+ non_qualified: null,
+ image: "1f468-1f3fd-200d-1f393.png",
+ sheet_x: 14,
+ sheet_y: 7,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F468-1F3FE-200D-1F393",
+ non_qualified: null,
+ image: "1f468-1f3fe-200d-1f393.png",
+ sheet_x: 14,
+ sheet_y: 8,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F468-1F3FF-200D-1F393",
+ non_qualified: null,
+ image: "1f468-1f3ff-200d-1f393.png",
+ sheet_x: 14,
+ sheet_y: 9,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ "female-student": {
+ char: "👩🎓",
+ key: "female-student",
+ keywords: ["female-student", "WOMAN STUDENT"],
+ category: "people",
+ lib: {
+ name: "WOMAN STUDENT",
+ unified: "1F469-200D-1F393",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f469-200d-1f393.png",
+ sheet_x: 17,
+ sheet_y: 38,
+ short_name: "female-student",
+ short_names: ["female-student"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-role",
+ sort_order: 291,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F469-1F3FB-200D-1F393",
+ non_qualified: null,
+ image: "1f469-1f3fb-200d-1f393.png",
+ sheet_x: 17,
+ sheet_y: 39,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F469-1F3FC-200D-1F393",
+ non_qualified: null,
+ image: "1f469-1f3fc-200d-1f393.png",
+ sheet_x: 17,
+ sheet_y: 40,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F469-1F3FD-200D-1F393",
+ non_qualified: null,
+ image: "1f469-1f3fd-200d-1f393.png",
+ sheet_x: 17,
+ sheet_y: 41,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F469-1F3FE-200D-1F393",
+ non_qualified: null,
+ image: "1f469-1f3fe-200d-1f393.png",
+ sheet_x: 17,
+ sheet_y: 42,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F469-1F3FF-200D-1F393",
+ non_qualified: null,
+ image: "1f469-1f3ff-200d-1f393.png",
+ sheet_x: 17,
+ sheet_y: 43,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ teacher: {
+ char: "🧑🏫",
+ key: "teacher",
+ keywords: ["teacher", "TEACHER"],
+ category: "people",
+ lib: {
+ name: "TEACHER",
+ unified: "1F9D1-200D-1F3EB",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f9d1-200d-1f3eb.png",
+ sheet_x: 47,
+ sheet_y: 56,
+ short_name: "teacher",
+ short_names: ["teacher"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-role",
+ sort_order: 292,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F9D1-1F3FB-200D-1F3EB",
+ non_qualified: null,
+ image: "1f9d1-1f3fb-200d-1f3eb.png",
+ sheet_x: 47,
+ sheet_y: 57,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F9D1-1F3FC-200D-1F3EB",
+ non_qualified: null,
+ image: "1f9d1-1f3fc-200d-1f3eb.png",
+ sheet_x: 47,
+ sheet_y: 58,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F9D1-1F3FD-200D-1F3EB",
+ non_qualified: null,
+ image: "1f9d1-1f3fd-200d-1f3eb.png",
+ sheet_x: 47,
+ sheet_y: 59,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F9D1-1F3FE-200D-1F3EB",
+ non_qualified: null,
+ image: "1f9d1-1f3fe-200d-1f3eb.png",
+ sheet_x: 47,
+ sheet_y: 60,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F9D1-1F3FF-200D-1F3EB",
+ non_qualified: null,
+ image: "1f9d1-1f3ff-200d-1f3eb.png",
+ sheet_x: 48,
+ sheet_y: 0,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ "male-teacher": {
+ char: "👨🏫",
+ key: "male-teacher",
+ keywords: ["male-teacher", "MAN TEACHER"],
+ category: "people",
+ lib: {
+ name: "MAN TEACHER",
+ unified: "1F468-200D-1F3EB",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f468-200d-1f3eb.png",
+ sheet_x: 14,
+ sheet_y: 22,
+ short_name: "male-teacher",
+ short_names: ["male-teacher"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-role",
+ sort_order: 293,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F468-1F3FB-200D-1F3EB",
+ non_qualified: null,
+ image: "1f468-1f3fb-200d-1f3eb.png",
+ sheet_x: 14,
+ sheet_y: 23,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F468-1F3FC-200D-1F3EB",
+ non_qualified: null,
+ image: "1f468-1f3fc-200d-1f3eb.png",
+ sheet_x: 14,
+ sheet_y: 24,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F468-1F3FD-200D-1F3EB",
+ non_qualified: null,
+ image: "1f468-1f3fd-200d-1f3eb.png",
+ sheet_x: 14,
+ sheet_y: 25,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F468-1F3FE-200D-1F3EB",
+ non_qualified: null,
+ image: "1f468-1f3fe-200d-1f3eb.png",
+ sheet_x: 14,
+ sheet_y: 26,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F468-1F3FF-200D-1F3EB",
+ non_qualified: null,
+ image: "1f468-1f3ff-200d-1f3eb.png",
+ sheet_x: 14,
+ sheet_y: 27,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ "female-teacher": {
+ char: "👩🏫",
+ key: "female-teacher",
+ keywords: ["female-teacher", "WOMAN TEACHER"],
+ category: "people",
+ lib: {
+ name: "WOMAN TEACHER",
+ unified: "1F469-200D-1F3EB",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f469-200d-1f3eb.png",
+ sheet_x: 17,
+ sheet_y: 56,
+ short_name: "female-teacher",
+ short_names: ["female-teacher"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-role",
+ sort_order: 294,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F469-1F3FB-200D-1F3EB",
+ non_qualified: null,
+ image: "1f469-1f3fb-200d-1f3eb.png",
+ sheet_x: 17,
+ sheet_y: 57,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F469-1F3FC-200D-1F3EB",
+ non_qualified: null,
+ image: "1f469-1f3fc-200d-1f3eb.png",
+ sheet_x: 17,
+ sheet_y: 58,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F469-1F3FD-200D-1F3EB",
+ non_qualified: null,
+ image: "1f469-1f3fd-200d-1f3eb.png",
+ sheet_x: 17,
+ sheet_y: 59,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F469-1F3FE-200D-1F3EB",
+ non_qualified: null,
+ image: "1f469-1f3fe-200d-1f3eb.png",
+ sheet_x: 17,
+ sheet_y: 60,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F469-1F3FF-200D-1F3EB",
+ non_qualified: null,
+ image: "1f469-1f3ff-200d-1f3eb.png",
+ sheet_x: 18,
+ sheet_y: 0,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ judge: {
+ char: "🧑⚖️",
+ key: "judge",
+ keywords: ["judge", "JUDGE"],
+ category: "people",
+ lib: {
+ name: "JUDGE",
+ unified: "1F9D1-200D-2696-FE0F",
+ non_qualified: "1F9D1-200D-2696",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f9d1-200d-2696-fe0f.png",
+ sheet_x: 49,
+ sheet_y: 56,
+ short_name: "judge",
+ short_names: ["judge"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-role",
+ sort_order: 295,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F9D1-1F3FB-200D-2696-FE0F",
+ non_qualified: "1F9D1-1F3FB-200D-2696",
+ image: "1f9d1-1f3fb-200d-2696-fe0f.png",
+ sheet_x: 49,
+ sheet_y: 57,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F9D1-1F3FC-200D-2696-FE0F",
+ non_qualified: "1F9D1-1F3FC-200D-2696",
+ image: "1f9d1-1f3fc-200d-2696-fe0f.png",
+ sheet_x: 49,
+ sheet_y: 58,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F9D1-1F3FD-200D-2696-FE0F",
+ non_qualified: "1F9D1-1F3FD-200D-2696",
+ image: "1f9d1-1f3fd-200d-2696-fe0f.png",
+ sheet_x: 49,
+ sheet_y: 59,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F9D1-1F3FE-200D-2696-FE0F",
+ non_qualified: "1F9D1-1F3FE-200D-2696",
+ image: "1f9d1-1f3fe-200d-2696-fe0f.png",
+ sheet_x: 49,
+ sheet_y: 60,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F9D1-1F3FF-200D-2696-FE0F",
+ non_qualified: "1F9D1-1F3FF-200D-2696",
+ image: "1f9d1-1f3ff-200d-2696-fe0f.png",
+ sheet_x: 50,
+ sheet_y: 0,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ "male-judge": {
+ char: "👨⚖️",
+ key: "male-judge",
+ keywords: ["male-judge", "MAN JUDGE"],
+ category: "people",
+ lib: {
+ name: "MAN JUDGE",
+ unified: "1F468-200D-2696-FE0F",
+ non_qualified: "1F468-200D-2696",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f468-200d-2696-fe0f.png",
+ sheet_x: 16,
+ sheet_y: 11,
+ short_name: "male-judge",
+ short_names: ["male-judge"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-role",
+ sort_order: 296,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F468-1F3FB-200D-2696-FE0F",
+ non_qualified: "1F468-1F3FB-200D-2696",
+ image: "1f468-1f3fb-200d-2696-fe0f.png",
+ sheet_x: 16,
+ sheet_y: 12,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F468-1F3FC-200D-2696-FE0F",
+ non_qualified: "1F468-1F3FC-200D-2696",
+ image: "1f468-1f3fc-200d-2696-fe0f.png",
+ sheet_x: 16,
+ sheet_y: 13,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F468-1F3FD-200D-2696-FE0F",
+ non_qualified: "1F468-1F3FD-200D-2696",
+ image: "1f468-1f3fd-200d-2696-fe0f.png",
+ sheet_x: 16,
+ sheet_y: 14,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F468-1F3FE-200D-2696-FE0F",
+ non_qualified: "1F468-1F3FE-200D-2696",
+ image: "1f468-1f3fe-200d-2696-fe0f.png",
+ sheet_x: 16,
+ sheet_y: 15,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F468-1F3FF-200D-2696-FE0F",
+ non_qualified: "1F468-1F3FF-200D-2696",
+ image: "1f468-1f3ff-200d-2696-fe0f.png",
+ sheet_x: 16,
+ sheet_y: 16,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ "female-judge": {
+ char: "👩⚖️",
+ key: "female-judge",
+ keywords: ["female-judge", "WOMAN JUDGE"],
+ category: "people",
+ lib: {
+ name: "WOMAN JUDGE",
+ unified: "1F469-200D-2696-FE0F",
+ non_qualified: "1F469-200D-2696",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f469-200d-2696-fe0f.png",
+ sheet_x: 19,
+ sheet_y: 40,
+ short_name: "female-judge",
+ short_names: ["female-judge"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-role",
+ sort_order: 297,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F469-1F3FB-200D-2696-FE0F",
+ non_qualified: "1F469-1F3FB-200D-2696",
+ image: "1f469-1f3fb-200d-2696-fe0f.png",
+ sheet_x: 19,
+ sheet_y: 41,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F469-1F3FC-200D-2696-FE0F",
+ non_qualified: "1F469-1F3FC-200D-2696",
+ image: "1f469-1f3fc-200d-2696-fe0f.png",
+ sheet_x: 19,
+ sheet_y: 42,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F469-1F3FD-200D-2696-FE0F",
+ non_qualified: "1F469-1F3FD-200D-2696",
+ image: "1f469-1f3fd-200d-2696-fe0f.png",
+ sheet_x: 19,
+ sheet_y: 43,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F469-1F3FE-200D-2696-FE0F",
+ non_qualified: "1F469-1F3FE-200D-2696",
+ image: "1f469-1f3fe-200d-2696-fe0f.png",
+ sheet_x: 19,
+ sheet_y: 44,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F469-1F3FF-200D-2696-FE0F",
+ non_qualified: "1F469-1F3FF-200D-2696",
+ image: "1f469-1f3ff-200d-2696-fe0f.png",
+ sheet_x: 19,
+ sheet_y: 45,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ farmer: {
+ char: "🧑🌾",
+ key: "farmer",
+ keywords: ["farmer", "FARMER"],
+ category: "people",
+ lib: {
+ name: "FARMER",
+ unified: "1F9D1-200D-1F33E",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f9d1-200d-1f33e.png",
+ sheet_x: 47,
+ sheet_y: 14,
+ short_name: "farmer",
+ short_names: ["farmer"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-role",
+ sort_order: 298,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F9D1-1F3FB-200D-1F33E",
+ non_qualified: null,
+ image: "1f9d1-1f3fb-200d-1f33e.png",
+ sheet_x: 47,
+ sheet_y: 15,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F9D1-1F3FC-200D-1F33E",
+ non_qualified: null,
+ image: "1f9d1-1f3fc-200d-1f33e.png",
+ sheet_x: 47,
+ sheet_y: 16,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F9D1-1F3FD-200D-1F33E",
+ non_qualified: null,
+ image: "1f9d1-1f3fd-200d-1f33e.png",
+ sheet_x: 47,
+ sheet_y: 17,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F9D1-1F3FE-200D-1F33E",
+ non_qualified: null,
+ image: "1f9d1-1f3fe-200d-1f33e.png",
+ sheet_x: 47,
+ sheet_y: 18,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F9D1-1F3FF-200D-1F33E",
+ non_qualified: null,
+ image: "1f9d1-1f3ff-200d-1f33e.png",
+ sheet_x: 47,
+ sheet_y: 19,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ "male-farmer": {
+ char: "👨🌾",
+ key: "male-farmer",
+ keywords: ["male-farmer", "MAN FARMER"],
+ category: "people",
+ lib: {
+ name: "MAN FARMER",
+ unified: "1F468-200D-1F33E",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f468-200d-1f33e.png",
+ sheet_x: 13,
+ sheet_y: 47,
+ short_name: "male-farmer",
+ short_names: ["male-farmer"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-role",
+ sort_order: 299,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F468-1F3FB-200D-1F33E",
+ non_qualified: null,
+ image: "1f468-1f3fb-200d-1f33e.png",
+ sheet_x: 13,
+ sheet_y: 48,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F468-1F3FC-200D-1F33E",
+ non_qualified: null,
+ image: "1f468-1f3fc-200d-1f33e.png",
+ sheet_x: 13,
+ sheet_y: 49,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F468-1F3FD-200D-1F33E",
+ non_qualified: null,
+ image: "1f468-1f3fd-200d-1f33e.png",
+ sheet_x: 13,
+ sheet_y: 50,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F468-1F3FE-200D-1F33E",
+ non_qualified: null,
+ image: "1f468-1f3fe-200d-1f33e.png",
+ sheet_x: 13,
+ sheet_y: 51,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F468-1F3FF-200D-1F33E",
+ non_qualified: null,
+ image: "1f468-1f3ff-200d-1f33e.png",
+ sheet_x: 13,
+ sheet_y: 52,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ "female-farmer": {
+ char: "👩🌾",
+ key: "female-farmer",
+ keywords: ["female-farmer", "WOMAN FARMER"],
+ category: "people",
+ lib: {
+ name: "WOMAN FARMER",
+ unified: "1F469-200D-1F33E",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f469-200d-1f33e.png",
+ sheet_x: 17,
+ sheet_y: 20,
+ short_name: "female-farmer",
+ short_names: ["female-farmer"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-role",
+ sort_order: 300,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F469-1F3FB-200D-1F33E",
+ non_qualified: null,
+ image: "1f469-1f3fb-200d-1f33e.png",
+ sheet_x: 17,
+ sheet_y: 21,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F469-1F3FC-200D-1F33E",
+ non_qualified: null,
+ image: "1f469-1f3fc-200d-1f33e.png",
+ sheet_x: 17,
+ sheet_y: 22,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F469-1F3FD-200D-1F33E",
+ non_qualified: null,
+ image: "1f469-1f3fd-200d-1f33e.png",
+ sheet_x: 17,
+ sheet_y: 23,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F469-1F3FE-200D-1F33E",
+ non_qualified: null,
+ image: "1f469-1f3fe-200d-1f33e.png",
+ sheet_x: 17,
+ sheet_y: 24,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F469-1F3FF-200D-1F33E",
+ non_qualified: null,
+ image: "1f469-1f3ff-200d-1f33e.png",
+ sheet_x: 17,
+ sheet_y: 25,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ cook: {
+ char: "🧑🍳",
+ key: "cook",
+ keywords: ["cook", "COOK"],
+ category: "people",
+ lib: {
+ name: "COOK",
+ unified: "1F9D1-200D-1F373",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f9d1-200d-1f373.png",
+ sheet_x: 47,
+ sheet_y: 20,
+ short_name: "cook",
+ short_names: ["cook"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-role",
+ sort_order: 301,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F9D1-1F3FB-200D-1F373",
+ non_qualified: null,
+ image: "1f9d1-1f3fb-200d-1f373.png",
+ sheet_x: 47,
+ sheet_y: 21,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F9D1-1F3FC-200D-1F373",
+ non_qualified: null,
+ image: "1f9d1-1f3fc-200d-1f373.png",
+ sheet_x: 47,
+ sheet_y: 22,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F9D1-1F3FD-200D-1F373",
+ non_qualified: null,
+ image: "1f9d1-1f3fd-200d-1f373.png",
+ sheet_x: 47,
+ sheet_y: 23,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F9D1-1F3FE-200D-1F373",
+ non_qualified: null,
+ image: "1f9d1-1f3fe-200d-1f373.png",
+ sheet_x: 47,
+ sheet_y: 24,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F9D1-1F3FF-200D-1F373",
+ non_qualified: null,
+ image: "1f9d1-1f3ff-200d-1f373.png",
+ sheet_x: 47,
+ sheet_y: 25,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ "male-cook": {
+ char: "👨🍳",
+ key: "male-cook",
+ keywords: ["male-cook", "MAN COOK"],
+ category: "people",
+ lib: {
+ name: "MAN COOK",
+ unified: "1F468-200D-1F373",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f468-200d-1f373.png",
+ sheet_x: 13,
+ sheet_y: 53,
+ short_name: "male-cook",
+ short_names: ["male-cook"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-role",
+ sort_order: 302,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F468-1F3FB-200D-1F373",
+ non_qualified: null,
+ image: "1f468-1f3fb-200d-1f373.png",
+ sheet_x: 13,
+ sheet_y: 54,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F468-1F3FC-200D-1F373",
+ non_qualified: null,
+ image: "1f468-1f3fc-200d-1f373.png",
+ sheet_x: 13,
+ sheet_y: 55,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F468-1F3FD-200D-1F373",
+ non_qualified: null,
+ image: "1f468-1f3fd-200d-1f373.png",
+ sheet_x: 13,
+ sheet_y: 56,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F468-1F3FE-200D-1F373",
+ non_qualified: null,
+ image: "1f468-1f3fe-200d-1f373.png",
+ sheet_x: 13,
+ sheet_y: 57,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F468-1F3FF-200D-1F373",
+ non_qualified: null,
+ image: "1f468-1f3ff-200d-1f373.png",
+ sheet_x: 13,
+ sheet_y: 58,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ "female-cook": {
+ char: "👩🍳",
+ key: "female-cook",
+ keywords: ["female-cook", "WOMAN COOK"],
+ category: "people",
+ lib: {
+ name: "WOMAN COOK",
+ unified: "1F469-200D-1F373",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f469-200d-1f373.png",
+ sheet_x: 17,
+ sheet_y: 26,
+ short_name: "female-cook",
+ short_names: ["female-cook"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-role",
+ sort_order: 303,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F469-1F3FB-200D-1F373",
+ non_qualified: null,
+ image: "1f469-1f3fb-200d-1f373.png",
+ sheet_x: 17,
+ sheet_y: 27,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F469-1F3FC-200D-1F373",
+ non_qualified: null,
+ image: "1f469-1f3fc-200d-1f373.png",
+ sheet_x: 17,
+ sheet_y: 28,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F469-1F3FD-200D-1F373",
+ non_qualified: null,
+ image: "1f469-1f3fd-200d-1f373.png",
+ sheet_x: 17,
+ sheet_y: 29,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F469-1F3FE-200D-1F373",
+ non_qualified: null,
+ image: "1f469-1f3fe-200d-1f373.png",
+ sheet_x: 17,
+ sheet_y: 30,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F469-1F3FF-200D-1F373",
+ non_qualified: null,
+ image: "1f469-1f3ff-200d-1f373.png",
+ sheet_x: 17,
+ sheet_y: 31,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ mechanic: {
+ char: "🧑🔧",
+ key: "mechanic",
+ keywords: ["mechanic", "MECHANIC"],
+ category: "people",
+ lib: {
+ name: "MECHANIC",
+ unified: "1F9D1-200D-1F527",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f9d1-200d-1f527.png",
+ sheet_x: 48,
+ sheet_y: 19,
+ short_name: "mechanic",
+ short_names: ["mechanic"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-role",
+ sort_order: 304,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F9D1-1F3FB-200D-1F527",
+ non_qualified: null,
+ image: "1f9d1-1f3fb-200d-1f527.png",
+ sheet_x: 48,
+ sheet_y: 20,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F9D1-1F3FC-200D-1F527",
+ non_qualified: null,
+ image: "1f9d1-1f3fc-200d-1f527.png",
+ sheet_x: 48,
+ sheet_y: 21,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F9D1-1F3FD-200D-1F527",
+ non_qualified: null,
+ image: "1f9d1-1f3fd-200d-1f527.png",
+ sheet_x: 48,
+ sheet_y: 22,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F9D1-1F3FE-200D-1F527",
+ non_qualified: null,
+ image: "1f9d1-1f3fe-200d-1f527.png",
+ sheet_x: 48,
+ sheet_y: 23,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F9D1-1F3FF-200D-1F527",
+ non_qualified: null,
+ image: "1f9d1-1f3ff-200d-1f527.png",
+ sheet_x: 48,
+ sheet_y: 24,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ "male-mechanic": {
+ char: "👨🔧",
+ key: "male-mechanic",
+ keywords: ["male-mechanic", "MAN MECHANIC"],
+ category: "people",
+ lib: {
+ name: "MAN MECHANIC",
+ unified: "1F468-200D-1F527",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f468-200d-1f527.png",
+ sheet_x: 15,
+ sheet_y: 0,
+ short_name: "male-mechanic",
+ short_names: ["male-mechanic"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-role",
+ sort_order: 305,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F468-1F3FB-200D-1F527",
+ non_qualified: null,
+ image: "1f468-1f3fb-200d-1f527.png",
+ sheet_x: 15,
+ sheet_y: 1,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F468-1F3FC-200D-1F527",
+ non_qualified: null,
+ image: "1f468-1f3fc-200d-1f527.png",
+ sheet_x: 15,
+ sheet_y: 2,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F468-1F3FD-200D-1F527",
+ non_qualified: null,
+ image: "1f468-1f3fd-200d-1f527.png",
+ sheet_x: 15,
+ sheet_y: 3,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F468-1F3FE-200D-1F527",
+ non_qualified: null,
+ image: "1f468-1f3fe-200d-1f527.png",
+ sheet_x: 15,
+ sheet_y: 4,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F468-1F3FF-200D-1F527",
+ non_qualified: null,
+ image: "1f468-1f3ff-200d-1f527.png",
+ sheet_x: 15,
+ sheet_y: 5,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ "female-mechanic": {
+ char: "👩🔧",
+ key: "female-mechanic",
+ keywords: ["female-mechanic", "WOMAN MECHANIC"],
+ category: "people",
+ lib: {
+ name: "WOMAN MECHANIC",
+ unified: "1F469-200D-1F527",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f469-200d-1f527.png",
+ sheet_x: 18,
+ sheet_y: 29,
+ short_name: "female-mechanic",
+ short_names: ["female-mechanic"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-role",
+ sort_order: 306,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F469-1F3FB-200D-1F527",
+ non_qualified: null,
+ image: "1f469-1f3fb-200d-1f527.png",
+ sheet_x: 18,
+ sheet_y: 30,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F469-1F3FC-200D-1F527",
+ non_qualified: null,
+ image: "1f469-1f3fc-200d-1f527.png",
+ sheet_x: 18,
+ sheet_y: 31,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F469-1F3FD-200D-1F527",
+ non_qualified: null,
+ image: "1f469-1f3fd-200d-1f527.png",
+ sheet_x: 18,
+ sheet_y: 32,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F469-1F3FE-200D-1F527",
+ non_qualified: null,
+ image: "1f469-1f3fe-200d-1f527.png",
+ sheet_x: 18,
+ sheet_y: 33,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F469-1F3FF-200D-1F527",
+ non_qualified: null,
+ image: "1f469-1f3ff-200d-1f527.png",
+ sheet_x: 18,
+ sheet_y: 34,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ factory_worker: {
+ char: "🧑🏭",
+ key: "factory_worker",
+ keywords: ["factory_worker", "FACTORY WORKER"],
+ category: "people",
+ lib: {
+ name: "FACTORY WORKER",
+ unified: "1F9D1-200D-1F3ED",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f9d1-200d-1f3ed.png",
+ sheet_x: 48,
+ sheet_y: 1,
+ short_name: "factory_worker",
+ short_names: ["factory_worker"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-role",
+ sort_order: 307,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F9D1-1F3FB-200D-1F3ED",
+ non_qualified: null,
+ image: "1f9d1-1f3fb-200d-1f3ed.png",
+ sheet_x: 48,
+ sheet_y: 2,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F9D1-1F3FC-200D-1F3ED",
+ non_qualified: null,
+ image: "1f9d1-1f3fc-200d-1f3ed.png",
+ sheet_x: 48,
+ sheet_y: 3,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F9D1-1F3FD-200D-1F3ED",
+ non_qualified: null,
+ image: "1f9d1-1f3fd-200d-1f3ed.png",
+ sheet_x: 48,
+ sheet_y: 4,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F9D1-1F3FE-200D-1F3ED",
+ non_qualified: null,
+ image: "1f9d1-1f3fe-200d-1f3ed.png",
+ sheet_x: 48,
+ sheet_y: 5,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F9D1-1F3FF-200D-1F3ED",
+ non_qualified: null,
+ image: "1f9d1-1f3ff-200d-1f3ed.png",
+ sheet_x: 48,
+ sheet_y: 6,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ "male-factory-worker": {
+ char: "👨🏭",
+ key: "male-factory-worker",
+ keywords: ["male-factory-worker", "MAN FACTORY WORKER"],
+ category: "people",
+ lib: {
+ name: "MAN FACTORY WORKER",
+ unified: "1F468-200D-1F3ED",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f468-200d-1f3ed.png",
+ sheet_x: 14,
+ sheet_y: 28,
+ short_name: "male-factory-worker",
+ short_names: ["male-factory-worker"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-role",
+ sort_order: 308,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F468-1F3FB-200D-1F3ED",
+ non_qualified: null,
+ image: "1f468-1f3fb-200d-1f3ed.png",
+ sheet_x: 14,
+ sheet_y: 29,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F468-1F3FC-200D-1F3ED",
+ non_qualified: null,
+ image: "1f468-1f3fc-200d-1f3ed.png",
+ sheet_x: 14,
+ sheet_y: 30,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F468-1F3FD-200D-1F3ED",
+ non_qualified: null,
+ image: "1f468-1f3fd-200d-1f3ed.png",
+ sheet_x: 14,
+ sheet_y: 31,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F468-1F3FE-200D-1F3ED",
+ non_qualified: null,
+ image: "1f468-1f3fe-200d-1f3ed.png",
+ sheet_x: 14,
+ sheet_y: 32,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F468-1F3FF-200D-1F3ED",
+ non_qualified: null,
+ image: "1f468-1f3ff-200d-1f3ed.png",
+ sheet_x: 14,
+ sheet_y: 33,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ "female-factory-worker": {
+ char: "👩🏭",
+ key: "female-factory-worker",
+ keywords: ["female-factory-worker", "WOMAN FACTORY WORKER"],
+ category: "people",
+ lib: {
+ name: "WOMAN FACTORY WORKER",
+ unified: "1F469-200D-1F3ED",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f469-200d-1f3ed.png",
+ sheet_x: 18,
+ sheet_y: 1,
+ short_name: "female-factory-worker",
+ short_names: ["female-factory-worker"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-role",
+ sort_order: 309,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F469-1F3FB-200D-1F3ED",
+ non_qualified: null,
+ image: "1f469-1f3fb-200d-1f3ed.png",
+ sheet_x: 18,
+ sheet_y: 2,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F469-1F3FC-200D-1F3ED",
+ non_qualified: null,
+ image: "1f469-1f3fc-200d-1f3ed.png",
+ sheet_x: 18,
+ sheet_y: 3,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F469-1F3FD-200D-1F3ED",
+ non_qualified: null,
+ image: "1f469-1f3fd-200d-1f3ed.png",
+ sheet_x: 18,
+ sheet_y: 4,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F469-1F3FE-200D-1F3ED",
+ non_qualified: null,
+ image: "1f469-1f3fe-200d-1f3ed.png",
+ sheet_x: 18,
+ sheet_y: 5,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F469-1F3FF-200D-1F3ED",
+ non_qualified: null,
+ image: "1f469-1f3ff-200d-1f3ed.png",
+ sheet_x: 18,
+ sheet_y: 6,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ office_worker: {
+ char: "🧑💼",
+ key: "office_worker",
+ keywords: ["office_worker", "OFFICE WORKER"],
+ category: "people",
+ lib: {
+ name: "OFFICE WORKER",
+ unified: "1F9D1-200D-1F4BC",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f9d1-200d-1f4bc.png",
+ sheet_x: 48,
+ sheet_y: 13,
+ short_name: "office_worker",
+ short_names: ["office_worker"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-role",
+ sort_order: 310,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F9D1-1F3FB-200D-1F4BC",
+ non_qualified: null,
+ image: "1f9d1-1f3fb-200d-1f4bc.png",
+ sheet_x: 48,
+ sheet_y: 14,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F9D1-1F3FC-200D-1F4BC",
+ non_qualified: null,
+ image: "1f9d1-1f3fc-200d-1f4bc.png",
+ sheet_x: 48,
+ sheet_y: 15,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F9D1-1F3FD-200D-1F4BC",
+ non_qualified: null,
+ image: "1f9d1-1f3fd-200d-1f4bc.png",
+ sheet_x: 48,
+ sheet_y: 16,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F9D1-1F3FE-200D-1F4BC",
+ non_qualified: null,
+ image: "1f9d1-1f3fe-200d-1f4bc.png",
+ sheet_x: 48,
+ sheet_y: 17,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F9D1-1F3FF-200D-1F4BC",
+ non_qualified: null,
+ image: "1f9d1-1f3ff-200d-1f4bc.png",
+ sheet_x: 48,
+ sheet_y: 18,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ "male-office-worker": {
+ char: "👨💼",
+ key: "male-office-worker",
+ keywords: ["male-office-worker", "MAN OFFICE WORKER"],
+ category: "people",
+ lib: {
+ name: "MAN OFFICE WORKER",
+ unified: "1F468-200D-1F4BC",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f468-200d-1f4bc.png",
+ sheet_x: 14,
+ sheet_y: 55,
+ short_name: "male-office-worker",
+ short_names: ["male-office-worker"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-role",
+ sort_order: 311,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F468-1F3FB-200D-1F4BC",
+ non_qualified: null,
+ image: "1f468-1f3fb-200d-1f4bc.png",
+ sheet_x: 14,
+ sheet_y: 56,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F468-1F3FC-200D-1F4BC",
+ non_qualified: null,
+ image: "1f468-1f3fc-200d-1f4bc.png",
+ sheet_x: 14,
+ sheet_y: 57,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F468-1F3FD-200D-1F4BC",
+ non_qualified: null,
+ image: "1f468-1f3fd-200d-1f4bc.png",
+ sheet_x: 14,
+ sheet_y: 58,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F468-1F3FE-200D-1F4BC",
+ non_qualified: null,
+ image: "1f468-1f3fe-200d-1f4bc.png",
+ sheet_x: 14,
+ sheet_y: 59,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F468-1F3FF-200D-1F4BC",
+ non_qualified: null,
+ image: "1f468-1f3ff-200d-1f4bc.png",
+ sheet_x: 14,
+ sheet_y: 60,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ "female-office-worker": {
+ char: "👩💼",
+ key: "female-office-worker",
+ keywords: ["female-office-worker", "WOMAN OFFICE WORKER"],
+ category: "people",
+ lib: {
+ name: "WOMAN OFFICE WORKER",
+ unified: "1F469-200D-1F4BC",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f469-200d-1f4bc.png",
+ sheet_x: 18,
+ sheet_y: 23,
+ short_name: "female-office-worker",
+ short_names: ["female-office-worker"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-role",
+ sort_order: 312,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F469-1F3FB-200D-1F4BC",
+ non_qualified: null,
+ image: "1f469-1f3fb-200d-1f4bc.png",
+ sheet_x: 18,
+ sheet_y: 24,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F469-1F3FC-200D-1F4BC",
+ non_qualified: null,
+ image: "1f469-1f3fc-200d-1f4bc.png",
+ sheet_x: 18,
+ sheet_y: 25,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F469-1F3FD-200D-1F4BC",
+ non_qualified: null,
+ image: "1f469-1f3fd-200d-1f4bc.png",
+ sheet_x: 18,
+ sheet_y: 26,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F469-1F3FE-200D-1F4BC",
+ non_qualified: null,
+ image: "1f469-1f3fe-200d-1f4bc.png",
+ sheet_x: 18,
+ sheet_y: 27,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F469-1F3FF-200D-1F4BC",
+ non_qualified: null,
+ image: "1f469-1f3ff-200d-1f4bc.png",
+ sheet_x: 18,
+ sheet_y: 28,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ scientist: {
+ char: "🧑🔬",
+ key: "scientist",
+ keywords: ["scientist", "SCIENTIST"],
+ category: "people",
+ lib: {
+ name: "SCIENTIST",
+ unified: "1F9D1-200D-1F52C",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f9d1-200d-1f52c.png",
+ sheet_x: 48,
+ sheet_y: 25,
+ short_name: "scientist",
+ short_names: ["scientist"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-role",
+ sort_order: 313,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F9D1-1F3FB-200D-1F52C",
+ non_qualified: null,
+ image: "1f9d1-1f3fb-200d-1f52c.png",
+ sheet_x: 48,
+ sheet_y: 26,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F9D1-1F3FC-200D-1F52C",
+ non_qualified: null,
+ image: "1f9d1-1f3fc-200d-1f52c.png",
+ sheet_x: 48,
+ sheet_y: 27,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F9D1-1F3FD-200D-1F52C",
+ non_qualified: null,
+ image: "1f9d1-1f3fd-200d-1f52c.png",
+ sheet_x: 48,
+ sheet_y: 28,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F9D1-1F3FE-200D-1F52C",
+ non_qualified: null,
+ image: "1f9d1-1f3fe-200d-1f52c.png",
+ sheet_x: 48,
+ sheet_y: 29,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F9D1-1F3FF-200D-1F52C",
+ non_qualified: null,
+ image: "1f9d1-1f3ff-200d-1f52c.png",
+ sheet_x: 48,
+ sheet_y: 30,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ "male-scientist": {
+ char: "👨🔬",
+ key: "male-scientist",
+ keywords: ["male-scientist", "MAN SCIENTIST"],
+ category: "people",
+ lib: {
+ name: "MAN SCIENTIST",
+ unified: "1F468-200D-1F52C",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f468-200d-1f52c.png",
+ sheet_x: 15,
+ sheet_y: 6,
+ short_name: "male-scientist",
+ short_names: ["male-scientist"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-role",
+ sort_order: 314,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F468-1F3FB-200D-1F52C",
+ non_qualified: null,
+ image: "1f468-1f3fb-200d-1f52c.png",
+ sheet_x: 15,
+ sheet_y: 7,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F468-1F3FC-200D-1F52C",
+ non_qualified: null,
+ image: "1f468-1f3fc-200d-1f52c.png",
+ sheet_x: 15,
+ sheet_y: 8,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F468-1F3FD-200D-1F52C",
+ non_qualified: null,
+ image: "1f468-1f3fd-200d-1f52c.png",
+ sheet_x: 15,
+ sheet_y: 9,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F468-1F3FE-200D-1F52C",
+ non_qualified: null,
+ image: "1f468-1f3fe-200d-1f52c.png",
+ sheet_x: 15,
+ sheet_y: 10,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F468-1F3FF-200D-1F52C",
+ non_qualified: null,
+ image: "1f468-1f3ff-200d-1f52c.png",
+ sheet_x: 15,
+ sheet_y: 11,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ "female-scientist": {
+ char: "👩🔬",
+ key: "female-scientist",
+ keywords: ["female-scientist", "WOMAN SCIENTIST"],
+ category: "people",
+ lib: {
+ name: "WOMAN SCIENTIST",
+ unified: "1F469-200D-1F52C",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f469-200d-1f52c.png",
+ sheet_x: 18,
+ sheet_y: 35,
+ short_name: "female-scientist",
+ short_names: ["female-scientist"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-role",
+ sort_order: 315,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F469-1F3FB-200D-1F52C",
+ non_qualified: null,
+ image: "1f469-1f3fb-200d-1f52c.png",
+ sheet_x: 18,
+ sheet_y: 36,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F469-1F3FC-200D-1F52C",
+ non_qualified: null,
+ image: "1f469-1f3fc-200d-1f52c.png",
+ sheet_x: 18,
+ sheet_y: 37,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F469-1F3FD-200D-1F52C",
+ non_qualified: null,
+ image: "1f469-1f3fd-200d-1f52c.png",
+ sheet_x: 18,
+ sheet_y: 38,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F469-1F3FE-200D-1F52C",
+ non_qualified: null,
+ image: "1f469-1f3fe-200d-1f52c.png",
+ sheet_x: 18,
+ sheet_y: 39,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F469-1F3FF-200D-1F52C",
+ non_qualified: null,
+ image: "1f469-1f3ff-200d-1f52c.png",
+ sheet_x: 18,
+ sheet_y: 40,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ technologist: {
+ char: "🧑💻",
+ key: "technologist",
+ keywords: ["technologist", "TECHNOLOGIST"],
+ category: "people",
+ lib: {
+ name: "TECHNOLOGIST",
+ unified: "1F9D1-200D-1F4BB",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f9d1-200d-1f4bb.png",
+ sheet_x: 48,
+ sheet_y: 7,
+ short_name: "technologist",
+ short_names: ["technologist"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-role",
+ sort_order: 316,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F9D1-1F3FB-200D-1F4BB",
+ non_qualified: null,
+ image: "1f9d1-1f3fb-200d-1f4bb.png",
+ sheet_x: 48,
+ sheet_y: 8,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F9D1-1F3FC-200D-1F4BB",
+ non_qualified: null,
+ image: "1f9d1-1f3fc-200d-1f4bb.png",
+ sheet_x: 48,
+ sheet_y: 9,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F9D1-1F3FD-200D-1F4BB",
+ non_qualified: null,
+ image: "1f9d1-1f3fd-200d-1f4bb.png",
+ sheet_x: 48,
+ sheet_y: 10,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F9D1-1F3FE-200D-1F4BB",
+ non_qualified: null,
+ image: "1f9d1-1f3fe-200d-1f4bb.png",
+ sheet_x: 48,
+ sheet_y: 11,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F9D1-1F3FF-200D-1F4BB",
+ non_qualified: null,
+ image: "1f9d1-1f3ff-200d-1f4bb.png",
+ sheet_x: 48,
+ sheet_y: 12,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ "male-technologist": {
+ char: "👨💻",
+ key: "male-technologist",
+ keywords: ["male-technologist", "MAN TECHNOLOGIST"],
+ category: "people",
+ lib: {
+ name: "MAN TECHNOLOGIST",
+ unified: "1F468-200D-1F4BB",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f468-200d-1f4bb.png",
+ sheet_x: 14,
+ sheet_y: 49,
+ short_name: "male-technologist",
+ short_names: ["male-technologist"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-role",
+ sort_order: 317,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F468-1F3FB-200D-1F4BB",
+ non_qualified: null,
+ image: "1f468-1f3fb-200d-1f4bb.png",
+ sheet_x: 14,
+ sheet_y: 50,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F468-1F3FC-200D-1F4BB",
+ non_qualified: null,
+ image: "1f468-1f3fc-200d-1f4bb.png",
+ sheet_x: 14,
+ sheet_y: 51,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F468-1F3FD-200D-1F4BB",
+ non_qualified: null,
+ image: "1f468-1f3fd-200d-1f4bb.png",
+ sheet_x: 14,
+ sheet_y: 52,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F468-1F3FE-200D-1F4BB",
+ non_qualified: null,
+ image: "1f468-1f3fe-200d-1f4bb.png",
+ sheet_x: 14,
+ sheet_y: 53,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F468-1F3FF-200D-1F4BB",
+ non_qualified: null,
+ image: "1f468-1f3ff-200d-1f4bb.png",
+ sheet_x: 14,
+ sheet_y: 54,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ "female-technologist": {
+ char: "👩💻",
+ key: "female-technologist",
+ keywords: ["female-technologist", "WOMAN TECHNOLOGIST"],
+ category: "people",
+ lib: {
+ name: "WOMAN TECHNOLOGIST",
+ unified: "1F469-200D-1F4BB",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f469-200d-1f4bb.png",
+ sheet_x: 18,
+ sheet_y: 17,
+ short_name: "female-technologist",
+ short_names: ["female-technologist"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-role",
+ sort_order: 318,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F469-1F3FB-200D-1F4BB",
+ non_qualified: null,
+ image: "1f469-1f3fb-200d-1f4bb.png",
+ sheet_x: 18,
+ sheet_y: 18,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F469-1F3FC-200D-1F4BB",
+ non_qualified: null,
+ image: "1f469-1f3fc-200d-1f4bb.png",
+ sheet_x: 18,
+ sheet_y: 19,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F469-1F3FD-200D-1F4BB",
+ non_qualified: null,
+ image: "1f469-1f3fd-200d-1f4bb.png",
+ sheet_x: 18,
+ sheet_y: 20,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F469-1F3FE-200D-1F4BB",
+ non_qualified: null,
+ image: "1f469-1f3fe-200d-1f4bb.png",
+ sheet_x: 18,
+ sheet_y: 21,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F469-1F3FF-200D-1F4BB",
+ non_qualified: null,
+ image: "1f469-1f3ff-200d-1f4bb.png",
+ sheet_x: 18,
+ sheet_y: 22,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ singer: {
+ char: "🧑🎤",
+ key: "singer",
+ keywords: ["singer", "SINGER"],
+ category: "people",
+ lib: {
+ name: "SINGER",
+ unified: "1F9D1-200D-1F3A4",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f9d1-200d-1f3a4.png",
+ sheet_x: 47,
+ sheet_y: 44,
+ short_name: "singer",
+ short_names: ["singer"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-role",
+ sort_order: 319,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F9D1-1F3FB-200D-1F3A4",
+ non_qualified: null,
+ image: "1f9d1-1f3fb-200d-1f3a4.png",
+ sheet_x: 47,
+ sheet_y: 45,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F9D1-1F3FC-200D-1F3A4",
+ non_qualified: null,
+ image: "1f9d1-1f3fc-200d-1f3a4.png",
+ sheet_x: 47,
+ sheet_y: 46,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F9D1-1F3FD-200D-1F3A4",
+ non_qualified: null,
+ image: "1f9d1-1f3fd-200d-1f3a4.png",
+ sheet_x: 47,
+ sheet_y: 47,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F9D1-1F3FE-200D-1F3A4",
+ non_qualified: null,
+ image: "1f9d1-1f3fe-200d-1f3a4.png",
+ sheet_x: 47,
+ sheet_y: 48,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F9D1-1F3FF-200D-1F3A4",
+ non_qualified: null,
+ image: "1f9d1-1f3ff-200d-1f3a4.png",
+ sheet_x: 47,
+ sheet_y: 49,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ "male-singer": {
+ char: "👨🎤",
+ key: "male-singer",
+ keywords: ["male-singer", "MAN SINGER"],
+ category: "people",
+ lib: {
+ name: "MAN SINGER",
+ unified: "1F468-200D-1F3A4",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f468-200d-1f3a4.png",
+ sheet_x: 14,
+ sheet_y: 10,
+ short_name: "male-singer",
+ short_names: ["male-singer"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-role",
+ sort_order: 320,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F468-1F3FB-200D-1F3A4",
+ non_qualified: null,
+ image: "1f468-1f3fb-200d-1f3a4.png",
+ sheet_x: 14,
+ sheet_y: 11,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F468-1F3FC-200D-1F3A4",
+ non_qualified: null,
+ image: "1f468-1f3fc-200d-1f3a4.png",
+ sheet_x: 14,
+ sheet_y: 12,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F468-1F3FD-200D-1F3A4",
+ non_qualified: null,
+ image: "1f468-1f3fd-200d-1f3a4.png",
+ sheet_x: 14,
+ sheet_y: 13,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F468-1F3FE-200D-1F3A4",
+ non_qualified: null,
+ image: "1f468-1f3fe-200d-1f3a4.png",
+ sheet_x: 14,
+ sheet_y: 14,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F468-1F3FF-200D-1F3A4",
+ non_qualified: null,
+ image: "1f468-1f3ff-200d-1f3a4.png",
+ sheet_x: 14,
+ sheet_y: 15,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ "female-singer": {
+ char: "👩🎤",
+ key: "female-singer",
+ keywords: ["female-singer", "WOMAN SINGER"],
+ category: "people",
+ lib: {
+ name: "WOMAN SINGER",
+ unified: "1F469-200D-1F3A4",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f469-200d-1f3a4.png",
+ sheet_x: 17,
+ sheet_y: 44,
+ short_name: "female-singer",
+ short_names: ["female-singer"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-role",
+ sort_order: 321,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F469-1F3FB-200D-1F3A4",
+ non_qualified: null,
+ image: "1f469-1f3fb-200d-1f3a4.png",
+ sheet_x: 17,
+ sheet_y: 45,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F469-1F3FC-200D-1F3A4",
+ non_qualified: null,
+ image: "1f469-1f3fc-200d-1f3a4.png",
+ sheet_x: 17,
+ sheet_y: 46,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F469-1F3FD-200D-1F3A4",
+ non_qualified: null,
+ image: "1f469-1f3fd-200d-1f3a4.png",
+ sheet_x: 17,
+ sheet_y: 47,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F469-1F3FE-200D-1F3A4",
+ non_qualified: null,
+ image: "1f469-1f3fe-200d-1f3a4.png",
+ sheet_x: 17,
+ sheet_y: 48,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F469-1F3FF-200D-1F3A4",
+ non_qualified: null,
+ image: "1f469-1f3ff-200d-1f3a4.png",
+ sheet_x: 17,
+ sheet_y: 49,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ artist: {
+ char: "🧑🎨",
+ key: "artist",
+ keywords: ["artist", "ARTIST"],
+ category: "people",
+ lib: {
+ name: "ARTIST",
+ unified: "1F9D1-200D-1F3A8",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f9d1-200d-1f3a8.png",
+ sheet_x: 47,
+ sheet_y: 50,
+ short_name: "artist",
+ short_names: ["artist"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-role",
+ sort_order: 322,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F9D1-1F3FB-200D-1F3A8",
+ non_qualified: null,
+ image: "1f9d1-1f3fb-200d-1f3a8.png",
+ sheet_x: 47,
+ sheet_y: 51,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F9D1-1F3FC-200D-1F3A8",
+ non_qualified: null,
+ image: "1f9d1-1f3fc-200d-1f3a8.png",
+ sheet_x: 47,
+ sheet_y: 52,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F9D1-1F3FD-200D-1F3A8",
+ non_qualified: null,
+ image: "1f9d1-1f3fd-200d-1f3a8.png",
+ sheet_x: 47,
+ sheet_y: 53,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F9D1-1F3FE-200D-1F3A8",
+ non_qualified: null,
+ image: "1f9d1-1f3fe-200d-1f3a8.png",
+ sheet_x: 47,
+ sheet_y: 54,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F9D1-1F3FF-200D-1F3A8",
+ non_qualified: null,
+ image: "1f9d1-1f3ff-200d-1f3a8.png",
+ sheet_x: 47,
+ sheet_y: 55,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ "male-artist": {
+ char: "👨🎨",
+ key: "male-artist",
+ keywords: ["male-artist", "MAN ARTIST"],
+ category: "people",
+ lib: {
+ name: "MAN ARTIST",
+ unified: "1F468-200D-1F3A8",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f468-200d-1f3a8.png",
+ sheet_x: 14,
+ sheet_y: 16,
+ short_name: "male-artist",
+ short_names: ["male-artist"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-role",
+ sort_order: 323,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F468-1F3FB-200D-1F3A8",
+ non_qualified: null,
+ image: "1f468-1f3fb-200d-1f3a8.png",
+ sheet_x: 14,
+ sheet_y: 17,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F468-1F3FC-200D-1F3A8",
+ non_qualified: null,
+ image: "1f468-1f3fc-200d-1f3a8.png",
+ sheet_x: 14,
+ sheet_y: 18,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F468-1F3FD-200D-1F3A8",
+ non_qualified: null,
+ image: "1f468-1f3fd-200d-1f3a8.png",
+ sheet_x: 14,
+ sheet_y: 19,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F468-1F3FE-200D-1F3A8",
+ non_qualified: null,
+ image: "1f468-1f3fe-200d-1f3a8.png",
+ sheet_x: 14,
+ sheet_y: 20,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F468-1F3FF-200D-1F3A8",
+ non_qualified: null,
+ image: "1f468-1f3ff-200d-1f3a8.png",
+ sheet_x: 14,
+ sheet_y: 21,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ "female-artist": {
+ char: "👩🎨",
+ key: "female-artist",
+ keywords: ["female-artist", "WOMAN ARTIST"],
+ category: "people",
+ lib: {
+ name: "WOMAN ARTIST",
+ unified: "1F469-200D-1F3A8",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f469-200d-1f3a8.png",
+ sheet_x: 17,
+ sheet_y: 50,
+ short_name: "female-artist",
+ short_names: ["female-artist"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-role",
+ sort_order: 324,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F469-1F3FB-200D-1F3A8",
+ non_qualified: null,
+ image: "1f469-1f3fb-200d-1f3a8.png",
+ sheet_x: 17,
+ sheet_y: 51,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F469-1F3FC-200D-1F3A8",
+ non_qualified: null,
+ image: "1f469-1f3fc-200d-1f3a8.png",
+ sheet_x: 17,
+ sheet_y: 52,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F469-1F3FD-200D-1F3A8",
+ non_qualified: null,
+ image: "1f469-1f3fd-200d-1f3a8.png",
+ sheet_x: 17,
+ sheet_y: 53,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F469-1F3FE-200D-1F3A8",
+ non_qualified: null,
+ image: "1f469-1f3fe-200d-1f3a8.png",
+ sheet_x: 17,
+ sheet_y: 54,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F469-1F3FF-200D-1F3A8",
+ non_qualified: null,
+ image: "1f469-1f3ff-200d-1f3a8.png",
+ sheet_x: 17,
+ sheet_y: 55,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ pilot: {
+ char: "🧑✈️",
+ key: "pilot",
+ keywords: ["pilot", "PILOT"],
+ category: "people",
+ lib: {
+ name: "PILOT",
+ unified: "1F9D1-200D-2708-FE0F",
+ non_qualified: "1F9D1-200D-2708",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f9d1-200d-2708-fe0f.png",
+ sheet_x: 50,
+ sheet_y: 1,
+ short_name: "pilot",
+ short_names: ["pilot"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-role",
+ sort_order: 325,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F9D1-1F3FB-200D-2708-FE0F",
+ non_qualified: "1F9D1-1F3FB-200D-2708",
+ image: "1f9d1-1f3fb-200d-2708-fe0f.png",
+ sheet_x: 50,
+ sheet_y: 2,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F9D1-1F3FC-200D-2708-FE0F",
+ non_qualified: "1F9D1-1F3FC-200D-2708",
+ image: "1f9d1-1f3fc-200d-2708-fe0f.png",
+ sheet_x: 50,
+ sheet_y: 3,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F9D1-1F3FD-200D-2708-FE0F",
+ non_qualified: "1F9D1-1F3FD-200D-2708",
+ image: "1f9d1-1f3fd-200d-2708-fe0f.png",
+ sheet_x: 50,
+ sheet_y: 4,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F9D1-1F3FE-200D-2708-FE0F",
+ non_qualified: "1F9D1-1F3FE-200D-2708",
+ image: "1f9d1-1f3fe-200d-2708-fe0f.png",
+ sheet_x: 50,
+ sheet_y: 5,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F9D1-1F3FF-200D-2708-FE0F",
+ non_qualified: "1F9D1-1F3FF-200D-2708",
+ image: "1f9d1-1f3ff-200d-2708-fe0f.png",
+ sheet_x: 50,
+ sheet_y: 6,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ "male-pilot": {
+ char: "👨✈️",
+ key: "male-pilot",
+ keywords: ["male-pilot", "MAN PILOT"],
+ category: "people",
+ lib: {
+ name: "MAN PILOT",
+ unified: "1F468-200D-2708-FE0F",
+ non_qualified: "1F468-200D-2708",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f468-200d-2708-fe0f.png",
+ sheet_x: 16,
+ sheet_y: 17,
+ short_name: "male-pilot",
+ short_names: ["male-pilot"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-role",
+ sort_order: 326,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F468-1F3FB-200D-2708-FE0F",
+ non_qualified: "1F468-1F3FB-200D-2708",
+ image: "1f468-1f3fb-200d-2708-fe0f.png",
+ sheet_x: 16,
+ sheet_y: 18,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F468-1F3FC-200D-2708-FE0F",
+ non_qualified: "1F468-1F3FC-200D-2708",
+ image: "1f468-1f3fc-200d-2708-fe0f.png",
+ sheet_x: 16,
+ sheet_y: 19,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F468-1F3FD-200D-2708-FE0F",
+ non_qualified: "1F468-1F3FD-200D-2708",
+ image: "1f468-1f3fd-200d-2708-fe0f.png",
+ sheet_x: 16,
+ sheet_y: 20,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F468-1F3FE-200D-2708-FE0F",
+ non_qualified: "1F468-1F3FE-200D-2708",
+ image: "1f468-1f3fe-200d-2708-fe0f.png",
+ sheet_x: 16,
+ sheet_y: 21,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F468-1F3FF-200D-2708-FE0F",
+ non_qualified: "1F468-1F3FF-200D-2708",
+ image: "1f468-1f3ff-200d-2708-fe0f.png",
+ sheet_x: 16,
+ sheet_y: 22,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ "female-pilot": {
+ char: "👩✈️",
+ key: "female-pilot",
+ keywords: ["female-pilot", "WOMAN PILOT"],
+ category: "people",
+ lib: {
+ name: "WOMAN PILOT",
+ unified: "1F469-200D-2708-FE0F",
+ non_qualified: "1F469-200D-2708",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f469-200d-2708-fe0f.png",
+ sheet_x: 19,
+ sheet_y: 46,
+ short_name: "female-pilot",
+ short_names: ["female-pilot"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-role",
+ sort_order: 327,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F469-1F3FB-200D-2708-FE0F",
+ non_qualified: "1F469-1F3FB-200D-2708",
+ image: "1f469-1f3fb-200d-2708-fe0f.png",
+ sheet_x: 19,
+ sheet_y: 47,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F469-1F3FC-200D-2708-FE0F",
+ non_qualified: "1F469-1F3FC-200D-2708",
+ image: "1f469-1f3fc-200d-2708-fe0f.png",
+ sheet_x: 19,
+ sheet_y: 48,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F469-1F3FD-200D-2708-FE0F",
+ non_qualified: "1F469-1F3FD-200D-2708",
+ image: "1f469-1f3fd-200d-2708-fe0f.png",
+ sheet_x: 19,
+ sheet_y: 49,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F469-1F3FE-200D-2708-FE0F",
+ non_qualified: "1F469-1F3FE-200D-2708",
+ image: "1f469-1f3fe-200d-2708-fe0f.png",
+ sheet_x: 19,
+ sheet_y: 50,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F469-1F3FF-200D-2708-FE0F",
+ non_qualified: "1F469-1F3FF-200D-2708",
+ image: "1f469-1f3ff-200d-2708-fe0f.png",
+ sheet_x: 19,
+ sheet_y: 51,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ astronaut: {
+ char: "🧑🚀",
+ key: "astronaut",
+ keywords: ["astronaut", "ASTRONAUT"],
+ category: "people",
+ lib: {
+ name: "ASTRONAUT",
+ unified: "1F9D1-200D-1F680",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f9d1-200d-1f680.png",
+ sheet_x: 48,
+ sheet_y: 31,
+ short_name: "astronaut",
+ short_names: ["astronaut"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-role",
+ sort_order: 328,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F9D1-1F3FB-200D-1F680",
+ non_qualified: null,
+ image: "1f9d1-1f3fb-200d-1f680.png",
+ sheet_x: 48,
+ sheet_y: 32,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F9D1-1F3FC-200D-1F680",
+ non_qualified: null,
+ image: "1f9d1-1f3fc-200d-1f680.png",
+ sheet_x: 48,
+ sheet_y: 33,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F9D1-1F3FD-200D-1F680",
+ non_qualified: null,
+ image: "1f9d1-1f3fd-200d-1f680.png",
+ sheet_x: 48,
+ sheet_y: 34,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F9D1-1F3FE-200D-1F680",
+ non_qualified: null,
+ image: "1f9d1-1f3fe-200d-1f680.png",
+ sheet_x: 48,
+ sheet_y: 35,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F9D1-1F3FF-200D-1F680",
+ non_qualified: null,
+ image: "1f9d1-1f3ff-200d-1f680.png",
+ sheet_x: 48,
+ sheet_y: 36,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ "male-astronaut": {
+ char: "👨🚀",
+ key: "male-astronaut",
+ keywords: ["male-astronaut", "MAN ASTRONAUT"],
+ category: "people",
+ lib: {
+ name: "MAN ASTRONAUT",
+ unified: "1F468-200D-1F680",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f468-200d-1f680.png",
+ sheet_x: 15,
+ sheet_y: 12,
+ short_name: "male-astronaut",
+ short_names: ["male-astronaut"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-role",
+ sort_order: 329,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F468-1F3FB-200D-1F680",
+ non_qualified: null,
+ image: "1f468-1f3fb-200d-1f680.png",
+ sheet_x: 15,
+ sheet_y: 13,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F468-1F3FC-200D-1F680",
+ non_qualified: null,
+ image: "1f468-1f3fc-200d-1f680.png",
+ sheet_x: 15,
+ sheet_y: 14,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F468-1F3FD-200D-1F680",
+ non_qualified: null,
+ image: "1f468-1f3fd-200d-1f680.png",
+ sheet_x: 15,
+ sheet_y: 15,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F468-1F3FE-200D-1F680",
+ non_qualified: null,
+ image: "1f468-1f3fe-200d-1f680.png",
+ sheet_x: 15,
+ sheet_y: 16,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F468-1F3FF-200D-1F680",
+ non_qualified: null,
+ image: "1f468-1f3ff-200d-1f680.png",
+ sheet_x: 15,
+ sheet_y: 17,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ "female-astronaut": {
+ char: "👩🚀",
+ key: "female-astronaut",
+ keywords: ["female-astronaut", "WOMAN ASTRONAUT"],
+ category: "people",
+ lib: {
+ name: "WOMAN ASTRONAUT",
+ unified: "1F469-200D-1F680",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f469-200d-1f680.png",
+ sheet_x: 18,
+ sheet_y: 41,
+ short_name: "female-astronaut",
+ short_names: ["female-astronaut"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-role",
+ sort_order: 330,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F469-1F3FB-200D-1F680",
+ non_qualified: null,
+ image: "1f469-1f3fb-200d-1f680.png",
+ sheet_x: 18,
+ sheet_y: 42,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F469-1F3FC-200D-1F680",
+ non_qualified: null,
+ image: "1f469-1f3fc-200d-1f680.png",
+ sheet_x: 18,
+ sheet_y: 43,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F469-1F3FD-200D-1F680",
+ non_qualified: null,
+ image: "1f469-1f3fd-200d-1f680.png",
+ sheet_x: 18,
+ sheet_y: 44,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F469-1F3FE-200D-1F680",
+ non_qualified: null,
+ image: "1f469-1f3fe-200d-1f680.png",
+ sheet_x: 18,
+ sheet_y: 45,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F469-1F3FF-200D-1F680",
+ non_qualified: null,
+ image: "1f469-1f3ff-200d-1f680.png",
+ sheet_x: 18,
+ sheet_y: 46,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ firefighter: {
+ char: "🧑🚒",
+ key: "firefighter",
+ keywords: ["firefighter", "FIREFIGHTER"],
+ category: "people",
+ lib: {
+ name: "FIREFIGHTER",
+ unified: "1F9D1-200D-1F692",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f9d1-200d-1f692.png",
+ sheet_x: 48,
+ sheet_y: 37,
+ short_name: "firefighter",
+ short_names: ["firefighter"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-role",
+ sort_order: 331,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F9D1-1F3FB-200D-1F692",
+ non_qualified: null,
+ image: "1f9d1-1f3fb-200d-1f692.png",
+ sheet_x: 48,
+ sheet_y: 38,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F9D1-1F3FC-200D-1F692",
+ non_qualified: null,
+ image: "1f9d1-1f3fc-200d-1f692.png",
+ sheet_x: 48,
+ sheet_y: 39,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F9D1-1F3FD-200D-1F692",
+ non_qualified: null,
+ image: "1f9d1-1f3fd-200d-1f692.png",
+ sheet_x: 48,
+ sheet_y: 40,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F9D1-1F3FE-200D-1F692",
+ non_qualified: null,
+ image: "1f9d1-1f3fe-200d-1f692.png",
+ sheet_x: 48,
+ sheet_y: 41,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F9D1-1F3FF-200D-1F692",
+ non_qualified: null,
+ image: "1f9d1-1f3ff-200d-1f692.png",
+ sheet_x: 48,
+ sheet_y: 42,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ "male-firefighter": {
+ char: "👨🚒",
+ key: "male-firefighter",
+ keywords: ["male-firefighter", "MAN FIREFIGHTER"],
+ category: "people",
+ lib: {
+ name: "MAN FIREFIGHTER",
+ unified: "1F468-200D-1F692",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f468-200d-1f692.png",
+ sheet_x: 15,
+ sheet_y: 18,
+ short_name: "male-firefighter",
+ short_names: ["male-firefighter"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-role",
+ sort_order: 332,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F468-1F3FB-200D-1F692",
+ non_qualified: null,
+ image: "1f468-1f3fb-200d-1f692.png",
+ sheet_x: 15,
+ sheet_y: 19,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F468-1F3FC-200D-1F692",
+ non_qualified: null,
+ image: "1f468-1f3fc-200d-1f692.png",
+ sheet_x: 15,
+ sheet_y: 20,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F468-1F3FD-200D-1F692",
+ non_qualified: null,
+ image: "1f468-1f3fd-200d-1f692.png",
+ sheet_x: 15,
+ sheet_y: 21,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F468-1F3FE-200D-1F692",
+ non_qualified: null,
+ image: "1f468-1f3fe-200d-1f692.png",
+ sheet_x: 15,
+ sheet_y: 22,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F468-1F3FF-200D-1F692",
+ non_qualified: null,
+ image: "1f468-1f3ff-200d-1f692.png",
+ sheet_x: 15,
+ sheet_y: 23,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ "female-firefighter": {
+ char: "👩🚒",
+ key: "female-firefighter",
+ keywords: ["female-firefighter", "WOMAN FIREFIGHTER"],
+ category: "people",
+ lib: {
+ name: "WOMAN FIREFIGHTER",
+ unified: "1F469-200D-1F692",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f469-200d-1f692.png",
+ sheet_x: 18,
+ sheet_y: 47,
+ short_name: "female-firefighter",
+ short_names: ["female-firefighter"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-role",
+ sort_order: 333,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F469-1F3FB-200D-1F692",
+ non_qualified: null,
+ image: "1f469-1f3fb-200d-1f692.png",
+ sheet_x: 18,
+ sheet_y: 48,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F469-1F3FC-200D-1F692",
+ non_qualified: null,
+ image: "1f469-1f3fc-200d-1f692.png",
+ sheet_x: 18,
+ sheet_y: 49,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F469-1F3FD-200D-1F692",
+ non_qualified: null,
+ image: "1f469-1f3fd-200d-1f692.png",
+ sheet_x: 18,
+ sheet_y: 50,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F469-1F3FE-200D-1F692",
+ non_qualified: null,
+ image: "1f469-1f3fe-200d-1f692.png",
+ sheet_x: 18,
+ sheet_y: 51,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F469-1F3FF-200D-1F692",
+ non_qualified: null,
+ image: "1f469-1f3ff-200d-1f692.png",
+ sheet_x: 18,
+ sheet_y: 52,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ "male-police-officer": {
+ char: "👮♂️",
+ key: "male-police-officer",
+ keywords: ["male-police-officer", "MAN POLICE OFFICER"],
+ category: "people",
+ lib: {
+ name: "MAN POLICE OFFICER",
+ unified: "1F46E-200D-2642-FE0F",
+ non_qualified: "1F46E-200D-2642",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f46e-200d-2642-fe0f.png",
+ sheet_x: 23,
+ sheet_y: 3,
+ short_name: "male-police-officer",
+ short_names: ["male-police-officer"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-role",
+ sort_order: 335,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F46E-1F3FB-200D-2642-FE0F",
+ non_qualified: "1F46E-1F3FB-200D-2642",
+ image: "1f46e-1f3fb-200d-2642-fe0f.png",
+ sheet_x: 23,
+ sheet_y: 4,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F46E-1F3FC-200D-2642-FE0F",
+ non_qualified: "1F46E-1F3FC-200D-2642",
+ image: "1f46e-1f3fc-200d-2642-fe0f.png",
+ sheet_x: 23,
+ sheet_y: 5,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F46E-1F3FD-200D-2642-FE0F",
+ non_qualified: "1F46E-1F3FD-200D-2642",
+ image: "1f46e-1f3fd-200d-2642-fe0f.png",
+ sheet_x: 23,
+ sheet_y: 6,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F46E-1F3FE-200D-2642-FE0F",
+ non_qualified: "1F46E-1F3FE-200D-2642",
+ image: "1f46e-1f3fe-200d-2642-fe0f.png",
+ sheet_x: 23,
+ sheet_y: 7,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F46E-1F3FF-200D-2642-FE0F",
+ non_qualified: "1F46E-1F3FF-200D-2642",
+ image: "1f46e-1f3ff-200d-2642-fe0f.png",
+ sheet_x: 23,
+ sheet_y: 8,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ obsoletes: "1F46E",
+ },
+ },
+ "female-police-officer": {
+ char: "👮♀️",
+ key: "female-police-officer",
+ keywords: ["female-police-officer", "WOMAN POLICE OFFICER"],
+ category: "people",
+ lib: {
+ name: "WOMAN POLICE OFFICER",
+ unified: "1F46E-200D-2640-FE0F",
+ non_qualified: "1F46E-200D-2640",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f46e-200d-2640-fe0f.png",
+ sheet_x: 22,
+ sheet_y: 58,
+ short_name: "female-police-officer",
+ short_names: ["female-police-officer"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-role",
+ sort_order: 336,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F46E-1F3FB-200D-2640-FE0F",
+ non_qualified: "1F46E-1F3FB-200D-2640",
+ image: "1f46e-1f3fb-200d-2640-fe0f.png",
+ sheet_x: 22,
+ sheet_y: 59,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F46E-1F3FC-200D-2640-FE0F",
+ non_qualified: "1F46E-1F3FC-200D-2640",
+ image: "1f46e-1f3fc-200d-2640-fe0f.png",
+ sheet_x: 22,
+ sheet_y: 60,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F46E-1F3FD-200D-2640-FE0F",
+ non_qualified: "1F46E-1F3FD-200D-2640",
+ image: "1f46e-1f3fd-200d-2640-fe0f.png",
+ sheet_x: 23,
+ sheet_y: 0,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F46E-1F3FE-200D-2640-FE0F",
+ non_qualified: "1F46E-1F3FE-200D-2640",
+ image: "1f46e-1f3fe-200d-2640-fe0f.png",
+ sheet_x: 23,
+ sheet_y: 1,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F46E-1F3FF-200D-2640-FE0F",
+ non_qualified: "1F46E-1F3FF-200D-2640",
+ image: "1f46e-1f3ff-200d-2640-fe0f.png",
+ sheet_x: 23,
+ sheet_y: 2,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ "male-detective": {
+ char: "🕵️♂️",
+ key: "male-detective",
+ keywords: ["male-detective", "MAN DETECTIVE"],
+ category: "people",
+ lib: {
+ name: "MAN DETECTIVE",
+ unified: "1F575-FE0F-200D-2642-FE0F",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f575-fe0f-200d-2642-fe0f.png",
+ sheet_x: 31,
+ sheet_y: 11,
+ short_name: "male-detective",
+ short_names: ["male-detective"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-role",
+ sort_order: 338,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: false,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F575-1F3FB-200D-2642-FE0F",
+ non_qualified: "1F575-1F3FB-200D-2642",
+ image: "1f575-1f3fb-200d-2642-fe0f.png",
+ sheet_x: 31,
+ sheet_y: 12,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F575-1F3FC-200D-2642-FE0F",
+ non_qualified: "1F575-1F3FC-200D-2642",
+ image: "1f575-1f3fc-200d-2642-fe0f.png",
+ sheet_x: 31,
+ sheet_y: 13,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F575-1F3FD-200D-2642-FE0F",
+ non_qualified: "1F575-1F3FD-200D-2642",
+ image: "1f575-1f3fd-200d-2642-fe0f.png",
+ sheet_x: 31,
+ sheet_y: 14,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F575-1F3FE-200D-2642-FE0F",
+ non_qualified: "1F575-1F3FE-200D-2642",
+ image: "1f575-1f3fe-200d-2642-fe0f.png",
+ sheet_x: 31,
+ sheet_y: 15,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F575-1F3FF-200D-2642-FE0F",
+ non_qualified: "1F575-1F3FF-200D-2642",
+ image: "1f575-1f3ff-200d-2642-fe0f.png",
+ sheet_x: 31,
+ sheet_y: 16,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ obsoletes: "1F575-FE0F",
+ },
+ },
+ "female-detective": {
+ char: "🕵️♀️",
+ key: "female-detective",
+ keywords: ["female-detective", "WOMAN DETECTIVE"],
+ category: "people",
+ lib: {
+ name: "WOMAN DETECTIVE",
+ unified: "1F575-FE0F-200D-2640-FE0F",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f575-fe0f-200d-2640-fe0f.png",
+ sheet_x: 31,
+ sheet_y: 5,
+ short_name: "female-detective",
+ short_names: ["female-detective"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-role",
+ sort_order: 339,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: false,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F575-1F3FB-200D-2640-FE0F",
+ non_qualified: "1F575-1F3FB-200D-2640",
+ image: "1f575-1f3fb-200d-2640-fe0f.png",
+ sheet_x: 31,
+ sheet_y: 6,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F575-1F3FC-200D-2640-FE0F",
+ non_qualified: "1F575-1F3FC-200D-2640",
+ image: "1f575-1f3fc-200d-2640-fe0f.png",
+ sheet_x: 31,
+ sheet_y: 7,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F575-1F3FD-200D-2640-FE0F",
+ non_qualified: "1F575-1F3FD-200D-2640",
+ image: "1f575-1f3fd-200d-2640-fe0f.png",
+ sheet_x: 31,
+ sheet_y: 8,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F575-1F3FE-200D-2640-FE0F",
+ non_qualified: "1F575-1F3FE-200D-2640",
+ image: "1f575-1f3fe-200d-2640-fe0f.png",
+ sheet_x: 31,
+ sheet_y: 9,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F575-1F3FF-200D-2640-FE0F",
+ non_qualified: "1F575-1F3FF-200D-2640",
+ image: "1f575-1f3ff-200d-2640-fe0f.png",
+ sheet_x: 31,
+ sheet_y: 10,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ "male-guard": {
+ char: "💂♂️",
+ key: "male-guard",
+ keywords: ["male-guard", "MAN GUARD"],
+ category: "people",
+ lib: {
+ name: "MAN GUARD",
+ unified: "1F482-200D-2642-FE0F",
+ non_qualified: "1F482-200D-2642",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f482-200d-2642-fe0f.png",
+ sheet_x: 25,
+ sheet_y: 35,
+ short_name: "male-guard",
+ short_names: ["male-guard"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-role",
+ sort_order: 341,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F482-1F3FB-200D-2642-FE0F",
+ non_qualified: "1F482-1F3FB-200D-2642",
+ image: "1f482-1f3fb-200d-2642-fe0f.png",
+ sheet_x: 25,
+ sheet_y: 36,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F482-1F3FC-200D-2642-FE0F",
+ non_qualified: "1F482-1F3FC-200D-2642",
+ image: "1f482-1f3fc-200d-2642-fe0f.png",
+ sheet_x: 25,
+ sheet_y: 37,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F482-1F3FD-200D-2642-FE0F",
+ non_qualified: "1F482-1F3FD-200D-2642",
+ image: "1f482-1f3fd-200d-2642-fe0f.png",
+ sheet_x: 25,
+ sheet_y: 38,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F482-1F3FE-200D-2642-FE0F",
+ non_qualified: "1F482-1F3FE-200D-2642",
+ image: "1f482-1f3fe-200d-2642-fe0f.png",
+ sheet_x: 25,
+ sheet_y: 39,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F482-1F3FF-200D-2642-FE0F",
+ non_qualified: "1F482-1F3FF-200D-2642",
+ image: "1f482-1f3ff-200d-2642-fe0f.png",
+ sheet_x: 25,
+ sheet_y: 40,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ obsoletes: "1F482",
+ },
+ },
+ "female-guard": {
+ char: "💂♀️",
+ key: "female-guard",
+ keywords: ["female-guard", "WOMAN GUARD"],
+ category: "people",
+ lib: {
+ name: "WOMAN GUARD",
+ unified: "1F482-200D-2640-FE0F",
+ non_qualified: "1F482-200D-2640",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f482-200d-2640-fe0f.png",
+ sheet_x: 25,
+ sheet_y: 29,
+ short_name: "female-guard",
+ short_names: ["female-guard"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-role",
+ sort_order: 342,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F482-1F3FB-200D-2640-FE0F",
+ non_qualified: "1F482-1F3FB-200D-2640",
+ image: "1f482-1f3fb-200d-2640-fe0f.png",
+ sheet_x: 25,
+ sheet_y: 30,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F482-1F3FC-200D-2640-FE0F",
+ non_qualified: "1F482-1F3FC-200D-2640",
+ image: "1f482-1f3fc-200d-2640-fe0f.png",
+ sheet_x: 25,
+ sheet_y: 31,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F482-1F3FD-200D-2640-FE0F",
+ non_qualified: "1F482-1F3FD-200D-2640",
+ image: "1f482-1f3fd-200d-2640-fe0f.png",
+ sheet_x: 25,
+ sheet_y: 32,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F482-1F3FE-200D-2640-FE0F",
+ non_qualified: "1F482-1F3FE-200D-2640",
+ image: "1f482-1f3fe-200d-2640-fe0f.png",
+ sheet_x: 25,
+ sheet_y: 33,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F482-1F3FF-200D-2640-FE0F",
+ non_qualified: "1F482-1F3FF-200D-2640",
+ image: "1f482-1f3ff-200d-2640-fe0f.png",
+ sheet_x: 25,
+ sheet_y: 34,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ ninja: {
+ char: "🥷",
+ key: "ninja",
+ keywords: ["ninja", "NINJA"],
+ category: "people",
+ lib: {
+ name: "NINJA",
+ unified: "1F977",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f977.png",
+ sheet_x: 44,
+ sheet_y: 6,
+ short_name: "ninja",
+ short_names: ["ninja"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-role",
+ sort_order: 343,
+ added_in: "13.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F977-1F3FB",
+ non_qualified: null,
+ image: "1f977-1f3fb.png",
+ sheet_x: 44,
+ sheet_y: 7,
+ added_in: "13.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F977-1F3FC",
+ non_qualified: null,
+ image: "1f977-1f3fc.png",
+ sheet_x: 44,
+ sheet_y: 8,
+ added_in: "13.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F977-1F3FD",
+ non_qualified: null,
+ image: "1f977-1f3fd.png",
+ sheet_x: 44,
+ sheet_y: 9,
+ added_in: "13.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F977-1F3FE",
+ non_qualified: null,
+ image: "1f977-1f3fe.png",
+ sheet_x: 44,
+ sheet_y: 10,
+ added_in: "13.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F977-1F3FF",
+ non_qualified: null,
+ image: "1f977-1f3ff.png",
+ sheet_x: 44,
+ sheet_y: 11,
+ added_in: "13.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ "male-construction-worker": {
+ char: "👷♂️",
+ key: "male-construction-worker",
+ keywords: ["male-construction-worker", "MAN CONSTRUCTION WORKER"],
+ category: "people",
+ lib: {
+ name: "MAN CONSTRUCTION WORKER",
+ unified: "1F477-200D-2642-FE0F",
+ non_qualified: "1F477-200D-2642",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f477-200d-2642-fe0f.png",
+ sheet_x: 24,
+ sheet_y: 41,
+ short_name: "male-construction-worker",
+ short_names: ["male-construction-worker"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-role",
+ sort_order: 345,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F477-1F3FB-200D-2642-FE0F",
+ non_qualified: "1F477-1F3FB-200D-2642",
+ image: "1f477-1f3fb-200d-2642-fe0f.png",
+ sheet_x: 24,
+ sheet_y: 42,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F477-1F3FC-200D-2642-FE0F",
+ non_qualified: "1F477-1F3FC-200D-2642",
+ image: "1f477-1f3fc-200d-2642-fe0f.png",
+ sheet_x: 24,
+ sheet_y: 43,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F477-1F3FD-200D-2642-FE0F",
+ non_qualified: "1F477-1F3FD-200D-2642",
+ image: "1f477-1f3fd-200d-2642-fe0f.png",
+ sheet_x: 24,
+ sheet_y: 44,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F477-1F3FE-200D-2642-FE0F",
+ non_qualified: "1F477-1F3FE-200D-2642",
+ image: "1f477-1f3fe-200d-2642-fe0f.png",
+ sheet_x: 24,
+ sheet_y: 45,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F477-1F3FF-200D-2642-FE0F",
+ non_qualified: "1F477-1F3FF-200D-2642",
+ image: "1f477-1f3ff-200d-2642-fe0f.png",
+ sheet_x: 24,
+ sheet_y: 46,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ obsoletes: "1F477",
+ },
+ },
+ "female-construction-worker": {
+ char: "👷♀️",
+ key: "female-construction-worker",
+ keywords: ["female-construction-worker", "WOMAN CONSTRUCTION WORKER"],
+ category: "people",
+ lib: {
+ name: "WOMAN CONSTRUCTION WORKER",
+ unified: "1F477-200D-2640-FE0F",
+ non_qualified: "1F477-200D-2640",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f477-200d-2640-fe0f.png",
+ sheet_x: 24,
+ sheet_y: 35,
+ short_name: "female-construction-worker",
+ short_names: ["female-construction-worker"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-role",
+ sort_order: 346,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F477-1F3FB-200D-2640-FE0F",
+ non_qualified: "1F477-1F3FB-200D-2640",
+ image: "1f477-1f3fb-200d-2640-fe0f.png",
+ sheet_x: 24,
+ sheet_y: 36,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F477-1F3FC-200D-2640-FE0F",
+ non_qualified: "1F477-1F3FC-200D-2640",
+ image: "1f477-1f3fc-200d-2640-fe0f.png",
+ sheet_x: 24,
+ sheet_y: 37,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F477-1F3FD-200D-2640-FE0F",
+ non_qualified: "1F477-1F3FD-200D-2640",
+ image: "1f477-1f3fd-200d-2640-fe0f.png",
+ sheet_x: 24,
+ sheet_y: 38,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F477-1F3FE-200D-2640-FE0F",
+ non_qualified: "1F477-1F3FE-200D-2640",
+ image: "1f477-1f3fe-200d-2640-fe0f.png",
+ sheet_x: 24,
+ sheet_y: 39,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F477-1F3FF-200D-2640-FE0F",
+ non_qualified: "1F477-1F3FF-200D-2640",
+ image: "1f477-1f3ff-200d-2640-fe0f.png",
+ sheet_x: 24,
+ sheet_y: 40,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ person_with_crown: {
+ char: "🫅",
+ key: "person_with_crown",
+ keywords: ["person_with_crown", "PERSON WITH CROWN"],
+ category: "people",
+ lib: {
+ name: "PERSON WITH CROWN",
+ unified: "1FAC5",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1fac5.png",
+ sheet_x: 55,
+ sheet_y: 10,
+ short_name: "person_with_crown",
+ short_names: ["person_with_crown"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-role",
+ sort_order: 347,
+ added_in: "14.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1FAC5-1F3FB",
+ non_qualified: null,
+ image: "1fac5-1f3fb.png",
+ sheet_x: 55,
+ sheet_y: 11,
+ added_in: "14.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1FAC5-1F3FC",
+ non_qualified: null,
+ image: "1fac5-1f3fc.png",
+ sheet_x: 55,
+ sheet_y: 12,
+ added_in: "14.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1FAC5-1F3FD",
+ non_qualified: null,
+ image: "1fac5-1f3fd.png",
+ sheet_x: 55,
+ sheet_y: 13,
+ added_in: "14.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1FAC5-1F3FE",
+ non_qualified: null,
+ image: "1fac5-1f3fe.png",
+ sheet_x: 55,
+ sheet_y: 14,
+ added_in: "14.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1FAC5-1F3FF",
+ non_qualified: null,
+ image: "1fac5-1f3ff.png",
+ sheet_x: 55,
+ sheet_y: 15,
+ added_in: "14.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ prince: {
+ char: "🤴",
+ key: "prince",
+ keywords: ["prince", "PRINCE"],
+ category: "people",
+ lib: {
+ name: "PRINCE",
+ unified: "1F934",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f934.png",
+ sheet_x: 41,
+ sheet_y: 10,
+ short_name: "prince",
+ short_names: ["prince"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-role",
+ sort_order: 348,
+ added_in: "3.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F934-1F3FB",
+ non_qualified: null,
+ image: "1f934-1f3fb.png",
+ sheet_x: 41,
+ sheet_y: 11,
+ added_in: "3.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F934-1F3FC",
+ non_qualified: null,
+ image: "1f934-1f3fc.png",
+ sheet_x: 41,
+ sheet_y: 12,
+ added_in: "3.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F934-1F3FD",
+ non_qualified: null,
+ image: "1f934-1f3fd.png",
+ sheet_x: 41,
+ sheet_y: 13,
+ added_in: "3.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F934-1F3FE",
+ non_qualified: null,
+ image: "1f934-1f3fe.png",
+ sheet_x: 41,
+ sheet_y: 14,
+ added_in: "3.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F934-1F3FF",
+ non_qualified: null,
+ image: "1f934-1f3ff.png",
+ sheet_x: 41,
+ sheet_y: 15,
+ added_in: "3.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ princess: {
+ char: "👸",
+ key: "princess",
+ keywords: ["princess", "PRINCESS"],
+ category: "people",
+ lib: {
+ name: "PRINCESS",
+ unified: "1F478",
+ non_qualified: null,
+ docomo: null,
+ au: "EB1A",
+ softbank: "E51C",
+ google: "FE1AB",
+ image: "1f478.png",
+ sheet_x: 24,
+ sheet_y: 53,
+ short_name: "princess",
+ short_names: ["princess"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-role",
+ sort_order: 349,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F478-1F3FB",
+ non_qualified: null,
+ image: "1f478-1f3fb.png",
+ sheet_x: 24,
+ sheet_y: 54,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F478-1F3FC",
+ non_qualified: null,
+ image: "1f478-1f3fc.png",
+ sheet_x: 24,
+ sheet_y: 55,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F478-1F3FD",
+ non_qualified: null,
+ image: "1f478-1f3fd.png",
+ sheet_x: 24,
+ sheet_y: 56,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F478-1F3FE",
+ non_qualified: null,
+ image: "1f478-1f3fe.png",
+ sheet_x: 24,
+ sheet_y: 57,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F478-1F3FF",
+ non_qualified: null,
+ image: "1f478-1f3ff.png",
+ sheet_x: 24,
+ sheet_y: 58,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ "man-wearing-turban": {
+ char: "👳♂️",
+ key: "man-wearing-turban",
+ keywords: ["man-wearing-turban", "MAN WEARING TURBAN"],
+ category: "people",
+ lib: {
+ name: "MAN WEARING TURBAN",
+ unified: "1F473-200D-2642-FE0F",
+ non_qualified: "1F473-200D-2642",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f473-200d-2642-fe0f.png",
+ sheet_x: 24,
+ sheet_y: 5,
+ short_name: "man-wearing-turban",
+ short_names: ["man-wearing-turban"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-role",
+ sort_order: 351,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F473-1F3FB-200D-2642-FE0F",
+ non_qualified: "1F473-1F3FB-200D-2642",
+ image: "1f473-1f3fb-200d-2642-fe0f.png",
+ sheet_x: 24,
+ sheet_y: 6,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F473-1F3FC-200D-2642-FE0F",
+ non_qualified: "1F473-1F3FC-200D-2642",
+ image: "1f473-1f3fc-200d-2642-fe0f.png",
+ sheet_x: 24,
+ sheet_y: 7,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F473-1F3FD-200D-2642-FE0F",
+ non_qualified: "1F473-1F3FD-200D-2642",
+ image: "1f473-1f3fd-200d-2642-fe0f.png",
+ sheet_x: 24,
+ sheet_y: 8,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F473-1F3FE-200D-2642-FE0F",
+ non_qualified: "1F473-1F3FE-200D-2642",
+ image: "1f473-1f3fe-200d-2642-fe0f.png",
+ sheet_x: 24,
+ sheet_y: 9,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F473-1F3FF-200D-2642-FE0F",
+ non_qualified: "1F473-1F3FF-200D-2642",
+ image: "1f473-1f3ff-200d-2642-fe0f.png",
+ sheet_x: 24,
+ sheet_y: 10,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ obsoletes: "1F473",
+ },
+ },
+ "woman-wearing-turban": {
+ char: "👳♀️",
+ key: "woman-wearing-turban",
+ keywords: ["woman-wearing-turban", "WOMAN WEARING TURBAN"],
+ category: "people",
+ lib: {
+ name: "WOMAN WEARING TURBAN",
+ unified: "1F473-200D-2640-FE0F",
+ non_qualified: "1F473-200D-2640",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f473-200d-2640-fe0f.png",
+ sheet_x: 23,
+ sheet_y: 60,
+ short_name: "woman-wearing-turban",
+ short_names: ["woman-wearing-turban"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-role",
+ sort_order: 352,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F473-1F3FB-200D-2640-FE0F",
+ non_qualified: "1F473-1F3FB-200D-2640",
+ image: "1f473-1f3fb-200d-2640-fe0f.png",
+ sheet_x: 24,
+ sheet_y: 0,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F473-1F3FC-200D-2640-FE0F",
+ non_qualified: "1F473-1F3FC-200D-2640",
+ image: "1f473-1f3fc-200d-2640-fe0f.png",
+ sheet_x: 24,
+ sheet_y: 1,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F473-1F3FD-200D-2640-FE0F",
+ non_qualified: "1F473-1F3FD-200D-2640",
+ image: "1f473-1f3fd-200d-2640-fe0f.png",
+ sheet_x: 24,
+ sheet_y: 2,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F473-1F3FE-200D-2640-FE0F",
+ non_qualified: "1F473-1F3FE-200D-2640",
+ image: "1f473-1f3fe-200d-2640-fe0f.png",
+ sheet_x: 24,
+ sheet_y: 3,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F473-1F3FF-200D-2640-FE0F",
+ non_qualified: "1F473-1F3FF-200D-2640",
+ image: "1f473-1f3ff-200d-2640-fe0f.png",
+ sheet_x: 24,
+ sheet_y: 4,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ man_with_gua_pi_mao: {
+ char: "👲",
+ key: "man_with_gua_pi_mao",
+ keywords: ["man_with_gua_pi_mao", "MAN WITH GUA PI MAO"],
+ category: "people",
+ lib: {
+ name: "MAN WITH GUA PI MAO",
+ unified: "1F472",
+ non_qualified: null,
+ docomo: null,
+ au: "EB14",
+ softbank: "E516",
+ google: "FE1A5",
+ image: "1f472.png",
+ sheet_x: 23,
+ sheet_y: 54,
+ short_name: "man_with_gua_pi_mao",
+ short_names: ["man_with_gua_pi_mao"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-role",
+ sort_order: 353,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F472-1F3FB",
+ non_qualified: null,
+ image: "1f472-1f3fb.png",
+ sheet_x: 23,
+ sheet_y: 55,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F472-1F3FC",
+ non_qualified: null,
+ image: "1f472-1f3fc.png",
+ sheet_x: 23,
+ sheet_y: 56,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F472-1F3FD",
+ non_qualified: null,
+ image: "1f472-1f3fd.png",
+ sheet_x: 23,
+ sheet_y: 57,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F472-1F3FE",
+ non_qualified: null,
+ image: "1f472-1f3fe.png",
+ sheet_x: 23,
+ sheet_y: 58,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F472-1F3FF",
+ non_qualified: null,
+ image: "1f472-1f3ff.png",
+ sheet_x: 23,
+ sheet_y: 59,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ person_with_headscarf: {
+ char: "🧕",
+ key: "person_with_headscarf",
+ keywords: ["person_with_headscarf", "PERSON WITH HEADSCARF"],
+ category: "people",
+ lib: {
+ name: "PERSON WITH HEADSCARF",
+ unified: "1F9D5",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f9d5.png",
+ sheet_x: 50,
+ sheet_y: 43,
+ short_name: "person_with_headscarf",
+ short_names: ["person_with_headscarf"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-role",
+ sort_order: 354,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F9D5-1F3FB",
+ non_qualified: null,
+ image: "1f9d5-1f3fb.png",
+ sheet_x: 50,
+ sheet_y: 44,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F9D5-1F3FC",
+ non_qualified: null,
+ image: "1f9d5-1f3fc.png",
+ sheet_x: 50,
+ sheet_y: 45,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F9D5-1F3FD",
+ non_qualified: null,
+ image: "1f9d5-1f3fd.png",
+ sheet_x: 50,
+ sheet_y: 46,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F9D5-1F3FE",
+ non_qualified: null,
+ image: "1f9d5-1f3fe.png",
+ sheet_x: 50,
+ sheet_y: 47,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F9D5-1F3FF",
+ non_qualified: null,
+ image: "1f9d5-1f3ff.png",
+ sheet_x: 50,
+ sheet_y: 48,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ person_in_tuxedo: {
+ char: "🤵",
+ key: "person_in_tuxedo",
+ keywords: ["person_in_tuxedo", "MAN IN TUXEDO"],
+ category: "people",
+ lib: {
+ name: "MAN IN TUXEDO",
+ unified: "1F935",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f935.png",
+ sheet_x: 41,
+ sheet_y: 28,
+ short_name: "person_in_tuxedo",
+ short_names: ["person_in_tuxedo"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-role",
+ sort_order: 355,
+ added_in: "3.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F935-1F3FB",
+ non_qualified: null,
+ image: "1f935-1f3fb.png",
+ sheet_x: 41,
+ sheet_y: 29,
+ added_in: "3.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F935-1F3FC",
+ non_qualified: null,
+ image: "1f935-1f3fc.png",
+ sheet_x: 41,
+ sheet_y: 30,
+ added_in: "3.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F935-1F3FD",
+ non_qualified: null,
+ image: "1f935-1f3fd.png",
+ sheet_x: 41,
+ sheet_y: 31,
+ added_in: "3.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F935-1F3FE",
+ non_qualified: null,
+ image: "1f935-1f3fe.png",
+ sheet_x: 41,
+ sheet_y: 32,
+ added_in: "3.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F935-1F3FF",
+ non_qualified: null,
+ image: "1f935-1f3ff.png",
+ sheet_x: 41,
+ sheet_y: 33,
+ added_in: "3.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ man_in_tuxedo: {
+ char: "🤵♂️",
+ key: "man_in_tuxedo",
+ keywords: ["man_in_tuxedo", "MAN IN TUXEDO"],
+ category: "people",
+ lib: {
+ name: "MAN IN TUXEDO",
+ unified: "1F935-200D-2642-FE0F",
+ non_qualified: "1F935-200D-2642",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f935-200d-2642-fe0f.png",
+ sheet_x: 41,
+ sheet_y: 22,
+ short_name: "man_in_tuxedo",
+ short_names: ["man_in_tuxedo"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-role",
+ sort_order: 356,
+ added_in: "13.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F935-1F3FB-200D-2642-FE0F",
+ non_qualified: "1F935-1F3FB-200D-2642",
+ image: "1f935-1f3fb-200d-2642-fe0f.png",
+ sheet_x: 41,
+ sheet_y: 23,
+ added_in: "13.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F935-1F3FC-200D-2642-FE0F",
+ non_qualified: "1F935-1F3FC-200D-2642",
+ image: "1f935-1f3fc-200d-2642-fe0f.png",
+ sheet_x: 41,
+ sheet_y: 24,
+ added_in: "13.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F935-1F3FD-200D-2642-FE0F",
+ non_qualified: "1F935-1F3FD-200D-2642",
+ image: "1f935-1f3fd-200d-2642-fe0f.png",
+ sheet_x: 41,
+ sheet_y: 25,
+ added_in: "13.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F935-1F3FE-200D-2642-FE0F",
+ non_qualified: "1F935-1F3FE-200D-2642",
+ image: "1f935-1f3fe-200d-2642-fe0f.png",
+ sheet_x: 41,
+ sheet_y: 26,
+ added_in: "13.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F935-1F3FF-200D-2642-FE0F",
+ non_qualified: "1F935-1F3FF-200D-2642",
+ image: "1f935-1f3ff-200d-2642-fe0f.png",
+ sheet_x: 41,
+ sheet_y: 27,
+ added_in: "13.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ woman_in_tuxedo: {
+ char: "🤵♀️",
+ key: "woman_in_tuxedo",
+ keywords: ["woman_in_tuxedo", "WOMAN IN TUXEDO"],
+ category: "people",
+ lib: {
+ name: "WOMAN IN TUXEDO",
+ unified: "1F935-200D-2640-FE0F",
+ non_qualified: "1F935-200D-2640",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f935-200d-2640-fe0f.png",
+ sheet_x: 41,
+ sheet_y: 16,
+ short_name: "woman_in_tuxedo",
+ short_names: ["woman_in_tuxedo"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-role",
+ sort_order: 357,
+ added_in: "13.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F935-1F3FB-200D-2640-FE0F",
+ non_qualified: "1F935-1F3FB-200D-2640",
+ image: "1f935-1f3fb-200d-2640-fe0f.png",
+ sheet_x: 41,
+ sheet_y: 17,
+ added_in: "13.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F935-1F3FC-200D-2640-FE0F",
+ non_qualified: "1F935-1F3FC-200D-2640",
+ image: "1f935-1f3fc-200d-2640-fe0f.png",
+ sheet_x: 41,
+ sheet_y: 18,
+ added_in: "13.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F935-1F3FD-200D-2640-FE0F",
+ non_qualified: "1F935-1F3FD-200D-2640",
+ image: "1f935-1f3fd-200d-2640-fe0f.png",
+ sheet_x: 41,
+ sheet_y: 19,
+ added_in: "13.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F935-1F3FE-200D-2640-FE0F",
+ non_qualified: "1F935-1F3FE-200D-2640",
+ image: "1f935-1f3fe-200d-2640-fe0f.png",
+ sheet_x: 41,
+ sheet_y: 20,
+ added_in: "13.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F935-1F3FF-200D-2640-FE0F",
+ non_qualified: "1F935-1F3FF-200D-2640",
+ image: "1f935-1f3ff-200d-2640-fe0f.png",
+ sheet_x: 41,
+ sheet_y: 21,
+ added_in: "13.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ bride_with_veil: {
+ char: "👰",
+ key: "bride_with_veil",
+ keywords: ["bride_with_veil", "BRIDE WITH VEIL"],
+ category: "people",
+ lib: {
+ name: "BRIDE WITH VEIL",
+ unified: "1F470",
+ non_qualified: null,
+ docomo: null,
+ au: "EAE9",
+ softbank: null,
+ google: "FE1A3",
+ image: "1f470.png",
+ sheet_x: 23,
+ sheet_y: 30,
+ short_name: "bride_with_veil",
+ short_names: ["bride_with_veil"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-role",
+ sort_order: 358,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F470-1F3FB",
+ non_qualified: null,
+ image: "1f470-1f3fb.png",
+ sheet_x: 23,
+ sheet_y: 31,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F470-1F3FC",
+ non_qualified: null,
+ image: "1f470-1f3fc.png",
+ sheet_x: 23,
+ sheet_y: 32,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F470-1F3FD",
+ non_qualified: null,
+ image: "1f470-1f3fd.png",
+ sheet_x: 23,
+ sheet_y: 33,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F470-1F3FE",
+ non_qualified: null,
+ image: "1f470-1f3fe.png",
+ sheet_x: 23,
+ sheet_y: 34,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F470-1F3FF",
+ non_qualified: null,
+ image: "1f470-1f3ff.png",
+ sheet_x: 23,
+ sheet_y: 35,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ man_with_veil: {
+ char: "👰♂️",
+ key: "man_with_veil",
+ keywords: ["man_with_veil", "MAN WITH VEIL"],
+ category: "people",
+ lib: {
+ name: "MAN WITH VEIL",
+ unified: "1F470-200D-2642-FE0F",
+ non_qualified: "1F470-200D-2642",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f470-200d-2642-fe0f.png",
+ sheet_x: 23,
+ sheet_y: 24,
+ short_name: "man_with_veil",
+ short_names: ["man_with_veil"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-role",
+ sort_order: 359,
+ added_in: "13.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F470-1F3FB-200D-2642-FE0F",
+ non_qualified: "1F470-1F3FB-200D-2642",
+ image: "1f470-1f3fb-200d-2642-fe0f.png",
+ sheet_x: 23,
+ sheet_y: 25,
+ added_in: "13.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F470-1F3FC-200D-2642-FE0F",
+ non_qualified: "1F470-1F3FC-200D-2642",
+ image: "1f470-1f3fc-200d-2642-fe0f.png",
+ sheet_x: 23,
+ sheet_y: 26,
+ added_in: "13.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F470-1F3FD-200D-2642-FE0F",
+ non_qualified: "1F470-1F3FD-200D-2642",
+ image: "1f470-1f3fd-200d-2642-fe0f.png",
+ sheet_x: 23,
+ sheet_y: 27,
+ added_in: "13.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F470-1F3FE-200D-2642-FE0F",
+ non_qualified: "1F470-1F3FE-200D-2642",
+ image: "1f470-1f3fe-200d-2642-fe0f.png",
+ sheet_x: 23,
+ sheet_y: 28,
+ added_in: "13.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F470-1F3FF-200D-2642-FE0F",
+ non_qualified: "1F470-1F3FF-200D-2642",
+ image: "1f470-1f3ff-200d-2642-fe0f.png",
+ sheet_x: 23,
+ sheet_y: 29,
+ added_in: "13.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ woman_with_veil: {
+ char: "👰♀️",
+ key: "woman_with_veil",
+ keywords: ["woman_with_veil", "WOMAN WITH VEIL"],
+ category: "people",
+ lib: {
+ name: "WOMAN WITH VEIL",
+ unified: "1F470-200D-2640-FE0F",
+ non_qualified: "1F470-200D-2640",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f470-200d-2640-fe0f.png",
+ sheet_x: 23,
+ sheet_y: 18,
+ short_name: "woman_with_veil",
+ short_names: ["woman_with_veil"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-role",
+ sort_order: 360,
+ added_in: "13.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F470-1F3FB-200D-2640-FE0F",
+ non_qualified: "1F470-1F3FB-200D-2640",
+ image: "1f470-1f3fb-200d-2640-fe0f.png",
+ sheet_x: 23,
+ sheet_y: 19,
+ added_in: "13.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F470-1F3FC-200D-2640-FE0F",
+ non_qualified: "1F470-1F3FC-200D-2640",
+ image: "1f470-1f3fc-200d-2640-fe0f.png",
+ sheet_x: 23,
+ sheet_y: 20,
+ added_in: "13.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F470-1F3FD-200D-2640-FE0F",
+ non_qualified: "1F470-1F3FD-200D-2640",
+ image: "1f470-1f3fd-200d-2640-fe0f.png",
+ sheet_x: 23,
+ sheet_y: 21,
+ added_in: "13.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F470-1F3FE-200D-2640-FE0F",
+ non_qualified: "1F470-1F3FE-200D-2640",
+ image: "1f470-1f3fe-200d-2640-fe0f.png",
+ sheet_x: 23,
+ sheet_y: 22,
+ added_in: "13.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F470-1F3FF-200D-2640-FE0F",
+ non_qualified: "1F470-1F3FF-200D-2640",
+ image: "1f470-1f3ff-200d-2640-fe0f.png",
+ sheet_x: 23,
+ sheet_y: 23,
+ added_in: "13.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ pregnant_woman: {
+ char: "🤰",
+ key: "pregnant_woman",
+ keywords: ["pregnant_woman", "PREGNANT WOMAN"],
+ category: "people",
+ lib: {
+ name: "PREGNANT WOMAN",
+ unified: "1F930",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f930.png",
+ sheet_x: 40,
+ sheet_y: 47,
+ short_name: "pregnant_woman",
+ short_names: ["pregnant_woman"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-role",
+ sort_order: 361,
+ added_in: "3.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F930-1F3FB",
+ non_qualified: null,
+ image: "1f930-1f3fb.png",
+ sheet_x: 40,
+ sheet_y: 48,
+ added_in: "3.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F930-1F3FC",
+ non_qualified: null,
+ image: "1f930-1f3fc.png",
+ sheet_x: 40,
+ sheet_y: 49,
+ added_in: "3.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F930-1F3FD",
+ non_qualified: null,
+ image: "1f930-1f3fd.png",
+ sheet_x: 40,
+ sheet_y: 50,
+ added_in: "3.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F930-1F3FE",
+ non_qualified: null,
+ image: "1f930-1f3fe.png",
+ sheet_x: 40,
+ sheet_y: 51,
+ added_in: "3.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F930-1F3FF",
+ non_qualified: null,
+ image: "1f930-1f3ff.png",
+ sheet_x: 40,
+ sheet_y: 52,
+ added_in: "3.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ pregnant_man: {
+ char: "🫃",
+ key: "pregnant_man",
+ keywords: ["pregnant_man", "PREGNANT MAN"],
+ category: "people",
+ lib: {
+ name: "PREGNANT MAN",
+ unified: "1FAC3",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1fac3.png",
+ sheet_x: 54,
+ sheet_y: 59,
+ short_name: "pregnant_man",
+ short_names: ["pregnant_man"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-role",
+ sort_order: 362,
+ added_in: "14.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1FAC3-1F3FB",
+ non_qualified: null,
+ image: "1fac3-1f3fb.png",
+ sheet_x: 54,
+ sheet_y: 60,
+ added_in: "14.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1FAC3-1F3FC",
+ non_qualified: null,
+ image: "1fac3-1f3fc.png",
+ sheet_x: 55,
+ sheet_y: 0,
+ added_in: "14.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1FAC3-1F3FD",
+ non_qualified: null,
+ image: "1fac3-1f3fd.png",
+ sheet_x: 55,
+ sheet_y: 1,
+ added_in: "14.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1FAC3-1F3FE",
+ non_qualified: null,
+ image: "1fac3-1f3fe.png",
+ sheet_x: 55,
+ sheet_y: 2,
+ added_in: "14.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1FAC3-1F3FF",
+ non_qualified: null,
+ image: "1fac3-1f3ff.png",
+ sheet_x: 55,
+ sheet_y: 3,
+ added_in: "14.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ pregnant_person: {
+ char: "🫄",
+ key: "pregnant_person",
+ keywords: ["pregnant_person", "PREGNANT PERSON"],
+ category: "people",
+ lib: {
+ name: "PREGNANT PERSON",
+ unified: "1FAC4",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1fac4.png",
+ sheet_x: 55,
+ sheet_y: 4,
+ short_name: "pregnant_person",
+ short_names: ["pregnant_person"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-role",
+ sort_order: 363,
+ added_in: "14.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1FAC4-1F3FB",
+ non_qualified: null,
+ image: "1fac4-1f3fb.png",
+ sheet_x: 55,
+ sheet_y: 5,
+ added_in: "14.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1FAC4-1F3FC",
+ non_qualified: null,
+ image: "1fac4-1f3fc.png",
+ sheet_x: 55,
+ sheet_y: 6,
+ added_in: "14.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1FAC4-1F3FD",
+ non_qualified: null,
+ image: "1fac4-1f3fd.png",
+ sheet_x: 55,
+ sheet_y: 7,
+ added_in: "14.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1FAC4-1F3FE",
+ non_qualified: null,
+ image: "1fac4-1f3fe.png",
+ sheet_x: 55,
+ sheet_y: 8,
+ added_in: "14.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1FAC4-1F3FF",
+ non_qualified: null,
+ image: "1fac4-1f3ff.png",
+ sheet_x: 55,
+ sheet_y: 9,
+ added_in: "14.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ "breast-feeding": {
+ char: "🤱",
+ key: "breast-feeding",
+ keywords: ["breast-feeding", "BREAST-FEEDING"],
+ category: "people",
+ lib: {
+ name: "BREAST-FEEDING",
+ unified: "1F931",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f931.png",
+ sheet_x: 40,
+ sheet_y: 53,
+ short_name: "breast-feeding",
+ short_names: ["breast-feeding"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-role",
+ sort_order: 364,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F931-1F3FB",
+ non_qualified: null,
+ image: "1f931-1f3fb.png",
+ sheet_x: 40,
+ sheet_y: 54,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F931-1F3FC",
+ non_qualified: null,
+ image: "1f931-1f3fc.png",
+ sheet_x: 40,
+ sheet_y: 55,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F931-1F3FD",
+ non_qualified: null,
+ image: "1f931-1f3fd.png",
+ sheet_x: 40,
+ sheet_y: 56,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F931-1F3FE",
+ non_qualified: null,
+ image: "1f931-1f3fe.png",
+ sheet_x: 40,
+ sheet_y: 57,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F931-1F3FF",
+ non_qualified: null,
+ image: "1f931-1f3ff.png",
+ sheet_x: 40,
+ sheet_y: 58,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ woman_feeding_baby: {
+ char: "👩🍼",
+ key: "woman_feeding_baby",
+ keywords: ["woman_feeding_baby", "WOMAN FEEDING BABY"],
+ category: "people",
+ lib: {
+ name: "WOMAN FEEDING BABY",
+ unified: "1F469-200D-1F37C",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f469-200d-1f37c.png",
+ sheet_x: 17,
+ sheet_y: 32,
+ short_name: "woman_feeding_baby",
+ short_names: ["woman_feeding_baby"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-role",
+ sort_order: 365,
+ added_in: "13.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F469-1F3FB-200D-1F37C",
+ non_qualified: null,
+ image: "1f469-1f3fb-200d-1f37c.png",
+ sheet_x: 17,
+ sheet_y: 33,
+ added_in: "13.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F469-1F3FC-200D-1F37C",
+ non_qualified: null,
+ image: "1f469-1f3fc-200d-1f37c.png",
+ sheet_x: 17,
+ sheet_y: 34,
+ added_in: "13.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F469-1F3FD-200D-1F37C",
+ non_qualified: null,
+ image: "1f469-1f3fd-200d-1f37c.png",
+ sheet_x: 17,
+ sheet_y: 35,
+ added_in: "13.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F469-1F3FE-200D-1F37C",
+ non_qualified: null,
+ image: "1f469-1f3fe-200d-1f37c.png",
+ sheet_x: 17,
+ sheet_y: 36,
+ added_in: "13.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F469-1F3FF-200D-1F37C",
+ non_qualified: null,
+ image: "1f469-1f3ff-200d-1f37c.png",
+ sheet_x: 17,
+ sheet_y: 37,
+ added_in: "13.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ man_feeding_baby: {
+ char: "👨🍼",
+ key: "man_feeding_baby",
+ keywords: ["man_feeding_baby", "MAN FEEDING BABY"],
+ category: "people",
+ lib: {
+ name: "MAN FEEDING BABY",
+ unified: "1F468-200D-1F37C",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f468-200d-1f37c.png",
+ sheet_x: 13,
+ sheet_y: 59,
+ short_name: "man_feeding_baby",
+ short_names: ["man_feeding_baby"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-role",
+ sort_order: 366,
+ added_in: "13.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F468-1F3FB-200D-1F37C",
+ non_qualified: null,
+ image: "1f468-1f3fb-200d-1f37c.png",
+ sheet_x: 13,
+ sheet_y: 60,
+ added_in: "13.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F468-1F3FC-200D-1F37C",
+ non_qualified: null,
+ image: "1f468-1f3fc-200d-1f37c.png",
+ sheet_x: 14,
+ sheet_y: 0,
+ added_in: "13.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F468-1F3FD-200D-1F37C",
+ non_qualified: null,
+ image: "1f468-1f3fd-200d-1f37c.png",
+ sheet_x: 14,
+ sheet_y: 1,
+ added_in: "13.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F468-1F3FE-200D-1F37C",
+ non_qualified: null,
+ image: "1f468-1f3fe-200d-1f37c.png",
+ sheet_x: 14,
+ sheet_y: 2,
+ added_in: "13.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F468-1F3FF-200D-1F37C",
+ non_qualified: null,
+ image: "1f468-1f3ff-200d-1f37c.png",
+ sheet_x: 14,
+ sheet_y: 3,
+ added_in: "13.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ person_feeding_baby: {
+ char: "🧑🍼",
+ key: "person_feeding_baby",
+ keywords: ["person_feeding_baby", "PERSON FEEDING BABY"],
+ category: "people",
+ lib: {
+ name: "PERSON FEEDING BABY",
+ unified: "1F9D1-200D-1F37C",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f9d1-200d-1f37c.png",
+ sheet_x: 47,
+ sheet_y: 26,
+ short_name: "person_feeding_baby",
+ short_names: ["person_feeding_baby"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-role",
+ sort_order: 367,
+ added_in: "13.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F9D1-1F3FB-200D-1F37C",
+ non_qualified: null,
+ image: "1f9d1-1f3fb-200d-1f37c.png",
+ sheet_x: 47,
+ sheet_y: 27,
+ added_in: "13.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F9D1-1F3FC-200D-1F37C",
+ non_qualified: null,
+ image: "1f9d1-1f3fc-200d-1f37c.png",
+ sheet_x: 47,
+ sheet_y: 28,
+ added_in: "13.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F9D1-1F3FD-200D-1F37C",
+ non_qualified: null,
+ image: "1f9d1-1f3fd-200d-1f37c.png",
+ sheet_x: 47,
+ sheet_y: 29,
+ added_in: "13.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F9D1-1F3FE-200D-1F37C",
+ non_qualified: null,
+ image: "1f9d1-1f3fe-200d-1f37c.png",
+ sheet_x: 47,
+ sheet_y: 30,
+ added_in: "13.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F9D1-1F3FF-200D-1F37C",
+ non_qualified: null,
+ image: "1f9d1-1f3ff-200d-1f37c.png",
+ sheet_x: 47,
+ sheet_y: 31,
+ added_in: "13.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ angel: {
+ char: "👼",
+ key: "angel",
+ keywords: ["angel", "BABY ANGEL"],
+ category: "people",
+ lib: {
+ name: "BABY ANGEL",
+ unified: "1F47C",
+ non_qualified: null,
+ docomo: null,
+ au: "E5BF",
+ softbank: "E04E",
+ google: "FE1AF",
+ image: "1f47c.png",
+ sheet_x: 25,
+ sheet_y: 1,
+ short_name: "angel",
+ short_names: ["angel"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-fantasy",
+ sort_order: 368,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F47C-1F3FB",
+ non_qualified: null,
+ image: "1f47c-1f3fb.png",
+ sheet_x: 25,
+ sheet_y: 2,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F47C-1F3FC",
+ non_qualified: null,
+ image: "1f47c-1f3fc.png",
+ sheet_x: 25,
+ sheet_y: 3,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F47C-1F3FD",
+ non_qualified: null,
+ image: "1f47c-1f3fd.png",
+ sheet_x: 25,
+ sheet_y: 4,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F47C-1F3FE",
+ non_qualified: null,
+ image: "1f47c-1f3fe.png",
+ sheet_x: 25,
+ sheet_y: 5,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F47C-1F3FF",
+ non_qualified: null,
+ image: "1f47c-1f3ff.png",
+ sheet_x: 25,
+ sheet_y: 6,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ santa: {
+ char: "🎅",
+ key: "santa",
+ keywords: ["santa", "FATHER CHRISTMAS"],
+ category: "people",
+ lib: {
+ name: "FATHER CHRISTMAS",
+ unified: "1F385",
+ non_qualified: null,
+ docomo: null,
+ au: "EAF0",
+ softbank: "E448",
+ google: "FE513",
+ image: "1f385.png",
+ sheet_x: 7,
+ sheet_y: 8,
+ short_name: "santa",
+ short_names: ["santa"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-fantasy",
+ sort_order: 369,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F385-1F3FB",
+ non_qualified: null,
+ image: "1f385-1f3fb.png",
+ sheet_x: 7,
+ sheet_y: 9,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F385-1F3FC",
+ non_qualified: null,
+ image: "1f385-1f3fc.png",
+ sheet_x: 7,
+ sheet_y: 10,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F385-1F3FD",
+ non_qualified: null,
+ image: "1f385-1f3fd.png",
+ sheet_x: 7,
+ sheet_y: 11,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F385-1F3FE",
+ non_qualified: null,
+ image: "1f385-1f3fe.png",
+ sheet_x: 7,
+ sheet_y: 12,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F385-1F3FF",
+ non_qualified: null,
+ image: "1f385-1f3ff.png",
+ sheet_x: 7,
+ sheet_y: 13,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ mrs_claus: {
+ char: "🤶",
+ key: "mrs_claus",
+ keywords: ["mrs_claus", "MOTHER CHRISTMAS"],
+ category: "people",
+ lib: {
+ name: "MOTHER CHRISTMAS",
+ unified: "1F936",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f936.png",
+ sheet_x: 41,
+ sheet_y: 34,
+ short_name: "mrs_claus",
+ short_names: ["mrs_claus", "mother_christmas"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-fantasy",
+ sort_order: 370,
+ added_in: "3.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F936-1F3FB",
+ non_qualified: null,
+ image: "1f936-1f3fb.png",
+ sheet_x: 41,
+ sheet_y: 35,
+ added_in: "3.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F936-1F3FC",
+ non_qualified: null,
+ image: "1f936-1f3fc.png",
+ sheet_x: 41,
+ sheet_y: 36,
+ added_in: "3.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F936-1F3FD",
+ non_qualified: null,
+ image: "1f936-1f3fd.png",
+ sheet_x: 41,
+ sheet_y: 37,
+ added_in: "3.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F936-1F3FE",
+ non_qualified: null,
+ image: "1f936-1f3fe.png",
+ sheet_x: 41,
+ sheet_y: 38,
+ added_in: "3.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F936-1F3FF",
+ non_qualified: null,
+ image: "1f936-1f3ff.png",
+ sheet_x: 41,
+ sheet_y: 39,
+ added_in: "3.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ mx_claus: {
+ char: "🧑🎄",
+ key: "mx_claus",
+ keywords: ["mx_claus", "MX CLAUS"],
+ category: "people",
+ lib: {
+ name: "MX CLAUS",
+ unified: "1F9D1-200D-1F384",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f9d1-200d-1f384.png",
+ sheet_x: 47,
+ sheet_y: 32,
+ short_name: "mx_claus",
+ short_names: ["mx_claus"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-fantasy",
+ sort_order: 371,
+ added_in: "13.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F9D1-1F3FB-200D-1F384",
+ non_qualified: null,
+ image: "1f9d1-1f3fb-200d-1f384.png",
+ sheet_x: 47,
+ sheet_y: 33,
+ added_in: "13.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F9D1-1F3FC-200D-1F384",
+ non_qualified: null,
+ image: "1f9d1-1f3fc-200d-1f384.png",
+ sheet_x: 47,
+ sheet_y: 34,
+ added_in: "13.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F9D1-1F3FD-200D-1F384",
+ non_qualified: null,
+ image: "1f9d1-1f3fd-200d-1f384.png",
+ sheet_x: 47,
+ sheet_y: 35,
+ added_in: "13.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F9D1-1F3FE-200D-1F384",
+ non_qualified: null,
+ image: "1f9d1-1f3fe-200d-1f384.png",
+ sheet_x: 47,
+ sheet_y: 36,
+ added_in: "13.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F9D1-1F3FF-200D-1F384",
+ non_qualified: null,
+ image: "1f9d1-1f3ff-200d-1f384.png",
+ sheet_x: 47,
+ sheet_y: 37,
+ added_in: "13.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ superhero: {
+ char: "🦸",
+ key: "superhero",
+ keywords: ["superhero", "SUPERHERO"],
+ category: "people",
+ lib: {
+ name: "SUPERHERO",
+ unified: "1F9B8",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f9b8.png",
+ sheet_x: 45,
+ sheet_y: 33,
+ short_name: "superhero",
+ short_names: ["superhero"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-fantasy",
+ sort_order: 372,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F9B8-1F3FB",
+ non_qualified: null,
+ image: "1f9b8-1f3fb.png",
+ sheet_x: 45,
+ sheet_y: 34,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F9B8-1F3FC",
+ non_qualified: null,
+ image: "1f9b8-1f3fc.png",
+ sheet_x: 45,
+ sheet_y: 35,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F9B8-1F3FD",
+ non_qualified: null,
+ image: "1f9b8-1f3fd.png",
+ sheet_x: 45,
+ sheet_y: 36,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F9B8-1F3FE",
+ non_qualified: null,
+ image: "1f9b8-1f3fe.png",
+ sheet_x: 45,
+ sheet_y: 37,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F9B8-1F3FF",
+ non_qualified: null,
+ image: "1f9b8-1f3ff.png",
+ sheet_x: 45,
+ sheet_y: 38,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ male_superhero: {
+ char: "🦸♂️",
+ key: "male_superhero",
+ keywords: ["male_superhero", "MAN SUPERHERO"],
+ category: "people",
+ lib: {
+ name: "MAN SUPERHERO",
+ unified: "1F9B8-200D-2642-FE0F",
+ non_qualified: "1F9B8-200D-2642",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f9b8-200d-2642-fe0f.png",
+ sheet_x: 45,
+ sheet_y: 27,
+ short_name: "male_superhero",
+ short_names: ["male_superhero"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-fantasy",
+ sort_order: 373,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F9B8-1F3FB-200D-2642-FE0F",
+ non_qualified: "1F9B8-1F3FB-200D-2642",
+ image: "1f9b8-1f3fb-200d-2642-fe0f.png",
+ sheet_x: 45,
+ sheet_y: 28,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F9B8-1F3FC-200D-2642-FE0F",
+ non_qualified: "1F9B8-1F3FC-200D-2642",
+ image: "1f9b8-1f3fc-200d-2642-fe0f.png",
+ sheet_x: 45,
+ sheet_y: 29,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F9B8-1F3FD-200D-2642-FE0F",
+ non_qualified: "1F9B8-1F3FD-200D-2642",
+ image: "1f9b8-1f3fd-200d-2642-fe0f.png",
+ sheet_x: 45,
+ sheet_y: 30,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F9B8-1F3FE-200D-2642-FE0F",
+ non_qualified: "1F9B8-1F3FE-200D-2642",
+ image: "1f9b8-1f3fe-200d-2642-fe0f.png",
+ sheet_x: 45,
+ sheet_y: 31,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F9B8-1F3FF-200D-2642-FE0F",
+ non_qualified: "1F9B8-1F3FF-200D-2642",
+ image: "1f9b8-1f3ff-200d-2642-fe0f.png",
+ sheet_x: 45,
+ sheet_y: 32,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ female_superhero: {
+ char: "🦸♀️",
+ key: "female_superhero",
+ keywords: ["female_superhero", "WOMAN SUPERHERO"],
+ category: "people",
+ lib: {
+ name: "WOMAN SUPERHERO",
+ unified: "1F9B8-200D-2640-FE0F",
+ non_qualified: "1F9B8-200D-2640",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f9b8-200d-2640-fe0f.png",
+ sheet_x: 45,
+ sheet_y: 21,
+ short_name: "female_superhero",
+ short_names: ["female_superhero"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-fantasy",
+ sort_order: 374,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F9B8-1F3FB-200D-2640-FE0F",
+ non_qualified: "1F9B8-1F3FB-200D-2640",
+ image: "1f9b8-1f3fb-200d-2640-fe0f.png",
+ sheet_x: 45,
+ sheet_y: 22,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F9B8-1F3FC-200D-2640-FE0F",
+ non_qualified: "1F9B8-1F3FC-200D-2640",
+ image: "1f9b8-1f3fc-200d-2640-fe0f.png",
+ sheet_x: 45,
+ sheet_y: 23,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F9B8-1F3FD-200D-2640-FE0F",
+ non_qualified: "1F9B8-1F3FD-200D-2640",
+ image: "1f9b8-1f3fd-200d-2640-fe0f.png",
+ sheet_x: 45,
+ sheet_y: 24,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F9B8-1F3FE-200D-2640-FE0F",
+ non_qualified: "1F9B8-1F3FE-200D-2640",
+ image: "1f9b8-1f3fe-200d-2640-fe0f.png",
+ sheet_x: 45,
+ sheet_y: 25,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F9B8-1F3FF-200D-2640-FE0F",
+ non_qualified: "1F9B8-1F3FF-200D-2640",
+ image: "1f9b8-1f3ff-200d-2640-fe0f.png",
+ sheet_x: 45,
+ sheet_y: 26,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ supervillain: {
+ char: "🦹",
+ key: "supervillain",
+ keywords: ["supervillain", "SUPERVILLAIN"],
+ category: "people",
+ lib: {
+ name: "SUPERVILLAIN",
+ unified: "1F9B9",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f9b9.png",
+ sheet_x: 45,
+ sheet_y: 51,
+ short_name: "supervillain",
+ short_names: ["supervillain"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-fantasy",
+ sort_order: 375,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F9B9-1F3FB",
+ non_qualified: null,
+ image: "1f9b9-1f3fb.png",
+ sheet_x: 45,
+ sheet_y: 52,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F9B9-1F3FC",
+ non_qualified: null,
+ image: "1f9b9-1f3fc.png",
+ sheet_x: 45,
+ sheet_y: 53,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F9B9-1F3FD",
+ non_qualified: null,
+ image: "1f9b9-1f3fd.png",
+ sheet_x: 45,
+ sheet_y: 54,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F9B9-1F3FE",
+ non_qualified: null,
+ image: "1f9b9-1f3fe.png",
+ sheet_x: 45,
+ sheet_y: 55,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F9B9-1F3FF",
+ non_qualified: null,
+ image: "1f9b9-1f3ff.png",
+ sheet_x: 45,
+ sheet_y: 56,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ male_supervillain: {
+ char: "🦹♂️",
+ key: "male_supervillain",
+ keywords: ["male_supervillain", "MAN SUPERVILLAIN"],
+ category: "people",
+ lib: {
+ name: "MAN SUPERVILLAIN",
+ unified: "1F9B9-200D-2642-FE0F",
+ non_qualified: "1F9B9-200D-2642",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f9b9-200d-2642-fe0f.png",
+ sheet_x: 45,
+ sheet_y: 45,
+ short_name: "male_supervillain",
+ short_names: ["male_supervillain"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-fantasy",
+ sort_order: 376,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F9B9-1F3FB-200D-2642-FE0F",
+ non_qualified: "1F9B9-1F3FB-200D-2642",
+ image: "1f9b9-1f3fb-200d-2642-fe0f.png",
+ sheet_x: 45,
+ sheet_y: 46,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F9B9-1F3FC-200D-2642-FE0F",
+ non_qualified: "1F9B9-1F3FC-200D-2642",
+ image: "1f9b9-1f3fc-200d-2642-fe0f.png",
+ sheet_x: 45,
+ sheet_y: 47,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F9B9-1F3FD-200D-2642-FE0F",
+ non_qualified: "1F9B9-1F3FD-200D-2642",
+ image: "1f9b9-1f3fd-200d-2642-fe0f.png",
+ sheet_x: 45,
+ sheet_y: 48,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F9B9-1F3FE-200D-2642-FE0F",
+ non_qualified: "1F9B9-1F3FE-200D-2642",
+ image: "1f9b9-1f3fe-200d-2642-fe0f.png",
+ sheet_x: 45,
+ sheet_y: 49,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F9B9-1F3FF-200D-2642-FE0F",
+ non_qualified: "1F9B9-1F3FF-200D-2642",
+ image: "1f9b9-1f3ff-200d-2642-fe0f.png",
+ sheet_x: 45,
+ sheet_y: 50,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ female_supervillain: {
+ char: "🦹♀️",
+ key: "female_supervillain",
+ keywords: ["female_supervillain", "WOMAN SUPERVILLAIN"],
+ category: "people",
+ lib: {
+ name: "WOMAN SUPERVILLAIN",
+ unified: "1F9B9-200D-2640-FE0F",
+ non_qualified: "1F9B9-200D-2640",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f9b9-200d-2640-fe0f.png",
+ sheet_x: 45,
+ sheet_y: 39,
+ short_name: "female_supervillain",
+ short_names: ["female_supervillain"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-fantasy",
+ sort_order: 377,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F9B9-1F3FB-200D-2640-FE0F",
+ non_qualified: "1F9B9-1F3FB-200D-2640",
+ image: "1f9b9-1f3fb-200d-2640-fe0f.png",
+ sheet_x: 45,
+ sheet_y: 40,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F9B9-1F3FC-200D-2640-FE0F",
+ non_qualified: "1F9B9-1F3FC-200D-2640",
+ image: "1f9b9-1f3fc-200d-2640-fe0f.png",
+ sheet_x: 45,
+ sheet_y: 41,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F9B9-1F3FD-200D-2640-FE0F",
+ non_qualified: "1F9B9-1F3FD-200D-2640",
+ image: "1f9b9-1f3fd-200d-2640-fe0f.png",
+ sheet_x: 45,
+ sheet_y: 42,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F9B9-1F3FE-200D-2640-FE0F",
+ non_qualified: "1F9B9-1F3FE-200D-2640",
+ image: "1f9b9-1f3fe-200d-2640-fe0f.png",
+ sheet_x: 45,
+ sheet_y: 43,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F9B9-1F3FF-200D-2640-FE0F",
+ non_qualified: "1F9B9-1F3FF-200D-2640",
+ image: "1f9b9-1f3ff-200d-2640-fe0f.png",
+ sheet_x: 45,
+ sheet_y: 44,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ male_mage: {
+ char: "🧙♂️",
+ key: "male_mage",
+ keywords: ["male_mage", "MAN MAGE"],
+ category: "people",
+ lib: {
+ name: "MAN MAGE",
+ unified: "1F9D9-200D-2642-FE0F",
+ non_qualified: "1F9D9-200D-2642",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f9d9-200d-2642-fe0f.png",
+ sheet_x: 51,
+ sheet_y: 48,
+ short_name: "male_mage",
+ short_names: ["male_mage"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-fantasy",
+ sort_order: 379,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F9D9-1F3FB-200D-2642-FE0F",
+ non_qualified: "1F9D9-1F3FB-200D-2642",
+ image: "1f9d9-1f3fb-200d-2642-fe0f.png",
+ sheet_x: 51,
+ sheet_y: 49,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F9D9-1F3FC-200D-2642-FE0F",
+ non_qualified: "1F9D9-1F3FC-200D-2642",
+ image: "1f9d9-1f3fc-200d-2642-fe0f.png",
+ sheet_x: 51,
+ sheet_y: 50,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F9D9-1F3FD-200D-2642-FE0F",
+ non_qualified: "1F9D9-1F3FD-200D-2642",
+ image: "1f9d9-1f3fd-200d-2642-fe0f.png",
+ sheet_x: 51,
+ sheet_y: 51,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F9D9-1F3FE-200D-2642-FE0F",
+ non_qualified: "1F9D9-1F3FE-200D-2642",
+ image: "1f9d9-1f3fe-200d-2642-fe0f.png",
+ sheet_x: 51,
+ sheet_y: 52,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F9D9-1F3FF-200D-2642-FE0F",
+ non_qualified: "1F9D9-1F3FF-200D-2642",
+ image: "1f9d9-1f3ff-200d-2642-fe0f.png",
+ sheet_x: 51,
+ sheet_y: 53,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ female_mage: {
+ char: "🧙♀️",
+ key: "female_mage",
+ keywords: ["female_mage", "WOMAN MAGE"],
+ category: "people",
+ lib: {
+ name: "WOMAN MAGE",
+ unified: "1F9D9-200D-2640-FE0F",
+ non_qualified: "1F9D9-200D-2640",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f9d9-200d-2640-fe0f.png",
+ sheet_x: 51,
+ sheet_y: 42,
+ short_name: "female_mage",
+ short_names: ["female_mage"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-fantasy",
+ sort_order: 380,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F9D9-1F3FB-200D-2640-FE0F",
+ non_qualified: "1F9D9-1F3FB-200D-2640",
+ image: "1f9d9-1f3fb-200d-2640-fe0f.png",
+ sheet_x: 51,
+ sheet_y: 43,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ obsoletes: "1F9D9-1F3FB",
+ },
+ "1F3FC": {
+ unified: "1F9D9-1F3FC-200D-2640-FE0F",
+ non_qualified: "1F9D9-1F3FC-200D-2640",
+ image: "1f9d9-1f3fc-200d-2640-fe0f.png",
+ sheet_x: 51,
+ sheet_y: 44,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ obsoletes: "1F9D9-1F3FC",
+ },
+ "1F3FD": {
+ unified: "1F9D9-1F3FD-200D-2640-FE0F",
+ non_qualified: "1F9D9-1F3FD-200D-2640",
+ image: "1f9d9-1f3fd-200d-2640-fe0f.png",
+ sheet_x: 51,
+ sheet_y: 45,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ obsoletes: "1F9D9-1F3FD",
+ },
+ "1F3FE": {
+ unified: "1F9D9-1F3FE-200D-2640-FE0F",
+ non_qualified: "1F9D9-1F3FE-200D-2640",
+ image: "1f9d9-1f3fe-200d-2640-fe0f.png",
+ sheet_x: 51,
+ sheet_y: 46,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ obsoletes: "1F9D9-1F3FE",
+ },
+ "1F3FF": {
+ unified: "1F9D9-1F3FF-200D-2640-FE0F",
+ non_qualified: "1F9D9-1F3FF-200D-2640",
+ image: "1f9d9-1f3ff-200d-2640-fe0f.png",
+ sheet_x: 51,
+ sheet_y: 47,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ obsoletes: "1F9D9-1F3FF",
+ },
+ },
+ obsoletes: "1F9D9",
+ },
+ },
+ male_fairy: {
+ char: "🧚♂️",
+ key: "male_fairy",
+ keywords: ["male_fairy", "MAN FAIRY"],
+ category: "people",
+ lib: {
+ name: "MAN FAIRY",
+ unified: "1F9DA-200D-2642-FE0F",
+ non_qualified: "1F9DA-200D-2642",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f9da-200d-2642-fe0f.png",
+ sheet_x: 52,
+ sheet_y: 5,
+ short_name: "male_fairy",
+ short_names: ["male_fairy"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-fantasy",
+ sort_order: 382,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F9DA-1F3FB-200D-2642-FE0F",
+ non_qualified: "1F9DA-1F3FB-200D-2642",
+ image: "1f9da-1f3fb-200d-2642-fe0f.png",
+ sheet_x: 52,
+ sheet_y: 6,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F9DA-1F3FC-200D-2642-FE0F",
+ non_qualified: "1F9DA-1F3FC-200D-2642",
+ image: "1f9da-1f3fc-200d-2642-fe0f.png",
+ sheet_x: 52,
+ sheet_y: 7,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F9DA-1F3FD-200D-2642-FE0F",
+ non_qualified: "1F9DA-1F3FD-200D-2642",
+ image: "1f9da-1f3fd-200d-2642-fe0f.png",
+ sheet_x: 52,
+ sheet_y: 8,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F9DA-1F3FE-200D-2642-FE0F",
+ non_qualified: "1F9DA-1F3FE-200D-2642",
+ image: "1f9da-1f3fe-200d-2642-fe0f.png",
+ sheet_x: 52,
+ sheet_y: 9,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F9DA-1F3FF-200D-2642-FE0F",
+ non_qualified: "1F9DA-1F3FF-200D-2642",
+ image: "1f9da-1f3ff-200d-2642-fe0f.png",
+ sheet_x: 52,
+ sheet_y: 10,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ female_fairy: {
+ char: "🧚♀️",
+ key: "female_fairy",
+ keywords: ["female_fairy", "WOMAN FAIRY"],
+ category: "people",
+ lib: {
+ name: "WOMAN FAIRY",
+ unified: "1F9DA-200D-2640-FE0F",
+ non_qualified: "1F9DA-200D-2640",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f9da-200d-2640-fe0f.png",
+ sheet_x: 51,
+ sheet_y: 60,
+ short_name: "female_fairy",
+ short_names: ["female_fairy"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-fantasy",
+ sort_order: 383,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F9DA-1F3FB-200D-2640-FE0F",
+ non_qualified: "1F9DA-1F3FB-200D-2640",
+ image: "1f9da-1f3fb-200d-2640-fe0f.png",
+ sheet_x: 52,
+ sheet_y: 0,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ obsoletes: "1F9DA-1F3FB",
+ },
+ "1F3FC": {
+ unified: "1F9DA-1F3FC-200D-2640-FE0F",
+ non_qualified: "1F9DA-1F3FC-200D-2640",
+ image: "1f9da-1f3fc-200d-2640-fe0f.png",
+ sheet_x: 52,
+ sheet_y: 1,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ obsoletes: "1F9DA-1F3FC",
+ },
+ "1F3FD": {
+ unified: "1F9DA-1F3FD-200D-2640-FE0F",
+ non_qualified: "1F9DA-1F3FD-200D-2640",
+ image: "1f9da-1f3fd-200d-2640-fe0f.png",
+ sheet_x: 52,
+ sheet_y: 2,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ obsoletes: "1F9DA-1F3FD",
+ },
+ "1F3FE": {
+ unified: "1F9DA-1F3FE-200D-2640-FE0F",
+ non_qualified: "1F9DA-1F3FE-200D-2640",
+ image: "1f9da-1f3fe-200d-2640-fe0f.png",
+ sheet_x: 52,
+ sheet_y: 3,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ obsoletes: "1F9DA-1F3FE",
+ },
+ "1F3FF": {
+ unified: "1F9DA-1F3FF-200D-2640-FE0F",
+ non_qualified: "1F9DA-1F3FF-200D-2640",
+ image: "1f9da-1f3ff-200d-2640-fe0f.png",
+ sheet_x: 52,
+ sheet_y: 4,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ obsoletes: "1F9DA-1F3FF",
+ },
+ },
+ obsoletes: "1F9DA",
+ },
+ },
+ male_vampire: {
+ char: "🧛♂️",
+ key: "male_vampire",
+ keywords: ["male_vampire", "MAN VAMPIRE"],
+ category: "people",
+ lib: {
+ name: "MAN VAMPIRE",
+ unified: "1F9DB-200D-2642-FE0F",
+ non_qualified: "1F9DB-200D-2642",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f9db-200d-2642-fe0f.png",
+ sheet_x: 52,
+ sheet_y: 23,
+ short_name: "male_vampire",
+ short_names: ["male_vampire"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-fantasy",
+ sort_order: 385,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F9DB-1F3FB-200D-2642-FE0F",
+ non_qualified: "1F9DB-1F3FB-200D-2642",
+ image: "1f9db-1f3fb-200d-2642-fe0f.png",
+ sheet_x: 52,
+ sheet_y: 24,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F9DB-1F3FC-200D-2642-FE0F",
+ non_qualified: "1F9DB-1F3FC-200D-2642",
+ image: "1f9db-1f3fc-200d-2642-fe0f.png",
+ sheet_x: 52,
+ sheet_y: 25,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F9DB-1F3FD-200D-2642-FE0F",
+ non_qualified: "1F9DB-1F3FD-200D-2642",
+ image: "1f9db-1f3fd-200d-2642-fe0f.png",
+ sheet_x: 52,
+ sheet_y: 26,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F9DB-1F3FE-200D-2642-FE0F",
+ non_qualified: "1F9DB-1F3FE-200D-2642",
+ image: "1f9db-1f3fe-200d-2642-fe0f.png",
+ sheet_x: 52,
+ sheet_y: 27,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F9DB-1F3FF-200D-2642-FE0F",
+ non_qualified: "1F9DB-1F3FF-200D-2642",
+ image: "1f9db-1f3ff-200d-2642-fe0f.png",
+ sheet_x: 52,
+ sheet_y: 28,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ female_vampire: {
+ char: "🧛♀️",
+ key: "female_vampire",
+ keywords: ["female_vampire", "WOMAN VAMPIRE"],
+ category: "people",
+ lib: {
+ name: "WOMAN VAMPIRE",
+ unified: "1F9DB-200D-2640-FE0F",
+ non_qualified: "1F9DB-200D-2640",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f9db-200d-2640-fe0f.png",
+ sheet_x: 52,
+ sheet_y: 17,
+ short_name: "female_vampire",
+ short_names: ["female_vampire"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-fantasy",
+ sort_order: 386,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F9DB-1F3FB-200D-2640-FE0F",
+ non_qualified: "1F9DB-1F3FB-200D-2640",
+ image: "1f9db-1f3fb-200d-2640-fe0f.png",
+ sheet_x: 52,
+ sheet_y: 18,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ obsoletes: "1F9DB-1F3FB",
+ },
+ "1F3FC": {
+ unified: "1F9DB-1F3FC-200D-2640-FE0F",
+ non_qualified: "1F9DB-1F3FC-200D-2640",
+ image: "1f9db-1f3fc-200d-2640-fe0f.png",
+ sheet_x: 52,
+ sheet_y: 19,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ obsoletes: "1F9DB-1F3FC",
+ },
+ "1F3FD": {
+ unified: "1F9DB-1F3FD-200D-2640-FE0F",
+ non_qualified: "1F9DB-1F3FD-200D-2640",
+ image: "1f9db-1f3fd-200d-2640-fe0f.png",
+ sheet_x: 52,
+ sheet_y: 20,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ obsoletes: "1F9DB-1F3FD",
+ },
+ "1F3FE": {
+ unified: "1F9DB-1F3FE-200D-2640-FE0F",
+ non_qualified: "1F9DB-1F3FE-200D-2640",
+ image: "1f9db-1f3fe-200d-2640-fe0f.png",
+ sheet_x: 52,
+ sheet_y: 21,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ obsoletes: "1F9DB-1F3FE",
+ },
+ "1F3FF": {
+ unified: "1F9DB-1F3FF-200D-2640-FE0F",
+ non_qualified: "1F9DB-1F3FF-200D-2640",
+ image: "1f9db-1f3ff-200d-2640-fe0f.png",
+ sheet_x: 52,
+ sheet_y: 22,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ obsoletes: "1F9DB-1F3FF",
+ },
+ },
+ obsoletes: "1F9DB",
+ },
+ },
+ merman: {
+ char: "🧜♂️",
+ key: "merman",
+ keywords: ["merman", "MERMAN"],
+ category: "people",
+ lib: {
+ name: "MERMAN",
+ unified: "1F9DC-200D-2642-FE0F",
+ non_qualified: "1F9DC-200D-2642",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f9dc-200d-2642-fe0f.png",
+ sheet_x: 52,
+ sheet_y: 41,
+ short_name: "merman",
+ short_names: ["merman"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-fantasy",
+ sort_order: 388,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F9DC-1F3FB-200D-2642-FE0F",
+ non_qualified: "1F9DC-1F3FB-200D-2642",
+ image: "1f9dc-1f3fb-200d-2642-fe0f.png",
+ sheet_x: 52,
+ sheet_y: 42,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ obsoletes: "1F9DC-1F3FB",
+ },
+ "1F3FC": {
+ unified: "1F9DC-1F3FC-200D-2642-FE0F",
+ non_qualified: "1F9DC-1F3FC-200D-2642",
+ image: "1f9dc-1f3fc-200d-2642-fe0f.png",
+ sheet_x: 52,
+ sheet_y: 43,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ obsoletes: "1F9DC-1F3FC",
+ },
+ "1F3FD": {
+ unified: "1F9DC-1F3FD-200D-2642-FE0F",
+ non_qualified: "1F9DC-1F3FD-200D-2642",
+ image: "1f9dc-1f3fd-200d-2642-fe0f.png",
+ sheet_x: 52,
+ sheet_y: 44,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ obsoletes: "1F9DC-1F3FD",
+ },
+ "1F3FE": {
+ unified: "1F9DC-1F3FE-200D-2642-FE0F",
+ non_qualified: "1F9DC-1F3FE-200D-2642",
+ image: "1f9dc-1f3fe-200d-2642-fe0f.png",
+ sheet_x: 52,
+ sheet_y: 45,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ obsoletes: "1F9DC-1F3FE",
+ },
+ "1F3FF": {
+ unified: "1F9DC-1F3FF-200D-2642-FE0F",
+ non_qualified: "1F9DC-1F3FF-200D-2642",
+ image: "1f9dc-1f3ff-200d-2642-fe0f.png",
+ sheet_x: 52,
+ sheet_y: 46,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ obsoletes: "1F9DC-1F3FF",
+ },
+ },
+ obsoletes: "1F9DC",
+ },
+ },
+ mermaid: {
+ char: "🧜♀️",
+ key: "mermaid",
+ keywords: ["mermaid", "MERMAID"],
+ category: "people",
+ lib: {
+ name: "MERMAID",
+ unified: "1F9DC-200D-2640-FE0F",
+ non_qualified: "1F9DC-200D-2640",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f9dc-200d-2640-fe0f.png",
+ sheet_x: 52,
+ sheet_y: 35,
+ short_name: "mermaid",
+ short_names: ["mermaid"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-fantasy",
+ sort_order: 389,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F9DC-1F3FB-200D-2640-FE0F",
+ non_qualified: "1F9DC-1F3FB-200D-2640",
+ image: "1f9dc-1f3fb-200d-2640-fe0f.png",
+ sheet_x: 52,
+ sheet_y: 36,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F9DC-1F3FC-200D-2640-FE0F",
+ non_qualified: "1F9DC-1F3FC-200D-2640",
+ image: "1f9dc-1f3fc-200d-2640-fe0f.png",
+ sheet_x: 52,
+ sheet_y: 37,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F9DC-1F3FD-200D-2640-FE0F",
+ non_qualified: "1F9DC-1F3FD-200D-2640",
+ image: "1f9dc-1f3fd-200d-2640-fe0f.png",
+ sheet_x: 52,
+ sheet_y: 38,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F9DC-1F3FE-200D-2640-FE0F",
+ non_qualified: "1F9DC-1F3FE-200D-2640",
+ image: "1f9dc-1f3fe-200d-2640-fe0f.png",
+ sheet_x: 52,
+ sheet_y: 39,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F9DC-1F3FF-200D-2640-FE0F",
+ non_qualified: "1F9DC-1F3FF-200D-2640",
+ image: "1f9dc-1f3ff-200d-2640-fe0f.png",
+ sheet_x: 52,
+ sheet_y: 40,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ male_elf: {
+ char: "🧝♂️",
+ key: "male_elf",
+ keywords: ["male_elf", "MAN ELF"],
+ category: "people",
+ lib: {
+ name: "MAN ELF",
+ unified: "1F9DD-200D-2642-FE0F",
+ non_qualified: "1F9DD-200D-2642",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f9dd-200d-2642-fe0f.png",
+ sheet_x: 52,
+ sheet_y: 59,
+ short_name: "male_elf",
+ short_names: ["male_elf"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-fantasy",
+ sort_order: 391,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F9DD-1F3FB-200D-2642-FE0F",
+ non_qualified: "1F9DD-1F3FB-200D-2642",
+ image: "1f9dd-1f3fb-200d-2642-fe0f.png",
+ sheet_x: 52,
+ sheet_y: 60,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ obsoletes: "1F9DD-1F3FB",
+ },
+ "1F3FC": {
+ unified: "1F9DD-1F3FC-200D-2642-FE0F",
+ non_qualified: "1F9DD-1F3FC-200D-2642",
+ image: "1f9dd-1f3fc-200d-2642-fe0f.png",
+ sheet_x: 53,
+ sheet_y: 0,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ obsoletes: "1F9DD-1F3FC",
+ },
+ "1F3FD": {
+ unified: "1F9DD-1F3FD-200D-2642-FE0F",
+ non_qualified: "1F9DD-1F3FD-200D-2642",
+ image: "1f9dd-1f3fd-200d-2642-fe0f.png",
+ sheet_x: 53,
+ sheet_y: 1,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ obsoletes: "1F9DD-1F3FD",
+ },
+ "1F3FE": {
+ unified: "1F9DD-1F3FE-200D-2642-FE0F",
+ non_qualified: "1F9DD-1F3FE-200D-2642",
+ image: "1f9dd-1f3fe-200d-2642-fe0f.png",
+ sheet_x: 53,
+ sheet_y: 2,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ obsoletes: "1F9DD-1F3FE",
+ },
+ "1F3FF": {
+ unified: "1F9DD-1F3FF-200D-2642-FE0F",
+ non_qualified: "1F9DD-1F3FF-200D-2642",
+ image: "1f9dd-1f3ff-200d-2642-fe0f.png",
+ sheet_x: 53,
+ sheet_y: 3,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ obsoletes: "1F9DD-1F3FF",
+ },
+ },
+ obsoletes: "1F9DD",
+ },
+ },
+ female_elf: {
+ char: "🧝♀️",
+ key: "female_elf",
+ keywords: ["female_elf", "WOMAN ELF"],
+ category: "people",
+ lib: {
+ name: "WOMAN ELF",
+ unified: "1F9DD-200D-2640-FE0F",
+ non_qualified: "1F9DD-200D-2640",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f9dd-200d-2640-fe0f.png",
+ sheet_x: 52,
+ sheet_y: 53,
+ short_name: "female_elf",
+ short_names: ["female_elf"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-fantasy",
+ sort_order: 392,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F9DD-1F3FB-200D-2640-FE0F",
+ non_qualified: "1F9DD-1F3FB-200D-2640",
+ image: "1f9dd-1f3fb-200d-2640-fe0f.png",
+ sheet_x: 52,
+ sheet_y: 54,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F9DD-1F3FC-200D-2640-FE0F",
+ non_qualified: "1F9DD-1F3FC-200D-2640",
+ image: "1f9dd-1f3fc-200d-2640-fe0f.png",
+ sheet_x: 52,
+ sheet_y: 55,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F9DD-1F3FD-200D-2640-FE0F",
+ non_qualified: "1F9DD-1F3FD-200D-2640",
+ image: "1f9dd-1f3fd-200d-2640-fe0f.png",
+ sheet_x: 52,
+ sheet_y: 56,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F9DD-1F3FE-200D-2640-FE0F",
+ non_qualified: "1F9DD-1F3FE-200D-2640",
+ image: "1f9dd-1f3fe-200d-2640-fe0f.png",
+ sheet_x: 52,
+ sheet_y: 57,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F9DD-1F3FF-200D-2640-FE0F",
+ non_qualified: "1F9DD-1F3FF-200D-2640",
+ image: "1f9dd-1f3ff-200d-2640-fe0f.png",
+ sheet_x: 52,
+ sheet_y: 58,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ male_genie: {
+ char: "🧞♂️",
+ key: "male_genie",
+ keywords: ["male_genie", "MAN GENIE"],
+ category: "people",
+ lib: {
+ name: "MAN GENIE",
+ unified: "1F9DE-200D-2642-FE0F",
+ non_qualified: "1F9DE-200D-2642",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f9de-200d-2642-fe0f.png",
+ sheet_x: 53,
+ sheet_y: 11,
+ short_name: "male_genie",
+ short_names: ["male_genie"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-fantasy",
+ sort_order: 394,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ obsoletes: "1F9DE",
+ },
+ },
+ female_genie: {
+ char: "🧞♀️",
+ key: "female_genie",
+ keywords: ["female_genie", "WOMAN GENIE"],
+ category: "people",
+ lib: {
+ name: "WOMAN GENIE",
+ unified: "1F9DE-200D-2640-FE0F",
+ non_qualified: "1F9DE-200D-2640",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f9de-200d-2640-fe0f.png",
+ sheet_x: 53,
+ sheet_y: 10,
+ short_name: "female_genie",
+ short_names: ["female_genie"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-fantasy",
+ sort_order: 395,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ male_zombie: {
+ char: "🧟♂️",
+ key: "male_zombie",
+ keywords: ["male_zombie", "MAN ZOMBIE"],
+ category: "people",
+ lib: {
+ name: "MAN ZOMBIE",
+ unified: "1F9DF-200D-2642-FE0F",
+ non_qualified: "1F9DF-200D-2642",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f9df-200d-2642-fe0f.png",
+ sheet_x: 53,
+ sheet_y: 14,
+ short_name: "male_zombie",
+ short_names: ["male_zombie"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-fantasy",
+ sort_order: 397,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ obsoletes: "1F9DF",
+ },
+ },
+ female_zombie: {
+ char: "🧟♀️",
+ key: "female_zombie",
+ keywords: ["female_zombie", "WOMAN ZOMBIE"],
+ category: "people",
+ lib: {
+ name: "WOMAN ZOMBIE",
+ unified: "1F9DF-200D-2640-FE0F",
+ non_qualified: "1F9DF-200D-2640",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f9df-200d-2640-fe0f.png",
+ sheet_x: 53,
+ sheet_y: 13,
+ short_name: "female_zombie",
+ short_names: ["female_zombie"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-fantasy",
+ sort_order: 398,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ troll: {
+ char: "🧌",
+ key: "troll",
+ keywords: ["troll", "TROLL"],
+ category: "people",
+ lib: {
+ name: "TROLL",
+ unified: "1F9CC",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f9cc.png",
+ sheet_x: 46,
+ sheet_y: 19,
+ short_name: "troll",
+ short_names: ["troll"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-fantasy",
+ sort_order: 399,
+ added_in: "14.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "man-getting-massage": {
+ char: "💆♂️",
+ key: "man-getting-massage",
+ keywords: ["man-getting-massage", "MAN GETTING MASSAGE"],
+ category: "people",
+ lib: {
+ name: "MAN GETTING MASSAGE",
+ unified: "1F486-200D-2642-FE0F",
+ non_qualified: "1F486-200D-2642",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f486-200d-2642-fe0f.png",
+ sheet_x: 26,
+ sheet_y: 5,
+ short_name: "man-getting-massage",
+ short_names: ["man-getting-massage"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-activity",
+ sort_order: 401,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F486-1F3FB-200D-2642-FE0F",
+ non_qualified: "1F486-1F3FB-200D-2642",
+ image: "1f486-1f3fb-200d-2642-fe0f.png",
+ sheet_x: 26,
+ sheet_y: 6,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F486-1F3FC-200D-2642-FE0F",
+ non_qualified: "1F486-1F3FC-200D-2642",
+ image: "1f486-1f3fc-200d-2642-fe0f.png",
+ sheet_x: 26,
+ sheet_y: 7,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F486-1F3FD-200D-2642-FE0F",
+ non_qualified: "1F486-1F3FD-200D-2642",
+ image: "1f486-1f3fd-200d-2642-fe0f.png",
+ sheet_x: 26,
+ sheet_y: 8,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F486-1F3FE-200D-2642-FE0F",
+ non_qualified: "1F486-1F3FE-200D-2642",
+ image: "1f486-1f3fe-200d-2642-fe0f.png",
+ sheet_x: 26,
+ sheet_y: 9,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F486-1F3FF-200D-2642-FE0F",
+ non_qualified: "1F486-1F3FF-200D-2642",
+ image: "1f486-1f3ff-200d-2642-fe0f.png",
+ sheet_x: 26,
+ sheet_y: 10,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ "woman-getting-massage": {
+ char: "💆♀️",
+ key: "woman-getting-massage",
+ keywords: ["woman-getting-massage", "WOMAN GETTING MASSAGE"],
+ category: "people",
+ lib: {
+ name: "WOMAN GETTING MASSAGE",
+ unified: "1F486-200D-2640-FE0F",
+ non_qualified: "1F486-200D-2640",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f486-200d-2640-fe0f.png",
+ sheet_x: 25,
+ sheet_y: 60,
+ short_name: "woman-getting-massage",
+ short_names: ["woman-getting-massage"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-activity",
+ sort_order: 402,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F486-1F3FB-200D-2640-FE0F",
+ non_qualified: "1F486-1F3FB-200D-2640",
+ image: "1f486-1f3fb-200d-2640-fe0f.png",
+ sheet_x: 26,
+ sheet_y: 0,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F486-1F3FC-200D-2640-FE0F",
+ non_qualified: "1F486-1F3FC-200D-2640",
+ image: "1f486-1f3fc-200d-2640-fe0f.png",
+ sheet_x: 26,
+ sheet_y: 1,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F486-1F3FD-200D-2640-FE0F",
+ non_qualified: "1F486-1F3FD-200D-2640",
+ image: "1f486-1f3fd-200d-2640-fe0f.png",
+ sheet_x: 26,
+ sheet_y: 2,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F486-1F3FE-200D-2640-FE0F",
+ non_qualified: "1F486-1F3FE-200D-2640",
+ image: "1f486-1f3fe-200d-2640-fe0f.png",
+ sheet_x: 26,
+ sheet_y: 3,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F486-1F3FF-200D-2640-FE0F",
+ non_qualified: "1F486-1F3FF-200D-2640",
+ image: "1f486-1f3ff-200d-2640-fe0f.png",
+ sheet_x: 26,
+ sheet_y: 4,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ obsoletes: "1F486",
+ },
+ },
+ "man-getting-haircut": {
+ char: "💇♂️",
+ key: "man-getting-haircut",
+ keywords: ["man-getting-haircut", "MAN GETTING HAIRCUT"],
+ category: "people",
+ lib: {
+ name: "MAN GETTING HAIRCUT",
+ unified: "1F487-200D-2642-FE0F",
+ non_qualified: "1F487-200D-2642",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f487-200d-2642-fe0f.png",
+ sheet_x: 26,
+ sheet_y: 23,
+ short_name: "man-getting-haircut",
+ short_names: ["man-getting-haircut"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-activity",
+ sort_order: 404,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F487-1F3FB-200D-2642-FE0F",
+ non_qualified: "1F487-1F3FB-200D-2642",
+ image: "1f487-1f3fb-200d-2642-fe0f.png",
+ sheet_x: 26,
+ sheet_y: 24,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F487-1F3FC-200D-2642-FE0F",
+ non_qualified: "1F487-1F3FC-200D-2642",
+ image: "1f487-1f3fc-200d-2642-fe0f.png",
+ sheet_x: 26,
+ sheet_y: 25,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F487-1F3FD-200D-2642-FE0F",
+ non_qualified: "1F487-1F3FD-200D-2642",
+ image: "1f487-1f3fd-200d-2642-fe0f.png",
+ sheet_x: 26,
+ sheet_y: 26,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F487-1F3FE-200D-2642-FE0F",
+ non_qualified: "1F487-1F3FE-200D-2642",
+ image: "1f487-1f3fe-200d-2642-fe0f.png",
+ sheet_x: 26,
+ sheet_y: 27,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F487-1F3FF-200D-2642-FE0F",
+ non_qualified: "1F487-1F3FF-200D-2642",
+ image: "1f487-1f3ff-200d-2642-fe0f.png",
+ sheet_x: 26,
+ sheet_y: 28,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ "woman-getting-haircut": {
+ char: "💇♀️",
+ key: "woman-getting-haircut",
+ keywords: ["woman-getting-haircut", "WOMAN GETTING HAIRCUT"],
+ category: "people",
+ lib: {
+ name: "WOMAN GETTING HAIRCUT",
+ unified: "1F487-200D-2640-FE0F",
+ non_qualified: "1F487-200D-2640",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f487-200d-2640-fe0f.png",
+ sheet_x: 26,
+ sheet_y: 17,
+ short_name: "woman-getting-haircut",
+ short_names: ["woman-getting-haircut"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-activity",
+ sort_order: 405,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F487-1F3FB-200D-2640-FE0F",
+ non_qualified: "1F487-1F3FB-200D-2640",
+ image: "1f487-1f3fb-200d-2640-fe0f.png",
+ sheet_x: 26,
+ sheet_y: 18,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F487-1F3FC-200D-2640-FE0F",
+ non_qualified: "1F487-1F3FC-200D-2640",
+ image: "1f487-1f3fc-200d-2640-fe0f.png",
+ sheet_x: 26,
+ sheet_y: 19,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F487-1F3FD-200D-2640-FE0F",
+ non_qualified: "1F487-1F3FD-200D-2640",
+ image: "1f487-1f3fd-200d-2640-fe0f.png",
+ sheet_x: 26,
+ sheet_y: 20,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F487-1F3FE-200D-2640-FE0F",
+ non_qualified: "1F487-1F3FE-200D-2640",
+ image: "1f487-1f3fe-200d-2640-fe0f.png",
+ sheet_x: 26,
+ sheet_y: 21,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F487-1F3FF-200D-2640-FE0F",
+ non_qualified: "1F487-1F3FF-200D-2640",
+ image: "1f487-1f3ff-200d-2640-fe0f.png",
+ sheet_x: 26,
+ sheet_y: 22,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ obsoletes: "1F487",
+ },
+ },
+ "man-walking": {
+ char: "🚶♂️",
+ key: "man-walking",
+ keywords: ["man-walking", "MAN WALKING"],
+ category: "people",
+ lib: {
+ name: "MAN WALKING",
+ unified: "1F6B6-200D-2642-FE0F",
+ non_qualified: "1F6B6-200D-2642",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f6b6-200d-2642-fe0f.png",
+ sheet_x: 37,
+ sheet_y: 22,
+ short_name: "man-walking",
+ short_names: ["man-walking"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-activity",
+ sort_order: 407,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F6B6-1F3FB-200D-2642-FE0F",
+ non_qualified: "1F6B6-1F3FB-200D-2642",
+ image: "1f6b6-1f3fb-200d-2642-fe0f.png",
+ sheet_x: 37,
+ sheet_y: 23,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F6B6-1F3FC-200D-2642-FE0F",
+ non_qualified: "1F6B6-1F3FC-200D-2642",
+ image: "1f6b6-1f3fc-200d-2642-fe0f.png",
+ sheet_x: 37,
+ sheet_y: 24,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F6B6-1F3FD-200D-2642-FE0F",
+ non_qualified: "1F6B6-1F3FD-200D-2642",
+ image: "1f6b6-1f3fd-200d-2642-fe0f.png",
+ sheet_x: 37,
+ sheet_y: 25,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F6B6-1F3FE-200D-2642-FE0F",
+ non_qualified: "1F6B6-1F3FE-200D-2642",
+ image: "1f6b6-1f3fe-200d-2642-fe0f.png",
+ sheet_x: 37,
+ sheet_y: 26,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F6B6-1F3FF-200D-2642-FE0F",
+ non_qualified: "1F6B6-1F3FF-200D-2642",
+ image: "1f6b6-1f3ff-200d-2642-fe0f.png",
+ sheet_x: 37,
+ sheet_y: 27,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ obsoletes: "1F6B6",
+ },
+ },
+ "woman-walking": {
+ char: "🚶♀️",
+ key: "woman-walking",
+ keywords: ["woman-walking", "WOMAN WALKING"],
+ category: "people",
+ lib: {
+ name: "WOMAN WALKING",
+ unified: "1F6B6-200D-2640-FE0F",
+ non_qualified: "1F6B6-200D-2640",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f6b6-200d-2640-fe0f.png",
+ sheet_x: 37,
+ sheet_y: 16,
+ short_name: "woman-walking",
+ short_names: ["woman-walking"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-activity",
+ sort_order: 408,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F6B6-1F3FB-200D-2640-FE0F",
+ non_qualified: "1F6B6-1F3FB-200D-2640",
+ image: "1f6b6-1f3fb-200d-2640-fe0f.png",
+ sheet_x: 37,
+ sheet_y: 17,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F6B6-1F3FC-200D-2640-FE0F",
+ non_qualified: "1F6B6-1F3FC-200D-2640",
+ image: "1f6b6-1f3fc-200d-2640-fe0f.png",
+ sheet_x: 37,
+ sheet_y: 18,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F6B6-1F3FD-200D-2640-FE0F",
+ non_qualified: "1F6B6-1F3FD-200D-2640",
+ image: "1f6b6-1f3fd-200d-2640-fe0f.png",
+ sheet_x: 37,
+ sheet_y: 19,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F6B6-1F3FE-200D-2640-FE0F",
+ non_qualified: "1F6B6-1F3FE-200D-2640",
+ image: "1f6b6-1f3fe-200d-2640-fe0f.png",
+ sheet_x: 37,
+ sheet_y: 20,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F6B6-1F3FF-200D-2640-FE0F",
+ non_qualified: "1F6B6-1F3FF-200D-2640",
+ image: "1f6b6-1f3ff-200d-2640-fe0f.png",
+ sheet_x: 37,
+ sheet_y: 21,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ standing_person: {
+ char: "🧍",
+ key: "standing_person",
+ keywords: ["standing_person", "STANDING PERSON"],
+ category: "people",
+ lib: {
+ name: "STANDING PERSON",
+ unified: "1F9CD",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f9cd.png",
+ sheet_x: 46,
+ sheet_y: 32,
+ short_name: "standing_person",
+ short_names: ["standing_person"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-activity",
+ sort_order: 409,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F9CD-1F3FB",
+ non_qualified: null,
+ image: "1f9cd-1f3fb.png",
+ sheet_x: 46,
+ sheet_y: 33,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F9CD-1F3FC",
+ non_qualified: null,
+ image: "1f9cd-1f3fc.png",
+ sheet_x: 46,
+ sheet_y: 34,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F9CD-1F3FD",
+ non_qualified: null,
+ image: "1f9cd-1f3fd.png",
+ sheet_x: 46,
+ sheet_y: 35,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F9CD-1F3FE",
+ non_qualified: null,
+ image: "1f9cd-1f3fe.png",
+ sheet_x: 46,
+ sheet_y: 36,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F9CD-1F3FF",
+ non_qualified: null,
+ image: "1f9cd-1f3ff.png",
+ sheet_x: 46,
+ sheet_y: 37,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ man_standing: {
+ char: "🧍♂️",
+ key: "man_standing",
+ keywords: ["man_standing", "MAN STANDING"],
+ category: "people",
+ lib: {
+ name: "MAN STANDING",
+ unified: "1F9CD-200D-2642-FE0F",
+ non_qualified: "1F9CD-200D-2642",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f9cd-200d-2642-fe0f.png",
+ sheet_x: 46,
+ sheet_y: 26,
+ short_name: "man_standing",
+ short_names: ["man_standing"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-activity",
+ sort_order: 410,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F9CD-1F3FB-200D-2642-FE0F",
+ non_qualified: "1F9CD-1F3FB-200D-2642",
+ image: "1f9cd-1f3fb-200d-2642-fe0f.png",
+ sheet_x: 46,
+ sheet_y: 27,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F9CD-1F3FC-200D-2642-FE0F",
+ non_qualified: "1F9CD-1F3FC-200D-2642",
+ image: "1f9cd-1f3fc-200d-2642-fe0f.png",
+ sheet_x: 46,
+ sheet_y: 28,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F9CD-1F3FD-200D-2642-FE0F",
+ non_qualified: "1F9CD-1F3FD-200D-2642",
+ image: "1f9cd-1f3fd-200d-2642-fe0f.png",
+ sheet_x: 46,
+ sheet_y: 29,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F9CD-1F3FE-200D-2642-FE0F",
+ non_qualified: "1F9CD-1F3FE-200D-2642",
+ image: "1f9cd-1f3fe-200d-2642-fe0f.png",
+ sheet_x: 46,
+ sheet_y: 30,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F9CD-1F3FF-200D-2642-FE0F",
+ non_qualified: "1F9CD-1F3FF-200D-2642",
+ image: "1f9cd-1f3ff-200d-2642-fe0f.png",
+ sheet_x: 46,
+ sheet_y: 31,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ woman_standing: {
+ char: "🧍♀️",
+ key: "woman_standing",
+ keywords: ["woman_standing", "WOMAN STANDING"],
+ category: "people",
+ lib: {
+ name: "WOMAN STANDING",
+ unified: "1F9CD-200D-2640-FE0F",
+ non_qualified: "1F9CD-200D-2640",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f9cd-200d-2640-fe0f.png",
+ sheet_x: 46,
+ sheet_y: 20,
+ short_name: "woman_standing",
+ short_names: ["woman_standing"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-activity",
+ sort_order: 411,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F9CD-1F3FB-200D-2640-FE0F",
+ non_qualified: "1F9CD-1F3FB-200D-2640",
+ image: "1f9cd-1f3fb-200d-2640-fe0f.png",
+ sheet_x: 46,
+ sheet_y: 21,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F9CD-1F3FC-200D-2640-FE0F",
+ non_qualified: "1F9CD-1F3FC-200D-2640",
+ image: "1f9cd-1f3fc-200d-2640-fe0f.png",
+ sheet_x: 46,
+ sheet_y: 22,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F9CD-1F3FD-200D-2640-FE0F",
+ non_qualified: "1F9CD-1F3FD-200D-2640",
+ image: "1f9cd-1f3fd-200d-2640-fe0f.png",
+ sheet_x: 46,
+ sheet_y: 23,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F9CD-1F3FE-200D-2640-FE0F",
+ non_qualified: "1F9CD-1F3FE-200D-2640",
+ image: "1f9cd-1f3fe-200d-2640-fe0f.png",
+ sheet_x: 46,
+ sheet_y: 24,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F9CD-1F3FF-200D-2640-FE0F",
+ non_qualified: "1F9CD-1F3FF-200D-2640",
+ image: "1f9cd-1f3ff-200d-2640-fe0f.png",
+ sheet_x: 46,
+ sheet_y: 25,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ kneeling_person: {
+ char: "🧎",
+ key: "kneeling_person",
+ keywords: ["kneeling_person", "KNEELING PERSON"],
+ category: "people",
+ lib: {
+ name: "KNEELING PERSON",
+ unified: "1F9CE",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f9ce.png",
+ sheet_x: 46,
+ sheet_y: 50,
+ short_name: "kneeling_person",
+ short_names: ["kneeling_person"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-activity",
+ sort_order: 412,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F9CE-1F3FB",
+ non_qualified: null,
+ image: "1f9ce-1f3fb.png",
+ sheet_x: 46,
+ sheet_y: 51,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F9CE-1F3FC",
+ non_qualified: null,
+ image: "1f9ce-1f3fc.png",
+ sheet_x: 46,
+ sheet_y: 52,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F9CE-1F3FD",
+ non_qualified: null,
+ image: "1f9ce-1f3fd.png",
+ sheet_x: 46,
+ sheet_y: 53,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F9CE-1F3FE",
+ non_qualified: null,
+ image: "1f9ce-1f3fe.png",
+ sheet_x: 46,
+ sheet_y: 54,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F9CE-1F3FF",
+ non_qualified: null,
+ image: "1f9ce-1f3ff.png",
+ sheet_x: 46,
+ sheet_y: 55,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ man_kneeling: {
+ char: "🧎♂️",
+ key: "man_kneeling",
+ keywords: ["man_kneeling", "MAN KNEELING"],
+ category: "people",
+ lib: {
+ name: "MAN KNEELING",
+ unified: "1F9CE-200D-2642-FE0F",
+ non_qualified: "1F9CE-200D-2642",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f9ce-200d-2642-fe0f.png",
+ sheet_x: 46,
+ sheet_y: 44,
+ short_name: "man_kneeling",
+ short_names: ["man_kneeling"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-activity",
+ sort_order: 413,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F9CE-1F3FB-200D-2642-FE0F",
+ non_qualified: "1F9CE-1F3FB-200D-2642",
+ image: "1f9ce-1f3fb-200d-2642-fe0f.png",
+ sheet_x: 46,
+ sheet_y: 45,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F9CE-1F3FC-200D-2642-FE0F",
+ non_qualified: "1F9CE-1F3FC-200D-2642",
+ image: "1f9ce-1f3fc-200d-2642-fe0f.png",
+ sheet_x: 46,
+ sheet_y: 46,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F9CE-1F3FD-200D-2642-FE0F",
+ non_qualified: "1F9CE-1F3FD-200D-2642",
+ image: "1f9ce-1f3fd-200d-2642-fe0f.png",
+ sheet_x: 46,
+ sheet_y: 47,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F9CE-1F3FE-200D-2642-FE0F",
+ non_qualified: "1F9CE-1F3FE-200D-2642",
+ image: "1f9ce-1f3fe-200d-2642-fe0f.png",
+ sheet_x: 46,
+ sheet_y: 48,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F9CE-1F3FF-200D-2642-FE0F",
+ non_qualified: "1F9CE-1F3FF-200D-2642",
+ image: "1f9ce-1f3ff-200d-2642-fe0f.png",
+ sheet_x: 46,
+ sheet_y: 49,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ woman_kneeling: {
+ char: "🧎♀️",
+ key: "woman_kneeling",
+ keywords: ["woman_kneeling", "WOMAN KNEELING"],
+ category: "people",
+ lib: {
+ name: "WOMAN KNEELING",
+ unified: "1F9CE-200D-2640-FE0F",
+ non_qualified: "1F9CE-200D-2640",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f9ce-200d-2640-fe0f.png",
+ sheet_x: 46,
+ sheet_y: 38,
+ short_name: "woman_kneeling",
+ short_names: ["woman_kneeling"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-activity",
+ sort_order: 414,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F9CE-1F3FB-200D-2640-FE0F",
+ non_qualified: "1F9CE-1F3FB-200D-2640",
+ image: "1f9ce-1f3fb-200d-2640-fe0f.png",
+ sheet_x: 46,
+ sheet_y: 39,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F9CE-1F3FC-200D-2640-FE0F",
+ non_qualified: "1F9CE-1F3FC-200D-2640",
+ image: "1f9ce-1f3fc-200d-2640-fe0f.png",
+ sheet_x: 46,
+ sheet_y: 40,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F9CE-1F3FD-200D-2640-FE0F",
+ non_qualified: "1F9CE-1F3FD-200D-2640",
+ image: "1f9ce-1f3fd-200d-2640-fe0f.png",
+ sheet_x: 46,
+ sheet_y: 41,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F9CE-1F3FE-200D-2640-FE0F",
+ non_qualified: "1F9CE-1F3FE-200D-2640",
+ image: "1f9ce-1f3fe-200d-2640-fe0f.png",
+ sheet_x: 46,
+ sheet_y: 42,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F9CE-1F3FF-200D-2640-FE0F",
+ non_qualified: "1F9CE-1F3FF-200D-2640",
+ image: "1f9ce-1f3ff-200d-2640-fe0f.png",
+ sheet_x: 46,
+ sheet_y: 43,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ person_with_probing_cane: {
+ char: "🧑🦯",
+ key: "person_with_probing_cane",
+ keywords: ["person_with_probing_cane", "PERSON WITH WHITE CANE"],
+ category: "people",
+ lib: {
+ name: "PERSON WITH WHITE CANE",
+ unified: "1F9D1-200D-1F9AF",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f9d1-200d-1f9af.png",
+ sheet_x: 49,
+ sheet_y: 8,
+ short_name: "person_with_probing_cane",
+ short_names: ["person_with_probing_cane"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-activity",
+ sort_order: 415,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F9D1-1F3FB-200D-1F9AF",
+ non_qualified: null,
+ image: "1f9d1-1f3fb-200d-1f9af.png",
+ sheet_x: 49,
+ sheet_y: 9,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F9D1-1F3FC-200D-1F9AF",
+ non_qualified: null,
+ image: "1f9d1-1f3fc-200d-1f9af.png",
+ sheet_x: 49,
+ sheet_y: 10,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F9D1-1F3FD-200D-1F9AF",
+ non_qualified: null,
+ image: "1f9d1-1f3fd-200d-1f9af.png",
+ sheet_x: 49,
+ sheet_y: 11,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F9D1-1F3FE-200D-1F9AF",
+ non_qualified: null,
+ image: "1f9d1-1f3fe-200d-1f9af.png",
+ sheet_x: 49,
+ sheet_y: 12,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F9D1-1F3FF-200D-1F9AF",
+ non_qualified: null,
+ image: "1f9d1-1f3ff-200d-1f9af.png",
+ sheet_x: 49,
+ sheet_y: 13,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ man_with_probing_cane: {
+ char: "👨🦯",
+ key: "man_with_probing_cane",
+ keywords: ["man_with_probing_cane", "MAN WITH WHITE CANE"],
+ category: "people",
+ lib: {
+ name: "MAN WITH WHITE CANE",
+ unified: "1F468-200D-1F9AF",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f468-200d-1f9af.png",
+ sheet_x: 15,
+ sheet_y: 24,
+ short_name: "man_with_probing_cane",
+ short_names: ["man_with_probing_cane"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-activity",
+ sort_order: 416,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F468-1F3FB-200D-1F9AF",
+ non_qualified: null,
+ image: "1f468-1f3fb-200d-1f9af.png",
+ sheet_x: 15,
+ sheet_y: 25,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F468-1F3FC-200D-1F9AF",
+ non_qualified: null,
+ image: "1f468-1f3fc-200d-1f9af.png",
+ sheet_x: 15,
+ sheet_y: 26,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F468-1F3FD-200D-1F9AF",
+ non_qualified: null,
+ image: "1f468-1f3fd-200d-1f9af.png",
+ sheet_x: 15,
+ sheet_y: 27,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F468-1F3FE-200D-1F9AF",
+ non_qualified: null,
+ image: "1f468-1f3fe-200d-1f9af.png",
+ sheet_x: 15,
+ sheet_y: 28,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F468-1F3FF-200D-1F9AF",
+ non_qualified: null,
+ image: "1f468-1f3ff-200d-1f9af.png",
+ sheet_x: 15,
+ sheet_y: 29,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ woman_with_probing_cane: {
+ char: "👩🦯",
+ key: "woman_with_probing_cane",
+ keywords: ["woman_with_probing_cane", "WOMAN WITH WHITE CANE"],
+ category: "people",
+ lib: {
+ name: "WOMAN WITH WHITE CANE",
+ unified: "1F469-200D-1F9AF",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f469-200d-1f9af.png",
+ sheet_x: 18,
+ sheet_y: 53,
+ short_name: "woman_with_probing_cane",
+ short_names: ["woman_with_probing_cane"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-activity",
+ sort_order: 417,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F469-1F3FB-200D-1F9AF",
+ non_qualified: null,
+ image: "1f469-1f3fb-200d-1f9af.png",
+ sheet_x: 18,
+ sheet_y: 54,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F469-1F3FC-200D-1F9AF",
+ non_qualified: null,
+ image: "1f469-1f3fc-200d-1f9af.png",
+ sheet_x: 18,
+ sheet_y: 55,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F469-1F3FD-200D-1F9AF",
+ non_qualified: null,
+ image: "1f469-1f3fd-200d-1f9af.png",
+ sheet_x: 18,
+ sheet_y: 56,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F469-1F3FE-200D-1F9AF",
+ non_qualified: null,
+ image: "1f469-1f3fe-200d-1f9af.png",
+ sheet_x: 18,
+ sheet_y: 57,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F469-1F3FF-200D-1F9AF",
+ non_qualified: null,
+ image: "1f469-1f3ff-200d-1f9af.png",
+ sheet_x: 18,
+ sheet_y: 58,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ person_in_motorized_wheelchair: {
+ char: "🧑🦼",
+ key: "person_in_motorized_wheelchair",
+ keywords: [
+ "person_in_motorized_wheelchair",
+ "PERSON IN MOTORIZED WHEELCHAIR",
+ ],
+ category: "people",
+ lib: {
+ name: "PERSON IN MOTORIZED WHEELCHAIR",
+ unified: "1F9D1-200D-1F9BC",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f9d1-200d-1f9bc.png",
+ sheet_x: 49,
+ sheet_y: 38,
+ short_name: "person_in_motorized_wheelchair",
+ short_names: ["person_in_motorized_wheelchair"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-activity",
+ sort_order: 418,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F9D1-1F3FB-200D-1F9BC",
+ non_qualified: null,
+ image: "1f9d1-1f3fb-200d-1f9bc.png",
+ sheet_x: 49,
+ sheet_y: 39,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F9D1-1F3FC-200D-1F9BC",
+ non_qualified: null,
+ image: "1f9d1-1f3fc-200d-1f9bc.png",
+ sheet_x: 49,
+ sheet_y: 40,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F9D1-1F3FD-200D-1F9BC",
+ non_qualified: null,
+ image: "1f9d1-1f3fd-200d-1f9bc.png",
+ sheet_x: 49,
+ sheet_y: 41,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F9D1-1F3FE-200D-1F9BC",
+ non_qualified: null,
+ image: "1f9d1-1f3fe-200d-1f9bc.png",
+ sheet_x: 49,
+ sheet_y: 42,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F9D1-1F3FF-200D-1F9BC",
+ non_qualified: null,
+ image: "1f9d1-1f3ff-200d-1f9bc.png",
+ sheet_x: 49,
+ sheet_y: 43,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ man_in_motorized_wheelchair: {
+ char: "👨🦼",
+ key: "man_in_motorized_wheelchair",
+ keywords: ["man_in_motorized_wheelchair", "MAN IN MOTORIZED WHEELCHAIR"],
+ category: "people",
+ lib: {
+ name: "MAN IN MOTORIZED WHEELCHAIR",
+ unified: "1F468-200D-1F9BC",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f468-200d-1f9bc.png",
+ sheet_x: 15,
+ sheet_y: 54,
+ short_name: "man_in_motorized_wheelchair",
+ short_names: ["man_in_motorized_wheelchair"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-activity",
+ sort_order: 419,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F468-1F3FB-200D-1F9BC",
+ non_qualified: null,
+ image: "1f468-1f3fb-200d-1f9bc.png",
+ sheet_x: 15,
+ sheet_y: 55,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F468-1F3FC-200D-1F9BC",
+ non_qualified: null,
+ image: "1f468-1f3fc-200d-1f9bc.png",
+ sheet_x: 15,
+ sheet_y: 56,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F468-1F3FD-200D-1F9BC",
+ non_qualified: null,
+ image: "1f468-1f3fd-200d-1f9bc.png",
+ sheet_x: 15,
+ sheet_y: 57,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F468-1F3FE-200D-1F9BC",
+ non_qualified: null,
+ image: "1f468-1f3fe-200d-1f9bc.png",
+ sheet_x: 15,
+ sheet_y: 58,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F468-1F3FF-200D-1F9BC",
+ non_qualified: null,
+ image: "1f468-1f3ff-200d-1f9bc.png",
+ sheet_x: 15,
+ sheet_y: 59,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ woman_in_motorized_wheelchair: {
+ char: "👩🦼",
+ key: "woman_in_motorized_wheelchair",
+ keywords: [
+ "woman_in_motorized_wheelchair",
+ "WOMAN IN MOTORIZED WHEELCHAIR",
+ ],
+ category: "people",
+ lib: {
+ name: "WOMAN IN MOTORIZED WHEELCHAIR",
+ unified: "1F469-200D-1F9BC",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f469-200d-1f9bc.png",
+ sheet_x: 19,
+ sheet_y: 22,
+ short_name: "woman_in_motorized_wheelchair",
+ short_names: ["woman_in_motorized_wheelchair"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-activity",
+ sort_order: 420,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F469-1F3FB-200D-1F9BC",
+ non_qualified: null,
+ image: "1f469-1f3fb-200d-1f9bc.png",
+ sheet_x: 19,
+ sheet_y: 23,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F469-1F3FC-200D-1F9BC",
+ non_qualified: null,
+ image: "1f469-1f3fc-200d-1f9bc.png",
+ sheet_x: 19,
+ sheet_y: 24,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F469-1F3FD-200D-1F9BC",
+ non_qualified: null,
+ image: "1f469-1f3fd-200d-1f9bc.png",
+ sheet_x: 19,
+ sheet_y: 25,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F469-1F3FE-200D-1F9BC",
+ non_qualified: null,
+ image: "1f469-1f3fe-200d-1f9bc.png",
+ sheet_x: 19,
+ sheet_y: 26,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F469-1F3FF-200D-1F9BC",
+ non_qualified: null,
+ image: "1f469-1f3ff-200d-1f9bc.png",
+ sheet_x: 19,
+ sheet_y: 27,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ person_in_manual_wheelchair: {
+ char: "🧑🦽",
+ key: "person_in_manual_wheelchair",
+ keywords: ["person_in_manual_wheelchair", "PERSON IN MANUAL WHEELCHAIR"],
+ category: "people",
+ lib: {
+ name: "PERSON IN MANUAL WHEELCHAIR",
+ unified: "1F9D1-200D-1F9BD",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f9d1-200d-1f9bd.png",
+ sheet_x: 49,
+ sheet_y: 44,
+ short_name: "person_in_manual_wheelchair",
+ short_names: ["person_in_manual_wheelchair"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-activity",
+ sort_order: 421,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F9D1-1F3FB-200D-1F9BD",
+ non_qualified: null,
+ image: "1f9d1-1f3fb-200d-1f9bd.png",
+ sheet_x: 49,
+ sheet_y: 45,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F9D1-1F3FC-200D-1F9BD",
+ non_qualified: null,
+ image: "1f9d1-1f3fc-200d-1f9bd.png",
+ sheet_x: 49,
+ sheet_y: 46,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F9D1-1F3FD-200D-1F9BD",
+ non_qualified: null,
+ image: "1f9d1-1f3fd-200d-1f9bd.png",
+ sheet_x: 49,
+ sheet_y: 47,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F9D1-1F3FE-200D-1F9BD",
+ non_qualified: null,
+ image: "1f9d1-1f3fe-200d-1f9bd.png",
+ sheet_x: 49,
+ sheet_y: 48,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F9D1-1F3FF-200D-1F9BD",
+ non_qualified: null,
+ image: "1f9d1-1f3ff-200d-1f9bd.png",
+ sheet_x: 49,
+ sheet_y: 49,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ man_in_manual_wheelchair: {
+ char: "👨🦽",
+ key: "man_in_manual_wheelchair",
+ keywords: ["man_in_manual_wheelchair", "MAN IN MANUAL WHEELCHAIR"],
+ category: "people",
+ lib: {
+ name: "MAN IN MANUAL WHEELCHAIR",
+ unified: "1F468-200D-1F9BD",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f468-200d-1f9bd.png",
+ sheet_x: 15,
+ sheet_y: 60,
+ short_name: "man_in_manual_wheelchair",
+ short_names: ["man_in_manual_wheelchair"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-activity",
+ sort_order: 422,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F468-1F3FB-200D-1F9BD",
+ non_qualified: null,
+ image: "1f468-1f3fb-200d-1f9bd.png",
+ sheet_x: 16,
+ sheet_y: 0,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F468-1F3FC-200D-1F9BD",
+ non_qualified: null,
+ image: "1f468-1f3fc-200d-1f9bd.png",
+ sheet_x: 16,
+ sheet_y: 1,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F468-1F3FD-200D-1F9BD",
+ non_qualified: null,
+ image: "1f468-1f3fd-200d-1f9bd.png",
+ sheet_x: 16,
+ sheet_y: 2,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F468-1F3FE-200D-1F9BD",
+ non_qualified: null,
+ image: "1f468-1f3fe-200d-1f9bd.png",
+ sheet_x: 16,
+ sheet_y: 3,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F468-1F3FF-200D-1F9BD",
+ non_qualified: null,
+ image: "1f468-1f3ff-200d-1f9bd.png",
+ sheet_x: 16,
+ sheet_y: 4,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ woman_in_manual_wheelchair: {
+ char: "👩🦽",
+ key: "woman_in_manual_wheelchair",
+ keywords: ["woman_in_manual_wheelchair", "WOMAN IN MANUAL WHEELCHAIR"],
+ category: "people",
+ lib: {
+ name: "WOMAN IN MANUAL WHEELCHAIR",
+ unified: "1F469-200D-1F9BD",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f469-200d-1f9bd.png",
+ sheet_x: 19,
+ sheet_y: 28,
+ short_name: "woman_in_manual_wheelchair",
+ short_names: ["woman_in_manual_wheelchair"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-activity",
+ sort_order: 423,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F469-1F3FB-200D-1F9BD",
+ non_qualified: null,
+ image: "1f469-1f3fb-200d-1f9bd.png",
+ sheet_x: 19,
+ sheet_y: 29,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F469-1F3FC-200D-1F9BD",
+ non_qualified: null,
+ image: "1f469-1f3fc-200d-1f9bd.png",
+ sheet_x: 19,
+ sheet_y: 30,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F469-1F3FD-200D-1F9BD",
+ non_qualified: null,
+ image: "1f469-1f3fd-200d-1f9bd.png",
+ sheet_x: 19,
+ sheet_y: 31,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F469-1F3FE-200D-1F9BD",
+ non_qualified: null,
+ image: "1f469-1f3fe-200d-1f9bd.png",
+ sheet_x: 19,
+ sheet_y: 32,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F469-1F3FF-200D-1F9BD",
+ non_qualified: null,
+ image: "1f469-1f3ff-200d-1f9bd.png",
+ sheet_x: 19,
+ sheet_y: 33,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ "man-running": {
+ char: "🏃♂️",
+ key: "man-running",
+ keywords: ["man-running", "MAN RUNNING"],
+ category: "people",
+ lib: {
+ name: "MAN RUNNING",
+ unified: "1F3C3-200D-2642-FE0F",
+ non_qualified: "1F3C3-200D-2642",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f3c3-200d-2642-fe0f.png",
+ sheet_x: 8,
+ sheet_y: 20,
+ short_name: "man-running",
+ short_names: ["man-running"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-activity",
+ sort_order: 425,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F3C3-1F3FB-200D-2642-FE0F",
+ non_qualified: "1F3C3-1F3FB-200D-2642",
+ image: "1f3c3-1f3fb-200d-2642-fe0f.png",
+ sheet_x: 8,
+ sheet_y: 21,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F3C3-1F3FC-200D-2642-FE0F",
+ non_qualified: "1F3C3-1F3FC-200D-2642",
+ image: "1f3c3-1f3fc-200d-2642-fe0f.png",
+ sheet_x: 8,
+ sheet_y: 22,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F3C3-1F3FD-200D-2642-FE0F",
+ non_qualified: "1F3C3-1F3FD-200D-2642",
+ image: "1f3c3-1f3fd-200d-2642-fe0f.png",
+ sheet_x: 8,
+ sheet_y: 23,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F3C3-1F3FE-200D-2642-FE0F",
+ non_qualified: "1F3C3-1F3FE-200D-2642",
+ image: "1f3c3-1f3fe-200d-2642-fe0f.png",
+ sheet_x: 8,
+ sheet_y: 24,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F3C3-1F3FF-200D-2642-FE0F",
+ non_qualified: "1F3C3-1F3FF-200D-2642",
+ image: "1f3c3-1f3ff-200d-2642-fe0f.png",
+ sheet_x: 8,
+ sheet_y: 25,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ obsoletes: "1F3C3",
+ },
+ },
+ "woman-running": {
+ char: "🏃♀️",
+ key: "woman-running",
+ keywords: ["woman-running", "WOMAN RUNNING"],
+ category: "people",
+ lib: {
+ name: "WOMAN RUNNING",
+ unified: "1F3C3-200D-2640-FE0F",
+ non_qualified: "1F3C3-200D-2640",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f3c3-200d-2640-fe0f.png",
+ sheet_x: 8,
+ sheet_y: 14,
+ short_name: "woman-running",
+ short_names: ["woman-running"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-activity",
+ sort_order: 426,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F3C3-1F3FB-200D-2640-FE0F",
+ non_qualified: "1F3C3-1F3FB-200D-2640",
+ image: "1f3c3-1f3fb-200d-2640-fe0f.png",
+ sheet_x: 8,
+ sheet_y: 15,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F3C3-1F3FC-200D-2640-FE0F",
+ non_qualified: "1F3C3-1F3FC-200D-2640",
+ image: "1f3c3-1f3fc-200d-2640-fe0f.png",
+ sheet_x: 8,
+ sheet_y: 16,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F3C3-1F3FD-200D-2640-FE0F",
+ non_qualified: "1F3C3-1F3FD-200D-2640",
+ image: "1f3c3-1f3fd-200d-2640-fe0f.png",
+ sheet_x: 8,
+ sheet_y: 17,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F3C3-1F3FE-200D-2640-FE0F",
+ non_qualified: "1F3C3-1F3FE-200D-2640",
+ image: "1f3c3-1f3fe-200d-2640-fe0f.png",
+ sheet_x: 8,
+ sheet_y: 18,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F3C3-1F3FF-200D-2640-FE0F",
+ non_qualified: "1F3C3-1F3FF-200D-2640",
+ image: "1f3c3-1f3ff-200d-2640-fe0f.png",
+ sheet_x: 8,
+ sheet_y: 19,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ dancer: {
+ char: "💃",
+ key: "dancer",
+ keywords: ["dancer", "DANCER"],
+ category: "people",
+ lib: {
+ name: "DANCER",
+ unified: "1F483",
+ non_qualified: null,
+ docomo: null,
+ au: "EB1C",
+ softbank: "E51F",
+ google: "FE1B6",
+ image: "1f483.png",
+ sheet_x: 25,
+ sheet_y: 47,
+ short_name: "dancer",
+ short_names: ["dancer"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-activity",
+ sort_order: 427,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F483-1F3FB",
+ non_qualified: null,
+ image: "1f483-1f3fb.png",
+ sheet_x: 25,
+ sheet_y: 48,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F483-1F3FC",
+ non_qualified: null,
+ image: "1f483-1f3fc.png",
+ sheet_x: 25,
+ sheet_y: 49,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F483-1F3FD",
+ non_qualified: null,
+ image: "1f483-1f3fd.png",
+ sheet_x: 25,
+ sheet_y: 50,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F483-1F3FE",
+ non_qualified: null,
+ image: "1f483-1f3fe.png",
+ sheet_x: 25,
+ sheet_y: 51,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F483-1F3FF",
+ non_qualified: null,
+ image: "1f483-1f3ff.png",
+ sheet_x: 25,
+ sheet_y: 52,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ man_dancing: {
+ char: "🕺",
+ key: "man_dancing",
+ keywords: ["man_dancing", "MAN DANCING"],
+ category: "people",
+ lib: {
+ name: "MAN DANCING",
+ unified: "1F57A",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f57a.png",
+ sheet_x: 31,
+ sheet_y: 27,
+ short_name: "man_dancing",
+ short_names: ["man_dancing"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-activity",
+ sort_order: 428,
+ added_in: "3.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F57A-1F3FB",
+ non_qualified: null,
+ image: "1f57a-1f3fb.png",
+ sheet_x: 31,
+ sheet_y: 28,
+ added_in: "3.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F57A-1F3FC",
+ non_qualified: null,
+ image: "1f57a-1f3fc.png",
+ sheet_x: 31,
+ sheet_y: 29,
+ added_in: "3.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F57A-1F3FD",
+ non_qualified: null,
+ image: "1f57a-1f3fd.png",
+ sheet_x: 31,
+ sheet_y: 30,
+ added_in: "3.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F57A-1F3FE",
+ non_qualified: null,
+ image: "1f57a-1f3fe.png",
+ sheet_x: 31,
+ sheet_y: 31,
+ added_in: "3.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F57A-1F3FF",
+ non_qualified: null,
+ image: "1f57a-1f3ff.png",
+ sheet_x: 31,
+ sheet_y: 32,
+ added_in: "3.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ man_in_business_suit_levitating: {
+ char: "🕴️",
+ key: "man_in_business_suit_levitating",
+ keywords: [
+ "man_in_business_suit_levitating",
+ "PERSON IN SUIT LEVITATING",
+ ],
+ category: "people",
+ lib: {
+ name: "PERSON IN SUIT LEVITATING",
+ unified: "1F574-FE0F",
+ non_qualified: "1F574",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f574-fe0f.png",
+ sheet_x: 30,
+ sheet_y: 60,
+ short_name: "man_in_business_suit_levitating",
+ short_names: ["man_in_business_suit_levitating"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-activity",
+ sort_order: 429,
+ added_in: "0.7",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F574-1F3FB",
+ non_qualified: null,
+ image: "1f574-1f3fb.png",
+ sheet_x: 31,
+ sheet_y: 0,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F574-1F3FC",
+ non_qualified: null,
+ image: "1f574-1f3fc.png",
+ sheet_x: 31,
+ sheet_y: 1,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F574-1F3FD",
+ non_qualified: null,
+ image: "1f574-1f3fd.png",
+ sheet_x: 31,
+ sheet_y: 2,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F574-1F3FE",
+ non_qualified: null,
+ image: "1f574-1f3fe.png",
+ sheet_x: 31,
+ sheet_y: 3,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F574-1F3FF",
+ non_qualified: null,
+ image: "1f574-1f3ff.png",
+ sheet_x: 31,
+ sheet_y: 4,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ "men-with-bunny-ears-partying": {
+ char: "👯♂️",
+ key: "men-with-bunny-ears-partying",
+ keywords: ["men-with-bunny-ears-partying", "MEN WITH BUNNY EARS"],
+ category: "people",
+ lib: {
+ name: "MEN WITH BUNNY EARS",
+ unified: "1F46F-200D-2642-FE0F",
+ non_qualified: "1F46F-200D-2642",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f46f-200d-2642-fe0f.png",
+ sheet_x: 23,
+ sheet_y: 16,
+ short_name: "men-with-bunny-ears-partying",
+ short_names: [
+ "men-with-bunny-ears-partying",
+ "man-with-bunny-ears-partying",
+ ],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-activity",
+ sort_order: 431,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "women-with-bunny-ears-partying": {
+ char: "👯♀️",
+ key: "women-with-bunny-ears-partying",
+ keywords: ["women-with-bunny-ears-partying", "WOMEN WITH BUNNY EARS"],
+ category: "people",
+ lib: {
+ name: "WOMEN WITH BUNNY EARS",
+ unified: "1F46F-200D-2640-FE0F",
+ non_qualified: "1F46F-200D-2640",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f46f-200d-2640-fe0f.png",
+ sheet_x: 23,
+ sheet_y: 15,
+ short_name: "women-with-bunny-ears-partying",
+ short_names: [
+ "women-with-bunny-ears-partying",
+ "woman-with-bunny-ears-partying",
+ ],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-activity",
+ sort_order: 432,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ obsoletes: "1F46F",
+ },
+ },
+ man_in_steamy_room: {
+ char: "🧖♂️",
+ key: "man_in_steamy_room",
+ keywords: ["man_in_steamy_room", "MAN IN STEAMY ROOM"],
+ category: "people",
+ lib: {
+ name: "MAN IN STEAMY ROOM",
+ unified: "1F9D6-200D-2642-FE0F",
+ non_qualified: "1F9D6-200D-2642",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f9d6-200d-2642-fe0f.png",
+ sheet_x: 50,
+ sheet_y: 55,
+ short_name: "man_in_steamy_room",
+ short_names: ["man_in_steamy_room"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-activity",
+ sort_order: 434,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F9D6-1F3FB-200D-2642-FE0F",
+ non_qualified: "1F9D6-1F3FB-200D-2642",
+ image: "1f9d6-1f3fb-200d-2642-fe0f.png",
+ sheet_x: 50,
+ sheet_y: 56,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ obsoletes: "1F9D6-1F3FB",
+ },
+ "1F3FC": {
+ unified: "1F9D6-1F3FC-200D-2642-FE0F",
+ non_qualified: "1F9D6-1F3FC-200D-2642",
+ image: "1f9d6-1f3fc-200d-2642-fe0f.png",
+ sheet_x: 50,
+ sheet_y: 57,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ obsoletes: "1F9D6-1F3FC",
+ },
+ "1F3FD": {
+ unified: "1F9D6-1F3FD-200D-2642-FE0F",
+ non_qualified: "1F9D6-1F3FD-200D-2642",
+ image: "1f9d6-1f3fd-200d-2642-fe0f.png",
+ sheet_x: 50,
+ sheet_y: 58,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ obsoletes: "1F9D6-1F3FD",
+ },
+ "1F3FE": {
+ unified: "1F9D6-1F3FE-200D-2642-FE0F",
+ non_qualified: "1F9D6-1F3FE-200D-2642",
+ image: "1f9d6-1f3fe-200d-2642-fe0f.png",
+ sheet_x: 50,
+ sheet_y: 59,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ obsoletes: "1F9D6-1F3FE",
+ },
+ "1F3FF": {
+ unified: "1F9D6-1F3FF-200D-2642-FE0F",
+ non_qualified: "1F9D6-1F3FF-200D-2642",
+ image: "1f9d6-1f3ff-200d-2642-fe0f.png",
+ sheet_x: 50,
+ sheet_y: 60,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ obsoletes: "1F9D6-1F3FF",
+ },
+ },
+ obsoletes: "1F9D6",
+ },
+ },
+ woman_in_steamy_room: {
+ char: "🧖♀️",
+ key: "woman_in_steamy_room",
+ keywords: ["woman_in_steamy_room", "WOMAN IN STEAMY ROOM"],
+ category: "people",
+ lib: {
+ name: "WOMAN IN STEAMY ROOM",
+ unified: "1F9D6-200D-2640-FE0F",
+ non_qualified: "1F9D6-200D-2640",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f9d6-200d-2640-fe0f.png",
+ sheet_x: 50,
+ sheet_y: 49,
+ short_name: "woman_in_steamy_room",
+ short_names: ["woman_in_steamy_room"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-activity",
+ sort_order: 435,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F9D6-1F3FB-200D-2640-FE0F",
+ non_qualified: "1F9D6-1F3FB-200D-2640",
+ image: "1f9d6-1f3fb-200d-2640-fe0f.png",
+ sheet_x: 50,
+ sheet_y: 50,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F9D6-1F3FC-200D-2640-FE0F",
+ non_qualified: "1F9D6-1F3FC-200D-2640",
+ image: "1f9d6-1f3fc-200d-2640-fe0f.png",
+ sheet_x: 50,
+ sheet_y: 51,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F9D6-1F3FD-200D-2640-FE0F",
+ non_qualified: "1F9D6-1F3FD-200D-2640",
+ image: "1f9d6-1f3fd-200d-2640-fe0f.png",
+ sheet_x: 50,
+ sheet_y: 52,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F9D6-1F3FE-200D-2640-FE0F",
+ non_qualified: "1F9D6-1F3FE-200D-2640",
+ image: "1f9d6-1f3fe-200d-2640-fe0f.png",
+ sheet_x: 50,
+ sheet_y: 53,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F9D6-1F3FF-200D-2640-FE0F",
+ non_qualified: "1F9D6-1F3FF-200D-2640",
+ image: "1f9d6-1f3ff-200d-2640-fe0f.png",
+ sheet_x: 50,
+ sheet_y: 54,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ man_climbing: {
+ char: "🧗♂️",
+ key: "man_climbing",
+ keywords: ["man_climbing", "MAN CLIMBING"],
+ category: "people",
+ lib: {
+ name: "MAN CLIMBING",
+ unified: "1F9D7-200D-2642-FE0F",
+ non_qualified: "1F9D7-200D-2642",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f9d7-200d-2642-fe0f.png",
+ sheet_x: 51,
+ sheet_y: 12,
+ short_name: "man_climbing",
+ short_names: ["man_climbing"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-activity",
+ sort_order: 437,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F9D7-1F3FB-200D-2642-FE0F",
+ non_qualified: "1F9D7-1F3FB-200D-2642",
+ image: "1f9d7-1f3fb-200d-2642-fe0f.png",
+ sheet_x: 51,
+ sheet_y: 13,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F9D7-1F3FC-200D-2642-FE0F",
+ non_qualified: "1F9D7-1F3FC-200D-2642",
+ image: "1f9d7-1f3fc-200d-2642-fe0f.png",
+ sheet_x: 51,
+ sheet_y: 14,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F9D7-1F3FD-200D-2642-FE0F",
+ non_qualified: "1F9D7-1F3FD-200D-2642",
+ image: "1f9d7-1f3fd-200d-2642-fe0f.png",
+ sheet_x: 51,
+ sheet_y: 15,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F9D7-1F3FE-200D-2642-FE0F",
+ non_qualified: "1F9D7-1F3FE-200D-2642",
+ image: "1f9d7-1f3fe-200d-2642-fe0f.png",
+ sheet_x: 51,
+ sheet_y: 16,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F9D7-1F3FF-200D-2642-FE0F",
+ non_qualified: "1F9D7-1F3FF-200D-2642",
+ image: "1f9d7-1f3ff-200d-2642-fe0f.png",
+ sheet_x: 51,
+ sheet_y: 17,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ woman_climbing: {
+ char: "🧗♀️",
+ key: "woman_climbing",
+ keywords: ["woman_climbing", "WOMAN CLIMBING"],
+ category: "people",
+ lib: {
+ name: "WOMAN CLIMBING",
+ unified: "1F9D7-200D-2640-FE0F",
+ non_qualified: "1F9D7-200D-2640",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f9d7-200d-2640-fe0f.png",
+ sheet_x: 51,
+ sheet_y: 6,
+ short_name: "woman_climbing",
+ short_names: ["woman_climbing"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-activity",
+ sort_order: 438,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F9D7-1F3FB-200D-2640-FE0F",
+ non_qualified: "1F9D7-1F3FB-200D-2640",
+ image: "1f9d7-1f3fb-200d-2640-fe0f.png",
+ sheet_x: 51,
+ sheet_y: 7,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ obsoletes: "1F9D7-1F3FB",
+ },
+ "1F3FC": {
+ unified: "1F9D7-1F3FC-200D-2640-FE0F",
+ non_qualified: "1F9D7-1F3FC-200D-2640",
+ image: "1f9d7-1f3fc-200d-2640-fe0f.png",
+ sheet_x: 51,
+ sheet_y: 8,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ obsoletes: "1F9D7-1F3FC",
+ },
+ "1F3FD": {
+ unified: "1F9D7-1F3FD-200D-2640-FE0F",
+ non_qualified: "1F9D7-1F3FD-200D-2640",
+ image: "1f9d7-1f3fd-200d-2640-fe0f.png",
+ sheet_x: 51,
+ sheet_y: 9,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ obsoletes: "1F9D7-1F3FD",
+ },
+ "1F3FE": {
+ unified: "1F9D7-1F3FE-200D-2640-FE0F",
+ non_qualified: "1F9D7-1F3FE-200D-2640",
+ image: "1f9d7-1f3fe-200d-2640-fe0f.png",
+ sheet_x: 51,
+ sheet_y: 10,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ obsoletes: "1F9D7-1F3FE",
+ },
+ "1F3FF": {
+ unified: "1F9D7-1F3FF-200D-2640-FE0F",
+ non_qualified: "1F9D7-1F3FF-200D-2640",
+ image: "1f9d7-1f3ff-200d-2640-fe0f.png",
+ sheet_x: 51,
+ sheet_y: 11,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ obsoletes: "1F9D7-1F3FF",
+ },
+ },
+ obsoletes: "1F9D7",
+ },
+ },
+ fencer: {
+ char: "🤺",
+ key: "fencer",
+ keywords: ["fencer", "FENCER"],
+ category: "people",
+ lib: {
+ name: "FENCER",
+ unified: "1F93A",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f93a.png",
+ sheet_x: 42,
+ sheet_y: 33,
+ short_name: "fencer",
+ short_names: ["fencer"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-sport",
+ sort_order: 439,
+ added_in: "3.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ horse_racing: {
+ char: "🏇",
+ key: "horse_racing",
+ keywords: ["horse_racing", "HORSE RACING"],
+ category: "people",
+ lib: {
+ name: "HORSE RACING",
+ unified: "1F3C7",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f3c7.png",
+ sheet_x: 8,
+ sheet_y: 52,
+ short_name: "horse_racing",
+ short_names: ["horse_racing"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-sport",
+ sort_order: 440,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F3C7-1F3FB",
+ non_qualified: null,
+ image: "1f3c7-1f3fb.png",
+ sheet_x: 8,
+ sheet_y: 53,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F3C7-1F3FC",
+ non_qualified: null,
+ image: "1f3c7-1f3fc.png",
+ sheet_x: 8,
+ sheet_y: 54,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F3C7-1F3FD",
+ non_qualified: null,
+ image: "1f3c7-1f3fd.png",
+ sheet_x: 8,
+ sheet_y: 55,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F3C7-1F3FE",
+ non_qualified: null,
+ image: "1f3c7-1f3fe.png",
+ sheet_x: 8,
+ sheet_y: 56,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F3C7-1F3FF",
+ non_qualified: null,
+ image: "1f3c7-1f3ff.png",
+ sheet_x: 8,
+ sheet_y: 57,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ skier: {
+ char: "⛷️",
+ key: "skier",
+ keywords: ["skier", "SKIER"],
+ category: "people",
+ lib: {
+ name: "SKIER",
+ unified: "26F7-FE0F",
+ non_qualified: "26F7",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "26f7-fe0f.png",
+ sheet_x: 58,
+ sheet_y: 32,
+ short_name: "skier",
+ short_names: ["skier"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-sport",
+ sort_order: 441,
+ added_in: "0.7",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ snowboarder: {
+ char: "🏂",
+ key: "snowboarder",
+ keywords: ["snowboarder", "SNOWBOARDER"],
+ category: "people",
+ lib: {
+ name: "SNOWBOARDER",
+ unified: "1F3C2",
+ non_qualified: null,
+ docomo: "E712",
+ au: "E4B8",
+ softbank: null,
+ google: "FE7D8",
+ image: "1f3c2.png",
+ sheet_x: 8,
+ sheet_y: 8,
+ short_name: "snowboarder",
+ short_names: ["snowboarder"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-sport",
+ sort_order: 442,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F3C2-1F3FB",
+ non_qualified: null,
+ image: "1f3c2-1f3fb.png",
+ sheet_x: 8,
+ sheet_y: 9,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F3C2-1F3FC",
+ non_qualified: null,
+ image: "1f3c2-1f3fc.png",
+ sheet_x: 8,
+ sheet_y: 10,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F3C2-1F3FD",
+ non_qualified: null,
+ image: "1f3c2-1f3fd.png",
+ sheet_x: 8,
+ sheet_y: 11,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F3C2-1F3FE",
+ non_qualified: null,
+ image: "1f3c2-1f3fe.png",
+ sheet_x: 8,
+ sheet_y: 12,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F3C2-1F3FF",
+ non_qualified: null,
+ image: "1f3c2-1f3ff.png",
+ sheet_x: 8,
+ sheet_y: 13,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ "man-golfing": {
+ char: "🏌️♂️",
+ key: "man-golfing",
+ keywords: ["man-golfing", "MAN GOLFING"],
+ category: "people",
+ lib: {
+ name: "MAN GOLFING",
+ unified: "1F3CC-FE0F-200D-2642-FE0F",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f3cc-fe0f-200d-2642-fe0f.png",
+ sheet_x: 9,
+ sheet_y: 41,
+ short_name: "man-golfing",
+ short_names: ["man-golfing"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-sport",
+ sort_order: 444,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: false,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F3CC-1F3FB-200D-2642-FE0F",
+ non_qualified: "1F3CC-1F3FB-200D-2642",
+ image: "1f3cc-1f3fb-200d-2642-fe0f.png",
+ sheet_x: 9,
+ sheet_y: 42,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F3CC-1F3FC-200D-2642-FE0F",
+ non_qualified: "1F3CC-1F3FC-200D-2642",
+ image: "1f3cc-1f3fc-200d-2642-fe0f.png",
+ sheet_x: 9,
+ sheet_y: 43,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F3CC-1F3FD-200D-2642-FE0F",
+ non_qualified: "1F3CC-1F3FD-200D-2642",
+ image: "1f3cc-1f3fd-200d-2642-fe0f.png",
+ sheet_x: 9,
+ sheet_y: 44,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F3CC-1F3FE-200D-2642-FE0F",
+ non_qualified: "1F3CC-1F3FE-200D-2642",
+ image: "1f3cc-1f3fe-200d-2642-fe0f.png",
+ sheet_x: 9,
+ sheet_y: 45,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F3CC-1F3FF-200D-2642-FE0F",
+ non_qualified: "1F3CC-1F3FF-200D-2642",
+ image: "1f3cc-1f3ff-200d-2642-fe0f.png",
+ sheet_x: 9,
+ sheet_y: 46,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ obsoletes: "1F3CC-FE0F",
+ },
+ },
+ "woman-golfing": {
+ char: "🏌️♀️",
+ key: "woman-golfing",
+ keywords: ["woman-golfing", "WOMAN GOLFING"],
+ category: "people",
+ lib: {
+ name: "WOMAN GOLFING",
+ unified: "1F3CC-FE0F-200D-2640-FE0F",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f3cc-fe0f-200d-2640-fe0f.png",
+ sheet_x: 9,
+ sheet_y: 35,
+ short_name: "woman-golfing",
+ short_names: ["woman-golfing"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-sport",
+ sort_order: 445,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: false,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F3CC-1F3FB-200D-2640-FE0F",
+ non_qualified: "1F3CC-1F3FB-200D-2640",
+ image: "1f3cc-1f3fb-200d-2640-fe0f.png",
+ sheet_x: 9,
+ sheet_y: 36,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F3CC-1F3FC-200D-2640-FE0F",
+ non_qualified: "1F3CC-1F3FC-200D-2640",
+ image: "1f3cc-1f3fc-200d-2640-fe0f.png",
+ sheet_x: 9,
+ sheet_y: 37,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F3CC-1F3FD-200D-2640-FE0F",
+ non_qualified: "1F3CC-1F3FD-200D-2640",
+ image: "1f3cc-1f3fd-200d-2640-fe0f.png",
+ sheet_x: 9,
+ sheet_y: 38,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F3CC-1F3FE-200D-2640-FE0F",
+ non_qualified: "1F3CC-1F3FE-200D-2640",
+ image: "1f3cc-1f3fe-200d-2640-fe0f.png",
+ sheet_x: 9,
+ sheet_y: 39,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F3CC-1F3FF-200D-2640-FE0F",
+ non_qualified: "1F3CC-1F3FF-200D-2640",
+ image: "1f3cc-1f3ff-200d-2640-fe0f.png",
+ sheet_x: 9,
+ sheet_y: 40,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ "man-surfing": {
+ char: "🏄♂️",
+ key: "man-surfing",
+ keywords: ["man-surfing", "MAN SURFING"],
+ category: "people",
+ lib: {
+ name: "MAN SURFING",
+ unified: "1F3C4-200D-2642-FE0F",
+ non_qualified: "1F3C4-200D-2642",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f3c4-200d-2642-fe0f.png",
+ sheet_x: 8,
+ sheet_y: 38,
+ short_name: "man-surfing",
+ short_names: ["man-surfing"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-sport",
+ sort_order: 447,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F3C4-1F3FB-200D-2642-FE0F",
+ non_qualified: "1F3C4-1F3FB-200D-2642",
+ image: "1f3c4-1f3fb-200d-2642-fe0f.png",
+ sheet_x: 8,
+ sheet_y: 39,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F3C4-1F3FC-200D-2642-FE0F",
+ non_qualified: "1F3C4-1F3FC-200D-2642",
+ image: "1f3c4-1f3fc-200d-2642-fe0f.png",
+ sheet_x: 8,
+ sheet_y: 40,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F3C4-1F3FD-200D-2642-FE0F",
+ non_qualified: "1F3C4-1F3FD-200D-2642",
+ image: "1f3c4-1f3fd-200d-2642-fe0f.png",
+ sheet_x: 8,
+ sheet_y: 41,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F3C4-1F3FE-200D-2642-FE0F",
+ non_qualified: "1F3C4-1F3FE-200D-2642",
+ image: "1f3c4-1f3fe-200d-2642-fe0f.png",
+ sheet_x: 8,
+ sheet_y: 42,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F3C4-1F3FF-200D-2642-FE0F",
+ non_qualified: "1F3C4-1F3FF-200D-2642",
+ image: "1f3c4-1f3ff-200d-2642-fe0f.png",
+ sheet_x: 8,
+ sheet_y: 43,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ obsoletes: "1F3C4",
+ },
+ },
+ "woman-surfing": {
+ char: "🏄♀️",
+ key: "woman-surfing",
+ keywords: ["woman-surfing", "WOMAN SURFING"],
+ category: "people",
+ lib: {
+ name: "WOMAN SURFING",
+ unified: "1F3C4-200D-2640-FE0F",
+ non_qualified: "1F3C4-200D-2640",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f3c4-200d-2640-fe0f.png",
+ sheet_x: 8,
+ sheet_y: 32,
+ short_name: "woman-surfing",
+ short_names: ["woman-surfing"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-sport",
+ sort_order: 448,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F3C4-1F3FB-200D-2640-FE0F",
+ non_qualified: "1F3C4-1F3FB-200D-2640",
+ image: "1f3c4-1f3fb-200d-2640-fe0f.png",
+ sheet_x: 8,
+ sheet_y: 33,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F3C4-1F3FC-200D-2640-FE0F",
+ non_qualified: "1F3C4-1F3FC-200D-2640",
+ image: "1f3c4-1f3fc-200d-2640-fe0f.png",
+ sheet_x: 8,
+ sheet_y: 34,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F3C4-1F3FD-200D-2640-FE0F",
+ non_qualified: "1F3C4-1F3FD-200D-2640",
+ image: "1f3c4-1f3fd-200d-2640-fe0f.png",
+ sheet_x: 8,
+ sheet_y: 35,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F3C4-1F3FE-200D-2640-FE0F",
+ non_qualified: "1F3C4-1F3FE-200D-2640",
+ image: "1f3c4-1f3fe-200d-2640-fe0f.png",
+ sheet_x: 8,
+ sheet_y: 36,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F3C4-1F3FF-200D-2640-FE0F",
+ non_qualified: "1F3C4-1F3FF-200D-2640",
+ image: "1f3c4-1f3ff-200d-2640-fe0f.png",
+ sheet_x: 8,
+ sheet_y: 37,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ "man-rowing-boat": {
+ char: "🚣♂️",
+ key: "man-rowing-boat",
+ keywords: ["man-rowing-boat", "MAN ROWING BOAT"],
+ category: "people",
+ lib: {
+ name: "MAN ROWING BOAT",
+ unified: "1F6A3-200D-2642-FE0F",
+ non_qualified: "1F6A3-200D-2642",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f6a3-200d-2642-fe0f.png",
+ sheet_x: 36,
+ sheet_y: 13,
+ short_name: "man-rowing-boat",
+ short_names: ["man-rowing-boat"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-sport",
+ sort_order: 450,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F6A3-1F3FB-200D-2642-FE0F",
+ non_qualified: "1F6A3-1F3FB-200D-2642",
+ image: "1f6a3-1f3fb-200d-2642-fe0f.png",
+ sheet_x: 36,
+ sheet_y: 14,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F6A3-1F3FC-200D-2642-FE0F",
+ non_qualified: "1F6A3-1F3FC-200D-2642",
+ image: "1f6a3-1f3fc-200d-2642-fe0f.png",
+ sheet_x: 36,
+ sheet_y: 15,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F6A3-1F3FD-200D-2642-FE0F",
+ non_qualified: "1F6A3-1F3FD-200D-2642",
+ image: "1f6a3-1f3fd-200d-2642-fe0f.png",
+ sheet_x: 36,
+ sheet_y: 16,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F6A3-1F3FE-200D-2642-FE0F",
+ non_qualified: "1F6A3-1F3FE-200D-2642",
+ image: "1f6a3-1f3fe-200d-2642-fe0f.png",
+ sheet_x: 36,
+ sheet_y: 17,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F6A3-1F3FF-200D-2642-FE0F",
+ non_qualified: "1F6A3-1F3FF-200D-2642",
+ image: "1f6a3-1f3ff-200d-2642-fe0f.png",
+ sheet_x: 36,
+ sheet_y: 18,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ obsoletes: "1F6A3",
+ },
+ },
+ "woman-rowing-boat": {
+ char: "🚣♀️",
+ key: "woman-rowing-boat",
+ keywords: ["woman-rowing-boat", "WOMAN ROWING BOAT"],
+ category: "people",
+ lib: {
+ name: "WOMAN ROWING BOAT",
+ unified: "1F6A3-200D-2640-FE0F",
+ non_qualified: "1F6A3-200D-2640",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f6a3-200d-2640-fe0f.png",
+ sheet_x: 36,
+ sheet_y: 7,
+ short_name: "woman-rowing-boat",
+ short_names: ["woman-rowing-boat"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-sport",
+ sort_order: 451,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F6A3-1F3FB-200D-2640-FE0F",
+ non_qualified: "1F6A3-1F3FB-200D-2640",
+ image: "1f6a3-1f3fb-200d-2640-fe0f.png",
+ sheet_x: 36,
+ sheet_y: 8,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F6A3-1F3FC-200D-2640-FE0F",
+ non_qualified: "1F6A3-1F3FC-200D-2640",
+ image: "1f6a3-1f3fc-200d-2640-fe0f.png",
+ sheet_x: 36,
+ sheet_y: 9,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F6A3-1F3FD-200D-2640-FE0F",
+ non_qualified: "1F6A3-1F3FD-200D-2640",
+ image: "1f6a3-1f3fd-200d-2640-fe0f.png",
+ sheet_x: 36,
+ sheet_y: 10,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F6A3-1F3FE-200D-2640-FE0F",
+ non_qualified: "1F6A3-1F3FE-200D-2640",
+ image: "1f6a3-1f3fe-200d-2640-fe0f.png",
+ sheet_x: 36,
+ sheet_y: 11,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F6A3-1F3FF-200D-2640-FE0F",
+ non_qualified: "1F6A3-1F3FF-200D-2640",
+ image: "1f6a3-1f3ff-200d-2640-fe0f.png",
+ sheet_x: 36,
+ sheet_y: 12,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ "man-swimming": {
+ char: "🏊♂️",
+ key: "man-swimming",
+ keywords: ["man-swimming", "MAN SWIMMING"],
+ category: "people",
+ lib: {
+ name: "MAN SWIMMING",
+ unified: "1F3CA-200D-2642-FE0F",
+ non_qualified: "1F3CA-200D-2642",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f3ca-200d-2642-fe0f.png",
+ sheet_x: 9,
+ sheet_y: 5,
+ short_name: "man-swimming",
+ short_names: ["man-swimming"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-sport",
+ sort_order: 453,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F3CA-1F3FB-200D-2642-FE0F",
+ non_qualified: "1F3CA-1F3FB-200D-2642",
+ image: "1f3ca-1f3fb-200d-2642-fe0f.png",
+ sheet_x: 9,
+ sheet_y: 6,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F3CA-1F3FC-200D-2642-FE0F",
+ non_qualified: "1F3CA-1F3FC-200D-2642",
+ image: "1f3ca-1f3fc-200d-2642-fe0f.png",
+ sheet_x: 9,
+ sheet_y: 7,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F3CA-1F3FD-200D-2642-FE0F",
+ non_qualified: "1F3CA-1F3FD-200D-2642",
+ image: "1f3ca-1f3fd-200d-2642-fe0f.png",
+ sheet_x: 9,
+ sheet_y: 8,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F3CA-1F3FE-200D-2642-FE0F",
+ non_qualified: "1F3CA-1F3FE-200D-2642",
+ image: "1f3ca-1f3fe-200d-2642-fe0f.png",
+ sheet_x: 9,
+ sheet_y: 9,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F3CA-1F3FF-200D-2642-FE0F",
+ non_qualified: "1F3CA-1F3FF-200D-2642",
+ image: "1f3ca-1f3ff-200d-2642-fe0f.png",
+ sheet_x: 9,
+ sheet_y: 10,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ obsoletes: "1F3CA",
+ },
+ },
+ "woman-swimming": {
+ char: "🏊♀️",
+ key: "woman-swimming",
+ keywords: ["woman-swimming", "WOMAN SWIMMING"],
+ category: "people",
+ lib: {
+ name: "WOMAN SWIMMING",
+ unified: "1F3CA-200D-2640-FE0F",
+ non_qualified: "1F3CA-200D-2640",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f3ca-200d-2640-fe0f.png",
+ sheet_x: 8,
+ sheet_y: 60,
+ short_name: "woman-swimming",
+ short_names: ["woman-swimming"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-sport",
+ sort_order: 454,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F3CA-1F3FB-200D-2640-FE0F",
+ non_qualified: "1F3CA-1F3FB-200D-2640",
+ image: "1f3ca-1f3fb-200d-2640-fe0f.png",
+ sheet_x: 9,
+ sheet_y: 0,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F3CA-1F3FC-200D-2640-FE0F",
+ non_qualified: "1F3CA-1F3FC-200D-2640",
+ image: "1f3ca-1f3fc-200d-2640-fe0f.png",
+ sheet_x: 9,
+ sheet_y: 1,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F3CA-1F3FD-200D-2640-FE0F",
+ non_qualified: "1F3CA-1F3FD-200D-2640",
+ image: "1f3ca-1f3fd-200d-2640-fe0f.png",
+ sheet_x: 9,
+ sheet_y: 2,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F3CA-1F3FE-200D-2640-FE0F",
+ non_qualified: "1F3CA-1F3FE-200D-2640",
+ image: "1f3ca-1f3fe-200d-2640-fe0f.png",
+ sheet_x: 9,
+ sheet_y: 3,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F3CA-1F3FF-200D-2640-FE0F",
+ non_qualified: "1F3CA-1F3FF-200D-2640",
+ image: "1f3ca-1f3ff-200d-2640-fe0f.png",
+ sheet_x: 9,
+ sheet_y: 4,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ "man-bouncing-ball": {
+ char: "⛹️♂️",
+ key: "man-bouncing-ball",
+ keywords: ["man-bouncing-ball", "MAN BOUNCING BALL"],
+ category: "people",
+ lib: {
+ name: "MAN BOUNCING BALL",
+ unified: "26F9-FE0F-200D-2642-FE0F",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "26f9-fe0f-200d-2642-fe0f.png",
+ sheet_x: 58,
+ sheet_y: 40,
+ short_name: "man-bouncing-ball",
+ short_names: ["man-bouncing-ball"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-sport",
+ sort_order: 456,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: false,
+ skin_variations: {
+ "1F3FB": {
+ unified: "26F9-1F3FB-200D-2642-FE0F",
+ non_qualified: "26F9-1F3FB-200D-2642",
+ image: "26f9-1f3fb-200d-2642-fe0f.png",
+ sheet_x: 58,
+ sheet_y: 41,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "26F9-1F3FC-200D-2642-FE0F",
+ non_qualified: "26F9-1F3FC-200D-2642",
+ image: "26f9-1f3fc-200d-2642-fe0f.png",
+ sheet_x: 58,
+ sheet_y: 42,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "26F9-1F3FD-200D-2642-FE0F",
+ non_qualified: "26F9-1F3FD-200D-2642",
+ image: "26f9-1f3fd-200d-2642-fe0f.png",
+ sheet_x: 58,
+ sheet_y: 43,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "26F9-1F3FE-200D-2642-FE0F",
+ non_qualified: "26F9-1F3FE-200D-2642",
+ image: "26f9-1f3fe-200d-2642-fe0f.png",
+ sheet_x: 58,
+ sheet_y: 44,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "26F9-1F3FF-200D-2642-FE0F",
+ non_qualified: "26F9-1F3FF-200D-2642",
+ image: "26f9-1f3ff-200d-2642-fe0f.png",
+ sheet_x: 58,
+ sheet_y: 45,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ obsoletes: "26F9-FE0F",
+ },
+ },
+ "woman-bouncing-ball": {
+ char: "⛹️♀️",
+ key: "woman-bouncing-ball",
+ keywords: ["woman-bouncing-ball", "WOMAN BOUNCING BALL"],
+ category: "people",
+ lib: {
+ name: "WOMAN BOUNCING BALL",
+ unified: "26F9-FE0F-200D-2640-FE0F",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "26f9-fe0f-200d-2640-fe0f.png",
+ sheet_x: 58,
+ sheet_y: 34,
+ short_name: "woman-bouncing-ball",
+ short_names: ["woman-bouncing-ball"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-sport",
+ sort_order: 457,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: false,
+ skin_variations: {
+ "1F3FB": {
+ unified: "26F9-1F3FB-200D-2640-FE0F",
+ non_qualified: "26F9-1F3FB-200D-2640",
+ image: "26f9-1f3fb-200d-2640-fe0f.png",
+ sheet_x: 58,
+ sheet_y: 35,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "26F9-1F3FC-200D-2640-FE0F",
+ non_qualified: "26F9-1F3FC-200D-2640",
+ image: "26f9-1f3fc-200d-2640-fe0f.png",
+ sheet_x: 58,
+ sheet_y: 36,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "26F9-1F3FD-200D-2640-FE0F",
+ non_qualified: "26F9-1F3FD-200D-2640",
+ image: "26f9-1f3fd-200d-2640-fe0f.png",
+ sheet_x: 58,
+ sheet_y: 37,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "26F9-1F3FE-200D-2640-FE0F",
+ non_qualified: "26F9-1F3FE-200D-2640",
+ image: "26f9-1f3fe-200d-2640-fe0f.png",
+ sheet_x: 58,
+ sheet_y: 38,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "26F9-1F3FF-200D-2640-FE0F",
+ non_qualified: "26F9-1F3FF-200D-2640",
+ image: "26f9-1f3ff-200d-2640-fe0f.png",
+ sheet_x: 58,
+ sheet_y: 39,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ "man-lifting-weights": {
+ char: "🏋️♂️",
+ key: "man-lifting-weights",
+ keywords: ["man-lifting-weights", "MAN LIFTING WEIGHTS"],
+ category: "people",
+ lib: {
+ name: "MAN LIFTING WEIGHTS",
+ unified: "1F3CB-FE0F-200D-2642-FE0F",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f3cb-fe0f-200d-2642-fe0f.png",
+ sheet_x: 9,
+ sheet_y: 23,
+ short_name: "man-lifting-weights",
+ short_names: ["man-lifting-weights"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-sport",
+ sort_order: 459,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: false,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F3CB-1F3FB-200D-2642-FE0F",
+ non_qualified: "1F3CB-1F3FB-200D-2642",
+ image: "1f3cb-1f3fb-200d-2642-fe0f.png",
+ sheet_x: 9,
+ sheet_y: 24,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F3CB-1F3FC-200D-2642-FE0F",
+ non_qualified: "1F3CB-1F3FC-200D-2642",
+ image: "1f3cb-1f3fc-200d-2642-fe0f.png",
+ sheet_x: 9,
+ sheet_y: 25,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F3CB-1F3FD-200D-2642-FE0F",
+ non_qualified: "1F3CB-1F3FD-200D-2642",
+ image: "1f3cb-1f3fd-200d-2642-fe0f.png",
+ sheet_x: 9,
+ sheet_y: 26,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F3CB-1F3FE-200D-2642-FE0F",
+ non_qualified: "1F3CB-1F3FE-200D-2642",
+ image: "1f3cb-1f3fe-200d-2642-fe0f.png",
+ sheet_x: 9,
+ sheet_y: 27,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F3CB-1F3FF-200D-2642-FE0F",
+ non_qualified: "1F3CB-1F3FF-200D-2642",
+ image: "1f3cb-1f3ff-200d-2642-fe0f.png",
+ sheet_x: 9,
+ sheet_y: 28,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ obsoletes: "1F3CB-FE0F",
+ },
+ },
+ "woman-lifting-weights": {
+ char: "🏋️♀️",
+ key: "woman-lifting-weights",
+ keywords: ["woman-lifting-weights", "WOMAN LIFTING WEIGHTS"],
+ category: "people",
+ lib: {
+ name: "WOMAN LIFTING WEIGHTS",
+ unified: "1F3CB-FE0F-200D-2640-FE0F",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f3cb-fe0f-200d-2640-fe0f.png",
+ sheet_x: 9,
+ sheet_y: 17,
+ short_name: "woman-lifting-weights",
+ short_names: ["woman-lifting-weights"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-sport",
+ sort_order: 460,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: false,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F3CB-1F3FB-200D-2640-FE0F",
+ non_qualified: "1F3CB-1F3FB-200D-2640",
+ image: "1f3cb-1f3fb-200d-2640-fe0f.png",
+ sheet_x: 9,
+ sheet_y: 18,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F3CB-1F3FC-200D-2640-FE0F",
+ non_qualified: "1F3CB-1F3FC-200D-2640",
+ image: "1f3cb-1f3fc-200d-2640-fe0f.png",
+ sheet_x: 9,
+ sheet_y: 19,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F3CB-1F3FD-200D-2640-FE0F",
+ non_qualified: "1F3CB-1F3FD-200D-2640",
+ image: "1f3cb-1f3fd-200d-2640-fe0f.png",
+ sheet_x: 9,
+ sheet_y: 20,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F3CB-1F3FE-200D-2640-FE0F",
+ non_qualified: "1F3CB-1F3FE-200D-2640",
+ image: "1f3cb-1f3fe-200d-2640-fe0f.png",
+ sheet_x: 9,
+ sheet_y: 21,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F3CB-1F3FF-200D-2640-FE0F",
+ non_qualified: "1F3CB-1F3FF-200D-2640",
+ image: "1f3cb-1f3ff-200d-2640-fe0f.png",
+ sheet_x: 9,
+ sheet_y: 22,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ "man-biking": {
+ char: "🚴♂️",
+ key: "man-biking",
+ keywords: ["man-biking", "MAN BIKING"],
+ category: "people",
+ lib: {
+ name: "MAN BIKING",
+ unified: "1F6B4-200D-2642-FE0F",
+ non_qualified: "1F6B4-200D-2642",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f6b4-200d-2642-fe0f.png",
+ sheet_x: 36,
+ sheet_y: 47,
+ short_name: "man-biking",
+ short_names: ["man-biking"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-sport",
+ sort_order: 462,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F6B4-1F3FB-200D-2642-FE0F",
+ non_qualified: "1F6B4-1F3FB-200D-2642",
+ image: "1f6b4-1f3fb-200d-2642-fe0f.png",
+ sheet_x: 36,
+ sheet_y: 48,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F6B4-1F3FC-200D-2642-FE0F",
+ non_qualified: "1F6B4-1F3FC-200D-2642",
+ image: "1f6b4-1f3fc-200d-2642-fe0f.png",
+ sheet_x: 36,
+ sheet_y: 49,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F6B4-1F3FD-200D-2642-FE0F",
+ non_qualified: "1F6B4-1F3FD-200D-2642",
+ image: "1f6b4-1f3fd-200d-2642-fe0f.png",
+ sheet_x: 36,
+ sheet_y: 50,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F6B4-1F3FE-200D-2642-FE0F",
+ non_qualified: "1F6B4-1F3FE-200D-2642",
+ image: "1f6b4-1f3fe-200d-2642-fe0f.png",
+ sheet_x: 36,
+ sheet_y: 51,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F6B4-1F3FF-200D-2642-FE0F",
+ non_qualified: "1F6B4-1F3FF-200D-2642",
+ image: "1f6b4-1f3ff-200d-2642-fe0f.png",
+ sheet_x: 36,
+ sheet_y: 52,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ obsoletes: "1F6B4",
+ },
+ },
+ "woman-biking": {
+ char: "🚴♀️",
+ key: "woman-biking",
+ keywords: ["woman-biking", "WOMAN BIKING"],
+ category: "people",
+ lib: {
+ name: "WOMAN BIKING",
+ unified: "1F6B4-200D-2640-FE0F",
+ non_qualified: "1F6B4-200D-2640",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f6b4-200d-2640-fe0f.png",
+ sheet_x: 36,
+ sheet_y: 41,
+ short_name: "woman-biking",
+ short_names: ["woman-biking"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-sport",
+ sort_order: 463,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F6B4-1F3FB-200D-2640-FE0F",
+ non_qualified: "1F6B4-1F3FB-200D-2640",
+ image: "1f6b4-1f3fb-200d-2640-fe0f.png",
+ sheet_x: 36,
+ sheet_y: 42,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F6B4-1F3FC-200D-2640-FE0F",
+ non_qualified: "1F6B4-1F3FC-200D-2640",
+ image: "1f6b4-1f3fc-200d-2640-fe0f.png",
+ sheet_x: 36,
+ sheet_y: 43,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F6B4-1F3FD-200D-2640-FE0F",
+ non_qualified: "1F6B4-1F3FD-200D-2640",
+ image: "1f6b4-1f3fd-200d-2640-fe0f.png",
+ sheet_x: 36,
+ sheet_y: 44,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F6B4-1F3FE-200D-2640-FE0F",
+ non_qualified: "1F6B4-1F3FE-200D-2640",
+ image: "1f6b4-1f3fe-200d-2640-fe0f.png",
+ sheet_x: 36,
+ sheet_y: 45,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F6B4-1F3FF-200D-2640-FE0F",
+ non_qualified: "1F6B4-1F3FF-200D-2640",
+ image: "1f6b4-1f3ff-200d-2640-fe0f.png",
+ sheet_x: 36,
+ sheet_y: 46,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ "man-mountain-biking": {
+ char: "🚵♂️",
+ key: "man-mountain-biking",
+ keywords: ["man-mountain-biking", "MAN MOUNTAIN BIKING"],
+ category: "people",
+ lib: {
+ name: "MAN MOUNTAIN BIKING",
+ unified: "1F6B5-200D-2642-FE0F",
+ non_qualified: "1F6B5-200D-2642",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f6b5-200d-2642-fe0f.png",
+ sheet_x: 37,
+ sheet_y: 4,
+ short_name: "man-mountain-biking",
+ short_names: ["man-mountain-biking"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-sport",
+ sort_order: 465,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F6B5-1F3FB-200D-2642-FE0F",
+ non_qualified: "1F6B5-1F3FB-200D-2642",
+ image: "1f6b5-1f3fb-200d-2642-fe0f.png",
+ sheet_x: 37,
+ sheet_y: 5,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F6B5-1F3FC-200D-2642-FE0F",
+ non_qualified: "1F6B5-1F3FC-200D-2642",
+ image: "1f6b5-1f3fc-200d-2642-fe0f.png",
+ sheet_x: 37,
+ sheet_y: 6,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F6B5-1F3FD-200D-2642-FE0F",
+ non_qualified: "1F6B5-1F3FD-200D-2642",
+ image: "1f6b5-1f3fd-200d-2642-fe0f.png",
+ sheet_x: 37,
+ sheet_y: 7,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F6B5-1F3FE-200D-2642-FE0F",
+ non_qualified: "1F6B5-1F3FE-200D-2642",
+ image: "1f6b5-1f3fe-200d-2642-fe0f.png",
+ sheet_x: 37,
+ sheet_y: 8,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F6B5-1F3FF-200D-2642-FE0F",
+ non_qualified: "1F6B5-1F3FF-200D-2642",
+ image: "1f6b5-1f3ff-200d-2642-fe0f.png",
+ sheet_x: 37,
+ sheet_y: 9,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ obsoletes: "1F6B5",
+ },
+ },
+ "woman-mountain-biking": {
+ char: "🚵♀️",
+ key: "woman-mountain-biking",
+ keywords: ["woman-mountain-biking", "WOMAN MOUNTAIN BIKING"],
+ category: "people",
+ lib: {
+ name: "WOMAN MOUNTAIN BIKING",
+ unified: "1F6B5-200D-2640-FE0F",
+ non_qualified: "1F6B5-200D-2640",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f6b5-200d-2640-fe0f.png",
+ sheet_x: 36,
+ sheet_y: 59,
+ short_name: "woman-mountain-biking",
+ short_names: ["woman-mountain-biking"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-sport",
+ sort_order: 466,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F6B5-1F3FB-200D-2640-FE0F",
+ non_qualified: "1F6B5-1F3FB-200D-2640",
+ image: "1f6b5-1f3fb-200d-2640-fe0f.png",
+ sheet_x: 36,
+ sheet_y: 60,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F6B5-1F3FC-200D-2640-FE0F",
+ non_qualified: "1F6B5-1F3FC-200D-2640",
+ image: "1f6b5-1f3fc-200d-2640-fe0f.png",
+ sheet_x: 37,
+ sheet_y: 0,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F6B5-1F3FD-200D-2640-FE0F",
+ non_qualified: "1F6B5-1F3FD-200D-2640",
+ image: "1f6b5-1f3fd-200d-2640-fe0f.png",
+ sheet_x: 37,
+ sheet_y: 1,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F6B5-1F3FE-200D-2640-FE0F",
+ non_qualified: "1F6B5-1F3FE-200D-2640",
+ image: "1f6b5-1f3fe-200d-2640-fe0f.png",
+ sheet_x: 37,
+ sheet_y: 2,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F6B5-1F3FF-200D-2640-FE0F",
+ non_qualified: "1F6B5-1F3FF-200D-2640",
+ image: "1f6b5-1f3ff-200d-2640-fe0f.png",
+ sheet_x: 37,
+ sheet_y: 3,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ "man-cartwheeling": {
+ char: "🤸♂️",
+ key: "man-cartwheeling",
+ keywords: ["man-cartwheeling", "MAN CARTWHEELING"],
+ category: "people",
+ lib: {
+ name: "MAN CARTWHEELING",
+ unified: "1F938-200D-2642-FE0F",
+ non_qualified: "1F938-200D-2642",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f938-200d-2642-fe0f.png",
+ sheet_x: 42,
+ sheet_y: 3,
+ short_name: "man-cartwheeling",
+ short_names: ["man-cartwheeling"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-sport",
+ sort_order: 468,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F938-1F3FB-200D-2642-FE0F",
+ non_qualified: "1F938-1F3FB-200D-2642",
+ image: "1f938-1f3fb-200d-2642-fe0f.png",
+ sheet_x: 42,
+ sheet_y: 4,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F938-1F3FC-200D-2642-FE0F",
+ non_qualified: "1F938-1F3FC-200D-2642",
+ image: "1f938-1f3fc-200d-2642-fe0f.png",
+ sheet_x: 42,
+ sheet_y: 5,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F938-1F3FD-200D-2642-FE0F",
+ non_qualified: "1F938-1F3FD-200D-2642",
+ image: "1f938-1f3fd-200d-2642-fe0f.png",
+ sheet_x: 42,
+ sheet_y: 6,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F938-1F3FE-200D-2642-FE0F",
+ non_qualified: "1F938-1F3FE-200D-2642",
+ image: "1f938-1f3fe-200d-2642-fe0f.png",
+ sheet_x: 42,
+ sheet_y: 7,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F938-1F3FF-200D-2642-FE0F",
+ non_qualified: "1F938-1F3FF-200D-2642",
+ image: "1f938-1f3ff-200d-2642-fe0f.png",
+ sheet_x: 42,
+ sheet_y: 8,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ "woman-cartwheeling": {
+ char: "🤸♀️",
+ key: "woman-cartwheeling",
+ keywords: ["woman-cartwheeling", "WOMAN CARTWHEELING"],
+ category: "people",
+ lib: {
+ name: "WOMAN CARTWHEELING",
+ unified: "1F938-200D-2640-FE0F",
+ non_qualified: "1F938-200D-2640",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f938-200d-2640-fe0f.png",
+ sheet_x: 41,
+ sheet_y: 58,
+ short_name: "woman-cartwheeling",
+ short_names: ["woman-cartwheeling"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-sport",
+ sort_order: 469,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F938-1F3FB-200D-2640-FE0F",
+ non_qualified: "1F938-1F3FB-200D-2640",
+ image: "1f938-1f3fb-200d-2640-fe0f.png",
+ sheet_x: 41,
+ sheet_y: 59,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F938-1F3FC-200D-2640-FE0F",
+ non_qualified: "1F938-1F3FC-200D-2640",
+ image: "1f938-1f3fc-200d-2640-fe0f.png",
+ sheet_x: 41,
+ sheet_y: 60,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F938-1F3FD-200D-2640-FE0F",
+ non_qualified: "1F938-1F3FD-200D-2640",
+ image: "1f938-1f3fd-200d-2640-fe0f.png",
+ sheet_x: 42,
+ sheet_y: 0,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F938-1F3FE-200D-2640-FE0F",
+ non_qualified: "1F938-1F3FE-200D-2640",
+ image: "1f938-1f3fe-200d-2640-fe0f.png",
+ sheet_x: 42,
+ sheet_y: 1,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F938-1F3FF-200D-2640-FE0F",
+ non_qualified: "1F938-1F3FF-200D-2640",
+ image: "1f938-1f3ff-200d-2640-fe0f.png",
+ sheet_x: 42,
+ sheet_y: 2,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ "man-wrestling": {
+ char: "🤼♂️",
+ key: "man-wrestling",
+ keywords: ["man-wrestling", "MEN WRESTLING"],
+ category: "people",
+ lib: {
+ name: "MEN WRESTLING",
+ unified: "1F93C-200D-2642-FE0F",
+ non_qualified: "1F93C-200D-2642",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f93c-200d-2642-fe0f.png",
+ sheet_x: 42,
+ sheet_y: 35,
+ short_name: "man-wrestling",
+ short_names: ["man-wrestling"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-sport",
+ sort_order: 471,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "woman-wrestling": {
+ char: "🤼♀️",
+ key: "woman-wrestling",
+ keywords: ["woman-wrestling", "WOMEN WRESTLING"],
+ category: "people",
+ lib: {
+ name: "WOMEN WRESTLING",
+ unified: "1F93C-200D-2640-FE0F",
+ non_qualified: "1F93C-200D-2640",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f93c-200d-2640-fe0f.png",
+ sheet_x: 42,
+ sheet_y: 34,
+ short_name: "woman-wrestling",
+ short_names: ["woman-wrestling"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-sport",
+ sort_order: 472,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "man-playing-water-polo": {
+ char: "🤽♂️",
+ key: "man-playing-water-polo",
+ keywords: ["man-playing-water-polo", "MAN PLAYING WATER POLO"],
+ category: "people",
+ lib: {
+ name: "MAN PLAYING WATER POLO",
+ unified: "1F93D-200D-2642-FE0F",
+ non_qualified: "1F93D-200D-2642",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f93d-200d-2642-fe0f.png",
+ sheet_x: 42,
+ sheet_y: 43,
+ short_name: "man-playing-water-polo",
+ short_names: ["man-playing-water-polo"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-sport",
+ sort_order: 474,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F93D-1F3FB-200D-2642-FE0F",
+ non_qualified: "1F93D-1F3FB-200D-2642",
+ image: "1f93d-1f3fb-200d-2642-fe0f.png",
+ sheet_x: 42,
+ sheet_y: 44,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F93D-1F3FC-200D-2642-FE0F",
+ non_qualified: "1F93D-1F3FC-200D-2642",
+ image: "1f93d-1f3fc-200d-2642-fe0f.png",
+ sheet_x: 42,
+ sheet_y: 45,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F93D-1F3FD-200D-2642-FE0F",
+ non_qualified: "1F93D-1F3FD-200D-2642",
+ image: "1f93d-1f3fd-200d-2642-fe0f.png",
+ sheet_x: 42,
+ sheet_y: 46,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F93D-1F3FE-200D-2642-FE0F",
+ non_qualified: "1F93D-1F3FE-200D-2642",
+ image: "1f93d-1f3fe-200d-2642-fe0f.png",
+ sheet_x: 42,
+ sheet_y: 47,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F93D-1F3FF-200D-2642-FE0F",
+ non_qualified: "1F93D-1F3FF-200D-2642",
+ image: "1f93d-1f3ff-200d-2642-fe0f.png",
+ sheet_x: 42,
+ sheet_y: 48,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ "woman-playing-water-polo": {
+ char: "🤽♀️",
+ key: "woman-playing-water-polo",
+ keywords: ["woman-playing-water-polo", "WOMAN PLAYING WATER POLO"],
+ category: "people",
+ lib: {
+ name: "WOMAN PLAYING WATER POLO",
+ unified: "1F93D-200D-2640-FE0F",
+ non_qualified: "1F93D-200D-2640",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f93d-200d-2640-fe0f.png",
+ sheet_x: 42,
+ sheet_y: 37,
+ short_name: "woman-playing-water-polo",
+ short_names: ["woman-playing-water-polo"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-sport",
+ sort_order: 475,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F93D-1F3FB-200D-2640-FE0F",
+ non_qualified: "1F93D-1F3FB-200D-2640",
+ image: "1f93d-1f3fb-200d-2640-fe0f.png",
+ sheet_x: 42,
+ sheet_y: 38,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F93D-1F3FC-200D-2640-FE0F",
+ non_qualified: "1F93D-1F3FC-200D-2640",
+ image: "1f93d-1f3fc-200d-2640-fe0f.png",
+ sheet_x: 42,
+ sheet_y: 39,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F93D-1F3FD-200D-2640-FE0F",
+ non_qualified: "1F93D-1F3FD-200D-2640",
+ image: "1f93d-1f3fd-200d-2640-fe0f.png",
+ sheet_x: 42,
+ sheet_y: 40,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F93D-1F3FE-200D-2640-FE0F",
+ non_qualified: "1F93D-1F3FE-200D-2640",
+ image: "1f93d-1f3fe-200d-2640-fe0f.png",
+ sheet_x: 42,
+ sheet_y: 41,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F93D-1F3FF-200D-2640-FE0F",
+ non_qualified: "1F93D-1F3FF-200D-2640",
+ image: "1f93d-1f3ff-200d-2640-fe0f.png",
+ sheet_x: 42,
+ sheet_y: 42,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ "man-playing-handball": {
+ char: "🤾♂️",
+ key: "man-playing-handball",
+ keywords: ["man-playing-handball", "MAN PLAYING HANDBALL"],
+ category: "people",
+ lib: {
+ name: "MAN PLAYING HANDBALL",
+ unified: "1F93E-200D-2642-FE0F",
+ non_qualified: "1F93E-200D-2642",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f93e-200d-2642-fe0f.png",
+ sheet_x: 43,
+ sheet_y: 0,
+ short_name: "man-playing-handball",
+ short_names: ["man-playing-handball"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-sport",
+ sort_order: 477,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F93E-1F3FB-200D-2642-FE0F",
+ non_qualified: "1F93E-1F3FB-200D-2642",
+ image: "1f93e-1f3fb-200d-2642-fe0f.png",
+ sheet_x: 43,
+ sheet_y: 1,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F93E-1F3FC-200D-2642-FE0F",
+ non_qualified: "1F93E-1F3FC-200D-2642",
+ image: "1f93e-1f3fc-200d-2642-fe0f.png",
+ sheet_x: 43,
+ sheet_y: 2,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F93E-1F3FD-200D-2642-FE0F",
+ non_qualified: "1F93E-1F3FD-200D-2642",
+ image: "1f93e-1f3fd-200d-2642-fe0f.png",
+ sheet_x: 43,
+ sheet_y: 3,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F93E-1F3FE-200D-2642-FE0F",
+ non_qualified: "1F93E-1F3FE-200D-2642",
+ image: "1f93e-1f3fe-200d-2642-fe0f.png",
+ sheet_x: 43,
+ sheet_y: 4,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F93E-1F3FF-200D-2642-FE0F",
+ non_qualified: "1F93E-1F3FF-200D-2642",
+ image: "1f93e-1f3ff-200d-2642-fe0f.png",
+ sheet_x: 43,
+ sheet_y: 5,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ "woman-playing-handball": {
+ char: "🤾♀️",
+ key: "woman-playing-handball",
+ keywords: ["woman-playing-handball", "WOMAN PLAYING HANDBALL"],
+ category: "people",
+ lib: {
+ name: "WOMAN PLAYING HANDBALL",
+ unified: "1F93E-200D-2640-FE0F",
+ non_qualified: "1F93E-200D-2640",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f93e-200d-2640-fe0f.png",
+ sheet_x: 42,
+ sheet_y: 55,
+ short_name: "woman-playing-handball",
+ short_names: ["woman-playing-handball"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-sport",
+ sort_order: 478,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F93E-1F3FB-200D-2640-FE0F",
+ non_qualified: "1F93E-1F3FB-200D-2640",
+ image: "1f93e-1f3fb-200d-2640-fe0f.png",
+ sheet_x: 42,
+ sheet_y: 56,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F93E-1F3FC-200D-2640-FE0F",
+ non_qualified: "1F93E-1F3FC-200D-2640",
+ image: "1f93e-1f3fc-200d-2640-fe0f.png",
+ sheet_x: 42,
+ sheet_y: 57,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F93E-1F3FD-200D-2640-FE0F",
+ non_qualified: "1F93E-1F3FD-200D-2640",
+ image: "1f93e-1f3fd-200d-2640-fe0f.png",
+ sheet_x: 42,
+ sheet_y: 58,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F93E-1F3FE-200D-2640-FE0F",
+ non_qualified: "1F93E-1F3FE-200D-2640",
+ image: "1f93e-1f3fe-200d-2640-fe0f.png",
+ sheet_x: 42,
+ sheet_y: 59,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F93E-1F3FF-200D-2640-FE0F",
+ non_qualified: "1F93E-1F3FF-200D-2640",
+ image: "1f93e-1f3ff-200d-2640-fe0f.png",
+ sheet_x: 42,
+ sheet_y: 60,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ "man-juggling": {
+ char: "🤹♂️",
+ key: "man-juggling",
+ keywords: ["man-juggling", "MAN JUGGLING"],
+ category: "people",
+ lib: {
+ name: "MAN JUGGLING",
+ unified: "1F939-200D-2642-FE0F",
+ non_qualified: "1F939-200D-2642",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f939-200d-2642-fe0f.png",
+ sheet_x: 42,
+ sheet_y: 21,
+ short_name: "man-juggling",
+ short_names: ["man-juggling"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-sport",
+ sort_order: 480,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F939-1F3FB-200D-2642-FE0F",
+ non_qualified: "1F939-1F3FB-200D-2642",
+ image: "1f939-1f3fb-200d-2642-fe0f.png",
+ sheet_x: 42,
+ sheet_y: 22,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F939-1F3FC-200D-2642-FE0F",
+ non_qualified: "1F939-1F3FC-200D-2642",
+ image: "1f939-1f3fc-200d-2642-fe0f.png",
+ sheet_x: 42,
+ sheet_y: 23,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F939-1F3FD-200D-2642-FE0F",
+ non_qualified: "1F939-1F3FD-200D-2642",
+ image: "1f939-1f3fd-200d-2642-fe0f.png",
+ sheet_x: 42,
+ sheet_y: 24,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F939-1F3FE-200D-2642-FE0F",
+ non_qualified: "1F939-1F3FE-200D-2642",
+ image: "1f939-1f3fe-200d-2642-fe0f.png",
+ sheet_x: 42,
+ sheet_y: 25,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F939-1F3FF-200D-2642-FE0F",
+ non_qualified: "1F939-1F3FF-200D-2642",
+ image: "1f939-1f3ff-200d-2642-fe0f.png",
+ sheet_x: 42,
+ sheet_y: 26,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ "woman-juggling": {
+ char: "🤹♀️",
+ key: "woman-juggling",
+ keywords: ["woman-juggling", "WOMAN JUGGLING"],
+ category: "people",
+ lib: {
+ name: "WOMAN JUGGLING",
+ unified: "1F939-200D-2640-FE0F",
+ non_qualified: "1F939-200D-2640",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f939-200d-2640-fe0f.png",
+ sheet_x: 42,
+ sheet_y: 15,
+ short_name: "woman-juggling",
+ short_names: ["woman-juggling"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-sport",
+ sort_order: 481,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F939-1F3FB-200D-2640-FE0F",
+ non_qualified: "1F939-1F3FB-200D-2640",
+ image: "1f939-1f3fb-200d-2640-fe0f.png",
+ sheet_x: 42,
+ sheet_y: 16,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F939-1F3FC-200D-2640-FE0F",
+ non_qualified: "1F939-1F3FC-200D-2640",
+ image: "1f939-1f3fc-200d-2640-fe0f.png",
+ sheet_x: 42,
+ sheet_y: 17,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F939-1F3FD-200D-2640-FE0F",
+ non_qualified: "1F939-1F3FD-200D-2640",
+ image: "1f939-1f3fd-200d-2640-fe0f.png",
+ sheet_x: 42,
+ sheet_y: 18,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F939-1F3FE-200D-2640-FE0F",
+ non_qualified: "1F939-1F3FE-200D-2640",
+ image: "1f939-1f3fe-200d-2640-fe0f.png",
+ sheet_x: 42,
+ sheet_y: 19,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F939-1F3FF-200D-2640-FE0F",
+ non_qualified: "1F939-1F3FF-200D-2640",
+ image: "1f939-1f3ff-200d-2640-fe0f.png",
+ sheet_x: 42,
+ sheet_y: 20,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ man_in_lotus_position: {
+ char: "🧘♂️",
+ key: "man_in_lotus_position",
+ keywords: ["man_in_lotus_position", "MAN IN LOTUS POSITION"],
+ category: "people",
+ lib: {
+ name: "MAN IN LOTUS POSITION",
+ unified: "1F9D8-200D-2642-FE0F",
+ non_qualified: "1F9D8-200D-2642",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f9d8-200d-2642-fe0f.png",
+ sheet_x: 51,
+ sheet_y: 30,
+ short_name: "man_in_lotus_position",
+ short_names: ["man_in_lotus_position"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-resting",
+ sort_order: 483,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F9D8-1F3FB-200D-2642-FE0F",
+ non_qualified: "1F9D8-1F3FB-200D-2642",
+ image: "1f9d8-1f3fb-200d-2642-fe0f.png",
+ sheet_x: 51,
+ sheet_y: 31,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F9D8-1F3FC-200D-2642-FE0F",
+ non_qualified: "1F9D8-1F3FC-200D-2642",
+ image: "1f9d8-1f3fc-200d-2642-fe0f.png",
+ sheet_x: 51,
+ sheet_y: 32,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F9D8-1F3FD-200D-2642-FE0F",
+ non_qualified: "1F9D8-1F3FD-200D-2642",
+ image: "1f9d8-1f3fd-200d-2642-fe0f.png",
+ sheet_x: 51,
+ sheet_y: 33,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F9D8-1F3FE-200D-2642-FE0F",
+ non_qualified: "1F9D8-1F3FE-200D-2642",
+ image: "1f9d8-1f3fe-200d-2642-fe0f.png",
+ sheet_x: 51,
+ sheet_y: 34,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F9D8-1F3FF-200D-2642-FE0F",
+ non_qualified: "1F9D8-1F3FF-200D-2642",
+ image: "1f9d8-1f3ff-200d-2642-fe0f.png",
+ sheet_x: 51,
+ sheet_y: 35,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ woman_in_lotus_position: {
+ char: "🧘♀️",
+ key: "woman_in_lotus_position",
+ keywords: ["woman_in_lotus_position", "WOMAN IN LOTUS POSITION"],
+ category: "people",
+ lib: {
+ name: "WOMAN IN LOTUS POSITION",
+ unified: "1F9D8-200D-2640-FE0F",
+ non_qualified: "1F9D8-200D-2640",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f9d8-200d-2640-fe0f.png",
+ sheet_x: 51,
+ sheet_y: 24,
+ short_name: "woman_in_lotus_position",
+ short_names: ["woman_in_lotus_position"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-resting",
+ sort_order: 484,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F9D8-1F3FB-200D-2640-FE0F",
+ non_qualified: "1F9D8-1F3FB-200D-2640",
+ image: "1f9d8-1f3fb-200d-2640-fe0f.png",
+ sheet_x: 51,
+ sheet_y: 25,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ obsoletes: "1F9D8-1F3FB",
+ },
+ "1F3FC": {
+ unified: "1F9D8-1F3FC-200D-2640-FE0F",
+ non_qualified: "1F9D8-1F3FC-200D-2640",
+ image: "1f9d8-1f3fc-200d-2640-fe0f.png",
+ sheet_x: 51,
+ sheet_y: 26,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ obsoletes: "1F9D8-1F3FC",
+ },
+ "1F3FD": {
+ unified: "1F9D8-1F3FD-200D-2640-FE0F",
+ non_qualified: "1F9D8-1F3FD-200D-2640",
+ image: "1f9d8-1f3fd-200d-2640-fe0f.png",
+ sheet_x: 51,
+ sheet_y: 27,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ obsoletes: "1F9D8-1F3FD",
+ },
+ "1F3FE": {
+ unified: "1F9D8-1F3FE-200D-2640-FE0F",
+ non_qualified: "1F9D8-1F3FE-200D-2640",
+ image: "1f9d8-1f3fe-200d-2640-fe0f.png",
+ sheet_x: 51,
+ sheet_y: 28,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ obsoletes: "1F9D8-1F3FE",
+ },
+ "1F3FF": {
+ unified: "1F9D8-1F3FF-200D-2640-FE0F",
+ non_qualified: "1F9D8-1F3FF-200D-2640",
+ image: "1f9d8-1f3ff-200d-2640-fe0f.png",
+ sheet_x: 51,
+ sheet_y: 29,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ obsoletes: "1F9D8-1F3FF",
+ },
+ },
+ obsoletes: "1F9D8",
+ },
+ },
+ bath: {
+ char: "🛀",
+ key: "bath",
+ keywords: ["bath", "BATH"],
+ category: "people",
+ lib: {
+ name: "BATH",
+ unified: "1F6C0",
+ non_qualified: null,
+ docomo: "E6F7",
+ au: "E5D8",
+ softbank: "E13F",
+ google: "FE505",
+ image: "1f6c0.png",
+ sheet_x: 37,
+ sheet_y: 43,
+ short_name: "bath",
+ short_names: ["bath"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-resting",
+ sort_order: 485,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F6C0-1F3FB",
+ non_qualified: null,
+ image: "1f6c0-1f3fb.png",
+ sheet_x: 37,
+ sheet_y: 44,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F6C0-1F3FC",
+ non_qualified: null,
+ image: "1f6c0-1f3fc.png",
+ sheet_x: 37,
+ sheet_y: 45,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F6C0-1F3FD",
+ non_qualified: null,
+ image: "1f6c0-1f3fd.png",
+ sheet_x: 37,
+ sheet_y: 46,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F6C0-1F3FE",
+ non_qualified: null,
+ image: "1f6c0-1f3fe.png",
+ sheet_x: 37,
+ sheet_y: 47,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F6C0-1F3FF",
+ non_qualified: null,
+ image: "1f6c0-1f3ff.png",
+ sheet_x: 37,
+ sheet_y: 48,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ sleeping_accommodation: {
+ char: "🛌",
+ key: "sleeping_accommodation",
+ keywords: ["sleeping_accommodation", "SLEEPING ACCOMMODATION"],
+ category: "people",
+ lib: {
+ name: "SLEEPING ACCOMMODATION",
+ unified: "1F6CC",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f6cc.png",
+ sheet_x: 37,
+ sheet_y: 55,
+ short_name: "sleeping_accommodation",
+ short_names: ["sleeping_accommodation"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-resting",
+ sort_order: 486,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F6CC-1F3FB",
+ non_qualified: null,
+ image: "1f6cc-1f3fb.png",
+ sheet_x: 37,
+ sheet_y: 56,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F6CC-1F3FC",
+ non_qualified: null,
+ image: "1f6cc-1f3fc.png",
+ sheet_x: 37,
+ sheet_y: 57,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F6CC-1F3FD",
+ non_qualified: null,
+ image: "1f6cc-1f3fd.png",
+ sheet_x: 37,
+ sheet_y: 58,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F6CC-1F3FE",
+ non_qualified: null,
+ image: "1f6cc-1f3fe.png",
+ sheet_x: 37,
+ sheet_y: 59,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F6CC-1F3FF",
+ non_qualified: null,
+ image: "1f6cc-1f3ff.png",
+ sheet_x: 37,
+ sheet_y: 60,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ people_holding_hands: {
+ char: "🧑🤝🧑",
+ key: "people_holding_hands",
+ keywords: ["people_holding_hands", "PEOPLE HOLDING HANDS"],
+ category: "people",
+ lib: {
+ name: "PEOPLE HOLDING HANDS",
+ unified: "1F9D1-200D-1F91D-200D-1F9D1",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f9d1-200d-1f91d-200d-1f9d1.png",
+ sheet_x: 48,
+ sheet_y: 43,
+ short_name: "people_holding_hands",
+ short_names: ["people_holding_hands"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "family",
+ sort_order: 487,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB-1F3FB": {
+ unified: "1F9D1-1F3FB-200D-1F91D-200D-1F9D1-1F3FB",
+ non_qualified: null,
+ image: "1f9d1-1f3fb-200d-1f91d-200d-1f9d1-1f3fb.png",
+ sheet_x: 48,
+ sheet_y: 44,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FB-1F3FC": {
+ unified: "1F9D1-1F3FB-200D-1F91D-200D-1F9D1-1F3FC",
+ non_qualified: null,
+ image: "1f9d1-1f3fb-200d-1f91d-200d-1f9d1-1f3fc.png",
+ sheet_x: 48,
+ sheet_y: 45,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FB-1F3FD": {
+ unified: "1F9D1-1F3FB-200D-1F91D-200D-1F9D1-1F3FD",
+ non_qualified: null,
+ image: "1f9d1-1f3fb-200d-1f91d-200d-1f9d1-1f3fd.png",
+ sheet_x: 48,
+ sheet_y: 46,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FB-1F3FE": {
+ unified: "1F9D1-1F3FB-200D-1F91D-200D-1F9D1-1F3FE",
+ non_qualified: null,
+ image: "1f9d1-1f3fb-200d-1f91d-200d-1f9d1-1f3fe.png",
+ sheet_x: 48,
+ sheet_y: 47,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FB-1F3FF": {
+ unified: "1F9D1-1F3FB-200D-1F91D-200D-1F9D1-1F3FF",
+ non_qualified: null,
+ image: "1f9d1-1f3fb-200d-1f91d-200d-1f9d1-1f3ff.png",
+ sheet_x: 48,
+ sheet_y: 48,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC-1F3FB": {
+ unified: "1F9D1-1F3FC-200D-1F91D-200D-1F9D1-1F3FB",
+ non_qualified: null,
+ image: "1f9d1-1f3fc-200d-1f91d-200d-1f9d1-1f3fb.png",
+ sheet_x: 48,
+ sheet_y: 49,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC-1F3FC": {
+ unified: "1F9D1-1F3FC-200D-1F91D-200D-1F9D1-1F3FC",
+ non_qualified: null,
+ image: "1f9d1-1f3fc-200d-1f91d-200d-1f9d1-1f3fc.png",
+ sheet_x: 48,
+ sheet_y: 50,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC-1F3FD": {
+ unified: "1F9D1-1F3FC-200D-1F91D-200D-1F9D1-1F3FD",
+ non_qualified: null,
+ image: "1f9d1-1f3fc-200d-1f91d-200d-1f9d1-1f3fd.png",
+ sheet_x: 48,
+ sheet_y: 51,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC-1F3FE": {
+ unified: "1F9D1-1F3FC-200D-1F91D-200D-1F9D1-1F3FE",
+ non_qualified: null,
+ image: "1f9d1-1f3fc-200d-1f91d-200d-1f9d1-1f3fe.png",
+ sheet_x: 48,
+ sheet_y: 52,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC-1F3FF": {
+ unified: "1F9D1-1F3FC-200D-1F91D-200D-1F9D1-1F3FF",
+ non_qualified: null,
+ image: "1f9d1-1f3fc-200d-1f91d-200d-1f9d1-1f3ff.png",
+ sheet_x: 48,
+ sheet_y: 53,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD-1F3FB": {
+ unified: "1F9D1-1F3FD-200D-1F91D-200D-1F9D1-1F3FB",
+ non_qualified: null,
+ image: "1f9d1-1f3fd-200d-1f91d-200d-1f9d1-1f3fb.png",
+ sheet_x: 48,
+ sheet_y: 54,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD-1F3FC": {
+ unified: "1F9D1-1F3FD-200D-1F91D-200D-1F9D1-1F3FC",
+ non_qualified: null,
+ image: "1f9d1-1f3fd-200d-1f91d-200d-1f9d1-1f3fc.png",
+ sheet_x: 48,
+ sheet_y: 55,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD-1F3FD": {
+ unified: "1F9D1-1F3FD-200D-1F91D-200D-1F9D1-1F3FD",
+ non_qualified: null,
+ image: "1f9d1-1f3fd-200d-1f91d-200d-1f9d1-1f3fd.png",
+ sheet_x: 48,
+ sheet_y: 56,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD-1F3FE": {
+ unified: "1F9D1-1F3FD-200D-1F91D-200D-1F9D1-1F3FE",
+ non_qualified: null,
+ image: "1f9d1-1f3fd-200d-1f91d-200d-1f9d1-1f3fe.png",
+ sheet_x: 48,
+ sheet_y: 57,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD-1F3FF": {
+ unified: "1F9D1-1F3FD-200D-1F91D-200D-1F9D1-1F3FF",
+ non_qualified: null,
+ image: "1f9d1-1f3fd-200d-1f91d-200d-1f9d1-1f3ff.png",
+ sheet_x: 48,
+ sheet_y: 58,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE-1F3FB": {
+ unified: "1F9D1-1F3FE-200D-1F91D-200D-1F9D1-1F3FB",
+ non_qualified: null,
+ image: "1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3fb.png",
+ sheet_x: 48,
+ sheet_y: 59,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE-1F3FC": {
+ unified: "1F9D1-1F3FE-200D-1F91D-200D-1F9D1-1F3FC",
+ non_qualified: null,
+ image: "1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3fc.png",
+ sheet_x: 48,
+ sheet_y: 60,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE-1F3FD": {
+ unified: "1F9D1-1F3FE-200D-1F91D-200D-1F9D1-1F3FD",
+ non_qualified: null,
+ image: "1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3fd.png",
+ sheet_x: 49,
+ sheet_y: 0,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE-1F3FE": {
+ unified: "1F9D1-1F3FE-200D-1F91D-200D-1F9D1-1F3FE",
+ non_qualified: null,
+ image: "1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3fe.png",
+ sheet_x: 49,
+ sheet_y: 1,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE-1F3FF": {
+ unified: "1F9D1-1F3FE-200D-1F91D-200D-1F9D1-1F3FF",
+ non_qualified: null,
+ image: "1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3ff.png",
+ sheet_x: 49,
+ sheet_y: 2,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF-1F3FB": {
+ unified: "1F9D1-1F3FF-200D-1F91D-200D-1F9D1-1F3FB",
+ non_qualified: null,
+ image: "1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3fb.png",
+ sheet_x: 49,
+ sheet_y: 3,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF-1F3FC": {
+ unified: "1F9D1-1F3FF-200D-1F91D-200D-1F9D1-1F3FC",
+ non_qualified: null,
+ image: "1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3fc.png",
+ sheet_x: 49,
+ sheet_y: 4,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF-1F3FD": {
+ unified: "1F9D1-1F3FF-200D-1F91D-200D-1F9D1-1F3FD",
+ non_qualified: null,
+ image: "1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3fd.png",
+ sheet_x: 49,
+ sheet_y: 5,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF-1F3FE": {
+ unified: "1F9D1-1F3FF-200D-1F91D-200D-1F9D1-1F3FE",
+ non_qualified: null,
+ image: "1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3fe.png",
+ sheet_x: 49,
+ sheet_y: 6,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF-1F3FF": {
+ unified: "1F9D1-1F3FF-200D-1F91D-200D-1F9D1-1F3FF",
+ non_qualified: null,
+ image: "1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3ff.png",
+ sheet_x: 49,
+ sheet_y: 7,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ two_women_holding_hands: {
+ char: "👭",
+ key: "two_women_holding_hands",
+ keywords: ["two_women_holding_hands", "TWO WOMEN HOLDING HANDS"],
+ category: "people",
+ lib: {
+ name: "TWO WOMEN HOLDING HANDS",
+ unified: "1F46D",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f46d.png",
+ sheet_x: 22,
+ sheet_y: 32,
+ short_name: "two_women_holding_hands",
+ short_names: ["two_women_holding_hands", "women_holding_hands"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "family",
+ sort_order: 488,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F46D-1F3FB",
+ non_qualified: null,
+ image: "1f46d-1f3fb.png",
+ sheet_x: 22,
+ sheet_y: 33,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F46D-1F3FC",
+ non_qualified: null,
+ image: "1f46d-1f3fc.png",
+ sheet_x: 22,
+ sheet_y: 34,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F46D-1F3FD",
+ non_qualified: null,
+ image: "1f46d-1f3fd.png",
+ sheet_x: 22,
+ sheet_y: 35,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F46D-1F3FE",
+ non_qualified: null,
+ image: "1f46d-1f3fe.png",
+ sheet_x: 22,
+ sheet_y: 36,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F46D-1F3FF",
+ non_qualified: null,
+ image: "1f46d-1f3ff.png",
+ sheet_x: 22,
+ sheet_y: 37,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FB-1F3FC": {
+ unified: "1F469-1F3FB-200D-1F91D-200D-1F469-1F3FC",
+ non_qualified: null,
+ image: "1f469-1f3fb-200d-1f91d-200d-1f469-1f3fc.png",
+ sheet_x: 22,
+ sheet_y: 38,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FB-1F3FD": {
+ unified: "1F469-1F3FB-200D-1F91D-200D-1F469-1F3FD",
+ non_qualified: null,
+ image: "1f469-1f3fb-200d-1f91d-200d-1f469-1f3fd.png",
+ sheet_x: 22,
+ sheet_y: 39,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FB-1F3FE": {
+ unified: "1F469-1F3FB-200D-1F91D-200D-1F469-1F3FE",
+ non_qualified: null,
+ image: "1f469-1f3fb-200d-1f91d-200d-1f469-1f3fe.png",
+ sheet_x: 22,
+ sheet_y: 40,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FB-1F3FF": {
+ unified: "1F469-1F3FB-200D-1F91D-200D-1F469-1F3FF",
+ non_qualified: null,
+ image: "1f469-1f3fb-200d-1f91d-200d-1f469-1f3ff.png",
+ sheet_x: 22,
+ sheet_y: 41,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC-1F3FB": {
+ unified: "1F469-1F3FC-200D-1F91D-200D-1F469-1F3FB",
+ non_qualified: null,
+ image: "1f469-1f3fc-200d-1f91d-200d-1f469-1f3fb.png",
+ sheet_x: 22,
+ sheet_y: 42,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC-1F3FD": {
+ unified: "1F469-1F3FC-200D-1F91D-200D-1F469-1F3FD",
+ non_qualified: null,
+ image: "1f469-1f3fc-200d-1f91d-200d-1f469-1f3fd.png",
+ sheet_x: 22,
+ sheet_y: 43,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC-1F3FE": {
+ unified: "1F469-1F3FC-200D-1F91D-200D-1F469-1F3FE",
+ non_qualified: null,
+ image: "1f469-1f3fc-200d-1f91d-200d-1f469-1f3fe.png",
+ sheet_x: 22,
+ sheet_y: 44,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC-1F3FF": {
+ unified: "1F469-1F3FC-200D-1F91D-200D-1F469-1F3FF",
+ non_qualified: null,
+ image: "1f469-1f3fc-200d-1f91d-200d-1f469-1f3ff.png",
+ sheet_x: 22,
+ sheet_y: 45,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD-1F3FB": {
+ unified: "1F469-1F3FD-200D-1F91D-200D-1F469-1F3FB",
+ non_qualified: null,
+ image: "1f469-1f3fd-200d-1f91d-200d-1f469-1f3fb.png",
+ sheet_x: 22,
+ sheet_y: 46,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD-1F3FC": {
+ unified: "1F469-1F3FD-200D-1F91D-200D-1F469-1F3FC",
+ non_qualified: null,
+ image: "1f469-1f3fd-200d-1f91d-200d-1f469-1f3fc.png",
+ sheet_x: 22,
+ sheet_y: 47,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD-1F3FE": {
+ unified: "1F469-1F3FD-200D-1F91D-200D-1F469-1F3FE",
+ non_qualified: null,
+ image: "1f469-1f3fd-200d-1f91d-200d-1f469-1f3fe.png",
+ sheet_x: 22,
+ sheet_y: 48,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD-1F3FF": {
+ unified: "1F469-1F3FD-200D-1F91D-200D-1F469-1F3FF",
+ non_qualified: null,
+ image: "1f469-1f3fd-200d-1f91d-200d-1f469-1f3ff.png",
+ sheet_x: 22,
+ sheet_y: 49,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE-1F3FB": {
+ unified: "1F469-1F3FE-200D-1F91D-200D-1F469-1F3FB",
+ non_qualified: null,
+ image: "1f469-1f3fe-200d-1f91d-200d-1f469-1f3fb.png",
+ sheet_x: 22,
+ sheet_y: 50,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE-1F3FC": {
+ unified: "1F469-1F3FE-200D-1F91D-200D-1F469-1F3FC",
+ non_qualified: null,
+ image: "1f469-1f3fe-200d-1f91d-200d-1f469-1f3fc.png",
+ sheet_x: 22,
+ sheet_y: 51,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE-1F3FD": {
+ unified: "1F469-1F3FE-200D-1F91D-200D-1F469-1F3FD",
+ non_qualified: null,
+ image: "1f469-1f3fe-200d-1f91d-200d-1f469-1f3fd.png",
+ sheet_x: 22,
+ sheet_y: 52,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE-1F3FF": {
+ unified: "1F469-1F3FE-200D-1F91D-200D-1F469-1F3FF",
+ non_qualified: null,
+ image: "1f469-1f3fe-200d-1f91d-200d-1f469-1f3ff.png",
+ sheet_x: 22,
+ sheet_y: 53,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF-1F3FB": {
+ unified: "1F469-1F3FF-200D-1F91D-200D-1F469-1F3FB",
+ non_qualified: null,
+ image: "1f469-1f3ff-200d-1f91d-200d-1f469-1f3fb.png",
+ sheet_x: 22,
+ sheet_y: 54,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF-1F3FC": {
+ unified: "1F469-1F3FF-200D-1F91D-200D-1F469-1F3FC",
+ non_qualified: null,
+ image: "1f469-1f3ff-200d-1f91d-200d-1f469-1f3fc.png",
+ sheet_x: 22,
+ sheet_y: 55,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF-1F3FD": {
+ unified: "1F469-1F3FF-200D-1F91D-200D-1F469-1F3FD",
+ non_qualified: null,
+ image: "1f469-1f3ff-200d-1f91d-200d-1f469-1f3fd.png",
+ sheet_x: 22,
+ sheet_y: 56,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF-1F3FE": {
+ unified: "1F469-1F3FF-200D-1F91D-200D-1F469-1F3FE",
+ non_qualified: null,
+ image: "1f469-1f3ff-200d-1f91d-200d-1f469-1f3fe.png",
+ sheet_x: 22,
+ sheet_y: 57,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ man_and_woman_holding_hands: {
+ char: "👫",
+ key: "man_and_woman_holding_hands",
+ keywords: ["man_and_woman_holding_hands", "MAN AND WOMAN HOLDING HANDS"],
+ category: "people",
+ lib: {
+ name: "MAN AND WOMAN HOLDING HANDS",
+ unified: "1F46B",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: "E428",
+ google: "FE1A0",
+ image: "1f46b.png",
+ sheet_x: 21,
+ sheet_y: 41,
+ short_name: "man_and_woman_holding_hands",
+ short_names: [
+ "man_and_woman_holding_hands",
+ "woman_and_man_holding_hands",
+ "couple",
+ ],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "family",
+ sort_order: 489,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F46B-1F3FB",
+ non_qualified: null,
+ image: "1f46b-1f3fb.png",
+ sheet_x: 21,
+ sheet_y: 42,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F46B-1F3FC",
+ non_qualified: null,
+ image: "1f46b-1f3fc.png",
+ sheet_x: 21,
+ sheet_y: 43,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F46B-1F3FD",
+ non_qualified: null,
+ image: "1f46b-1f3fd.png",
+ sheet_x: 21,
+ sheet_y: 44,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F46B-1F3FE",
+ non_qualified: null,
+ image: "1f46b-1f3fe.png",
+ sheet_x: 21,
+ sheet_y: 45,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F46B-1F3FF",
+ non_qualified: null,
+ image: "1f46b-1f3ff.png",
+ sheet_x: 21,
+ sheet_y: 46,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FB-1F3FC": {
+ unified: "1F469-1F3FB-200D-1F91D-200D-1F468-1F3FC",
+ non_qualified: null,
+ image: "1f469-1f3fb-200d-1f91d-200d-1f468-1f3fc.png",
+ sheet_x: 21,
+ sheet_y: 47,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FB-1F3FD": {
+ unified: "1F469-1F3FB-200D-1F91D-200D-1F468-1F3FD",
+ non_qualified: null,
+ image: "1f469-1f3fb-200d-1f91d-200d-1f468-1f3fd.png",
+ sheet_x: 21,
+ sheet_y: 48,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FB-1F3FE": {
+ unified: "1F469-1F3FB-200D-1F91D-200D-1F468-1F3FE",
+ non_qualified: null,
+ image: "1f469-1f3fb-200d-1f91d-200d-1f468-1f3fe.png",
+ sheet_x: 21,
+ sheet_y: 49,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FB-1F3FF": {
+ unified: "1F469-1F3FB-200D-1F91D-200D-1F468-1F3FF",
+ non_qualified: null,
+ image: "1f469-1f3fb-200d-1f91d-200d-1f468-1f3ff.png",
+ sheet_x: 21,
+ sheet_y: 50,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC-1F3FB": {
+ unified: "1F469-1F3FC-200D-1F91D-200D-1F468-1F3FB",
+ non_qualified: null,
+ image: "1f469-1f3fc-200d-1f91d-200d-1f468-1f3fb.png",
+ sheet_x: 21,
+ sheet_y: 51,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC-1F3FD": {
+ unified: "1F469-1F3FC-200D-1F91D-200D-1F468-1F3FD",
+ non_qualified: null,
+ image: "1f469-1f3fc-200d-1f91d-200d-1f468-1f3fd.png",
+ sheet_x: 21,
+ sheet_y: 52,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC-1F3FE": {
+ unified: "1F469-1F3FC-200D-1F91D-200D-1F468-1F3FE",
+ non_qualified: null,
+ image: "1f469-1f3fc-200d-1f91d-200d-1f468-1f3fe.png",
+ sheet_x: 21,
+ sheet_y: 53,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC-1F3FF": {
+ unified: "1F469-1F3FC-200D-1F91D-200D-1F468-1F3FF",
+ non_qualified: null,
+ image: "1f469-1f3fc-200d-1f91d-200d-1f468-1f3ff.png",
+ sheet_x: 21,
+ sheet_y: 54,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD-1F3FB": {
+ unified: "1F469-1F3FD-200D-1F91D-200D-1F468-1F3FB",
+ non_qualified: null,
+ image: "1f469-1f3fd-200d-1f91d-200d-1f468-1f3fb.png",
+ sheet_x: 21,
+ sheet_y: 55,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD-1F3FC": {
+ unified: "1F469-1F3FD-200D-1F91D-200D-1F468-1F3FC",
+ non_qualified: null,
+ image: "1f469-1f3fd-200d-1f91d-200d-1f468-1f3fc.png",
+ sheet_x: 21,
+ sheet_y: 56,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD-1F3FE": {
+ unified: "1F469-1F3FD-200D-1F91D-200D-1F468-1F3FE",
+ non_qualified: null,
+ image: "1f469-1f3fd-200d-1f91d-200d-1f468-1f3fe.png",
+ sheet_x: 21,
+ sheet_y: 57,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD-1F3FF": {
+ unified: "1F469-1F3FD-200D-1F91D-200D-1F468-1F3FF",
+ non_qualified: null,
+ image: "1f469-1f3fd-200d-1f91d-200d-1f468-1f3ff.png",
+ sheet_x: 21,
+ sheet_y: 58,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE-1F3FB": {
+ unified: "1F469-1F3FE-200D-1F91D-200D-1F468-1F3FB",
+ non_qualified: null,
+ image: "1f469-1f3fe-200d-1f91d-200d-1f468-1f3fb.png",
+ sheet_x: 21,
+ sheet_y: 59,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE-1F3FC": {
+ unified: "1F469-1F3FE-200D-1F91D-200D-1F468-1F3FC",
+ non_qualified: null,
+ image: "1f469-1f3fe-200d-1f91d-200d-1f468-1f3fc.png",
+ sheet_x: 21,
+ sheet_y: 60,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE-1F3FD": {
+ unified: "1F469-1F3FE-200D-1F91D-200D-1F468-1F3FD",
+ non_qualified: null,
+ image: "1f469-1f3fe-200d-1f91d-200d-1f468-1f3fd.png",
+ sheet_x: 22,
+ sheet_y: 0,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE-1F3FF": {
+ unified: "1F469-1F3FE-200D-1F91D-200D-1F468-1F3FF",
+ non_qualified: null,
+ image: "1f469-1f3fe-200d-1f91d-200d-1f468-1f3ff.png",
+ sheet_x: 22,
+ sheet_y: 1,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF-1F3FB": {
+ unified: "1F469-1F3FF-200D-1F91D-200D-1F468-1F3FB",
+ non_qualified: null,
+ image: "1f469-1f3ff-200d-1f91d-200d-1f468-1f3fb.png",
+ sheet_x: 22,
+ sheet_y: 2,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF-1F3FC": {
+ unified: "1F469-1F3FF-200D-1F91D-200D-1F468-1F3FC",
+ non_qualified: null,
+ image: "1f469-1f3ff-200d-1f91d-200d-1f468-1f3fc.png",
+ sheet_x: 22,
+ sheet_y: 3,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF-1F3FD": {
+ unified: "1F469-1F3FF-200D-1F91D-200D-1F468-1F3FD",
+ non_qualified: null,
+ image: "1f469-1f3ff-200d-1f91d-200d-1f468-1f3fd.png",
+ sheet_x: 22,
+ sheet_y: 4,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF-1F3FE": {
+ unified: "1F469-1F3FF-200D-1F91D-200D-1F468-1F3FE",
+ non_qualified: null,
+ image: "1f469-1f3ff-200d-1f91d-200d-1f468-1f3fe.png",
+ sheet_x: 22,
+ sheet_y: 5,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ two_men_holding_hands: {
+ char: "👬",
+ key: "two_men_holding_hands",
+ keywords: ["two_men_holding_hands", "TWO MEN HOLDING HANDS"],
+ category: "people",
+ lib: {
+ name: "TWO MEN HOLDING HANDS",
+ unified: "1F46C",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f46c.png",
+ sheet_x: 22,
+ sheet_y: 6,
+ short_name: "two_men_holding_hands",
+ short_names: ["two_men_holding_hands", "men_holding_hands"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "family",
+ sort_order: 490,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F46C-1F3FB",
+ non_qualified: null,
+ image: "1f46c-1f3fb.png",
+ sheet_x: 22,
+ sheet_y: 7,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F46C-1F3FC",
+ non_qualified: null,
+ image: "1f46c-1f3fc.png",
+ sheet_x: 22,
+ sheet_y: 8,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F46C-1F3FD",
+ non_qualified: null,
+ image: "1f46c-1f3fd.png",
+ sheet_x: 22,
+ sheet_y: 9,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F46C-1F3FE",
+ non_qualified: null,
+ image: "1f46c-1f3fe.png",
+ sheet_x: 22,
+ sheet_y: 10,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F46C-1F3FF",
+ non_qualified: null,
+ image: "1f46c-1f3ff.png",
+ sheet_x: 22,
+ sheet_y: 11,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FB-1F3FC": {
+ unified: "1F468-1F3FB-200D-1F91D-200D-1F468-1F3FC",
+ non_qualified: null,
+ image: "1f468-1f3fb-200d-1f91d-200d-1f468-1f3fc.png",
+ sheet_x: 22,
+ sheet_y: 12,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FB-1F3FD": {
+ unified: "1F468-1F3FB-200D-1F91D-200D-1F468-1F3FD",
+ non_qualified: null,
+ image: "1f468-1f3fb-200d-1f91d-200d-1f468-1f3fd.png",
+ sheet_x: 22,
+ sheet_y: 13,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FB-1F3FE": {
+ unified: "1F468-1F3FB-200D-1F91D-200D-1F468-1F3FE",
+ non_qualified: null,
+ image: "1f468-1f3fb-200d-1f91d-200d-1f468-1f3fe.png",
+ sheet_x: 22,
+ sheet_y: 14,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FB-1F3FF": {
+ unified: "1F468-1F3FB-200D-1F91D-200D-1F468-1F3FF",
+ non_qualified: null,
+ image: "1f468-1f3fb-200d-1f91d-200d-1f468-1f3ff.png",
+ sheet_x: 22,
+ sheet_y: 15,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC-1F3FB": {
+ unified: "1F468-1F3FC-200D-1F91D-200D-1F468-1F3FB",
+ non_qualified: null,
+ image: "1f468-1f3fc-200d-1f91d-200d-1f468-1f3fb.png",
+ sheet_x: 22,
+ sheet_y: 16,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC-1F3FD": {
+ unified: "1F468-1F3FC-200D-1F91D-200D-1F468-1F3FD",
+ non_qualified: null,
+ image: "1f468-1f3fc-200d-1f91d-200d-1f468-1f3fd.png",
+ sheet_x: 22,
+ sheet_y: 17,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC-1F3FE": {
+ unified: "1F468-1F3FC-200D-1F91D-200D-1F468-1F3FE",
+ non_qualified: null,
+ image: "1f468-1f3fc-200d-1f91d-200d-1f468-1f3fe.png",
+ sheet_x: 22,
+ sheet_y: 18,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC-1F3FF": {
+ unified: "1F468-1F3FC-200D-1F91D-200D-1F468-1F3FF",
+ non_qualified: null,
+ image: "1f468-1f3fc-200d-1f91d-200d-1f468-1f3ff.png",
+ sheet_x: 22,
+ sheet_y: 19,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD-1F3FB": {
+ unified: "1F468-1F3FD-200D-1F91D-200D-1F468-1F3FB",
+ non_qualified: null,
+ image: "1f468-1f3fd-200d-1f91d-200d-1f468-1f3fb.png",
+ sheet_x: 22,
+ sheet_y: 20,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD-1F3FC": {
+ unified: "1F468-1F3FD-200D-1F91D-200D-1F468-1F3FC",
+ non_qualified: null,
+ image: "1f468-1f3fd-200d-1f91d-200d-1f468-1f3fc.png",
+ sheet_x: 22,
+ sheet_y: 21,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD-1F3FE": {
+ unified: "1F468-1F3FD-200D-1F91D-200D-1F468-1F3FE",
+ non_qualified: null,
+ image: "1f468-1f3fd-200d-1f91d-200d-1f468-1f3fe.png",
+ sheet_x: 22,
+ sheet_y: 22,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD-1F3FF": {
+ unified: "1F468-1F3FD-200D-1F91D-200D-1F468-1F3FF",
+ non_qualified: null,
+ image: "1f468-1f3fd-200d-1f91d-200d-1f468-1f3ff.png",
+ sheet_x: 22,
+ sheet_y: 23,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE-1F3FB": {
+ unified: "1F468-1F3FE-200D-1F91D-200D-1F468-1F3FB",
+ non_qualified: null,
+ image: "1f468-1f3fe-200d-1f91d-200d-1f468-1f3fb.png",
+ sheet_x: 22,
+ sheet_y: 24,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE-1F3FC": {
+ unified: "1F468-1F3FE-200D-1F91D-200D-1F468-1F3FC",
+ non_qualified: null,
+ image: "1f468-1f3fe-200d-1f91d-200d-1f468-1f3fc.png",
+ sheet_x: 22,
+ sheet_y: 25,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE-1F3FD": {
+ unified: "1F468-1F3FE-200D-1F91D-200D-1F468-1F3FD",
+ non_qualified: null,
+ image: "1f468-1f3fe-200d-1f91d-200d-1f468-1f3fd.png",
+ sheet_x: 22,
+ sheet_y: 26,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE-1F3FF": {
+ unified: "1F468-1F3FE-200D-1F91D-200D-1F468-1F3FF",
+ non_qualified: null,
+ image: "1f468-1f3fe-200d-1f91d-200d-1f468-1f3ff.png",
+ sheet_x: 22,
+ sheet_y: 27,
+ added_in: "12.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF-1F3FB": {
+ unified: "1F468-1F3FF-200D-1F91D-200D-1F468-1F3FB",
+ non_qualified: null,
+ image: "1f468-1f3ff-200d-1f91d-200d-1f468-1f3fb.png",
+ sheet_x: 22,
+ sheet_y: 28,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF-1F3FC": {
+ unified: "1F468-1F3FF-200D-1F91D-200D-1F468-1F3FC",
+ non_qualified: null,
+ image: "1f468-1f3ff-200d-1f91d-200d-1f468-1f3fc.png",
+ sheet_x: 22,
+ sheet_y: 29,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF-1F3FD": {
+ unified: "1F468-1F3FF-200D-1F91D-200D-1F468-1F3FD",
+ non_qualified: null,
+ image: "1f468-1f3ff-200d-1f91d-200d-1f468-1f3fd.png",
+ sheet_x: 22,
+ sheet_y: 30,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF-1F3FE": {
+ unified: "1F468-1F3FF-200D-1F91D-200D-1F468-1F3FE",
+ non_qualified: null,
+ image: "1f468-1f3ff-200d-1f91d-200d-1f468-1f3fe.png",
+ sheet_x: 22,
+ sheet_y: 31,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ couplekiss: {
+ char: "💏",
+ key: "couplekiss",
+ keywords: ["couplekiss", "KISS"],
+ category: "people",
+ lib: {
+ name: "KISS",
+ unified: "1F48F",
+ non_qualified: null,
+ docomo: "E6F9",
+ au: "E5CA",
+ softbank: "E111",
+ google: "FE827",
+ image: "1f48f.png",
+ sheet_x: 26,
+ sheet_y: 42,
+ short_name: "couplekiss",
+ short_names: ["couplekiss"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "family",
+ sort_order: 491,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F48F-1F3FB",
+ non_qualified: null,
+ image: "1f48f-1f3fb.png",
+ sheet_x: 26,
+ sheet_y: 43,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F48F-1F3FC",
+ non_qualified: null,
+ image: "1f48f-1f3fc.png",
+ sheet_x: 26,
+ sheet_y: 44,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F48F-1F3FD",
+ non_qualified: null,
+ image: "1f48f-1f3fd.png",
+ sheet_x: 26,
+ sheet_y: 45,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F48F-1F3FE",
+ non_qualified: null,
+ image: "1f48f-1f3fe.png",
+ sheet_x: 26,
+ sheet_y: 46,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F48F-1F3FF",
+ non_qualified: null,
+ image: "1f48f-1f3ff.png",
+ sheet_x: 26,
+ sheet_y: 47,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FB-1F3FC": {
+ unified: "1F9D1-1F3FB-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FC",
+ non_qualified: "1F9D1-1F3FB-200D-2764-200D-1F48B-200D-1F9D1-1F3FC",
+ image: "1f9d1-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fc.png",
+ sheet_x: 26,
+ sheet_y: 48,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FB-1F3FD": {
+ unified: "1F9D1-1F3FB-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FD",
+ non_qualified: "1F9D1-1F3FB-200D-2764-200D-1F48B-200D-1F9D1-1F3FD",
+ image: "1f9d1-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fd.png",
+ sheet_x: 26,
+ sheet_y: 49,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FB-1F3FE": {
+ unified: "1F9D1-1F3FB-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FE",
+ non_qualified: "1F9D1-1F3FB-200D-2764-200D-1F48B-200D-1F9D1-1F3FE",
+ image: "1f9d1-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fe.png",
+ sheet_x: 26,
+ sheet_y: 50,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FB-1F3FF": {
+ unified: "1F9D1-1F3FB-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FF",
+ non_qualified: "1F9D1-1F3FB-200D-2764-200D-1F48B-200D-1F9D1-1F3FF",
+ image: "1f9d1-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3ff.png",
+ sheet_x: 26,
+ sheet_y: 51,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC-1F3FB": {
+ unified: "1F9D1-1F3FC-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FB",
+ non_qualified: "1F9D1-1F3FC-200D-2764-200D-1F48B-200D-1F9D1-1F3FB",
+ image: "1f9d1-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fb.png",
+ sheet_x: 26,
+ sheet_y: 52,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC-1F3FD": {
+ unified: "1F9D1-1F3FC-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FD",
+ non_qualified: "1F9D1-1F3FC-200D-2764-200D-1F48B-200D-1F9D1-1F3FD",
+ image: "1f9d1-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fd.png",
+ sheet_x: 26,
+ sheet_y: 53,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC-1F3FE": {
+ unified: "1F9D1-1F3FC-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FE",
+ non_qualified: "1F9D1-1F3FC-200D-2764-200D-1F48B-200D-1F9D1-1F3FE",
+ image: "1f9d1-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fe.png",
+ sheet_x: 26,
+ sheet_y: 54,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC-1F3FF": {
+ unified: "1F9D1-1F3FC-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FF",
+ non_qualified: "1F9D1-1F3FC-200D-2764-200D-1F48B-200D-1F9D1-1F3FF",
+ image: "1f9d1-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3ff.png",
+ sheet_x: 26,
+ sheet_y: 55,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD-1F3FB": {
+ unified: "1F9D1-1F3FD-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FB",
+ non_qualified: "1F9D1-1F3FD-200D-2764-200D-1F48B-200D-1F9D1-1F3FB",
+ image: "1f9d1-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fb.png",
+ sheet_x: 26,
+ sheet_y: 56,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD-1F3FC": {
+ unified: "1F9D1-1F3FD-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FC",
+ non_qualified: "1F9D1-1F3FD-200D-2764-200D-1F48B-200D-1F9D1-1F3FC",
+ image: "1f9d1-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fc.png",
+ sheet_x: 26,
+ sheet_y: 57,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD-1F3FE": {
+ unified: "1F9D1-1F3FD-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FE",
+ non_qualified: "1F9D1-1F3FD-200D-2764-200D-1F48B-200D-1F9D1-1F3FE",
+ image: "1f9d1-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fe.png",
+ sheet_x: 26,
+ sheet_y: 58,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD-1F3FF": {
+ unified: "1F9D1-1F3FD-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FF",
+ non_qualified: "1F9D1-1F3FD-200D-2764-200D-1F48B-200D-1F9D1-1F3FF",
+ image: "1f9d1-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3ff.png",
+ sheet_x: 26,
+ sheet_y: 59,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE-1F3FB": {
+ unified: "1F9D1-1F3FE-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FB",
+ non_qualified: "1F9D1-1F3FE-200D-2764-200D-1F48B-200D-1F9D1-1F3FB",
+ image: "1f9d1-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fb.png",
+ sheet_x: 26,
+ sheet_y: 60,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE-1F3FC": {
+ unified: "1F9D1-1F3FE-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FC",
+ non_qualified: "1F9D1-1F3FE-200D-2764-200D-1F48B-200D-1F9D1-1F3FC",
+ image: "1f9d1-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fc.png",
+ sheet_x: 27,
+ sheet_y: 0,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE-1F3FD": {
+ unified: "1F9D1-1F3FE-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FD",
+ non_qualified: "1F9D1-1F3FE-200D-2764-200D-1F48B-200D-1F9D1-1F3FD",
+ image: "1f9d1-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fd.png",
+ sheet_x: 27,
+ sheet_y: 1,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE-1F3FF": {
+ unified: "1F9D1-1F3FE-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FF",
+ non_qualified: "1F9D1-1F3FE-200D-2764-200D-1F48B-200D-1F9D1-1F3FF",
+ image: "1f9d1-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3ff.png",
+ sheet_x: 27,
+ sheet_y: 2,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF-1F3FB": {
+ unified: "1F9D1-1F3FF-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FB",
+ non_qualified: "1F9D1-1F3FF-200D-2764-200D-1F48B-200D-1F9D1-1F3FB",
+ image: "1f9d1-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fb.png",
+ sheet_x: 27,
+ sheet_y: 3,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF-1F3FC": {
+ unified: "1F9D1-1F3FF-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FC",
+ non_qualified: "1F9D1-1F3FF-200D-2764-200D-1F48B-200D-1F9D1-1F3FC",
+ image: "1f9d1-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fc.png",
+ sheet_x: 27,
+ sheet_y: 4,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF-1F3FD": {
+ unified: "1F9D1-1F3FF-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FD",
+ non_qualified: "1F9D1-1F3FF-200D-2764-200D-1F48B-200D-1F9D1-1F3FD",
+ image: "1f9d1-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fd.png",
+ sheet_x: 27,
+ sheet_y: 5,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF-1F3FE": {
+ unified: "1F9D1-1F3FF-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FE",
+ non_qualified: "1F9D1-1F3FF-200D-2764-200D-1F48B-200D-1F9D1-1F3FE",
+ image: "1f9d1-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fe.png",
+ sheet_x: 27,
+ sheet_y: 6,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ "woman-kiss-man": {
+ char: "👩❤️💋👨",
+ key: "woman-kiss-man",
+ keywords: ["woman-kiss-man", "KISS: WOMAN, MAN"],
+ category: "people",
+ lib: {
+ name: "KISS: WOMAN, MAN",
+ unified: "1F469-200D-2764-FE0F-200D-1F48B-200D-1F468",
+ non_qualified: "1F469-200D-2764-200D-1F48B-200D-1F468",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f469-200d-2764-fe0f-200d-1f48b-200d-1f468.png",
+ sheet_x: 20,
+ sheet_y: 43,
+ short_name: "woman-kiss-man",
+ short_names: ["woman-kiss-man"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "family",
+ sort_order: 492,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB-1F3FB": {
+ unified: "1F469-1F3FB-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FB",
+ non_qualified: "1F469-1F3FB-200D-2764-200D-1F48B-200D-1F468-1F3FB",
+ image: "1f469-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fb.png",
+ sheet_x: 20,
+ sheet_y: 44,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FB-1F3FC": {
+ unified: "1F469-1F3FB-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FC",
+ non_qualified: "1F469-1F3FB-200D-2764-200D-1F48B-200D-1F468-1F3FC",
+ image: "1f469-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fc.png",
+ sheet_x: 20,
+ sheet_y: 45,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FB-1F3FD": {
+ unified: "1F469-1F3FB-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FD",
+ non_qualified: "1F469-1F3FB-200D-2764-200D-1F48B-200D-1F468-1F3FD",
+ image: "1f469-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fd.png",
+ sheet_x: 20,
+ sheet_y: 46,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FB-1F3FE": {
+ unified: "1F469-1F3FB-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FE",
+ non_qualified: "1F469-1F3FB-200D-2764-200D-1F48B-200D-1F468-1F3FE",
+ image: "1f469-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fe.png",
+ sheet_x: 20,
+ sheet_y: 47,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FB-1F3FF": {
+ unified: "1F469-1F3FB-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FF",
+ non_qualified: "1F469-1F3FB-200D-2764-200D-1F48B-200D-1F468-1F3FF",
+ image: "1f469-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3ff.png",
+ sheet_x: 20,
+ sheet_y: 48,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC-1F3FB": {
+ unified: "1F469-1F3FC-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FB",
+ non_qualified: "1F469-1F3FC-200D-2764-200D-1F48B-200D-1F468-1F3FB",
+ image: "1f469-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fb.png",
+ sheet_x: 20,
+ sheet_y: 49,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC-1F3FC": {
+ unified: "1F469-1F3FC-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FC",
+ non_qualified: "1F469-1F3FC-200D-2764-200D-1F48B-200D-1F468-1F3FC",
+ image: "1f469-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fc.png",
+ sheet_x: 20,
+ sheet_y: 50,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC-1F3FD": {
+ unified: "1F469-1F3FC-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FD",
+ non_qualified: "1F469-1F3FC-200D-2764-200D-1F48B-200D-1F468-1F3FD",
+ image: "1f469-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fd.png",
+ sheet_x: 20,
+ sheet_y: 51,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC-1F3FE": {
+ unified: "1F469-1F3FC-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FE",
+ non_qualified: "1F469-1F3FC-200D-2764-200D-1F48B-200D-1F468-1F3FE",
+ image: "1f469-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fe.png",
+ sheet_x: 20,
+ sheet_y: 52,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC-1F3FF": {
+ unified: "1F469-1F3FC-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FF",
+ non_qualified: "1F469-1F3FC-200D-2764-200D-1F48B-200D-1F468-1F3FF",
+ image: "1f469-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3ff.png",
+ sheet_x: 20,
+ sheet_y: 53,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD-1F3FB": {
+ unified: "1F469-1F3FD-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FB",
+ non_qualified: "1F469-1F3FD-200D-2764-200D-1F48B-200D-1F468-1F3FB",
+ image: "1f469-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fb.png",
+ sheet_x: 20,
+ sheet_y: 54,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD-1F3FC": {
+ unified: "1F469-1F3FD-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FC",
+ non_qualified: "1F469-1F3FD-200D-2764-200D-1F48B-200D-1F468-1F3FC",
+ image: "1f469-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fc.png",
+ sheet_x: 20,
+ sheet_y: 55,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD-1F3FD": {
+ unified: "1F469-1F3FD-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FD",
+ non_qualified: "1F469-1F3FD-200D-2764-200D-1F48B-200D-1F468-1F3FD",
+ image: "1f469-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fd.png",
+ sheet_x: 20,
+ sheet_y: 56,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD-1F3FE": {
+ unified: "1F469-1F3FD-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FE",
+ non_qualified: "1F469-1F3FD-200D-2764-200D-1F48B-200D-1F468-1F3FE",
+ image: "1f469-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fe.png",
+ sheet_x: 20,
+ sheet_y: 57,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD-1F3FF": {
+ unified: "1F469-1F3FD-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FF",
+ non_qualified: "1F469-1F3FD-200D-2764-200D-1F48B-200D-1F468-1F3FF",
+ image: "1f469-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3ff.png",
+ sheet_x: 20,
+ sheet_y: 58,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE-1F3FB": {
+ unified: "1F469-1F3FE-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FB",
+ non_qualified: "1F469-1F3FE-200D-2764-200D-1F48B-200D-1F468-1F3FB",
+ image: "1f469-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fb.png",
+ sheet_x: 20,
+ sheet_y: 59,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE-1F3FC": {
+ unified: "1F469-1F3FE-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FC",
+ non_qualified: "1F469-1F3FE-200D-2764-200D-1F48B-200D-1F468-1F3FC",
+ image: "1f469-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fc.png",
+ sheet_x: 20,
+ sheet_y: 60,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE-1F3FD": {
+ unified: "1F469-1F3FE-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FD",
+ non_qualified: "1F469-1F3FE-200D-2764-200D-1F48B-200D-1F468-1F3FD",
+ image: "1f469-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fd.png",
+ sheet_x: 21,
+ sheet_y: 0,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE-1F3FE": {
+ unified: "1F469-1F3FE-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FE",
+ non_qualified: "1F469-1F3FE-200D-2764-200D-1F48B-200D-1F468-1F3FE",
+ image: "1f469-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fe.png",
+ sheet_x: 21,
+ sheet_y: 1,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE-1F3FF": {
+ unified: "1F469-1F3FE-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FF",
+ non_qualified: "1F469-1F3FE-200D-2764-200D-1F48B-200D-1F468-1F3FF",
+ image: "1f469-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3ff.png",
+ sheet_x: 21,
+ sheet_y: 2,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF-1F3FB": {
+ unified: "1F469-1F3FF-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FB",
+ non_qualified: "1F469-1F3FF-200D-2764-200D-1F48B-200D-1F468-1F3FB",
+ image: "1f469-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fb.png",
+ sheet_x: 21,
+ sheet_y: 3,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF-1F3FC": {
+ unified: "1F469-1F3FF-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FC",
+ non_qualified: "1F469-1F3FF-200D-2764-200D-1F48B-200D-1F468-1F3FC",
+ image: "1f469-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fc.png",
+ sheet_x: 21,
+ sheet_y: 4,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF-1F3FD": {
+ unified: "1F469-1F3FF-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FD",
+ non_qualified: "1F469-1F3FF-200D-2764-200D-1F48B-200D-1F468-1F3FD",
+ image: "1f469-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fd.png",
+ sheet_x: 21,
+ sheet_y: 5,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF-1F3FE": {
+ unified: "1F469-1F3FF-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FE",
+ non_qualified: "1F469-1F3FF-200D-2764-200D-1F48B-200D-1F468-1F3FE",
+ image: "1f469-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fe.png",
+ sheet_x: 21,
+ sheet_y: 6,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF-1F3FF": {
+ unified: "1F469-1F3FF-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FF",
+ non_qualified: "1F469-1F3FF-200D-2764-200D-1F48B-200D-1F468-1F3FF",
+ image: "1f469-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3ff.png",
+ sheet_x: 21,
+ sheet_y: 7,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ "man-kiss-man": {
+ char: "👨❤️💋👨",
+ key: "man-kiss-man",
+ keywords: ["man-kiss-man", "KISS: MAN, MAN"],
+ category: "people",
+ lib: {
+ name: "KISS: MAN, MAN",
+ unified: "1F468-200D-2764-FE0F-200D-1F48B-200D-1F468",
+ non_qualified: "1F468-200D-2764-200D-1F48B-200D-1F468",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f468-200d-2764-fe0f-200d-1f48b-200d-1f468.png",
+ sheet_x: 16,
+ sheet_y: 49,
+ short_name: "man-kiss-man",
+ short_names: ["man-kiss-man"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "family",
+ sort_order: 493,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB-1F3FB": {
+ unified: "1F468-1F3FB-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FB",
+ non_qualified: "1F468-1F3FB-200D-2764-200D-1F48B-200D-1F468-1F3FB",
+ image: "1f468-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fb.png",
+ sheet_x: 16,
+ sheet_y: 50,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FB-1F3FC": {
+ unified: "1F468-1F3FB-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FC",
+ non_qualified: "1F468-1F3FB-200D-2764-200D-1F48B-200D-1F468-1F3FC",
+ image: "1f468-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fc.png",
+ sheet_x: 16,
+ sheet_y: 51,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FB-1F3FD": {
+ unified: "1F468-1F3FB-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FD",
+ non_qualified: "1F468-1F3FB-200D-2764-200D-1F48B-200D-1F468-1F3FD",
+ image: "1f468-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fd.png",
+ sheet_x: 16,
+ sheet_y: 52,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FB-1F3FE": {
+ unified: "1F468-1F3FB-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FE",
+ non_qualified: "1F468-1F3FB-200D-2764-200D-1F48B-200D-1F468-1F3FE",
+ image: "1f468-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fe.png",
+ sheet_x: 16,
+ sheet_y: 53,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FB-1F3FF": {
+ unified: "1F468-1F3FB-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FF",
+ non_qualified: "1F468-1F3FB-200D-2764-200D-1F48B-200D-1F468-1F3FF",
+ image: "1f468-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3ff.png",
+ sheet_x: 16,
+ sheet_y: 54,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC-1F3FB": {
+ unified: "1F468-1F3FC-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FB",
+ non_qualified: "1F468-1F3FC-200D-2764-200D-1F48B-200D-1F468-1F3FB",
+ image: "1f468-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fb.png",
+ sheet_x: 16,
+ sheet_y: 55,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC-1F3FC": {
+ unified: "1F468-1F3FC-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FC",
+ non_qualified: "1F468-1F3FC-200D-2764-200D-1F48B-200D-1F468-1F3FC",
+ image: "1f468-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fc.png",
+ sheet_x: 16,
+ sheet_y: 56,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC-1F3FD": {
+ unified: "1F468-1F3FC-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FD",
+ non_qualified: "1F468-1F3FC-200D-2764-200D-1F48B-200D-1F468-1F3FD",
+ image: "1f468-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fd.png",
+ sheet_x: 16,
+ sheet_y: 57,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC-1F3FE": {
+ unified: "1F468-1F3FC-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FE",
+ non_qualified: "1F468-1F3FC-200D-2764-200D-1F48B-200D-1F468-1F3FE",
+ image: "1f468-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fe.png",
+ sheet_x: 16,
+ sheet_y: 58,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC-1F3FF": {
+ unified: "1F468-1F3FC-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FF",
+ non_qualified: "1F468-1F3FC-200D-2764-200D-1F48B-200D-1F468-1F3FF",
+ image: "1f468-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3ff.png",
+ sheet_x: 16,
+ sheet_y: 59,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD-1F3FB": {
+ unified: "1F468-1F3FD-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FB",
+ non_qualified: "1F468-1F3FD-200D-2764-200D-1F48B-200D-1F468-1F3FB",
+ image: "1f468-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fb.png",
+ sheet_x: 16,
+ sheet_y: 60,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD-1F3FC": {
+ unified: "1F468-1F3FD-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FC",
+ non_qualified: "1F468-1F3FD-200D-2764-200D-1F48B-200D-1F468-1F3FC",
+ image: "1f468-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fc.png",
+ sheet_x: 17,
+ sheet_y: 0,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD-1F3FD": {
+ unified: "1F468-1F3FD-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FD",
+ non_qualified: "1F468-1F3FD-200D-2764-200D-1F48B-200D-1F468-1F3FD",
+ image: "1f468-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fd.png",
+ sheet_x: 17,
+ sheet_y: 1,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD-1F3FE": {
+ unified: "1F468-1F3FD-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FE",
+ non_qualified: "1F468-1F3FD-200D-2764-200D-1F48B-200D-1F468-1F3FE",
+ image: "1f468-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fe.png",
+ sheet_x: 17,
+ sheet_y: 2,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD-1F3FF": {
+ unified: "1F468-1F3FD-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FF",
+ non_qualified: "1F468-1F3FD-200D-2764-200D-1F48B-200D-1F468-1F3FF",
+ image: "1f468-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3ff.png",
+ sheet_x: 17,
+ sheet_y: 3,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE-1F3FB": {
+ unified: "1F468-1F3FE-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FB",
+ non_qualified: "1F468-1F3FE-200D-2764-200D-1F48B-200D-1F468-1F3FB",
+ image: "1f468-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fb.png",
+ sheet_x: 17,
+ sheet_y: 4,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE-1F3FC": {
+ unified: "1F468-1F3FE-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FC",
+ non_qualified: "1F468-1F3FE-200D-2764-200D-1F48B-200D-1F468-1F3FC",
+ image: "1f468-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fc.png",
+ sheet_x: 17,
+ sheet_y: 5,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE-1F3FD": {
+ unified: "1F468-1F3FE-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FD",
+ non_qualified: "1F468-1F3FE-200D-2764-200D-1F48B-200D-1F468-1F3FD",
+ image: "1f468-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fd.png",
+ sheet_x: 17,
+ sheet_y: 6,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE-1F3FE": {
+ unified: "1F468-1F3FE-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FE",
+ non_qualified: "1F468-1F3FE-200D-2764-200D-1F48B-200D-1F468-1F3FE",
+ image: "1f468-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fe.png",
+ sheet_x: 17,
+ sheet_y: 7,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE-1F3FF": {
+ unified: "1F468-1F3FE-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FF",
+ non_qualified: "1F468-1F3FE-200D-2764-200D-1F48B-200D-1F468-1F3FF",
+ image: "1f468-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3ff.png",
+ sheet_x: 17,
+ sheet_y: 8,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF-1F3FB": {
+ unified: "1F468-1F3FF-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FB",
+ non_qualified: "1F468-1F3FF-200D-2764-200D-1F48B-200D-1F468-1F3FB",
+ image: "1f468-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fb.png",
+ sheet_x: 17,
+ sheet_y: 9,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF-1F3FC": {
+ unified: "1F468-1F3FF-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FC",
+ non_qualified: "1F468-1F3FF-200D-2764-200D-1F48B-200D-1F468-1F3FC",
+ image: "1f468-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fc.png",
+ sheet_x: 17,
+ sheet_y: 10,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF-1F3FD": {
+ unified: "1F468-1F3FF-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FD",
+ non_qualified: "1F468-1F3FF-200D-2764-200D-1F48B-200D-1F468-1F3FD",
+ image: "1f468-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fd.png",
+ sheet_x: 17,
+ sheet_y: 11,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF-1F3FE": {
+ unified: "1F468-1F3FF-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FE",
+ non_qualified: "1F468-1F3FF-200D-2764-200D-1F48B-200D-1F468-1F3FE",
+ image: "1f468-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fe.png",
+ sheet_x: 17,
+ sheet_y: 12,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF-1F3FF": {
+ unified: "1F468-1F3FF-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FF",
+ non_qualified: "1F468-1F3FF-200D-2764-200D-1F48B-200D-1F468-1F3FF",
+ image: "1f468-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3ff.png",
+ sheet_x: 17,
+ sheet_y: 13,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ "woman-kiss-woman": {
+ char: "👩❤️💋👩",
+ key: "woman-kiss-woman",
+ keywords: ["woman-kiss-woman", "KISS: WOMAN, WOMAN"],
+ category: "people",
+ lib: {
+ name: "KISS: WOMAN, WOMAN",
+ unified: "1F469-200D-2764-FE0F-200D-1F48B-200D-1F469",
+ non_qualified: "1F469-200D-2764-200D-1F48B-200D-1F469",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f469-200d-2764-fe0f-200d-1f48b-200d-1f469.png",
+ sheet_x: 21,
+ sheet_y: 8,
+ short_name: "woman-kiss-woman",
+ short_names: ["woman-kiss-woman"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "family",
+ sort_order: 494,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB-1F3FB": {
+ unified: "1F469-1F3FB-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FB",
+ non_qualified: "1F469-1F3FB-200D-2764-200D-1F48B-200D-1F469-1F3FB",
+ image: "1f469-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fb.png",
+ sheet_x: 21,
+ sheet_y: 9,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FB-1F3FC": {
+ unified: "1F469-1F3FB-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FC",
+ non_qualified: "1F469-1F3FB-200D-2764-200D-1F48B-200D-1F469-1F3FC",
+ image: "1f469-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fc.png",
+ sheet_x: 21,
+ sheet_y: 10,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FB-1F3FD": {
+ unified: "1F469-1F3FB-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FD",
+ non_qualified: "1F469-1F3FB-200D-2764-200D-1F48B-200D-1F469-1F3FD",
+ image: "1f469-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fd.png",
+ sheet_x: 21,
+ sheet_y: 11,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FB-1F3FE": {
+ unified: "1F469-1F3FB-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FE",
+ non_qualified: "1F469-1F3FB-200D-2764-200D-1F48B-200D-1F469-1F3FE",
+ image: "1f469-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fe.png",
+ sheet_x: 21,
+ sheet_y: 12,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FB-1F3FF": {
+ unified: "1F469-1F3FB-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FF",
+ non_qualified: "1F469-1F3FB-200D-2764-200D-1F48B-200D-1F469-1F3FF",
+ image: "1f469-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3ff.png",
+ sheet_x: 21,
+ sheet_y: 13,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC-1F3FB": {
+ unified: "1F469-1F3FC-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FB",
+ non_qualified: "1F469-1F3FC-200D-2764-200D-1F48B-200D-1F469-1F3FB",
+ image: "1f469-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fb.png",
+ sheet_x: 21,
+ sheet_y: 14,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC-1F3FC": {
+ unified: "1F469-1F3FC-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FC",
+ non_qualified: "1F469-1F3FC-200D-2764-200D-1F48B-200D-1F469-1F3FC",
+ image: "1f469-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fc.png",
+ sheet_x: 21,
+ sheet_y: 15,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC-1F3FD": {
+ unified: "1F469-1F3FC-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FD",
+ non_qualified: "1F469-1F3FC-200D-2764-200D-1F48B-200D-1F469-1F3FD",
+ image: "1f469-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fd.png",
+ sheet_x: 21,
+ sheet_y: 16,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC-1F3FE": {
+ unified: "1F469-1F3FC-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FE",
+ non_qualified: "1F469-1F3FC-200D-2764-200D-1F48B-200D-1F469-1F3FE",
+ image: "1f469-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fe.png",
+ sheet_x: 21,
+ sheet_y: 17,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC-1F3FF": {
+ unified: "1F469-1F3FC-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FF",
+ non_qualified: "1F469-1F3FC-200D-2764-200D-1F48B-200D-1F469-1F3FF",
+ image: "1f469-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3ff.png",
+ sheet_x: 21,
+ sheet_y: 18,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD-1F3FB": {
+ unified: "1F469-1F3FD-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FB",
+ non_qualified: "1F469-1F3FD-200D-2764-200D-1F48B-200D-1F469-1F3FB",
+ image: "1f469-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fb.png",
+ sheet_x: 21,
+ sheet_y: 19,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD-1F3FC": {
+ unified: "1F469-1F3FD-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FC",
+ non_qualified: "1F469-1F3FD-200D-2764-200D-1F48B-200D-1F469-1F3FC",
+ image: "1f469-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fc.png",
+ sheet_x: 21,
+ sheet_y: 20,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD-1F3FD": {
+ unified: "1F469-1F3FD-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FD",
+ non_qualified: "1F469-1F3FD-200D-2764-200D-1F48B-200D-1F469-1F3FD",
+ image: "1f469-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fd.png",
+ sheet_x: 21,
+ sheet_y: 21,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD-1F3FE": {
+ unified: "1F469-1F3FD-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FE",
+ non_qualified: "1F469-1F3FD-200D-2764-200D-1F48B-200D-1F469-1F3FE",
+ image: "1f469-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fe.png",
+ sheet_x: 21,
+ sheet_y: 22,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD-1F3FF": {
+ unified: "1F469-1F3FD-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FF",
+ non_qualified: "1F469-1F3FD-200D-2764-200D-1F48B-200D-1F469-1F3FF",
+ image: "1f469-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3ff.png",
+ sheet_x: 21,
+ sheet_y: 23,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE-1F3FB": {
+ unified: "1F469-1F3FE-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FB",
+ non_qualified: "1F469-1F3FE-200D-2764-200D-1F48B-200D-1F469-1F3FB",
+ image: "1f469-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fb.png",
+ sheet_x: 21,
+ sheet_y: 24,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE-1F3FC": {
+ unified: "1F469-1F3FE-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FC",
+ non_qualified: "1F469-1F3FE-200D-2764-200D-1F48B-200D-1F469-1F3FC",
+ image: "1f469-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fc.png",
+ sheet_x: 21,
+ sheet_y: 25,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE-1F3FD": {
+ unified: "1F469-1F3FE-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FD",
+ non_qualified: "1F469-1F3FE-200D-2764-200D-1F48B-200D-1F469-1F3FD",
+ image: "1f469-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fd.png",
+ sheet_x: 21,
+ sheet_y: 26,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE-1F3FE": {
+ unified: "1F469-1F3FE-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FE",
+ non_qualified: "1F469-1F3FE-200D-2764-200D-1F48B-200D-1F469-1F3FE",
+ image: "1f469-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fe.png",
+ sheet_x: 21,
+ sheet_y: 27,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE-1F3FF": {
+ unified: "1F469-1F3FE-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FF",
+ non_qualified: "1F469-1F3FE-200D-2764-200D-1F48B-200D-1F469-1F3FF",
+ image: "1f469-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3ff.png",
+ sheet_x: 21,
+ sheet_y: 28,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF-1F3FB": {
+ unified: "1F469-1F3FF-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FB",
+ non_qualified: "1F469-1F3FF-200D-2764-200D-1F48B-200D-1F469-1F3FB",
+ image: "1f469-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fb.png",
+ sheet_x: 21,
+ sheet_y: 29,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF-1F3FC": {
+ unified: "1F469-1F3FF-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FC",
+ non_qualified: "1F469-1F3FF-200D-2764-200D-1F48B-200D-1F469-1F3FC",
+ image: "1f469-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fc.png",
+ sheet_x: 21,
+ sheet_y: 30,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF-1F3FD": {
+ unified: "1F469-1F3FF-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FD",
+ non_qualified: "1F469-1F3FF-200D-2764-200D-1F48B-200D-1F469-1F3FD",
+ image: "1f469-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fd.png",
+ sheet_x: 21,
+ sheet_y: 31,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF-1F3FE": {
+ unified: "1F469-1F3FF-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FE",
+ non_qualified: "1F469-1F3FF-200D-2764-200D-1F48B-200D-1F469-1F3FE",
+ image: "1f469-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fe.png",
+ sheet_x: 21,
+ sheet_y: 32,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF-1F3FF": {
+ unified: "1F469-1F3FF-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FF",
+ non_qualified: "1F469-1F3FF-200D-2764-200D-1F48B-200D-1F469-1F3FF",
+ image: "1f469-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3ff.png",
+ sheet_x: 21,
+ sheet_y: 33,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ couple_with_heart: {
+ char: "💑",
+ key: "couple_with_heart",
+ keywords: ["couple_with_heart", "COUPLE WITH HEART"],
+ category: "people",
+ lib: {
+ name: "COUPLE WITH HEART",
+ unified: "1F491",
+ non_qualified: null,
+ docomo: "E6ED",
+ au: "EADA",
+ softbank: "E425",
+ google: "FE829",
+ image: "1f491.png",
+ sheet_x: 27,
+ sheet_y: 8,
+ short_name: "couple_with_heart",
+ short_names: ["couple_with_heart"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "family",
+ sort_order: 495,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB": {
+ unified: "1F491-1F3FB",
+ non_qualified: null,
+ image: "1f491-1f3fb.png",
+ sheet_x: 27,
+ sheet_y: 9,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC": {
+ unified: "1F491-1F3FC",
+ non_qualified: null,
+ image: "1f491-1f3fc.png",
+ sheet_x: 27,
+ sheet_y: 10,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD": {
+ unified: "1F491-1F3FD",
+ non_qualified: null,
+ image: "1f491-1f3fd.png",
+ sheet_x: 27,
+ sheet_y: 11,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE": {
+ unified: "1F491-1F3FE",
+ non_qualified: null,
+ image: "1f491-1f3fe.png",
+ sheet_x: 27,
+ sheet_y: 12,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF": {
+ unified: "1F491-1F3FF",
+ non_qualified: null,
+ image: "1f491-1f3ff.png",
+ sheet_x: 27,
+ sheet_y: 13,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FB-1F3FC": {
+ unified: "1F9D1-1F3FB-200D-2764-FE0F-200D-1F9D1-1F3FC",
+ non_qualified: "1F9D1-1F3FB-200D-2764-200D-1F9D1-1F3FC",
+ image: "1f9d1-1f3fb-200d-2764-fe0f-200d-1f9d1-1f3fc.png",
+ sheet_x: 27,
+ sheet_y: 14,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FB-1F3FD": {
+ unified: "1F9D1-1F3FB-200D-2764-FE0F-200D-1F9D1-1F3FD",
+ non_qualified: "1F9D1-1F3FB-200D-2764-200D-1F9D1-1F3FD",
+ image: "1f9d1-1f3fb-200d-2764-fe0f-200d-1f9d1-1f3fd.png",
+ sheet_x: 27,
+ sheet_y: 15,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FB-1F3FE": {
+ unified: "1F9D1-1F3FB-200D-2764-FE0F-200D-1F9D1-1F3FE",
+ non_qualified: "1F9D1-1F3FB-200D-2764-200D-1F9D1-1F3FE",
+ image: "1f9d1-1f3fb-200d-2764-fe0f-200d-1f9d1-1f3fe.png",
+ sheet_x: 27,
+ sheet_y: 16,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FB-1F3FF": {
+ unified: "1F9D1-1F3FB-200D-2764-FE0F-200D-1F9D1-1F3FF",
+ non_qualified: "1F9D1-1F3FB-200D-2764-200D-1F9D1-1F3FF",
+ image: "1f9d1-1f3fb-200d-2764-fe0f-200d-1f9d1-1f3ff.png",
+ sheet_x: 27,
+ sheet_y: 17,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC-1F3FB": {
+ unified: "1F9D1-1F3FC-200D-2764-FE0F-200D-1F9D1-1F3FB",
+ non_qualified: "1F9D1-1F3FC-200D-2764-200D-1F9D1-1F3FB",
+ image: "1f9d1-1f3fc-200d-2764-fe0f-200d-1f9d1-1f3fb.png",
+ sheet_x: 27,
+ sheet_y: 18,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC-1F3FD": {
+ unified: "1F9D1-1F3FC-200D-2764-FE0F-200D-1F9D1-1F3FD",
+ non_qualified: "1F9D1-1F3FC-200D-2764-200D-1F9D1-1F3FD",
+ image: "1f9d1-1f3fc-200d-2764-fe0f-200d-1f9d1-1f3fd.png",
+ sheet_x: 27,
+ sheet_y: 19,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC-1F3FE": {
+ unified: "1F9D1-1F3FC-200D-2764-FE0F-200D-1F9D1-1F3FE",
+ non_qualified: "1F9D1-1F3FC-200D-2764-200D-1F9D1-1F3FE",
+ image: "1f9d1-1f3fc-200d-2764-fe0f-200d-1f9d1-1f3fe.png",
+ sheet_x: 27,
+ sheet_y: 20,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC-1F3FF": {
+ unified: "1F9D1-1F3FC-200D-2764-FE0F-200D-1F9D1-1F3FF",
+ non_qualified: "1F9D1-1F3FC-200D-2764-200D-1F9D1-1F3FF",
+ image: "1f9d1-1f3fc-200d-2764-fe0f-200d-1f9d1-1f3ff.png",
+ sheet_x: 27,
+ sheet_y: 21,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD-1F3FB": {
+ unified: "1F9D1-1F3FD-200D-2764-FE0F-200D-1F9D1-1F3FB",
+ non_qualified: "1F9D1-1F3FD-200D-2764-200D-1F9D1-1F3FB",
+ image: "1f9d1-1f3fd-200d-2764-fe0f-200d-1f9d1-1f3fb.png",
+ sheet_x: 27,
+ sheet_y: 22,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD-1F3FC": {
+ unified: "1F9D1-1F3FD-200D-2764-FE0F-200D-1F9D1-1F3FC",
+ non_qualified: "1F9D1-1F3FD-200D-2764-200D-1F9D1-1F3FC",
+ image: "1f9d1-1f3fd-200d-2764-fe0f-200d-1f9d1-1f3fc.png",
+ sheet_x: 27,
+ sheet_y: 23,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD-1F3FE": {
+ unified: "1F9D1-1F3FD-200D-2764-FE0F-200D-1F9D1-1F3FE",
+ non_qualified: "1F9D1-1F3FD-200D-2764-200D-1F9D1-1F3FE",
+ image: "1f9d1-1f3fd-200d-2764-fe0f-200d-1f9d1-1f3fe.png",
+ sheet_x: 27,
+ sheet_y: 24,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD-1F3FF": {
+ unified: "1F9D1-1F3FD-200D-2764-FE0F-200D-1F9D1-1F3FF",
+ non_qualified: "1F9D1-1F3FD-200D-2764-200D-1F9D1-1F3FF",
+ image: "1f9d1-1f3fd-200d-2764-fe0f-200d-1f9d1-1f3ff.png",
+ sheet_x: 27,
+ sheet_y: 25,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE-1F3FB": {
+ unified: "1F9D1-1F3FE-200D-2764-FE0F-200D-1F9D1-1F3FB",
+ non_qualified: "1F9D1-1F3FE-200D-2764-200D-1F9D1-1F3FB",
+ image: "1f9d1-1f3fe-200d-2764-fe0f-200d-1f9d1-1f3fb.png",
+ sheet_x: 27,
+ sheet_y: 26,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE-1F3FC": {
+ unified: "1F9D1-1F3FE-200D-2764-FE0F-200D-1F9D1-1F3FC",
+ non_qualified: "1F9D1-1F3FE-200D-2764-200D-1F9D1-1F3FC",
+ image: "1f9d1-1f3fe-200d-2764-fe0f-200d-1f9d1-1f3fc.png",
+ sheet_x: 27,
+ sheet_y: 27,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE-1F3FD": {
+ unified: "1F9D1-1F3FE-200D-2764-FE0F-200D-1F9D1-1F3FD",
+ non_qualified: "1F9D1-1F3FE-200D-2764-200D-1F9D1-1F3FD",
+ image: "1f9d1-1f3fe-200d-2764-fe0f-200d-1f9d1-1f3fd.png",
+ sheet_x: 27,
+ sheet_y: 28,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE-1F3FF": {
+ unified: "1F9D1-1F3FE-200D-2764-FE0F-200D-1F9D1-1F3FF",
+ non_qualified: "1F9D1-1F3FE-200D-2764-200D-1F9D1-1F3FF",
+ image: "1f9d1-1f3fe-200d-2764-fe0f-200d-1f9d1-1f3ff.png",
+ sheet_x: 27,
+ sheet_y: 29,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF-1F3FB": {
+ unified: "1F9D1-1F3FF-200D-2764-FE0F-200D-1F9D1-1F3FB",
+ non_qualified: "1F9D1-1F3FF-200D-2764-200D-1F9D1-1F3FB",
+ image: "1f9d1-1f3ff-200d-2764-fe0f-200d-1f9d1-1f3fb.png",
+ sheet_x: 27,
+ sheet_y: 30,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF-1F3FC": {
+ unified: "1F9D1-1F3FF-200D-2764-FE0F-200D-1F9D1-1F3FC",
+ non_qualified: "1F9D1-1F3FF-200D-2764-200D-1F9D1-1F3FC",
+ image: "1f9d1-1f3ff-200d-2764-fe0f-200d-1f9d1-1f3fc.png",
+ sheet_x: 27,
+ sheet_y: 31,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF-1F3FD": {
+ unified: "1F9D1-1F3FF-200D-2764-FE0F-200D-1F9D1-1F3FD",
+ non_qualified: "1F9D1-1F3FF-200D-2764-200D-1F9D1-1F3FD",
+ image: "1f9d1-1f3ff-200d-2764-fe0f-200d-1f9d1-1f3fd.png",
+ sheet_x: 27,
+ sheet_y: 32,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF-1F3FE": {
+ unified: "1F9D1-1F3FF-200D-2764-FE0F-200D-1F9D1-1F3FE",
+ non_qualified: "1F9D1-1F3FF-200D-2764-200D-1F9D1-1F3FE",
+ image: "1f9d1-1f3ff-200d-2764-fe0f-200d-1f9d1-1f3fe.png",
+ sheet_x: 27,
+ sheet_y: 33,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ "woman-heart-man": {
+ char: "👩❤️👨",
+ key: "woman-heart-man",
+ keywords: ["woman-heart-man", "COUPLE WITH HEART: WOMAN, MAN"],
+ category: "people",
+ lib: {
+ name: "COUPLE WITH HEART: WOMAN, MAN",
+ unified: "1F469-200D-2764-FE0F-200D-1F468",
+ non_qualified: "1F469-200D-2764-200D-1F468",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f469-200d-2764-fe0f-200d-1f468.png",
+ sheet_x: 19,
+ sheet_y: 52,
+ short_name: "woman-heart-man",
+ short_names: ["woman-heart-man"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "family",
+ sort_order: 496,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB-1F3FB": {
+ unified: "1F469-1F3FB-200D-2764-FE0F-200D-1F468-1F3FB",
+ non_qualified: "1F469-1F3FB-200D-2764-200D-1F468-1F3FB",
+ image: "1f469-1f3fb-200d-2764-fe0f-200d-1f468-1f3fb.png",
+ sheet_x: 19,
+ sheet_y: 53,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FB-1F3FC": {
+ unified: "1F469-1F3FB-200D-2764-FE0F-200D-1F468-1F3FC",
+ non_qualified: "1F469-1F3FB-200D-2764-200D-1F468-1F3FC",
+ image: "1f469-1f3fb-200d-2764-fe0f-200d-1f468-1f3fc.png",
+ sheet_x: 19,
+ sheet_y: 54,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FB-1F3FD": {
+ unified: "1F469-1F3FB-200D-2764-FE0F-200D-1F468-1F3FD",
+ non_qualified: "1F469-1F3FB-200D-2764-200D-1F468-1F3FD",
+ image: "1f469-1f3fb-200d-2764-fe0f-200d-1f468-1f3fd.png",
+ sheet_x: 19,
+ sheet_y: 55,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FB-1F3FE": {
+ unified: "1F469-1F3FB-200D-2764-FE0F-200D-1F468-1F3FE",
+ non_qualified: "1F469-1F3FB-200D-2764-200D-1F468-1F3FE",
+ image: "1f469-1f3fb-200d-2764-fe0f-200d-1f468-1f3fe.png",
+ sheet_x: 19,
+ sheet_y: 56,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FB-1F3FF": {
+ unified: "1F469-1F3FB-200D-2764-FE0F-200D-1F468-1F3FF",
+ non_qualified: "1F469-1F3FB-200D-2764-200D-1F468-1F3FF",
+ image: "1f469-1f3fb-200d-2764-fe0f-200d-1f468-1f3ff.png",
+ sheet_x: 19,
+ sheet_y: 57,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC-1F3FB": {
+ unified: "1F469-1F3FC-200D-2764-FE0F-200D-1F468-1F3FB",
+ non_qualified: "1F469-1F3FC-200D-2764-200D-1F468-1F3FB",
+ image: "1f469-1f3fc-200d-2764-fe0f-200d-1f468-1f3fb.png",
+ sheet_x: 19,
+ sheet_y: 58,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC-1F3FC": {
+ unified: "1F469-1F3FC-200D-2764-FE0F-200D-1F468-1F3FC",
+ non_qualified: "1F469-1F3FC-200D-2764-200D-1F468-1F3FC",
+ image: "1f469-1f3fc-200d-2764-fe0f-200d-1f468-1f3fc.png",
+ sheet_x: 19,
+ sheet_y: 59,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC-1F3FD": {
+ unified: "1F469-1F3FC-200D-2764-FE0F-200D-1F468-1F3FD",
+ non_qualified: "1F469-1F3FC-200D-2764-200D-1F468-1F3FD",
+ image: "1f469-1f3fc-200d-2764-fe0f-200d-1f468-1f3fd.png",
+ sheet_x: 19,
+ sheet_y: 60,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC-1F3FE": {
+ unified: "1F469-1F3FC-200D-2764-FE0F-200D-1F468-1F3FE",
+ non_qualified: "1F469-1F3FC-200D-2764-200D-1F468-1F3FE",
+ image: "1f469-1f3fc-200d-2764-fe0f-200d-1f468-1f3fe.png",
+ sheet_x: 20,
+ sheet_y: 0,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC-1F3FF": {
+ unified: "1F469-1F3FC-200D-2764-FE0F-200D-1F468-1F3FF",
+ non_qualified: "1F469-1F3FC-200D-2764-200D-1F468-1F3FF",
+ image: "1f469-1f3fc-200d-2764-fe0f-200d-1f468-1f3ff.png",
+ sheet_x: 20,
+ sheet_y: 1,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD-1F3FB": {
+ unified: "1F469-1F3FD-200D-2764-FE0F-200D-1F468-1F3FB",
+ non_qualified: "1F469-1F3FD-200D-2764-200D-1F468-1F3FB",
+ image: "1f469-1f3fd-200d-2764-fe0f-200d-1f468-1f3fb.png",
+ sheet_x: 20,
+ sheet_y: 2,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD-1F3FC": {
+ unified: "1F469-1F3FD-200D-2764-FE0F-200D-1F468-1F3FC",
+ non_qualified: "1F469-1F3FD-200D-2764-200D-1F468-1F3FC",
+ image: "1f469-1f3fd-200d-2764-fe0f-200d-1f468-1f3fc.png",
+ sheet_x: 20,
+ sheet_y: 3,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD-1F3FD": {
+ unified: "1F469-1F3FD-200D-2764-FE0F-200D-1F468-1F3FD",
+ non_qualified: "1F469-1F3FD-200D-2764-200D-1F468-1F3FD",
+ image: "1f469-1f3fd-200d-2764-fe0f-200d-1f468-1f3fd.png",
+ sheet_x: 20,
+ sheet_y: 4,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD-1F3FE": {
+ unified: "1F469-1F3FD-200D-2764-FE0F-200D-1F468-1F3FE",
+ non_qualified: "1F469-1F3FD-200D-2764-200D-1F468-1F3FE",
+ image: "1f469-1f3fd-200d-2764-fe0f-200d-1f468-1f3fe.png",
+ sheet_x: 20,
+ sheet_y: 5,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD-1F3FF": {
+ unified: "1F469-1F3FD-200D-2764-FE0F-200D-1F468-1F3FF",
+ non_qualified: "1F469-1F3FD-200D-2764-200D-1F468-1F3FF",
+ image: "1f469-1f3fd-200d-2764-fe0f-200d-1f468-1f3ff.png",
+ sheet_x: 20,
+ sheet_y: 6,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE-1F3FB": {
+ unified: "1F469-1F3FE-200D-2764-FE0F-200D-1F468-1F3FB",
+ non_qualified: "1F469-1F3FE-200D-2764-200D-1F468-1F3FB",
+ image: "1f469-1f3fe-200d-2764-fe0f-200d-1f468-1f3fb.png",
+ sheet_x: 20,
+ sheet_y: 7,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE-1F3FC": {
+ unified: "1F469-1F3FE-200D-2764-FE0F-200D-1F468-1F3FC",
+ non_qualified: "1F469-1F3FE-200D-2764-200D-1F468-1F3FC",
+ image: "1f469-1f3fe-200d-2764-fe0f-200d-1f468-1f3fc.png",
+ sheet_x: 20,
+ sheet_y: 8,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE-1F3FD": {
+ unified: "1F469-1F3FE-200D-2764-FE0F-200D-1F468-1F3FD",
+ non_qualified: "1F469-1F3FE-200D-2764-200D-1F468-1F3FD",
+ image: "1f469-1f3fe-200d-2764-fe0f-200d-1f468-1f3fd.png",
+ sheet_x: 20,
+ sheet_y: 9,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE-1F3FE": {
+ unified: "1F469-1F3FE-200D-2764-FE0F-200D-1F468-1F3FE",
+ non_qualified: "1F469-1F3FE-200D-2764-200D-1F468-1F3FE",
+ image: "1f469-1f3fe-200d-2764-fe0f-200d-1f468-1f3fe.png",
+ sheet_x: 20,
+ sheet_y: 10,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE-1F3FF": {
+ unified: "1F469-1F3FE-200D-2764-FE0F-200D-1F468-1F3FF",
+ non_qualified: "1F469-1F3FE-200D-2764-200D-1F468-1F3FF",
+ image: "1f469-1f3fe-200d-2764-fe0f-200d-1f468-1f3ff.png",
+ sheet_x: 20,
+ sheet_y: 11,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF-1F3FB": {
+ unified: "1F469-1F3FF-200D-2764-FE0F-200D-1F468-1F3FB",
+ non_qualified: "1F469-1F3FF-200D-2764-200D-1F468-1F3FB",
+ image: "1f469-1f3ff-200d-2764-fe0f-200d-1f468-1f3fb.png",
+ sheet_x: 20,
+ sheet_y: 12,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF-1F3FC": {
+ unified: "1F469-1F3FF-200D-2764-FE0F-200D-1F468-1F3FC",
+ non_qualified: "1F469-1F3FF-200D-2764-200D-1F468-1F3FC",
+ image: "1f469-1f3ff-200d-2764-fe0f-200d-1f468-1f3fc.png",
+ sheet_x: 20,
+ sheet_y: 13,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF-1F3FD": {
+ unified: "1F469-1F3FF-200D-2764-FE0F-200D-1F468-1F3FD",
+ non_qualified: "1F469-1F3FF-200D-2764-200D-1F468-1F3FD",
+ image: "1f469-1f3ff-200d-2764-fe0f-200d-1f468-1f3fd.png",
+ sheet_x: 20,
+ sheet_y: 14,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF-1F3FE": {
+ unified: "1F469-1F3FF-200D-2764-FE0F-200D-1F468-1F3FE",
+ non_qualified: "1F469-1F3FF-200D-2764-200D-1F468-1F3FE",
+ image: "1f469-1f3ff-200d-2764-fe0f-200d-1f468-1f3fe.png",
+ sheet_x: 20,
+ sheet_y: 15,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF-1F3FF": {
+ unified: "1F469-1F3FF-200D-2764-FE0F-200D-1F468-1F3FF",
+ non_qualified: "1F469-1F3FF-200D-2764-200D-1F468-1F3FF",
+ image: "1f469-1f3ff-200d-2764-fe0f-200d-1f468-1f3ff.png",
+ sheet_x: 20,
+ sheet_y: 16,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ "man-heart-man": {
+ char: "👨❤️👨",
+ key: "man-heart-man",
+ keywords: ["man-heart-man", "COUPLE WITH HEART: MAN, MAN"],
+ category: "people",
+ lib: {
+ name: "COUPLE WITH HEART: MAN, MAN",
+ unified: "1F468-200D-2764-FE0F-200D-1F468",
+ non_qualified: "1F468-200D-2764-200D-1F468",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f468-200d-2764-fe0f-200d-1f468.png",
+ sheet_x: 16,
+ sheet_y: 23,
+ short_name: "man-heart-man",
+ short_names: ["man-heart-man"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "family",
+ sort_order: 497,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB-1F3FB": {
+ unified: "1F468-1F3FB-200D-2764-FE0F-200D-1F468-1F3FB",
+ non_qualified: "1F468-1F3FB-200D-2764-200D-1F468-1F3FB",
+ image: "1f468-1f3fb-200d-2764-fe0f-200d-1f468-1f3fb.png",
+ sheet_x: 16,
+ sheet_y: 24,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FB-1F3FC": {
+ unified: "1F468-1F3FB-200D-2764-FE0F-200D-1F468-1F3FC",
+ non_qualified: "1F468-1F3FB-200D-2764-200D-1F468-1F3FC",
+ image: "1f468-1f3fb-200d-2764-fe0f-200d-1f468-1f3fc.png",
+ sheet_x: 16,
+ sheet_y: 25,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FB-1F3FD": {
+ unified: "1F468-1F3FB-200D-2764-FE0F-200D-1F468-1F3FD",
+ non_qualified: "1F468-1F3FB-200D-2764-200D-1F468-1F3FD",
+ image: "1f468-1f3fb-200d-2764-fe0f-200d-1f468-1f3fd.png",
+ sheet_x: 16,
+ sheet_y: 26,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FB-1F3FE": {
+ unified: "1F468-1F3FB-200D-2764-FE0F-200D-1F468-1F3FE",
+ non_qualified: "1F468-1F3FB-200D-2764-200D-1F468-1F3FE",
+ image: "1f468-1f3fb-200d-2764-fe0f-200d-1f468-1f3fe.png",
+ sheet_x: 16,
+ sheet_y: 27,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FB-1F3FF": {
+ unified: "1F468-1F3FB-200D-2764-FE0F-200D-1F468-1F3FF",
+ non_qualified: "1F468-1F3FB-200D-2764-200D-1F468-1F3FF",
+ image: "1f468-1f3fb-200d-2764-fe0f-200d-1f468-1f3ff.png",
+ sheet_x: 16,
+ sheet_y: 28,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC-1F3FB": {
+ unified: "1F468-1F3FC-200D-2764-FE0F-200D-1F468-1F3FB",
+ non_qualified: "1F468-1F3FC-200D-2764-200D-1F468-1F3FB",
+ image: "1f468-1f3fc-200d-2764-fe0f-200d-1f468-1f3fb.png",
+ sheet_x: 16,
+ sheet_y: 29,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC-1F3FC": {
+ unified: "1F468-1F3FC-200D-2764-FE0F-200D-1F468-1F3FC",
+ non_qualified: "1F468-1F3FC-200D-2764-200D-1F468-1F3FC",
+ image: "1f468-1f3fc-200d-2764-fe0f-200d-1f468-1f3fc.png",
+ sheet_x: 16,
+ sheet_y: 30,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC-1F3FD": {
+ unified: "1F468-1F3FC-200D-2764-FE0F-200D-1F468-1F3FD",
+ non_qualified: "1F468-1F3FC-200D-2764-200D-1F468-1F3FD",
+ image: "1f468-1f3fc-200d-2764-fe0f-200d-1f468-1f3fd.png",
+ sheet_x: 16,
+ sheet_y: 31,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC-1F3FE": {
+ unified: "1F468-1F3FC-200D-2764-FE0F-200D-1F468-1F3FE",
+ non_qualified: "1F468-1F3FC-200D-2764-200D-1F468-1F3FE",
+ image: "1f468-1f3fc-200d-2764-fe0f-200d-1f468-1f3fe.png",
+ sheet_x: 16,
+ sheet_y: 32,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC-1F3FF": {
+ unified: "1F468-1F3FC-200D-2764-FE0F-200D-1F468-1F3FF",
+ non_qualified: "1F468-1F3FC-200D-2764-200D-1F468-1F3FF",
+ image: "1f468-1f3fc-200d-2764-fe0f-200d-1f468-1f3ff.png",
+ sheet_x: 16,
+ sheet_y: 33,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD-1F3FB": {
+ unified: "1F468-1F3FD-200D-2764-FE0F-200D-1F468-1F3FB",
+ non_qualified: "1F468-1F3FD-200D-2764-200D-1F468-1F3FB",
+ image: "1f468-1f3fd-200d-2764-fe0f-200d-1f468-1f3fb.png",
+ sheet_x: 16,
+ sheet_y: 34,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD-1F3FC": {
+ unified: "1F468-1F3FD-200D-2764-FE0F-200D-1F468-1F3FC",
+ non_qualified: "1F468-1F3FD-200D-2764-200D-1F468-1F3FC",
+ image: "1f468-1f3fd-200d-2764-fe0f-200d-1f468-1f3fc.png",
+ sheet_x: 16,
+ sheet_y: 35,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD-1F3FD": {
+ unified: "1F468-1F3FD-200D-2764-FE0F-200D-1F468-1F3FD",
+ non_qualified: "1F468-1F3FD-200D-2764-200D-1F468-1F3FD",
+ image: "1f468-1f3fd-200d-2764-fe0f-200d-1f468-1f3fd.png",
+ sheet_x: 16,
+ sheet_y: 36,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD-1F3FE": {
+ unified: "1F468-1F3FD-200D-2764-FE0F-200D-1F468-1F3FE",
+ non_qualified: "1F468-1F3FD-200D-2764-200D-1F468-1F3FE",
+ image: "1f468-1f3fd-200d-2764-fe0f-200d-1f468-1f3fe.png",
+ sheet_x: 16,
+ sheet_y: 37,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD-1F3FF": {
+ unified: "1F468-1F3FD-200D-2764-FE0F-200D-1F468-1F3FF",
+ non_qualified: "1F468-1F3FD-200D-2764-200D-1F468-1F3FF",
+ image: "1f468-1f3fd-200d-2764-fe0f-200d-1f468-1f3ff.png",
+ sheet_x: 16,
+ sheet_y: 38,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE-1F3FB": {
+ unified: "1F468-1F3FE-200D-2764-FE0F-200D-1F468-1F3FB",
+ non_qualified: "1F468-1F3FE-200D-2764-200D-1F468-1F3FB",
+ image: "1f468-1f3fe-200d-2764-fe0f-200d-1f468-1f3fb.png",
+ sheet_x: 16,
+ sheet_y: 39,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE-1F3FC": {
+ unified: "1F468-1F3FE-200D-2764-FE0F-200D-1F468-1F3FC",
+ non_qualified: "1F468-1F3FE-200D-2764-200D-1F468-1F3FC",
+ image: "1f468-1f3fe-200d-2764-fe0f-200d-1f468-1f3fc.png",
+ sheet_x: 16,
+ sheet_y: 40,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE-1F3FD": {
+ unified: "1F468-1F3FE-200D-2764-FE0F-200D-1F468-1F3FD",
+ non_qualified: "1F468-1F3FE-200D-2764-200D-1F468-1F3FD",
+ image: "1f468-1f3fe-200d-2764-fe0f-200d-1f468-1f3fd.png",
+ sheet_x: 16,
+ sheet_y: 41,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE-1F3FE": {
+ unified: "1F468-1F3FE-200D-2764-FE0F-200D-1F468-1F3FE",
+ non_qualified: "1F468-1F3FE-200D-2764-200D-1F468-1F3FE",
+ image: "1f468-1f3fe-200d-2764-fe0f-200d-1f468-1f3fe.png",
+ sheet_x: 16,
+ sheet_y: 42,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE-1F3FF": {
+ unified: "1F468-1F3FE-200D-2764-FE0F-200D-1F468-1F3FF",
+ non_qualified: "1F468-1F3FE-200D-2764-200D-1F468-1F3FF",
+ image: "1f468-1f3fe-200d-2764-fe0f-200d-1f468-1f3ff.png",
+ sheet_x: 16,
+ sheet_y: 43,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF-1F3FB": {
+ unified: "1F468-1F3FF-200D-2764-FE0F-200D-1F468-1F3FB",
+ non_qualified: "1F468-1F3FF-200D-2764-200D-1F468-1F3FB",
+ image: "1f468-1f3ff-200d-2764-fe0f-200d-1f468-1f3fb.png",
+ sheet_x: 16,
+ sheet_y: 44,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF-1F3FC": {
+ unified: "1F468-1F3FF-200D-2764-FE0F-200D-1F468-1F3FC",
+ non_qualified: "1F468-1F3FF-200D-2764-200D-1F468-1F3FC",
+ image: "1f468-1f3ff-200d-2764-fe0f-200d-1f468-1f3fc.png",
+ sheet_x: 16,
+ sheet_y: 45,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF-1F3FD": {
+ unified: "1F468-1F3FF-200D-2764-FE0F-200D-1F468-1F3FD",
+ non_qualified: "1F468-1F3FF-200D-2764-200D-1F468-1F3FD",
+ image: "1f468-1f3ff-200d-2764-fe0f-200d-1f468-1f3fd.png",
+ sheet_x: 16,
+ sheet_y: 46,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF-1F3FE": {
+ unified: "1F468-1F3FF-200D-2764-FE0F-200D-1F468-1F3FE",
+ non_qualified: "1F468-1F3FF-200D-2764-200D-1F468-1F3FE",
+ image: "1f468-1f3ff-200d-2764-fe0f-200d-1f468-1f3fe.png",
+ sheet_x: 16,
+ sheet_y: 47,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF-1F3FF": {
+ unified: "1F468-1F3FF-200D-2764-FE0F-200D-1F468-1F3FF",
+ non_qualified: "1F468-1F3FF-200D-2764-200D-1F468-1F3FF",
+ image: "1f468-1f3ff-200d-2764-fe0f-200d-1f468-1f3ff.png",
+ sheet_x: 16,
+ sheet_y: 48,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ "woman-heart-woman": {
+ char: "👩❤️👩",
+ key: "woman-heart-woman",
+ keywords: ["woman-heart-woman", "COUPLE WITH HEART: WOMAN, WOMAN"],
+ category: "people",
+ lib: {
+ name: "COUPLE WITH HEART: WOMAN, WOMAN",
+ unified: "1F469-200D-2764-FE0F-200D-1F469",
+ non_qualified: "1F469-200D-2764-200D-1F469",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f469-200d-2764-fe0f-200d-1f469.png",
+ sheet_x: 20,
+ sheet_y: 17,
+ short_name: "woman-heart-woman",
+ short_names: ["woman-heart-woman"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "family",
+ sort_order: 498,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ skin_variations: {
+ "1F3FB-1F3FB": {
+ unified: "1F469-1F3FB-200D-2764-FE0F-200D-1F469-1F3FB",
+ non_qualified: "1F469-1F3FB-200D-2764-200D-1F469-1F3FB",
+ image: "1f469-1f3fb-200d-2764-fe0f-200d-1f469-1f3fb.png",
+ sheet_x: 20,
+ sheet_y: 18,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FB-1F3FC": {
+ unified: "1F469-1F3FB-200D-2764-FE0F-200D-1F469-1F3FC",
+ non_qualified: "1F469-1F3FB-200D-2764-200D-1F469-1F3FC",
+ image: "1f469-1f3fb-200d-2764-fe0f-200d-1f469-1f3fc.png",
+ sheet_x: 20,
+ sheet_y: 19,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FB-1F3FD": {
+ unified: "1F469-1F3FB-200D-2764-FE0F-200D-1F469-1F3FD",
+ non_qualified: "1F469-1F3FB-200D-2764-200D-1F469-1F3FD",
+ image: "1f469-1f3fb-200d-2764-fe0f-200d-1f469-1f3fd.png",
+ sheet_x: 20,
+ sheet_y: 20,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FB-1F3FE": {
+ unified: "1F469-1F3FB-200D-2764-FE0F-200D-1F469-1F3FE",
+ non_qualified: "1F469-1F3FB-200D-2764-200D-1F469-1F3FE",
+ image: "1f469-1f3fb-200d-2764-fe0f-200d-1f469-1f3fe.png",
+ sheet_x: 20,
+ sheet_y: 21,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FB-1F3FF": {
+ unified: "1F469-1F3FB-200D-2764-FE0F-200D-1F469-1F3FF",
+ non_qualified: "1F469-1F3FB-200D-2764-200D-1F469-1F3FF",
+ image: "1f469-1f3fb-200d-2764-fe0f-200d-1f469-1f3ff.png",
+ sheet_x: 20,
+ sheet_y: 22,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC-1F3FB": {
+ unified: "1F469-1F3FC-200D-2764-FE0F-200D-1F469-1F3FB",
+ non_qualified: "1F469-1F3FC-200D-2764-200D-1F469-1F3FB",
+ image: "1f469-1f3fc-200d-2764-fe0f-200d-1f469-1f3fb.png",
+ sheet_x: 20,
+ sheet_y: 23,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC-1F3FC": {
+ unified: "1F469-1F3FC-200D-2764-FE0F-200D-1F469-1F3FC",
+ non_qualified: "1F469-1F3FC-200D-2764-200D-1F469-1F3FC",
+ image: "1f469-1f3fc-200d-2764-fe0f-200d-1f469-1f3fc.png",
+ sheet_x: 20,
+ sheet_y: 24,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC-1F3FD": {
+ unified: "1F469-1F3FC-200D-2764-FE0F-200D-1F469-1F3FD",
+ non_qualified: "1F469-1F3FC-200D-2764-200D-1F469-1F3FD",
+ image: "1f469-1f3fc-200d-2764-fe0f-200d-1f469-1f3fd.png",
+ sheet_x: 20,
+ sheet_y: 25,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC-1F3FE": {
+ unified: "1F469-1F3FC-200D-2764-FE0F-200D-1F469-1F3FE",
+ non_qualified: "1F469-1F3FC-200D-2764-200D-1F469-1F3FE",
+ image: "1f469-1f3fc-200d-2764-fe0f-200d-1f469-1f3fe.png",
+ sheet_x: 20,
+ sheet_y: 26,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FC-1F3FF": {
+ unified: "1F469-1F3FC-200D-2764-FE0F-200D-1F469-1F3FF",
+ non_qualified: "1F469-1F3FC-200D-2764-200D-1F469-1F3FF",
+ image: "1f469-1f3fc-200d-2764-fe0f-200d-1f469-1f3ff.png",
+ sheet_x: 20,
+ sheet_y: 27,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD-1F3FB": {
+ unified: "1F469-1F3FD-200D-2764-FE0F-200D-1F469-1F3FB",
+ non_qualified: "1F469-1F3FD-200D-2764-200D-1F469-1F3FB",
+ image: "1f469-1f3fd-200d-2764-fe0f-200d-1f469-1f3fb.png",
+ sheet_x: 20,
+ sheet_y: 28,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD-1F3FC": {
+ unified: "1F469-1F3FD-200D-2764-FE0F-200D-1F469-1F3FC",
+ non_qualified: "1F469-1F3FD-200D-2764-200D-1F469-1F3FC",
+ image: "1f469-1f3fd-200d-2764-fe0f-200d-1f469-1f3fc.png",
+ sheet_x: 20,
+ sheet_y: 29,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD-1F3FD": {
+ unified: "1F469-1F3FD-200D-2764-FE0F-200D-1F469-1F3FD",
+ non_qualified: "1F469-1F3FD-200D-2764-200D-1F469-1F3FD",
+ image: "1f469-1f3fd-200d-2764-fe0f-200d-1f469-1f3fd.png",
+ sheet_x: 20,
+ sheet_y: 30,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD-1F3FE": {
+ unified: "1F469-1F3FD-200D-2764-FE0F-200D-1F469-1F3FE",
+ non_qualified: "1F469-1F3FD-200D-2764-200D-1F469-1F3FE",
+ image: "1f469-1f3fd-200d-2764-fe0f-200d-1f469-1f3fe.png",
+ sheet_x: 20,
+ sheet_y: 31,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FD-1F3FF": {
+ unified: "1F469-1F3FD-200D-2764-FE0F-200D-1F469-1F3FF",
+ non_qualified: "1F469-1F3FD-200D-2764-200D-1F469-1F3FF",
+ image: "1f469-1f3fd-200d-2764-fe0f-200d-1f469-1f3ff.png",
+ sheet_x: 20,
+ sheet_y: 32,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE-1F3FB": {
+ unified: "1F469-1F3FE-200D-2764-FE0F-200D-1F469-1F3FB",
+ non_qualified: "1F469-1F3FE-200D-2764-200D-1F469-1F3FB",
+ image: "1f469-1f3fe-200d-2764-fe0f-200d-1f469-1f3fb.png",
+ sheet_x: 20,
+ sheet_y: 33,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE-1F3FC": {
+ unified: "1F469-1F3FE-200D-2764-FE0F-200D-1F469-1F3FC",
+ non_qualified: "1F469-1F3FE-200D-2764-200D-1F469-1F3FC",
+ image: "1f469-1f3fe-200d-2764-fe0f-200d-1f469-1f3fc.png",
+ sheet_x: 20,
+ sheet_y: 34,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE-1F3FD": {
+ unified: "1F469-1F3FE-200D-2764-FE0F-200D-1F469-1F3FD",
+ non_qualified: "1F469-1F3FE-200D-2764-200D-1F469-1F3FD",
+ image: "1f469-1f3fe-200d-2764-fe0f-200d-1f469-1f3fd.png",
+ sheet_x: 20,
+ sheet_y: 35,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE-1F3FE": {
+ unified: "1F469-1F3FE-200D-2764-FE0F-200D-1F469-1F3FE",
+ non_qualified: "1F469-1F3FE-200D-2764-200D-1F469-1F3FE",
+ image: "1f469-1f3fe-200d-2764-fe0f-200d-1f469-1f3fe.png",
+ sheet_x: 20,
+ sheet_y: 36,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FE-1F3FF": {
+ unified: "1F469-1F3FE-200D-2764-FE0F-200D-1F469-1F3FF",
+ non_qualified: "1F469-1F3FE-200D-2764-200D-1F469-1F3FF",
+ image: "1f469-1f3fe-200d-2764-fe0f-200d-1f469-1f3ff.png",
+ sheet_x: 20,
+ sheet_y: 37,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF-1F3FB": {
+ unified: "1F469-1F3FF-200D-2764-FE0F-200D-1F469-1F3FB",
+ non_qualified: "1F469-1F3FF-200D-2764-200D-1F469-1F3FB",
+ image: "1f469-1f3ff-200d-2764-fe0f-200d-1f469-1f3fb.png",
+ sheet_x: 20,
+ sheet_y: 38,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF-1F3FC": {
+ unified: "1F469-1F3FF-200D-2764-FE0F-200D-1F469-1F3FC",
+ non_qualified: "1F469-1F3FF-200D-2764-200D-1F469-1F3FC",
+ image: "1f469-1f3ff-200d-2764-fe0f-200d-1f469-1f3fc.png",
+ sheet_x: 20,
+ sheet_y: 39,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF-1F3FD": {
+ unified: "1F469-1F3FF-200D-2764-FE0F-200D-1F469-1F3FD",
+ non_qualified: "1F469-1F3FF-200D-2764-200D-1F469-1F3FD",
+ image: "1f469-1f3ff-200d-2764-fe0f-200d-1f469-1f3fd.png",
+ sheet_x: 20,
+ sheet_y: 40,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF-1F3FE": {
+ unified: "1F469-1F3FF-200D-2764-FE0F-200D-1F469-1F3FE",
+ non_qualified: "1F469-1F3FF-200D-2764-200D-1F469-1F3FE",
+ image: "1f469-1f3ff-200d-2764-fe0f-200d-1f469-1f3fe.png",
+ sheet_x: 20,
+ sheet_y: 41,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ "1F3FF-1F3FF": {
+ unified: "1F469-1F3FF-200D-2764-FE0F-200D-1F469-1F3FF",
+ non_qualified: "1F469-1F3FF-200D-2764-200D-1F469-1F3FF",
+ image: "1f469-1f3ff-200d-2764-fe0f-200d-1f469-1f3ff.png",
+ sheet_x: 20,
+ sheet_y: 42,
+ added_in: "13.1",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ },
+ "man-woman-boy": {
+ char: "👨👩👦",
+ key: "man-woman-boy",
+ keywords: ["man-woman-boy", "FAMILY: MAN, WOMAN, BOY"],
+ category: "people",
+ lib: {
+ name: "FAMILY: MAN, WOMAN, BOY",
+ unified: "1F468-200D-1F469-200D-1F466",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f468-200d-1f469-200d-1f466.png",
+ sheet_x: 14,
+ sheet_y: 44,
+ short_name: "man-woman-boy",
+ short_names: ["man-woman-boy"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "family",
+ sort_order: 500,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ obsoletes: "1F46A",
+ },
+ },
+ "man-woman-girl": {
+ char: "👨👩👧",
+ key: "man-woman-girl",
+ keywords: ["man-woman-girl", "FAMILY: MAN, WOMAN, GIRL"],
+ category: "people",
+ lib: {
+ name: "FAMILY: MAN, WOMAN, GIRL",
+ unified: "1F468-200D-1F469-200D-1F467",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f468-200d-1f469-200d-1f467.png",
+ sheet_x: 14,
+ sheet_y: 46,
+ short_name: "man-woman-girl",
+ short_names: ["man-woman-girl"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "family",
+ sort_order: 501,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "man-woman-girl-boy": {
+ char: "👨👩👧👦",
+ key: "man-woman-girl-boy",
+ keywords: ["man-woman-girl-boy", "FAMILY: MAN, WOMAN, GIRL, BOY"],
+ category: "people",
+ lib: {
+ name: "FAMILY: MAN, WOMAN, GIRL, BOY",
+ unified: "1F468-200D-1F469-200D-1F467-200D-1F466",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f468-200d-1f469-200d-1f467-200d-1f466.png",
+ sheet_x: 14,
+ sheet_y: 47,
+ short_name: "man-woman-girl-boy",
+ short_names: ["man-woman-girl-boy"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "family",
+ sort_order: 502,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "man-woman-boy-boy": {
+ char: "👨👩👦👦",
+ key: "man-woman-boy-boy",
+ keywords: ["man-woman-boy-boy", "FAMILY: MAN, WOMAN, BOY, BOY"],
+ category: "people",
+ lib: {
+ name: "FAMILY: MAN, WOMAN, BOY, BOY",
+ unified: "1F468-200D-1F469-200D-1F466-200D-1F466",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f468-200d-1f469-200d-1f466-200d-1f466.png",
+ sheet_x: 14,
+ sheet_y: 45,
+ short_name: "man-woman-boy-boy",
+ short_names: ["man-woman-boy-boy"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "family",
+ sort_order: 503,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "man-woman-girl-girl": {
+ char: "👨👩👧👧",
+ key: "man-woman-girl-girl",
+ keywords: ["man-woman-girl-girl", "FAMILY: MAN, WOMAN, GIRL, GIRL"],
+ category: "people",
+ lib: {
+ name: "FAMILY: MAN, WOMAN, GIRL, GIRL",
+ unified: "1F468-200D-1F469-200D-1F467-200D-1F467",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f468-200d-1f469-200d-1f467-200d-1f467.png",
+ sheet_x: 14,
+ sheet_y: 48,
+ short_name: "man-woman-girl-girl",
+ short_names: ["man-woman-girl-girl"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "family",
+ sort_order: 504,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "man-man-boy": {
+ char: "👨👨👦",
+ key: "man-man-boy",
+ keywords: ["man-man-boy", "FAMILY: MAN, MAN, BOY"],
+ category: "people",
+ lib: {
+ name: "FAMILY: MAN, MAN, BOY",
+ unified: "1F468-200D-1F468-200D-1F466",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f468-200d-1f468-200d-1f466.png",
+ sheet_x: 14,
+ sheet_y: 39,
+ short_name: "man-man-boy",
+ short_names: ["man-man-boy"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "family",
+ sort_order: 505,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "man-man-girl": {
+ char: "👨👨👧",
+ key: "man-man-girl",
+ keywords: ["man-man-girl", "FAMILY: MAN, MAN, GIRL"],
+ category: "people",
+ lib: {
+ name: "FAMILY: MAN, MAN, GIRL",
+ unified: "1F468-200D-1F468-200D-1F467",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f468-200d-1f468-200d-1f467.png",
+ sheet_x: 14,
+ sheet_y: 41,
+ short_name: "man-man-girl",
+ short_names: ["man-man-girl"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "family",
+ sort_order: 506,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "man-man-girl-boy": {
+ char: "👨👨👧👦",
+ key: "man-man-girl-boy",
+ keywords: ["man-man-girl-boy", "FAMILY: MAN, MAN, GIRL, BOY"],
+ category: "people",
+ lib: {
+ name: "FAMILY: MAN, MAN, GIRL, BOY",
+ unified: "1F468-200D-1F468-200D-1F467-200D-1F466",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f468-200d-1f468-200d-1f467-200d-1f466.png",
+ sheet_x: 14,
+ sheet_y: 42,
+ short_name: "man-man-girl-boy",
+ short_names: ["man-man-girl-boy"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "family",
+ sort_order: 507,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "man-man-boy-boy": {
+ char: "👨👨👦👦",
+ key: "man-man-boy-boy",
+ keywords: ["man-man-boy-boy", "FAMILY: MAN, MAN, BOY, BOY"],
+ category: "people",
+ lib: {
+ name: "FAMILY: MAN, MAN, BOY, BOY",
+ unified: "1F468-200D-1F468-200D-1F466-200D-1F466",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f468-200d-1f468-200d-1f466-200d-1f466.png",
+ sheet_x: 14,
+ sheet_y: 40,
+ short_name: "man-man-boy-boy",
+ short_names: ["man-man-boy-boy"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "family",
+ sort_order: 508,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "man-man-girl-girl": {
+ char: "👨👨👧👧",
+ key: "man-man-girl-girl",
+ keywords: ["man-man-girl-girl", "FAMILY: MAN, MAN, GIRL, GIRL"],
+ category: "people",
+ lib: {
+ name: "FAMILY: MAN, MAN, GIRL, GIRL",
+ unified: "1F468-200D-1F468-200D-1F467-200D-1F467",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f468-200d-1f468-200d-1f467-200d-1f467.png",
+ sheet_x: 14,
+ sheet_y: 43,
+ short_name: "man-man-girl-girl",
+ short_names: ["man-man-girl-girl"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "family",
+ sort_order: 509,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "woman-woman-boy": {
+ char: "👩👩👦",
+ key: "woman-woman-boy",
+ keywords: ["woman-woman-boy", "FAMILY: WOMAN, WOMAN, BOY"],
+ category: "people",
+ lib: {
+ name: "FAMILY: WOMAN, WOMAN, BOY",
+ unified: "1F469-200D-1F469-200D-1F466",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f469-200d-1f469-200d-1f466.png",
+ sheet_x: 18,
+ sheet_y: 12,
+ short_name: "woman-woman-boy",
+ short_names: ["woman-woman-boy"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "family",
+ sort_order: 510,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "woman-woman-girl": {
+ char: "👩👩👧",
+ key: "woman-woman-girl",
+ keywords: ["woman-woman-girl", "FAMILY: WOMAN, WOMAN, GIRL"],
+ category: "people",
+ lib: {
+ name: "FAMILY: WOMAN, WOMAN, GIRL",
+ unified: "1F469-200D-1F469-200D-1F467",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f469-200d-1f469-200d-1f467.png",
+ sheet_x: 18,
+ sheet_y: 14,
+ short_name: "woman-woman-girl",
+ short_names: ["woman-woman-girl"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "family",
+ sort_order: 511,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "woman-woman-girl-boy": {
+ char: "👩👩👧👦",
+ key: "woman-woman-girl-boy",
+ keywords: ["woman-woman-girl-boy", "FAMILY: WOMAN, WOMAN, GIRL, BOY"],
+ category: "people",
+ lib: {
+ name: "FAMILY: WOMAN, WOMAN, GIRL, BOY",
+ unified: "1F469-200D-1F469-200D-1F467-200D-1F466",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f469-200d-1f469-200d-1f467-200d-1f466.png",
+ sheet_x: 18,
+ sheet_y: 15,
+ short_name: "woman-woman-girl-boy",
+ short_names: ["woman-woman-girl-boy"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "family",
+ sort_order: 512,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "woman-woman-boy-boy": {
+ char: "👩👩👦👦",
+ key: "woman-woman-boy-boy",
+ keywords: ["woman-woman-boy-boy", "FAMILY: WOMAN, WOMAN, BOY, BOY"],
+ category: "people",
+ lib: {
+ name: "FAMILY: WOMAN, WOMAN, BOY, BOY",
+ unified: "1F469-200D-1F469-200D-1F466-200D-1F466",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f469-200d-1f469-200d-1f466-200d-1f466.png",
+ sheet_x: 18,
+ sheet_y: 13,
+ short_name: "woman-woman-boy-boy",
+ short_names: ["woman-woman-boy-boy"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "family",
+ sort_order: 513,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "woman-woman-girl-girl": {
+ char: "👩👩👧👧",
+ key: "woman-woman-girl-girl",
+ keywords: ["woman-woman-girl-girl", "FAMILY: WOMAN, WOMAN, GIRL, GIRL"],
+ category: "people",
+ lib: {
+ name: "FAMILY: WOMAN, WOMAN, GIRL, GIRL",
+ unified: "1F469-200D-1F469-200D-1F467-200D-1F467",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f469-200d-1f469-200d-1f467-200d-1f467.png",
+ sheet_x: 18,
+ sheet_y: 16,
+ short_name: "woman-woman-girl-girl",
+ short_names: ["woman-woman-girl-girl"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "family",
+ sort_order: 514,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "man-boy": {
+ char: "👨👦",
+ key: "man-boy",
+ keywords: ["man-boy", "FAMILY: MAN, BOY"],
+ category: "people",
+ lib: {
+ name: "FAMILY: MAN, BOY",
+ unified: "1F468-200D-1F466",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f468-200d-1f466.png",
+ sheet_x: 14,
+ sheet_y: 35,
+ short_name: "man-boy",
+ short_names: ["man-boy"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "family",
+ sort_order: 515,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "man-boy-boy": {
+ char: "👨👦👦",
+ key: "man-boy-boy",
+ keywords: ["man-boy-boy", "FAMILY: MAN, BOY, BOY"],
+ category: "people",
+ lib: {
+ name: "FAMILY: MAN, BOY, BOY",
+ unified: "1F468-200D-1F466-200D-1F466",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f468-200d-1f466-200d-1f466.png",
+ sheet_x: 14,
+ sheet_y: 34,
+ short_name: "man-boy-boy",
+ short_names: ["man-boy-boy"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "family",
+ sort_order: 516,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "man-girl": {
+ char: "👨👧",
+ key: "man-girl",
+ keywords: ["man-girl", "FAMILY: MAN, GIRL"],
+ category: "people",
+ lib: {
+ name: "FAMILY: MAN, GIRL",
+ unified: "1F468-200D-1F467",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f468-200d-1f467.png",
+ sheet_x: 14,
+ sheet_y: 38,
+ short_name: "man-girl",
+ short_names: ["man-girl"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "family",
+ sort_order: 517,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "man-girl-boy": {
+ char: "👨👧👦",
+ key: "man-girl-boy",
+ keywords: ["man-girl-boy", "FAMILY: MAN, GIRL, BOY"],
+ category: "people",
+ lib: {
+ name: "FAMILY: MAN, GIRL, BOY",
+ unified: "1F468-200D-1F467-200D-1F466",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f468-200d-1f467-200d-1f466.png",
+ sheet_x: 14,
+ sheet_y: 36,
+ short_name: "man-girl-boy",
+ short_names: ["man-girl-boy"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "family",
+ sort_order: 518,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "man-girl-girl": {
+ char: "👨👧👧",
+ key: "man-girl-girl",
+ keywords: ["man-girl-girl", "FAMILY: MAN, GIRL, GIRL"],
+ category: "people",
+ lib: {
+ name: "FAMILY: MAN, GIRL, GIRL",
+ unified: "1F468-200D-1F467-200D-1F467",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f468-200d-1f467-200d-1f467.png",
+ sheet_x: 14,
+ sheet_y: 37,
+ short_name: "man-girl-girl",
+ short_names: ["man-girl-girl"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "family",
+ sort_order: 519,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "woman-boy": {
+ char: "👩👦",
+ key: "woman-boy",
+ keywords: ["woman-boy", "FAMILY: WOMAN, BOY"],
+ category: "people",
+ lib: {
+ name: "FAMILY: WOMAN, BOY",
+ unified: "1F469-200D-1F466",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f469-200d-1f466.png",
+ sheet_x: 18,
+ sheet_y: 8,
+ short_name: "woman-boy",
+ short_names: ["woman-boy"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "family",
+ sort_order: 520,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "woman-boy-boy": {
+ char: "👩👦👦",
+ key: "woman-boy-boy",
+ keywords: ["woman-boy-boy", "FAMILY: WOMAN, BOY, BOY"],
+ category: "people",
+ lib: {
+ name: "FAMILY: WOMAN, BOY, BOY",
+ unified: "1F469-200D-1F466-200D-1F466",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f469-200d-1f466-200d-1f466.png",
+ sheet_x: 18,
+ sheet_y: 7,
+ short_name: "woman-boy-boy",
+ short_names: ["woman-boy-boy"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "family",
+ sort_order: 521,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "woman-girl": {
+ char: "👩👧",
+ key: "woman-girl",
+ keywords: ["woman-girl", "FAMILY: WOMAN, GIRL"],
+ category: "people",
+ lib: {
+ name: "FAMILY: WOMAN, GIRL",
+ unified: "1F469-200D-1F467",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f469-200d-1f467.png",
+ sheet_x: 18,
+ sheet_y: 11,
+ short_name: "woman-girl",
+ short_names: ["woman-girl"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "family",
+ sort_order: 522,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "woman-girl-boy": {
+ char: "👩👧👦",
+ key: "woman-girl-boy",
+ keywords: ["woman-girl-boy", "FAMILY: WOMAN, GIRL, BOY"],
+ category: "people",
+ lib: {
+ name: "FAMILY: WOMAN, GIRL, BOY",
+ unified: "1F469-200D-1F467-200D-1F466",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f469-200d-1f467-200d-1f466.png",
+ sheet_x: 18,
+ sheet_y: 9,
+ short_name: "woman-girl-boy",
+ short_names: ["woman-girl-boy"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "family",
+ sort_order: 523,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "woman-girl-girl": {
+ char: "👩👧👧",
+ key: "woman-girl-girl",
+ keywords: ["woman-girl-girl", "FAMILY: WOMAN, GIRL, GIRL"],
+ category: "people",
+ lib: {
+ name: "FAMILY: WOMAN, GIRL, GIRL",
+ unified: "1F469-200D-1F467-200D-1F467",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f469-200d-1f467-200d-1f467.png",
+ sheet_x: 18,
+ sheet_y: 10,
+ short_name: "woman-girl-girl",
+ short_names: ["woman-girl-girl"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "family",
+ sort_order: 524,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ speaking_head_in_silhouette: {
+ char: "🗣️",
+ key: "speaking_head_in_silhouette",
+ keywords: ["speaking_head_in_silhouette", "SPEAKING HEAD"],
+ category: "people",
+ lib: {
+ name: "SPEAKING HEAD",
+ unified: "1F5E3-FE0F",
+ non_qualified: "1F5E3",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f5e3-fe0f.png",
+ sheet_x: 32,
+ sheet_y: 11,
+ short_name: "speaking_head_in_silhouette",
+ short_names: ["speaking_head_in_silhouette"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-symbol",
+ sort_order: 525,
+ added_in: "0.7",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ bust_in_silhouette: {
+ char: "👤",
+ key: "bust_in_silhouette",
+ keywords: ["bust_in_silhouette", "BUST IN SILHOUETTE"],
+ category: "people",
+ lib: {
+ name: "BUST IN SILHOUETTE",
+ unified: "1F464",
+ non_qualified: null,
+ docomo: "E6B1",
+ au: null,
+ softbank: null,
+ google: "FE19A",
+ image: "1f464.png",
+ sheet_x: 13,
+ sheet_y: 33,
+ short_name: "bust_in_silhouette",
+ short_names: ["bust_in_silhouette"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-symbol",
+ sort_order: 526,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ busts_in_silhouette: {
+ char: "👥",
+ key: "busts_in_silhouette",
+ keywords: ["busts_in_silhouette", "BUSTS IN SILHOUETTE"],
+ category: "people",
+ lib: {
+ name: "BUSTS IN SILHOUETTE",
+ unified: "1F465",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f465.png",
+ sheet_x: 13,
+ sheet_y: 34,
+ short_name: "busts_in_silhouette",
+ short_names: ["busts_in_silhouette"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-symbol",
+ sort_order: 527,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ people_hugging: {
+ char: "🫂",
+ key: "people_hugging",
+ keywords: ["people_hugging", "PEOPLE HUGGING"],
+ category: "people",
+ lib: {
+ name: "PEOPLE HUGGING",
+ unified: "1FAC2",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1fac2.png",
+ sheet_x: 54,
+ sheet_y: 58,
+ short_name: "people_hugging",
+ short_names: ["people_hugging"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-symbol",
+ sort_order: 528,
+ added_in: "13.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ footprints: {
+ char: "👣",
+ key: "footprints",
+ keywords: ["footprints", "FOOTPRINTS"],
+ category: "people",
+ lib: {
+ name: "FOOTPRINTS",
+ unified: "1F463",
+ non_qualified: null,
+ docomo: "E698",
+ au: "EB2A",
+ softbank: "E536",
+ google: "FE553",
+ image: "1f463.png",
+ sheet_x: 13,
+ sheet_y: 32,
+ short_name: "footprints",
+ short_names: ["footprints"],
+ text: null,
+ texts: null,
+ category: "People & Body",
+ subcategory: "person-symbol",
+ sort_order: 529,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "skin-tone-2": {
+ char: "🏻",
+ key: "skin-tone-2",
+ keywords: ["skin-tone-2", "EMOJI MODIFIER FITZPATRICK TYPE-1-2"],
+ lib: {
+ name: "EMOJI MODIFIER FITZPATRICK TYPE-1-2",
+ unified: "1F3FB",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f3fb.png",
+ sheet_x: 10,
+ sheet_y: 41,
+ short_name: "skin-tone-2",
+ short_names: ["skin-tone-2"],
+ text: null,
+ texts: null,
+ category: "Component",
+ subcategory: "skin-tone",
+ sort_order: 530,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "skin-tone-3": {
+ char: "🏼",
+ key: "skin-tone-3",
+ keywords: ["skin-tone-3", "EMOJI MODIFIER FITZPATRICK TYPE-3"],
+ lib: {
+ name: "EMOJI MODIFIER FITZPATRICK TYPE-3",
+ unified: "1F3FC",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f3fc.png",
+ sheet_x: 10,
+ sheet_y: 42,
+ short_name: "skin-tone-3",
+ short_names: ["skin-tone-3"],
+ text: null,
+ texts: null,
+ category: "Component",
+ subcategory: "skin-tone",
+ sort_order: 531,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "skin-tone-4": {
+ char: "🏽",
+ key: "skin-tone-4",
+ keywords: ["skin-tone-4", "EMOJI MODIFIER FITZPATRICK TYPE-4"],
+ lib: {
+ name: "EMOJI MODIFIER FITZPATRICK TYPE-4",
+ unified: "1F3FD",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f3fd.png",
+ sheet_x: 10,
+ sheet_y: 43,
+ short_name: "skin-tone-4",
+ short_names: ["skin-tone-4"],
+ text: null,
+ texts: null,
+ category: "Component",
+ subcategory: "skin-tone",
+ sort_order: 532,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "skin-tone-5": {
+ char: "🏾",
+ key: "skin-tone-5",
+ keywords: ["skin-tone-5", "EMOJI MODIFIER FITZPATRICK TYPE-5"],
+ lib: {
+ name: "EMOJI MODIFIER FITZPATRICK TYPE-5",
+ unified: "1F3FE",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f3fe.png",
+ sheet_x: 10,
+ sheet_y: 44,
+ short_name: "skin-tone-5",
+ short_names: ["skin-tone-5"],
+ text: null,
+ texts: null,
+ category: "Component",
+ subcategory: "skin-tone",
+ sort_order: 533,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "skin-tone-6": {
+ char: "🏿",
+ key: "skin-tone-6",
+ keywords: ["skin-tone-6", "EMOJI MODIFIER FITZPATRICK TYPE-6"],
+ lib: {
+ name: "EMOJI MODIFIER FITZPATRICK TYPE-6",
+ unified: "1F3FF",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f3ff.png",
+ sheet_x: 10,
+ sheet_y: 45,
+ short_name: "skin-tone-6",
+ short_names: ["skin-tone-6"],
+ text: null,
+ texts: null,
+ category: "Component",
+ subcategory: "skin-tone",
+ sort_order: 534,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ monkey_face: {
+ char: "🐵",
+ key: "monkey_face",
+ keywords: ["monkey_face", "MONKEY FACE"],
+ category: "animals_and_nature",
+ lib: {
+ name: "MONKEY FACE",
+ unified: "1F435",
+ non_qualified: null,
+ docomo: null,
+ au: "E4D9",
+ softbank: "E109",
+ google: "FE1C4",
+ image: "1f435.png",
+ sheet_x: 11,
+ sheet_y: 41,
+ short_name: "monkey_face",
+ short_names: ["monkey_face"],
+ text: null,
+ texts: [":o)"],
+ category: "Animals & Nature",
+ subcategory: "animal-mammal",
+ sort_order: 535,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ monkey: {
+ char: "🐒",
+ key: "monkey",
+ keywords: ["monkey", "MONKEY"],
+ category: "animals_and_nature",
+ lib: {
+ name: "MONKEY",
+ unified: "1F412",
+ non_qualified: null,
+ docomo: null,
+ au: "E4D9",
+ softbank: "E528",
+ google: "FE1CE",
+ image: "1f412.png",
+ sheet_x: 11,
+ sheet_y: 4,
+ short_name: "monkey",
+ short_names: ["monkey"],
+ text: null,
+ texts: null,
+ category: "Animals & Nature",
+ subcategory: "animal-mammal",
+ sort_order: 536,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ gorilla: {
+ char: "🦍",
+ key: "gorilla",
+ keywords: ["gorilla", "GORILLA"],
+ category: "animals_and_nature",
+ lib: {
+ name: "GORILLA",
+ unified: "1F98D",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f98d.png",
+ sheet_x: 44,
+ sheet_y: 33,
+ short_name: "gorilla",
+ short_names: ["gorilla"],
+ text: null,
+ texts: null,
+ category: "Animals & Nature",
+ subcategory: "animal-mammal",
+ sort_order: 537,
+ added_in: "3.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ orangutan: {
+ char: "🦧",
+ key: "orangutan",
+ keywords: ["orangutan", "ORANGUTAN"],
+ category: "animals_and_nature",
+ lib: {
+ name: "ORANGUTAN",
+ unified: "1F9A7",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f9a7.png",
+ sheet_x: 44,
+ sheet_y: 59,
+ short_name: "orangutan",
+ short_names: ["orangutan"],
+ text: null,
+ texts: null,
+ category: "Animals & Nature",
+ subcategory: "animal-mammal",
+ sort_order: 538,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ dog: {
+ char: "🐶",
+ key: "dog",
+ keywords: ["dog", "DOG FACE"],
+ category: "animals_and_nature",
+ lib: {
+ name: "DOG FACE",
+ unified: "1F436",
+ non_qualified: null,
+ docomo: "E6A1",
+ au: "E4E1",
+ softbank: "E052",
+ google: "FE1B7",
+ image: "1f436.png",
+ sheet_x: 11,
+ sheet_y: 42,
+ short_name: "dog",
+ short_names: ["dog"],
+ text: null,
+ texts: null,
+ category: "Animals & Nature",
+ subcategory: "animal-mammal",
+ sort_order: 539,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ dog2: {
+ char: "🐕",
+ key: "dog2",
+ keywords: ["dog2", "DOG"],
+ category: "animals_and_nature",
+ lib: {
+ name: "DOG",
+ unified: "1F415",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f415.png",
+ sheet_x: 11,
+ sheet_y: 8,
+ short_name: "dog2",
+ short_names: ["dog2"],
+ text: null,
+ texts: null,
+ category: "Animals & Nature",
+ subcategory: "animal-mammal",
+ sort_order: 540,
+ added_in: "0.7",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ guide_dog: {
+ char: "🦮",
+ key: "guide_dog",
+ keywords: ["guide_dog", "GUIDE DOG"],
+ category: "animals_and_nature",
+ lib: {
+ name: "GUIDE DOG",
+ unified: "1F9AE",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f9ae.png",
+ sheet_x: 45,
+ sheet_y: 5,
+ short_name: "guide_dog",
+ short_names: ["guide_dog"],
+ text: null,
+ texts: null,
+ category: "Animals & Nature",
+ subcategory: "animal-mammal",
+ sort_order: 541,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ service_dog: {
+ char: "🐕🦺",
+ key: "service_dog",
+ keywords: ["service_dog", "SERVICE DOG"],
+ category: "animals_and_nature",
+ lib: {
+ name: "SERVICE DOG",
+ unified: "1F415-200D-1F9BA",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f415-200d-1f9ba.png",
+ sheet_x: 11,
+ sheet_y: 7,
+ short_name: "service_dog",
+ short_names: ["service_dog"],
+ text: null,
+ texts: null,
+ category: "Animals & Nature",
+ subcategory: "animal-mammal",
+ sort_order: 542,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ poodle: {
+ char: "🐩",
+ key: "poodle",
+ keywords: ["poodle", "POODLE"],
+ category: "animals_and_nature",
+ lib: {
+ name: "POODLE",
+ unified: "1F429",
+ non_qualified: null,
+ docomo: "E6A1",
+ au: "E4DF",
+ softbank: null,
+ google: "FE1D8",
+ image: "1f429.png",
+ sheet_x: 11,
+ sheet_y: 29,
+ short_name: "poodle",
+ short_names: ["poodle"],
+ text: null,
+ texts: null,
+ category: "Animals & Nature",
+ subcategory: "animal-mammal",
+ sort_order: 543,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ wolf: {
+ char: "🐺",
+ key: "wolf",
+ keywords: ["wolf", "WOLF FACE"],
+ category: "animals_and_nature",
+ lib: {
+ name: "WOLF FACE",
+ unified: "1F43A",
+ non_qualified: null,
+ docomo: "E6A1",
+ au: "E4E1",
+ softbank: "E52A",
+ google: "FE1D0",
+ image: "1f43a.png",
+ sheet_x: 11,
+ sheet_y: 46,
+ short_name: "wolf",
+ short_names: ["wolf"],
+ text: null,
+ texts: null,
+ category: "Animals & Nature",
+ subcategory: "animal-mammal",
+ sort_order: 544,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ fox_face: {
+ char: "🦊",
+ key: "fox_face",
+ keywords: ["fox_face", "FOX FACE"],
+ category: "animals_and_nature",
+ lib: {
+ name: "FOX FACE",
+ unified: "1F98A",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f98a.png",
+ sheet_x: 44,
+ sheet_y: 30,
+ short_name: "fox_face",
+ short_names: ["fox_face"],
+ text: null,
+ texts: null,
+ category: "Animals & Nature",
+ subcategory: "animal-mammal",
+ sort_order: 545,
+ added_in: "3.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ raccoon: {
+ char: "🦝",
+ key: "raccoon",
+ keywords: ["raccoon", "RACCOON"],
+ category: "animals_and_nature",
+ lib: {
+ name: "RACCOON",
+ unified: "1F99D",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f99d.png",
+ sheet_x: 44,
+ sheet_y: 49,
+ short_name: "raccoon",
+ short_names: ["raccoon"],
+ text: null,
+ texts: null,
+ category: "Animals & Nature",
+ subcategory: "animal-mammal",
+ sort_order: 546,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ cat: {
+ char: "🐱",
+ key: "cat",
+ keywords: ["cat", "CAT FACE"],
+ category: "animals_and_nature",
+ lib: {
+ name: "CAT FACE",
+ unified: "1F431",
+ non_qualified: null,
+ docomo: "E6A2",
+ au: "E4DB",
+ softbank: "E04F",
+ google: "FE1B8",
+ image: "1f431.png",
+ sheet_x: 11,
+ sheet_y: 37,
+ short_name: "cat",
+ short_names: ["cat"],
+ text: null,
+ texts: null,
+ category: "Animals & Nature",
+ subcategory: "animal-mammal",
+ sort_order: 547,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ cat2: {
+ char: "🐈",
+ key: "cat2",
+ keywords: ["cat2", "CAT"],
+ category: "animals_and_nature",
+ lib: {
+ name: "CAT",
+ unified: "1F408",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f408.png",
+ sheet_x: 10,
+ sheet_y: 55,
+ short_name: "cat2",
+ short_names: ["cat2"],
+ text: null,
+ texts: null,
+ category: "Animals & Nature",
+ subcategory: "animal-mammal",
+ sort_order: 548,
+ added_in: "0.7",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ black_cat: {
+ char: "🐈⬛",
+ key: "black_cat",
+ keywords: ["black_cat", "BLACK CAT"],
+ category: "animals_and_nature",
+ lib: {
+ name: "BLACK CAT",
+ unified: "1F408-200D-2B1B",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f408-200d-2b1b.png",
+ sheet_x: 10,
+ sheet_y: 54,
+ short_name: "black_cat",
+ short_names: ["black_cat"],
+ text: null,
+ texts: null,
+ category: "Animals & Nature",
+ subcategory: "animal-mammal",
+ sort_order: 549,
+ added_in: "13.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ lion_face: {
+ char: "🦁",
+ key: "lion_face",
+ keywords: ["lion_face", "LION FACE"],
+ category: "animals_and_nature",
+ lib: {
+ name: "LION FACE",
+ unified: "1F981",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f981.png",
+ sheet_x: 44,
+ sheet_y: 21,
+ short_name: "lion_face",
+ short_names: ["lion_face"],
+ text: null,
+ texts: null,
+ category: "Animals & Nature",
+ subcategory: "animal-mammal",
+ sort_order: 550,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ tiger: {
+ char: "🐯",
+ key: "tiger",
+ keywords: ["tiger", "TIGER FACE"],
+ category: "animals_and_nature",
+ lib: {
+ name: "TIGER FACE",
+ unified: "1F42F",
+ non_qualified: null,
+ docomo: null,
+ au: "E5C0",
+ softbank: "E050",
+ google: "FE1C0",
+ image: "1f42f.png",
+ sheet_x: 11,
+ sheet_y: 35,
+ short_name: "tiger",
+ short_names: ["tiger"],
+ text: null,
+ texts: null,
+ category: "Animals & Nature",
+ subcategory: "animal-mammal",
+ sort_order: 551,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ tiger2: {
+ char: "🐅",
+ key: "tiger2",
+ keywords: ["tiger2", "TIGER"],
+ category: "animals_and_nature",
+ lib: {
+ name: "TIGER",
+ unified: "1F405",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f405.png",
+ sheet_x: 10,
+ sheet_y: 51,
+ short_name: "tiger2",
+ short_names: ["tiger2"],
+ text: null,
+ texts: null,
+ category: "Animals & Nature",
+ subcategory: "animal-mammal",
+ sort_order: 552,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ leopard: {
+ char: "🐆",
+ key: "leopard",
+ keywords: ["leopard", "LEOPARD"],
+ category: "animals_and_nature",
+ lib: {
+ name: "LEOPARD",
+ unified: "1F406",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f406.png",
+ sheet_x: 10,
+ sheet_y: 52,
+ short_name: "leopard",
+ short_names: ["leopard"],
+ text: null,
+ texts: null,
+ category: "Animals & Nature",
+ subcategory: "animal-mammal",
+ sort_order: 553,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ horse: {
+ char: "🐴",
+ key: "horse",
+ keywords: ["horse", "HORSE FACE"],
+ category: "animals_and_nature",
+ lib: {
+ name: "HORSE FACE",
+ unified: "1F434",
+ non_qualified: null,
+ docomo: "E754",
+ au: "E4D8",
+ softbank: "E01A",
+ google: "FE1BE",
+ image: "1f434.png",
+ sheet_x: 11,
+ sheet_y: 40,
+ short_name: "horse",
+ short_names: ["horse"],
+ text: null,
+ texts: null,
+ category: "Animals & Nature",
+ subcategory: "animal-mammal",
+ sort_order: 554,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ moose: {
+ char: "🫎",
+ key: "moose",
+ keywords: ["moose", "MOOSE"],
+ category: "animals_and_nature",
+ lib: {
+ name: "MOOSE",
+ unified: "1FACE",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1face.png",
+ sheet_x: 55,
+ sheet_y: 16,
+ short_name: "moose",
+ short_names: ["moose"],
+ text: null,
+ texts: null,
+ category: "Animals & Nature",
+ subcategory: "animal-mammal",
+ sort_order: 555,
+ added_in: "15.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: false,
+ has_img_facebook: false,
+ },
+ },
+ donkey: {
+ char: "🫏",
+ key: "donkey",
+ keywords: ["donkey", "DONKEY"],
+ category: "animals_and_nature",
+ lib: {
+ name: "DONKEY",
+ unified: "1FACF",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1facf.png",
+ sheet_x: 55,
+ sheet_y: 17,
+ short_name: "donkey",
+ short_names: ["donkey"],
+ text: null,
+ texts: null,
+ category: "Animals & Nature",
+ subcategory: "animal-mammal",
+ sort_order: 556,
+ added_in: "15.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: false,
+ has_img_facebook: false,
+ },
+ },
+ racehorse: {
+ char: "🐎",
+ key: "racehorse",
+ keywords: ["racehorse", "HORSE"],
+ category: "animals_and_nature",
+ lib: {
+ name: "HORSE",
+ unified: "1F40E",
+ non_qualified: null,
+ docomo: "E754",
+ au: "E4D8",
+ softbank: "E134",
+ google: "FE7DC",
+ image: "1f40e.png",
+ sheet_x: 11,
+ sheet_y: 0,
+ short_name: "racehorse",
+ short_names: ["racehorse"],
+ text: null,
+ texts: null,
+ category: "Animals & Nature",
+ subcategory: "animal-mammal",
+ sort_order: 557,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ unicorn_face: {
+ char: "🦄",
+ key: "unicorn_face",
+ keywords: ["unicorn_face", "UNICORN FACE"],
+ category: "animals_and_nature",
+ lib: {
+ name: "UNICORN FACE",
+ unified: "1F984",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f984.png",
+ sheet_x: 44,
+ sheet_y: 24,
+ short_name: "unicorn_face",
+ short_names: ["unicorn_face"],
+ text: null,
+ texts: null,
+ category: "Animals & Nature",
+ subcategory: "animal-mammal",
+ sort_order: 558,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ zebra_face: {
+ char: "🦓",
+ key: "zebra_face",
+ keywords: ["zebra_face", "ZEBRA FACE"],
+ category: "animals_and_nature",
+ lib: {
+ name: "ZEBRA FACE",
+ unified: "1F993",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f993.png",
+ sheet_x: 44,
+ sheet_y: 39,
+ short_name: "zebra_face",
+ short_names: ["zebra_face"],
+ text: null,
+ texts: null,
+ category: "Animals & Nature",
+ subcategory: "animal-mammal",
+ sort_order: 559,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ deer: {
+ char: "🦌",
+ key: "deer",
+ keywords: ["deer", "DEER"],
+ category: "animals_and_nature",
+ lib: {
+ name: "DEER",
+ unified: "1F98C",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f98c.png",
+ sheet_x: 44,
+ sheet_y: 32,
+ short_name: "deer",
+ short_names: ["deer"],
+ text: null,
+ texts: null,
+ category: "Animals & Nature",
+ subcategory: "animal-mammal",
+ sort_order: 560,
+ added_in: "3.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ bison: {
+ char: "🦬",
+ key: "bison",
+ keywords: ["bison", "BISON"],
+ category: "animals_and_nature",
+ lib: {
+ name: "BISON",
+ unified: "1F9AC",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f9ac.png",
+ sheet_x: 45,
+ sheet_y: 3,
+ short_name: "bison",
+ short_names: ["bison"],
+ text: null,
+ texts: null,
+ category: "Animals & Nature",
+ subcategory: "animal-mammal",
+ sort_order: 561,
+ added_in: "13.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ cow: {
+ char: "🐮",
+ key: "cow",
+ keywords: ["cow", "COW FACE"],
+ category: "animals_and_nature",
+ lib: {
+ name: "COW FACE",
+ unified: "1F42E",
+ non_qualified: null,
+ docomo: null,
+ au: "EB21",
+ softbank: "E52B",
+ google: "FE1D1",
+ image: "1f42e.png",
+ sheet_x: 11,
+ sheet_y: 34,
+ short_name: "cow",
+ short_names: ["cow"],
+ text: null,
+ texts: null,
+ category: "Animals & Nature",
+ subcategory: "animal-mammal",
+ sort_order: 562,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ ox: {
+ char: "🐂",
+ key: "ox",
+ keywords: ["ox", "OX"],
+ category: "animals_and_nature",
+ lib: {
+ name: "OX",
+ unified: "1F402",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f402.png",
+ sheet_x: 10,
+ sheet_y: 48,
+ short_name: "ox",
+ short_names: ["ox"],
+ text: null,
+ texts: null,
+ category: "Animals & Nature",
+ subcategory: "animal-mammal",
+ sort_order: 563,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ water_buffalo: {
+ char: "🐃",
+ key: "water_buffalo",
+ keywords: ["water_buffalo", "WATER BUFFALO"],
+ category: "animals_and_nature",
+ lib: {
+ name: "WATER BUFFALO",
+ unified: "1F403",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f403.png",
+ sheet_x: 10,
+ sheet_y: 49,
+ short_name: "water_buffalo",
+ short_names: ["water_buffalo"],
+ text: null,
+ texts: null,
+ category: "Animals & Nature",
+ subcategory: "animal-mammal",
+ sort_order: 564,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ cow2: {
+ char: "🐄",
+ key: "cow2",
+ keywords: ["cow2", "COW"],
+ category: "animals_and_nature",
+ lib: {
+ name: "COW",
+ unified: "1F404",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f404.png",
+ sheet_x: 10,
+ sheet_y: 50,
+ short_name: "cow2",
+ short_names: ["cow2"],
+ text: null,
+ texts: null,
+ category: "Animals & Nature",
+ subcategory: "animal-mammal",
+ sort_order: 565,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ pig: {
+ char: "🐷",
+ key: "pig",
+ keywords: ["pig", "PIG FACE"],
+ category: "animals_and_nature",
+ lib: {
+ name: "PIG FACE",
+ unified: "1F437",
+ non_qualified: null,
+ docomo: "E755",
+ au: "E4DE",
+ softbank: "E10B",
+ google: "FE1BF",
+ image: "1f437.png",
+ sheet_x: 11,
+ sheet_y: 43,
+ short_name: "pig",
+ short_names: ["pig"],
+ text: null,
+ texts: null,
+ category: "Animals & Nature",
+ subcategory: "animal-mammal",
+ sort_order: 566,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ pig2: {
+ char: "🐖",
+ key: "pig2",
+ keywords: ["pig2", "PIG"],
+ category: "animals_and_nature",
+ lib: {
+ name: "PIG",
+ unified: "1F416",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f416.png",
+ sheet_x: 11,
+ sheet_y: 9,
+ short_name: "pig2",
+ short_names: ["pig2"],
+ text: null,
+ texts: null,
+ category: "Animals & Nature",
+ subcategory: "animal-mammal",
+ sort_order: 567,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ boar: {
+ char: "🐗",
+ key: "boar",
+ keywords: ["boar", "BOAR"],
+ category: "animals_and_nature",
+ lib: {
+ name: "BOAR",
+ unified: "1F417",
+ non_qualified: null,
+ docomo: null,
+ au: "EB24",
+ softbank: "E52F",
+ google: "FE1D5",
+ image: "1f417.png",
+ sheet_x: 11,
+ sheet_y: 10,
+ short_name: "boar",
+ short_names: ["boar"],
+ text: null,
+ texts: null,
+ category: "Animals & Nature",
+ subcategory: "animal-mammal",
+ sort_order: 568,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ pig_nose: {
+ char: "🐽",
+ key: "pig_nose",
+ keywords: ["pig_nose", "PIG NOSE"],
+ category: "animals_and_nature",
+ lib: {
+ name: "PIG NOSE",
+ unified: "1F43D",
+ non_qualified: null,
+ docomo: "E755",
+ au: "EB48",
+ softbank: null,
+ google: "FE1E0",
+ image: "1f43d.png",
+ sheet_x: 11,
+ sheet_y: 50,
+ short_name: "pig_nose",
+ short_names: ["pig_nose"],
+ text: null,
+ texts: null,
+ category: "Animals & Nature",
+ subcategory: "animal-mammal",
+ sort_order: 569,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ ram: {
+ char: "🐏",
+ key: "ram",
+ keywords: ["ram", "RAM"],
+ category: "animals_and_nature",
+ lib: {
+ name: "RAM",
+ unified: "1F40F",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f40f.png",
+ sheet_x: 11,
+ sheet_y: 1,
+ short_name: "ram",
+ short_names: ["ram"],
+ text: null,
+ texts: null,
+ category: "Animals & Nature",
+ subcategory: "animal-mammal",
+ sort_order: 570,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ sheep: {
+ char: "🐑",
+ key: "sheep",
+ keywords: ["sheep", "SHEEP"],
+ category: "animals_and_nature",
+ lib: {
+ name: "SHEEP",
+ unified: "1F411",
+ non_qualified: null,
+ docomo: null,
+ au: "E48F",
+ softbank: "E529",
+ google: "FE1CF",
+ image: "1f411.png",
+ sheet_x: 11,
+ sheet_y: 3,
+ short_name: "sheep",
+ short_names: ["sheep"],
+ text: null,
+ texts: null,
+ category: "Animals & Nature",
+ subcategory: "animal-mammal",
+ sort_order: 571,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ goat: {
+ char: "🐐",
+ key: "goat",
+ keywords: ["goat", "GOAT"],
+ category: "animals_and_nature",
+ lib: {
+ name: "GOAT",
+ unified: "1F410",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f410.png",
+ sheet_x: 11,
+ sheet_y: 2,
+ short_name: "goat",
+ short_names: ["goat"],
+ text: null,
+ texts: null,
+ category: "Animals & Nature",
+ subcategory: "animal-mammal",
+ sort_order: 572,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ dromedary_camel: {
+ char: "🐪",
+ key: "dromedary_camel",
+ keywords: ["dromedary_camel", "DROMEDARY CAMEL"],
+ category: "animals_and_nature",
+ lib: {
+ name: "DROMEDARY CAMEL",
+ unified: "1F42A",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f42a.png",
+ sheet_x: 11,
+ sheet_y: 30,
+ short_name: "dromedary_camel",
+ short_names: ["dromedary_camel"],
+ text: null,
+ texts: null,
+ category: "Animals & Nature",
+ subcategory: "animal-mammal",
+ sort_order: 573,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ camel: {
+ char: "🐫",
+ key: "camel",
+ keywords: ["camel", "BACTRIAN CAMEL"],
+ category: "animals_and_nature",
+ lib: {
+ name: "BACTRIAN CAMEL",
+ unified: "1F42B",
+ non_qualified: null,
+ docomo: null,
+ au: "EB25",
+ softbank: "E530",
+ google: "FE1D6",
+ image: "1f42b.png",
+ sheet_x: 11,
+ sheet_y: 31,
+ short_name: "camel",
+ short_names: ["camel"],
+ text: null,
+ texts: null,
+ category: "Animals & Nature",
+ subcategory: "animal-mammal",
+ sort_order: 574,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ llama: {
+ char: "🦙",
+ key: "llama",
+ keywords: ["llama", "LLAMA"],
+ category: "animals_and_nature",
+ lib: {
+ name: "LLAMA",
+ unified: "1F999",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f999.png",
+ sheet_x: 44,
+ sheet_y: 45,
+ short_name: "llama",
+ short_names: ["llama"],
+ text: null,
+ texts: null,
+ category: "Animals & Nature",
+ subcategory: "animal-mammal",
+ sort_order: 575,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ giraffe_face: {
+ char: "🦒",
+ key: "giraffe_face",
+ keywords: ["giraffe_face", "GIRAFFE FACE"],
+ category: "animals_and_nature",
+ lib: {
+ name: "GIRAFFE FACE",
+ unified: "1F992",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f992.png",
+ sheet_x: 44,
+ sheet_y: 38,
+ short_name: "giraffe_face",
+ short_names: ["giraffe_face"],
+ text: null,
+ texts: null,
+ category: "Animals & Nature",
+ subcategory: "animal-mammal",
+ sort_order: 576,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ elephant: {
+ char: "🐘",
+ key: "elephant",
+ keywords: ["elephant", "ELEPHANT"],
+ category: "animals_and_nature",
+ lib: {
+ name: "ELEPHANT",
+ unified: "1F418",
+ non_qualified: null,
+ docomo: null,
+ au: "EB1F",
+ softbank: "E526",
+ google: "FE1CC",
+ image: "1f418.png",
+ sheet_x: 11,
+ sheet_y: 11,
+ short_name: "elephant",
+ short_names: ["elephant"],
+ text: null,
+ texts: null,
+ category: "Animals & Nature",
+ subcategory: "animal-mammal",
+ sort_order: 577,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ mammoth: {
+ char: "🦣",
+ key: "mammoth",
+ keywords: ["mammoth", "MAMMOTH"],
+ category: "animals_and_nature",
+ lib: {
+ name: "MAMMOTH",
+ unified: "1F9A3",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f9a3.png",
+ sheet_x: 44,
+ sheet_y: 55,
+ short_name: "mammoth",
+ short_names: ["mammoth"],
+ text: null,
+ texts: null,
+ category: "Animals & Nature",
+ subcategory: "animal-mammal",
+ sort_order: 578,
+ added_in: "13.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ rhinoceros: {
+ char: "🦏",
+ key: "rhinoceros",
+ keywords: ["rhinoceros", "RHINOCEROS"],
+ category: "animals_and_nature",
+ lib: {
+ name: "RHINOCEROS",
+ unified: "1F98F",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f98f.png",
+ sheet_x: 44,
+ sheet_y: 35,
+ short_name: "rhinoceros",
+ short_names: ["rhinoceros"],
+ text: null,
+ texts: null,
+ category: "Animals & Nature",
+ subcategory: "animal-mammal",
+ sort_order: 579,
+ added_in: "3.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ hippopotamus: {
+ char: "🦛",
+ key: "hippopotamus",
+ keywords: ["hippopotamus", "HIPPOPOTAMUS"],
+ category: "animals_and_nature",
+ lib: {
+ name: "HIPPOPOTAMUS",
+ unified: "1F99B",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f99b.png",
+ sheet_x: 44,
+ sheet_y: 47,
+ short_name: "hippopotamus",
+ short_names: ["hippopotamus"],
+ text: null,
+ texts: null,
+ category: "Animals & Nature",
+ subcategory: "animal-mammal",
+ sort_order: 580,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ mouse: {
+ char: "🐭",
+ key: "mouse",
+ keywords: ["mouse", "MOUSE FACE"],
+ category: "animals_and_nature",
+ lib: {
+ name: "MOUSE FACE",
+ unified: "1F42D",
+ non_qualified: null,
+ docomo: null,
+ au: "E5C2",
+ softbank: "E053",
+ google: "FE1C2",
+ image: "1f42d.png",
+ sheet_x: 11,
+ sheet_y: 33,
+ short_name: "mouse",
+ short_names: ["mouse"],
+ text: null,
+ texts: null,
+ category: "Animals & Nature",
+ subcategory: "animal-mammal",
+ sort_order: 581,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ mouse2: {
+ char: "🐁",
+ key: "mouse2",
+ keywords: ["mouse2", "MOUSE"],
+ category: "animals_and_nature",
+ lib: {
+ name: "MOUSE",
+ unified: "1F401",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f401.png",
+ sheet_x: 10,
+ sheet_y: 47,
+ short_name: "mouse2",
+ short_names: ["mouse2"],
+ text: null,
+ texts: null,
+ category: "Animals & Nature",
+ subcategory: "animal-mammal",
+ sort_order: 582,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ rat: {
+ char: "🐀",
+ key: "rat",
+ keywords: ["rat", "RAT"],
+ category: "animals_and_nature",
+ lib: {
+ name: "RAT",
+ unified: "1F400",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f400.png",
+ sheet_x: 10,
+ sheet_y: 46,
+ short_name: "rat",
+ short_names: ["rat"],
+ text: null,
+ texts: null,
+ category: "Animals & Nature",
+ subcategory: "animal-mammal",
+ sort_order: 583,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ hamster: {
+ char: "🐹",
+ key: "hamster",
+ keywords: ["hamster", "HAMSTER FACE"],
+ category: "animals_and_nature",
+ lib: {
+ name: "HAMSTER FACE",
+ unified: "1F439",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: "E524",
+ google: "FE1CA",
+ image: "1f439.png",
+ sheet_x: 11,
+ sheet_y: 45,
+ short_name: "hamster",
+ short_names: ["hamster"],
+ text: null,
+ texts: null,
+ category: "Animals & Nature",
+ subcategory: "animal-mammal",
+ sort_order: 584,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ rabbit: {
+ char: "🐰",
+ key: "rabbit",
+ keywords: ["rabbit", "RABBIT FACE"],
+ category: "animals_and_nature",
+ lib: {
+ name: "RABBIT FACE",
+ unified: "1F430",
+ non_qualified: null,
+ docomo: null,
+ au: "E4D7",
+ softbank: "E52C",
+ google: "FE1D2",
+ image: "1f430.png",
+ sheet_x: 11,
+ sheet_y: 36,
+ short_name: "rabbit",
+ short_names: ["rabbit"],
+ text: null,
+ texts: null,
+ category: "Animals & Nature",
+ subcategory: "animal-mammal",
+ sort_order: 585,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ rabbit2: {
+ char: "🐇",
+ key: "rabbit2",
+ keywords: ["rabbit2", "RABBIT"],
+ category: "animals_and_nature",
+ lib: {
+ name: "RABBIT",
+ unified: "1F407",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f407.png",
+ sheet_x: 10,
+ sheet_y: 53,
+ short_name: "rabbit2",
+ short_names: ["rabbit2"],
+ text: null,
+ texts: null,
+ category: "Animals & Nature",
+ subcategory: "animal-mammal",
+ sort_order: 586,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ chipmunk: {
+ char: "🐿️",
+ key: "chipmunk",
+ keywords: ["chipmunk", "CHIPMUNK"],
+ category: "animals_and_nature",
+ lib: {
+ name: "CHIPMUNK",
+ unified: "1F43F-FE0F",
+ non_qualified: "1F43F",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f43f-fe0f.png",
+ sheet_x: 11,
+ sheet_y: 52,
+ short_name: "chipmunk",
+ short_names: ["chipmunk"],
+ text: null,
+ texts: null,
+ category: "Animals & Nature",
+ subcategory: "animal-mammal",
+ sort_order: 587,
+ added_in: "0.7",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ beaver: {
+ char: "🦫",
+ key: "beaver",
+ keywords: ["beaver", "BEAVER"],
+ category: "animals_and_nature",
+ lib: {
+ name: "BEAVER",
+ unified: "1F9AB",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f9ab.png",
+ sheet_x: 45,
+ sheet_y: 2,
+ short_name: "beaver",
+ short_names: ["beaver"],
+ text: null,
+ texts: null,
+ category: "Animals & Nature",
+ subcategory: "animal-mammal",
+ sort_order: 588,
+ added_in: "13.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ hedgehog: {
+ char: "🦔",
+ key: "hedgehog",
+ keywords: ["hedgehog", "HEDGEHOG"],
+ category: "animals_and_nature",
+ lib: {
+ name: "HEDGEHOG",
+ unified: "1F994",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f994.png",
+ sheet_x: 44,
+ sheet_y: 40,
+ short_name: "hedgehog",
+ short_names: ["hedgehog"],
+ text: null,
+ texts: null,
+ category: "Animals & Nature",
+ subcategory: "animal-mammal",
+ sort_order: 589,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ bat: {
+ char: "🦇",
+ key: "bat",
+ keywords: ["bat", "BAT"],
+ category: "animals_and_nature",
+ lib: {
+ name: "BAT",
+ unified: "1F987",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f987.png",
+ sheet_x: 44,
+ sheet_y: 27,
+ short_name: "bat",
+ short_names: ["bat"],
+ text: null,
+ texts: null,
+ category: "Animals & Nature",
+ subcategory: "animal-mammal",
+ sort_order: 590,
+ added_in: "3.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ bear: {
+ char: "🐻",
+ key: "bear",
+ keywords: ["bear", "BEAR FACE"],
+ category: "animals_and_nature",
+ lib: {
+ name: "BEAR FACE",
+ unified: "1F43B",
+ non_qualified: null,
+ docomo: null,
+ au: "E5C1",
+ softbank: "E051",
+ google: "FE1C1",
+ image: "1f43b.png",
+ sheet_x: 11,
+ sheet_y: 48,
+ short_name: "bear",
+ short_names: ["bear"],
+ text: null,
+ texts: null,
+ category: "Animals & Nature",
+ subcategory: "animal-mammal",
+ sort_order: 591,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ polar_bear: {
+ char: "🐻❄️",
+ key: "polar_bear",
+ keywords: ["polar_bear", "POLAR BEAR"],
+ category: "animals_and_nature",
+ lib: {
+ name: "POLAR BEAR",
+ unified: "1F43B-200D-2744-FE0F",
+ non_qualified: "1F43B-200D-2744",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f43b-200d-2744-fe0f.png",
+ sheet_x: 11,
+ sheet_y: 47,
+ short_name: "polar_bear",
+ short_names: ["polar_bear"],
+ text: null,
+ texts: null,
+ category: "Animals & Nature",
+ subcategory: "animal-mammal",
+ sort_order: 592,
+ added_in: "13.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ koala: {
+ char: "🐨",
+ key: "koala",
+ keywords: ["koala", "KOALA"],
+ category: "animals_and_nature",
+ lib: {
+ name: "KOALA",
+ unified: "1F428",
+ non_qualified: null,
+ docomo: null,
+ au: "EB20",
+ softbank: "E527",
+ google: "FE1CD",
+ image: "1f428.png",
+ sheet_x: 11,
+ sheet_y: 28,
+ short_name: "koala",
+ short_names: ["koala"],
+ text: null,
+ texts: null,
+ category: "Animals & Nature",
+ subcategory: "animal-mammal",
+ sort_order: 593,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ panda_face: {
+ char: "🐼",
+ key: "panda_face",
+ keywords: ["panda_face", "PANDA FACE"],
+ category: "animals_and_nature",
+ lib: {
+ name: "PANDA FACE",
+ unified: "1F43C",
+ non_qualified: null,
+ docomo: null,
+ au: "EB46",
+ softbank: null,
+ google: "FE1DF",
+ image: "1f43c.png",
+ sheet_x: 11,
+ sheet_y: 49,
+ short_name: "panda_face",
+ short_names: ["panda_face"],
+ text: null,
+ texts: null,
+ category: "Animals & Nature",
+ subcategory: "animal-mammal",
+ sort_order: 594,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ sloth: {
+ char: "🦥",
+ key: "sloth",
+ keywords: ["sloth", "SLOTH"],
+ category: "animals_and_nature",
+ lib: {
+ name: "SLOTH",
+ unified: "1F9A5",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f9a5.png",
+ sheet_x: 44,
+ sheet_y: 57,
+ short_name: "sloth",
+ short_names: ["sloth"],
+ text: null,
+ texts: null,
+ category: "Animals & Nature",
+ subcategory: "animal-mammal",
+ sort_order: 595,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ otter: {
+ char: "🦦",
+ key: "otter",
+ keywords: ["otter", "OTTER"],
+ category: "animals_and_nature",
+ lib: {
+ name: "OTTER",
+ unified: "1F9A6",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f9a6.png",
+ sheet_x: 44,
+ sheet_y: 58,
+ short_name: "otter",
+ short_names: ["otter"],
+ text: null,
+ texts: null,
+ category: "Animals & Nature",
+ subcategory: "animal-mammal",
+ sort_order: 596,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ skunk: {
+ char: "🦨",
+ key: "skunk",
+ keywords: ["skunk", "SKUNK"],
+ category: "animals_and_nature",
+ lib: {
+ name: "SKUNK",
+ unified: "1F9A8",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f9a8.png",
+ sheet_x: 44,
+ sheet_y: 60,
+ short_name: "skunk",
+ short_names: ["skunk"],
+ text: null,
+ texts: null,
+ category: "Animals & Nature",
+ subcategory: "animal-mammal",
+ sort_order: 597,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ kangaroo: {
+ char: "🦘",
+ key: "kangaroo",
+ keywords: ["kangaroo", "KANGAROO"],
+ category: "animals_and_nature",
+ lib: {
+ name: "KANGAROO",
+ unified: "1F998",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f998.png",
+ sheet_x: 44,
+ sheet_y: 44,
+ short_name: "kangaroo",
+ short_names: ["kangaroo"],
+ text: null,
+ texts: null,
+ category: "Animals & Nature",
+ subcategory: "animal-mammal",
+ sort_order: 598,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ badger: {
+ char: "🦡",
+ key: "badger",
+ keywords: ["badger", "BADGER"],
+ category: "animals_and_nature",
+ lib: {
+ name: "BADGER",
+ unified: "1F9A1",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f9a1.png",
+ sheet_x: 44,
+ sheet_y: 53,
+ short_name: "badger",
+ short_names: ["badger"],
+ text: null,
+ texts: null,
+ category: "Animals & Nature",
+ subcategory: "animal-mammal",
+ sort_order: 599,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ feet: {
+ char: "🐾",
+ key: "feet",
+ keywords: ["feet", "PAW PRINTS"],
+ category: "animals_and_nature",
+ lib: {
+ name: "PAW PRINTS",
+ unified: "1F43E",
+ non_qualified: null,
+ docomo: "E698",
+ au: "E4EE",
+ softbank: null,
+ google: "FE1DB",
+ image: "1f43e.png",
+ sheet_x: 11,
+ sheet_y: 51,
+ short_name: "feet",
+ short_names: ["feet", "paw_prints"],
+ text: null,
+ texts: null,
+ category: "Animals & Nature",
+ subcategory: "animal-mammal",
+ sort_order: 600,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ turkey: {
+ char: "🦃",
+ key: "turkey",
+ keywords: ["turkey", "TURKEY"],
+ category: "animals_and_nature",
+ lib: {
+ name: "TURKEY",
+ unified: "1F983",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f983.png",
+ sheet_x: 44,
+ sheet_y: 23,
+ short_name: "turkey",
+ short_names: ["turkey"],
+ text: null,
+ texts: null,
+ category: "Animals & Nature",
+ subcategory: "animal-bird",
+ sort_order: 601,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ chicken: {
+ char: "🐔",
+ key: "chicken",
+ keywords: ["chicken", "CHICKEN"],
+ category: "animals_and_nature",
+ lib: {
+ name: "CHICKEN",
+ unified: "1F414",
+ non_qualified: null,
+ docomo: null,
+ au: "EB23",
+ softbank: "E52E",
+ google: "FE1D4",
+ image: "1f414.png",
+ sheet_x: 11,
+ sheet_y: 6,
+ short_name: "chicken",
+ short_names: ["chicken"],
+ text: null,
+ texts: null,
+ category: "Animals & Nature",
+ subcategory: "animal-bird",
+ sort_order: 602,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ rooster: {
+ char: "🐓",
+ key: "rooster",
+ keywords: ["rooster", "ROOSTER"],
+ category: "animals_and_nature",
+ lib: {
+ name: "ROOSTER",
+ unified: "1F413",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f413.png",
+ sheet_x: 11,
+ sheet_y: 5,
+ short_name: "rooster",
+ short_names: ["rooster"],
+ text: null,
+ texts: null,
+ category: "Animals & Nature",
+ subcategory: "animal-bird",
+ sort_order: 603,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ hatching_chick: {
+ char: "🐣",
+ key: "hatching_chick",
+ keywords: ["hatching_chick", "HATCHING CHICK"],
+ category: "animals_and_nature",
+ lib: {
+ name: "HATCHING CHICK",
+ unified: "1F423",
+ non_qualified: null,
+ docomo: "E74F",
+ au: "E5DB",
+ softbank: null,
+ google: "FE1DD",
+ image: "1f423.png",
+ sheet_x: 11,
+ sheet_y: 22,
+ short_name: "hatching_chick",
+ short_names: ["hatching_chick"],
+ text: null,
+ texts: null,
+ category: "Animals & Nature",
+ subcategory: "animal-bird",
+ sort_order: 604,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ baby_chick: {
+ char: "🐤",
+ key: "baby_chick",
+ keywords: ["baby_chick", "BABY CHICK"],
+ category: "animals_and_nature",
+ lib: {
+ name: "BABY CHICK",
+ unified: "1F424",
+ non_qualified: null,
+ docomo: "E74F",
+ au: "E4E0",
+ softbank: "E523",
+ google: "FE1BA",
+ image: "1f424.png",
+ sheet_x: 11,
+ sheet_y: 23,
+ short_name: "baby_chick",
+ short_names: ["baby_chick"],
+ text: null,
+ texts: null,
+ category: "Animals & Nature",
+ subcategory: "animal-bird",
+ sort_order: 605,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ hatched_chick: {
+ char: "🐥",
+ key: "hatched_chick",
+ keywords: ["hatched_chick", "FRONT-FACING BABY CHICK"],
+ category: "animals_and_nature",
+ lib: {
+ name: "FRONT-FACING BABY CHICK",
+ unified: "1F425",
+ non_qualified: null,
+ docomo: "E74F",
+ au: "EB76",
+ softbank: null,
+ google: "FE1BB",
+ image: "1f425.png",
+ sheet_x: 11,
+ sheet_y: 24,
+ short_name: "hatched_chick",
+ short_names: ["hatched_chick"],
+ text: null,
+ texts: null,
+ category: "Animals & Nature",
+ subcategory: "animal-bird",
+ sort_order: 606,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ bird: {
+ char: "🐦",
+ key: "bird",
+ keywords: ["bird", "BIRD"],
+ category: "animals_and_nature",
+ lib: {
+ name: "BIRD",
+ unified: "1F426",
+ non_qualified: null,
+ docomo: "E74F",
+ au: "E4E0",
+ softbank: "E521",
+ google: "FE1C8",
+ image: "1f426.png",
+ sheet_x: 11,
+ sheet_y: 26,
+ short_name: "bird",
+ short_names: ["bird"],
+ text: null,
+ texts: null,
+ category: "Animals & Nature",
+ subcategory: "animal-bird",
+ sort_order: 607,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ penguin: {
+ char: "🐧",
+ key: "penguin",
+ keywords: ["penguin", "PENGUIN"],
+ category: "animals_and_nature",
+ lib: {
+ name: "PENGUIN",
+ unified: "1F427",
+ non_qualified: null,
+ docomo: "E750",
+ au: "E4DC",
+ softbank: "E055",
+ google: "FE1BC",
+ image: "1f427.png",
+ sheet_x: 11,
+ sheet_y: 27,
+ short_name: "penguin",
+ short_names: ["penguin"],
+ text: null,
+ texts: null,
+ category: "Animals & Nature",
+ subcategory: "animal-bird",
+ sort_order: 608,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ dove_of_peace: {
+ char: "🕊️",
+ key: "dove_of_peace",
+ keywords: ["dove_of_peace", "DOVE"],
+ category: "animals_and_nature",
+ lib: {
+ name: "DOVE",
+ unified: "1F54A-FE0F",
+ non_qualified: "1F54A",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f54a-fe0f.png",
+ sheet_x: 30,
+ sheet_y: 28,
+ short_name: "dove_of_peace",
+ short_names: ["dove_of_peace"],
+ text: null,
+ texts: null,
+ category: "Animals & Nature",
+ subcategory: "animal-bird",
+ sort_order: 609,
+ added_in: "0.7",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ eagle: {
+ char: "🦅",
+ key: "eagle",
+ keywords: ["eagle", "EAGLE"],
+ category: "animals_and_nature",
+ lib: {
+ name: "EAGLE",
+ unified: "1F985",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f985.png",
+ sheet_x: 44,
+ sheet_y: 25,
+ short_name: "eagle",
+ short_names: ["eagle"],
+ text: null,
+ texts: null,
+ category: "Animals & Nature",
+ subcategory: "animal-bird",
+ sort_order: 610,
+ added_in: "3.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ duck: {
+ char: "🦆",
+ key: "duck",
+ keywords: ["duck", "DUCK"],
+ category: "animals_and_nature",
+ lib: {
+ name: "DUCK",
+ unified: "1F986",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f986.png",
+ sheet_x: 44,
+ sheet_y: 26,
+ short_name: "duck",
+ short_names: ["duck"],
+ text: null,
+ texts: null,
+ category: "Animals & Nature",
+ subcategory: "animal-bird",
+ sort_order: 611,
+ added_in: "3.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ swan: {
+ char: "🦢",
+ key: "swan",
+ keywords: ["swan", "SWAN"],
+ category: "animals_and_nature",
+ lib: {
+ name: "SWAN",
+ unified: "1F9A2",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f9a2.png",
+ sheet_x: 44,
+ sheet_y: 54,
+ short_name: "swan",
+ short_names: ["swan"],
+ text: null,
+ texts: null,
+ category: "Animals & Nature",
+ subcategory: "animal-bird",
+ sort_order: 612,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ owl: {
+ char: "🦉",
+ key: "owl",
+ keywords: ["owl", "OWL"],
+ category: "animals_and_nature",
+ lib: {
+ name: "OWL",
+ unified: "1F989",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f989.png",
+ sheet_x: 44,
+ sheet_y: 29,
+ short_name: "owl",
+ short_names: ["owl"],
+ text: null,
+ texts: null,
+ category: "Animals & Nature",
+ subcategory: "animal-bird",
+ sort_order: 613,
+ added_in: "3.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ dodo: {
+ char: "🦤",
+ key: "dodo",
+ keywords: ["dodo", "DODO"],
+ category: "animals_and_nature",
+ lib: {
+ name: "DODO",
+ unified: "1F9A4",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f9a4.png",
+ sheet_x: 44,
+ sheet_y: 56,
+ short_name: "dodo",
+ short_names: ["dodo"],
+ text: null,
+ texts: null,
+ category: "Animals & Nature",
+ subcategory: "animal-bird",
+ sort_order: 614,
+ added_in: "13.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ feather: {
+ char: "🪶",
+ key: "feather",
+ keywords: ["feather", "FEATHER"],
+ category: "animals_and_nature",
+ lib: {
+ name: "FEATHER",
+ unified: "1FAB6",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1fab6.png",
+ sheet_x: 54,
+ sheet_y: 47,
+ short_name: "feather",
+ short_names: ["feather"],
+ text: null,
+ texts: null,
+ category: "Animals & Nature",
+ subcategory: "animal-bird",
+ sort_order: 615,
+ added_in: "13.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ flamingo: {
+ char: "🦩",
+ key: "flamingo",
+ keywords: ["flamingo", "FLAMINGO"],
+ category: "animals_and_nature",
+ lib: {
+ name: "FLAMINGO",
+ unified: "1F9A9",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f9a9.png",
+ sheet_x: 45,
+ sheet_y: 0,
+ short_name: "flamingo",
+ short_names: ["flamingo"],
+ text: null,
+ texts: null,
+ category: "Animals & Nature",
+ subcategory: "animal-bird",
+ sort_order: 616,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ peacock: {
+ char: "🦚",
+ key: "peacock",
+ keywords: ["peacock", "PEACOCK"],
+ category: "animals_and_nature",
+ lib: {
+ name: "PEACOCK",
+ unified: "1F99A",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f99a.png",
+ sheet_x: 44,
+ sheet_y: 46,
+ short_name: "peacock",
+ short_names: ["peacock"],
+ text: null,
+ texts: null,
+ category: "Animals & Nature",
+ subcategory: "animal-bird",
+ sort_order: 617,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ parrot: {
+ char: "🦜",
+ key: "parrot",
+ keywords: ["parrot", "PARROT"],
+ category: "animals_and_nature",
+ lib: {
+ name: "PARROT",
+ unified: "1F99C",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f99c.png",
+ sheet_x: 44,
+ sheet_y: 48,
+ short_name: "parrot",
+ short_names: ["parrot"],
+ text: null,
+ texts: null,
+ category: "Animals & Nature",
+ subcategory: "animal-bird",
+ sort_order: 618,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ wing: {
+ char: "🪽",
+ key: "wing",
+ keywords: ["wing", "WING"],
+ category: "animals_and_nature",
+ lib: {
+ name: "WING",
+ unified: "1FABD",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1fabd.png",
+ sheet_x: 54,
+ sheet_y: 54,
+ short_name: "wing",
+ short_names: ["wing"],
+ text: null,
+ texts: null,
+ category: "Animals & Nature",
+ subcategory: "animal-bird",
+ sort_order: 619,
+ added_in: "15.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: false,
+ has_img_facebook: false,
+ },
+ },
+ black_bird: {
+ char: "🐦⬛",
+ key: "black_bird",
+ keywords: ["black_bird", "BLACK BIRD"],
+ category: "animals_and_nature",
+ lib: {
+ name: "BLACK BIRD",
+ unified: "1F426-200D-2B1B",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f426-200d-2b1b.png",
+ sheet_x: 11,
+ sheet_y: 25,
+ short_name: "black_bird",
+ short_names: ["black_bird"],
+ text: null,
+ texts: null,
+ category: "Animals & Nature",
+ subcategory: "animal-bird",
+ sort_order: 620,
+ added_in: "15.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: false,
+ has_img_facebook: false,
+ },
+ },
+ goose: {
+ char: "🪿",
+ key: "goose",
+ keywords: ["goose", "GOOSE"],
+ category: "animals_and_nature",
+ lib: {
+ name: "GOOSE",
+ unified: "1FABF",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1fabf.png",
+ sheet_x: 54,
+ sheet_y: 55,
+ short_name: "goose",
+ short_names: ["goose"],
+ text: null,
+ texts: null,
+ category: "Animals & Nature",
+ subcategory: "animal-bird",
+ sort_order: 621,
+ added_in: "15.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: false,
+ has_img_facebook: false,
+ },
+ },
+ frog: {
+ char: "🐸",
+ key: "frog",
+ keywords: ["frog", "FROG FACE"],
+ category: "animals_and_nature",
+ lib: {
+ name: "FROG FACE",
+ unified: "1F438",
+ non_qualified: null,
+ docomo: null,
+ au: "E4DA",
+ softbank: "E531",
+ google: "FE1D7",
+ image: "1f438.png",
+ sheet_x: 11,
+ sheet_y: 44,
+ short_name: "frog",
+ short_names: ["frog"],
+ text: null,
+ texts: null,
+ category: "Animals & Nature",
+ subcategory: "animal-amphibian",
+ sort_order: 622,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ crocodile: {
+ char: "🐊",
+ key: "crocodile",
+ keywords: ["crocodile", "CROCODILE"],
+ category: "animals_and_nature",
+ lib: {
+ name: "CROCODILE",
+ unified: "1F40A",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f40a.png",
+ sheet_x: 10,
+ sheet_y: 57,
+ short_name: "crocodile",
+ short_names: ["crocodile"],
+ text: null,
+ texts: null,
+ category: "Animals & Nature",
+ subcategory: "animal-reptile",
+ sort_order: 623,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ turtle: {
+ char: "🐢",
+ key: "turtle",
+ keywords: ["turtle", "TURTLE"],
+ category: "animals_and_nature",
+ lib: {
+ name: "TURTLE",
+ unified: "1F422",
+ non_qualified: null,
+ docomo: null,
+ au: "E5D4",
+ softbank: null,
+ google: "FE1DC",
+ image: "1f422.png",
+ sheet_x: 11,
+ sheet_y: 21,
+ short_name: "turtle",
+ short_names: ["turtle"],
+ text: null,
+ texts: null,
+ category: "Animals & Nature",
+ subcategory: "animal-reptile",
+ sort_order: 624,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ lizard: {
+ char: "🦎",
+ key: "lizard",
+ keywords: ["lizard", "LIZARD"],
+ category: "animals_and_nature",
+ lib: {
+ name: "LIZARD",
+ unified: "1F98E",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f98e.png",
+ sheet_x: 44,
+ sheet_y: 34,
+ short_name: "lizard",
+ short_names: ["lizard"],
+ text: null,
+ texts: null,
+ category: "Animals & Nature",
+ subcategory: "animal-reptile",
+ sort_order: 625,
+ added_in: "3.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ snake: {
+ char: "🐍",
+ key: "snake",
+ keywords: ["snake", "SNAKE"],
+ category: "animals_and_nature",
+ lib: {
+ name: "SNAKE",
+ unified: "1F40D",
+ non_qualified: null,
+ docomo: null,
+ au: "EB22",
+ softbank: "E52D",
+ google: "FE1D3",
+ image: "1f40d.png",
+ sheet_x: 10,
+ sheet_y: 60,
+ short_name: "snake",
+ short_names: ["snake"],
+ text: null,
+ texts: null,
+ category: "Animals & Nature",
+ subcategory: "animal-reptile",
+ sort_order: 626,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ dragon_face: {
+ char: "🐲",
+ key: "dragon_face",
+ keywords: ["dragon_face", "DRAGON FACE"],
+ category: "animals_and_nature",
+ lib: {
+ name: "DRAGON FACE",
+ unified: "1F432",
+ non_qualified: null,
+ docomo: null,
+ au: "EB3F",
+ softbank: null,
+ google: "FE1DE",
+ image: "1f432.png",
+ sheet_x: 11,
+ sheet_y: 38,
+ short_name: "dragon_face",
+ short_names: ["dragon_face"],
+ text: null,
+ texts: null,
+ category: "Animals & Nature",
+ subcategory: "animal-reptile",
+ sort_order: 627,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ dragon: {
+ char: "🐉",
+ key: "dragon",
+ keywords: ["dragon", "DRAGON"],
+ category: "animals_and_nature",
+ lib: {
+ name: "DRAGON",
+ unified: "1F409",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f409.png",
+ sheet_x: 10,
+ sheet_y: 56,
+ short_name: "dragon",
+ short_names: ["dragon"],
+ text: null,
+ texts: null,
+ category: "Animals & Nature",
+ subcategory: "animal-reptile",
+ sort_order: 628,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ sauropod: {
+ char: "🦕",
+ key: "sauropod",
+ keywords: ["sauropod", "SAUROPOD"],
+ category: "animals_and_nature",
+ lib: {
+ name: "SAUROPOD",
+ unified: "1F995",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f995.png",
+ sheet_x: 44,
+ sheet_y: 41,
+ short_name: "sauropod",
+ short_names: ["sauropod"],
+ text: null,
+ texts: null,
+ category: "Animals & Nature",
+ subcategory: "animal-reptile",
+ sort_order: 629,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "t-rex": {
+ char: "🦖",
+ key: "t-rex",
+ keywords: ["t-rex", "T-REX"],
+ category: "animals_and_nature",
+ lib: {
+ name: "T-REX",
+ unified: "1F996",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f996.png",
+ sheet_x: 44,
+ sheet_y: 42,
+ short_name: "t-rex",
+ short_names: ["t-rex"],
+ text: null,
+ texts: null,
+ category: "Animals & Nature",
+ subcategory: "animal-reptile",
+ sort_order: 630,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ whale: {
+ char: "🐳",
+ key: "whale",
+ keywords: ["whale", "SPOUTING WHALE"],
+ category: "animals_and_nature",
+ lib: {
+ name: "SPOUTING WHALE",
+ unified: "1F433",
+ non_qualified: null,
+ docomo: null,
+ au: "E470",
+ softbank: "E054",
+ google: "FE1C3",
+ image: "1f433.png",
+ sheet_x: 11,
+ sheet_y: 39,
+ short_name: "whale",
+ short_names: ["whale"],
+ text: null,
+ texts: null,
+ category: "Animals & Nature",
+ subcategory: "animal-marine",
+ sort_order: 631,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ whale2: {
+ char: "🐋",
+ key: "whale2",
+ keywords: ["whale2", "WHALE"],
+ category: "animals_and_nature",
+ lib: {
+ name: "WHALE",
+ unified: "1F40B",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f40b.png",
+ sheet_x: 10,
+ sheet_y: 58,
+ short_name: "whale2",
+ short_names: ["whale2"],
+ text: null,
+ texts: null,
+ category: "Animals & Nature",
+ subcategory: "animal-marine",
+ sort_order: 632,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ dolphin: {
+ char: "🐬",
+ key: "dolphin",
+ keywords: ["dolphin", "DOLPHIN"],
+ category: "animals_and_nature",
+ lib: {
+ name: "DOLPHIN",
+ unified: "1F42C",
+ non_qualified: null,
+ docomo: null,
+ au: "EB1B",
+ softbank: "E520",
+ google: "FE1C7",
+ image: "1f42c.png",
+ sheet_x: 11,
+ sheet_y: 32,
+ short_name: "dolphin",
+ short_names: ["dolphin", "flipper"],
+ text: null,
+ texts: null,
+ category: "Animals & Nature",
+ subcategory: "animal-marine",
+ sort_order: 633,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ seal: {
+ char: "🦭",
+ key: "seal",
+ keywords: ["seal", "SEAL"],
+ category: "animals_and_nature",
+ lib: {
+ name: "SEAL",
+ unified: "1F9AD",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f9ad.png",
+ sheet_x: 45,
+ sheet_y: 4,
+ short_name: "seal",
+ short_names: ["seal"],
+ text: null,
+ texts: null,
+ category: "Animals & Nature",
+ subcategory: "animal-marine",
+ sort_order: 634,
+ added_in: "13.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ fish: {
+ char: "🐟",
+ key: "fish",
+ keywords: ["fish", "FISH"],
+ category: "animals_and_nature",
+ lib: {
+ name: "FISH",
+ unified: "1F41F",
+ non_qualified: null,
+ docomo: "E751",
+ au: "E49A",
+ softbank: "E019",
+ google: "FE1BD",
+ image: "1f41f.png",
+ sheet_x: 11,
+ sheet_y: 18,
+ short_name: "fish",
+ short_names: ["fish"],
+ text: null,
+ texts: null,
+ category: "Animals & Nature",
+ subcategory: "animal-marine",
+ sort_order: 635,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ tropical_fish: {
+ char: "🐠",
+ key: "tropical_fish",
+ keywords: ["tropical_fish", "TROPICAL FISH"],
+ category: "animals_and_nature",
+ lib: {
+ name: "TROPICAL FISH",
+ unified: "1F420",
+ non_qualified: null,
+ docomo: "E751",
+ au: "EB1D",
+ softbank: "E522",
+ google: "FE1C9",
+ image: "1f420.png",
+ sheet_x: 11,
+ sheet_y: 19,
+ short_name: "tropical_fish",
+ short_names: ["tropical_fish"],
+ text: null,
+ texts: null,
+ category: "Animals & Nature",
+ subcategory: "animal-marine",
+ sort_order: 636,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ blowfish: {
+ char: "🐡",
+ key: "blowfish",
+ keywords: ["blowfish", "BLOWFISH"],
+ category: "animals_and_nature",
+ lib: {
+ name: "BLOWFISH",
+ unified: "1F421",
+ non_qualified: null,
+ docomo: "E751",
+ au: "E4D3",
+ softbank: null,
+ google: "FE1D9",
+ image: "1f421.png",
+ sheet_x: 11,
+ sheet_y: 20,
+ short_name: "blowfish",
+ short_names: ["blowfish"],
+ text: null,
+ texts: null,
+ category: "Animals & Nature",
+ subcategory: "animal-marine",
+ sort_order: 637,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ shark: {
+ char: "🦈",
+ key: "shark",
+ keywords: ["shark", "SHARK"],
+ category: "animals_and_nature",
+ lib: {
+ name: "SHARK",
+ unified: "1F988",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f988.png",
+ sheet_x: 44,
+ sheet_y: 28,
+ short_name: "shark",
+ short_names: ["shark"],
+ text: null,
+ texts: null,
+ category: "Animals & Nature",
+ subcategory: "animal-marine",
+ sort_order: 638,
+ added_in: "3.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ octopus: {
+ char: "🐙",
+ key: "octopus",
+ keywords: ["octopus", "OCTOPUS"],
+ category: "animals_and_nature",
+ lib: {
+ name: "OCTOPUS",
+ unified: "1F419",
+ non_qualified: null,
+ docomo: null,
+ au: "E5C7",
+ softbank: "E10A",
+ google: "FE1C5",
+ image: "1f419.png",
+ sheet_x: 11,
+ sheet_y: 12,
+ short_name: "octopus",
+ short_names: ["octopus"],
+ text: null,
+ texts: null,
+ category: "Animals & Nature",
+ subcategory: "animal-marine",
+ sort_order: 639,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ shell: {
+ char: "🐚",
+ key: "shell",
+ keywords: ["shell", "SPIRAL SHELL"],
+ category: "animals_and_nature",
+ lib: {
+ name: "SPIRAL SHELL",
+ unified: "1F41A",
+ non_qualified: null,
+ docomo: null,
+ au: "EAEC",
+ softbank: "E441",
+ google: "FE1C6",
+ image: "1f41a.png",
+ sheet_x: 11,
+ sheet_y: 13,
+ short_name: "shell",
+ short_names: ["shell"],
+ text: null,
+ texts: null,
+ category: "Animals & Nature",
+ subcategory: "animal-marine",
+ sort_order: 640,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ coral: {
+ char: "🪸",
+ key: "coral",
+ keywords: ["coral", "CORAL"],
+ category: "animals_and_nature",
+ lib: {
+ name: "CORAL",
+ unified: "1FAB8",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1fab8.png",
+ sheet_x: 54,
+ sheet_y: 49,
+ short_name: "coral",
+ short_names: ["coral"],
+ text: null,
+ texts: null,
+ category: "Animals & Nature",
+ subcategory: "animal-marine",
+ sort_order: 641,
+ added_in: "14.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ jellyfish: {
+ char: "🪼",
+ key: "jellyfish",
+ keywords: ["jellyfish", "JELLYFISH"],
+ category: "animals_and_nature",
+ lib: {
+ name: "JELLYFISH",
+ unified: "1FABC",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1fabc.png",
+ sheet_x: 54,
+ sheet_y: 53,
+ short_name: "jellyfish",
+ short_names: ["jellyfish"],
+ text: null,
+ texts: null,
+ category: "Animals & Nature",
+ subcategory: "animal-marine",
+ sort_order: 642,
+ added_in: "15.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: false,
+ has_img_facebook: false,
+ },
+ },
+ snail: {
+ char: "🐌",
+ key: "snail",
+ keywords: ["snail", "SNAIL"],
+ category: "animals_and_nature",
+ lib: {
+ name: "SNAIL",
+ unified: "1F40C",
+ non_qualified: null,
+ docomo: "E74E",
+ au: "EB7E",
+ softbank: null,
+ google: "FE1B9",
+ image: "1f40c.png",
+ sheet_x: 10,
+ sheet_y: 59,
+ short_name: "snail",
+ short_names: ["snail"],
+ text: null,
+ texts: null,
+ category: "Animals & Nature",
+ subcategory: "animal-bug",
+ sort_order: 643,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ butterfly: {
+ char: "🦋",
+ key: "butterfly",
+ keywords: ["butterfly", "BUTTERFLY"],
+ category: "animals_and_nature",
+ lib: {
+ name: "BUTTERFLY",
+ unified: "1F98B",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f98b.png",
+ sheet_x: 44,
+ sheet_y: 31,
+ short_name: "butterfly",
+ short_names: ["butterfly"],
+ text: null,
+ texts: null,
+ category: "Animals & Nature",
+ subcategory: "animal-bug",
+ sort_order: 644,
+ added_in: "3.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ bug: {
+ char: "🐛",
+ key: "bug",
+ keywords: ["bug", "BUG"],
+ category: "animals_and_nature",
+ lib: {
+ name: "BUG",
+ unified: "1F41B",
+ non_qualified: null,
+ docomo: null,
+ au: "EB1E",
+ softbank: "E525",
+ google: "FE1CB",
+ image: "1f41b.png",
+ sheet_x: 11,
+ sheet_y: 14,
+ short_name: "bug",
+ short_names: ["bug"],
+ text: null,
+ texts: null,
+ category: "Animals & Nature",
+ subcategory: "animal-bug",
+ sort_order: 645,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ ant: {
+ char: "🐜",
+ key: "ant",
+ keywords: ["ant", "ANT"],
+ category: "animals_and_nature",
+ lib: {
+ name: "ANT",
+ unified: "1F41C",
+ non_qualified: null,
+ docomo: null,
+ au: "E4DD",
+ softbank: null,
+ google: "FE1DA",
+ image: "1f41c.png",
+ sheet_x: 11,
+ sheet_y: 15,
+ short_name: "ant",
+ short_names: ["ant"],
+ text: null,
+ texts: null,
+ category: "Animals & Nature",
+ subcategory: "animal-bug",
+ sort_order: 646,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ bee: {
+ char: "🐝",
+ key: "bee",
+ keywords: ["bee", "HONEYBEE"],
+ category: "animals_and_nature",
+ lib: {
+ name: "HONEYBEE",
+ unified: "1F41D",
+ non_qualified: null,
+ docomo: null,
+ au: "EB57",
+ softbank: null,
+ google: "FE1E1",
+ image: "1f41d.png",
+ sheet_x: 11,
+ sheet_y: 16,
+ short_name: "bee",
+ short_names: ["bee", "honeybee"],
+ text: null,
+ texts: null,
+ category: "Animals & Nature",
+ subcategory: "animal-bug",
+ sort_order: 647,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ beetle: {
+ char: "🪲",
+ key: "beetle",
+ keywords: ["beetle", "BEETLE"],
+ category: "animals_and_nature",
+ lib: {
+ name: "BEETLE",
+ unified: "1FAB2",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1fab2.png",
+ sheet_x: 54,
+ sheet_y: 43,
+ short_name: "beetle",
+ short_names: ["beetle"],
+ text: null,
+ texts: null,
+ category: "Animals & Nature",
+ subcategory: "animal-bug",
+ sort_order: 648,
+ added_in: "13.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ ladybug: {
+ char: "🐞",
+ key: "ladybug",
+ keywords: ["ladybug", "LADY BEETLE"],
+ category: "animals_and_nature",
+ lib: {
+ name: "LADY BEETLE",
+ unified: "1F41E",
+ non_qualified: null,
+ docomo: null,
+ au: "EB58",
+ softbank: null,
+ google: "FE1E2",
+ image: "1f41e.png",
+ sheet_x: 11,
+ sheet_y: 17,
+ short_name: "ladybug",
+ short_names: ["ladybug", "lady_beetle"],
+ text: null,
+ texts: null,
+ category: "Animals & Nature",
+ subcategory: "animal-bug",
+ sort_order: 649,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ cricket: {
+ char: "🦗",
+ key: "cricket",
+ keywords: ["cricket", "CRICKET"],
+ category: "animals_and_nature",
+ lib: {
+ name: "CRICKET",
+ unified: "1F997",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f997.png",
+ sheet_x: 44,
+ sheet_y: 43,
+ short_name: "cricket",
+ short_names: ["cricket"],
+ text: null,
+ texts: null,
+ category: "Animals & Nature",
+ subcategory: "animal-bug",
+ sort_order: 650,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ cockroach: {
+ char: "🪳",
+ key: "cockroach",
+ keywords: ["cockroach", "COCKROACH"],
+ category: "animals_and_nature",
+ lib: {
+ name: "COCKROACH",
+ unified: "1FAB3",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1fab3.png",
+ sheet_x: 54,
+ sheet_y: 44,
+ short_name: "cockroach",
+ short_names: ["cockroach"],
+ text: null,
+ texts: null,
+ category: "Animals & Nature",
+ subcategory: "animal-bug",
+ sort_order: 651,
+ added_in: "13.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ spider: {
+ char: "🕷️",
+ key: "spider",
+ keywords: ["spider", "SPIDER"],
+ category: "animals_and_nature",
+ lib: {
+ name: "SPIDER",
+ unified: "1F577-FE0F",
+ non_qualified: "1F577",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f577-fe0f.png",
+ sheet_x: 31,
+ sheet_y: 24,
+ short_name: "spider",
+ short_names: ["spider"],
+ text: null,
+ texts: null,
+ category: "Animals & Nature",
+ subcategory: "animal-bug",
+ sort_order: 652,
+ added_in: "0.7",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ spider_web: {
+ char: "🕸️",
+ key: "spider_web",
+ keywords: ["spider_web", "SPIDER WEB"],
+ category: "animals_and_nature",
+ lib: {
+ name: "SPIDER WEB",
+ unified: "1F578-FE0F",
+ non_qualified: "1F578",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f578-fe0f.png",
+ sheet_x: 31,
+ sheet_y: 25,
+ short_name: "spider_web",
+ short_names: ["spider_web"],
+ text: null,
+ texts: null,
+ category: "Animals & Nature",
+ subcategory: "animal-bug",
+ sort_order: 653,
+ added_in: "0.7",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ scorpion: {
+ char: "🦂",
+ key: "scorpion",
+ keywords: ["scorpion", "SCORPION"],
+ category: "animals_and_nature",
+ lib: {
+ name: "SCORPION",
+ unified: "1F982",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f982.png",
+ sheet_x: 44,
+ sheet_y: 22,
+ short_name: "scorpion",
+ short_names: ["scorpion"],
+ text: null,
+ texts: null,
+ category: "Animals & Nature",
+ subcategory: "animal-bug",
+ sort_order: 654,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ mosquito: {
+ char: "🦟",
+ key: "mosquito",
+ keywords: ["mosquito", "MOSQUITO"],
+ category: "animals_and_nature",
+ lib: {
+ name: "MOSQUITO",
+ unified: "1F99F",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f99f.png",
+ sheet_x: 44,
+ sheet_y: 51,
+ short_name: "mosquito",
+ short_names: ["mosquito"],
+ text: null,
+ texts: null,
+ category: "Animals & Nature",
+ subcategory: "animal-bug",
+ sort_order: 655,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ fly: {
+ char: "🪰",
+ key: "fly",
+ keywords: ["fly", "FLY"],
+ category: "animals_and_nature",
+ lib: {
+ name: "FLY",
+ unified: "1FAB0",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1fab0.png",
+ sheet_x: 54,
+ sheet_y: 41,
+ short_name: "fly",
+ short_names: ["fly"],
+ text: null,
+ texts: null,
+ category: "Animals & Nature",
+ subcategory: "animal-bug",
+ sort_order: 656,
+ added_in: "13.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ worm: {
+ char: "🪱",
+ key: "worm",
+ keywords: ["worm", "WORM"],
+ category: "animals_and_nature",
+ lib: {
+ name: "WORM",
+ unified: "1FAB1",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1fab1.png",
+ sheet_x: 54,
+ sheet_y: 42,
+ short_name: "worm",
+ short_names: ["worm"],
+ text: null,
+ texts: null,
+ category: "Animals & Nature",
+ subcategory: "animal-bug",
+ sort_order: 657,
+ added_in: "13.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ microbe: {
+ char: "🦠",
+ key: "microbe",
+ keywords: ["microbe", "MICROBE"],
+ category: "animals_and_nature",
+ lib: {
+ name: "MICROBE",
+ unified: "1F9A0",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f9a0.png",
+ sheet_x: 44,
+ sheet_y: 52,
+ short_name: "microbe",
+ short_names: ["microbe"],
+ text: null,
+ texts: null,
+ category: "Animals & Nature",
+ subcategory: "animal-bug",
+ sort_order: 658,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ bouquet: {
+ char: "💐",
+ key: "bouquet",
+ keywords: ["bouquet", "BOUQUET"],
+ category: "animals_and_nature",
+ lib: {
+ name: "BOUQUET",
+ unified: "1F490",
+ non_qualified: null,
+ docomo: null,
+ au: "EA95",
+ softbank: "E306",
+ google: "FE828",
+ image: "1f490.png",
+ sheet_x: 27,
+ sheet_y: 7,
+ short_name: "bouquet",
+ short_names: ["bouquet"],
+ text: null,
+ texts: null,
+ category: "Animals & Nature",
+ subcategory: "plant-flower",
+ sort_order: 659,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ cherry_blossom: {
+ char: "🌸",
+ key: "cherry_blossom",
+ keywords: ["cherry_blossom", "CHERRY BLOSSOM"],
+ category: "animals_and_nature",
+ lib: {
+ name: "CHERRY BLOSSOM",
+ unified: "1F338",
+ non_qualified: null,
+ docomo: "E748",
+ au: "E4CA",
+ softbank: "E030",
+ google: "FE040",
+ image: "1f338.png",
+ sheet_x: 5,
+ sheet_y: 53,
+ short_name: "cherry_blossom",
+ short_names: ["cherry_blossom"],
+ text: null,
+ texts: null,
+ category: "Animals & Nature",
+ subcategory: "plant-flower",
+ sort_order: 660,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ white_flower: {
+ char: "💮",
+ key: "white_flower",
+ keywords: ["white_flower", "WHITE FLOWER"],
+ category: "animals_and_nature",
+ lib: {
+ name: "WHITE FLOWER",
+ unified: "1F4AE",
+ non_qualified: null,
+ docomo: null,
+ au: "E4F0",
+ softbank: null,
+ google: "FEB7A",
+ image: "1f4ae.png",
+ sheet_x: 28,
+ sheet_y: 6,
+ short_name: "white_flower",
+ short_names: ["white_flower"],
+ text: null,
+ texts: null,
+ category: "Animals & Nature",
+ subcategory: "plant-flower",
+ sort_order: 661,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ lotus: {
+ char: "🪷",
+ key: "lotus",
+ keywords: ["lotus", "LOTUS"],
+ category: "animals_and_nature",
+ lib: {
+ name: "LOTUS",
+ unified: "1FAB7",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1fab7.png",
+ sheet_x: 54,
+ sheet_y: 48,
+ short_name: "lotus",
+ short_names: ["lotus"],
+ text: null,
+ texts: null,
+ category: "Animals & Nature",
+ subcategory: "plant-flower",
+ sort_order: 662,
+ added_in: "14.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ rosette: {
+ char: "🏵️",
+ key: "rosette",
+ keywords: ["rosette", "ROSETTE"],
+ category: "animals_and_nature",
+ lib: {
+ name: "ROSETTE",
+ unified: "1F3F5-FE0F",
+ non_qualified: "1F3F5",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f3f5-fe0f.png",
+ sheet_x: 10,
+ sheet_y: 36,
+ short_name: "rosette",
+ short_names: ["rosette"],
+ text: null,
+ texts: null,
+ category: "Animals & Nature",
+ subcategory: "plant-flower",
+ sort_order: 663,
+ added_in: "0.7",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ rose: {
+ char: "🌹",
+ key: "rose",
+ keywords: ["rose", "ROSE"],
+ category: "animals_and_nature",
+ lib: {
+ name: "ROSE",
+ unified: "1F339",
+ non_qualified: null,
+ docomo: null,
+ au: "E5BA",
+ softbank: "E032",
+ google: "FE041",
+ image: "1f339.png",
+ sheet_x: 5,
+ sheet_y: 54,
+ short_name: "rose",
+ short_names: ["rose"],
+ text: null,
+ texts: null,
+ category: "Animals & Nature",
+ subcategory: "plant-flower",
+ sort_order: 664,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ wilted_flower: {
+ char: "🥀",
+ key: "wilted_flower",
+ keywords: ["wilted_flower", "WILTED FLOWER"],
+ category: "animals_and_nature",
+ lib: {
+ name: "WILTED FLOWER",
+ unified: "1F940",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f940.png",
+ sheet_x: 43,
+ sheet_y: 13,
+ short_name: "wilted_flower",
+ short_names: ["wilted_flower"],
+ text: null,
+ texts: null,
+ category: "Animals & Nature",
+ subcategory: "plant-flower",
+ sort_order: 665,
+ added_in: "3.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ hibiscus: {
+ char: "🌺",
+ key: "hibiscus",
+ keywords: ["hibiscus", "HIBISCUS"],
+ category: "animals_and_nature",
+ lib: {
+ name: "HIBISCUS",
+ unified: "1F33A",
+ non_qualified: null,
+ docomo: null,
+ au: "EA94",
+ softbank: "E303",
+ google: "FE045",
+ image: "1f33a.png",
+ sheet_x: 5,
+ sheet_y: 55,
+ short_name: "hibiscus",
+ short_names: ["hibiscus"],
+ text: null,
+ texts: null,
+ category: "Animals & Nature",
+ subcategory: "plant-flower",
+ sort_order: 666,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ sunflower: {
+ char: "🌻",
+ key: "sunflower",
+ keywords: ["sunflower", "SUNFLOWER"],
+ category: "animals_and_nature",
+ lib: {
+ name: "SUNFLOWER",
+ unified: "1F33B",
+ non_qualified: null,
+ docomo: null,
+ au: "E4E3",
+ softbank: "E305",
+ google: "FE046",
+ image: "1f33b.png",
+ sheet_x: 5,
+ sheet_y: 56,
+ short_name: "sunflower",
+ short_names: ["sunflower"],
+ text: null,
+ texts: null,
+ category: "Animals & Nature",
+ subcategory: "plant-flower",
+ sort_order: 667,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ blossom: {
+ char: "🌼",
+ key: "blossom",
+ keywords: ["blossom", "BLOSSOM"],
+ category: "animals_and_nature",
+ lib: {
+ name: "BLOSSOM",
+ unified: "1F33C",
+ non_qualified: null,
+ docomo: null,
+ au: "EB49",
+ softbank: null,
+ google: "FE04D",
+ image: "1f33c.png",
+ sheet_x: 5,
+ sheet_y: 57,
+ short_name: "blossom",
+ short_names: ["blossom"],
+ text: null,
+ texts: null,
+ category: "Animals & Nature",
+ subcategory: "plant-flower",
+ sort_order: 668,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ tulip: {
+ char: "🌷",
+ key: "tulip",
+ keywords: ["tulip", "TULIP"],
+ category: "animals_and_nature",
+ lib: {
+ name: "TULIP",
+ unified: "1F337",
+ non_qualified: null,
+ docomo: "E743",
+ au: "E4E4",
+ softbank: "E304",
+ google: "FE03D",
+ image: "1f337.png",
+ sheet_x: 5,
+ sheet_y: 52,
+ short_name: "tulip",
+ short_names: ["tulip"],
+ text: null,
+ texts: null,
+ category: "Animals & Nature",
+ subcategory: "plant-flower",
+ sort_order: 669,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ hyacinth: {
+ char: "🪻",
+ key: "hyacinth",
+ keywords: ["hyacinth", "HYACINTH"],
+ category: "animals_and_nature",
+ lib: {
+ name: "HYACINTH",
+ unified: "1FABB",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1fabb.png",
+ sheet_x: 54,
+ sheet_y: 52,
+ short_name: "hyacinth",
+ short_names: ["hyacinth"],
+ text: null,
+ texts: null,
+ category: "Animals & Nature",
+ subcategory: "plant-flower",
+ sort_order: 670,
+ added_in: "15.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: false,
+ has_img_facebook: false,
+ },
+ },
+ seedling: {
+ char: "🌱",
+ key: "seedling",
+ keywords: ["seedling", "SEEDLING"],
+ category: "animals_and_nature",
+ lib: {
+ name: "SEEDLING",
+ unified: "1F331",
+ non_qualified: null,
+ docomo: "E746",
+ au: "EB7D",
+ softbank: null,
+ google: "FE03E",
+ image: "1f331.png",
+ sheet_x: 5,
+ sheet_y: 46,
+ short_name: "seedling",
+ short_names: ["seedling"],
+ text: null,
+ texts: null,
+ category: "Animals & Nature",
+ subcategory: "plant-other",
+ sort_order: 671,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ potted_plant: {
+ char: "🪴",
+ key: "potted_plant",
+ keywords: ["potted_plant", "POTTED PLANT"],
+ category: "animals_and_nature",
+ lib: {
+ name: "POTTED PLANT",
+ unified: "1FAB4",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1fab4.png",
+ sheet_x: 54,
+ sheet_y: 45,
+ short_name: "potted_plant",
+ short_names: ["potted_plant"],
+ text: null,
+ texts: null,
+ category: "Animals & Nature",
+ subcategory: "plant-other",
+ sort_order: 672,
+ added_in: "13.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ evergreen_tree: {
+ char: "🌲",
+ key: "evergreen_tree",
+ keywords: ["evergreen_tree", "EVERGREEN TREE"],
+ category: "animals_and_nature",
+ lib: {
+ name: "EVERGREEN TREE",
+ unified: "1F332",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f332.png",
+ sheet_x: 5,
+ sheet_y: 47,
+ short_name: "evergreen_tree",
+ short_names: ["evergreen_tree"],
+ text: null,
+ texts: null,
+ category: "Animals & Nature",
+ subcategory: "plant-other",
+ sort_order: 673,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ deciduous_tree: {
+ char: "🌳",
+ key: "deciduous_tree",
+ keywords: ["deciduous_tree", "DECIDUOUS TREE"],
+ category: "animals_and_nature",
+ lib: {
+ name: "DECIDUOUS TREE",
+ unified: "1F333",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f333.png",
+ sheet_x: 5,
+ sheet_y: 48,
+ short_name: "deciduous_tree",
+ short_names: ["deciduous_tree"],
+ text: null,
+ texts: null,
+ category: "Animals & Nature",
+ subcategory: "plant-other",
+ sort_order: 674,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ palm_tree: {
+ char: "🌴",
+ key: "palm_tree",
+ keywords: ["palm_tree", "PALM TREE"],
+ category: "animals_and_nature",
+ lib: {
+ name: "PALM TREE",
+ unified: "1F334",
+ non_qualified: null,
+ docomo: null,
+ au: "E4E2",
+ softbank: "E307",
+ google: "FE047",
+ image: "1f334.png",
+ sheet_x: 5,
+ sheet_y: 49,
+ short_name: "palm_tree",
+ short_names: ["palm_tree"],
+ text: null,
+ texts: null,
+ category: "Animals & Nature",
+ subcategory: "plant-other",
+ sort_order: 675,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ cactus: {
+ char: "🌵",
+ key: "cactus",
+ keywords: ["cactus", "CACTUS"],
+ category: "animals_and_nature",
+ lib: {
+ name: "CACTUS",
+ unified: "1F335",
+ non_qualified: null,
+ docomo: null,
+ au: "EA96",
+ softbank: "E308",
+ google: "FE048",
+ image: "1f335.png",
+ sheet_x: 5,
+ sheet_y: 50,
+ short_name: "cactus",
+ short_names: ["cactus"],
+ text: null,
+ texts: null,
+ category: "Animals & Nature",
+ subcategory: "plant-other",
+ sort_order: 676,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ ear_of_rice: {
+ char: "🌾",
+ key: "ear_of_rice",
+ keywords: ["ear_of_rice", "EAR OF RICE"],
+ category: "animals_and_nature",
+ lib: {
+ name: "EAR OF RICE",
+ unified: "1F33E",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: "E444",
+ google: "FE049",
+ image: "1f33e.png",
+ sheet_x: 5,
+ sheet_y: 59,
+ short_name: "ear_of_rice",
+ short_names: ["ear_of_rice"],
+ text: null,
+ texts: null,
+ category: "Animals & Nature",
+ subcategory: "plant-other",
+ sort_order: 677,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ herb: {
+ char: "🌿",
+ key: "herb",
+ keywords: ["herb", "HERB"],
+ category: "animals_and_nature",
+ lib: {
+ name: "HERB",
+ unified: "1F33F",
+ non_qualified: null,
+ docomo: "E741",
+ au: "EB82",
+ softbank: null,
+ google: "FE04E",
+ image: "1f33f.png",
+ sheet_x: 5,
+ sheet_y: 60,
+ short_name: "herb",
+ short_names: ["herb"],
+ text: null,
+ texts: null,
+ category: "Animals & Nature",
+ subcategory: "plant-other",
+ sort_order: 678,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ shamrock: {
+ char: "☘️",
+ key: "shamrock",
+ keywords: ["shamrock", "SHAMROCK"],
+ category: "animals_and_nature",
+ lib: {
+ name: "SHAMROCK",
+ unified: "2618-FE0F",
+ non_qualified: "2618",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "2618-fe0f.png",
+ sheet_x: 57,
+ sheet_y: 19,
+ short_name: "shamrock",
+ short_names: ["shamrock"],
+ text: null,
+ texts: null,
+ category: "Animals & Nature",
+ subcategory: "plant-other",
+ sort_order: 679,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ four_leaf_clover: {
+ char: "🍀",
+ key: "four_leaf_clover",
+ keywords: ["four_leaf_clover", "FOUR LEAF CLOVER"],
+ category: "animals_and_nature",
+ lib: {
+ name: "FOUR LEAF CLOVER",
+ unified: "1F340",
+ non_qualified: null,
+ docomo: "E741",
+ au: "E513",
+ softbank: "E110",
+ google: "FE03C",
+ image: "1f340.png",
+ sheet_x: 6,
+ sheet_y: 0,
+ short_name: "four_leaf_clover",
+ short_names: ["four_leaf_clover"],
+ text: null,
+ texts: null,
+ category: "Animals & Nature",
+ subcategory: "plant-other",
+ sort_order: 680,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ maple_leaf: {
+ char: "🍁",
+ key: "maple_leaf",
+ keywords: ["maple_leaf", "MAPLE LEAF"],
+ category: "animals_and_nature",
+ lib: {
+ name: "MAPLE LEAF",
+ unified: "1F341",
+ non_qualified: null,
+ docomo: "E747",
+ au: "E4CE",
+ softbank: "E118",
+ google: "FE03F",
+ image: "1f341.png",
+ sheet_x: 6,
+ sheet_y: 1,
+ short_name: "maple_leaf",
+ short_names: ["maple_leaf"],
+ text: null,
+ texts: null,
+ category: "Animals & Nature",
+ subcategory: "plant-other",
+ sort_order: 681,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ fallen_leaf: {
+ char: "🍂",
+ key: "fallen_leaf",
+ keywords: ["fallen_leaf", "FALLEN LEAF"],
+ category: "animals_and_nature",
+ lib: {
+ name: "FALLEN LEAF",
+ unified: "1F342",
+ non_qualified: null,
+ docomo: "E747",
+ au: "E5CD",
+ softbank: "E119",
+ google: "FE042",
+ image: "1f342.png",
+ sheet_x: 6,
+ sheet_y: 2,
+ short_name: "fallen_leaf",
+ short_names: ["fallen_leaf"],
+ text: null,
+ texts: null,
+ category: "Animals & Nature",
+ subcategory: "plant-other",
+ sort_order: 682,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ leaves: {
+ char: "🍃",
+ key: "leaves",
+ keywords: ["leaves", "LEAF FLUTTERING IN WIND"],
+ category: "animals_and_nature",
+ lib: {
+ name: "LEAF FLUTTERING IN WIND",
+ unified: "1F343",
+ non_qualified: null,
+ docomo: null,
+ au: "E5CD",
+ softbank: "E447",
+ google: "FE043",
+ image: "1f343.png",
+ sheet_x: 6,
+ sheet_y: 3,
+ short_name: "leaves",
+ short_names: ["leaves"],
+ text: null,
+ texts: null,
+ category: "Animals & Nature",
+ subcategory: "plant-other",
+ sort_order: 683,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ empty_nest: {
+ char: "🪹",
+ key: "empty_nest",
+ keywords: ["empty_nest", "EMPTY NEST"],
+ category: "animals_and_nature",
+ lib: {
+ name: "EMPTY NEST",
+ unified: "1FAB9",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1fab9.png",
+ sheet_x: 54,
+ sheet_y: 50,
+ short_name: "empty_nest",
+ short_names: ["empty_nest"],
+ text: null,
+ texts: null,
+ category: "Animals & Nature",
+ subcategory: "plant-other",
+ sort_order: 684,
+ added_in: "14.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ nest_with_eggs: {
+ char: "🪺",
+ key: "nest_with_eggs",
+ keywords: ["nest_with_eggs", "NEST WITH EGGS"],
+ category: "animals_and_nature",
+ lib: {
+ name: "NEST WITH EGGS",
+ unified: "1FABA",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1faba.png",
+ sheet_x: 54,
+ sheet_y: 51,
+ short_name: "nest_with_eggs",
+ short_names: ["nest_with_eggs"],
+ text: null,
+ texts: null,
+ category: "Animals & Nature",
+ subcategory: "plant-other",
+ sort_order: 685,
+ added_in: "14.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ mushroom: {
+ char: "🍄",
+ key: "mushroom",
+ keywords: ["mushroom", "MUSHROOM"],
+ category: "animals_and_nature",
+ lib: {
+ name: "MUSHROOM",
+ unified: "1F344",
+ non_qualified: null,
+ docomo: null,
+ au: "EB37",
+ softbank: null,
+ google: "FE04B",
+ image: "1f344.png",
+ sheet_x: 6,
+ sheet_y: 4,
+ short_name: "mushroom",
+ short_names: ["mushroom"],
+ text: null,
+ texts: null,
+ category: "Animals & Nature",
+ subcategory: "plant-other",
+ sort_order: 686,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ grapes: {
+ char: "🍇",
+ key: "grapes",
+ keywords: ["grapes", "GRAPES"],
+ category: "food_and_drink",
+ lib: {
+ name: "GRAPES",
+ unified: "1F347",
+ non_qualified: null,
+ docomo: null,
+ au: "EB34",
+ softbank: null,
+ google: "FE059",
+ image: "1f347.png",
+ sheet_x: 6,
+ sheet_y: 7,
+ short_name: "grapes",
+ short_names: ["grapes"],
+ text: null,
+ texts: null,
+ category: "Food & Drink",
+ subcategory: "food-fruit",
+ sort_order: 687,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ melon: {
+ char: "🍈",
+ key: "melon",
+ keywords: ["melon", "MELON"],
+ category: "food_and_drink",
+ lib: {
+ name: "MELON",
+ unified: "1F348",
+ non_qualified: null,
+ docomo: null,
+ au: "EB32",
+ softbank: null,
+ google: "FE057",
+ image: "1f348.png",
+ sheet_x: 6,
+ sheet_y: 8,
+ short_name: "melon",
+ short_names: ["melon"],
+ text: null,
+ texts: null,
+ category: "Food & Drink",
+ subcategory: "food-fruit",
+ sort_order: 688,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ watermelon: {
+ char: "🍉",
+ key: "watermelon",
+ keywords: ["watermelon", "WATERMELON"],
+ category: "food_and_drink",
+ lib: {
+ name: "WATERMELON",
+ unified: "1F349",
+ non_qualified: null,
+ docomo: null,
+ au: "E4CD",
+ softbank: "E348",
+ google: "FE054",
+ image: "1f349.png",
+ sheet_x: 6,
+ sheet_y: 9,
+ short_name: "watermelon",
+ short_names: ["watermelon"],
+ text: null,
+ texts: null,
+ category: "Food & Drink",
+ subcategory: "food-fruit",
+ sort_order: 689,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ tangerine: {
+ char: "🍊",
+ key: "tangerine",
+ keywords: ["tangerine", "TANGERINE"],
+ category: "food_and_drink",
+ lib: {
+ name: "TANGERINE",
+ unified: "1F34A",
+ non_qualified: null,
+ docomo: null,
+ au: "EABA",
+ softbank: "E346",
+ google: "FE052",
+ image: "1f34a.png",
+ sheet_x: 6,
+ sheet_y: 10,
+ short_name: "tangerine",
+ short_names: ["tangerine"],
+ text: null,
+ texts: null,
+ category: "Food & Drink",
+ subcategory: "food-fruit",
+ sort_order: 690,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ lemon: {
+ char: "🍋",
+ key: "lemon",
+ keywords: ["lemon", "LEMON"],
+ category: "food_and_drink",
+ lib: {
+ name: "LEMON",
+ unified: "1F34B",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f34b.png",
+ sheet_x: 6,
+ sheet_y: 11,
+ short_name: "lemon",
+ short_names: ["lemon"],
+ text: null,
+ texts: null,
+ category: "Food & Drink",
+ subcategory: "food-fruit",
+ sort_order: 691,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ banana: {
+ char: "🍌",
+ key: "banana",
+ keywords: ["banana", "BANANA"],
+ category: "food_and_drink",
+ lib: {
+ name: "BANANA",
+ unified: "1F34C",
+ non_qualified: null,
+ docomo: "E744",
+ au: "EB35",
+ softbank: null,
+ google: "FE050",
+ image: "1f34c.png",
+ sheet_x: 6,
+ sheet_y: 12,
+ short_name: "banana",
+ short_names: ["banana"],
+ text: null,
+ texts: null,
+ category: "Food & Drink",
+ subcategory: "food-fruit",
+ sort_order: 692,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ pineapple: {
+ char: "🍍",
+ key: "pineapple",
+ keywords: ["pineapple", "PINEAPPLE"],
+ category: "food_and_drink",
+ lib: {
+ name: "PINEAPPLE",
+ unified: "1F34D",
+ non_qualified: null,
+ docomo: null,
+ au: "EB33",
+ softbank: null,
+ google: "FE058",
+ image: "1f34d.png",
+ sheet_x: 6,
+ sheet_y: 13,
+ short_name: "pineapple",
+ short_names: ["pineapple"],
+ text: null,
+ texts: null,
+ category: "Food & Drink",
+ subcategory: "food-fruit",
+ sort_order: 693,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ mango: {
+ char: "🥭",
+ key: "mango",
+ keywords: ["mango", "MANGO"],
+ category: "food_and_drink",
+ lib: {
+ name: "MANGO",
+ unified: "1F96D",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f96d.png",
+ sheet_x: 43,
+ sheet_y: 57,
+ short_name: "mango",
+ short_names: ["mango"],
+ text: null,
+ texts: null,
+ category: "Food & Drink",
+ subcategory: "food-fruit",
+ sort_order: 694,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ apple: {
+ char: "🍎",
+ key: "apple",
+ keywords: ["apple", "RED APPLE"],
+ category: "food_and_drink",
+ lib: {
+ name: "RED APPLE",
+ unified: "1F34E",
+ non_qualified: null,
+ docomo: "E745",
+ au: "EAB9",
+ softbank: "E345",
+ google: "FE051",
+ image: "1f34e.png",
+ sheet_x: 6,
+ sheet_y: 14,
+ short_name: "apple",
+ short_names: ["apple"],
+ text: null,
+ texts: null,
+ category: "Food & Drink",
+ subcategory: "food-fruit",
+ sort_order: 695,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ green_apple: {
+ char: "🍏",
+ key: "green_apple",
+ keywords: ["green_apple", "GREEN APPLE"],
+ category: "food_and_drink",
+ lib: {
+ name: "GREEN APPLE",
+ unified: "1F34F",
+ non_qualified: null,
+ docomo: "E745",
+ au: "EB5A",
+ softbank: null,
+ google: "FE05B",
+ image: "1f34f.png",
+ sheet_x: 6,
+ sheet_y: 15,
+ short_name: "green_apple",
+ short_names: ["green_apple"],
+ text: null,
+ texts: null,
+ category: "Food & Drink",
+ subcategory: "food-fruit",
+ sort_order: 696,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ pear: {
+ char: "🍐",
+ key: "pear",
+ keywords: ["pear", "PEAR"],
+ category: "food_and_drink",
+ lib: {
+ name: "PEAR",
+ unified: "1F350",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f350.png",
+ sheet_x: 6,
+ sheet_y: 16,
+ short_name: "pear",
+ short_names: ["pear"],
+ text: null,
+ texts: null,
+ category: "Food & Drink",
+ subcategory: "food-fruit",
+ sort_order: 697,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ peach: {
+ char: "🍑",
+ key: "peach",
+ keywords: ["peach", "PEACH"],
+ category: "food_and_drink",
+ lib: {
+ name: "PEACH",
+ unified: "1F351",
+ non_qualified: null,
+ docomo: null,
+ au: "EB39",
+ softbank: null,
+ google: "FE05A",
+ image: "1f351.png",
+ sheet_x: 6,
+ sheet_y: 17,
+ short_name: "peach",
+ short_names: ["peach"],
+ text: null,
+ texts: null,
+ category: "Food & Drink",
+ subcategory: "food-fruit",
+ sort_order: 698,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ cherries: {
+ char: "🍒",
+ key: "cherries",
+ keywords: ["cherries", "CHERRIES"],
+ category: "food_and_drink",
+ lib: {
+ name: "CHERRIES",
+ unified: "1F352",
+ non_qualified: null,
+ docomo: "E742",
+ au: "E4D2",
+ softbank: null,
+ google: "FE04F",
+ image: "1f352.png",
+ sheet_x: 6,
+ sheet_y: 18,
+ short_name: "cherries",
+ short_names: ["cherries"],
+ text: null,
+ texts: null,
+ category: "Food & Drink",
+ subcategory: "food-fruit",
+ sort_order: 699,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ strawberry: {
+ char: "🍓",
+ key: "strawberry",
+ keywords: ["strawberry", "STRAWBERRY"],
+ category: "food_and_drink",
+ lib: {
+ name: "STRAWBERRY",
+ unified: "1F353",
+ non_qualified: null,
+ docomo: null,
+ au: "E4D4",
+ softbank: "E347",
+ google: "FE053",
+ image: "1f353.png",
+ sheet_x: 6,
+ sheet_y: 19,
+ short_name: "strawberry",
+ short_names: ["strawberry"],
+ text: null,
+ texts: null,
+ category: "Food & Drink",
+ subcategory: "food-fruit",
+ sort_order: 700,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ blueberries: {
+ char: "🫐",
+ key: "blueberries",
+ keywords: ["blueberries", "BLUEBERRIES"],
+ category: "food_and_drink",
+ lib: {
+ name: "BLUEBERRIES",
+ unified: "1FAD0",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1fad0.png",
+ sheet_x: 55,
+ sheet_y: 18,
+ short_name: "blueberries",
+ short_names: ["blueberries"],
+ text: null,
+ texts: null,
+ category: "Food & Drink",
+ subcategory: "food-fruit",
+ sort_order: 701,
+ added_in: "13.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ kiwifruit: {
+ char: "🥝",
+ key: "kiwifruit",
+ keywords: ["kiwifruit", "KIWIFRUIT"],
+ category: "food_and_drink",
+ lib: {
+ name: "KIWIFRUIT",
+ unified: "1F95D",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f95d.png",
+ sheet_x: 43,
+ sheet_y: 41,
+ short_name: "kiwifruit",
+ short_names: ["kiwifruit"],
+ text: null,
+ texts: null,
+ category: "Food & Drink",
+ subcategory: "food-fruit",
+ sort_order: 702,
+ added_in: "3.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ tomato: {
+ char: "🍅",
+ key: "tomato",
+ keywords: ["tomato", "TOMATO"],
+ category: "food_and_drink",
+ lib: {
+ name: "TOMATO",
+ unified: "1F345",
+ non_qualified: null,
+ docomo: null,
+ au: "EABB",
+ softbank: "E349",
+ google: "FE055",
+ image: "1f345.png",
+ sheet_x: 6,
+ sheet_y: 5,
+ short_name: "tomato",
+ short_names: ["tomato"],
+ text: null,
+ texts: null,
+ category: "Food & Drink",
+ subcategory: "food-fruit",
+ sort_order: 703,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ olive: {
+ char: "🫒",
+ key: "olive",
+ keywords: ["olive", "OLIVE"],
+ category: "food_and_drink",
+ lib: {
+ name: "OLIVE",
+ unified: "1FAD2",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1fad2.png",
+ sheet_x: 55,
+ sheet_y: 20,
+ short_name: "olive",
+ short_names: ["olive"],
+ text: null,
+ texts: null,
+ category: "Food & Drink",
+ subcategory: "food-fruit",
+ sort_order: 704,
+ added_in: "13.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ coconut: {
+ char: "🥥",
+ key: "coconut",
+ keywords: ["coconut", "COCONUT"],
+ category: "food_and_drink",
+ lib: {
+ name: "COCONUT",
+ unified: "1F965",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f965.png",
+ sheet_x: 43,
+ sheet_y: 49,
+ short_name: "coconut",
+ short_names: ["coconut"],
+ text: null,
+ texts: null,
+ category: "Food & Drink",
+ subcategory: "food-fruit",
+ sort_order: 705,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ avocado: {
+ char: "🥑",
+ key: "avocado",
+ keywords: ["avocado", "AVOCADO"],
+ category: "food_and_drink",
+ lib: {
+ name: "AVOCADO",
+ unified: "1F951",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f951.png",
+ sheet_x: 43,
+ sheet_y: 29,
+ short_name: "avocado",
+ short_names: ["avocado"],
+ text: null,
+ texts: null,
+ category: "Food & Drink",
+ subcategory: "food-vegetable",
+ sort_order: 706,
+ added_in: "3.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ eggplant: {
+ char: "🍆",
+ key: "eggplant",
+ keywords: ["eggplant", "AUBERGINE"],
+ category: "food_and_drink",
+ lib: {
+ name: "AUBERGINE",
+ unified: "1F346",
+ non_qualified: null,
+ docomo: null,
+ au: "EABC",
+ softbank: "E34A",
+ google: "FE056",
+ image: "1f346.png",
+ sheet_x: 6,
+ sheet_y: 6,
+ short_name: "eggplant",
+ short_names: ["eggplant"],
+ text: null,
+ texts: null,
+ category: "Food & Drink",
+ subcategory: "food-vegetable",
+ sort_order: 707,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ potato: {
+ char: "🥔",
+ key: "potato",
+ keywords: ["potato", "POTATO"],
+ category: "food_and_drink",
+ lib: {
+ name: "POTATO",
+ unified: "1F954",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f954.png",
+ sheet_x: 43,
+ sheet_y: 32,
+ short_name: "potato",
+ short_names: ["potato"],
+ text: null,
+ texts: null,
+ category: "Food & Drink",
+ subcategory: "food-vegetable",
+ sort_order: 708,
+ added_in: "3.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ carrot: {
+ char: "🥕",
+ key: "carrot",
+ keywords: ["carrot", "CARROT"],
+ category: "food_and_drink",
+ lib: {
+ name: "CARROT",
+ unified: "1F955",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f955.png",
+ sheet_x: 43,
+ sheet_y: 33,
+ short_name: "carrot",
+ short_names: ["carrot"],
+ text: null,
+ texts: null,
+ category: "Food & Drink",
+ subcategory: "food-vegetable",
+ sort_order: 709,
+ added_in: "3.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ corn: {
+ char: "🌽",
+ key: "corn",
+ keywords: ["corn", "EAR OF MAIZE"],
+ category: "food_and_drink",
+ lib: {
+ name: "EAR OF MAIZE",
+ unified: "1F33D",
+ non_qualified: null,
+ docomo: null,
+ au: "EB36",
+ softbank: null,
+ google: "FE04A",
+ image: "1f33d.png",
+ sheet_x: 5,
+ sheet_y: 58,
+ short_name: "corn",
+ short_names: ["corn"],
+ text: null,
+ texts: null,
+ category: "Food & Drink",
+ subcategory: "food-vegetable",
+ sort_order: 710,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ hot_pepper: {
+ char: "🌶️",
+ key: "hot_pepper",
+ keywords: ["hot_pepper", "HOT PEPPER"],
+ category: "food_and_drink",
+ lib: {
+ name: "HOT PEPPER",
+ unified: "1F336-FE0F",
+ non_qualified: "1F336",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f336-fe0f.png",
+ sheet_x: 5,
+ sheet_y: 51,
+ short_name: "hot_pepper",
+ short_names: ["hot_pepper"],
+ text: null,
+ texts: null,
+ category: "Food & Drink",
+ subcategory: "food-vegetable",
+ sort_order: 711,
+ added_in: "0.7",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ bell_pepper: {
+ char: "🫑",
+ key: "bell_pepper",
+ keywords: ["bell_pepper", "BELL PEPPER"],
+ category: "food_and_drink",
+ lib: {
+ name: "BELL PEPPER",
+ unified: "1FAD1",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1fad1.png",
+ sheet_x: 55,
+ sheet_y: 19,
+ short_name: "bell_pepper",
+ short_names: ["bell_pepper"],
+ text: null,
+ texts: null,
+ category: "Food & Drink",
+ subcategory: "food-vegetable",
+ sort_order: 712,
+ added_in: "13.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ cucumber: {
+ char: "🥒",
+ key: "cucumber",
+ keywords: ["cucumber", "CUCUMBER"],
+ category: "food_and_drink",
+ lib: {
+ name: "CUCUMBER",
+ unified: "1F952",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f952.png",
+ sheet_x: 43,
+ sheet_y: 30,
+ short_name: "cucumber",
+ short_names: ["cucumber"],
+ text: null,
+ texts: null,
+ category: "Food & Drink",
+ subcategory: "food-vegetable",
+ sort_order: 713,
+ added_in: "3.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ leafy_green: {
+ char: "🥬",
+ key: "leafy_green",
+ keywords: ["leafy_green", "LEAFY GREEN"],
+ category: "food_and_drink",
+ lib: {
+ name: "LEAFY GREEN",
+ unified: "1F96C",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f96c.png",
+ sheet_x: 43,
+ sheet_y: 56,
+ short_name: "leafy_green",
+ short_names: ["leafy_green"],
+ text: null,
+ texts: null,
+ category: "Food & Drink",
+ subcategory: "food-vegetable",
+ sort_order: 714,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ broccoli: {
+ char: "🥦",
+ key: "broccoli",
+ keywords: ["broccoli", "BROCCOLI"],
+ category: "food_and_drink",
+ lib: {
+ name: "BROCCOLI",
+ unified: "1F966",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f966.png",
+ sheet_x: 43,
+ sheet_y: 50,
+ short_name: "broccoli",
+ short_names: ["broccoli"],
+ text: null,
+ texts: null,
+ category: "Food & Drink",
+ subcategory: "food-vegetable",
+ sort_order: 715,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ garlic: {
+ char: "🧄",
+ key: "garlic",
+ keywords: ["garlic", "GARLIC"],
+ category: "food_and_drink",
+ lib: {
+ name: "GARLIC",
+ unified: "1F9C4",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f9c4.png",
+ sheet_x: 46,
+ sheet_y: 11,
+ short_name: "garlic",
+ short_names: ["garlic"],
+ text: null,
+ texts: null,
+ category: "Food & Drink",
+ subcategory: "food-vegetable",
+ sort_order: 716,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ onion: {
+ char: "🧅",
+ key: "onion",
+ keywords: ["onion", "ONION"],
+ category: "food_and_drink",
+ lib: {
+ name: "ONION",
+ unified: "1F9C5",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f9c5.png",
+ sheet_x: 46,
+ sheet_y: 12,
+ short_name: "onion",
+ short_names: ["onion"],
+ text: null,
+ texts: null,
+ category: "Food & Drink",
+ subcategory: "food-vegetable",
+ sort_order: 717,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ peanuts: {
+ char: "🥜",
+ key: "peanuts",
+ keywords: ["peanuts", "PEANUTS"],
+ category: "food_and_drink",
+ lib: {
+ name: "PEANUTS",
+ unified: "1F95C",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f95c.png",
+ sheet_x: 43,
+ sheet_y: 40,
+ short_name: "peanuts",
+ short_names: ["peanuts"],
+ text: null,
+ texts: null,
+ category: "Food & Drink",
+ subcategory: "food-vegetable",
+ sort_order: 718,
+ added_in: "3.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ beans: {
+ char: "🫘",
+ key: "beans",
+ keywords: ["beans", "BEANS"],
+ category: "food_and_drink",
+ lib: {
+ name: "BEANS",
+ unified: "1FAD8",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1fad8.png",
+ sheet_x: 55,
+ sheet_y: 26,
+ short_name: "beans",
+ short_names: ["beans"],
+ text: null,
+ texts: null,
+ category: "Food & Drink",
+ subcategory: "food-vegetable",
+ sort_order: 719,
+ added_in: "14.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ chestnut: {
+ char: "🌰",
+ key: "chestnut",
+ keywords: ["chestnut", "CHESTNUT"],
+ category: "food_and_drink",
+ lib: {
+ name: "CHESTNUT",
+ unified: "1F330",
+ non_qualified: null,
+ docomo: null,
+ au: "EB38",
+ softbank: null,
+ google: "FE04C",
+ image: "1f330.png",
+ sheet_x: 5,
+ sheet_y: 45,
+ short_name: "chestnut",
+ short_names: ["chestnut"],
+ text: null,
+ texts: null,
+ category: "Food & Drink",
+ subcategory: "food-vegetable",
+ sort_order: 720,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ ginger_root: {
+ char: "🫚",
+ key: "ginger_root",
+ keywords: ["ginger_root", "GINGER ROOT"],
+ category: "food_and_drink",
+ lib: {
+ name: "GINGER ROOT",
+ unified: "1FADA",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1fada.png",
+ sheet_x: 55,
+ sheet_y: 28,
+ short_name: "ginger_root",
+ short_names: ["ginger_root"],
+ text: null,
+ texts: null,
+ category: "Food & Drink",
+ subcategory: "food-vegetable",
+ sort_order: 721,
+ added_in: "15.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: false,
+ has_img_facebook: false,
+ },
+ },
+ pea_pod: {
+ char: "🫛",
+ key: "pea_pod",
+ keywords: ["pea_pod", "PEA POD"],
+ category: "food_and_drink",
+ lib: {
+ name: "PEA POD",
+ unified: "1FADB",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1fadb.png",
+ sheet_x: 55,
+ sheet_y: 29,
+ short_name: "pea_pod",
+ short_names: ["pea_pod"],
+ text: null,
+ texts: null,
+ category: "Food & Drink",
+ subcategory: "food-vegetable",
+ sort_order: 722,
+ added_in: "15.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: false,
+ has_img_facebook: false,
+ },
+ },
+ bread: {
+ char: "🍞",
+ key: "bread",
+ keywords: ["bread", "BREAD"],
+ category: "food_and_drink",
+ lib: {
+ name: "BREAD",
+ unified: "1F35E",
+ non_qualified: null,
+ docomo: "E74D",
+ au: "EAAF",
+ softbank: "E339",
+ google: "FE964",
+ image: "1f35e.png",
+ sheet_x: 6,
+ sheet_y: 30,
+ short_name: "bread",
+ short_names: ["bread"],
+ text: null,
+ texts: null,
+ category: "Food & Drink",
+ subcategory: "food-prepared",
+ sort_order: 723,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ croissant: {
+ char: "🥐",
+ key: "croissant",
+ keywords: ["croissant", "CROISSANT"],
+ category: "food_and_drink",
+ lib: {
+ name: "CROISSANT",
+ unified: "1F950",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f950.png",
+ sheet_x: 43,
+ sheet_y: 28,
+ short_name: "croissant",
+ short_names: ["croissant"],
+ text: null,
+ texts: null,
+ category: "Food & Drink",
+ subcategory: "food-prepared",
+ sort_order: 724,
+ added_in: "3.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ baguette_bread: {
+ char: "🥖",
+ key: "baguette_bread",
+ keywords: ["baguette_bread", "BAGUETTE BREAD"],
+ category: "food_and_drink",
+ lib: {
+ name: "BAGUETTE BREAD",
+ unified: "1F956",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f956.png",
+ sheet_x: 43,
+ sheet_y: 34,
+ short_name: "baguette_bread",
+ short_names: ["baguette_bread"],
+ text: null,
+ texts: null,
+ category: "Food & Drink",
+ subcategory: "food-prepared",
+ sort_order: 725,
+ added_in: "3.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ flatbread: {
+ char: "🫓",
+ key: "flatbread",
+ keywords: ["flatbread", "FLATBREAD"],
+ category: "food_and_drink",
+ lib: {
+ name: "FLATBREAD",
+ unified: "1FAD3",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1fad3.png",
+ sheet_x: 55,
+ sheet_y: 21,
+ short_name: "flatbread",
+ short_names: ["flatbread"],
+ text: null,
+ texts: null,
+ category: "Food & Drink",
+ subcategory: "food-prepared",
+ sort_order: 726,
+ added_in: "13.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ pretzel: {
+ char: "🥨",
+ key: "pretzel",
+ keywords: ["pretzel", "PRETZEL"],
+ category: "food_and_drink",
+ lib: {
+ name: "PRETZEL",
+ unified: "1F968",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f968.png",
+ sheet_x: 43,
+ sheet_y: 52,
+ short_name: "pretzel",
+ short_names: ["pretzel"],
+ text: null,
+ texts: null,
+ category: "Food & Drink",
+ subcategory: "food-prepared",
+ sort_order: 727,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ bagel: {
+ char: "🥯",
+ key: "bagel",
+ keywords: ["bagel", "BAGEL"],
+ category: "food_and_drink",
+ lib: {
+ name: "BAGEL",
+ unified: "1F96F",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f96f.png",
+ sheet_x: 43,
+ sheet_y: 59,
+ short_name: "bagel",
+ short_names: ["bagel"],
+ text: null,
+ texts: null,
+ category: "Food & Drink",
+ subcategory: "food-prepared",
+ sort_order: 728,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ pancakes: {
+ char: "🥞",
+ key: "pancakes",
+ keywords: ["pancakes", "PANCAKES"],
+ category: "food_and_drink",
+ lib: {
+ name: "PANCAKES",
+ unified: "1F95E",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f95e.png",
+ sheet_x: 43,
+ sheet_y: 42,
+ short_name: "pancakes",
+ short_names: ["pancakes"],
+ text: null,
+ texts: null,
+ category: "Food & Drink",
+ subcategory: "food-prepared",
+ sort_order: 729,
+ added_in: "3.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ waffle: {
+ char: "🧇",
+ key: "waffle",
+ keywords: ["waffle", "WAFFLE"],
+ category: "food_and_drink",
+ lib: {
+ name: "WAFFLE",
+ unified: "1F9C7",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f9c7.png",
+ sheet_x: 46,
+ sheet_y: 14,
+ short_name: "waffle",
+ short_names: ["waffle"],
+ text: null,
+ texts: null,
+ category: "Food & Drink",
+ subcategory: "food-prepared",
+ sort_order: 730,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ cheese_wedge: {
+ char: "🧀",
+ key: "cheese_wedge",
+ keywords: ["cheese_wedge", "CHEESE WEDGE"],
+ category: "food_and_drink",
+ lib: {
+ name: "CHEESE WEDGE",
+ unified: "1F9C0",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f9c0.png",
+ sheet_x: 46,
+ sheet_y: 7,
+ short_name: "cheese_wedge",
+ short_names: ["cheese_wedge"],
+ text: null,
+ texts: null,
+ category: "Food & Drink",
+ subcategory: "food-prepared",
+ sort_order: 731,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ meat_on_bone: {
+ char: "🍖",
+ key: "meat_on_bone",
+ keywords: ["meat_on_bone", "MEAT ON BONE"],
+ category: "food_and_drink",
+ lib: {
+ name: "MEAT ON BONE",
+ unified: "1F356",
+ non_qualified: null,
+ docomo: null,
+ au: "E4C4",
+ softbank: null,
+ google: "FE972",
+ image: "1f356.png",
+ sheet_x: 6,
+ sheet_y: 22,
+ short_name: "meat_on_bone",
+ short_names: ["meat_on_bone"],
+ text: null,
+ texts: null,
+ category: "Food & Drink",
+ subcategory: "food-prepared",
+ sort_order: 732,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ poultry_leg: {
+ char: "🍗",
+ key: "poultry_leg",
+ keywords: ["poultry_leg", "POULTRY LEG"],
+ category: "food_and_drink",
+ lib: {
+ name: "POULTRY LEG",
+ unified: "1F357",
+ non_qualified: null,
+ docomo: null,
+ au: "EB3C",
+ softbank: null,
+ google: "FE976",
+ image: "1f357.png",
+ sheet_x: 6,
+ sheet_y: 23,
+ short_name: "poultry_leg",
+ short_names: ["poultry_leg"],
+ text: null,
+ texts: null,
+ category: "Food & Drink",
+ subcategory: "food-prepared",
+ sort_order: 733,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ cut_of_meat: {
+ char: "🥩",
+ key: "cut_of_meat",
+ keywords: ["cut_of_meat", "CUT OF MEAT"],
+ category: "food_and_drink",
+ lib: {
+ name: "CUT OF MEAT",
+ unified: "1F969",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f969.png",
+ sheet_x: 43,
+ sheet_y: 53,
+ short_name: "cut_of_meat",
+ short_names: ["cut_of_meat"],
+ text: null,
+ texts: null,
+ category: "Food & Drink",
+ subcategory: "food-prepared",
+ sort_order: 734,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ bacon: {
+ char: "🥓",
+ key: "bacon",
+ keywords: ["bacon", "BACON"],
+ category: "food_and_drink",
+ lib: {
+ name: "BACON",
+ unified: "1F953",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f953.png",
+ sheet_x: 43,
+ sheet_y: 31,
+ short_name: "bacon",
+ short_names: ["bacon"],
+ text: null,
+ texts: null,
+ category: "Food & Drink",
+ subcategory: "food-prepared",
+ sort_order: 735,
+ added_in: "3.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ hamburger: {
+ char: "🍔",
+ key: "hamburger",
+ keywords: ["hamburger", "HAMBURGER"],
+ category: "food_and_drink",
+ lib: {
+ name: "HAMBURGER",
+ unified: "1F354",
+ non_qualified: null,
+ docomo: "E673",
+ au: "E4D6",
+ softbank: "E120",
+ google: "FE960",
+ image: "1f354.png",
+ sheet_x: 6,
+ sheet_y: 20,
+ short_name: "hamburger",
+ short_names: ["hamburger"],
+ text: null,
+ texts: null,
+ category: "Food & Drink",
+ subcategory: "food-prepared",
+ sort_order: 736,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ fries: {
+ char: "🍟",
+ key: "fries",
+ keywords: ["fries", "FRENCH FRIES"],
+ category: "food_and_drink",
+ lib: {
+ name: "FRENCH FRIES",
+ unified: "1F35F",
+ non_qualified: null,
+ docomo: null,
+ au: "EAB1",
+ softbank: "E33B",
+ google: "FE967",
+ image: "1f35f.png",
+ sheet_x: 6,
+ sheet_y: 31,
+ short_name: "fries",
+ short_names: ["fries"],
+ text: null,
+ texts: null,
+ category: "Food & Drink",
+ subcategory: "food-prepared",
+ sort_order: 737,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ pizza: {
+ char: "🍕",
+ key: "pizza",
+ keywords: ["pizza", "SLICE OF PIZZA"],
+ category: "food_and_drink",
+ lib: {
+ name: "SLICE OF PIZZA",
+ unified: "1F355",
+ non_qualified: null,
+ docomo: null,
+ au: "EB3B",
+ softbank: null,
+ google: "FE975",
+ image: "1f355.png",
+ sheet_x: 6,
+ sheet_y: 21,
+ short_name: "pizza",
+ short_names: ["pizza"],
+ text: null,
+ texts: null,
+ category: "Food & Drink",
+ subcategory: "food-prepared",
+ sort_order: 738,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ hotdog: {
+ char: "🌭",
+ key: "hotdog",
+ keywords: ["hotdog", "HOT DOG"],
+ category: "food_and_drink",
+ lib: {
+ name: "HOT DOG",
+ unified: "1F32D",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f32d.png",
+ sheet_x: 5,
+ sheet_y: 42,
+ short_name: "hotdog",
+ short_names: ["hotdog"],
+ text: null,
+ texts: null,
+ category: "Food & Drink",
+ subcategory: "food-prepared",
+ sort_order: 739,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ sandwich: {
+ char: "🥪",
+ key: "sandwich",
+ keywords: ["sandwich", "SANDWICH"],
+ category: "food_and_drink",
+ lib: {
+ name: "SANDWICH",
+ unified: "1F96A",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f96a.png",
+ sheet_x: 43,
+ sheet_y: 54,
+ short_name: "sandwich",
+ short_names: ["sandwich"],
+ text: null,
+ texts: null,
+ category: "Food & Drink",
+ subcategory: "food-prepared",
+ sort_order: 740,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ taco: {
+ char: "🌮",
+ key: "taco",
+ keywords: ["taco", "TACO"],
+ category: "food_and_drink",
+ lib: {
+ name: "TACO",
+ unified: "1F32E",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f32e.png",
+ sheet_x: 5,
+ sheet_y: 43,
+ short_name: "taco",
+ short_names: ["taco"],
+ text: null,
+ texts: null,
+ category: "Food & Drink",
+ subcategory: "food-prepared",
+ sort_order: 741,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ burrito: {
+ char: "🌯",
+ key: "burrito",
+ keywords: ["burrito", "BURRITO"],
+ category: "food_and_drink",
+ lib: {
+ name: "BURRITO",
+ unified: "1F32F",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f32f.png",
+ sheet_x: 5,
+ sheet_y: 44,
+ short_name: "burrito",
+ short_names: ["burrito"],
+ text: null,
+ texts: null,
+ category: "Food & Drink",
+ subcategory: "food-prepared",
+ sort_order: 742,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ tamale: {
+ char: "🫔",
+ key: "tamale",
+ keywords: ["tamale", "TAMALE"],
+ category: "food_and_drink",
+ lib: {
+ name: "TAMALE",
+ unified: "1FAD4",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1fad4.png",
+ sheet_x: 55,
+ sheet_y: 22,
+ short_name: "tamale",
+ short_names: ["tamale"],
+ text: null,
+ texts: null,
+ category: "Food & Drink",
+ subcategory: "food-prepared",
+ sort_order: 743,
+ added_in: "13.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ stuffed_flatbread: {
+ char: "🥙",
+ key: "stuffed_flatbread",
+ keywords: ["stuffed_flatbread", "STUFFED FLATBREAD"],
+ category: "food_and_drink",
+ lib: {
+ name: "STUFFED FLATBREAD",
+ unified: "1F959",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f959.png",
+ sheet_x: 43,
+ sheet_y: 37,
+ short_name: "stuffed_flatbread",
+ short_names: ["stuffed_flatbread"],
+ text: null,
+ texts: null,
+ category: "Food & Drink",
+ subcategory: "food-prepared",
+ sort_order: 744,
+ added_in: "3.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ falafel: {
+ char: "🧆",
+ key: "falafel",
+ keywords: ["falafel", "FALAFEL"],
+ category: "food_and_drink",
+ lib: {
+ name: "FALAFEL",
+ unified: "1F9C6",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f9c6.png",
+ sheet_x: 46,
+ sheet_y: 13,
+ short_name: "falafel",
+ short_names: ["falafel"],
+ text: null,
+ texts: null,
+ category: "Food & Drink",
+ subcategory: "food-prepared",
+ sort_order: 745,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ egg: {
+ char: "🥚",
+ key: "egg",
+ keywords: ["egg", "EGG"],
+ category: "food_and_drink",
+ lib: {
+ name: "EGG",
+ unified: "1F95A",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f95a.png",
+ sheet_x: 43,
+ sheet_y: 38,
+ short_name: "egg",
+ short_names: ["egg"],
+ text: null,
+ texts: null,
+ category: "Food & Drink",
+ subcategory: "food-prepared",
+ sort_order: 746,
+ added_in: "3.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ fried_egg: {
+ char: "🍳",
+ key: "fried_egg",
+ keywords: ["fried_egg", "COOKING"],
+ category: "food_and_drink",
+ lib: {
+ name: "COOKING",
+ unified: "1F373",
+ non_qualified: null,
+ docomo: null,
+ au: "E4D1",
+ softbank: "E147",
+ google: "FE965",
+ image: "1f373.png",
+ sheet_x: 6,
+ sheet_y: 51,
+ short_name: "fried_egg",
+ short_names: ["fried_egg", "cooking"],
+ text: null,
+ texts: null,
+ category: "Food & Drink",
+ subcategory: "food-prepared",
+ sort_order: 747,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ shallow_pan_of_food: {
+ char: "🥘",
+ key: "shallow_pan_of_food",
+ keywords: ["shallow_pan_of_food", "SHALLOW PAN OF FOOD"],
+ category: "food_and_drink",
+ lib: {
+ name: "SHALLOW PAN OF FOOD",
+ unified: "1F958",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f958.png",
+ sheet_x: 43,
+ sheet_y: 36,
+ short_name: "shallow_pan_of_food",
+ short_names: ["shallow_pan_of_food"],
+ text: null,
+ texts: null,
+ category: "Food & Drink",
+ subcategory: "food-prepared",
+ sort_order: 748,
+ added_in: "3.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ stew: {
+ char: "🍲",
+ key: "stew",
+ keywords: ["stew", "POT OF FOOD"],
+ category: "food_and_drink",
+ lib: {
+ name: "POT OF FOOD",
+ unified: "1F372",
+ non_qualified: null,
+ docomo: null,
+ au: "EABE",
+ softbank: "E34D",
+ google: "FE970",
+ image: "1f372.png",
+ sheet_x: 6,
+ sheet_y: 50,
+ short_name: "stew",
+ short_names: ["stew"],
+ text: null,
+ texts: null,
+ category: "Food & Drink",
+ subcategory: "food-prepared",
+ sort_order: 749,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ fondue: {
+ char: "🫕",
+ key: "fondue",
+ keywords: ["fondue", "FONDUE"],
+ category: "food_and_drink",
+ lib: {
+ name: "FONDUE",
+ unified: "1FAD5",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1fad5.png",
+ sheet_x: 55,
+ sheet_y: 23,
+ short_name: "fondue",
+ short_names: ["fondue"],
+ text: null,
+ texts: null,
+ category: "Food & Drink",
+ subcategory: "food-prepared",
+ sort_order: 750,
+ added_in: "13.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ bowl_with_spoon: {
+ char: "🥣",
+ key: "bowl_with_spoon",
+ keywords: ["bowl_with_spoon", "BOWL WITH SPOON"],
+ category: "food_and_drink",
+ lib: {
+ name: "BOWL WITH SPOON",
+ unified: "1F963",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f963.png",
+ sheet_x: 43,
+ sheet_y: 47,
+ short_name: "bowl_with_spoon",
+ short_names: ["bowl_with_spoon"],
+ text: null,
+ texts: null,
+ category: "Food & Drink",
+ subcategory: "food-prepared",
+ sort_order: 751,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ green_salad: {
+ char: "🥗",
+ key: "green_salad",
+ keywords: ["green_salad", "GREEN SALAD"],
+ category: "food_and_drink",
+ lib: {
+ name: "GREEN SALAD",
+ unified: "1F957",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f957.png",
+ sheet_x: 43,
+ sheet_y: 35,
+ short_name: "green_salad",
+ short_names: ["green_salad"],
+ text: null,
+ texts: null,
+ category: "Food & Drink",
+ subcategory: "food-prepared",
+ sort_order: 752,
+ added_in: "3.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ popcorn: {
+ char: "🍿",
+ key: "popcorn",
+ keywords: ["popcorn", "POPCORN"],
+ category: "food_and_drink",
+ lib: {
+ name: "POPCORN",
+ unified: "1F37F",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f37f.png",
+ sheet_x: 7,
+ sheet_y: 2,
+ short_name: "popcorn",
+ short_names: ["popcorn"],
+ text: null,
+ texts: null,
+ category: "Food & Drink",
+ subcategory: "food-prepared",
+ sort_order: 753,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ butter: {
+ char: "🧈",
+ key: "butter",
+ keywords: ["butter", "BUTTER"],
+ category: "food_and_drink",
+ lib: {
+ name: "BUTTER",
+ unified: "1F9C8",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f9c8.png",
+ sheet_x: 46,
+ sheet_y: 15,
+ short_name: "butter",
+ short_names: ["butter"],
+ text: null,
+ texts: null,
+ category: "Food & Drink",
+ subcategory: "food-prepared",
+ sort_order: 754,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ salt: {
+ char: "🧂",
+ key: "salt",
+ keywords: ["salt", "SALT SHAKER"],
+ category: "food_and_drink",
+ lib: {
+ name: "SALT SHAKER",
+ unified: "1F9C2",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f9c2.png",
+ sheet_x: 46,
+ sheet_y: 9,
+ short_name: "salt",
+ short_names: ["salt"],
+ text: null,
+ texts: null,
+ category: "Food & Drink",
+ subcategory: "food-prepared",
+ sort_order: 755,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ canned_food: {
+ char: "🥫",
+ key: "canned_food",
+ keywords: ["canned_food", "CANNED FOOD"],
+ category: "food_and_drink",
+ lib: {
+ name: "CANNED FOOD",
+ unified: "1F96B",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f96b.png",
+ sheet_x: 43,
+ sheet_y: 55,
+ short_name: "canned_food",
+ short_names: ["canned_food"],
+ text: null,
+ texts: null,
+ category: "Food & Drink",
+ subcategory: "food-prepared",
+ sort_order: 756,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ bento: {
+ char: "🍱",
+ key: "bento",
+ keywords: ["bento", "BENTO BOX"],
+ category: "food_and_drink",
+ lib: {
+ name: "BENTO BOX",
+ unified: "1F371",
+ non_qualified: null,
+ docomo: null,
+ au: "EABD",
+ softbank: "E34C",
+ google: "FE96F",
+ image: "1f371.png",
+ sheet_x: 6,
+ sheet_y: 49,
+ short_name: "bento",
+ short_names: ["bento"],
+ text: null,
+ texts: null,
+ category: "Food & Drink",
+ subcategory: "food-asian",
+ sort_order: 757,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ rice_cracker: {
+ char: "🍘",
+ key: "rice_cracker",
+ keywords: ["rice_cracker", "RICE CRACKER"],
+ category: "food_and_drink",
+ lib: {
+ name: "RICE CRACKER",
+ unified: "1F358",
+ non_qualified: null,
+ docomo: null,
+ au: "EAB3",
+ softbank: "E33D",
+ google: "FE969",
+ image: "1f358.png",
+ sheet_x: 6,
+ sheet_y: 24,
+ short_name: "rice_cracker",
+ short_names: ["rice_cracker"],
+ text: null,
+ texts: null,
+ category: "Food & Drink",
+ subcategory: "food-asian",
+ sort_order: 758,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ rice_ball: {
+ char: "🍙",
+ key: "rice_ball",
+ keywords: ["rice_ball", "RICE BALL"],
+ category: "food_and_drink",
+ lib: {
+ name: "RICE BALL",
+ unified: "1F359",
+ non_qualified: null,
+ docomo: "E749",
+ au: "E4D5",
+ softbank: "E342",
+ google: "FE961",
+ image: "1f359.png",
+ sheet_x: 6,
+ sheet_y: 25,
+ short_name: "rice_ball",
+ short_names: ["rice_ball"],
+ text: null,
+ texts: null,
+ category: "Food & Drink",
+ subcategory: "food-asian",
+ sort_order: 759,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ rice: {
+ char: "🍚",
+ key: "rice",
+ keywords: ["rice", "COOKED RICE"],
+ category: "food_and_drink",
+ lib: {
+ name: "COOKED RICE",
+ unified: "1F35A",
+ non_qualified: null,
+ docomo: "E74C",
+ au: "EAB4",
+ softbank: "E33E",
+ google: "FE96A",
+ image: "1f35a.png",
+ sheet_x: 6,
+ sheet_y: 26,
+ short_name: "rice",
+ short_names: ["rice"],
+ text: null,
+ texts: null,
+ category: "Food & Drink",
+ subcategory: "food-asian",
+ sort_order: 760,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ curry: {
+ char: "🍛",
+ key: "curry",
+ keywords: ["curry", "CURRY AND RICE"],
+ category: "food_and_drink",
+ lib: {
+ name: "CURRY AND RICE",
+ unified: "1F35B",
+ non_qualified: null,
+ docomo: null,
+ au: "EAB6",
+ softbank: "E341",
+ google: "FE96C",
+ image: "1f35b.png",
+ sheet_x: 6,
+ sheet_y: 27,
+ short_name: "curry",
+ short_names: ["curry"],
+ text: null,
+ texts: null,
+ category: "Food & Drink",
+ subcategory: "food-asian",
+ sort_order: 761,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ ramen: {
+ char: "🍜",
+ key: "ramen",
+ keywords: ["ramen", "STEAMING BOWL"],
+ category: "food_and_drink",
+ lib: {
+ name: "STEAMING BOWL",
+ unified: "1F35C",
+ non_qualified: null,
+ docomo: "E74C",
+ au: "E5B4",
+ softbank: "E340",
+ google: "FE963",
+ image: "1f35c.png",
+ sheet_x: 6,
+ sheet_y: 28,
+ short_name: "ramen",
+ short_names: ["ramen"],
+ text: null,
+ texts: null,
+ category: "Food & Drink",
+ subcategory: "food-asian",
+ sort_order: 762,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ spaghetti: {
+ char: "🍝",
+ key: "spaghetti",
+ keywords: ["spaghetti", "SPAGHETTI"],
+ category: "food_and_drink",
+ lib: {
+ name: "SPAGHETTI",
+ unified: "1F35D",
+ non_qualified: null,
+ docomo: null,
+ au: "EAB5",
+ softbank: "E33F",
+ google: "FE96B",
+ image: "1f35d.png",
+ sheet_x: 6,
+ sheet_y: 29,
+ short_name: "spaghetti",
+ short_names: ["spaghetti"],
+ text: null,
+ texts: null,
+ category: "Food & Drink",
+ subcategory: "food-asian",
+ sort_order: 763,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ sweet_potato: {
+ char: "🍠",
+ key: "sweet_potato",
+ keywords: ["sweet_potato", "ROASTED SWEET POTATO"],
+ category: "food_and_drink",
+ lib: {
+ name: "ROASTED SWEET POTATO",
+ unified: "1F360",
+ non_qualified: null,
+ docomo: null,
+ au: "EB3A",
+ softbank: null,
+ google: "FE974",
+ image: "1f360.png",
+ sheet_x: 6,
+ sheet_y: 32,
+ short_name: "sweet_potato",
+ short_names: ["sweet_potato"],
+ text: null,
+ texts: null,
+ category: "Food & Drink",
+ subcategory: "food-asian",
+ sort_order: 764,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ oden: {
+ char: "🍢",
+ key: "oden",
+ keywords: ["oden", "ODEN"],
+ category: "food_and_drink",
+ lib: {
+ name: "ODEN",
+ unified: "1F362",
+ non_qualified: null,
+ docomo: null,
+ au: "EAB7",
+ softbank: "E343",
+ google: "FE96D",
+ image: "1f362.png",
+ sheet_x: 6,
+ sheet_y: 34,
+ short_name: "oden",
+ short_names: ["oden"],
+ text: null,
+ texts: null,
+ category: "Food & Drink",
+ subcategory: "food-asian",
+ sort_order: 765,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ sushi: {
+ char: "🍣",
+ key: "sushi",
+ keywords: ["sushi", "SUSHI"],
+ category: "food_and_drink",
+ lib: {
+ name: "SUSHI",
+ unified: "1F363",
+ non_qualified: null,
+ docomo: null,
+ au: "EAB8",
+ softbank: "E344",
+ google: "FE96E",
+ image: "1f363.png",
+ sheet_x: 6,
+ sheet_y: 35,
+ short_name: "sushi",
+ short_names: ["sushi"],
+ text: null,
+ texts: null,
+ category: "Food & Drink",
+ subcategory: "food-asian",
+ sort_order: 766,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ fried_shrimp: {
+ char: "🍤",
+ key: "fried_shrimp",
+ keywords: ["fried_shrimp", "FRIED SHRIMP"],
+ category: "food_and_drink",
+ lib: {
+ name: "FRIED SHRIMP",
+ unified: "1F364",
+ non_qualified: null,
+ docomo: null,
+ au: "EB70",
+ softbank: null,
+ google: "FE97F",
+ image: "1f364.png",
+ sheet_x: 6,
+ sheet_y: 36,
+ short_name: "fried_shrimp",
+ short_names: ["fried_shrimp"],
+ text: null,
+ texts: null,
+ category: "Food & Drink",
+ subcategory: "food-asian",
+ sort_order: 767,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ fish_cake: {
+ char: "🍥",
+ key: "fish_cake",
+ keywords: ["fish_cake", "FISH CAKE WITH SWIRL DESIGN"],
+ category: "food_and_drink",
+ lib: {
+ name: "FISH CAKE WITH SWIRL DESIGN",
+ unified: "1F365",
+ non_qualified: null,
+ docomo: "E643",
+ au: "E4ED",
+ softbank: null,
+ google: "FE973",
+ image: "1f365.png",
+ sheet_x: 6,
+ sheet_y: 37,
+ short_name: "fish_cake",
+ short_names: ["fish_cake"],
+ text: null,
+ texts: null,
+ category: "Food & Drink",
+ subcategory: "food-asian",
+ sort_order: 768,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ moon_cake: {
+ char: "🥮",
+ key: "moon_cake",
+ keywords: ["moon_cake", "MOON CAKE"],
+ category: "food_and_drink",
+ lib: {
+ name: "MOON CAKE",
+ unified: "1F96E",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f96e.png",
+ sheet_x: 43,
+ sheet_y: 58,
+ short_name: "moon_cake",
+ short_names: ["moon_cake"],
+ text: null,
+ texts: null,
+ category: "Food & Drink",
+ subcategory: "food-asian",
+ sort_order: 769,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ dango: {
+ char: "🍡",
+ key: "dango",
+ keywords: ["dango", "DANGO"],
+ category: "food_and_drink",
+ lib: {
+ name: "DANGO",
+ unified: "1F361",
+ non_qualified: null,
+ docomo: null,
+ au: "EAB2",
+ softbank: "E33C",
+ google: "FE968",
+ image: "1f361.png",
+ sheet_x: 6,
+ sheet_y: 33,
+ short_name: "dango",
+ short_names: ["dango"],
+ text: null,
+ texts: null,
+ category: "Food & Drink",
+ subcategory: "food-asian",
+ sort_order: 770,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ dumpling: {
+ char: "🥟",
+ key: "dumpling",
+ keywords: ["dumpling", "DUMPLING"],
+ category: "food_and_drink",
+ lib: {
+ name: "DUMPLING",
+ unified: "1F95F",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f95f.png",
+ sheet_x: 43,
+ sheet_y: 43,
+ short_name: "dumpling",
+ short_names: ["dumpling"],
+ text: null,
+ texts: null,
+ category: "Food & Drink",
+ subcategory: "food-asian",
+ sort_order: 771,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ fortune_cookie: {
+ char: "🥠",
+ key: "fortune_cookie",
+ keywords: ["fortune_cookie", "FORTUNE COOKIE"],
+ category: "food_and_drink",
+ lib: {
+ name: "FORTUNE COOKIE",
+ unified: "1F960",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f960.png",
+ sheet_x: 43,
+ sheet_y: 44,
+ short_name: "fortune_cookie",
+ short_names: ["fortune_cookie"],
+ text: null,
+ texts: null,
+ category: "Food & Drink",
+ subcategory: "food-asian",
+ sort_order: 772,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ takeout_box: {
+ char: "🥡",
+ key: "takeout_box",
+ keywords: ["takeout_box", "TAKEOUT BOX"],
+ category: "food_and_drink",
+ lib: {
+ name: "TAKEOUT BOX",
+ unified: "1F961",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f961.png",
+ sheet_x: 43,
+ sheet_y: 45,
+ short_name: "takeout_box",
+ short_names: ["takeout_box"],
+ text: null,
+ texts: null,
+ category: "Food & Drink",
+ subcategory: "food-asian",
+ sort_order: 773,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ crab: {
+ char: "🦀",
+ key: "crab",
+ keywords: ["crab", "CRAB"],
+ category: "food_and_drink",
+ lib: {
+ name: "CRAB",
+ unified: "1F980",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f980.png",
+ sheet_x: 44,
+ sheet_y: 20,
+ short_name: "crab",
+ short_names: ["crab"],
+ text: null,
+ texts: null,
+ category: "Food & Drink",
+ subcategory: "food-marine",
+ sort_order: 774,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ lobster: {
+ char: "🦞",
+ key: "lobster",
+ keywords: ["lobster", "LOBSTER"],
+ category: "food_and_drink",
+ lib: {
+ name: "LOBSTER",
+ unified: "1F99E",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f99e.png",
+ sheet_x: 44,
+ sheet_y: 50,
+ short_name: "lobster",
+ short_names: ["lobster"],
+ text: null,
+ texts: null,
+ category: "Food & Drink",
+ subcategory: "food-marine",
+ sort_order: 775,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ shrimp: {
+ char: "🦐",
+ key: "shrimp",
+ keywords: ["shrimp", "SHRIMP"],
+ category: "food_and_drink",
+ lib: {
+ name: "SHRIMP",
+ unified: "1F990",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f990.png",
+ sheet_x: 44,
+ sheet_y: 36,
+ short_name: "shrimp",
+ short_names: ["shrimp"],
+ text: null,
+ texts: null,
+ category: "Food & Drink",
+ subcategory: "food-marine",
+ sort_order: 776,
+ added_in: "3.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ squid: {
+ char: "🦑",
+ key: "squid",
+ keywords: ["squid", "SQUID"],
+ category: "food_and_drink",
+ lib: {
+ name: "SQUID",
+ unified: "1F991",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f991.png",
+ sheet_x: 44,
+ sheet_y: 37,
+ short_name: "squid",
+ short_names: ["squid"],
+ text: null,
+ texts: null,
+ category: "Food & Drink",
+ subcategory: "food-marine",
+ sort_order: 777,
+ added_in: "3.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ oyster: {
+ char: "🦪",
+ key: "oyster",
+ keywords: ["oyster", "OYSTER"],
+ category: "food_and_drink",
+ lib: {
+ name: "OYSTER",
+ unified: "1F9AA",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f9aa.png",
+ sheet_x: 45,
+ sheet_y: 1,
+ short_name: "oyster",
+ short_names: ["oyster"],
+ text: null,
+ texts: null,
+ category: "Food & Drink",
+ subcategory: "food-marine",
+ sort_order: 778,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ icecream: {
+ char: "🍦",
+ key: "icecream",
+ keywords: ["icecream", "SOFT ICE CREAM"],
+ category: "food_and_drink",
+ lib: {
+ name: "SOFT ICE CREAM",
+ unified: "1F366",
+ non_qualified: null,
+ docomo: null,
+ au: "EAB0",
+ softbank: "E33A",
+ google: "FE966",
+ image: "1f366.png",
+ sheet_x: 6,
+ sheet_y: 38,
+ short_name: "icecream",
+ short_names: ["icecream"],
+ text: null,
+ texts: null,
+ category: "Food & Drink",
+ subcategory: "food-sweet",
+ sort_order: 779,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ shaved_ice: {
+ char: "🍧",
+ key: "shaved_ice",
+ keywords: ["shaved_ice", "SHAVED ICE"],
+ category: "food_and_drink",
+ lib: {
+ name: "SHAVED ICE",
+ unified: "1F367",
+ non_qualified: null,
+ docomo: null,
+ au: "EAEA",
+ softbank: "E43F",
+ google: "FE971",
+ image: "1f367.png",
+ sheet_x: 6,
+ sheet_y: 39,
+ short_name: "shaved_ice",
+ short_names: ["shaved_ice"],
+ text: null,
+ texts: null,
+ category: "Food & Drink",
+ subcategory: "food-sweet",
+ sort_order: 780,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ ice_cream: {
+ char: "🍨",
+ key: "ice_cream",
+ keywords: ["ice_cream", "ICE CREAM"],
+ category: "food_and_drink",
+ lib: {
+ name: "ICE CREAM",
+ unified: "1F368",
+ non_qualified: null,
+ docomo: null,
+ au: "EB4A",
+ softbank: null,
+ google: "FE977",
+ image: "1f368.png",
+ sheet_x: 6,
+ sheet_y: 40,
+ short_name: "ice_cream",
+ short_names: ["ice_cream"],
+ text: null,
+ texts: null,
+ category: "Food & Drink",
+ subcategory: "food-sweet",
+ sort_order: 781,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ doughnut: {
+ char: "🍩",
+ key: "doughnut",
+ keywords: ["doughnut", "DOUGHNUT"],
+ category: "food_and_drink",
+ lib: {
+ name: "DOUGHNUT",
+ unified: "1F369",
+ non_qualified: null,
+ docomo: null,
+ au: "EB4B",
+ softbank: null,
+ google: "FE978",
+ image: "1f369.png",
+ sheet_x: 6,
+ sheet_y: 41,
+ short_name: "doughnut",
+ short_names: ["doughnut"],
+ text: null,
+ texts: null,
+ category: "Food & Drink",
+ subcategory: "food-sweet",
+ sort_order: 782,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ cookie: {
+ char: "🍪",
+ key: "cookie",
+ keywords: ["cookie", "COOKIE"],
+ category: "food_and_drink",
+ lib: {
+ name: "COOKIE",
+ unified: "1F36A",
+ non_qualified: null,
+ docomo: null,
+ au: "EB4C",
+ softbank: null,
+ google: "FE979",
+ image: "1f36a.png",
+ sheet_x: 6,
+ sheet_y: 42,
+ short_name: "cookie",
+ short_names: ["cookie"],
+ text: null,
+ texts: null,
+ category: "Food & Drink",
+ subcategory: "food-sweet",
+ sort_order: 783,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ birthday: {
+ char: "🎂",
+ key: "birthday",
+ keywords: ["birthday", "BIRTHDAY CAKE"],
+ category: "food_and_drink",
+ lib: {
+ name: "BIRTHDAY CAKE",
+ unified: "1F382",
+ non_qualified: null,
+ docomo: "E686",
+ au: "E5A0",
+ softbank: "E34B",
+ google: "FE511",
+ image: "1f382.png",
+ sheet_x: 7,
+ sheet_y: 5,
+ short_name: "birthday",
+ short_names: ["birthday"],
+ text: null,
+ texts: null,
+ category: "Food & Drink",
+ subcategory: "food-sweet",
+ sort_order: 784,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ cake: {
+ char: "🍰",
+ key: "cake",
+ keywords: ["cake", "SHORTCAKE"],
+ category: "food_and_drink",
+ lib: {
+ name: "SHORTCAKE",
+ unified: "1F370",
+ non_qualified: null,
+ docomo: "E74A",
+ au: "E4D0",
+ softbank: "E046",
+ google: "FE962",
+ image: "1f370.png",
+ sheet_x: 6,
+ sheet_y: 48,
+ short_name: "cake",
+ short_names: ["cake"],
+ text: null,
+ texts: null,
+ category: "Food & Drink",
+ subcategory: "food-sweet",
+ sort_order: 785,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ cupcake: {
+ char: "🧁",
+ key: "cupcake",
+ keywords: ["cupcake", "CUPCAKE"],
+ category: "food_and_drink",
+ lib: {
+ name: "CUPCAKE",
+ unified: "1F9C1",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f9c1.png",
+ sheet_x: 46,
+ sheet_y: 8,
+ short_name: "cupcake",
+ short_names: ["cupcake"],
+ text: null,
+ texts: null,
+ category: "Food & Drink",
+ subcategory: "food-sweet",
+ sort_order: 786,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ pie: {
+ char: "🥧",
+ key: "pie",
+ keywords: ["pie", "PIE"],
+ category: "food_and_drink",
+ lib: {
+ name: "PIE",
+ unified: "1F967",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f967.png",
+ sheet_x: 43,
+ sheet_y: 51,
+ short_name: "pie",
+ short_names: ["pie"],
+ text: null,
+ texts: null,
+ category: "Food & Drink",
+ subcategory: "food-sweet",
+ sort_order: 787,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ chocolate_bar: {
+ char: "🍫",
+ key: "chocolate_bar",
+ keywords: ["chocolate_bar", "CHOCOLATE BAR"],
+ category: "food_and_drink",
+ lib: {
+ name: "CHOCOLATE BAR",
+ unified: "1F36B",
+ non_qualified: null,
+ docomo: null,
+ au: "EB4D",
+ softbank: null,
+ google: "FE97A",
+ image: "1f36b.png",
+ sheet_x: 6,
+ sheet_y: 43,
+ short_name: "chocolate_bar",
+ short_names: ["chocolate_bar"],
+ text: null,
+ texts: null,
+ category: "Food & Drink",
+ subcategory: "food-sweet",
+ sort_order: 788,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ candy: {
+ char: "🍬",
+ key: "candy",
+ keywords: ["candy", "CANDY"],
+ category: "food_and_drink",
+ lib: {
+ name: "CANDY",
+ unified: "1F36C",
+ non_qualified: null,
+ docomo: null,
+ au: "EB4E",
+ softbank: null,
+ google: "FE97B",
+ image: "1f36c.png",
+ sheet_x: 6,
+ sheet_y: 44,
+ short_name: "candy",
+ short_names: ["candy"],
+ text: null,
+ texts: null,
+ category: "Food & Drink",
+ subcategory: "food-sweet",
+ sort_order: 789,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ lollipop: {
+ char: "🍭",
+ key: "lollipop",
+ keywords: ["lollipop", "LOLLIPOP"],
+ category: "food_and_drink",
+ lib: {
+ name: "LOLLIPOP",
+ unified: "1F36D",
+ non_qualified: null,
+ docomo: null,
+ au: "EB4F",
+ softbank: null,
+ google: "FE97C",
+ image: "1f36d.png",
+ sheet_x: 6,
+ sheet_y: 45,
+ short_name: "lollipop",
+ short_names: ["lollipop"],
+ text: null,
+ texts: null,
+ category: "Food & Drink",
+ subcategory: "food-sweet",
+ sort_order: 790,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ custard: {
+ char: "🍮",
+ key: "custard",
+ keywords: ["custard", "CUSTARD"],
+ category: "food_and_drink",
+ lib: {
+ name: "CUSTARD",
+ unified: "1F36E",
+ non_qualified: null,
+ docomo: null,
+ au: "EB56",
+ softbank: null,
+ google: "FE97D",
+ image: "1f36e.png",
+ sheet_x: 6,
+ sheet_y: 46,
+ short_name: "custard",
+ short_names: ["custard"],
+ text: null,
+ texts: null,
+ category: "Food & Drink",
+ subcategory: "food-sweet",
+ sort_order: 791,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ honey_pot: {
+ char: "🍯",
+ key: "honey_pot",
+ keywords: ["honey_pot", "HONEY POT"],
+ category: "food_and_drink",
+ lib: {
+ name: "HONEY POT",
+ unified: "1F36F",
+ non_qualified: null,
+ docomo: null,
+ au: "EB59",
+ softbank: null,
+ google: "FE97E",
+ image: "1f36f.png",
+ sheet_x: 6,
+ sheet_y: 47,
+ short_name: "honey_pot",
+ short_names: ["honey_pot"],
+ text: null,
+ texts: null,
+ category: "Food & Drink",
+ subcategory: "food-sweet",
+ sort_order: 792,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ baby_bottle: {
+ char: "🍼",
+ key: "baby_bottle",
+ keywords: ["baby_bottle", "BABY BOTTLE"],
+ category: "food_and_drink",
+ lib: {
+ name: "BABY BOTTLE",
+ unified: "1F37C",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f37c.png",
+ sheet_x: 6,
+ sheet_y: 60,
+ short_name: "baby_bottle",
+ short_names: ["baby_bottle"],
+ text: null,
+ texts: null,
+ category: "Food & Drink",
+ subcategory: "drink",
+ sort_order: 793,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ glass_of_milk: {
+ char: "🥛",
+ key: "glass_of_milk",
+ keywords: ["glass_of_milk", "GLASS OF MILK"],
+ category: "food_and_drink",
+ lib: {
+ name: "GLASS OF MILK",
+ unified: "1F95B",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f95b.png",
+ sheet_x: 43,
+ sheet_y: 39,
+ short_name: "glass_of_milk",
+ short_names: ["glass_of_milk"],
+ text: null,
+ texts: null,
+ category: "Food & Drink",
+ subcategory: "drink",
+ sort_order: 794,
+ added_in: "3.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ coffee: {
+ char: "☕",
+ key: "coffee",
+ keywords: ["coffee", "HOT BEVERAGE"],
+ category: "food_and_drink",
+ lib: {
+ name: "HOT BEVERAGE",
+ unified: "2615",
+ non_qualified: null,
+ docomo: "E670",
+ au: "E597",
+ softbank: "E045",
+ google: "FE981",
+ image: "2615.png",
+ sheet_x: 57,
+ sheet_y: 18,
+ short_name: "coffee",
+ short_names: ["coffee"],
+ text: null,
+ texts: null,
+ category: "Food & Drink",
+ subcategory: "drink",
+ sort_order: 795,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ teapot: {
+ char: "🫖",
+ key: "teapot",
+ keywords: ["teapot", "TEAPOT"],
+ category: "food_and_drink",
+ lib: {
+ name: "TEAPOT",
+ unified: "1FAD6",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1fad6.png",
+ sheet_x: 55,
+ sheet_y: 24,
+ short_name: "teapot",
+ short_names: ["teapot"],
+ text: null,
+ texts: null,
+ category: "Food & Drink",
+ subcategory: "drink",
+ sort_order: 796,
+ added_in: "13.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ tea: {
+ char: "🍵",
+ key: "tea",
+ keywords: ["tea", "TEACUP WITHOUT HANDLE"],
+ category: "food_and_drink",
+ lib: {
+ name: "TEACUP WITHOUT HANDLE",
+ unified: "1F375",
+ non_qualified: null,
+ docomo: "E71E",
+ au: "EAAE",
+ softbank: "E338",
+ google: "FE984",
+ image: "1f375.png",
+ sheet_x: 6,
+ sheet_y: 53,
+ short_name: "tea",
+ short_names: ["tea"],
+ text: null,
+ texts: null,
+ category: "Food & Drink",
+ subcategory: "drink",
+ sort_order: 797,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ sake: {
+ char: "🍶",
+ key: "sake",
+ keywords: ["sake", "SAKE BOTTLE AND CUP"],
+ category: "food_and_drink",
+ lib: {
+ name: "SAKE BOTTLE AND CUP",
+ unified: "1F376",
+ non_qualified: null,
+ docomo: "E74B",
+ au: "EA97",
+ softbank: "E30B",
+ google: "FE985",
+ image: "1f376.png",
+ sheet_x: 6,
+ sheet_y: 54,
+ short_name: "sake",
+ short_names: ["sake"],
+ text: null,
+ texts: null,
+ category: "Food & Drink",
+ subcategory: "drink",
+ sort_order: 798,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ champagne: {
+ char: "🍾",
+ key: "champagne",
+ keywords: ["champagne", "BOTTLE WITH POPPING CORK"],
+ category: "food_and_drink",
+ lib: {
+ name: "BOTTLE WITH POPPING CORK",
+ unified: "1F37E",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f37e.png",
+ sheet_x: 7,
+ sheet_y: 1,
+ short_name: "champagne",
+ short_names: ["champagne"],
+ text: null,
+ texts: null,
+ category: "Food & Drink",
+ subcategory: "drink",
+ sort_order: 799,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ wine_glass: {
+ char: "🍷",
+ key: "wine_glass",
+ keywords: ["wine_glass", "WINE GLASS"],
+ category: "food_and_drink",
+ lib: {
+ name: "WINE GLASS",
+ unified: "1F377",
+ non_qualified: null,
+ docomo: "E756",
+ au: "E4C1",
+ softbank: null,
+ google: "FE986",
+ image: "1f377.png",
+ sheet_x: 6,
+ sheet_y: 55,
+ short_name: "wine_glass",
+ short_names: ["wine_glass"],
+ text: null,
+ texts: null,
+ category: "Food & Drink",
+ subcategory: "drink",
+ sort_order: 800,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ cocktail: {
+ char: "🍸",
+ key: "cocktail",
+ keywords: ["cocktail", "COCKTAIL GLASS"],
+ category: "food_and_drink",
+ lib: {
+ name: "COCKTAIL GLASS",
+ unified: "1F378",
+ non_qualified: null,
+ docomo: "E671",
+ au: "E4C2",
+ softbank: "E044",
+ google: "FE982",
+ image: "1f378.png",
+ sheet_x: 6,
+ sheet_y: 56,
+ short_name: "cocktail",
+ short_names: ["cocktail"],
+ text: null,
+ texts: null,
+ category: "Food & Drink",
+ subcategory: "drink",
+ sort_order: 801,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ tropical_drink: {
+ char: "🍹",
+ key: "tropical_drink",
+ keywords: ["tropical_drink", "TROPICAL DRINK"],
+ category: "food_and_drink",
+ lib: {
+ name: "TROPICAL DRINK",
+ unified: "1F379",
+ non_qualified: null,
+ docomo: "E671",
+ au: "EB3E",
+ softbank: null,
+ google: "FE988",
+ image: "1f379.png",
+ sheet_x: 6,
+ sheet_y: 57,
+ short_name: "tropical_drink",
+ short_names: ["tropical_drink"],
+ text: null,
+ texts: null,
+ category: "Food & Drink",
+ subcategory: "drink",
+ sort_order: 802,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ beer: {
+ char: "🍺",
+ key: "beer",
+ keywords: ["beer", "BEER MUG"],
+ category: "food_and_drink",
+ lib: {
+ name: "BEER MUG",
+ unified: "1F37A",
+ non_qualified: null,
+ docomo: "E672",
+ au: "E4C3",
+ softbank: "E047",
+ google: "FE983",
+ image: "1f37a.png",
+ sheet_x: 6,
+ sheet_y: 58,
+ short_name: "beer",
+ short_names: ["beer"],
+ text: null,
+ texts: null,
+ category: "Food & Drink",
+ subcategory: "drink",
+ sort_order: 803,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ beers: {
+ char: "🍻",
+ key: "beers",
+ keywords: ["beers", "CLINKING BEER MUGS"],
+ category: "food_and_drink",
+ lib: {
+ name: "CLINKING BEER MUGS",
+ unified: "1F37B",
+ non_qualified: null,
+ docomo: "E672",
+ au: "EA98",
+ softbank: "E30C",
+ google: "FE987",
+ image: "1f37b.png",
+ sheet_x: 6,
+ sheet_y: 59,
+ short_name: "beers",
+ short_names: ["beers"],
+ text: null,
+ texts: null,
+ category: "Food & Drink",
+ subcategory: "drink",
+ sort_order: 804,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ clinking_glasses: {
+ char: "🥂",
+ key: "clinking_glasses",
+ keywords: ["clinking_glasses", "CLINKING GLASSES"],
+ category: "food_and_drink",
+ lib: {
+ name: "CLINKING GLASSES",
+ unified: "1F942",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f942.png",
+ sheet_x: 43,
+ sheet_y: 15,
+ short_name: "clinking_glasses",
+ short_names: ["clinking_glasses"],
+ text: null,
+ texts: null,
+ category: "Food & Drink",
+ subcategory: "drink",
+ sort_order: 805,
+ added_in: "3.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ tumbler_glass: {
+ char: "🥃",
+ key: "tumbler_glass",
+ keywords: ["tumbler_glass", "TUMBLER GLASS"],
+ category: "food_and_drink",
+ lib: {
+ name: "TUMBLER GLASS",
+ unified: "1F943",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f943.png",
+ sheet_x: 43,
+ sheet_y: 16,
+ short_name: "tumbler_glass",
+ short_names: ["tumbler_glass"],
+ text: null,
+ texts: null,
+ category: "Food & Drink",
+ subcategory: "drink",
+ sort_order: 806,
+ added_in: "3.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ pouring_liquid: {
+ char: "🫗",
+ key: "pouring_liquid",
+ keywords: ["pouring_liquid", "POURING LIQUID"],
+ category: "food_and_drink",
+ lib: {
+ name: "POURING LIQUID",
+ unified: "1FAD7",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1fad7.png",
+ sheet_x: 55,
+ sheet_y: 25,
+ short_name: "pouring_liquid",
+ short_names: ["pouring_liquid"],
+ text: null,
+ texts: null,
+ category: "Food & Drink",
+ subcategory: "drink",
+ sort_order: 807,
+ added_in: "14.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ cup_with_straw: {
+ char: "🥤",
+ key: "cup_with_straw",
+ keywords: ["cup_with_straw", "CUP WITH STRAW"],
+ category: "food_and_drink",
+ lib: {
+ name: "CUP WITH STRAW",
+ unified: "1F964",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f964.png",
+ sheet_x: 43,
+ sheet_y: 48,
+ short_name: "cup_with_straw",
+ short_names: ["cup_with_straw"],
+ text: null,
+ texts: null,
+ category: "Food & Drink",
+ subcategory: "drink",
+ sort_order: 808,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ bubble_tea: {
+ char: "🧋",
+ key: "bubble_tea",
+ keywords: ["bubble_tea", "BUBBLE TEA"],
+ category: "food_and_drink",
+ lib: {
+ name: "BUBBLE TEA",
+ unified: "1F9CB",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f9cb.png",
+ sheet_x: 46,
+ sheet_y: 18,
+ short_name: "bubble_tea",
+ short_names: ["bubble_tea"],
+ text: null,
+ texts: null,
+ category: "Food & Drink",
+ subcategory: "drink",
+ sort_order: 809,
+ added_in: "13.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ beverage_box: {
+ char: "🧃",
+ key: "beverage_box",
+ keywords: ["beverage_box", "BEVERAGE BOX"],
+ category: "food_and_drink",
+ lib: {
+ name: "BEVERAGE BOX",
+ unified: "1F9C3",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f9c3.png",
+ sheet_x: 46,
+ sheet_y: 10,
+ short_name: "beverage_box",
+ short_names: ["beverage_box"],
+ text: null,
+ texts: null,
+ category: "Food & Drink",
+ subcategory: "drink",
+ sort_order: 810,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ mate_drink: {
+ char: "🧉",
+ key: "mate_drink",
+ keywords: ["mate_drink", "MATE DRINK"],
+ category: "food_and_drink",
+ lib: {
+ name: "MATE DRINK",
+ unified: "1F9C9",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f9c9.png",
+ sheet_x: 46,
+ sheet_y: 16,
+ short_name: "mate_drink",
+ short_names: ["mate_drink"],
+ text: null,
+ texts: null,
+ category: "Food & Drink",
+ subcategory: "drink",
+ sort_order: 811,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ ice_cube: {
+ char: "🧊",
+ key: "ice_cube",
+ keywords: ["ice_cube", "ICE CUBE"],
+ category: "food_and_drink",
+ lib: {
+ name: "ICE CUBE",
+ unified: "1F9CA",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f9ca.png",
+ sheet_x: 46,
+ sheet_y: 17,
+ short_name: "ice_cube",
+ short_names: ["ice_cube"],
+ text: null,
+ texts: null,
+ category: "Food & Drink",
+ subcategory: "drink",
+ sort_order: 812,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ chopsticks: {
+ char: "🥢",
+ key: "chopsticks",
+ keywords: ["chopsticks", "CHOPSTICKS"],
+ category: "food_and_drink",
+ lib: {
+ name: "CHOPSTICKS",
+ unified: "1F962",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f962.png",
+ sheet_x: 43,
+ sheet_y: 46,
+ short_name: "chopsticks",
+ short_names: ["chopsticks"],
+ text: null,
+ texts: null,
+ category: "Food & Drink",
+ subcategory: "dishware",
+ sort_order: 813,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ knife_fork_plate: {
+ char: "🍽️",
+ key: "knife_fork_plate",
+ keywords: ["knife_fork_plate", "FORK AND KNIFE WITH PLATE"],
+ category: "food_and_drink",
+ lib: {
+ name: "FORK AND KNIFE WITH PLATE",
+ unified: "1F37D-FE0F",
+ non_qualified: "1F37D",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f37d-fe0f.png",
+ sheet_x: 7,
+ sheet_y: 0,
+ short_name: "knife_fork_plate",
+ short_names: ["knife_fork_plate"],
+ text: null,
+ texts: null,
+ category: "Food & Drink",
+ subcategory: "dishware",
+ sort_order: 814,
+ added_in: "0.7",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ fork_and_knife: {
+ char: "🍴",
+ key: "fork_and_knife",
+ keywords: ["fork_and_knife", "FORK AND KNIFE"],
+ category: "food_and_drink",
+ lib: {
+ name: "FORK AND KNIFE",
+ unified: "1F374",
+ non_qualified: null,
+ docomo: "E66F",
+ au: "E4AC",
+ softbank: "E043",
+ google: "FE980",
+ image: "1f374.png",
+ sheet_x: 6,
+ sheet_y: 52,
+ short_name: "fork_and_knife",
+ short_names: ["fork_and_knife"],
+ text: null,
+ texts: null,
+ category: "Food & Drink",
+ subcategory: "dishware",
+ sort_order: 815,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ spoon: {
+ char: "🥄",
+ key: "spoon",
+ keywords: ["spoon", "SPOON"],
+ category: "food_and_drink",
+ lib: {
+ name: "SPOON",
+ unified: "1F944",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f944.png",
+ sheet_x: 43,
+ sheet_y: 17,
+ short_name: "spoon",
+ short_names: ["spoon"],
+ text: null,
+ texts: null,
+ category: "Food & Drink",
+ subcategory: "dishware",
+ sort_order: 816,
+ added_in: "3.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ hocho: {
+ char: "🔪",
+ key: "hocho",
+ keywords: ["hocho", "HOCHO"],
+ category: "food_and_drink",
+ lib: {
+ name: "HOCHO",
+ unified: "1F52A",
+ non_qualified: null,
+ docomo: null,
+ au: "E57F",
+ softbank: null,
+ google: "FE4FA",
+ image: "1f52a.png",
+ sheet_x: 30,
+ sheet_y: 7,
+ short_name: "hocho",
+ short_names: ["hocho", "knife"],
+ text: null,
+ texts: null,
+ category: "Food & Drink",
+ subcategory: "dishware",
+ sort_order: 817,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ jar: {
+ char: "🫙",
+ key: "jar",
+ keywords: ["jar", "JAR"],
+ category: "food_and_drink",
+ lib: {
+ name: "JAR",
+ unified: "1FAD9",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1fad9.png",
+ sheet_x: 55,
+ sheet_y: 27,
+ short_name: "jar",
+ short_names: ["jar"],
+ text: null,
+ texts: null,
+ category: "Food & Drink",
+ subcategory: "dishware",
+ sort_order: 818,
+ added_in: "14.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ amphora: {
+ char: "🏺",
+ key: "amphora",
+ keywords: ["amphora", "AMPHORA"],
+ category: "food_and_drink",
+ lib: {
+ name: "AMPHORA",
+ unified: "1F3FA",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f3fa.png",
+ sheet_x: 10,
+ sheet_y: 40,
+ short_name: "amphora",
+ short_names: ["amphora"],
+ text: null,
+ texts: null,
+ category: "Food & Drink",
+ subcategory: "dishware",
+ sort_order: 819,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ earth_africa: {
+ char: "🌍",
+ key: "earth_africa",
+ keywords: ["earth_africa", "EARTH GLOBE EUROPE-AFRICA"],
+ category: "travel_and_places",
+ lib: {
+ name: "EARTH GLOBE EUROPE-AFRICA",
+ unified: "1F30D",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f30d.png",
+ sheet_x: 5,
+ sheet_y: 12,
+ short_name: "earth_africa",
+ short_names: ["earth_africa"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "place-map",
+ sort_order: 820,
+ added_in: "0.7",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ earth_americas: {
+ char: "🌎",
+ key: "earth_americas",
+ keywords: ["earth_americas", "EARTH GLOBE AMERICAS"],
+ category: "travel_and_places",
+ lib: {
+ name: "EARTH GLOBE AMERICAS",
+ unified: "1F30E",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f30e.png",
+ sheet_x: 5,
+ sheet_y: 13,
+ short_name: "earth_americas",
+ short_names: ["earth_americas"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "place-map",
+ sort_order: 821,
+ added_in: "0.7",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ earth_asia: {
+ char: "🌏",
+ key: "earth_asia",
+ keywords: ["earth_asia", "EARTH GLOBE ASIA-AUSTRALIA"],
+ category: "travel_and_places",
+ lib: {
+ name: "EARTH GLOBE ASIA-AUSTRALIA",
+ unified: "1F30F",
+ non_qualified: null,
+ docomo: null,
+ au: "E5B3",
+ softbank: null,
+ google: "FE039",
+ image: "1f30f.png",
+ sheet_x: 5,
+ sheet_y: 14,
+ short_name: "earth_asia",
+ short_names: ["earth_asia"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "place-map",
+ sort_order: 822,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ globe_with_meridians: {
+ char: "🌐",
+ key: "globe_with_meridians",
+ keywords: ["globe_with_meridians", "GLOBE WITH MERIDIANS"],
+ category: "travel_and_places",
+ lib: {
+ name: "GLOBE WITH MERIDIANS",
+ unified: "1F310",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f310.png",
+ sheet_x: 5,
+ sheet_y: 15,
+ short_name: "globe_with_meridians",
+ short_names: ["globe_with_meridians"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "place-map",
+ sort_order: 823,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ world_map: {
+ char: "🗺️",
+ key: "world_map",
+ keywords: ["world_map", "WORLD MAP"],
+ category: "travel_and_places",
+ lib: {
+ name: "WORLD MAP",
+ unified: "1F5FA-FE0F",
+ non_qualified: "1F5FA",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f5fa-fe0f.png",
+ sheet_x: 32,
+ sheet_y: 15,
+ short_name: "world_map",
+ short_names: ["world_map"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "place-map",
+ sort_order: 824,
+ added_in: "0.7",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ japan: {
+ char: "🗾",
+ key: "japan",
+ keywords: ["japan", "SILHOUETTE OF JAPAN"],
+ category: "travel_and_places",
+ lib: {
+ name: "SILHOUETTE OF JAPAN",
+ unified: "1F5FE",
+ non_qualified: null,
+ docomo: null,
+ au: "E572",
+ softbank: null,
+ google: "FE4C7",
+ image: "1f5fe.png",
+ sheet_x: 32,
+ sheet_y: 19,
+ short_name: "japan",
+ short_names: ["japan"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "place-map",
+ sort_order: 825,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ compass: {
+ char: "🧭",
+ key: "compass",
+ keywords: ["compass", "COMPASS"],
+ category: "travel_and_places",
+ lib: {
+ name: "COMPASS",
+ unified: "1F9ED",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f9ed.png",
+ sheet_x: 53,
+ sheet_y: 29,
+ short_name: "compass",
+ short_names: ["compass"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "place-map",
+ sort_order: 826,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ snow_capped_mountain: {
+ char: "🏔️",
+ key: "snow_capped_mountain",
+ keywords: ["snow_capped_mountain", "SNOW-CAPPED MOUNTAIN"],
+ category: "travel_and_places",
+ lib: {
+ name: "SNOW-CAPPED MOUNTAIN",
+ unified: "1F3D4-FE0F",
+ non_qualified: "1F3D4",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f3d4-fe0f.png",
+ sheet_x: 9,
+ sheet_y: 60,
+ short_name: "snow_capped_mountain",
+ short_names: ["snow_capped_mountain"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "place-geographic",
+ sort_order: 827,
+ added_in: "0.7",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ mountain: {
+ char: "⛰️",
+ key: "mountain",
+ keywords: ["mountain", "MOUNTAIN"],
+ category: "travel_and_places",
+ lib: {
+ name: "MOUNTAIN",
+ unified: "26F0-FE0F",
+ non_qualified: "26F0",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "26f0-fe0f.png",
+ sheet_x: 58,
+ sheet_y: 26,
+ short_name: "mountain",
+ short_names: ["mountain"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "place-geographic",
+ sort_order: 828,
+ added_in: "0.7",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ volcano: {
+ char: "🌋",
+ key: "volcano",
+ keywords: ["volcano", "VOLCANO"],
+ category: "travel_and_places",
+ lib: {
+ name: "VOLCANO",
+ unified: "1F30B",
+ non_qualified: null,
+ docomo: null,
+ au: "EB53",
+ softbank: null,
+ google: "FE03A",
+ image: "1f30b.png",
+ sheet_x: 5,
+ sheet_y: 10,
+ short_name: "volcano",
+ short_names: ["volcano"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "place-geographic",
+ sort_order: 829,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ mount_fuji: {
+ char: "🗻",
+ key: "mount_fuji",
+ keywords: ["mount_fuji", "MOUNT FUJI"],
+ category: "travel_and_places",
+ lib: {
+ name: "MOUNT FUJI",
+ unified: "1F5FB",
+ non_qualified: null,
+ docomo: "E740",
+ au: "E5BD",
+ softbank: "E03B",
+ google: "FE4C3",
+ image: "1f5fb.png",
+ sheet_x: 32,
+ sheet_y: 16,
+ short_name: "mount_fuji",
+ short_names: ["mount_fuji"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "place-geographic",
+ sort_order: 830,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ camping: {
+ char: "🏕️",
+ key: "camping",
+ keywords: ["camping", "CAMPING"],
+ category: "travel_and_places",
+ lib: {
+ name: "CAMPING",
+ unified: "1F3D5-FE0F",
+ non_qualified: "1F3D5",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f3d5-fe0f.png",
+ sheet_x: 10,
+ sheet_y: 0,
+ short_name: "camping",
+ short_names: ["camping"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "place-geographic",
+ sort_order: 831,
+ added_in: "0.7",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ beach_with_umbrella: {
+ char: "🏖️",
+ key: "beach_with_umbrella",
+ keywords: ["beach_with_umbrella", "BEACH WITH UMBRELLA"],
+ category: "travel_and_places",
+ lib: {
+ name: "BEACH WITH UMBRELLA",
+ unified: "1F3D6-FE0F",
+ non_qualified: "1F3D6",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f3d6-fe0f.png",
+ sheet_x: 10,
+ sheet_y: 1,
+ short_name: "beach_with_umbrella",
+ short_names: ["beach_with_umbrella"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "place-geographic",
+ sort_order: 832,
+ added_in: "0.7",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ desert: {
+ char: "🏜️",
+ key: "desert",
+ keywords: ["desert", "DESERT"],
+ category: "travel_and_places",
+ lib: {
+ name: "DESERT",
+ unified: "1F3DC-FE0F",
+ non_qualified: "1F3DC",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f3dc-fe0f.png",
+ sheet_x: 10,
+ sheet_y: 7,
+ short_name: "desert",
+ short_names: ["desert"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "place-geographic",
+ sort_order: 833,
+ added_in: "0.7",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ desert_island: {
+ char: "🏝️",
+ key: "desert_island",
+ keywords: ["desert_island", "DESERT ISLAND"],
+ category: "travel_and_places",
+ lib: {
+ name: "DESERT ISLAND",
+ unified: "1F3DD-FE0F",
+ non_qualified: "1F3DD",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f3dd-fe0f.png",
+ sheet_x: 10,
+ sheet_y: 8,
+ short_name: "desert_island",
+ short_names: ["desert_island"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "place-geographic",
+ sort_order: 834,
+ added_in: "0.7",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ national_park: {
+ char: "🏞️",
+ key: "national_park",
+ keywords: ["national_park", "NATIONAL PARK"],
+ category: "travel_and_places",
+ lib: {
+ name: "NATIONAL PARK",
+ unified: "1F3DE-FE0F",
+ non_qualified: "1F3DE",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f3de-fe0f.png",
+ sheet_x: 10,
+ sheet_y: 9,
+ short_name: "national_park",
+ short_names: ["national_park"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "place-geographic",
+ sort_order: 835,
+ added_in: "0.7",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ stadium: {
+ char: "🏟️",
+ key: "stadium",
+ keywords: ["stadium", "STADIUM"],
+ category: "travel_and_places",
+ lib: {
+ name: "STADIUM",
+ unified: "1F3DF-FE0F",
+ non_qualified: "1F3DF",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f3df-fe0f.png",
+ sheet_x: 10,
+ sheet_y: 10,
+ short_name: "stadium",
+ short_names: ["stadium"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "place-building",
+ sort_order: 836,
+ added_in: "0.7",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ classical_building: {
+ char: "🏛️",
+ key: "classical_building",
+ keywords: ["classical_building", "CLASSICAL BUILDING"],
+ category: "travel_and_places",
+ lib: {
+ name: "CLASSICAL BUILDING",
+ unified: "1F3DB-FE0F",
+ non_qualified: "1F3DB",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f3db-fe0f.png",
+ sheet_x: 10,
+ sheet_y: 6,
+ short_name: "classical_building",
+ short_names: ["classical_building"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "place-building",
+ sort_order: 837,
+ added_in: "0.7",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ building_construction: {
+ char: "🏗️",
+ key: "building_construction",
+ keywords: ["building_construction", "BUILDING CONSTRUCTION"],
+ category: "travel_and_places",
+ lib: {
+ name: "BUILDING CONSTRUCTION",
+ unified: "1F3D7-FE0F",
+ non_qualified: "1F3D7",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f3d7-fe0f.png",
+ sheet_x: 10,
+ sheet_y: 2,
+ short_name: "building_construction",
+ short_names: ["building_construction"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "place-building",
+ sort_order: 838,
+ added_in: "0.7",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ bricks: {
+ char: "🧱",
+ key: "bricks",
+ keywords: ["bricks", "BRICK"],
+ category: "travel_and_places",
+ lib: {
+ name: "BRICK",
+ unified: "1F9F1",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f9f1.png",
+ sheet_x: 53,
+ sheet_y: 33,
+ short_name: "bricks",
+ short_names: ["bricks"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "place-building",
+ sort_order: 839,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ rock: {
+ char: "🪨",
+ key: "rock",
+ keywords: ["rock", "ROCK"],
+ category: "travel_and_places",
+ lib: {
+ name: "ROCK",
+ unified: "1FAA8",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1faa8.png",
+ sheet_x: 54,
+ sheet_y: 33,
+ short_name: "rock",
+ short_names: ["rock"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "place-building",
+ sort_order: 840,
+ added_in: "13.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ wood: {
+ char: "🪵",
+ key: "wood",
+ keywords: ["wood", "WOOD"],
+ category: "travel_and_places",
+ lib: {
+ name: "WOOD",
+ unified: "1FAB5",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1fab5.png",
+ sheet_x: 54,
+ sheet_y: 46,
+ short_name: "wood",
+ short_names: ["wood"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "place-building",
+ sort_order: 841,
+ added_in: "13.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ hut: {
+ char: "🛖",
+ key: "hut",
+ keywords: ["hut", "HUT"],
+ category: "travel_and_places",
+ lib: {
+ name: "HUT",
+ unified: "1F6D6",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f6d6.png",
+ sheet_x: 38,
+ sheet_y: 7,
+ short_name: "hut",
+ short_names: ["hut"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "place-building",
+ sort_order: 842,
+ added_in: "13.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ house_buildings: {
+ char: "🏘️",
+ key: "house_buildings",
+ keywords: ["house_buildings", "HOUSES"],
+ category: "travel_and_places",
+ lib: {
+ name: "HOUSES",
+ unified: "1F3D8-FE0F",
+ non_qualified: "1F3D8",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f3d8-fe0f.png",
+ sheet_x: 10,
+ sheet_y: 3,
+ short_name: "house_buildings",
+ short_names: ["house_buildings"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "place-building",
+ sort_order: 843,
+ added_in: "0.7",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ derelict_house_building: {
+ char: "🏚️",
+ key: "derelict_house_building",
+ keywords: ["derelict_house_building", "DERELICT HOUSE"],
+ category: "travel_and_places",
+ lib: {
+ name: "DERELICT HOUSE",
+ unified: "1F3DA-FE0F",
+ non_qualified: "1F3DA",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f3da-fe0f.png",
+ sheet_x: 10,
+ sheet_y: 5,
+ short_name: "derelict_house_building",
+ short_names: ["derelict_house_building"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "place-building",
+ sort_order: 844,
+ added_in: "0.7",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ house: {
+ char: "🏠",
+ key: "house",
+ keywords: ["house", "HOUSE BUILDING"],
+ category: "travel_and_places",
+ lib: {
+ name: "HOUSE BUILDING",
+ unified: "1F3E0",
+ non_qualified: null,
+ docomo: "E663",
+ au: "E4AB",
+ softbank: "E036",
+ google: "FE4B0",
+ image: "1f3e0.png",
+ sheet_x: 10,
+ sheet_y: 11,
+ short_name: "house",
+ short_names: ["house"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "place-building",
+ sort_order: 845,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ house_with_garden: {
+ char: "🏡",
+ key: "house_with_garden",
+ keywords: ["house_with_garden", "HOUSE WITH GARDEN"],
+ category: "travel_and_places",
+ lib: {
+ name: "HOUSE WITH GARDEN",
+ unified: "1F3E1",
+ non_qualified: null,
+ docomo: "E663",
+ au: "EB09",
+ softbank: null,
+ google: "FE4B1",
+ image: "1f3e1.png",
+ sheet_x: 10,
+ sheet_y: 12,
+ short_name: "house_with_garden",
+ short_names: ["house_with_garden"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "place-building",
+ sort_order: 846,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ office: {
+ char: "🏢",
+ key: "office",
+ keywords: ["office", "OFFICE BUILDING"],
+ category: "travel_and_places",
+ lib: {
+ name: "OFFICE BUILDING",
+ unified: "1F3E2",
+ non_qualified: null,
+ docomo: "E664",
+ au: "E4AD",
+ softbank: "E038",
+ google: "FE4B2",
+ image: "1f3e2.png",
+ sheet_x: 10,
+ sheet_y: 13,
+ short_name: "office",
+ short_names: ["office"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "place-building",
+ sort_order: 847,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ post_office: {
+ char: "🏣",
+ key: "post_office",
+ keywords: ["post_office", "JAPANESE POST OFFICE"],
+ category: "travel_and_places",
+ lib: {
+ name: "JAPANESE POST OFFICE",
+ unified: "1F3E3",
+ non_qualified: null,
+ docomo: "E665",
+ au: "E5DE",
+ softbank: "E153",
+ google: "FE4B3",
+ image: "1f3e3.png",
+ sheet_x: 10,
+ sheet_y: 14,
+ short_name: "post_office",
+ short_names: ["post_office"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "place-building",
+ sort_order: 848,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ european_post_office: {
+ char: "🏤",
+ key: "european_post_office",
+ keywords: ["european_post_office", "EUROPEAN POST OFFICE"],
+ category: "travel_and_places",
+ lib: {
+ name: "EUROPEAN POST OFFICE",
+ unified: "1F3E4",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f3e4.png",
+ sheet_x: 10,
+ sheet_y: 15,
+ short_name: "european_post_office",
+ short_names: ["european_post_office"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "place-building",
+ sort_order: 849,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ hospital: {
+ char: "🏥",
+ key: "hospital",
+ keywords: ["hospital", "HOSPITAL"],
+ category: "travel_and_places",
+ lib: {
+ name: "HOSPITAL",
+ unified: "1F3E5",
+ non_qualified: null,
+ docomo: "E666",
+ au: "E5DF",
+ softbank: "E155",
+ google: "FE4B4",
+ image: "1f3e5.png",
+ sheet_x: 10,
+ sheet_y: 16,
+ short_name: "hospital",
+ short_names: ["hospital"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "place-building",
+ sort_order: 850,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ bank: {
+ char: "🏦",
+ key: "bank",
+ keywords: ["bank", "BANK"],
+ category: "travel_and_places",
+ lib: {
+ name: "BANK",
+ unified: "1F3E6",
+ non_qualified: null,
+ docomo: "E667",
+ au: "E4AA",
+ softbank: "E14D",
+ google: "FE4B5",
+ image: "1f3e6.png",
+ sheet_x: 10,
+ sheet_y: 17,
+ short_name: "bank",
+ short_names: ["bank"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "place-building",
+ sort_order: 851,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ hotel: {
+ char: "🏨",
+ key: "hotel",
+ keywords: ["hotel", "HOTEL"],
+ category: "travel_and_places",
+ lib: {
+ name: "HOTEL",
+ unified: "1F3E8",
+ non_qualified: null,
+ docomo: "E669",
+ au: "EA81",
+ softbank: "E158",
+ google: "FE4B7",
+ image: "1f3e8.png",
+ sheet_x: 10,
+ sheet_y: 19,
+ short_name: "hotel",
+ short_names: ["hotel"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "place-building",
+ sort_order: 852,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ love_hotel: {
+ char: "🏩",
+ key: "love_hotel",
+ keywords: ["love_hotel", "LOVE HOTEL"],
+ category: "travel_and_places",
+ lib: {
+ name: "LOVE HOTEL",
+ unified: "1F3E9",
+ non_qualified: null,
+ docomo: "E669-E6EF",
+ au: "EAF3",
+ softbank: "E501",
+ google: "FE4B8",
+ image: "1f3e9.png",
+ sheet_x: 10,
+ sheet_y: 20,
+ short_name: "love_hotel",
+ short_names: ["love_hotel"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "place-building",
+ sort_order: 853,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ convenience_store: {
+ char: "🏪",
+ key: "convenience_store",
+ keywords: ["convenience_store", "CONVENIENCE STORE"],
+ category: "travel_and_places",
+ lib: {
+ name: "CONVENIENCE STORE",
+ unified: "1F3EA",
+ non_qualified: null,
+ docomo: "E66A",
+ au: "E4A4",
+ softbank: "E156",
+ google: "FE4B9",
+ image: "1f3ea.png",
+ sheet_x: 10,
+ sheet_y: 21,
+ short_name: "convenience_store",
+ short_names: ["convenience_store"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "place-building",
+ sort_order: 854,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ school: {
+ char: "🏫",
+ key: "school",
+ keywords: ["school", "SCHOOL"],
+ category: "travel_and_places",
+ lib: {
+ name: "SCHOOL",
+ unified: "1F3EB",
+ non_qualified: null,
+ docomo: "E73E",
+ au: "EA80",
+ softbank: "E157",
+ google: "FE4BA",
+ image: "1f3eb.png",
+ sheet_x: 10,
+ sheet_y: 22,
+ short_name: "school",
+ short_names: ["school"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "place-building",
+ sort_order: 855,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ department_store: {
+ char: "🏬",
+ key: "department_store",
+ keywords: ["department_store", "DEPARTMENT STORE"],
+ category: "travel_and_places",
+ lib: {
+ name: "DEPARTMENT STORE",
+ unified: "1F3EC",
+ non_qualified: null,
+ docomo: null,
+ au: "EAF6",
+ softbank: "E504",
+ google: "FE4BD",
+ image: "1f3ec.png",
+ sheet_x: 10,
+ sheet_y: 23,
+ short_name: "department_store",
+ short_names: ["department_store"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "place-building",
+ sort_order: 856,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ factory: {
+ char: "🏭",
+ key: "factory",
+ keywords: ["factory", "FACTORY"],
+ category: "travel_and_places",
+ lib: {
+ name: "FACTORY",
+ unified: "1F3ED",
+ non_qualified: null,
+ docomo: null,
+ au: "EAF9",
+ softbank: "E508",
+ google: "FE4C0",
+ image: "1f3ed.png",
+ sheet_x: 10,
+ sheet_y: 24,
+ short_name: "factory",
+ short_names: ["factory"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "place-building",
+ sort_order: 857,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ japanese_castle: {
+ char: "🏯",
+ key: "japanese_castle",
+ keywords: ["japanese_castle", "JAPANESE CASTLE"],
+ category: "travel_and_places",
+ lib: {
+ name: "JAPANESE CASTLE",
+ unified: "1F3EF",
+ non_qualified: null,
+ docomo: null,
+ au: "EAF7",
+ softbank: "E505",
+ google: "FE4BE",
+ image: "1f3ef.png",
+ sheet_x: 10,
+ sheet_y: 26,
+ short_name: "japanese_castle",
+ short_names: ["japanese_castle"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "place-building",
+ sort_order: 858,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ european_castle: {
+ char: "🏰",
+ key: "european_castle",
+ keywords: ["european_castle", "EUROPEAN CASTLE"],
+ category: "travel_and_places",
+ lib: {
+ name: "EUROPEAN CASTLE",
+ unified: "1F3F0",
+ non_qualified: null,
+ docomo: null,
+ au: "EAF8",
+ softbank: "E506",
+ google: "FE4BF",
+ image: "1f3f0.png",
+ sheet_x: 10,
+ sheet_y: 27,
+ short_name: "european_castle",
+ short_names: ["european_castle"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "place-building",
+ sort_order: 859,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ wedding: {
+ char: "💒",
+ key: "wedding",
+ keywords: ["wedding", "WEDDING"],
+ category: "travel_and_places",
+ lib: {
+ name: "WEDDING",
+ unified: "1F492",
+ non_qualified: null,
+ docomo: null,
+ au: "E5BB",
+ softbank: "E43D",
+ google: "FE82A",
+ image: "1f492.png",
+ sheet_x: 27,
+ sheet_y: 34,
+ short_name: "wedding",
+ short_names: ["wedding"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "place-building",
+ sort_order: 860,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ tokyo_tower: {
+ char: "🗼",
+ key: "tokyo_tower",
+ keywords: ["tokyo_tower", "TOKYO TOWER"],
+ category: "travel_and_places",
+ lib: {
+ name: "TOKYO TOWER",
+ unified: "1F5FC",
+ non_qualified: null,
+ docomo: null,
+ au: "E4C0",
+ softbank: "E509",
+ google: "FE4C4",
+ image: "1f5fc.png",
+ sheet_x: 32,
+ sheet_y: 17,
+ short_name: "tokyo_tower",
+ short_names: ["tokyo_tower"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "place-building",
+ sort_order: 861,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ statue_of_liberty: {
+ char: "🗽",
+ key: "statue_of_liberty",
+ keywords: ["statue_of_liberty", "STATUE OF LIBERTY"],
+ category: "travel_and_places",
+ lib: {
+ name: "STATUE OF LIBERTY",
+ unified: "1F5FD",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: "E51D",
+ google: "FE4C6",
+ image: "1f5fd.png",
+ sheet_x: 32,
+ sheet_y: 18,
+ short_name: "statue_of_liberty",
+ short_names: ["statue_of_liberty"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "place-building",
+ sort_order: 862,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ church: {
+ char: "⛪",
+ key: "church",
+ keywords: ["church", "CHURCH"],
+ category: "travel_and_places",
+ lib: {
+ name: "CHURCH",
+ unified: "26EA",
+ non_qualified: null,
+ docomo: null,
+ au: "E5BB",
+ softbank: "E037",
+ google: "FE4BB",
+ image: "26ea.png",
+ sheet_x: 58,
+ sheet_y: 25,
+ short_name: "church",
+ short_names: ["church"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "place-religious",
+ sort_order: 863,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ mosque: {
+ char: "🕌",
+ key: "mosque",
+ keywords: ["mosque", "MOSQUE"],
+ category: "travel_and_places",
+ lib: {
+ name: "MOSQUE",
+ unified: "1F54C",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f54c.png",
+ sheet_x: 30,
+ sheet_y: 30,
+ short_name: "mosque",
+ short_names: ["mosque"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "place-religious",
+ sort_order: 864,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ hindu_temple: {
+ char: "🛕",
+ key: "hindu_temple",
+ keywords: ["hindu_temple", "HINDU TEMPLE"],
+ category: "travel_and_places",
+ lib: {
+ name: "HINDU TEMPLE",
+ unified: "1F6D5",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f6d5.png",
+ sheet_x: 38,
+ sheet_y: 6,
+ short_name: "hindu_temple",
+ short_names: ["hindu_temple"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "place-religious",
+ sort_order: 865,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ synagogue: {
+ char: "🕍",
+ key: "synagogue",
+ keywords: ["synagogue", "SYNAGOGUE"],
+ category: "travel_and_places",
+ lib: {
+ name: "SYNAGOGUE",
+ unified: "1F54D",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f54d.png",
+ sheet_x: 30,
+ sheet_y: 31,
+ short_name: "synagogue",
+ short_names: ["synagogue"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "place-religious",
+ sort_order: 866,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ shinto_shrine: {
+ char: "⛩️",
+ key: "shinto_shrine",
+ keywords: ["shinto_shrine", "SHINTO SHRINE"],
+ category: "travel_and_places",
+ lib: {
+ name: "SHINTO SHRINE",
+ unified: "26E9-FE0F",
+ non_qualified: "26E9",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "26e9-fe0f.png",
+ sheet_x: 58,
+ sheet_y: 24,
+ short_name: "shinto_shrine",
+ short_names: ["shinto_shrine"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "place-religious",
+ sort_order: 867,
+ added_in: "0.7",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ kaaba: {
+ char: "🕋",
+ key: "kaaba",
+ keywords: ["kaaba", "KAABA"],
+ category: "travel_and_places",
+ lib: {
+ name: "KAABA",
+ unified: "1F54B",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f54b.png",
+ sheet_x: 30,
+ sheet_y: 29,
+ short_name: "kaaba",
+ short_names: ["kaaba"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "place-religious",
+ sort_order: 868,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ fountain: {
+ char: "⛲",
+ key: "fountain",
+ keywords: ["fountain", "FOUNTAIN"],
+ category: "travel_and_places",
+ lib: {
+ name: "FOUNTAIN",
+ unified: "26F2",
+ non_qualified: null,
+ docomo: null,
+ au: "E5CF",
+ softbank: "E121",
+ google: "FE4BC",
+ image: "26f2.png",
+ sheet_x: 58,
+ sheet_y: 28,
+ short_name: "fountain",
+ short_names: ["fountain"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "place-other",
+ sort_order: 869,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ tent: {
+ char: "⛺",
+ key: "tent",
+ keywords: ["tent", "TENT"],
+ category: "travel_and_places",
+ lib: {
+ name: "TENT",
+ unified: "26FA",
+ non_qualified: null,
+ docomo: null,
+ au: "E5D0",
+ softbank: "E122",
+ google: "FE7FB",
+ image: "26fa.png",
+ sheet_x: 58,
+ sheet_y: 52,
+ short_name: "tent",
+ short_names: ["tent"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "place-other",
+ sort_order: 870,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ foggy: {
+ char: "🌁",
+ key: "foggy",
+ keywords: ["foggy", "FOGGY"],
+ category: "travel_and_places",
+ lib: {
+ name: "FOGGY",
+ unified: "1F301",
+ non_qualified: null,
+ docomo: "E644",
+ au: "E598",
+ softbank: null,
+ google: "FE006",
+ image: "1f301.png",
+ sheet_x: 5,
+ sheet_y: 0,
+ short_name: "foggy",
+ short_names: ["foggy"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "place-other",
+ sort_order: 871,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ night_with_stars: {
+ char: "🌃",
+ key: "night_with_stars",
+ keywords: ["night_with_stars", "NIGHT WITH STARS"],
+ category: "travel_and_places",
+ lib: {
+ name: "NIGHT WITH STARS",
+ unified: "1F303",
+ non_qualified: null,
+ docomo: "E6B3",
+ au: "EAF1",
+ softbank: "E44B",
+ google: "FE008",
+ image: "1f303.png",
+ sheet_x: 5,
+ sheet_y: 2,
+ short_name: "night_with_stars",
+ short_names: ["night_with_stars"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "place-other",
+ sort_order: 872,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ cityscape: {
+ char: "🏙️",
+ key: "cityscape",
+ keywords: ["cityscape", "CITYSCAPE"],
+ category: "travel_and_places",
+ lib: {
+ name: "CITYSCAPE",
+ unified: "1F3D9-FE0F",
+ non_qualified: "1F3D9",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f3d9-fe0f.png",
+ sheet_x: 10,
+ sheet_y: 4,
+ short_name: "cityscape",
+ short_names: ["cityscape"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "place-other",
+ sort_order: 873,
+ added_in: "0.7",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ sunrise_over_mountains: {
+ char: "🌄",
+ key: "sunrise_over_mountains",
+ keywords: ["sunrise_over_mountains", "SUNRISE OVER MOUNTAINS"],
+ category: "travel_and_places",
+ lib: {
+ name: "SUNRISE OVER MOUNTAINS",
+ unified: "1F304",
+ non_qualified: null,
+ docomo: "E63E",
+ au: "EAF4",
+ softbank: "E04D",
+ google: "FE009",
+ image: "1f304.png",
+ sheet_x: 5,
+ sheet_y: 3,
+ short_name: "sunrise_over_mountains",
+ short_names: ["sunrise_over_mountains"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "place-other",
+ sort_order: 874,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ sunrise: {
+ char: "🌅",
+ key: "sunrise",
+ keywords: ["sunrise", "SUNRISE"],
+ category: "travel_and_places",
+ lib: {
+ name: "SUNRISE",
+ unified: "1F305",
+ non_qualified: null,
+ docomo: "E63E",
+ au: "EAF4",
+ softbank: "E449",
+ google: "FE00A",
+ image: "1f305.png",
+ sheet_x: 5,
+ sheet_y: 4,
+ short_name: "sunrise",
+ short_names: ["sunrise"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "place-other",
+ sort_order: 875,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ city_sunset: {
+ char: "🌆",
+ key: "city_sunset",
+ keywords: ["city_sunset", "CITYSCAPE AT DUSK"],
+ category: "travel_and_places",
+ lib: {
+ name: "CITYSCAPE AT DUSK",
+ unified: "1F306",
+ non_qualified: null,
+ docomo: null,
+ au: "E5DA",
+ softbank: "E146",
+ google: "FE00B",
+ image: "1f306.png",
+ sheet_x: 5,
+ sheet_y: 5,
+ short_name: "city_sunset",
+ short_names: ["city_sunset"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "place-other",
+ sort_order: 876,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ city_sunrise: {
+ char: "🌇",
+ key: "city_sunrise",
+ keywords: ["city_sunrise", "SUNSET OVER BUILDINGS"],
+ category: "travel_and_places",
+ lib: {
+ name: "SUNSET OVER BUILDINGS",
+ unified: "1F307",
+ non_qualified: null,
+ docomo: "E63E",
+ au: "E5DA",
+ softbank: "E44A",
+ google: "FE00C",
+ image: "1f307.png",
+ sheet_x: 5,
+ sheet_y: 6,
+ short_name: "city_sunrise",
+ short_names: ["city_sunrise"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "place-other",
+ sort_order: 877,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ bridge_at_night: {
+ char: "🌉",
+ key: "bridge_at_night",
+ keywords: ["bridge_at_night", "BRIDGE AT NIGHT"],
+ category: "travel_and_places",
+ lib: {
+ name: "BRIDGE AT NIGHT",
+ unified: "1F309",
+ non_qualified: null,
+ docomo: "E6B3",
+ au: "E4BF",
+ softbank: null,
+ google: "FE010",
+ image: "1f309.png",
+ sheet_x: 5,
+ sheet_y: 8,
+ short_name: "bridge_at_night",
+ short_names: ["bridge_at_night"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "place-other",
+ sort_order: 878,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ hotsprings: {
+ char: "♨️",
+ key: "hotsprings",
+ keywords: ["hotsprings", "HOT SPRINGS"],
+ category: "travel_and_places",
+ lib: {
+ name: "HOT SPRINGS",
+ unified: "2668-FE0F",
+ non_qualified: "2668",
+ docomo: "E6F7",
+ au: "E4BC",
+ softbank: "E123",
+ google: "FE7FA",
+ image: "2668-fe0f.png",
+ sheet_x: 57,
+ sheet_y: 55,
+ short_name: "hotsprings",
+ short_names: ["hotsprings"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "place-other",
+ sort_order: 879,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ carousel_horse: {
+ char: "🎠",
+ key: "carousel_horse",
+ keywords: ["carousel_horse", "CAROUSEL HORSE"],
+ category: "travel_and_places",
+ lib: {
+ name: "CAROUSEL HORSE",
+ unified: "1F3A0",
+ non_qualified: null,
+ docomo: "E679",
+ au: null,
+ softbank: null,
+ google: "FE7FC",
+ image: "1f3a0.png",
+ sheet_x: 7,
+ sheet_y: 35,
+ short_name: "carousel_horse",
+ short_names: ["carousel_horse"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "place-other",
+ sort_order: 880,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ playground_slide: {
+ char: "🛝",
+ key: "playground_slide",
+ keywords: ["playground_slide", "PLAYGROUND SLIDE"],
+ category: "travel_and_places",
+ lib: {
+ name: "PLAYGROUND SLIDE",
+ unified: "1F6DD",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f6dd.png",
+ sheet_x: 38,
+ sheet_y: 10,
+ short_name: "playground_slide",
+ short_names: ["playground_slide"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "place-other",
+ sort_order: 881,
+ added_in: "14.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ ferris_wheel: {
+ char: "🎡",
+ key: "ferris_wheel",
+ keywords: ["ferris_wheel", "FERRIS WHEEL"],
+ category: "travel_and_places",
+ lib: {
+ name: "FERRIS WHEEL",
+ unified: "1F3A1",
+ non_qualified: null,
+ docomo: null,
+ au: "E46D",
+ softbank: "E124",
+ google: "FE7FD",
+ image: "1f3a1.png",
+ sheet_x: 7,
+ sheet_y: 36,
+ short_name: "ferris_wheel",
+ short_names: ["ferris_wheel"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "place-other",
+ sort_order: 882,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ roller_coaster: {
+ char: "🎢",
+ key: "roller_coaster",
+ keywords: ["roller_coaster", "ROLLER COASTER"],
+ category: "travel_and_places",
+ lib: {
+ name: "ROLLER COASTER",
+ unified: "1F3A2",
+ non_qualified: null,
+ docomo: null,
+ au: "EAE2",
+ softbank: "E433",
+ google: "FE7FE",
+ image: "1f3a2.png",
+ sheet_x: 7,
+ sheet_y: 37,
+ short_name: "roller_coaster",
+ short_names: ["roller_coaster"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "place-other",
+ sort_order: 883,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ barber: {
+ char: "💈",
+ key: "barber",
+ keywords: ["barber", "BARBER POLE"],
+ category: "travel_and_places",
+ lib: {
+ name: "BARBER POLE",
+ unified: "1F488",
+ non_qualified: null,
+ docomo: null,
+ au: "EAA2",
+ softbank: "E320",
+ google: "FE199",
+ image: "1f488.png",
+ sheet_x: 26,
+ sheet_y: 35,
+ short_name: "barber",
+ short_names: ["barber"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "place-other",
+ sort_order: 884,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ circus_tent: {
+ char: "🎪",
+ key: "circus_tent",
+ keywords: ["circus_tent", "CIRCUS TENT"],
+ category: "travel_and_places",
+ lib: {
+ name: "CIRCUS TENT",
+ unified: "1F3AA",
+ non_qualified: null,
+ docomo: "E67D",
+ au: "E59E",
+ softbank: null,
+ google: "FE806",
+ image: "1f3aa.png",
+ sheet_x: 7,
+ sheet_y: 45,
+ short_name: "circus_tent",
+ short_names: ["circus_tent"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "place-other",
+ sort_order: 885,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ steam_locomotive: {
+ char: "🚂",
+ key: "steam_locomotive",
+ keywords: ["steam_locomotive", "STEAM LOCOMOTIVE"],
+ category: "travel_and_places",
+ lib: {
+ name: "STEAM LOCOMOTIVE",
+ unified: "1F682",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f682.png",
+ sheet_x: 35,
+ sheet_y: 35,
+ short_name: "steam_locomotive",
+ short_names: ["steam_locomotive"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "transport-ground",
+ sort_order: 886,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ railway_car: {
+ char: "🚃",
+ key: "railway_car",
+ keywords: ["railway_car", "RAILWAY CAR"],
+ category: "travel_and_places",
+ lib: {
+ name: "RAILWAY CAR",
+ unified: "1F683",
+ non_qualified: null,
+ docomo: "E65B",
+ au: "E4B5",
+ softbank: "E01E",
+ google: "FE7DF",
+ image: "1f683.png",
+ sheet_x: 35,
+ sheet_y: 36,
+ short_name: "railway_car",
+ short_names: ["railway_car"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "transport-ground",
+ sort_order: 887,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ bullettrain_side: {
+ char: "🚄",
+ key: "bullettrain_side",
+ keywords: ["bullettrain_side", "HIGH-SPEED TRAIN"],
+ category: "travel_and_places",
+ lib: {
+ name: "HIGH-SPEED TRAIN",
+ unified: "1F684",
+ non_qualified: null,
+ docomo: "E65D",
+ au: "E4B0",
+ softbank: "E435",
+ google: "FE7E2",
+ image: "1f684.png",
+ sheet_x: 35,
+ sheet_y: 37,
+ short_name: "bullettrain_side",
+ short_names: ["bullettrain_side"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "transport-ground",
+ sort_order: 888,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ bullettrain_front: {
+ char: "🚅",
+ key: "bullettrain_front",
+ keywords: ["bullettrain_front", "HIGH-SPEED TRAIN WITH BULLET NOSE"],
+ category: "travel_and_places",
+ lib: {
+ name: "HIGH-SPEED TRAIN WITH BULLET NOSE",
+ unified: "1F685",
+ non_qualified: null,
+ docomo: "E65D",
+ au: "E4B0",
+ softbank: "E01F",
+ google: "FE7E3",
+ image: "1f685.png",
+ sheet_x: 35,
+ sheet_y: 38,
+ short_name: "bullettrain_front",
+ short_names: ["bullettrain_front"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "transport-ground",
+ sort_order: 889,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ train2: {
+ char: "🚆",
+ key: "train2",
+ keywords: ["train2", "TRAIN"],
+ category: "travel_and_places",
+ lib: {
+ name: "TRAIN",
+ unified: "1F686",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f686.png",
+ sheet_x: 35,
+ sheet_y: 39,
+ short_name: "train2",
+ short_names: ["train2"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "transport-ground",
+ sort_order: 890,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ metro: {
+ char: "🚇",
+ key: "metro",
+ keywords: ["metro", "METRO"],
+ category: "travel_and_places",
+ lib: {
+ name: "METRO",
+ unified: "1F687",
+ non_qualified: null,
+ docomo: "E65C",
+ au: "E5BC",
+ softbank: "E434",
+ google: "FE7E0",
+ image: "1f687.png",
+ sheet_x: 35,
+ sheet_y: 40,
+ short_name: "metro",
+ short_names: ["metro"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "transport-ground",
+ sort_order: 891,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ light_rail: {
+ char: "🚈",
+ key: "light_rail",
+ keywords: ["light_rail", "LIGHT RAIL"],
+ category: "travel_and_places",
+ lib: {
+ name: "LIGHT RAIL",
+ unified: "1F688",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f688.png",
+ sheet_x: 35,
+ sheet_y: 41,
+ short_name: "light_rail",
+ short_names: ["light_rail"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "transport-ground",
+ sort_order: 892,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ station: {
+ char: "🚉",
+ key: "station",
+ keywords: ["station", "STATION"],
+ category: "travel_and_places",
+ lib: {
+ name: "STATION",
+ unified: "1F689",
+ non_qualified: null,
+ docomo: null,
+ au: "EB6D",
+ softbank: "E039",
+ google: "FE7EC",
+ image: "1f689.png",
+ sheet_x: 35,
+ sheet_y: 42,
+ short_name: "station",
+ short_names: ["station"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "transport-ground",
+ sort_order: 893,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ tram: {
+ char: "🚊",
+ key: "tram",
+ keywords: ["tram", "TRAM"],
+ category: "travel_and_places",
+ lib: {
+ name: "TRAM",
+ unified: "1F68A",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f68a.png",
+ sheet_x: 35,
+ sheet_y: 43,
+ short_name: "tram",
+ short_names: ["tram"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "transport-ground",
+ sort_order: 894,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ monorail: {
+ char: "🚝",
+ key: "monorail",
+ keywords: ["monorail", "MONORAIL"],
+ category: "travel_and_places",
+ lib: {
+ name: "MONORAIL",
+ unified: "1F69D",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f69d.png",
+ sheet_x: 36,
+ sheet_y: 1,
+ short_name: "monorail",
+ short_names: ["monorail"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "transport-ground",
+ sort_order: 895,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ mountain_railway: {
+ char: "🚞",
+ key: "mountain_railway",
+ keywords: ["mountain_railway", "MOUNTAIN RAILWAY"],
+ category: "travel_and_places",
+ lib: {
+ name: "MOUNTAIN RAILWAY",
+ unified: "1F69E",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f69e.png",
+ sheet_x: 36,
+ sheet_y: 2,
+ short_name: "mountain_railway",
+ short_names: ["mountain_railway"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "transport-ground",
+ sort_order: 896,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ train: {
+ char: "🚋",
+ key: "train",
+ keywords: ["train", "TRAM CAR"],
+ category: "travel_and_places",
+ lib: {
+ name: "TRAM CAR",
+ unified: "1F68B",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f68b.png",
+ sheet_x: 35,
+ sheet_y: 44,
+ short_name: "train",
+ short_names: ["train"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "transport-ground",
+ sort_order: 897,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ bus: {
+ char: "🚌",
+ key: "bus",
+ keywords: ["bus", "BUS"],
+ category: "travel_and_places",
+ lib: {
+ name: "BUS",
+ unified: "1F68C",
+ non_qualified: null,
+ docomo: "E660",
+ au: "E4AF",
+ softbank: "E159",
+ google: "FE7E6",
+ image: "1f68c.png",
+ sheet_x: 35,
+ sheet_y: 45,
+ short_name: "bus",
+ short_names: ["bus"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "transport-ground",
+ sort_order: 898,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ oncoming_bus: {
+ char: "🚍",
+ key: "oncoming_bus",
+ keywords: ["oncoming_bus", "ONCOMING BUS"],
+ category: "travel_and_places",
+ lib: {
+ name: "ONCOMING BUS",
+ unified: "1F68D",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f68d.png",
+ sheet_x: 35,
+ sheet_y: 46,
+ short_name: "oncoming_bus",
+ short_names: ["oncoming_bus"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "transport-ground",
+ sort_order: 899,
+ added_in: "0.7",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ trolleybus: {
+ char: "🚎",
+ key: "trolleybus",
+ keywords: ["trolleybus", "TROLLEYBUS"],
+ category: "travel_and_places",
+ lib: {
+ name: "TROLLEYBUS",
+ unified: "1F68E",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f68e.png",
+ sheet_x: 35,
+ sheet_y: 47,
+ short_name: "trolleybus",
+ short_names: ["trolleybus"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "transport-ground",
+ sort_order: 900,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ minibus: {
+ char: "🚐",
+ key: "minibus",
+ keywords: ["minibus", "MINIBUS"],
+ category: "travel_and_places",
+ lib: {
+ name: "MINIBUS",
+ unified: "1F690",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f690.png",
+ sheet_x: 35,
+ sheet_y: 49,
+ short_name: "minibus",
+ short_names: ["minibus"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "transport-ground",
+ sort_order: 901,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ ambulance: {
+ char: "🚑",
+ key: "ambulance",
+ keywords: ["ambulance", "AMBULANCE"],
+ category: "travel_and_places",
+ lib: {
+ name: "AMBULANCE",
+ unified: "1F691",
+ non_qualified: null,
+ docomo: null,
+ au: "EAE0",
+ softbank: "E431",
+ google: "FE7F3",
+ image: "1f691.png",
+ sheet_x: 35,
+ sheet_y: 50,
+ short_name: "ambulance",
+ short_names: ["ambulance"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "transport-ground",
+ sort_order: 902,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ fire_engine: {
+ char: "🚒",
+ key: "fire_engine",
+ keywords: ["fire_engine", "FIRE ENGINE"],
+ category: "travel_and_places",
+ lib: {
+ name: "FIRE ENGINE",
+ unified: "1F692",
+ non_qualified: null,
+ docomo: null,
+ au: "EADF",
+ softbank: "E430",
+ google: "FE7F2",
+ image: "1f692.png",
+ sheet_x: 35,
+ sheet_y: 51,
+ short_name: "fire_engine",
+ short_names: ["fire_engine"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "transport-ground",
+ sort_order: 903,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ police_car: {
+ char: "🚓",
+ key: "police_car",
+ keywords: ["police_car", "POLICE CAR"],
+ category: "travel_and_places",
+ lib: {
+ name: "POLICE CAR",
+ unified: "1F693",
+ non_qualified: null,
+ docomo: null,
+ au: "EAE1",
+ softbank: "E432",
+ google: "FE7F4",
+ image: "1f693.png",
+ sheet_x: 35,
+ sheet_y: 52,
+ short_name: "police_car",
+ short_names: ["police_car"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "transport-ground",
+ sort_order: 904,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ oncoming_police_car: {
+ char: "🚔",
+ key: "oncoming_police_car",
+ keywords: ["oncoming_police_car", "ONCOMING POLICE CAR"],
+ category: "travel_and_places",
+ lib: {
+ name: "ONCOMING POLICE CAR",
+ unified: "1F694",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f694.png",
+ sheet_x: 35,
+ sheet_y: 53,
+ short_name: "oncoming_police_car",
+ short_names: ["oncoming_police_car"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "transport-ground",
+ sort_order: 905,
+ added_in: "0.7",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ taxi: {
+ char: "🚕",
+ key: "taxi",
+ keywords: ["taxi", "TAXI"],
+ category: "travel_and_places",
+ lib: {
+ name: "TAXI",
+ unified: "1F695",
+ non_qualified: null,
+ docomo: "E65E",
+ au: "E4B1",
+ softbank: "E15A",
+ google: "FE7EF",
+ image: "1f695.png",
+ sheet_x: 35,
+ sheet_y: 54,
+ short_name: "taxi",
+ short_names: ["taxi"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "transport-ground",
+ sort_order: 906,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ oncoming_taxi: {
+ char: "🚖",
+ key: "oncoming_taxi",
+ keywords: ["oncoming_taxi", "ONCOMING TAXI"],
+ category: "travel_and_places",
+ lib: {
+ name: "ONCOMING TAXI",
+ unified: "1F696",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f696.png",
+ sheet_x: 35,
+ sheet_y: 55,
+ short_name: "oncoming_taxi",
+ short_names: ["oncoming_taxi"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "transport-ground",
+ sort_order: 907,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ car: {
+ char: "🚗",
+ key: "car",
+ keywords: ["car", "AUTOMOBILE"],
+ category: "travel_and_places",
+ lib: {
+ name: "AUTOMOBILE",
+ unified: "1F697",
+ non_qualified: null,
+ docomo: "E65E",
+ au: "E4B1",
+ softbank: "E01B",
+ google: "FE7E4",
+ image: "1f697.png",
+ sheet_x: 35,
+ sheet_y: 56,
+ short_name: "car",
+ short_names: ["car", "red_car"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "transport-ground",
+ sort_order: 908,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ oncoming_automobile: {
+ char: "🚘",
+ key: "oncoming_automobile",
+ keywords: ["oncoming_automobile", "ONCOMING AUTOMOBILE"],
+ category: "travel_and_places",
+ lib: {
+ name: "ONCOMING AUTOMOBILE",
+ unified: "1F698",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f698.png",
+ sheet_x: 35,
+ sheet_y: 57,
+ short_name: "oncoming_automobile",
+ short_names: ["oncoming_automobile"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "transport-ground",
+ sort_order: 909,
+ added_in: "0.7",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ blue_car: {
+ char: "🚙",
+ key: "blue_car",
+ keywords: ["blue_car", "RECREATIONAL VEHICLE"],
+ category: "travel_and_places",
+ lib: {
+ name: "RECREATIONAL VEHICLE",
+ unified: "1F699",
+ non_qualified: null,
+ docomo: "E65F",
+ au: "E4B1",
+ softbank: "E42E",
+ google: "FE7E5",
+ image: "1f699.png",
+ sheet_x: 35,
+ sheet_y: 58,
+ short_name: "blue_car",
+ short_names: ["blue_car"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "transport-ground",
+ sort_order: 910,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ pickup_truck: {
+ char: "🛻",
+ key: "pickup_truck",
+ keywords: ["pickup_truck", "PICKUP TRUCK"],
+ category: "travel_and_places",
+ lib: {
+ name: "PICKUP TRUCK",
+ unified: "1F6FB",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f6fb.png",
+ sheet_x: 38,
+ sheet_y: 31,
+ short_name: "pickup_truck",
+ short_names: ["pickup_truck"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "transport-ground",
+ sort_order: 911,
+ added_in: "13.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ truck: {
+ char: "🚚",
+ key: "truck",
+ keywords: ["truck", "DELIVERY TRUCK"],
+ category: "travel_and_places",
+ lib: {
+ name: "DELIVERY TRUCK",
+ unified: "1F69A",
+ non_qualified: null,
+ docomo: null,
+ au: "E4B2",
+ softbank: "E42F",
+ google: "FE7F1",
+ image: "1f69a.png",
+ sheet_x: 35,
+ sheet_y: 59,
+ short_name: "truck",
+ short_names: ["truck"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "transport-ground",
+ sort_order: 912,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ articulated_lorry: {
+ char: "🚛",
+ key: "articulated_lorry",
+ keywords: ["articulated_lorry", "ARTICULATED LORRY"],
+ category: "travel_and_places",
+ lib: {
+ name: "ARTICULATED LORRY",
+ unified: "1F69B",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f69b.png",
+ sheet_x: 35,
+ sheet_y: 60,
+ short_name: "articulated_lorry",
+ short_names: ["articulated_lorry"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "transport-ground",
+ sort_order: 913,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ tractor: {
+ char: "🚜",
+ key: "tractor",
+ keywords: ["tractor", "TRACTOR"],
+ category: "travel_and_places",
+ lib: {
+ name: "TRACTOR",
+ unified: "1F69C",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f69c.png",
+ sheet_x: 36,
+ sheet_y: 0,
+ short_name: "tractor",
+ short_names: ["tractor"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "transport-ground",
+ sort_order: 914,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ racing_car: {
+ char: "🏎️",
+ key: "racing_car",
+ keywords: ["racing_car", "RACING CAR"],
+ category: "travel_and_places",
+ lib: {
+ name: "RACING CAR",
+ unified: "1F3CE-FE0F",
+ non_qualified: "1F3CE",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f3ce-fe0f.png",
+ sheet_x: 9,
+ sheet_y: 54,
+ short_name: "racing_car",
+ short_names: ["racing_car"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "transport-ground",
+ sort_order: 915,
+ added_in: "0.7",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ racing_motorcycle: {
+ char: "🏍️",
+ key: "racing_motorcycle",
+ keywords: ["racing_motorcycle", "MOTORCYCLE"],
+ category: "travel_and_places",
+ lib: {
+ name: "MOTORCYCLE",
+ unified: "1F3CD-FE0F",
+ non_qualified: "1F3CD",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f3cd-fe0f.png",
+ sheet_x: 9,
+ sheet_y: 53,
+ short_name: "racing_motorcycle",
+ short_names: ["racing_motorcycle"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "transport-ground",
+ sort_order: 916,
+ added_in: "0.7",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ motor_scooter: {
+ char: "🛵",
+ key: "motor_scooter",
+ keywords: ["motor_scooter", "MOTOR SCOOTER"],
+ category: "travel_and_places",
+ lib: {
+ name: "MOTOR SCOOTER",
+ unified: "1F6F5",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f6f5.png",
+ sheet_x: 38,
+ sheet_y: 25,
+ short_name: "motor_scooter",
+ short_names: ["motor_scooter"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "transport-ground",
+ sort_order: 917,
+ added_in: "3.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ manual_wheelchair: {
+ char: "🦽",
+ key: "manual_wheelchair",
+ keywords: ["manual_wheelchair", "MANUAL WHEELCHAIR"],
+ category: "travel_and_places",
+ lib: {
+ name: "MANUAL WHEELCHAIR",
+ unified: "1F9BD",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f9bd.png",
+ sheet_x: 46,
+ sheet_y: 4,
+ short_name: "manual_wheelchair",
+ short_names: ["manual_wheelchair"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "transport-ground",
+ sort_order: 918,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ motorized_wheelchair: {
+ char: "🦼",
+ key: "motorized_wheelchair",
+ keywords: ["motorized_wheelchair", "MOTORIZED WHEELCHAIR"],
+ category: "travel_and_places",
+ lib: {
+ name: "MOTORIZED WHEELCHAIR",
+ unified: "1F9BC",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f9bc.png",
+ sheet_x: 46,
+ sheet_y: 3,
+ short_name: "motorized_wheelchair",
+ short_names: ["motorized_wheelchair"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "transport-ground",
+ sort_order: 919,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ auto_rickshaw: {
+ char: "🛺",
+ key: "auto_rickshaw",
+ keywords: ["auto_rickshaw", "AUTO RICKSHAW"],
+ category: "travel_and_places",
+ lib: {
+ name: "AUTO RICKSHAW",
+ unified: "1F6FA",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f6fa.png",
+ sheet_x: 38,
+ sheet_y: 30,
+ short_name: "auto_rickshaw",
+ short_names: ["auto_rickshaw"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "transport-ground",
+ sort_order: 920,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ bike: {
+ char: "🚲",
+ key: "bike",
+ keywords: ["bike", "BICYCLE"],
+ category: "travel_and_places",
+ lib: {
+ name: "BICYCLE",
+ unified: "1F6B2",
+ non_qualified: null,
+ docomo: "E71D",
+ au: "E4AE",
+ softbank: "E136",
+ google: "FE7EB",
+ image: "1f6b2.png",
+ sheet_x: 36,
+ sheet_y: 39,
+ short_name: "bike",
+ short_names: ["bike"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "transport-ground",
+ sort_order: 921,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ scooter: {
+ char: "🛴",
+ key: "scooter",
+ keywords: ["scooter", "SCOOTER"],
+ category: "travel_and_places",
+ lib: {
+ name: "SCOOTER",
+ unified: "1F6F4",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f6f4.png",
+ sheet_x: 38,
+ sheet_y: 24,
+ short_name: "scooter",
+ short_names: ["scooter"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "transport-ground",
+ sort_order: 922,
+ added_in: "3.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ skateboard: {
+ char: "🛹",
+ key: "skateboard",
+ keywords: ["skateboard", "SKATEBOARD"],
+ category: "travel_and_places",
+ lib: {
+ name: "SKATEBOARD",
+ unified: "1F6F9",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f6f9.png",
+ sheet_x: 38,
+ sheet_y: 29,
+ short_name: "skateboard",
+ short_names: ["skateboard"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "transport-ground",
+ sort_order: 923,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ roller_skate: {
+ char: "🛼",
+ key: "roller_skate",
+ keywords: ["roller_skate", "ROLLER SKATE"],
+ category: "travel_and_places",
+ lib: {
+ name: "ROLLER SKATE",
+ unified: "1F6FC",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f6fc.png",
+ sheet_x: 38,
+ sheet_y: 32,
+ short_name: "roller_skate",
+ short_names: ["roller_skate"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "transport-ground",
+ sort_order: 924,
+ added_in: "13.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ busstop: {
+ char: "🚏",
+ key: "busstop",
+ keywords: ["busstop", "BUS STOP"],
+ category: "travel_and_places",
+ lib: {
+ name: "BUS STOP",
+ unified: "1F68F",
+ non_qualified: null,
+ docomo: null,
+ au: "E4A7",
+ softbank: "E150",
+ google: "FE7E7",
+ image: "1f68f.png",
+ sheet_x: 35,
+ sheet_y: 48,
+ short_name: "busstop",
+ short_names: ["busstop"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "transport-ground",
+ sort_order: 925,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ motorway: {
+ char: "🛣️",
+ key: "motorway",
+ keywords: ["motorway", "MOTORWAY"],
+ category: "travel_and_places",
+ lib: {
+ name: "MOTORWAY",
+ unified: "1F6E3-FE0F",
+ non_qualified: "1F6E3",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f6e3-fe0f.png",
+ sheet_x: 38,
+ sheet_y: 16,
+ short_name: "motorway",
+ short_names: ["motorway"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "transport-ground",
+ sort_order: 926,
+ added_in: "0.7",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ railway_track: {
+ char: "🛤️",
+ key: "railway_track",
+ keywords: ["railway_track", "RAILWAY TRACK"],
+ category: "travel_and_places",
+ lib: {
+ name: "RAILWAY TRACK",
+ unified: "1F6E4-FE0F",
+ non_qualified: "1F6E4",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f6e4-fe0f.png",
+ sheet_x: 38,
+ sheet_y: 17,
+ short_name: "railway_track",
+ short_names: ["railway_track"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "transport-ground",
+ sort_order: 927,
+ added_in: "0.7",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ oil_drum: {
+ char: "🛢️",
+ key: "oil_drum",
+ keywords: ["oil_drum", "OIL DRUM"],
+ category: "travel_and_places",
+ lib: {
+ name: "OIL DRUM",
+ unified: "1F6E2-FE0F",
+ non_qualified: "1F6E2",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f6e2-fe0f.png",
+ sheet_x: 38,
+ sheet_y: 15,
+ short_name: "oil_drum",
+ short_names: ["oil_drum"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "transport-ground",
+ sort_order: 928,
+ added_in: "0.7",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ fuelpump: {
+ char: "⛽",
+ key: "fuelpump",
+ keywords: ["fuelpump", "FUEL PUMP"],
+ category: "travel_and_places",
+ lib: {
+ name: "FUEL PUMP",
+ unified: "26FD",
+ non_qualified: null,
+ docomo: "E66B",
+ au: "E571",
+ softbank: "E03A",
+ google: "FE7F5",
+ image: "26fd.png",
+ sheet_x: 58,
+ sheet_y: 53,
+ short_name: "fuelpump",
+ short_names: ["fuelpump"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "transport-ground",
+ sort_order: 929,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ wheel: {
+ char: "🛞",
+ key: "wheel",
+ keywords: ["wheel", "WHEEL"],
+ category: "travel_and_places",
+ lib: {
+ name: "WHEEL",
+ unified: "1F6DE",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f6de.png",
+ sheet_x: 38,
+ sheet_y: 11,
+ short_name: "wheel",
+ short_names: ["wheel"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "transport-ground",
+ sort_order: 930,
+ added_in: "14.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ rotating_light: {
+ char: "🚨",
+ key: "rotating_light",
+ keywords: ["rotating_light", "POLICE CARS REVOLVING LIGHT"],
+ category: "travel_and_places",
+ lib: {
+ name: "POLICE CARS REVOLVING LIGHT",
+ unified: "1F6A8",
+ non_qualified: null,
+ docomo: null,
+ au: "EB73",
+ softbank: null,
+ google: "FE7F9",
+ image: "1f6a8.png",
+ sheet_x: 36,
+ sheet_y: 29,
+ short_name: "rotating_light",
+ short_names: ["rotating_light"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "transport-ground",
+ sort_order: 931,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ traffic_light: {
+ char: "🚥",
+ key: "traffic_light",
+ keywords: ["traffic_light", "HORIZONTAL TRAFFIC LIGHT"],
+ category: "travel_and_places",
+ lib: {
+ name: "HORIZONTAL TRAFFIC LIGHT",
+ unified: "1F6A5",
+ non_qualified: null,
+ docomo: "E66D",
+ au: "E46A",
+ softbank: "E14E",
+ google: "FE7F7",
+ image: "1f6a5.png",
+ sheet_x: 36,
+ sheet_y: 26,
+ short_name: "traffic_light",
+ short_names: ["traffic_light"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "transport-ground",
+ sort_order: 932,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ vertical_traffic_light: {
+ char: "🚦",
+ key: "vertical_traffic_light",
+ keywords: ["vertical_traffic_light", "VERTICAL TRAFFIC LIGHT"],
+ category: "travel_and_places",
+ lib: {
+ name: "VERTICAL TRAFFIC LIGHT",
+ unified: "1F6A6",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f6a6.png",
+ sheet_x: 36,
+ sheet_y: 27,
+ short_name: "vertical_traffic_light",
+ short_names: ["vertical_traffic_light"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "transport-ground",
+ sort_order: 933,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ octagonal_sign: {
+ char: "🛑",
+ key: "octagonal_sign",
+ keywords: ["octagonal_sign", "OCTAGONAL SIGN"],
+ category: "travel_and_places",
+ lib: {
+ name: "OCTAGONAL SIGN",
+ unified: "1F6D1",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f6d1.png",
+ sheet_x: 38,
+ sheet_y: 4,
+ short_name: "octagonal_sign",
+ short_names: ["octagonal_sign"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "transport-ground",
+ sort_order: 934,
+ added_in: "3.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ construction: {
+ char: "🚧",
+ key: "construction",
+ keywords: ["construction", "CONSTRUCTION SIGN"],
+ category: "travel_and_places",
+ lib: {
+ name: "CONSTRUCTION SIGN",
+ unified: "1F6A7",
+ non_qualified: null,
+ docomo: null,
+ au: "E5D7",
+ softbank: "E137",
+ google: "FE7F8",
+ image: "1f6a7.png",
+ sheet_x: 36,
+ sheet_y: 28,
+ short_name: "construction",
+ short_names: ["construction"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "transport-ground",
+ sort_order: 935,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ anchor: {
+ char: "⚓",
+ key: "anchor",
+ keywords: ["anchor", "ANCHOR"],
+ category: "travel_and_places",
+ lib: {
+ name: "ANCHOR",
+ unified: "2693",
+ non_qualified: null,
+ docomo: "E661",
+ au: "E4A9",
+ softbank: null,
+ google: "FE4C1",
+ image: "2693.png",
+ sheet_x: 57,
+ sheet_y: 60,
+ short_name: "anchor",
+ short_names: ["anchor"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "transport-water",
+ sort_order: 936,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ ring_buoy: {
+ char: "🛟",
+ key: "ring_buoy",
+ keywords: ["ring_buoy", "RING BUOY"],
+ category: "travel_and_places",
+ lib: {
+ name: "RING BUOY",
+ unified: "1F6DF",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f6df.png",
+ sheet_x: 38,
+ sheet_y: 12,
+ short_name: "ring_buoy",
+ short_names: ["ring_buoy"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "transport-water",
+ sort_order: 937,
+ added_in: "14.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ boat: {
+ char: "⛵",
+ key: "boat",
+ keywords: ["boat", "SAILBOAT"],
+ category: "travel_and_places",
+ lib: {
+ name: "SAILBOAT",
+ unified: "26F5",
+ non_qualified: null,
+ docomo: "E6A3",
+ au: "E4B4",
+ softbank: "E01C",
+ google: "FE7EA",
+ image: "26f5.png",
+ sheet_x: 58,
+ sheet_y: 31,
+ short_name: "boat",
+ short_names: ["boat", "sailboat"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "transport-water",
+ sort_order: 938,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ canoe: {
+ char: "🛶",
+ key: "canoe",
+ keywords: ["canoe", "CANOE"],
+ category: "travel_and_places",
+ lib: {
+ name: "CANOE",
+ unified: "1F6F6",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f6f6.png",
+ sheet_x: 38,
+ sheet_y: 26,
+ short_name: "canoe",
+ short_names: ["canoe"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "transport-water",
+ sort_order: 939,
+ added_in: "3.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ speedboat: {
+ char: "🚤",
+ key: "speedboat",
+ keywords: ["speedboat", "SPEEDBOAT"],
+ category: "travel_and_places",
+ lib: {
+ name: "SPEEDBOAT",
+ unified: "1F6A4",
+ non_qualified: null,
+ docomo: "E6A3",
+ au: "E4B4",
+ softbank: "E135",
+ google: "FE7EE",
+ image: "1f6a4.png",
+ sheet_x: 36,
+ sheet_y: 25,
+ short_name: "speedboat",
+ short_names: ["speedboat"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "transport-water",
+ sort_order: 940,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ passenger_ship: {
+ char: "🛳️",
+ key: "passenger_ship",
+ keywords: ["passenger_ship", "PASSENGER SHIP"],
+ category: "travel_and_places",
+ lib: {
+ name: "PASSENGER SHIP",
+ unified: "1F6F3-FE0F",
+ non_qualified: "1F6F3",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f6f3-fe0f.png",
+ sheet_x: 38,
+ sheet_y: 23,
+ short_name: "passenger_ship",
+ short_names: ["passenger_ship"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "transport-water",
+ sort_order: 941,
+ added_in: "0.7",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ ferry: {
+ char: "⛴️",
+ key: "ferry",
+ keywords: ["ferry", "FERRY"],
+ category: "travel_and_places",
+ lib: {
+ name: "FERRY",
+ unified: "26F4-FE0F",
+ non_qualified: "26F4",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "26f4-fe0f.png",
+ sheet_x: 58,
+ sheet_y: 30,
+ short_name: "ferry",
+ short_names: ["ferry"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "transport-water",
+ sort_order: 942,
+ added_in: "0.7",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ motor_boat: {
+ char: "🛥️",
+ key: "motor_boat",
+ keywords: ["motor_boat", "MOTOR BOAT"],
+ category: "travel_and_places",
+ lib: {
+ name: "MOTOR BOAT",
+ unified: "1F6E5-FE0F",
+ non_qualified: "1F6E5",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f6e5-fe0f.png",
+ sheet_x: 38,
+ sheet_y: 18,
+ short_name: "motor_boat",
+ short_names: ["motor_boat"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "transport-water",
+ sort_order: 943,
+ added_in: "0.7",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ ship: {
+ char: "🚢",
+ key: "ship",
+ keywords: ["ship", "SHIP"],
+ category: "travel_and_places",
+ lib: {
+ name: "SHIP",
+ unified: "1F6A2",
+ non_qualified: null,
+ docomo: "E661",
+ au: "EA82",
+ softbank: "E202",
+ google: "FE7E8",
+ image: "1f6a2.png",
+ sheet_x: 36,
+ sheet_y: 6,
+ short_name: "ship",
+ short_names: ["ship"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "transport-water",
+ sort_order: 944,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ airplane: {
+ char: "✈️",
+ key: "airplane",
+ keywords: ["airplane", "AIRPLANE"],
+ category: "travel_and_places",
+ lib: {
+ name: "AIRPLANE",
+ unified: "2708-FE0F",
+ non_qualified: "2708",
+ docomo: "E662",
+ au: "E4B3",
+ softbank: "E01D",
+ google: "FE7E9",
+ image: "2708-fe0f.png",
+ sheet_x: 58,
+ sheet_y: 56,
+ short_name: "airplane",
+ short_names: ["airplane"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "transport-air",
+ sort_order: 945,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ small_airplane: {
+ char: "🛩️",
+ key: "small_airplane",
+ keywords: ["small_airplane", "SMALL AIRPLANE"],
+ category: "travel_and_places",
+ lib: {
+ name: "SMALL AIRPLANE",
+ unified: "1F6E9-FE0F",
+ non_qualified: "1F6E9",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f6e9-fe0f.png",
+ sheet_x: 38,
+ sheet_y: 19,
+ short_name: "small_airplane",
+ short_names: ["small_airplane"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "transport-air",
+ sort_order: 946,
+ added_in: "0.7",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ airplane_departure: {
+ char: "🛫",
+ key: "airplane_departure",
+ keywords: ["airplane_departure", "AIRPLANE DEPARTURE"],
+ category: "travel_and_places",
+ lib: {
+ name: "AIRPLANE DEPARTURE",
+ unified: "1F6EB",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f6eb.png",
+ sheet_x: 38,
+ sheet_y: 20,
+ short_name: "airplane_departure",
+ short_names: ["airplane_departure"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "transport-air",
+ sort_order: 947,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ airplane_arriving: {
+ char: "🛬",
+ key: "airplane_arriving",
+ keywords: ["airplane_arriving", "AIRPLANE ARRIVING"],
+ category: "travel_and_places",
+ lib: {
+ name: "AIRPLANE ARRIVING",
+ unified: "1F6EC",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f6ec.png",
+ sheet_x: 38,
+ sheet_y: 21,
+ short_name: "airplane_arriving",
+ short_names: ["airplane_arriving"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "transport-air",
+ sort_order: 948,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ parachute: {
+ char: "🪂",
+ key: "parachute",
+ keywords: ["parachute", "PARACHUTE"],
+ category: "travel_and_places",
+ lib: {
+ name: "PARACHUTE",
+ unified: "1FA82",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1fa82.png",
+ sheet_x: 54,
+ sheet_y: 2,
+ short_name: "parachute",
+ short_names: ["parachute"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "transport-air",
+ sort_order: 949,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ seat: {
+ char: "💺",
+ key: "seat",
+ keywords: ["seat", "SEAT"],
+ category: "travel_and_places",
+ lib: {
+ name: "SEAT",
+ unified: "1F4BA",
+ non_qualified: null,
+ docomo: "E6B2",
+ au: null,
+ softbank: "E11F",
+ google: "FE537",
+ image: "1f4ba.png",
+ sheet_x: 28,
+ sheet_y: 18,
+ short_name: "seat",
+ short_names: ["seat"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "transport-air",
+ sort_order: 950,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ helicopter: {
+ char: "🚁",
+ key: "helicopter",
+ keywords: ["helicopter", "HELICOPTER"],
+ category: "travel_and_places",
+ lib: {
+ name: "HELICOPTER",
+ unified: "1F681",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f681.png",
+ sheet_x: 35,
+ sheet_y: 34,
+ short_name: "helicopter",
+ short_names: ["helicopter"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "transport-air",
+ sort_order: 951,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ suspension_railway: {
+ char: "🚟",
+ key: "suspension_railway",
+ keywords: ["suspension_railway", "SUSPENSION RAILWAY"],
+ category: "travel_and_places",
+ lib: {
+ name: "SUSPENSION RAILWAY",
+ unified: "1F69F",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f69f.png",
+ sheet_x: 36,
+ sheet_y: 3,
+ short_name: "suspension_railway",
+ short_names: ["suspension_railway"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "transport-air",
+ sort_order: 952,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ mountain_cableway: {
+ char: "🚠",
+ key: "mountain_cableway",
+ keywords: ["mountain_cableway", "MOUNTAIN CABLEWAY"],
+ category: "travel_and_places",
+ lib: {
+ name: "MOUNTAIN CABLEWAY",
+ unified: "1F6A0",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f6a0.png",
+ sheet_x: 36,
+ sheet_y: 4,
+ short_name: "mountain_cableway",
+ short_names: ["mountain_cableway"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "transport-air",
+ sort_order: 953,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ aerial_tramway: {
+ char: "🚡",
+ key: "aerial_tramway",
+ keywords: ["aerial_tramway", "AERIAL TRAMWAY"],
+ category: "travel_and_places",
+ lib: {
+ name: "AERIAL TRAMWAY",
+ unified: "1F6A1",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f6a1.png",
+ sheet_x: 36,
+ sheet_y: 5,
+ short_name: "aerial_tramway",
+ short_names: ["aerial_tramway"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "transport-air",
+ sort_order: 954,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ satellite: {
+ char: "🛰️",
+ key: "satellite",
+ keywords: ["satellite", "SATELLITE"],
+ category: "travel_and_places",
+ lib: {
+ name: "SATELLITE",
+ unified: "1F6F0-FE0F",
+ non_qualified: "1F6F0",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f6f0-fe0f.png",
+ sheet_x: 38,
+ sheet_y: 22,
+ short_name: "satellite",
+ short_names: ["satellite"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "transport-air",
+ sort_order: 955,
+ added_in: "0.7",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ rocket: {
+ char: "🚀",
+ key: "rocket",
+ keywords: ["rocket", "ROCKET"],
+ category: "travel_and_places",
+ lib: {
+ name: "ROCKET",
+ unified: "1F680",
+ non_qualified: null,
+ docomo: null,
+ au: "E5C8",
+ softbank: "E10D",
+ google: "FE7ED",
+ image: "1f680.png",
+ sheet_x: 35,
+ sheet_y: 33,
+ short_name: "rocket",
+ short_names: ["rocket"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "transport-air",
+ sort_order: 956,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ flying_saucer: {
+ char: "🛸",
+ key: "flying_saucer",
+ keywords: ["flying_saucer", "FLYING SAUCER"],
+ category: "travel_and_places",
+ lib: {
+ name: "FLYING SAUCER",
+ unified: "1F6F8",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f6f8.png",
+ sheet_x: 38,
+ sheet_y: 28,
+ short_name: "flying_saucer",
+ short_names: ["flying_saucer"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "transport-air",
+ sort_order: 957,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ bellhop_bell: {
+ char: "🛎️",
+ key: "bellhop_bell",
+ keywords: ["bellhop_bell", "BELLHOP BELL"],
+ category: "travel_and_places",
+ lib: {
+ name: "BELLHOP BELL",
+ unified: "1F6CE-FE0F",
+ non_qualified: "1F6CE",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f6ce-fe0f.png",
+ sheet_x: 38,
+ sheet_y: 1,
+ short_name: "bellhop_bell",
+ short_names: ["bellhop_bell"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "hotel",
+ sort_order: 958,
+ added_in: "0.7",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ luggage: {
+ char: "🧳",
+ key: "luggage",
+ keywords: ["luggage", "LUGGAGE"],
+ category: "travel_and_places",
+ lib: {
+ name: "LUGGAGE",
+ unified: "1F9F3",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f9f3.png",
+ sheet_x: 53,
+ sheet_y: 35,
+ short_name: "luggage",
+ short_names: ["luggage"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "hotel",
+ sort_order: 959,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ hourglass: {
+ char: "⌛",
+ key: "hourglass",
+ keywords: ["hourglass", "HOURGLASS"],
+ category: "travel_and_places",
+ lib: {
+ name: "HOURGLASS",
+ unified: "231B",
+ non_qualified: null,
+ docomo: "E71C",
+ au: "E57B",
+ softbank: null,
+ google: "FE01C",
+ image: "231b.png",
+ sheet_x: 56,
+ sheet_y: 45,
+ short_name: "hourglass",
+ short_names: ["hourglass"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "time",
+ sort_order: 960,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ hourglass_flowing_sand: {
+ char: "⏳",
+ key: "hourglass_flowing_sand",
+ keywords: ["hourglass_flowing_sand", "HOURGLASS WITH FLOWING SAND"],
+ category: "travel_and_places",
+ lib: {
+ name: "HOURGLASS WITH FLOWING SAND",
+ unified: "23F3",
+ non_qualified: null,
+ docomo: "E71C",
+ au: "E47C",
+ softbank: null,
+ google: "FE01B",
+ image: "23f3.png",
+ sheet_x: 56,
+ sheet_y: 58,
+ short_name: "hourglass_flowing_sand",
+ short_names: ["hourglass_flowing_sand"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "time",
+ sort_order: 961,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ watch: {
+ char: "⌚",
+ key: "watch",
+ keywords: ["watch", "WATCH"],
+ category: "travel_and_places",
+ lib: {
+ name: "WATCH",
+ unified: "231A",
+ non_qualified: null,
+ docomo: "E71F",
+ au: "E57A",
+ softbank: null,
+ google: "FE01D",
+ image: "231a.png",
+ sheet_x: 56,
+ sheet_y: 44,
+ short_name: "watch",
+ short_names: ["watch"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "time",
+ sort_order: 962,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ alarm_clock: {
+ char: "⏰",
+ key: "alarm_clock",
+ keywords: ["alarm_clock", "ALARM CLOCK"],
+ category: "travel_and_places",
+ lib: {
+ name: "ALARM CLOCK",
+ unified: "23F0",
+ non_qualified: null,
+ docomo: "E6BA",
+ au: "E594",
+ softbank: null,
+ google: "FE02A",
+ image: "23f0.png",
+ sheet_x: 56,
+ sheet_y: 55,
+ short_name: "alarm_clock",
+ short_names: ["alarm_clock"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "time",
+ sort_order: 963,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ stopwatch: {
+ char: "⏱️",
+ key: "stopwatch",
+ keywords: ["stopwatch", "STOPWATCH"],
+ category: "travel_and_places",
+ lib: {
+ name: "STOPWATCH",
+ unified: "23F1-FE0F",
+ non_qualified: "23F1",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "23f1-fe0f.png",
+ sheet_x: 56,
+ sheet_y: 56,
+ short_name: "stopwatch",
+ short_names: ["stopwatch"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "time",
+ sort_order: 964,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ timer_clock: {
+ char: "⏲️",
+ key: "timer_clock",
+ keywords: ["timer_clock", "TIMER CLOCK"],
+ category: "travel_and_places",
+ lib: {
+ name: "TIMER CLOCK",
+ unified: "23F2-FE0F",
+ non_qualified: "23F2",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "23f2-fe0f.png",
+ sheet_x: 56,
+ sheet_y: 57,
+ short_name: "timer_clock",
+ short_names: ["timer_clock"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "time",
+ sort_order: 965,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ mantelpiece_clock: {
+ char: "🕰️",
+ key: "mantelpiece_clock",
+ keywords: ["mantelpiece_clock", "MANTELPIECE CLOCK"],
+ category: "travel_and_places",
+ lib: {
+ name: "MANTELPIECE CLOCK",
+ unified: "1F570-FE0F",
+ non_qualified: "1F570",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f570-fe0f.png",
+ sheet_x: 30,
+ sheet_y: 58,
+ short_name: "mantelpiece_clock",
+ short_names: ["mantelpiece_clock"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "time",
+ sort_order: 966,
+ added_in: "0.7",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ clock12: {
+ char: "🕛",
+ key: "clock12",
+ keywords: ["clock12", "CLOCK FACE TWELVE OCLOCK"],
+ category: "travel_and_places",
+ lib: {
+ name: "CLOCK FACE TWELVE OCLOCK",
+ unified: "1F55B",
+ non_qualified: null,
+ docomo: "E6BA",
+ au: "E594",
+ softbank: "E02F",
+ google: "FE029",
+ image: "1f55b.png",
+ sheet_x: 30,
+ sheet_y: 44,
+ short_name: "clock12",
+ short_names: ["clock12"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "time",
+ sort_order: 967,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ clock1230: {
+ char: "🕧",
+ key: "clock1230",
+ keywords: ["clock1230", "CLOCK FACE TWELVE-THIRTY"],
+ category: "travel_and_places",
+ lib: {
+ name: "CLOCK FACE TWELVE-THIRTY",
+ unified: "1F567",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f567.png",
+ sheet_x: 30,
+ sheet_y: 56,
+ short_name: "clock1230",
+ short_names: ["clock1230"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "time",
+ sort_order: 968,
+ added_in: "0.7",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ clock1: {
+ char: "🕐",
+ key: "clock1",
+ keywords: ["clock1", "CLOCK FACE ONE OCLOCK"],
+ category: "travel_and_places",
+ lib: {
+ name: "CLOCK FACE ONE OCLOCK",
+ unified: "1F550",
+ non_qualified: null,
+ docomo: "E6BA",
+ au: "E594",
+ softbank: "E024",
+ google: "FE01E",
+ image: "1f550.png",
+ sheet_x: 30,
+ sheet_y: 33,
+ short_name: "clock1",
+ short_names: ["clock1"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "time",
+ sort_order: 969,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ clock130: {
+ char: "🕜",
+ key: "clock130",
+ keywords: ["clock130", "CLOCK FACE ONE-THIRTY"],
+ category: "travel_and_places",
+ lib: {
+ name: "CLOCK FACE ONE-THIRTY",
+ unified: "1F55C",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f55c.png",
+ sheet_x: 30,
+ sheet_y: 45,
+ short_name: "clock130",
+ short_names: ["clock130"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "time",
+ sort_order: 970,
+ added_in: "0.7",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ clock2: {
+ char: "🕑",
+ key: "clock2",
+ keywords: ["clock2", "CLOCK FACE TWO OCLOCK"],
+ category: "travel_and_places",
+ lib: {
+ name: "CLOCK FACE TWO OCLOCK",
+ unified: "1F551",
+ non_qualified: null,
+ docomo: "E6BA",
+ au: "E594",
+ softbank: "E025",
+ google: "FE01F",
+ image: "1f551.png",
+ sheet_x: 30,
+ sheet_y: 34,
+ short_name: "clock2",
+ short_names: ["clock2"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "time",
+ sort_order: 971,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ clock230: {
+ char: "🕝",
+ key: "clock230",
+ keywords: ["clock230", "CLOCK FACE TWO-THIRTY"],
+ category: "travel_and_places",
+ lib: {
+ name: "CLOCK FACE TWO-THIRTY",
+ unified: "1F55D",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f55d.png",
+ sheet_x: 30,
+ sheet_y: 46,
+ short_name: "clock230",
+ short_names: ["clock230"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "time",
+ sort_order: 972,
+ added_in: "0.7",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ clock3: {
+ char: "🕒",
+ key: "clock3",
+ keywords: ["clock3", "CLOCK FACE THREE OCLOCK"],
+ category: "travel_and_places",
+ lib: {
+ name: "CLOCK FACE THREE OCLOCK",
+ unified: "1F552",
+ non_qualified: null,
+ docomo: "E6BA",
+ au: "E594",
+ softbank: "E026",
+ google: "FE020",
+ image: "1f552.png",
+ sheet_x: 30,
+ sheet_y: 35,
+ short_name: "clock3",
+ short_names: ["clock3"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "time",
+ sort_order: 973,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ clock330: {
+ char: "🕞",
+ key: "clock330",
+ keywords: ["clock330", "CLOCK FACE THREE-THIRTY"],
+ category: "travel_and_places",
+ lib: {
+ name: "CLOCK FACE THREE-THIRTY",
+ unified: "1F55E",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f55e.png",
+ sheet_x: 30,
+ sheet_y: 47,
+ short_name: "clock330",
+ short_names: ["clock330"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "time",
+ sort_order: 974,
+ added_in: "0.7",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ clock4: {
+ char: "🕓",
+ key: "clock4",
+ keywords: ["clock4", "CLOCK FACE FOUR OCLOCK"],
+ category: "travel_and_places",
+ lib: {
+ name: "CLOCK FACE FOUR OCLOCK",
+ unified: "1F553",
+ non_qualified: null,
+ docomo: "E6BA",
+ au: "E594",
+ softbank: "E027",
+ google: "FE021",
+ image: "1f553.png",
+ sheet_x: 30,
+ sheet_y: 36,
+ short_name: "clock4",
+ short_names: ["clock4"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "time",
+ sort_order: 975,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ clock430: {
+ char: "🕟",
+ key: "clock430",
+ keywords: ["clock430", "CLOCK FACE FOUR-THIRTY"],
+ category: "travel_and_places",
+ lib: {
+ name: "CLOCK FACE FOUR-THIRTY",
+ unified: "1F55F",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f55f.png",
+ sheet_x: 30,
+ sheet_y: 48,
+ short_name: "clock430",
+ short_names: ["clock430"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "time",
+ sort_order: 976,
+ added_in: "0.7",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ clock5: {
+ char: "🕔",
+ key: "clock5",
+ keywords: ["clock5", "CLOCK FACE FIVE OCLOCK"],
+ category: "travel_and_places",
+ lib: {
+ name: "CLOCK FACE FIVE OCLOCK",
+ unified: "1F554",
+ non_qualified: null,
+ docomo: "E6BA",
+ au: "E594",
+ softbank: "E028",
+ google: "FE022",
+ image: "1f554.png",
+ sheet_x: 30,
+ sheet_y: 37,
+ short_name: "clock5",
+ short_names: ["clock5"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "time",
+ sort_order: 977,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ clock530: {
+ char: "🕠",
+ key: "clock530",
+ keywords: ["clock530", "CLOCK FACE FIVE-THIRTY"],
+ category: "travel_and_places",
+ lib: {
+ name: "CLOCK FACE FIVE-THIRTY",
+ unified: "1F560",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f560.png",
+ sheet_x: 30,
+ sheet_y: 49,
+ short_name: "clock530",
+ short_names: ["clock530"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "time",
+ sort_order: 978,
+ added_in: "0.7",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ clock6: {
+ char: "🕕",
+ key: "clock6",
+ keywords: ["clock6", "CLOCK FACE SIX OCLOCK"],
+ category: "travel_and_places",
+ lib: {
+ name: "CLOCK FACE SIX OCLOCK",
+ unified: "1F555",
+ non_qualified: null,
+ docomo: "E6BA",
+ au: "E594",
+ softbank: "E029",
+ google: "FE023",
+ image: "1f555.png",
+ sheet_x: 30,
+ sheet_y: 38,
+ short_name: "clock6",
+ short_names: ["clock6"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "time",
+ sort_order: 979,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ clock630: {
+ char: "🕡",
+ key: "clock630",
+ keywords: ["clock630", "CLOCK FACE SIX-THIRTY"],
+ category: "travel_and_places",
+ lib: {
+ name: "CLOCK FACE SIX-THIRTY",
+ unified: "1F561",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f561.png",
+ sheet_x: 30,
+ sheet_y: 50,
+ short_name: "clock630",
+ short_names: ["clock630"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "time",
+ sort_order: 980,
+ added_in: "0.7",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ clock7: {
+ char: "🕖",
+ key: "clock7",
+ keywords: ["clock7", "CLOCK FACE SEVEN OCLOCK"],
+ category: "travel_and_places",
+ lib: {
+ name: "CLOCK FACE SEVEN OCLOCK",
+ unified: "1F556",
+ non_qualified: null,
+ docomo: "E6BA",
+ au: "E594",
+ softbank: "E02A",
+ google: "FE024",
+ image: "1f556.png",
+ sheet_x: 30,
+ sheet_y: 39,
+ short_name: "clock7",
+ short_names: ["clock7"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "time",
+ sort_order: 981,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ clock730: {
+ char: "🕢",
+ key: "clock730",
+ keywords: ["clock730", "CLOCK FACE SEVEN-THIRTY"],
+ category: "travel_and_places",
+ lib: {
+ name: "CLOCK FACE SEVEN-THIRTY",
+ unified: "1F562",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f562.png",
+ sheet_x: 30,
+ sheet_y: 51,
+ short_name: "clock730",
+ short_names: ["clock730"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "time",
+ sort_order: 982,
+ added_in: "0.7",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ clock8: {
+ char: "🕗",
+ key: "clock8",
+ keywords: ["clock8", "CLOCK FACE EIGHT OCLOCK"],
+ category: "travel_and_places",
+ lib: {
+ name: "CLOCK FACE EIGHT OCLOCK",
+ unified: "1F557",
+ non_qualified: null,
+ docomo: "E6BA",
+ au: "E594",
+ softbank: "E02B",
+ google: "FE025",
+ image: "1f557.png",
+ sheet_x: 30,
+ sheet_y: 40,
+ short_name: "clock8",
+ short_names: ["clock8"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "time",
+ sort_order: 983,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ clock830: {
+ char: "🕣",
+ key: "clock830",
+ keywords: ["clock830", "CLOCK FACE EIGHT-THIRTY"],
+ category: "travel_and_places",
+ lib: {
+ name: "CLOCK FACE EIGHT-THIRTY",
+ unified: "1F563",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f563.png",
+ sheet_x: 30,
+ sheet_y: 52,
+ short_name: "clock830",
+ short_names: ["clock830"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "time",
+ sort_order: 984,
+ added_in: "0.7",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ clock9: {
+ char: "🕘",
+ key: "clock9",
+ keywords: ["clock9", "CLOCK FACE NINE OCLOCK"],
+ category: "travel_and_places",
+ lib: {
+ name: "CLOCK FACE NINE OCLOCK",
+ unified: "1F558",
+ non_qualified: null,
+ docomo: "E6BA",
+ au: "E594",
+ softbank: "E02C",
+ google: "FE026",
+ image: "1f558.png",
+ sheet_x: 30,
+ sheet_y: 41,
+ short_name: "clock9",
+ short_names: ["clock9"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "time",
+ sort_order: 985,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ clock930: {
+ char: "🕤",
+ key: "clock930",
+ keywords: ["clock930", "CLOCK FACE NINE-THIRTY"],
+ category: "travel_and_places",
+ lib: {
+ name: "CLOCK FACE NINE-THIRTY",
+ unified: "1F564",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f564.png",
+ sheet_x: 30,
+ sheet_y: 53,
+ short_name: "clock930",
+ short_names: ["clock930"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "time",
+ sort_order: 986,
+ added_in: "0.7",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ clock10: {
+ char: "🕙",
+ key: "clock10",
+ keywords: ["clock10", "CLOCK FACE TEN OCLOCK"],
+ category: "travel_and_places",
+ lib: {
+ name: "CLOCK FACE TEN OCLOCK",
+ unified: "1F559",
+ non_qualified: null,
+ docomo: "E6BA",
+ au: "E594",
+ softbank: "E02D",
+ google: "FE027",
+ image: "1f559.png",
+ sheet_x: 30,
+ sheet_y: 42,
+ short_name: "clock10",
+ short_names: ["clock10"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "time",
+ sort_order: 987,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ clock1030: {
+ char: "🕥",
+ key: "clock1030",
+ keywords: ["clock1030", "CLOCK FACE TEN-THIRTY"],
+ category: "travel_and_places",
+ lib: {
+ name: "CLOCK FACE TEN-THIRTY",
+ unified: "1F565",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f565.png",
+ sheet_x: 30,
+ sheet_y: 54,
+ short_name: "clock1030",
+ short_names: ["clock1030"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "time",
+ sort_order: 988,
+ added_in: "0.7",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ clock11: {
+ char: "🕚",
+ key: "clock11",
+ keywords: ["clock11", "CLOCK FACE ELEVEN OCLOCK"],
+ category: "travel_and_places",
+ lib: {
+ name: "CLOCK FACE ELEVEN OCLOCK",
+ unified: "1F55A",
+ non_qualified: null,
+ docomo: "E6BA",
+ au: "E594",
+ softbank: "E02E",
+ google: "FE028",
+ image: "1f55a.png",
+ sheet_x: 30,
+ sheet_y: 43,
+ short_name: "clock11",
+ short_names: ["clock11"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "time",
+ sort_order: 989,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ clock1130: {
+ char: "🕦",
+ key: "clock1130",
+ keywords: ["clock1130", "CLOCK FACE ELEVEN-THIRTY"],
+ category: "travel_and_places",
+ lib: {
+ name: "CLOCK FACE ELEVEN-THIRTY",
+ unified: "1F566",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f566.png",
+ sheet_x: 30,
+ sheet_y: 55,
+ short_name: "clock1130",
+ short_names: ["clock1130"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "time",
+ sort_order: 990,
+ added_in: "0.7",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ new_moon: {
+ char: "🌑",
+ key: "new_moon",
+ keywords: ["new_moon", "NEW MOON SYMBOL"],
+ category: "travel_and_places",
+ lib: {
+ name: "NEW MOON SYMBOL",
+ unified: "1F311",
+ non_qualified: null,
+ docomo: "E69C",
+ au: "E5A8",
+ softbank: null,
+ google: "FE011",
+ image: "1f311.png",
+ sheet_x: 5,
+ sheet_y: 16,
+ short_name: "new_moon",
+ short_names: ["new_moon"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "sky & weather",
+ sort_order: 991,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ waxing_crescent_moon: {
+ char: "🌒",
+ key: "waxing_crescent_moon",
+ keywords: ["waxing_crescent_moon", "WAXING CRESCENT MOON SYMBOL"],
+ category: "travel_and_places",
+ lib: {
+ name: "WAXING CRESCENT MOON SYMBOL",
+ unified: "1F312",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f312.png",
+ sheet_x: 5,
+ sheet_y: 17,
+ short_name: "waxing_crescent_moon",
+ short_names: ["waxing_crescent_moon"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "sky & weather",
+ sort_order: 992,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ first_quarter_moon: {
+ char: "🌓",
+ key: "first_quarter_moon",
+ keywords: ["first_quarter_moon", "FIRST QUARTER MOON SYMBOL"],
+ category: "travel_and_places",
+ lib: {
+ name: "FIRST QUARTER MOON SYMBOL",
+ unified: "1F313",
+ non_qualified: null,
+ docomo: "E69E",
+ au: "E5AA",
+ softbank: null,
+ google: "FE013",
+ image: "1f313.png",
+ sheet_x: 5,
+ sheet_y: 18,
+ short_name: "first_quarter_moon",
+ short_names: ["first_quarter_moon"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "sky & weather",
+ sort_order: 993,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ moon: {
+ char: "🌔",
+ key: "moon",
+ keywords: ["moon", "WAXING GIBBOUS MOON SYMBOL"],
+ category: "travel_and_places",
+ lib: {
+ name: "WAXING GIBBOUS MOON SYMBOL",
+ unified: "1F314",
+ non_qualified: null,
+ docomo: "E69D",
+ au: "E5A9",
+ softbank: null,
+ google: "FE012",
+ image: "1f314.png",
+ sheet_x: 5,
+ sheet_y: 19,
+ short_name: "moon",
+ short_names: ["moon", "waxing_gibbous_moon"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "sky & weather",
+ sort_order: 994,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ full_moon: {
+ char: "🌕",
+ key: "full_moon",
+ keywords: ["full_moon", "FULL MOON SYMBOL"],
+ category: "travel_and_places",
+ lib: {
+ name: "FULL MOON SYMBOL",
+ unified: "1F315",
+ non_qualified: null,
+ docomo: "E6A0",
+ au: null,
+ softbank: null,
+ google: "FE015",
+ image: "1f315.png",
+ sheet_x: 5,
+ sheet_y: 20,
+ short_name: "full_moon",
+ short_names: ["full_moon"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "sky & weather",
+ sort_order: 995,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ waning_gibbous_moon: {
+ char: "🌖",
+ key: "waning_gibbous_moon",
+ keywords: ["waning_gibbous_moon", "WANING GIBBOUS MOON SYMBOL"],
+ category: "travel_and_places",
+ lib: {
+ name: "WANING GIBBOUS MOON SYMBOL",
+ unified: "1F316",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f316.png",
+ sheet_x: 5,
+ sheet_y: 21,
+ short_name: "waning_gibbous_moon",
+ short_names: ["waning_gibbous_moon"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "sky & weather",
+ sort_order: 996,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ last_quarter_moon: {
+ char: "🌗",
+ key: "last_quarter_moon",
+ keywords: ["last_quarter_moon", "LAST QUARTER MOON SYMBOL"],
+ category: "travel_and_places",
+ lib: {
+ name: "LAST QUARTER MOON SYMBOL",
+ unified: "1F317",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f317.png",
+ sheet_x: 5,
+ sheet_y: 22,
+ short_name: "last_quarter_moon",
+ short_names: ["last_quarter_moon"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "sky & weather",
+ sort_order: 997,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ waning_crescent_moon: {
+ char: "🌘",
+ key: "waning_crescent_moon",
+ keywords: ["waning_crescent_moon", "WANING CRESCENT MOON SYMBOL"],
+ category: "travel_and_places",
+ lib: {
+ name: "WANING CRESCENT MOON SYMBOL",
+ unified: "1F318",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f318.png",
+ sheet_x: 5,
+ sheet_y: 23,
+ short_name: "waning_crescent_moon",
+ short_names: ["waning_crescent_moon"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "sky & weather",
+ sort_order: 998,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ crescent_moon: {
+ char: "🌙",
+ key: "crescent_moon",
+ keywords: ["crescent_moon", "CRESCENT MOON"],
+ category: "travel_and_places",
+ lib: {
+ name: "CRESCENT MOON",
+ unified: "1F319",
+ non_qualified: null,
+ docomo: "E69F",
+ au: "E486",
+ softbank: "E04C",
+ google: "FE014",
+ image: "1f319.png",
+ sheet_x: 5,
+ sheet_y: 24,
+ short_name: "crescent_moon",
+ short_names: ["crescent_moon"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "sky & weather",
+ sort_order: 999,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ new_moon_with_face: {
+ char: "🌚",
+ key: "new_moon_with_face",
+ keywords: ["new_moon_with_face", "NEW MOON WITH FACE"],
+ category: "travel_and_places",
+ lib: {
+ name: "NEW MOON WITH FACE",
+ unified: "1F31A",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f31a.png",
+ sheet_x: 5,
+ sheet_y: 25,
+ short_name: "new_moon_with_face",
+ short_names: ["new_moon_with_face"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "sky & weather",
+ sort_order: 1000,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ first_quarter_moon_with_face: {
+ char: "🌛",
+ key: "first_quarter_moon_with_face",
+ keywords: [
+ "first_quarter_moon_with_face",
+ "FIRST QUARTER MOON WITH FACE",
+ ],
+ category: "travel_and_places",
+ lib: {
+ name: "FIRST QUARTER MOON WITH FACE",
+ unified: "1F31B",
+ non_qualified: null,
+ docomo: "E69E",
+ au: "E489",
+ softbank: null,
+ google: "FE016",
+ image: "1f31b.png",
+ sheet_x: 5,
+ sheet_y: 26,
+ short_name: "first_quarter_moon_with_face",
+ short_names: ["first_quarter_moon_with_face"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "sky & weather",
+ sort_order: 1001,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ last_quarter_moon_with_face: {
+ char: "🌜",
+ key: "last_quarter_moon_with_face",
+ keywords: ["last_quarter_moon_with_face", "LAST QUARTER MOON WITH FACE"],
+ category: "travel_and_places",
+ lib: {
+ name: "LAST QUARTER MOON WITH FACE",
+ unified: "1F31C",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f31c.png",
+ sheet_x: 5,
+ sheet_y: 27,
+ short_name: "last_quarter_moon_with_face",
+ short_names: ["last_quarter_moon_with_face"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "sky & weather",
+ sort_order: 1002,
+ added_in: "0.7",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ thermometer: {
+ char: "🌡️",
+ key: "thermometer",
+ keywords: ["thermometer", "THERMOMETER"],
+ category: "travel_and_places",
+ lib: {
+ name: "THERMOMETER",
+ unified: "1F321-FE0F",
+ non_qualified: "1F321",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f321-fe0f.png",
+ sheet_x: 5,
+ sheet_y: 32,
+ short_name: "thermometer",
+ short_names: ["thermometer"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "sky & weather",
+ sort_order: 1003,
+ added_in: "0.7",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ sunny: {
+ char: "☀️",
+ key: "sunny",
+ keywords: ["sunny", "BLACK SUN WITH RAYS"],
+ category: "travel_and_places",
+ lib: {
+ name: "BLACK SUN WITH RAYS",
+ unified: "2600-FE0F",
+ non_qualified: "2600",
+ docomo: "E63E",
+ au: "E488",
+ softbank: "E04A",
+ google: "FE000",
+ image: "2600-fe0f.png",
+ sheet_x: 57,
+ sheet_y: 10,
+ short_name: "sunny",
+ short_names: ["sunny"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "sky & weather",
+ sort_order: 1004,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ full_moon_with_face: {
+ char: "🌝",
+ key: "full_moon_with_face",
+ keywords: ["full_moon_with_face", "FULL MOON WITH FACE"],
+ category: "travel_and_places",
+ lib: {
+ name: "FULL MOON WITH FACE",
+ unified: "1F31D",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f31d.png",
+ sheet_x: 5,
+ sheet_y: 28,
+ short_name: "full_moon_with_face",
+ short_names: ["full_moon_with_face"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "sky & weather",
+ sort_order: 1005,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ sun_with_face: {
+ char: "🌞",
+ key: "sun_with_face",
+ keywords: ["sun_with_face", "SUN WITH FACE"],
+ category: "travel_and_places",
+ lib: {
+ name: "SUN WITH FACE",
+ unified: "1F31E",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f31e.png",
+ sheet_x: 5,
+ sheet_y: 29,
+ short_name: "sun_with_face",
+ short_names: ["sun_with_face"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "sky & weather",
+ sort_order: 1006,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ ringed_planet: {
+ char: "🪐",
+ key: "ringed_planet",
+ keywords: ["ringed_planet", "RINGED PLANET"],
+ category: "travel_and_places",
+ lib: {
+ name: "RINGED PLANET",
+ unified: "1FA90",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1fa90.png",
+ sheet_x: 54,
+ sheet_y: 9,
+ short_name: "ringed_planet",
+ short_names: ["ringed_planet"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "sky & weather",
+ sort_order: 1007,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ star: {
+ char: "⭐",
+ key: "star",
+ keywords: ["star", "WHITE MEDIUM STAR"],
+ category: "travel_and_places",
+ lib: {
+ name: "WHITE MEDIUM STAR",
+ unified: "2B50",
+ non_qualified: null,
+ docomo: null,
+ au: "E48B",
+ softbank: "E32F",
+ google: "FEB68",
+ image: "2b50.png",
+ sheet_x: 59,
+ sheet_y: 55,
+ short_name: "star",
+ short_names: ["star"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "sky & weather",
+ sort_order: 1008,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ star2: {
+ char: "🌟",
+ key: "star2",
+ keywords: ["star2", "GLOWING STAR"],
+ category: "travel_and_places",
+ lib: {
+ name: "GLOWING STAR",
+ unified: "1F31F",
+ non_qualified: null,
+ docomo: null,
+ au: "E48B",
+ softbank: "E335",
+ google: "FEB69",
+ image: "1f31f.png",
+ sheet_x: 5,
+ sheet_y: 30,
+ short_name: "star2",
+ short_names: ["star2"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "sky & weather",
+ sort_order: 1009,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ stars: {
+ char: "🌠",
+ key: "stars",
+ keywords: ["stars", "SHOOTING STAR"],
+ category: "travel_and_places",
+ lib: {
+ name: "SHOOTING STAR",
+ unified: "1F320",
+ non_qualified: null,
+ docomo: null,
+ au: "E468",
+ softbank: null,
+ google: "FEB6A",
+ image: "1f320.png",
+ sheet_x: 5,
+ sheet_y: 31,
+ short_name: "stars",
+ short_names: ["stars"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "sky & weather",
+ sort_order: 1010,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ milky_way: {
+ char: "🌌",
+ key: "milky_way",
+ keywords: ["milky_way", "MILKY WAY"],
+ category: "travel_and_places",
+ lib: {
+ name: "MILKY WAY",
+ unified: "1F30C",
+ non_qualified: null,
+ docomo: "E6B3",
+ au: "EB5F",
+ softbank: null,
+ google: "FE03B",
+ image: "1f30c.png",
+ sheet_x: 5,
+ sheet_y: 11,
+ short_name: "milky_way",
+ short_names: ["milky_way"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "sky & weather",
+ sort_order: 1011,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ cloud: {
+ char: "☁️",
+ key: "cloud",
+ keywords: ["cloud", "CLOUD"],
+ category: "travel_and_places",
+ lib: {
+ name: "CLOUD",
+ unified: "2601-FE0F",
+ non_qualified: "2601",
+ docomo: "E63F",
+ au: "E48D",
+ softbank: "E049",
+ google: "FE001",
+ image: "2601-fe0f.png",
+ sheet_x: 57,
+ sheet_y: 11,
+ short_name: "cloud",
+ short_names: ["cloud"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "sky & weather",
+ sort_order: 1012,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ partly_sunny: {
+ char: "⛅",
+ key: "partly_sunny",
+ keywords: ["partly_sunny", "SUN BEHIND CLOUD"],
+ category: "travel_and_places",
+ lib: {
+ name: "SUN BEHIND CLOUD",
+ unified: "26C5",
+ non_qualified: null,
+ docomo: "E63E-E63F",
+ au: "E48E",
+ softbank: null,
+ google: "FE00F",
+ image: "26c5.png",
+ sheet_x: 58,
+ sheet_y: 17,
+ short_name: "partly_sunny",
+ short_names: ["partly_sunny"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "sky & weather",
+ sort_order: 1013,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ thunder_cloud_and_rain: {
+ char: "⛈️",
+ key: "thunder_cloud_and_rain",
+ keywords: ["thunder_cloud_and_rain", "CLOUD WITH LIGHTNING AND RAIN"],
+ category: "travel_and_places",
+ lib: {
+ name: "CLOUD WITH LIGHTNING AND RAIN",
+ unified: "26C8-FE0F",
+ non_qualified: "26C8",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "26c8-fe0f.png",
+ sheet_x: 58,
+ sheet_y: 18,
+ short_name: "thunder_cloud_and_rain",
+ short_names: ["thunder_cloud_and_rain"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "sky & weather",
+ sort_order: 1014,
+ added_in: "0.7",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ mostly_sunny: {
+ char: "🌤️",
+ key: "mostly_sunny",
+ keywords: ["mostly_sunny", "SUN BEHIND SMALL CLOUD"],
+ category: "travel_and_places",
+ lib: {
+ name: "SUN BEHIND SMALL CLOUD",
+ unified: "1F324-FE0F",
+ non_qualified: "1F324",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f324-fe0f.png",
+ sheet_x: 5,
+ sheet_y: 33,
+ short_name: "mostly_sunny",
+ short_names: ["mostly_sunny", "sun_small_cloud"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "sky & weather",
+ sort_order: 1015,
+ added_in: "0.7",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ barely_sunny: {
+ char: "🌥️",
+ key: "barely_sunny",
+ keywords: ["barely_sunny", "SUN BEHIND LARGE CLOUD"],
+ category: "travel_and_places",
+ lib: {
+ name: "SUN BEHIND LARGE CLOUD",
+ unified: "1F325-FE0F",
+ non_qualified: "1F325",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f325-fe0f.png",
+ sheet_x: 5,
+ sheet_y: 34,
+ short_name: "barely_sunny",
+ short_names: ["barely_sunny", "sun_behind_cloud"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "sky & weather",
+ sort_order: 1016,
+ added_in: "0.7",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ partly_sunny_rain: {
+ char: "🌦️",
+ key: "partly_sunny_rain",
+ keywords: ["partly_sunny_rain", "SUN BEHIND RAIN CLOUD"],
+ category: "travel_and_places",
+ lib: {
+ name: "SUN BEHIND RAIN CLOUD",
+ unified: "1F326-FE0F",
+ non_qualified: "1F326",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f326-fe0f.png",
+ sheet_x: 5,
+ sheet_y: 35,
+ short_name: "partly_sunny_rain",
+ short_names: ["partly_sunny_rain", "sun_behind_rain_cloud"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "sky & weather",
+ sort_order: 1017,
+ added_in: "0.7",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ rain_cloud: {
+ char: "🌧️",
+ key: "rain_cloud",
+ keywords: ["rain_cloud", "CLOUD WITH RAIN"],
+ category: "travel_and_places",
+ lib: {
+ name: "CLOUD WITH RAIN",
+ unified: "1F327-FE0F",
+ non_qualified: "1F327",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f327-fe0f.png",
+ sheet_x: 5,
+ sheet_y: 36,
+ short_name: "rain_cloud",
+ short_names: ["rain_cloud"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "sky & weather",
+ sort_order: 1018,
+ added_in: "0.7",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ snow_cloud: {
+ char: "🌨️",
+ key: "snow_cloud",
+ keywords: ["snow_cloud", "CLOUD WITH SNOW"],
+ category: "travel_and_places",
+ lib: {
+ name: "CLOUD WITH SNOW",
+ unified: "1F328-FE0F",
+ non_qualified: "1F328",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f328-fe0f.png",
+ sheet_x: 5,
+ sheet_y: 37,
+ short_name: "snow_cloud",
+ short_names: ["snow_cloud"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "sky & weather",
+ sort_order: 1019,
+ added_in: "0.7",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ lightning: {
+ char: "🌩️",
+ key: "lightning",
+ keywords: ["lightning", "CLOUD WITH LIGHTNING"],
+ category: "travel_and_places",
+ lib: {
+ name: "CLOUD WITH LIGHTNING",
+ unified: "1F329-FE0F",
+ non_qualified: "1F329",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f329-fe0f.png",
+ sheet_x: 5,
+ sheet_y: 38,
+ short_name: "lightning",
+ short_names: ["lightning", "lightning_cloud"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "sky & weather",
+ sort_order: 1020,
+ added_in: "0.7",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ tornado: {
+ char: "🌪️",
+ key: "tornado",
+ keywords: ["tornado", "TORNADO"],
+ category: "travel_and_places",
+ lib: {
+ name: "TORNADO",
+ unified: "1F32A-FE0F",
+ non_qualified: "1F32A",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f32a-fe0f.png",
+ sheet_x: 5,
+ sheet_y: 39,
+ short_name: "tornado",
+ short_names: ["tornado", "tornado_cloud"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "sky & weather",
+ sort_order: 1021,
+ added_in: "0.7",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ fog: {
+ char: "🌫️",
+ key: "fog",
+ keywords: ["fog", "FOG"],
+ category: "travel_and_places",
+ lib: {
+ name: "FOG",
+ unified: "1F32B-FE0F",
+ non_qualified: "1F32B",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f32b-fe0f.png",
+ sheet_x: 5,
+ sheet_y: 40,
+ short_name: "fog",
+ short_names: ["fog"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "sky & weather",
+ sort_order: 1022,
+ added_in: "0.7",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ wind_blowing_face: {
+ char: "🌬️",
+ key: "wind_blowing_face",
+ keywords: ["wind_blowing_face", "WIND FACE"],
+ category: "travel_and_places",
+ lib: {
+ name: "WIND FACE",
+ unified: "1F32C-FE0F",
+ non_qualified: "1F32C",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f32c-fe0f.png",
+ sheet_x: 5,
+ sheet_y: 41,
+ short_name: "wind_blowing_face",
+ short_names: ["wind_blowing_face"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "sky & weather",
+ sort_order: 1023,
+ added_in: "0.7",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ cyclone: {
+ char: "🌀",
+ key: "cyclone",
+ keywords: ["cyclone", "CYCLONE"],
+ category: "travel_and_places",
+ lib: {
+ name: "CYCLONE",
+ unified: "1F300",
+ non_qualified: null,
+ docomo: "E643",
+ au: "E469",
+ softbank: "E443",
+ google: "FE005",
+ image: "1f300.png",
+ sheet_x: 4,
+ sheet_y: 60,
+ short_name: "cyclone",
+ short_names: ["cyclone"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "sky & weather",
+ sort_order: 1024,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ rainbow: {
+ char: "🌈",
+ key: "rainbow",
+ keywords: ["rainbow", "RAINBOW"],
+ category: "travel_and_places",
+ lib: {
+ name: "RAINBOW",
+ unified: "1F308",
+ non_qualified: null,
+ docomo: null,
+ au: "EAF2",
+ softbank: "E44C",
+ google: "FE00D",
+ image: "1f308.png",
+ sheet_x: 5,
+ sheet_y: 7,
+ short_name: "rainbow",
+ short_names: ["rainbow"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "sky & weather",
+ sort_order: 1025,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ closed_umbrella: {
+ char: "🌂",
+ key: "closed_umbrella",
+ keywords: ["closed_umbrella", "CLOSED UMBRELLA"],
+ category: "travel_and_places",
+ lib: {
+ name: "CLOSED UMBRELLA",
+ unified: "1F302",
+ non_qualified: null,
+ docomo: "E645",
+ au: "EAE8",
+ softbank: "E43C",
+ google: "FE007",
+ image: "1f302.png",
+ sheet_x: 5,
+ sheet_y: 1,
+ short_name: "closed_umbrella",
+ short_names: ["closed_umbrella"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "sky & weather",
+ sort_order: 1026,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ umbrella: {
+ char: "☂️",
+ key: "umbrella",
+ keywords: ["umbrella", "UMBRELLA"],
+ category: "travel_and_places",
+ lib: {
+ name: "UMBRELLA",
+ unified: "2602-FE0F",
+ non_qualified: "2602",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "2602-fe0f.png",
+ sheet_x: 57,
+ sheet_y: 12,
+ short_name: "umbrella",
+ short_names: ["umbrella"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "sky & weather",
+ sort_order: 1027,
+ added_in: "0.7",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ umbrella_with_rain_drops: {
+ char: "☔",
+ key: "umbrella_with_rain_drops",
+ keywords: ["umbrella_with_rain_drops", "UMBRELLA WITH RAIN DROPS"],
+ category: "travel_and_places",
+ lib: {
+ name: "UMBRELLA WITH RAIN DROPS",
+ unified: "2614",
+ non_qualified: null,
+ docomo: "E640",
+ au: "E48C",
+ softbank: "E04B",
+ google: "FE002",
+ image: "2614.png",
+ sheet_x: 57,
+ sheet_y: 17,
+ short_name: "umbrella_with_rain_drops",
+ short_names: ["umbrella_with_rain_drops"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "sky & weather",
+ sort_order: 1028,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ umbrella_on_ground: {
+ char: "⛱️",
+ key: "umbrella_on_ground",
+ keywords: ["umbrella_on_ground", "UMBRELLA ON GROUND"],
+ category: "travel_and_places",
+ lib: {
+ name: "UMBRELLA ON GROUND",
+ unified: "26F1-FE0F",
+ non_qualified: "26F1",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "26f1-fe0f.png",
+ sheet_x: 58,
+ sheet_y: 27,
+ short_name: "umbrella_on_ground",
+ short_names: ["umbrella_on_ground"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "sky & weather",
+ sort_order: 1029,
+ added_in: "0.7",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ zap: {
+ char: "⚡",
+ key: "zap",
+ keywords: ["zap", "HIGH VOLTAGE SIGN"],
+ category: "travel_and_places",
+ lib: {
+ name: "HIGH VOLTAGE SIGN",
+ unified: "26A1",
+ non_qualified: null,
+ docomo: "E642",
+ au: "E487",
+ softbank: "E13D",
+ google: "FE004",
+ image: "26a1.png",
+ sheet_x: 58,
+ sheet_y: 8,
+ short_name: "zap",
+ short_names: ["zap"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "sky & weather",
+ sort_order: 1030,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ snowflake: {
+ char: "❄️",
+ key: "snowflake",
+ keywords: ["snowflake", "SNOWFLAKE"],
+ category: "travel_and_places",
+ lib: {
+ name: "SNOWFLAKE",
+ unified: "2744-FE0F",
+ non_qualified: "2744",
+ docomo: null,
+ au: "E48A",
+ softbank: null,
+ google: "FE00E",
+ image: "2744-fe0f.png",
+ sheet_x: 59,
+ sheet_y: 30,
+ short_name: "snowflake",
+ short_names: ["snowflake"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "sky & weather",
+ sort_order: 1031,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ snowman: {
+ char: "☃️",
+ key: "snowman",
+ keywords: ["snowman", "SNOWMAN"],
+ category: "travel_and_places",
+ lib: {
+ name: "SNOWMAN",
+ unified: "2603-FE0F",
+ non_qualified: "2603",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "2603-fe0f.png",
+ sheet_x: 57,
+ sheet_y: 13,
+ short_name: "snowman",
+ short_names: ["snowman"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "sky & weather",
+ sort_order: 1032,
+ added_in: "0.7",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ snowman_without_snow: {
+ char: "⛄",
+ key: "snowman_without_snow",
+ keywords: ["snowman_without_snow", "SNOWMAN WITHOUT SNOW"],
+ category: "travel_and_places",
+ lib: {
+ name: "SNOWMAN WITHOUT SNOW",
+ unified: "26C4",
+ non_qualified: null,
+ docomo: "E641",
+ au: "E485",
+ softbank: "E048",
+ google: "FE003",
+ image: "26c4.png",
+ sheet_x: 58,
+ sheet_y: 16,
+ short_name: "snowman_without_snow",
+ short_names: ["snowman_without_snow"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "sky & weather",
+ sort_order: 1033,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ comet: {
+ char: "☄️",
+ key: "comet",
+ keywords: ["comet", "COMET"],
+ category: "travel_and_places",
+ lib: {
+ name: "COMET",
+ unified: "2604-FE0F",
+ non_qualified: "2604",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "2604-fe0f.png",
+ sheet_x: 57,
+ sheet_y: 14,
+ short_name: "comet",
+ short_names: ["comet"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "sky & weather",
+ sort_order: 1034,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ fire: {
+ char: "🔥",
+ key: "fire",
+ keywords: ["fire", "FIRE"],
+ category: "travel_and_places",
+ lib: {
+ name: "FIRE",
+ unified: "1F525",
+ non_qualified: null,
+ docomo: null,
+ au: "E47B",
+ softbank: "E11D",
+ google: "FE4F6",
+ image: "1f525.png",
+ sheet_x: 30,
+ sheet_y: 2,
+ short_name: "fire",
+ short_names: ["fire"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "sky & weather",
+ sort_order: 1035,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ droplet: {
+ char: "💧",
+ key: "droplet",
+ keywords: ["droplet", "DROPLET"],
+ category: "travel_and_places",
+ lib: {
+ name: "DROPLET",
+ unified: "1F4A7",
+ non_qualified: null,
+ docomo: "E707",
+ au: "E4E6",
+ softbank: null,
+ google: "FEB5C",
+ image: "1f4a7.png",
+ sheet_x: 27,
+ sheet_y: 55,
+ short_name: "droplet",
+ short_names: ["droplet"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "sky & weather",
+ sort_order: 1036,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ ocean: {
+ char: "🌊",
+ key: "ocean",
+ keywords: ["ocean", "WATER WAVE"],
+ category: "travel_and_places",
+ lib: {
+ name: "WATER WAVE",
+ unified: "1F30A",
+ non_qualified: null,
+ docomo: "E73F",
+ au: "EB7C",
+ softbank: "E43E",
+ google: "FE038",
+ image: "1f30a.png",
+ sheet_x: 5,
+ sheet_y: 9,
+ short_name: "ocean",
+ short_names: ["ocean"],
+ text: null,
+ texts: null,
+ category: "Travel & Places",
+ subcategory: "sky & weather",
+ sort_order: 1037,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ jack_o_lantern: {
+ char: "🎃",
+ key: "jack_o_lantern",
+ keywords: ["jack_o_lantern", "JACK-O-LANTERN"],
+ category: "activity",
+ lib: {
+ name: "JACK-O-LANTERN",
+ unified: "1F383",
+ non_qualified: null,
+ docomo: null,
+ au: "EAEE",
+ softbank: "E445",
+ google: "FE51F",
+ image: "1f383.png",
+ sheet_x: 7,
+ sheet_y: 6,
+ short_name: "jack_o_lantern",
+ short_names: ["jack_o_lantern"],
+ text: null,
+ texts: null,
+ category: "Activities",
+ subcategory: "event",
+ sort_order: 1038,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ christmas_tree: {
+ char: "🎄",
+ key: "christmas_tree",
+ keywords: ["christmas_tree", "CHRISTMAS TREE"],
+ category: "activity",
+ lib: {
+ name: "CHRISTMAS TREE",
+ unified: "1F384",
+ non_qualified: null,
+ docomo: "E6A4",
+ au: "E4C9",
+ softbank: "E033",
+ google: "FE512",
+ image: "1f384.png",
+ sheet_x: 7,
+ sheet_y: 7,
+ short_name: "christmas_tree",
+ short_names: ["christmas_tree"],
+ text: null,
+ texts: null,
+ category: "Activities",
+ subcategory: "event",
+ sort_order: 1039,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ fireworks: {
+ char: "🎆",
+ key: "fireworks",
+ keywords: ["fireworks", "FIREWORKS"],
+ category: "activity",
+ lib: {
+ name: "FIREWORKS",
+ unified: "1F386",
+ non_qualified: null,
+ docomo: null,
+ au: "E5CC",
+ softbank: "E117",
+ google: "FE515",
+ image: "1f386.png",
+ sheet_x: 7,
+ sheet_y: 14,
+ short_name: "fireworks",
+ short_names: ["fireworks"],
+ text: null,
+ texts: null,
+ category: "Activities",
+ subcategory: "event",
+ sort_order: 1040,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ sparkler: {
+ char: "🎇",
+ key: "sparkler",
+ keywords: ["sparkler", "FIREWORK SPARKLER"],
+ category: "activity",
+ lib: {
+ name: "FIREWORK SPARKLER",
+ unified: "1F387",
+ non_qualified: null,
+ docomo: null,
+ au: "EAEB",
+ softbank: "E440",
+ google: "FE51D",
+ image: "1f387.png",
+ sheet_x: 7,
+ sheet_y: 15,
+ short_name: "sparkler",
+ short_names: ["sparkler"],
+ text: null,
+ texts: null,
+ category: "Activities",
+ subcategory: "event",
+ sort_order: 1041,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ firecracker: {
+ char: "🧨",
+ key: "firecracker",
+ keywords: ["firecracker", "FIRECRACKER"],
+ category: "activity",
+ lib: {
+ name: "FIRECRACKER",
+ unified: "1F9E8",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f9e8.png",
+ sheet_x: 53,
+ sheet_y: 24,
+ short_name: "firecracker",
+ short_names: ["firecracker"],
+ text: null,
+ texts: null,
+ category: "Activities",
+ subcategory: "event",
+ sort_order: 1042,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ sparkles: {
+ char: "✨",
+ key: "sparkles",
+ keywords: ["sparkles", "SPARKLES"],
+ category: "activity",
+ lib: {
+ name: "SPARKLES",
+ unified: "2728",
+ non_qualified: null,
+ docomo: "E6FA",
+ au: "EAAB",
+ softbank: "E32E",
+ google: "FEB60",
+ image: "2728.png",
+ sheet_x: 59,
+ sheet_y: 27,
+ short_name: "sparkles",
+ short_names: ["sparkles"],
+ text: null,
+ texts: null,
+ category: "Activities",
+ subcategory: "event",
+ sort_order: 1043,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ balloon: {
+ char: "🎈",
+ key: "balloon",
+ keywords: ["balloon", "BALLOON"],
+ category: "activity",
+ lib: {
+ name: "BALLOON",
+ unified: "1F388",
+ non_qualified: null,
+ docomo: null,
+ au: "EA9B",
+ softbank: "E310",
+ google: "FE516",
+ image: "1f388.png",
+ sheet_x: 7,
+ sheet_y: 16,
+ short_name: "balloon",
+ short_names: ["balloon"],
+ text: null,
+ texts: null,
+ category: "Activities",
+ subcategory: "event",
+ sort_order: 1044,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ tada: {
+ char: "🎉",
+ key: "tada",
+ keywords: ["tada", "PARTY POPPER"],
+ category: "activity",
+ lib: {
+ name: "PARTY POPPER",
+ unified: "1F389",
+ non_qualified: null,
+ docomo: null,
+ au: "EA9C",
+ softbank: "E312",
+ google: "FE517",
+ image: "1f389.png",
+ sheet_x: 7,
+ sheet_y: 17,
+ short_name: "tada",
+ short_names: ["tada"],
+ text: null,
+ texts: null,
+ category: "Activities",
+ subcategory: "event",
+ sort_order: 1045,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ confetti_ball: {
+ char: "🎊",
+ key: "confetti_ball",
+ keywords: ["confetti_ball", "CONFETTI BALL"],
+ category: "activity",
+ lib: {
+ name: "CONFETTI BALL",
+ unified: "1F38A",
+ non_qualified: null,
+ docomo: null,
+ au: "E46F",
+ softbank: null,
+ google: "FE520",
+ image: "1f38a.png",
+ sheet_x: 7,
+ sheet_y: 18,
+ short_name: "confetti_ball",
+ short_names: ["confetti_ball"],
+ text: null,
+ texts: null,
+ category: "Activities",
+ subcategory: "event",
+ sort_order: 1046,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ tanabata_tree: {
+ char: "🎋",
+ key: "tanabata_tree",
+ keywords: ["tanabata_tree", "TANABATA TREE"],
+ category: "activity",
+ lib: {
+ name: "TANABATA TREE",
+ unified: "1F38B",
+ non_qualified: null,
+ docomo: null,
+ au: "EB3D",
+ softbank: null,
+ google: "FE521",
+ image: "1f38b.png",
+ sheet_x: 7,
+ sheet_y: 19,
+ short_name: "tanabata_tree",
+ short_names: ["tanabata_tree"],
+ text: null,
+ texts: null,
+ category: "Activities",
+ subcategory: "event",
+ sort_order: 1047,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ bamboo: {
+ char: "🎍",
+ key: "bamboo",
+ keywords: ["bamboo", "PINE DECORATION"],
+ category: "activity",
+ lib: {
+ name: "PINE DECORATION",
+ unified: "1F38D",
+ non_qualified: null,
+ docomo: null,
+ au: "EAE3",
+ softbank: "E436",
+ google: "FE518",
+ image: "1f38d.png",
+ sheet_x: 7,
+ sheet_y: 21,
+ short_name: "bamboo",
+ short_names: ["bamboo"],
+ text: null,
+ texts: null,
+ category: "Activities",
+ subcategory: "event",
+ sort_order: 1048,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ dolls: {
+ char: "🎎",
+ key: "dolls",
+ keywords: ["dolls", "JAPANESE DOLLS"],
+ category: "activity",
+ lib: {
+ name: "JAPANESE DOLLS",
+ unified: "1F38E",
+ non_qualified: null,
+ docomo: null,
+ au: "EAE4",
+ softbank: "E438",
+ google: "FE519",
+ image: "1f38e.png",
+ sheet_x: 7,
+ sheet_y: 22,
+ short_name: "dolls",
+ short_names: ["dolls"],
+ text: null,
+ texts: null,
+ category: "Activities",
+ subcategory: "event",
+ sort_order: 1049,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ flags: {
+ char: "🎏",
+ key: "flags",
+ keywords: ["flags", "CARP STREAMER"],
+ category: "activity",
+ lib: {
+ name: "CARP STREAMER",
+ unified: "1F38F",
+ non_qualified: null,
+ docomo: null,
+ au: "EAE7",
+ softbank: "E43B",
+ google: "FE51C",
+ image: "1f38f.png",
+ sheet_x: 7,
+ sheet_y: 23,
+ short_name: "flags",
+ short_names: ["flags"],
+ text: null,
+ texts: null,
+ category: "Activities",
+ subcategory: "event",
+ sort_order: 1050,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ wind_chime: {
+ char: "🎐",
+ key: "wind_chime",
+ keywords: ["wind_chime", "WIND CHIME"],
+ category: "activity",
+ lib: {
+ name: "WIND CHIME",
+ unified: "1F390",
+ non_qualified: null,
+ docomo: null,
+ au: "EAED",
+ softbank: "E442",
+ google: "FE51E",
+ image: "1f390.png",
+ sheet_x: 7,
+ sheet_y: 24,
+ short_name: "wind_chime",
+ short_names: ["wind_chime"],
+ text: null,
+ texts: null,
+ category: "Activities",
+ subcategory: "event",
+ sort_order: 1051,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ rice_scene: {
+ char: "🎑",
+ key: "rice_scene",
+ keywords: ["rice_scene", "MOON VIEWING CEREMONY"],
+ category: "activity",
+ lib: {
+ name: "MOON VIEWING CEREMONY",
+ unified: "1F391",
+ non_qualified: null,
+ docomo: null,
+ au: "EAEF",
+ softbank: "E446",
+ google: "FE017",
+ image: "1f391.png",
+ sheet_x: 7,
+ sheet_y: 25,
+ short_name: "rice_scene",
+ short_names: ["rice_scene"],
+ text: null,
+ texts: null,
+ category: "Activities",
+ subcategory: "event",
+ sort_order: 1052,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ red_envelope: {
+ char: "🧧",
+ key: "red_envelope",
+ keywords: ["red_envelope", "RED GIFT ENVELOPE"],
+ category: "activity",
+ lib: {
+ name: "RED GIFT ENVELOPE",
+ unified: "1F9E7",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f9e7.png",
+ sheet_x: 53,
+ sheet_y: 23,
+ short_name: "red_envelope",
+ short_names: ["red_envelope"],
+ text: null,
+ texts: null,
+ category: "Activities",
+ subcategory: "event",
+ sort_order: 1053,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ ribbon: {
+ char: "🎀",
+ key: "ribbon",
+ keywords: ["ribbon", "RIBBON"],
+ category: "activity",
+ lib: {
+ name: "RIBBON",
+ unified: "1F380",
+ non_qualified: null,
+ docomo: "E684",
+ au: "E59F",
+ softbank: "E314",
+ google: "FE50F",
+ image: "1f380.png",
+ sheet_x: 7,
+ sheet_y: 3,
+ short_name: "ribbon",
+ short_names: ["ribbon"],
+ text: null,
+ texts: null,
+ category: "Activities",
+ subcategory: "event",
+ sort_order: 1054,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ gift: {
+ char: "🎁",
+ key: "gift",
+ keywords: ["gift", "WRAPPED PRESENT"],
+ category: "activity",
+ lib: {
+ name: "WRAPPED PRESENT",
+ unified: "1F381",
+ non_qualified: null,
+ docomo: "E685",
+ au: "E4CF",
+ softbank: "E112",
+ google: "FE510",
+ image: "1f381.png",
+ sheet_x: 7,
+ sheet_y: 4,
+ short_name: "gift",
+ short_names: ["gift"],
+ text: null,
+ texts: null,
+ category: "Activities",
+ subcategory: "event",
+ sort_order: 1055,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ reminder_ribbon: {
+ char: "🎗️",
+ key: "reminder_ribbon",
+ keywords: ["reminder_ribbon", "REMINDER RIBBON"],
+ category: "activity",
+ lib: {
+ name: "REMINDER RIBBON",
+ unified: "1F397-FE0F",
+ non_qualified: "1F397",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f397-fe0f.png",
+ sheet_x: 7,
+ sheet_y: 29,
+ short_name: "reminder_ribbon",
+ short_names: ["reminder_ribbon"],
+ text: null,
+ texts: null,
+ category: "Activities",
+ subcategory: "event",
+ sort_order: 1056,
+ added_in: "0.7",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ admission_tickets: {
+ char: "🎟️",
+ key: "admission_tickets",
+ keywords: ["admission_tickets", "ADMISSION TICKETS"],
+ category: "activity",
+ lib: {
+ name: "ADMISSION TICKETS",
+ unified: "1F39F-FE0F",
+ non_qualified: "1F39F",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f39f-fe0f.png",
+ sheet_x: 7,
+ sheet_y: 34,
+ short_name: "admission_tickets",
+ short_names: ["admission_tickets"],
+ text: null,
+ texts: null,
+ category: "Activities",
+ subcategory: "event",
+ sort_order: 1057,
+ added_in: "0.7",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ ticket: {
+ char: "🎫",
+ key: "ticket",
+ keywords: ["ticket", "TICKET"],
+ category: "activity",
+ lib: {
+ name: "TICKET",
+ unified: "1F3AB",
+ non_qualified: null,
+ docomo: "E67E",
+ au: "E49E",
+ softbank: "E125",
+ google: "FE807",
+ image: "1f3ab.png",
+ sheet_x: 7,
+ sheet_y: 46,
+ short_name: "ticket",
+ short_names: ["ticket"],
+ text: null,
+ texts: null,
+ category: "Activities",
+ subcategory: "event",
+ sort_order: 1058,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ medal: {
+ char: "🎖️",
+ key: "medal",
+ keywords: ["medal", "MILITARY MEDAL"],
+ category: "activity",
+ lib: {
+ name: "MILITARY MEDAL",
+ unified: "1F396-FE0F",
+ non_qualified: "1F396",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f396-fe0f.png",
+ sheet_x: 7,
+ sheet_y: 28,
+ short_name: "medal",
+ short_names: ["medal"],
+ text: null,
+ texts: null,
+ category: "Activities",
+ subcategory: "award-medal",
+ sort_order: 1059,
+ added_in: "0.7",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ trophy: {
+ char: "🏆",
+ key: "trophy",
+ keywords: ["trophy", "TROPHY"],
+ category: "activity",
+ lib: {
+ name: "TROPHY",
+ unified: "1F3C6",
+ non_qualified: null,
+ docomo: null,
+ au: "E5D3",
+ softbank: "E131",
+ google: "FE7DB",
+ image: "1f3c6.png",
+ sheet_x: 8,
+ sheet_y: 51,
+ short_name: "trophy",
+ short_names: ["trophy"],
+ text: null,
+ texts: null,
+ category: "Activities",
+ subcategory: "award-medal",
+ sort_order: 1060,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ sports_medal: {
+ char: "🏅",
+ key: "sports_medal",
+ keywords: ["sports_medal", "SPORTS MEDAL"],
+ category: "activity",
+ lib: {
+ name: "SPORTS MEDAL",
+ unified: "1F3C5",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f3c5.png",
+ sheet_x: 8,
+ sheet_y: 50,
+ short_name: "sports_medal",
+ short_names: ["sports_medal"],
+ text: null,
+ texts: null,
+ category: "Activities",
+ subcategory: "award-medal",
+ sort_order: 1061,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ first_place_medal: {
+ char: "🥇",
+ key: "first_place_medal",
+ keywords: ["first_place_medal", "FIRST PLACE MEDAL"],
+ category: "activity",
+ lib: {
+ name: "FIRST PLACE MEDAL",
+ unified: "1F947",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f947.png",
+ sheet_x: 43,
+ sheet_y: 19,
+ short_name: "first_place_medal",
+ short_names: ["first_place_medal"],
+ text: null,
+ texts: null,
+ category: "Activities",
+ subcategory: "award-medal",
+ sort_order: 1062,
+ added_in: "3.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ second_place_medal: {
+ char: "🥈",
+ key: "second_place_medal",
+ keywords: ["second_place_medal", "SECOND PLACE MEDAL"],
+ category: "activity",
+ lib: {
+ name: "SECOND PLACE MEDAL",
+ unified: "1F948",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f948.png",
+ sheet_x: 43,
+ sheet_y: 20,
+ short_name: "second_place_medal",
+ short_names: ["second_place_medal"],
+ text: null,
+ texts: null,
+ category: "Activities",
+ subcategory: "award-medal",
+ sort_order: 1063,
+ added_in: "3.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ third_place_medal: {
+ char: "🥉",
+ key: "third_place_medal",
+ keywords: ["third_place_medal", "THIRD PLACE MEDAL"],
+ category: "activity",
+ lib: {
+ name: "THIRD PLACE MEDAL",
+ unified: "1F949",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f949.png",
+ sheet_x: 43,
+ sheet_y: 21,
+ short_name: "third_place_medal",
+ short_names: ["third_place_medal"],
+ text: null,
+ texts: null,
+ category: "Activities",
+ subcategory: "award-medal",
+ sort_order: 1064,
+ added_in: "3.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ soccer: {
+ char: "⚽",
+ key: "soccer",
+ keywords: ["soccer", "SOCCER BALL"],
+ category: "activity",
+ lib: {
+ name: "SOCCER BALL",
+ unified: "26BD",
+ non_qualified: null,
+ docomo: "E656",
+ au: "E4B6",
+ softbank: "E018",
+ google: "FE7D4",
+ image: "26bd.png",
+ sheet_x: 58,
+ sheet_y: 14,
+ short_name: "soccer",
+ short_names: ["soccer"],
+ text: null,
+ texts: null,
+ category: "Activities",
+ subcategory: "sport",
+ sort_order: 1065,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ baseball: {
+ char: "⚾",
+ key: "baseball",
+ keywords: ["baseball", "BASEBALL"],
+ category: "activity",
+ lib: {
+ name: "BASEBALL",
+ unified: "26BE",
+ non_qualified: null,
+ docomo: "E653",
+ au: "E4BA",
+ softbank: "E016",
+ google: "FE7D1",
+ image: "26be.png",
+ sheet_x: 58,
+ sheet_y: 15,
+ short_name: "baseball",
+ short_names: ["baseball"],
+ text: null,
+ texts: null,
+ category: "Activities",
+ subcategory: "sport",
+ sort_order: 1066,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ softball: {
+ char: "🥎",
+ key: "softball",
+ keywords: ["softball", "SOFTBALL"],
+ category: "activity",
+ lib: {
+ name: "SOFTBALL",
+ unified: "1F94E",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f94e.png",
+ sheet_x: 43,
+ sheet_y: 26,
+ short_name: "softball",
+ short_names: ["softball"],
+ text: null,
+ texts: null,
+ category: "Activities",
+ subcategory: "sport",
+ sort_order: 1067,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ basketball: {
+ char: "🏀",
+ key: "basketball",
+ keywords: ["basketball", "BASKETBALL AND HOOP"],
+ category: "activity",
+ lib: {
+ name: "BASKETBALL AND HOOP",
+ unified: "1F3C0",
+ non_qualified: null,
+ docomo: "E658",
+ au: "E59A",
+ softbank: "E42A",
+ google: "FE7D6",
+ image: "1f3c0.png",
+ sheet_x: 8,
+ sheet_y: 6,
+ short_name: "basketball",
+ short_names: ["basketball"],
+ text: null,
+ texts: null,
+ category: "Activities",
+ subcategory: "sport",
+ sort_order: 1068,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ volleyball: {
+ char: "🏐",
+ key: "volleyball",
+ keywords: ["volleyball", "VOLLEYBALL"],
+ category: "activity",
+ lib: {
+ name: "VOLLEYBALL",
+ unified: "1F3D0",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f3d0.png",
+ sheet_x: 9,
+ sheet_y: 56,
+ short_name: "volleyball",
+ short_names: ["volleyball"],
+ text: null,
+ texts: null,
+ category: "Activities",
+ subcategory: "sport",
+ sort_order: 1069,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ football: {
+ char: "🏈",
+ key: "football",
+ keywords: ["football", "AMERICAN FOOTBALL"],
+ category: "activity",
+ lib: {
+ name: "AMERICAN FOOTBALL",
+ unified: "1F3C8",
+ non_qualified: null,
+ docomo: null,
+ au: "E4BB",
+ softbank: "E42B",
+ google: "FE7DD",
+ image: "1f3c8.png",
+ sheet_x: 8,
+ sheet_y: 58,
+ short_name: "football",
+ short_names: ["football"],
+ text: null,
+ texts: null,
+ category: "Activities",
+ subcategory: "sport",
+ sort_order: 1070,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ rugby_football: {
+ char: "🏉",
+ key: "rugby_football",
+ keywords: ["rugby_football", "RUGBY FOOTBALL"],
+ category: "activity",
+ lib: {
+ name: "RUGBY FOOTBALL",
+ unified: "1F3C9",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f3c9.png",
+ sheet_x: 8,
+ sheet_y: 59,
+ short_name: "rugby_football",
+ short_names: ["rugby_football"],
+ text: null,
+ texts: null,
+ category: "Activities",
+ subcategory: "sport",
+ sort_order: 1071,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ tennis: {
+ char: "🎾",
+ key: "tennis",
+ keywords: ["tennis", "TENNIS RACQUET AND BALL"],
+ category: "activity",
+ lib: {
+ name: "TENNIS RACQUET AND BALL",
+ unified: "1F3BE",
+ non_qualified: null,
+ docomo: "E655",
+ au: "E4B7",
+ softbank: "E015",
+ google: "FE7D3",
+ image: "1f3be.png",
+ sheet_x: 8,
+ sheet_y: 4,
+ short_name: "tennis",
+ short_names: ["tennis"],
+ text: null,
+ texts: null,
+ category: "Activities",
+ subcategory: "sport",
+ sort_order: 1072,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ flying_disc: {
+ char: "🥏",
+ key: "flying_disc",
+ keywords: ["flying_disc", "FLYING DISC"],
+ category: "activity",
+ lib: {
+ name: "FLYING DISC",
+ unified: "1F94F",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f94f.png",
+ sheet_x: 43,
+ sheet_y: 27,
+ short_name: "flying_disc",
+ short_names: ["flying_disc"],
+ text: null,
+ texts: null,
+ category: "Activities",
+ subcategory: "sport",
+ sort_order: 1073,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ bowling: {
+ char: "🎳",
+ key: "bowling",
+ keywords: ["bowling", "BOWLING"],
+ category: "activity",
+ lib: {
+ name: "BOWLING",
+ unified: "1F3B3",
+ non_qualified: null,
+ docomo: null,
+ au: "EB43",
+ softbank: null,
+ google: "FE810",
+ image: "1f3b3.png",
+ sheet_x: 7,
+ sheet_y: 54,
+ short_name: "bowling",
+ short_names: ["bowling"],
+ text: null,
+ texts: null,
+ category: "Activities",
+ subcategory: "sport",
+ sort_order: 1074,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ cricket_bat_and_ball: {
+ char: "🏏",
+ key: "cricket_bat_and_ball",
+ keywords: ["cricket_bat_and_ball", "CRICKET BAT AND BALL"],
+ category: "activity",
+ lib: {
+ name: "CRICKET BAT AND BALL",
+ unified: "1F3CF",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f3cf.png",
+ sheet_x: 9,
+ sheet_y: 55,
+ short_name: "cricket_bat_and_ball",
+ short_names: ["cricket_bat_and_ball"],
+ text: null,
+ texts: null,
+ category: "Activities",
+ subcategory: "sport",
+ sort_order: 1075,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ field_hockey_stick_and_ball: {
+ char: "🏑",
+ key: "field_hockey_stick_and_ball",
+ keywords: ["field_hockey_stick_and_ball", "FIELD HOCKEY STICK AND BALL"],
+ category: "activity",
+ lib: {
+ name: "FIELD HOCKEY STICK AND BALL",
+ unified: "1F3D1",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f3d1.png",
+ sheet_x: 9,
+ sheet_y: 57,
+ short_name: "field_hockey_stick_and_ball",
+ short_names: ["field_hockey_stick_and_ball"],
+ text: null,
+ texts: null,
+ category: "Activities",
+ subcategory: "sport",
+ sort_order: 1076,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ ice_hockey_stick_and_puck: {
+ char: "🏒",
+ key: "ice_hockey_stick_and_puck",
+ keywords: ["ice_hockey_stick_and_puck", "ICE HOCKEY STICK AND PUCK"],
+ category: "activity",
+ lib: {
+ name: "ICE HOCKEY STICK AND PUCK",
+ unified: "1F3D2",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f3d2.png",
+ sheet_x: 9,
+ sheet_y: 58,
+ short_name: "ice_hockey_stick_and_puck",
+ short_names: ["ice_hockey_stick_and_puck"],
+ text: null,
+ texts: null,
+ category: "Activities",
+ subcategory: "sport",
+ sort_order: 1077,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ lacrosse: {
+ char: "🥍",
+ key: "lacrosse",
+ keywords: ["lacrosse", "LACROSSE STICK AND BALL"],
+ category: "activity",
+ lib: {
+ name: "LACROSSE STICK AND BALL",
+ unified: "1F94D",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f94d.png",
+ sheet_x: 43,
+ sheet_y: 25,
+ short_name: "lacrosse",
+ short_names: ["lacrosse"],
+ text: null,
+ texts: null,
+ category: "Activities",
+ subcategory: "sport",
+ sort_order: 1078,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ table_tennis_paddle_and_ball: {
+ char: "🏓",
+ key: "table_tennis_paddle_and_ball",
+ keywords: [
+ "table_tennis_paddle_and_ball",
+ "TABLE TENNIS PADDLE AND BALL",
+ ],
+ category: "activity",
+ lib: {
+ name: "TABLE TENNIS PADDLE AND BALL",
+ unified: "1F3D3",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f3d3.png",
+ sheet_x: 9,
+ sheet_y: 59,
+ short_name: "table_tennis_paddle_and_ball",
+ short_names: ["table_tennis_paddle_and_ball"],
+ text: null,
+ texts: null,
+ category: "Activities",
+ subcategory: "sport",
+ sort_order: 1079,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ badminton_racquet_and_shuttlecock: {
+ char: "🏸",
+ key: "badminton_racquet_and_shuttlecock",
+ keywords: [
+ "badminton_racquet_and_shuttlecock",
+ "BADMINTON RACQUET AND SHUTTLECOCK",
+ ],
+ category: "activity",
+ lib: {
+ name: "BADMINTON RACQUET AND SHUTTLECOCK",
+ unified: "1F3F8",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f3f8.png",
+ sheet_x: 10,
+ sheet_y: 38,
+ short_name: "badminton_racquet_and_shuttlecock",
+ short_names: ["badminton_racquet_and_shuttlecock"],
+ text: null,
+ texts: null,
+ category: "Activities",
+ subcategory: "sport",
+ sort_order: 1080,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ boxing_glove: {
+ char: "🥊",
+ key: "boxing_glove",
+ keywords: ["boxing_glove", "BOXING GLOVE"],
+ category: "activity",
+ lib: {
+ name: "BOXING GLOVE",
+ unified: "1F94A",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f94a.png",
+ sheet_x: 43,
+ sheet_y: 22,
+ short_name: "boxing_glove",
+ short_names: ["boxing_glove"],
+ text: null,
+ texts: null,
+ category: "Activities",
+ subcategory: "sport",
+ sort_order: 1081,
+ added_in: "3.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ martial_arts_uniform: {
+ char: "🥋",
+ key: "martial_arts_uniform",
+ keywords: ["martial_arts_uniform", "MARTIAL ARTS UNIFORM"],
+ category: "activity",
+ lib: {
+ name: "MARTIAL ARTS UNIFORM",
+ unified: "1F94B",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f94b.png",
+ sheet_x: 43,
+ sheet_y: 23,
+ short_name: "martial_arts_uniform",
+ short_names: ["martial_arts_uniform"],
+ text: null,
+ texts: null,
+ category: "Activities",
+ subcategory: "sport",
+ sort_order: 1082,
+ added_in: "3.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ goal_net: {
+ char: "🥅",
+ key: "goal_net",
+ keywords: ["goal_net", "GOAL NET"],
+ category: "activity",
+ lib: {
+ name: "GOAL NET",
+ unified: "1F945",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f945.png",
+ sheet_x: 43,
+ sheet_y: 18,
+ short_name: "goal_net",
+ short_names: ["goal_net"],
+ text: null,
+ texts: null,
+ category: "Activities",
+ subcategory: "sport",
+ sort_order: 1083,
+ added_in: "3.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ golf: {
+ char: "⛳",
+ key: "golf",
+ keywords: ["golf", "FLAG IN HOLE"],
+ category: "activity",
+ lib: {
+ name: "FLAG IN HOLE",
+ unified: "26F3",
+ non_qualified: null,
+ docomo: "E654",
+ au: "E599",
+ softbank: "E014",
+ google: "FE7D2",
+ image: "26f3.png",
+ sheet_x: 58,
+ sheet_y: 29,
+ short_name: "golf",
+ short_names: ["golf"],
+ text: null,
+ texts: null,
+ category: "Activities",
+ subcategory: "sport",
+ sort_order: 1084,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ ice_skate: {
+ char: "⛸️",
+ key: "ice_skate",
+ keywords: ["ice_skate", "ICE SKATE"],
+ category: "activity",
+ lib: {
+ name: "ICE SKATE",
+ unified: "26F8-FE0F",
+ non_qualified: "26F8",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "26f8-fe0f.png",
+ sheet_x: 58,
+ sheet_y: 33,
+ short_name: "ice_skate",
+ short_names: ["ice_skate"],
+ text: null,
+ texts: null,
+ category: "Activities",
+ subcategory: "sport",
+ sort_order: 1085,
+ added_in: "0.7",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ fishing_pole_and_fish: {
+ char: "🎣",
+ key: "fishing_pole_and_fish",
+ keywords: ["fishing_pole_and_fish", "FISHING POLE AND FISH"],
+ category: "activity",
+ lib: {
+ name: "FISHING POLE AND FISH",
+ unified: "1F3A3",
+ non_qualified: null,
+ docomo: "E751",
+ au: "EB42",
+ softbank: null,
+ google: "FE7FF",
+ image: "1f3a3.png",
+ sheet_x: 7,
+ sheet_y: 38,
+ short_name: "fishing_pole_and_fish",
+ short_names: ["fishing_pole_and_fish"],
+ text: null,
+ texts: null,
+ category: "Activities",
+ subcategory: "sport",
+ sort_order: 1086,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ diving_mask: {
+ char: "🤿",
+ key: "diving_mask",
+ keywords: ["diving_mask", "DIVING MASK"],
+ category: "activity",
+ lib: {
+ name: "DIVING MASK",
+ unified: "1F93F",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f93f.png",
+ sheet_x: 43,
+ sheet_y: 12,
+ short_name: "diving_mask",
+ short_names: ["diving_mask"],
+ text: null,
+ texts: null,
+ category: "Activities",
+ subcategory: "sport",
+ sort_order: 1087,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ running_shirt_with_sash: {
+ char: "🎽",
+ key: "running_shirt_with_sash",
+ keywords: ["running_shirt_with_sash", "RUNNING SHIRT WITH SASH"],
+ category: "activity",
+ lib: {
+ name: "RUNNING SHIRT WITH SASH",
+ unified: "1F3BD",
+ non_qualified: null,
+ docomo: "E652",
+ au: null,
+ softbank: null,
+ google: "FE7D0",
+ image: "1f3bd.png",
+ sheet_x: 8,
+ sheet_y: 3,
+ short_name: "running_shirt_with_sash",
+ short_names: ["running_shirt_with_sash"],
+ text: null,
+ texts: null,
+ category: "Activities",
+ subcategory: "sport",
+ sort_order: 1088,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ ski: {
+ char: "🎿",
+ key: "ski",
+ keywords: ["ski", "SKI AND SKI BOOT"],
+ category: "activity",
+ lib: {
+ name: "SKI AND SKI BOOT",
+ unified: "1F3BF",
+ non_qualified: null,
+ docomo: "E657",
+ au: "EAAC",
+ softbank: "E013",
+ google: "FE7D5",
+ image: "1f3bf.png",
+ sheet_x: 8,
+ sheet_y: 5,
+ short_name: "ski",
+ short_names: ["ski"],
+ text: null,
+ texts: null,
+ category: "Activities",
+ subcategory: "sport",
+ sort_order: 1089,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ sled: {
+ char: "🛷",
+ key: "sled",
+ keywords: ["sled", "SLED"],
+ category: "activity",
+ lib: {
+ name: "SLED",
+ unified: "1F6F7",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f6f7.png",
+ sheet_x: 38,
+ sheet_y: 27,
+ short_name: "sled",
+ short_names: ["sled"],
+ text: null,
+ texts: null,
+ category: "Activities",
+ subcategory: "sport",
+ sort_order: 1090,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ curling_stone: {
+ char: "🥌",
+ key: "curling_stone",
+ keywords: ["curling_stone", "CURLING STONE"],
+ category: "activity",
+ lib: {
+ name: "CURLING STONE",
+ unified: "1F94C",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f94c.png",
+ sheet_x: 43,
+ sheet_y: 24,
+ short_name: "curling_stone",
+ short_names: ["curling_stone"],
+ text: null,
+ texts: null,
+ category: "Activities",
+ subcategory: "sport",
+ sort_order: 1091,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ dart: {
+ char: "🎯",
+ key: "dart",
+ keywords: ["dart", "DIRECT HIT"],
+ category: "activity",
+ lib: {
+ name: "DIRECT HIT",
+ unified: "1F3AF",
+ non_qualified: null,
+ docomo: null,
+ au: "E4C5",
+ softbank: "E130",
+ google: "FE80C",
+ image: "1f3af.png",
+ sheet_x: 7,
+ sheet_y: 50,
+ short_name: "dart",
+ short_names: ["dart"],
+ text: null,
+ texts: null,
+ category: "Activities",
+ subcategory: "game",
+ sort_order: 1092,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "yo-yo": {
+ char: "🪀",
+ key: "yo-yo",
+ keywords: ["yo-yo", "YO-YO"],
+ category: "activity",
+ lib: {
+ name: "YO-YO",
+ unified: "1FA80",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1fa80.png",
+ sheet_x: 54,
+ sheet_y: 0,
+ short_name: "yo-yo",
+ short_names: ["yo-yo"],
+ text: null,
+ texts: null,
+ category: "Activities",
+ subcategory: "game",
+ sort_order: 1093,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ kite: {
+ char: "🪁",
+ key: "kite",
+ keywords: ["kite", "KITE"],
+ category: "activity",
+ lib: {
+ name: "KITE",
+ unified: "1FA81",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1fa81.png",
+ sheet_x: 54,
+ sheet_y: 1,
+ short_name: "kite",
+ short_names: ["kite"],
+ text: null,
+ texts: null,
+ category: "Activities",
+ subcategory: "game",
+ sort_order: 1094,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ gun: {
+ char: "🔫",
+ key: "gun",
+ keywords: ["gun", "PISTOL"],
+ category: "activity",
+ lib: {
+ name: "PISTOL",
+ unified: "1F52B",
+ non_qualified: null,
+ docomo: null,
+ au: "E50A",
+ softbank: "E113",
+ google: "FE4F5",
+ image: "1f52b.png",
+ sheet_x: 30,
+ sheet_y: 8,
+ short_name: "gun",
+ short_names: ["gun"],
+ text: null,
+ texts: null,
+ category: "Activities",
+ subcategory: "game",
+ sort_order: 1095,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "8ball": {
+ char: "🎱",
+ key: "8ball",
+ keywords: ["8ball", "BILLIARDS"],
+ category: "activity",
+ lib: {
+ name: "BILLIARDS",
+ unified: "1F3B1",
+ non_qualified: null,
+ docomo: null,
+ au: "EADD",
+ softbank: "E42C",
+ google: "FE80E",
+ image: "1f3b1.png",
+ sheet_x: 7,
+ sheet_y: 52,
+ short_name: "8ball",
+ short_names: ["8ball"],
+ text: null,
+ texts: null,
+ category: "Activities",
+ subcategory: "game",
+ sort_order: 1096,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ crystal_ball: {
+ char: "🔮",
+ key: "crystal_ball",
+ keywords: ["crystal_ball", "CRYSTAL BALL"],
+ category: "activity",
+ lib: {
+ name: "CRYSTAL BALL",
+ unified: "1F52E",
+ non_qualified: null,
+ docomo: null,
+ au: "EA8F",
+ softbank: null,
+ google: "FE4F7",
+ image: "1f52e.png",
+ sheet_x: 30,
+ sheet_y: 11,
+ short_name: "crystal_ball",
+ short_names: ["crystal_ball"],
+ text: null,
+ texts: null,
+ category: "Activities",
+ subcategory: "game",
+ sort_order: 1097,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ magic_wand: {
+ char: "🪄",
+ key: "magic_wand",
+ keywords: ["magic_wand", "MAGIC WAND"],
+ category: "activity",
+ lib: {
+ name: "MAGIC WAND",
+ unified: "1FA84",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1fa84.png",
+ sheet_x: 54,
+ sheet_y: 4,
+ short_name: "magic_wand",
+ short_names: ["magic_wand"],
+ text: null,
+ texts: null,
+ category: "Activities",
+ subcategory: "game",
+ sort_order: 1098,
+ added_in: "13.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ video_game: {
+ char: "🎮",
+ key: "video_game",
+ keywords: ["video_game", "VIDEO GAME"],
+ category: "activity",
+ lib: {
+ name: "VIDEO GAME",
+ unified: "1F3AE",
+ non_qualified: null,
+ docomo: "E68B",
+ au: "E4C6",
+ softbank: null,
+ google: "FE80A",
+ image: "1f3ae.png",
+ sheet_x: 7,
+ sheet_y: 49,
+ short_name: "video_game",
+ short_names: ["video_game"],
+ text: null,
+ texts: null,
+ category: "Activities",
+ subcategory: "game",
+ sort_order: 1099,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ joystick: {
+ char: "🕹️",
+ key: "joystick",
+ keywords: ["joystick", "JOYSTICK"],
+ category: "activity",
+ lib: {
+ name: "JOYSTICK",
+ unified: "1F579-FE0F",
+ non_qualified: "1F579",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f579-fe0f.png",
+ sheet_x: 31,
+ sheet_y: 26,
+ short_name: "joystick",
+ short_names: ["joystick"],
+ text: null,
+ texts: null,
+ category: "Activities",
+ subcategory: "game",
+ sort_order: 1100,
+ added_in: "0.7",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ slot_machine: {
+ char: "🎰",
+ key: "slot_machine",
+ keywords: ["slot_machine", "SLOT MACHINE"],
+ category: "activity",
+ lib: {
+ name: "SLOT MACHINE",
+ unified: "1F3B0",
+ non_qualified: null,
+ docomo: null,
+ au: "E46E",
+ softbank: "E133",
+ google: "FE80D",
+ image: "1f3b0.png",
+ sheet_x: 7,
+ sheet_y: 51,
+ short_name: "slot_machine",
+ short_names: ["slot_machine"],
+ text: null,
+ texts: null,
+ category: "Activities",
+ subcategory: "game",
+ sort_order: 1101,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ game_die: {
+ char: "🎲",
+ key: "game_die",
+ keywords: ["game_die", "GAME DIE"],
+ category: "activity",
+ lib: {
+ name: "GAME DIE",
+ unified: "1F3B2",
+ non_qualified: null,
+ docomo: null,
+ au: "E4C8",
+ softbank: null,
+ google: "FE80F",
+ image: "1f3b2.png",
+ sheet_x: 7,
+ sheet_y: 53,
+ short_name: "game_die",
+ short_names: ["game_die"],
+ text: null,
+ texts: null,
+ category: "Activities",
+ subcategory: "game",
+ sort_order: 1102,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ jigsaw: {
+ char: "🧩",
+ key: "jigsaw",
+ keywords: ["jigsaw", "JIGSAW PUZZLE PIECE"],
+ category: "activity",
+ lib: {
+ name: "JIGSAW PUZZLE PIECE",
+ unified: "1F9E9",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f9e9.png",
+ sheet_x: 53,
+ sheet_y: 25,
+ short_name: "jigsaw",
+ short_names: ["jigsaw"],
+ text: null,
+ texts: null,
+ category: "Activities",
+ subcategory: "game",
+ sort_order: 1103,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ teddy_bear: {
+ char: "🧸",
+ key: "teddy_bear",
+ keywords: ["teddy_bear", "TEDDY BEAR"],
+ category: "activity",
+ lib: {
+ name: "TEDDY BEAR",
+ unified: "1F9F8",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f9f8.png",
+ sheet_x: 53,
+ sheet_y: 40,
+ short_name: "teddy_bear",
+ short_names: ["teddy_bear"],
+ text: null,
+ texts: null,
+ category: "Activities",
+ subcategory: "game",
+ sort_order: 1104,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ pinata: {
+ char: "🪅",
+ key: "pinata",
+ keywords: ["pinata", "PINATA"],
+ category: "activity",
+ lib: {
+ name: "PINATA",
+ unified: "1FA85",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1fa85.png",
+ sheet_x: 54,
+ sheet_y: 5,
+ short_name: "pinata",
+ short_names: ["pinata"],
+ text: null,
+ texts: null,
+ category: "Activities",
+ subcategory: "game",
+ sort_order: 1105,
+ added_in: "13.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ mirror_ball: {
+ char: "🪩",
+ key: "mirror_ball",
+ keywords: ["mirror_ball", "MIRROR BALL"],
+ category: "activity",
+ lib: {
+ name: "MIRROR BALL",
+ unified: "1FAA9",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1faa9.png",
+ sheet_x: 54,
+ sheet_y: 34,
+ short_name: "mirror_ball",
+ short_names: ["mirror_ball"],
+ text: null,
+ texts: null,
+ category: "Activities",
+ subcategory: "game",
+ sort_order: 1106,
+ added_in: "14.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ nesting_dolls: {
+ char: "🪆",
+ key: "nesting_dolls",
+ keywords: ["nesting_dolls", "NESTING DOLLS"],
+ category: "activity",
+ lib: {
+ name: "NESTING DOLLS",
+ unified: "1FA86",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1fa86.png",
+ sheet_x: 54,
+ sheet_y: 6,
+ short_name: "nesting_dolls",
+ short_names: ["nesting_dolls"],
+ text: null,
+ texts: null,
+ category: "Activities",
+ subcategory: "game",
+ sort_order: 1107,
+ added_in: "13.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ spades: {
+ char: "♠️",
+ key: "spades",
+ keywords: ["spades", "BLACK SPADE SUIT"],
+ category: "activity",
+ lib: {
+ name: "BLACK SPADE SUIT",
+ unified: "2660-FE0F",
+ non_qualified: "2660",
+ docomo: "E68E",
+ au: "E5A1",
+ softbank: "E20E",
+ google: "FEB1B",
+ image: "2660-fe0f.png",
+ sheet_x: 57,
+ sheet_y: 51,
+ short_name: "spades",
+ short_names: ["spades"],
+ text: null,
+ texts: null,
+ category: "Activities",
+ subcategory: "game",
+ sort_order: 1108,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ hearts: {
+ char: "♥️",
+ key: "hearts",
+ keywords: ["hearts", "BLACK HEART SUIT"],
+ category: "activity",
+ lib: {
+ name: "BLACK HEART SUIT",
+ unified: "2665-FE0F",
+ non_qualified: "2665",
+ docomo: "E68D",
+ au: "EAA5",
+ softbank: "E20C",
+ google: "FEB1A",
+ image: "2665-fe0f.png",
+ sheet_x: 57,
+ sheet_y: 53,
+ short_name: "hearts",
+ short_names: ["hearts"],
+ text: null,
+ texts: null,
+ category: "Activities",
+ subcategory: "game",
+ sort_order: 1109,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ diamonds: {
+ char: "♦️",
+ key: "diamonds",
+ keywords: ["diamonds", "BLACK DIAMOND SUIT"],
+ category: "activity",
+ lib: {
+ name: "BLACK DIAMOND SUIT",
+ unified: "2666-FE0F",
+ non_qualified: "2666",
+ docomo: "E68F",
+ au: "E5A2",
+ softbank: "E20D",
+ google: "FEB1C",
+ image: "2666-fe0f.png",
+ sheet_x: 57,
+ sheet_y: 54,
+ short_name: "diamonds",
+ short_names: ["diamonds"],
+ text: null,
+ texts: null,
+ category: "Activities",
+ subcategory: "game",
+ sort_order: 1110,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ clubs: {
+ char: "♣️",
+ key: "clubs",
+ keywords: ["clubs", "BLACK CLUB SUIT"],
+ category: "activity",
+ lib: {
+ name: "BLACK CLUB SUIT",
+ unified: "2663-FE0F",
+ non_qualified: "2663",
+ docomo: "E690",
+ au: "E5A3",
+ softbank: "E20F",
+ google: "FEB1D",
+ image: "2663-fe0f.png",
+ sheet_x: 57,
+ sheet_y: 52,
+ short_name: "clubs",
+ short_names: ["clubs"],
+ text: null,
+ texts: null,
+ category: "Activities",
+ subcategory: "game",
+ sort_order: 1111,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ chess_pawn: {
+ char: "♟️",
+ key: "chess_pawn",
+ keywords: ["chess_pawn", "CHESS PAWN"],
+ category: "activity",
+ lib: {
+ name: "CHESS PAWN",
+ unified: "265F-FE0F",
+ non_qualified: "265F",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "265f-fe0f.png",
+ sheet_x: 57,
+ sheet_y: 50,
+ short_name: "chess_pawn",
+ short_names: ["chess_pawn"],
+ text: null,
+ texts: null,
+ category: "Activities",
+ subcategory: "game",
+ sort_order: 1112,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ black_joker: {
+ char: "🃏",
+ key: "black_joker",
+ keywords: ["black_joker", "PLAYING CARD BLACK JOKER"],
+ category: "activity",
+ lib: {
+ name: "PLAYING CARD BLACK JOKER",
+ unified: "1F0CF",
+ non_qualified: null,
+ docomo: null,
+ au: "EB6F",
+ softbank: null,
+ google: "FE812",
+ image: "1f0cf.png",
+ sheet_x: 0,
+ sheet_y: 15,
+ short_name: "black_joker",
+ short_names: ["black_joker"],
+ text: null,
+ texts: null,
+ category: "Activities",
+ subcategory: "game",
+ sort_order: 1113,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ mahjong: {
+ char: "🀄",
+ key: "mahjong",
+ keywords: ["mahjong", "MAHJONG TILE RED DRAGON"],
+ category: "activity",
+ lib: {
+ name: "MAHJONG TILE RED DRAGON",
+ unified: "1F004",
+ non_qualified: null,
+ docomo: null,
+ au: "E5D1",
+ softbank: "E12D",
+ google: "FE80B",
+ image: "1f004.png",
+ sheet_x: 0,
+ sheet_y: 14,
+ short_name: "mahjong",
+ short_names: ["mahjong"],
+ text: null,
+ texts: null,
+ category: "Activities",
+ subcategory: "game",
+ sort_order: 1114,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ flower_playing_cards: {
+ char: "🎴",
+ key: "flower_playing_cards",
+ keywords: ["flower_playing_cards", "FLOWER PLAYING CARDS"],
+ category: "activity",
+ lib: {
+ name: "FLOWER PLAYING CARDS",
+ unified: "1F3B4",
+ non_qualified: null,
+ docomo: null,
+ au: "EB6E",
+ softbank: null,
+ google: "FE811",
+ image: "1f3b4.png",
+ sheet_x: 7,
+ sheet_y: 55,
+ short_name: "flower_playing_cards",
+ short_names: ["flower_playing_cards"],
+ text: null,
+ texts: null,
+ category: "Activities",
+ subcategory: "game",
+ sort_order: 1115,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ performing_arts: {
+ char: "🎭",
+ key: "performing_arts",
+ keywords: ["performing_arts", "PERFORMING ARTS"],
+ category: "activity",
+ lib: {
+ name: "PERFORMING ARTS",
+ unified: "1F3AD",
+ non_qualified: null,
+ docomo: null,
+ au: "E59D",
+ softbank: null,
+ google: "FE809",
+ image: "1f3ad.png",
+ sheet_x: 7,
+ sheet_y: 48,
+ short_name: "performing_arts",
+ short_names: ["performing_arts"],
+ text: null,
+ texts: null,
+ category: "Activities",
+ subcategory: "arts & crafts",
+ sort_order: 1116,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ frame_with_picture: {
+ char: "🖼️",
+ key: "frame_with_picture",
+ keywords: ["frame_with_picture", "FRAMED PICTURE"],
+ category: "activity",
+ lib: {
+ name: "FRAMED PICTURE",
+ unified: "1F5BC-FE0F",
+ non_qualified: "1F5BC",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f5bc-fe0f.png",
+ sheet_x: 32,
+ sheet_y: 0,
+ short_name: "frame_with_picture",
+ short_names: ["frame_with_picture"],
+ text: null,
+ texts: null,
+ category: "Activities",
+ subcategory: "arts & crafts",
+ sort_order: 1117,
+ added_in: "0.7",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ art: {
+ char: "🎨",
+ key: "art",
+ keywords: ["art", "ARTIST PALETTE"],
+ category: "activity",
+ lib: {
+ name: "ARTIST PALETTE",
+ unified: "1F3A8",
+ non_qualified: null,
+ docomo: "E67B",
+ au: "E59C",
+ softbank: "E502",
+ google: "FE804",
+ image: "1f3a8.png",
+ sheet_x: 7,
+ sheet_y: 43,
+ short_name: "art",
+ short_names: ["art"],
+ text: null,
+ texts: null,
+ category: "Activities",
+ subcategory: "arts & crafts",
+ sort_order: 1118,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ thread: {
+ char: "🧵",
+ key: "thread",
+ keywords: ["thread", "SPOOL OF THREAD"],
+ category: "activity",
+ lib: {
+ name: "SPOOL OF THREAD",
+ unified: "1F9F5",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f9f5.png",
+ sheet_x: 53,
+ sheet_y: 37,
+ short_name: "thread",
+ short_names: ["thread"],
+ text: null,
+ texts: null,
+ category: "Activities",
+ subcategory: "arts & crafts",
+ sort_order: 1119,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ sewing_needle: {
+ char: "🪡",
+ key: "sewing_needle",
+ keywords: ["sewing_needle", "SEWING NEEDLE"],
+ category: "activity",
+ lib: {
+ name: "SEWING NEEDLE",
+ unified: "1FAA1",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1faa1.png",
+ sheet_x: 54,
+ sheet_y: 26,
+ short_name: "sewing_needle",
+ short_names: ["sewing_needle"],
+ text: null,
+ texts: null,
+ category: "Activities",
+ subcategory: "arts & crafts",
+ sort_order: 1120,
+ added_in: "13.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ yarn: {
+ char: "🧶",
+ key: "yarn",
+ keywords: ["yarn", "BALL OF YARN"],
+ category: "activity",
+ lib: {
+ name: "BALL OF YARN",
+ unified: "1F9F6",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f9f6.png",
+ sheet_x: 53,
+ sheet_y: 38,
+ short_name: "yarn",
+ short_names: ["yarn"],
+ text: null,
+ texts: null,
+ category: "Activities",
+ subcategory: "arts & crafts",
+ sort_order: 1121,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ knot: {
+ char: "🪢",
+ key: "knot",
+ keywords: ["knot", "KNOT"],
+ category: "activity",
+ lib: {
+ name: "KNOT",
+ unified: "1FAA2",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1faa2.png",
+ sheet_x: 54,
+ sheet_y: 27,
+ short_name: "knot",
+ short_names: ["knot"],
+ text: null,
+ texts: null,
+ category: "Activities",
+ subcategory: "arts & crafts",
+ sort_order: 1122,
+ added_in: "13.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ eyeglasses: {
+ char: "👓",
+ key: "eyeglasses",
+ keywords: ["eyeglasses", "EYEGLASSES"],
+ category: "objects",
+ lib: {
+ name: "EYEGLASSES",
+ unified: "1F453",
+ non_qualified: null,
+ docomo: "E69A",
+ au: "E4FE",
+ softbank: null,
+ google: "FE4CE",
+ image: "1f453.png",
+ sheet_x: 13,
+ sheet_y: 16,
+ short_name: "eyeglasses",
+ short_names: ["eyeglasses"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "clothing",
+ sort_order: 1123,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ dark_sunglasses: {
+ char: "🕶️",
+ key: "dark_sunglasses",
+ keywords: ["dark_sunglasses", "SUNGLASSES"],
+ category: "objects",
+ lib: {
+ name: "SUNGLASSES",
+ unified: "1F576-FE0F",
+ non_qualified: "1F576",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f576-fe0f.png",
+ sheet_x: 31,
+ sheet_y: 23,
+ short_name: "dark_sunglasses",
+ short_names: ["dark_sunglasses"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "clothing",
+ sort_order: 1124,
+ added_in: "0.7",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ goggles: {
+ char: "🥽",
+ key: "goggles",
+ keywords: ["goggles", "GOGGLES"],
+ category: "objects",
+ lib: {
+ name: "GOGGLES",
+ unified: "1F97D",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f97d.png",
+ sheet_x: 44,
+ sheet_y: 17,
+ short_name: "goggles",
+ short_names: ["goggles"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "clothing",
+ sort_order: 1125,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ lab_coat: {
+ char: "🥼",
+ key: "lab_coat",
+ keywords: ["lab_coat", "LAB COAT"],
+ category: "objects",
+ lib: {
+ name: "LAB COAT",
+ unified: "1F97C",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f97c.png",
+ sheet_x: 44,
+ sheet_y: 16,
+ short_name: "lab_coat",
+ short_names: ["lab_coat"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "clothing",
+ sort_order: 1126,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ safety_vest: {
+ char: "🦺",
+ key: "safety_vest",
+ keywords: ["safety_vest", "SAFETY VEST"],
+ category: "objects",
+ lib: {
+ name: "SAFETY VEST",
+ unified: "1F9BA",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f9ba.png",
+ sheet_x: 45,
+ sheet_y: 57,
+ short_name: "safety_vest",
+ short_names: ["safety_vest"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "clothing",
+ sort_order: 1127,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ necktie: {
+ char: "👔",
+ key: "necktie",
+ keywords: ["necktie", "NECKTIE"],
+ category: "objects",
+ lib: {
+ name: "NECKTIE",
+ unified: "1F454",
+ non_qualified: null,
+ docomo: null,
+ au: "EA93",
+ softbank: "E302",
+ google: "FE4D3",
+ image: "1f454.png",
+ sheet_x: 13,
+ sheet_y: 17,
+ short_name: "necktie",
+ short_names: ["necktie"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "clothing",
+ sort_order: 1128,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ shirt: {
+ char: "👕",
+ key: "shirt",
+ keywords: ["shirt", "T-SHIRT"],
+ category: "objects",
+ lib: {
+ name: "T-SHIRT",
+ unified: "1F455",
+ non_qualified: null,
+ docomo: "E70E",
+ au: "E5B6",
+ softbank: "E006",
+ google: "FE4CF",
+ image: "1f455.png",
+ sheet_x: 13,
+ sheet_y: 18,
+ short_name: "shirt",
+ short_names: ["shirt", "tshirt"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "clothing",
+ sort_order: 1129,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ jeans: {
+ char: "👖",
+ key: "jeans",
+ keywords: ["jeans", "JEANS"],
+ category: "objects",
+ lib: {
+ name: "JEANS",
+ unified: "1F456",
+ non_qualified: null,
+ docomo: "E711",
+ au: "EB77",
+ softbank: null,
+ google: "FE4D0",
+ image: "1f456.png",
+ sheet_x: 13,
+ sheet_y: 19,
+ short_name: "jeans",
+ short_names: ["jeans"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "clothing",
+ sort_order: 1130,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ scarf: {
+ char: "🧣",
+ key: "scarf",
+ keywords: ["scarf", "SCARF"],
+ category: "objects",
+ lib: {
+ name: "SCARF",
+ unified: "1F9E3",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f9e3.png",
+ sheet_x: 53,
+ sheet_y: 19,
+ short_name: "scarf",
+ short_names: ["scarf"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "clothing",
+ sort_order: 1131,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ gloves: {
+ char: "🧤",
+ key: "gloves",
+ keywords: ["gloves", "GLOVES"],
+ category: "objects",
+ lib: {
+ name: "GLOVES",
+ unified: "1F9E4",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f9e4.png",
+ sheet_x: 53,
+ sheet_y: 20,
+ short_name: "gloves",
+ short_names: ["gloves"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "clothing",
+ sort_order: 1132,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ coat: {
+ char: "🧥",
+ key: "coat",
+ keywords: ["coat", "COAT"],
+ category: "objects",
+ lib: {
+ name: "COAT",
+ unified: "1F9E5",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f9e5.png",
+ sheet_x: 53,
+ sheet_y: 21,
+ short_name: "coat",
+ short_names: ["coat"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "clothing",
+ sort_order: 1133,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ socks: {
+ char: "🧦",
+ key: "socks",
+ keywords: ["socks", "SOCKS"],
+ category: "objects",
+ lib: {
+ name: "SOCKS",
+ unified: "1F9E6",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f9e6.png",
+ sheet_x: 53,
+ sheet_y: 22,
+ short_name: "socks",
+ short_names: ["socks"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "clothing",
+ sort_order: 1134,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ dress: {
+ char: "👗",
+ key: "dress",
+ keywords: ["dress", "DRESS"],
+ category: "objects",
+ lib: {
+ name: "DRESS",
+ unified: "1F457",
+ non_qualified: null,
+ docomo: null,
+ au: "EB6B",
+ softbank: "E319",
+ google: "FE4D5",
+ image: "1f457.png",
+ sheet_x: 13,
+ sheet_y: 20,
+ short_name: "dress",
+ short_names: ["dress"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "clothing",
+ sort_order: 1135,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ kimono: {
+ char: "👘",
+ key: "kimono",
+ keywords: ["kimono", "KIMONO"],
+ category: "objects",
+ lib: {
+ name: "KIMONO",
+ unified: "1F458",
+ non_qualified: null,
+ docomo: null,
+ au: "EAA3",
+ softbank: "E321",
+ google: "FE4D9",
+ image: "1f458.png",
+ sheet_x: 13,
+ sheet_y: 21,
+ short_name: "kimono",
+ short_names: ["kimono"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "clothing",
+ sort_order: 1136,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ sari: {
+ char: "🥻",
+ key: "sari",
+ keywords: ["sari", "SARI"],
+ category: "objects",
+ lib: {
+ name: "SARI",
+ unified: "1F97B",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f97b.png",
+ sheet_x: 44,
+ sheet_y: 15,
+ short_name: "sari",
+ short_names: ["sari"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "clothing",
+ sort_order: 1137,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "one-piece_swimsuit": {
+ char: "🩱",
+ key: "one-piece_swimsuit",
+ keywords: ["one-piece_swimsuit", "ONE-PIECE SWIMSUIT"],
+ category: "objects",
+ lib: {
+ name: "ONE-PIECE SWIMSUIT",
+ unified: "1FA71",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1fa71.png",
+ sheet_x: 53,
+ sheet_y: 49,
+ short_name: "one-piece_swimsuit",
+ short_names: ["one-piece_swimsuit"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "clothing",
+ sort_order: 1138,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ briefs: {
+ char: "🩲",
+ key: "briefs",
+ keywords: ["briefs", "BRIEFS"],
+ category: "objects",
+ lib: {
+ name: "BRIEFS",
+ unified: "1FA72",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1fa72.png",
+ sheet_x: 53,
+ sheet_y: 50,
+ short_name: "briefs",
+ short_names: ["briefs"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "clothing",
+ sort_order: 1139,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ shorts: {
+ char: "🩳",
+ key: "shorts",
+ keywords: ["shorts", "SHORTS"],
+ category: "objects",
+ lib: {
+ name: "SHORTS",
+ unified: "1FA73",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1fa73.png",
+ sheet_x: 53,
+ sheet_y: 51,
+ short_name: "shorts",
+ short_names: ["shorts"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "clothing",
+ sort_order: 1140,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ bikini: {
+ char: "👙",
+ key: "bikini",
+ keywords: ["bikini", "BIKINI"],
+ category: "objects",
+ lib: {
+ name: "BIKINI",
+ unified: "1F459",
+ non_qualified: null,
+ docomo: null,
+ au: "EAA4",
+ softbank: "E322",
+ google: "FE4DA",
+ image: "1f459.png",
+ sheet_x: 13,
+ sheet_y: 22,
+ short_name: "bikini",
+ short_names: ["bikini"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "clothing",
+ sort_order: 1141,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ womans_clothes: {
+ char: "👚",
+ key: "womans_clothes",
+ keywords: ["womans_clothes", "WOMANS CLOTHES"],
+ category: "objects",
+ lib: {
+ name: "WOMANS CLOTHES",
+ unified: "1F45A",
+ non_qualified: null,
+ docomo: "E70E",
+ au: "E50D",
+ softbank: null,
+ google: "FE4DB",
+ image: "1f45a.png",
+ sheet_x: 13,
+ sheet_y: 23,
+ short_name: "womans_clothes",
+ short_names: ["womans_clothes"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "clothing",
+ sort_order: 1142,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ folding_hand_fan: {
+ char: "🪭",
+ key: "folding_hand_fan",
+ keywords: ["folding_hand_fan", "FOLDING HAND FAN"],
+ category: "objects",
+ lib: {
+ name: "FOLDING HAND FAN",
+ unified: "1FAAD",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1faad.png",
+ sheet_x: 54,
+ sheet_y: 38,
+ short_name: "folding_hand_fan",
+ short_names: ["folding_hand_fan"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "clothing",
+ sort_order: 1143,
+ added_in: "15.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: false,
+ has_img_facebook: false,
+ },
+ },
+ purse: {
+ char: "👛",
+ key: "purse",
+ keywords: ["purse", "PURSE"],
+ category: "objects",
+ lib: {
+ name: "PURSE",
+ unified: "1F45B",
+ non_qualified: null,
+ docomo: "E70F",
+ au: "E504",
+ softbank: null,
+ google: "FE4DC",
+ image: "1f45b.png",
+ sheet_x: 13,
+ sheet_y: 24,
+ short_name: "purse",
+ short_names: ["purse"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "clothing",
+ sort_order: 1144,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ handbag: {
+ char: "👜",
+ key: "handbag",
+ keywords: ["handbag", "HANDBAG"],
+ category: "objects",
+ lib: {
+ name: "HANDBAG",
+ unified: "1F45C",
+ non_qualified: null,
+ docomo: "E682",
+ au: "E49C",
+ softbank: "E323",
+ google: "FE4F0",
+ image: "1f45c.png",
+ sheet_x: 13,
+ sheet_y: 25,
+ short_name: "handbag",
+ short_names: ["handbag"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "clothing",
+ sort_order: 1145,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ pouch: {
+ char: "👝",
+ key: "pouch",
+ keywords: ["pouch", "POUCH"],
+ category: "objects",
+ lib: {
+ name: "POUCH",
+ unified: "1F45D",
+ non_qualified: null,
+ docomo: "E6AD",
+ au: null,
+ softbank: null,
+ google: "FE4F1",
+ image: "1f45d.png",
+ sheet_x: 13,
+ sheet_y: 26,
+ short_name: "pouch",
+ short_names: ["pouch"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "clothing",
+ sort_order: 1146,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ shopping_bags: {
+ char: "🛍️",
+ key: "shopping_bags",
+ keywords: ["shopping_bags", "SHOPPING BAGS"],
+ category: "objects",
+ lib: {
+ name: "SHOPPING BAGS",
+ unified: "1F6CD-FE0F",
+ non_qualified: "1F6CD",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f6cd-fe0f.png",
+ sheet_x: 38,
+ sheet_y: 0,
+ short_name: "shopping_bags",
+ short_names: ["shopping_bags"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "clothing",
+ sort_order: 1147,
+ added_in: "0.7",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ school_satchel: {
+ char: "🎒",
+ key: "school_satchel",
+ keywords: ["school_satchel", "SCHOOL SATCHEL"],
+ category: "objects",
+ lib: {
+ name: "SCHOOL SATCHEL",
+ unified: "1F392",
+ non_qualified: null,
+ docomo: null,
+ au: "EAE6",
+ softbank: "E43A",
+ google: "FE51B",
+ image: "1f392.png",
+ sheet_x: 7,
+ sheet_y: 26,
+ short_name: "school_satchel",
+ short_names: ["school_satchel"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "clothing",
+ sort_order: 1148,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ thong_sandal: {
+ char: "🩴",
+ key: "thong_sandal",
+ keywords: ["thong_sandal", "THONG SANDAL"],
+ category: "objects",
+ lib: {
+ name: "THONG SANDAL",
+ unified: "1FA74",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1fa74.png",
+ sheet_x: 53,
+ sheet_y: 52,
+ short_name: "thong_sandal",
+ short_names: ["thong_sandal"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "clothing",
+ sort_order: 1149,
+ added_in: "13.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ mans_shoe: {
+ char: "👞",
+ key: "mans_shoe",
+ keywords: ["mans_shoe", "MANS SHOE"],
+ category: "objects",
+ lib: {
+ name: "MANS SHOE",
+ unified: "1F45E",
+ non_qualified: null,
+ docomo: "E699",
+ au: "E5B7",
+ softbank: null,
+ google: "FE4CC",
+ image: "1f45e.png",
+ sheet_x: 13,
+ sheet_y: 27,
+ short_name: "mans_shoe",
+ short_names: ["mans_shoe", "shoe"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "clothing",
+ sort_order: 1150,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ athletic_shoe: {
+ char: "👟",
+ key: "athletic_shoe",
+ keywords: ["athletic_shoe", "ATHLETIC SHOE"],
+ category: "objects",
+ lib: {
+ name: "ATHLETIC SHOE",
+ unified: "1F45F",
+ non_qualified: null,
+ docomo: "E699",
+ au: "EB2B",
+ softbank: "E007",
+ google: "FE4CD",
+ image: "1f45f.png",
+ sheet_x: 13,
+ sheet_y: 28,
+ short_name: "athletic_shoe",
+ short_names: ["athletic_shoe"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "clothing",
+ sort_order: 1151,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ hiking_boot: {
+ char: "🥾",
+ key: "hiking_boot",
+ keywords: ["hiking_boot", "HIKING BOOT"],
+ category: "objects",
+ lib: {
+ name: "HIKING BOOT",
+ unified: "1F97E",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f97e.png",
+ sheet_x: 44,
+ sheet_y: 18,
+ short_name: "hiking_boot",
+ short_names: ["hiking_boot"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "clothing",
+ sort_order: 1152,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ womans_flat_shoe: {
+ char: "🥿",
+ key: "womans_flat_shoe",
+ keywords: ["womans_flat_shoe", "FLAT SHOE"],
+ category: "objects",
+ lib: {
+ name: "FLAT SHOE",
+ unified: "1F97F",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f97f.png",
+ sheet_x: 44,
+ sheet_y: 19,
+ short_name: "womans_flat_shoe",
+ short_names: ["womans_flat_shoe"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "clothing",
+ sort_order: 1153,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ high_heel: {
+ char: "👠",
+ key: "high_heel",
+ keywords: ["high_heel", "HIGH-HEELED SHOE"],
+ category: "objects",
+ lib: {
+ name: "HIGH-HEELED SHOE",
+ unified: "1F460",
+ non_qualified: null,
+ docomo: "E674",
+ au: "E51A",
+ softbank: "E13E",
+ google: "FE4D6",
+ image: "1f460.png",
+ sheet_x: 13,
+ sheet_y: 29,
+ short_name: "high_heel",
+ short_names: ["high_heel"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "clothing",
+ sort_order: 1154,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ sandal: {
+ char: "👡",
+ key: "sandal",
+ keywords: ["sandal", "WOMANS SANDAL"],
+ category: "objects",
+ lib: {
+ name: "WOMANS SANDAL",
+ unified: "1F461",
+ non_qualified: null,
+ docomo: "E674",
+ au: "E51A",
+ softbank: "E31A",
+ google: "FE4D7",
+ image: "1f461.png",
+ sheet_x: 13,
+ sheet_y: 30,
+ short_name: "sandal",
+ short_names: ["sandal"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "clothing",
+ sort_order: 1155,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ ballet_shoes: {
+ char: "🩰",
+ key: "ballet_shoes",
+ keywords: ["ballet_shoes", "BALLET SHOES"],
+ category: "objects",
+ lib: {
+ name: "BALLET SHOES",
+ unified: "1FA70",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1fa70.png",
+ sheet_x: 53,
+ sheet_y: 48,
+ short_name: "ballet_shoes",
+ short_names: ["ballet_shoes"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "clothing",
+ sort_order: 1156,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ boot: {
+ char: "👢",
+ key: "boot",
+ keywords: ["boot", "WOMANS BOOTS"],
+ category: "objects",
+ lib: {
+ name: "WOMANS BOOTS",
+ unified: "1F462",
+ non_qualified: null,
+ docomo: null,
+ au: "EA9F",
+ softbank: "E31B",
+ google: "FE4D8",
+ image: "1f462.png",
+ sheet_x: 13,
+ sheet_y: 31,
+ short_name: "boot",
+ short_names: ["boot"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "clothing",
+ sort_order: 1157,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ hair_pick: {
+ char: "🪮",
+ key: "hair_pick",
+ keywords: ["hair_pick", "HAIR PICK"],
+ category: "objects",
+ lib: {
+ name: "HAIR PICK",
+ unified: "1FAAE",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1faae.png",
+ sheet_x: 54,
+ sheet_y: 39,
+ short_name: "hair_pick",
+ short_names: ["hair_pick"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "clothing",
+ sort_order: 1158,
+ added_in: "15.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: false,
+ has_img_facebook: false,
+ },
+ },
+ crown: {
+ char: "👑",
+ key: "crown",
+ keywords: ["crown", "CROWN"],
+ category: "objects",
+ lib: {
+ name: "CROWN",
+ unified: "1F451",
+ non_qualified: null,
+ docomo: "E71A",
+ au: "E5C9",
+ softbank: "E10E",
+ google: "FE4D1",
+ image: "1f451.png",
+ sheet_x: 13,
+ sheet_y: 14,
+ short_name: "crown",
+ short_names: ["crown"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "clothing",
+ sort_order: 1159,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ womans_hat: {
+ char: "👒",
+ key: "womans_hat",
+ keywords: ["womans_hat", "WOMANS HAT"],
+ category: "objects",
+ lib: {
+ name: "WOMANS HAT",
+ unified: "1F452",
+ non_qualified: null,
+ docomo: null,
+ au: "EA9E",
+ softbank: "E318",
+ google: "FE4D4",
+ image: "1f452.png",
+ sheet_x: 13,
+ sheet_y: 15,
+ short_name: "womans_hat",
+ short_names: ["womans_hat"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "clothing",
+ sort_order: 1160,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ tophat: {
+ char: "🎩",
+ key: "tophat",
+ keywords: ["tophat", "TOP HAT"],
+ category: "objects",
+ lib: {
+ name: "TOP HAT",
+ unified: "1F3A9",
+ non_qualified: null,
+ docomo: "E67C",
+ au: "EAF5",
+ softbank: "E503",
+ google: "FE805",
+ image: "1f3a9.png",
+ sheet_x: 7,
+ sheet_y: 44,
+ short_name: "tophat",
+ short_names: ["tophat"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "clothing",
+ sort_order: 1161,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ mortar_board: {
+ char: "🎓",
+ key: "mortar_board",
+ keywords: ["mortar_board", "GRADUATION CAP"],
+ category: "objects",
+ lib: {
+ name: "GRADUATION CAP",
+ unified: "1F393",
+ non_qualified: null,
+ docomo: null,
+ au: "EAE5",
+ softbank: "E439",
+ google: "FE51A",
+ image: "1f393.png",
+ sheet_x: 7,
+ sheet_y: 27,
+ short_name: "mortar_board",
+ short_names: ["mortar_board"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "clothing",
+ sort_order: 1162,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ billed_cap: {
+ char: "🧢",
+ key: "billed_cap",
+ keywords: ["billed_cap", "BILLED CAP"],
+ category: "objects",
+ lib: {
+ name: "BILLED CAP",
+ unified: "1F9E2",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f9e2.png",
+ sheet_x: 53,
+ sheet_y: 18,
+ short_name: "billed_cap",
+ short_names: ["billed_cap"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "clothing",
+ sort_order: 1163,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ military_helmet: {
+ char: "🪖",
+ key: "military_helmet",
+ keywords: ["military_helmet", "MILITARY HELMET"],
+ category: "objects",
+ lib: {
+ name: "MILITARY HELMET",
+ unified: "1FA96",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1fa96.png",
+ sheet_x: 54,
+ sheet_y: 15,
+ short_name: "military_helmet",
+ short_names: ["military_helmet"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "clothing",
+ sort_order: 1164,
+ added_in: "13.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ helmet_with_white_cross: {
+ char: "⛑️",
+ key: "helmet_with_white_cross",
+ keywords: ["helmet_with_white_cross", "RESCUE WORKER’S HELMET"],
+ category: "objects",
+ lib: {
+ name: "RESCUE WORKER’S HELMET",
+ unified: "26D1-FE0F",
+ non_qualified: "26D1",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "26d1-fe0f.png",
+ sheet_x: 58,
+ sheet_y: 21,
+ short_name: "helmet_with_white_cross",
+ short_names: ["helmet_with_white_cross"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "clothing",
+ sort_order: 1165,
+ added_in: "0.7",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ prayer_beads: {
+ char: "📿",
+ key: "prayer_beads",
+ keywords: ["prayer_beads", "PRAYER BEADS"],
+ category: "objects",
+ lib: {
+ name: "PRAYER BEADS",
+ unified: "1F4FF",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f4ff.png",
+ sheet_x: 29,
+ sheet_y: 25,
+ short_name: "prayer_beads",
+ short_names: ["prayer_beads"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "clothing",
+ sort_order: 1166,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ lipstick: {
+ char: "💄",
+ key: "lipstick",
+ keywords: ["lipstick", "LIPSTICK"],
+ category: "objects",
+ lib: {
+ name: "LIPSTICK",
+ unified: "1F484",
+ non_qualified: null,
+ docomo: "E710",
+ au: "E509",
+ softbank: "E31C",
+ google: "FE195",
+ image: "1f484.png",
+ sheet_x: 25,
+ sheet_y: 53,
+ short_name: "lipstick",
+ short_names: ["lipstick"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "clothing",
+ sort_order: 1167,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ ring: {
+ char: "💍",
+ key: "ring",
+ keywords: ["ring", "RING"],
+ category: "objects",
+ lib: {
+ name: "RING",
+ unified: "1F48D",
+ non_qualified: null,
+ docomo: "E71B",
+ au: "E514",
+ softbank: "E034",
+ google: "FE825",
+ image: "1f48d.png",
+ sheet_x: 26,
+ sheet_y: 40,
+ short_name: "ring",
+ short_names: ["ring"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "clothing",
+ sort_order: 1168,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ gem: {
+ char: "💎",
+ key: "gem",
+ keywords: ["gem", "GEM STONE"],
+ category: "objects",
+ lib: {
+ name: "GEM STONE",
+ unified: "1F48E",
+ non_qualified: null,
+ docomo: "E71B",
+ au: "E514",
+ softbank: "E035",
+ google: "FE826",
+ image: "1f48e.png",
+ sheet_x: 26,
+ sheet_y: 41,
+ short_name: "gem",
+ short_names: ["gem"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "clothing",
+ sort_order: 1169,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ mute: {
+ char: "🔇",
+ key: "mute",
+ keywords: ["mute", "SPEAKER WITH CANCELLATION STROKE"],
+ category: "objects",
+ lib: {
+ name: "SPEAKER WITH CANCELLATION STROKE",
+ unified: "1F507",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f507.png",
+ sheet_x: 29,
+ sheet_y: 33,
+ short_name: "mute",
+ short_names: ["mute"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "sound",
+ sort_order: 1170,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ speaker: {
+ char: "🔈",
+ key: "speaker",
+ keywords: ["speaker", "SPEAKER"],
+ category: "objects",
+ lib: {
+ name: "SPEAKER",
+ unified: "1F508",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f508.png",
+ sheet_x: 29,
+ sheet_y: 34,
+ short_name: "speaker",
+ short_names: ["speaker"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "sound",
+ sort_order: 1171,
+ added_in: "0.7",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ sound: {
+ char: "🔉",
+ key: "sound",
+ keywords: ["sound", "SPEAKER WITH ONE SOUND WAVE"],
+ category: "objects",
+ lib: {
+ name: "SPEAKER WITH ONE SOUND WAVE",
+ unified: "1F509",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f509.png",
+ sheet_x: 29,
+ sheet_y: 35,
+ short_name: "sound",
+ short_names: ["sound"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "sound",
+ sort_order: 1172,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ loud_sound: {
+ char: "🔊",
+ key: "loud_sound",
+ keywords: ["loud_sound", "SPEAKER WITH THREE SOUND WAVES"],
+ category: "objects",
+ lib: {
+ name: "SPEAKER WITH THREE SOUND WAVES",
+ unified: "1F50A",
+ non_qualified: null,
+ docomo: null,
+ au: "E511",
+ softbank: "E141",
+ google: "FE821",
+ image: "1f50a.png",
+ sheet_x: 29,
+ sheet_y: 36,
+ short_name: "loud_sound",
+ short_names: ["loud_sound"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "sound",
+ sort_order: 1173,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ loudspeaker: {
+ char: "📢",
+ key: "loudspeaker",
+ keywords: ["loudspeaker", "PUBLIC ADDRESS LOUDSPEAKER"],
+ category: "objects",
+ lib: {
+ name: "PUBLIC ADDRESS LOUDSPEAKER",
+ unified: "1F4E2",
+ non_qualified: null,
+ docomo: null,
+ au: "E511",
+ softbank: "E142",
+ google: "FE52F",
+ image: "1f4e2.png",
+ sheet_x: 28,
+ sheet_y: 58,
+ short_name: "loudspeaker",
+ short_names: ["loudspeaker"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "sound",
+ sort_order: 1174,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ mega: {
+ char: "📣",
+ key: "mega",
+ keywords: ["mega", "CHEERING MEGAPHONE"],
+ category: "objects",
+ lib: {
+ name: "CHEERING MEGAPHONE",
+ unified: "1F4E3",
+ non_qualified: null,
+ docomo: null,
+ au: "E511",
+ softbank: "E317",
+ google: "FE530",
+ image: "1f4e3.png",
+ sheet_x: 28,
+ sheet_y: 59,
+ short_name: "mega",
+ short_names: ["mega"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "sound",
+ sort_order: 1175,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ postal_horn: {
+ char: "📯",
+ key: "postal_horn",
+ keywords: ["postal_horn", "POSTAL HORN"],
+ category: "objects",
+ lib: {
+ name: "POSTAL HORN",
+ unified: "1F4EF",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f4ef.png",
+ sheet_x: 29,
+ sheet_y: 10,
+ short_name: "postal_horn",
+ short_names: ["postal_horn"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "sound",
+ sort_order: 1176,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ bell: {
+ char: "🔔",
+ key: "bell",
+ keywords: ["bell", "BELL"],
+ category: "objects",
+ lib: {
+ name: "BELL",
+ unified: "1F514",
+ non_qualified: null,
+ docomo: "E713",
+ au: "E512",
+ softbank: "E325",
+ google: "FE4F2",
+ image: "1f514.png",
+ sheet_x: 29,
+ sheet_y: 46,
+ short_name: "bell",
+ short_names: ["bell"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "sound",
+ sort_order: 1177,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ no_bell: {
+ char: "🔕",
+ key: "no_bell",
+ keywords: ["no_bell", "BELL WITH CANCELLATION STROKE"],
+ category: "objects",
+ lib: {
+ name: "BELL WITH CANCELLATION STROKE",
+ unified: "1F515",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f515.png",
+ sheet_x: 29,
+ sheet_y: 47,
+ short_name: "no_bell",
+ short_names: ["no_bell"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "sound",
+ sort_order: 1178,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ musical_score: {
+ char: "🎼",
+ key: "musical_score",
+ keywords: ["musical_score", "MUSICAL SCORE"],
+ category: "objects",
+ lib: {
+ name: "MUSICAL SCORE",
+ unified: "1F3BC",
+ non_qualified: null,
+ docomo: "E6FF",
+ au: "EACC",
+ softbank: null,
+ google: "FE81A",
+ image: "1f3bc.png",
+ sheet_x: 8,
+ sheet_y: 2,
+ short_name: "musical_score",
+ short_names: ["musical_score"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "music",
+ sort_order: 1179,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ musical_note: {
+ char: "🎵",
+ key: "musical_note",
+ keywords: ["musical_note", "MUSICAL NOTE"],
+ category: "objects",
+ lib: {
+ name: "MUSICAL NOTE",
+ unified: "1F3B5",
+ non_qualified: null,
+ docomo: "E6F6",
+ au: "E5BE",
+ softbank: "E03E",
+ google: "FE813",
+ image: "1f3b5.png",
+ sheet_x: 7,
+ sheet_y: 56,
+ short_name: "musical_note",
+ short_names: ["musical_note"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "music",
+ sort_order: 1180,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ notes: {
+ char: "🎶",
+ key: "notes",
+ keywords: ["notes", "MULTIPLE MUSICAL NOTES"],
+ category: "objects",
+ lib: {
+ name: "MULTIPLE MUSICAL NOTES",
+ unified: "1F3B6",
+ non_qualified: null,
+ docomo: "E6FF",
+ au: "E505",
+ softbank: "E326",
+ google: "FE814",
+ image: "1f3b6.png",
+ sheet_x: 7,
+ sheet_y: 57,
+ short_name: "notes",
+ short_names: ["notes"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "music",
+ sort_order: 1181,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ studio_microphone: {
+ char: "🎙️",
+ key: "studio_microphone",
+ keywords: ["studio_microphone", "STUDIO MICROPHONE"],
+ category: "objects",
+ lib: {
+ name: "STUDIO MICROPHONE",
+ unified: "1F399-FE0F",
+ non_qualified: "1F399",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f399-fe0f.png",
+ sheet_x: 7,
+ sheet_y: 30,
+ short_name: "studio_microphone",
+ short_names: ["studio_microphone"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "music",
+ sort_order: 1182,
+ added_in: "0.7",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ level_slider: {
+ char: "🎚️",
+ key: "level_slider",
+ keywords: ["level_slider", "LEVEL SLIDER"],
+ category: "objects",
+ lib: {
+ name: "LEVEL SLIDER",
+ unified: "1F39A-FE0F",
+ non_qualified: "1F39A",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f39a-fe0f.png",
+ sheet_x: 7,
+ sheet_y: 31,
+ short_name: "level_slider",
+ short_names: ["level_slider"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "music",
+ sort_order: 1183,
+ added_in: "0.7",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ control_knobs: {
+ char: "🎛️",
+ key: "control_knobs",
+ keywords: ["control_knobs", "CONTROL KNOBS"],
+ category: "objects",
+ lib: {
+ name: "CONTROL KNOBS",
+ unified: "1F39B-FE0F",
+ non_qualified: "1F39B",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f39b-fe0f.png",
+ sheet_x: 7,
+ sheet_y: 32,
+ short_name: "control_knobs",
+ short_names: ["control_knobs"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "music",
+ sort_order: 1184,
+ added_in: "0.7",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ microphone: {
+ char: "🎤",
+ key: "microphone",
+ keywords: ["microphone", "MICROPHONE"],
+ category: "objects",
+ lib: {
+ name: "MICROPHONE",
+ unified: "1F3A4",
+ non_qualified: null,
+ docomo: "E676",
+ au: "E503",
+ softbank: "E03C",
+ google: "FE800",
+ image: "1f3a4.png",
+ sheet_x: 7,
+ sheet_y: 39,
+ short_name: "microphone",
+ short_names: ["microphone"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "music",
+ sort_order: 1185,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ headphones: {
+ char: "🎧",
+ key: "headphones",
+ keywords: ["headphones", "HEADPHONE"],
+ category: "objects",
+ lib: {
+ name: "HEADPHONE",
+ unified: "1F3A7",
+ non_qualified: null,
+ docomo: "E67A",
+ au: "E508",
+ softbank: "E30A",
+ google: "FE803",
+ image: "1f3a7.png",
+ sheet_x: 7,
+ sheet_y: 42,
+ short_name: "headphones",
+ short_names: ["headphones"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "music",
+ sort_order: 1186,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ radio: {
+ char: "📻",
+ key: "radio",
+ keywords: ["radio", "RADIO"],
+ category: "objects",
+ lib: {
+ name: "RADIO",
+ unified: "1F4FB",
+ non_qualified: null,
+ docomo: null,
+ au: "E5B9",
+ softbank: "E128",
+ google: "FE81F",
+ image: "1f4fb.png",
+ sheet_x: 29,
+ sheet_y: 22,
+ short_name: "radio",
+ short_names: ["radio"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "music",
+ sort_order: 1187,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ saxophone: {
+ char: "🎷",
+ key: "saxophone",
+ keywords: ["saxophone", "SAXOPHONE"],
+ category: "objects",
+ lib: {
+ name: "SAXOPHONE",
+ unified: "1F3B7",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: "E040",
+ google: "FE815",
+ image: "1f3b7.png",
+ sheet_x: 7,
+ sheet_y: 58,
+ short_name: "saxophone",
+ short_names: ["saxophone"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "musical-instrument",
+ sort_order: 1188,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ accordion: {
+ char: "🪗",
+ key: "accordion",
+ keywords: ["accordion", "ACCORDION"],
+ category: "objects",
+ lib: {
+ name: "ACCORDION",
+ unified: "1FA97",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1fa97.png",
+ sheet_x: 54,
+ sheet_y: 16,
+ short_name: "accordion",
+ short_names: ["accordion"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "musical-instrument",
+ sort_order: 1189,
+ added_in: "13.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ guitar: {
+ char: "🎸",
+ key: "guitar",
+ keywords: ["guitar", "GUITAR"],
+ category: "objects",
+ lib: {
+ name: "GUITAR",
+ unified: "1F3B8",
+ non_qualified: null,
+ docomo: null,
+ au: "E506",
+ softbank: "E041",
+ google: "FE816",
+ image: "1f3b8.png",
+ sheet_x: 7,
+ sheet_y: 59,
+ short_name: "guitar",
+ short_names: ["guitar"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "musical-instrument",
+ sort_order: 1190,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ musical_keyboard: {
+ char: "🎹",
+ key: "musical_keyboard",
+ keywords: ["musical_keyboard", "MUSICAL KEYBOARD"],
+ category: "objects",
+ lib: {
+ name: "MUSICAL KEYBOARD",
+ unified: "1F3B9",
+ non_qualified: null,
+ docomo: null,
+ au: "EB40",
+ softbank: null,
+ google: "FE817",
+ image: "1f3b9.png",
+ sheet_x: 7,
+ sheet_y: 60,
+ short_name: "musical_keyboard",
+ short_names: ["musical_keyboard"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "musical-instrument",
+ sort_order: 1191,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ trumpet: {
+ char: "🎺",
+ key: "trumpet",
+ keywords: ["trumpet", "TRUMPET"],
+ category: "objects",
+ lib: {
+ name: "TRUMPET",
+ unified: "1F3BA",
+ non_qualified: null,
+ docomo: null,
+ au: "EADC",
+ softbank: "E042",
+ google: "FE818",
+ image: "1f3ba.png",
+ sheet_x: 8,
+ sheet_y: 0,
+ short_name: "trumpet",
+ short_names: ["trumpet"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "musical-instrument",
+ sort_order: 1192,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ violin: {
+ char: "🎻",
+ key: "violin",
+ keywords: ["violin", "VIOLIN"],
+ category: "objects",
+ lib: {
+ name: "VIOLIN",
+ unified: "1F3BB",
+ non_qualified: null,
+ docomo: null,
+ au: "E507",
+ softbank: null,
+ google: "FE819",
+ image: "1f3bb.png",
+ sheet_x: 8,
+ sheet_y: 1,
+ short_name: "violin",
+ short_names: ["violin"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "musical-instrument",
+ sort_order: 1193,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ banjo: {
+ char: "🪕",
+ key: "banjo",
+ keywords: ["banjo", "BANJO"],
+ category: "objects",
+ lib: {
+ name: "BANJO",
+ unified: "1FA95",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1fa95.png",
+ sheet_x: 54,
+ sheet_y: 14,
+ short_name: "banjo",
+ short_names: ["banjo"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "musical-instrument",
+ sort_order: 1194,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ drum_with_drumsticks: {
+ char: "🥁",
+ key: "drum_with_drumsticks",
+ keywords: ["drum_with_drumsticks", "DRUM WITH DRUMSTICKS"],
+ category: "objects",
+ lib: {
+ name: "DRUM WITH DRUMSTICKS",
+ unified: "1F941",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f941.png",
+ sheet_x: 43,
+ sheet_y: 14,
+ short_name: "drum_with_drumsticks",
+ short_names: ["drum_with_drumsticks"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "musical-instrument",
+ sort_order: 1195,
+ added_in: "3.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ long_drum: {
+ char: "🪘",
+ key: "long_drum",
+ keywords: ["long_drum", "LONG DRUM"],
+ category: "objects",
+ lib: {
+ name: "LONG DRUM",
+ unified: "1FA98",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1fa98.png",
+ sheet_x: 54,
+ sheet_y: 17,
+ short_name: "long_drum",
+ short_names: ["long_drum"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "musical-instrument",
+ sort_order: 1196,
+ added_in: "13.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ maracas: {
+ char: "🪇",
+ key: "maracas",
+ keywords: ["maracas", "MARACAS"],
+ category: "objects",
+ lib: {
+ name: "MARACAS",
+ unified: "1FA87",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1fa87.png",
+ sheet_x: 54,
+ sheet_y: 7,
+ short_name: "maracas",
+ short_names: ["maracas"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "musical-instrument",
+ sort_order: 1197,
+ added_in: "15.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: false,
+ has_img_facebook: false,
+ },
+ },
+ flute: {
+ char: "🪈",
+ key: "flute",
+ keywords: ["flute", "FLUTE"],
+ category: "objects",
+ lib: {
+ name: "FLUTE",
+ unified: "1FA88",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1fa88.png",
+ sheet_x: 54,
+ sheet_y: 8,
+ short_name: "flute",
+ short_names: ["flute"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "musical-instrument",
+ sort_order: 1198,
+ added_in: "15.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: false,
+ has_img_facebook: false,
+ },
+ },
+ iphone: {
+ char: "📱",
+ key: "iphone",
+ keywords: ["iphone", "MOBILE PHONE"],
+ category: "objects",
+ lib: {
+ name: "MOBILE PHONE",
+ unified: "1F4F1",
+ non_qualified: null,
+ docomo: "E688",
+ au: "E588",
+ softbank: "E00A",
+ google: "FE525",
+ image: "1f4f1.png",
+ sheet_x: 29,
+ sheet_y: 12,
+ short_name: "iphone",
+ short_names: ["iphone"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "phone",
+ sort_order: 1199,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ calling: {
+ char: "📲",
+ key: "calling",
+ keywords: ["calling", "MOBILE PHONE WITH RIGHTWARDS ARROW AT LEFT"],
+ category: "objects",
+ lib: {
+ name: "MOBILE PHONE WITH RIGHTWARDS ARROW AT LEFT",
+ unified: "1F4F2",
+ non_qualified: null,
+ docomo: "E6CE",
+ au: "EB08",
+ softbank: "E104",
+ google: "FE526",
+ image: "1f4f2.png",
+ sheet_x: 29,
+ sheet_y: 13,
+ short_name: "calling",
+ short_names: ["calling"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "phone",
+ sort_order: 1200,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ phone: {
+ char: "☎️",
+ key: "phone",
+ keywords: ["phone", "BLACK TELEPHONE"],
+ category: "objects",
+ lib: {
+ name: "BLACK TELEPHONE",
+ unified: "260E-FE0F",
+ non_qualified: "260E",
+ docomo: "E687",
+ au: "E596",
+ softbank: "E009",
+ google: "FE523",
+ image: "260e-fe0f.png",
+ sheet_x: 57,
+ sheet_y: 15,
+ short_name: "phone",
+ short_names: ["phone", "telephone"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "phone",
+ sort_order: 1201,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ telephone_receiver: {
+ char: "📞",
+ key: "telephone_receiver",
+ keywords: ["telephone_receiver", "TELEPHONE RECEIVER"],
+ category: "objects",
+ lib: {
+ name: "TELEPHONE RECEIVER",
+ unified: "1F4DE",
+ non_qualified: null,
+ docomo: "E687",
+ au: "E51E",
+ softbank: null,
+ google: "FE524",
+ image: "1f4de.png",
+ sheet_x: 28,
+ sheet_y: 54,
+ short_name: "telephone_receiver",
+ short_names: ["telephone_receiver"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "phone",
+ sort_order: 1202,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ pager: {
+ char: "📟",
+ key: "pager",
+ keywords: ["pager", "PAGER"],
+ category: "objects",
+ lib: {
+ name: "PAGER",
+ unified: "1F4DF",
+ non_qualified: null,
+ docomo: "E65A",
+ au: "E59B",
+ softbank: null,
+ google: "FE522",
+ image: "1f4df.png",
+ sheet_x: 28,
+ sheet_y: 55,
+ short_name: "pager",
+ short_names: ["pager"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "phone",
+ sort_order: 1203,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ fax: {
+ char: "📠",
+ key: "fax",
+ keywords: ["fax", "FAX MACHINE"],
+ category: "objects",
+ lib: {
+ name: "FAX MACHINE",
+ unified: "1F4E0",
+ non_qualified: null,
+ docomo: "E6D0",
+ au: "E520",
+ softbank: "E00B",
+ google: "FE528",
+ image: "1f4e0.png",
+ sheet_x: 28,
+ sheet_y: 56,
+ short_name: "fax",
+ short_names: ["fax"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "phone",
+ sort_order: 1204,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ battery: {
+ char: "🔋",
+ key: "battery",
+ keywords: ["battery", "BATTERY"],
+ category: "objects",
+ lib: {
+ name: "BATTERY",
+ unified: "1F50B",
+ non_qualified: null,
+ docomo: null,
+ au: "E584",
+ softbank: null,
+ google: "FE4FC",
+ image: "1f50b.png",
+ sheet_x: 29,
+ sheet_y: 37,
+ short_name: "battery",
+ short_names: ["battery"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "computer",
+ sort_order: 1205,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ low_battery: {
+ char: "🪫",
+ key: "low_battery",
+ keywords: ["low_battery", "LOW BATTERY"],
+ category: "objects",
+ lib: {
+ name: "LOW BATTERY",
+ unified: "1FAAB",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1faab.png",
+ sheet_x: 54,
+ sheet_y: 36,
+ short_name: "low_battery",
+ short_names: ["low_battery"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "computer",
+ sort_order: 1206,
+ added_in: "14.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ electric_plug: {
+ char: "🔌",
+ key: "electric_plug",
+ keywords: ["electric_plug", "ELECTRIC PLUG"],
+ category: "objects",
+ lib: {
+ name: "ELECTRIC PLUG",
+ unified: "1F50C",
+ non_qualified: null,
+ docomo: null,
+ au: "E589",
+ softbank: null,
+ google: "FE4FE",
+ image: "1f50c.png",
+ sheet_x: 29,
+ sheet_y: 38,
+ short_name: "electric_plug",
+ short_names: ["electric_plug"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "computer",
+ sort_order: 1207,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ computer: {
+ char: "💻",
+ key: "computer",
+ keywords: ["computer", "PERSONAL COMPUTER"],
+ category: "objects",
+ lib: {
+ name: "PERSONAL COMPUTER",
+ unified: "1F4BB",
+ non_qualified: null,
+ docomo: "E716",
+ au: "E5B8",
+ softbank: "E00C",
+ google: "FE538",
+ image: "1f4bb.png",
+ sheet_x: 28,
+ sheet_y: 19,
+ short_name: "computer",
+ short_names: ["computer"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "computer",
+ sort_order: 1208,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ desktop_computer: {
+ char: "🖥️",
+ key: "desktop_computer",
+ keywords: ["desktop_computer", "DESKTOP COMPUTER"],
+ category: "objects",
+ lib: {
+ name: "DESKTOP COMPUTER",
+ unified: "1F5A5-FE0F",
+ non_qualified: "1F5A5",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f5a5-fe0f.png",
+ sheet_x: 31,
+ sheet_y: 57,
+ short_name: "desktop_computer",
+ short_names: ["desktop_computer"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "computer",
+ sort_order: 1209,
+ added_in: "0.7",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ printer: {
+ char: "🖨️",
+ key: "printer",
+ keywords: ["printer", "PRINTER"],
+ category: "objects",
+ lib: {
+ name: "PRINTER",
+ unified: "1F5A8-FE0F",
+ non_qualified: "1F5A8",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f5a8-fe0f.png",
+ sheet_x: 31,
+ sheet_y: 58,
+ short_name: "printer",
+ short_names: ["printer"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "computer",
+ sort_order: 1210,
+ added_in: "0.7",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ keyboard: {
+ char: "⌨️",
+ key: "keyboard",
+ keywords: ["keyboard", "KEYBOARD"],
+ category: "objects",
+ lib: {
+ name: "KEYBOARD",
+ unified: "2328-FE0F",
+ non_qualified: "2328",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "2328-fe0f.png",
+ sheet_x: 56,
+ sheet_y: 46,
+ short_name: "keyboard",
+ short_names: ["keyboard"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "computer",
+ sort_order: 1211,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ three_button_mouse: {
+ char: "🖱️",
+ key: "three_button_mouse",
+ keywords: ["three_button_mouse", "COMPUTER MOUSE"],
+ category: "objects",
+ lib: {
+ name: "COMPUTER MOUSE",
+ unified: "1F5B1-FE0F",
+ non_qualified: "1F5B1",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f5b1-fe0f.png",
+ sheet_x: 31,
+ sheet_y: 59,
+ short_name: "three_button_mouse",
+ short_names: ["three_button_mouse"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "computer",
+ sort_order: 1212,
+ added_in: "0.7",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ trackball: {
+ char: "🖲️",
+ key: "trackball",
+ keywords: ["trackball", "TRACKBALL"],
+ category: "objects",
+ lib: {
+ name: "TRACKBALL",
+ unified: "1F5B2-FE0F",
+ non_qualified: "1F5B2",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f5b2-fe0f.png",
+ sheet_x: 31,
+ sheet_y: 60,
+ short_name: "trackball",
+ short_names: ["trackball"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "computer",
+ sort_order: 1213,
+ added_in: "0.7",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ minidisc: {
+ char: "💽",
+ key: "minidisc",
+ keywords: ["minidisc", "MINIDISC"],
+ category: "objects",
+ lib: {
+ name: "MINIDISC",
+ unified: "1F4BD",
+ non_qualified: null,
+ docomo: null,
+ au: "E582",
+ softbank: "E316",
+ google: "FE53C",
+ image: "1f4bd.png",
+ sheet_x: 28,
+ sheet_y: 21,
+ short_name: "minidisc",
+ short_names: ["minidisc"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "computer",
+ sort_order: 1214,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ floppy_disk: {
+ char: "💾",
+ key: "floppy_disk",
+ keywords: ["floppy_disk", "FLOPPY DISK"],
+ category: "objects",
+ lib: {
+ name: "FLOPPY DISK",
+ unified: "1F4BE",
+ non_qualified: null,
+ docomo: null,
+ au: "E562",
+ softbank: null,
+ google: "FE53D",
+ image: "1f4be.png",
+ sheet_x: 28,
+ sheet_y: 22,
+ short_name: "floppy_disk",
+ short_names: ["floppy_disk"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "computer",
+ sort_order: 1215,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ cd: {
+ char: "💿",
+ key: "cd",
+ keywords: ["cd", "OPTICAL DISC"],
+ category: "objects",
+ lib: {
+ name: "OPTICAL DISC",
+ unified: "1F4BF",
+ non_qualified: null,
+ docomo: "E68C",
+ au: "E50C",
+ softbank: "E126",
+ google: "FE81D",
+ image: "1f4bf.png",
+ sheet_x: 28,
+ sheet_y: 23,
+ short_name: "cd",
+ short_names: ["cd"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "computer",
+ sort_order: 1216,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ dvd: {
+ char: "📀",
+ key: "dvd",
+ keywords: ["dvd", "DVD"],
+ category: "objects",
+ lib: {
+ name: "DVD",
+ unified: "1F4C0",
+ non_qualified: null,
+ docomo: "E68C",
+ au: "E50C",
+ softbank: "E127",
+ google: "FE81E",
+ image: "1f4c0.png",
+ sheet_x: 28,
+ sheet_y: 24,
+ short_name: "dvd",
+ short_names: ["dvd"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "computer",
+ sort_order: 1217,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ abacus: {
+ char: "🧮",
+ key: "abacus",
+ keywords: ["abacus", "ABACUS"],
+ category: "objects",
+ lib: {
+ name: "ABACUS",
+ unified: "1F9EE",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f9ee.png",
+ sheet_x: 53,
+ sheet_y: 30,
+ short_name: "abacus",
+ short_names: ["abacus"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "computer",
+ sort_order: 1218,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ movie_camera: {
+ char: "🎥",
+ key: "movie_camera",
+ keywords: ["movie_camera", "MOVIE CAMERA"],
+ category: "objects",
+ lib: {
+ name: "MOVIE CAMERA",
+ unified: "1F3A5",
+ non_qualified: null,
+ docomo: "E677",
+ au: "E517",
+ softbank: "E03D",
+ google: "FE801",
+ image: "1f3a5.png",
+ sheet_x: 7,
+ sheet_y: 40,
+ short_name: "movie_camera",
+ short_names: ["movie_camera"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "light & video",
+ sort_order: 1219,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ film_frames: {
+ char: "🎞️",
+ key: "film_frames",
+ keywords: ["film_frames", "FILM FRAMES"],
+ category: "objects",
+ lib: {
+ name: "FILM FRAMES",
+ unified: "1F39E-FE0F",
+ non_qualified: "1F39E",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f39e-fe0f.png",
+ sheet_x: 7,
+ sheet_y: 33,
+ short_name: "film_frames",
+ short_names: ["film_frames"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "light & video",
+ sort_order: 1220,
+ added_in: "0.7",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ film_projector: {
+ char: "📽️",
+ key: "film_projector",
+ keywords: ["film_projector", "FILM PROJECTOR"],
+ category: "objects",
+ lib: {
+ name: "FILM PROJECTOR",
+ unified: "1F4FD-FE0F",
+ non_qualified: "1F4FD",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f4fd-fe0f.png",
+ sheet_x: 29,
+ sheet_y: 24,
+ short_name: "film_projector",
+ short_names: ["film_projector"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "light & video",
+ sort_order: 1221,
+ added_in: "0.7",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ clapper: {
+ char: "🎬",
+ key: "clapper",
+ keywords: ["clapper", "CLAPPER BOARD"],
+ category: "objects",
+ lib: {
+ name: "CLAPPER BOARD",
+ unified: "1F3AC",
+ non_qualified: null,
+ docomo: "E6AC",
+ au: "E4BE",
+ softbank: "E324",
+ google: "FE808",
+ image: "1f3ac.png",
+ sheet_x: 7,
+ sheet_y: 47,
+ short_name: "clapper",
+ short_names: ["clapper"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "light & video",
+ sort_order: 1222,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ tv: {
+ char: "📺",
+ key: "tv",
+ keywords: ["tv", "TELEVISION"],
+ category: "objects",
+ lib: {
+ name: "TELEVISION",
+ unified: "1F4FA",
+ non_qualified: null,
+ docomo: "E68A",
+ au: "E502",
+ softbank: "E12A",
+ google: "FE81C",
+ image: "1f4fa.png",
+ sheet_x: 29,
+ sheet_y: 21,
+ short_name: "tv",
+ short_names: ["tv"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "light & video",
+ sort_order: 1223,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ camera: {
+ char: "📷",
+ key: "camera",
+ keywords: ["camera", "CAMERA"],
+ category: "objects",
+ lib: {
+ name: "CAMERA",
+ unified: "1F4F7",
+ non_qualified: null,
+ docomo: "E681",
+ au: "E515",
+ softbank: "E008",
+ google: "FE4EF",
+ image: "1f4f7.png",
+ sheet_x: 29,
+ sheet_y: 18,
+ short_name: "camera",
+ short_names: ["camera"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "light & video",
+ sort_order: 1224,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ camera_with_flash: {
+ char: "📸",
+ key: "camera_with_flash",
+ keywords: ["camera_with_flash", "CAMERA WITH FLASH"],
+ category: "objects",
+ lib: {
+ name: "CAMERA WITH FLASH",
+ unified: "1F4F8",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f4f8.png",
+ sheet_x: 29,
+ sheet_y: 19,
+ short_name: "camera_with_flash",
+ short_names: ["camera_with_flash"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "light & video",
+ sort_order: 1225,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ video_camera: {
+ char: "📹",
+ key: "video_camera",
+ keywords: ["video_camera", "VIDEO CAMERA"],
+ category: "objects",
+ lib: {
+ name: "VIDEO CAMERA",
+ unified: "1F4F9",
+ non_qualified: null,
+ docomo: "E677",
+ au: "E57E",
+ softbank: null,
+ google: "FE4F9",
+ image: "1f4f9.png",
+ sheet_x: 29,
+ sheet_y: 20,
+ short_name: "video_camera",
+ short_names: ["video_camera"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "light & video",
+ sort_order: 1226,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ vhs: {
+ char: "📼",
+ key: "vhs",
+ keywords: ["vhs", "VIDEOCASSETTE"],
+ category: "objects",
+ lib: {
+ name: "VIDEOCASSETTE",
+ unified: "1F4FC",
+ non_qualified: null,
+ docomo: null,
+ au: "E580",
+ softbank: "E129",
+ google: "FE820",
+ image: "1f4fc.png",
+ sheet_x: 29,
+ sheet_y: 23,
+ short_name: "vhs",
+ short_names: ["vhs"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "light & video",
+ sort_order: 1227,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ mag: {
+ char: "🔍",
+ key: "mag",
+ keywords: ["mag", "LEFT-POINTING MAGNIFYING GLASS"],
+ category: "objects",
+ lib: {
+ name: "LEFT-POINTING MAGNIFYING GLASS",
+ unified: "1F50D",
+ non_qualified: null,
+ docomo: "E6DC",
+ au: "E518",
+ softbank: "E114",
+ google: "FEB85",
+ image: "1f50d.png",
+ sheet_x: 29,
+ sheet_y: 39,
+ short_name: "mag",
+ short_names: ["mag"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "light & video",
+ sort_order: 1228,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ mag_right: {
+ char: "🔎",
+ key: "mag_right",
+ keywords: ["mag_right", "RIGHT-POINTING MAGNIFYING GLASS"],
+ category: "objects",
+ lib: {
+ name: "RIGHT-POINTING MAGNIFYING GLASS",
+ unified: "1F50E",
+ non_qualified: null,
+ docomo: "E6DC",
+ au: "EB05",
+ softbank: null,
+ google: "FEB8D",
+ image: "1f50e.png",
+ sheet_x: 29,
+ sheet_y: 40,
+ short_name: "mag_right",
+ short_names: ["mag_right"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "light & video",
+ sort_order: 1229,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ candle: {
+ char: "🕯️",
+ key: "candle",
+ keywords: ["candle", "CANDLE"],
+ category: "objects",
+ lib: {
+ name: "CANDLE",
+ unified: "1F56F-FE0F",
+ non_qualified: "1F56F",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f56f-fe0f.png",
+ sheet_x: 30,
+ sheet_y: 57,
+ short_name: "candle",
+ short_names: ["candle"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "light & video",
+ sort_order: 1230,
+ added_in: "0.7",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ bulb: {
+ char: "💡",
+ key: "bulb",
+ keywords: ["bulb", "ELECTRIC LIGHT BULB"],
+ category: "objects",
+ lib: {
+ name: "ELECTRIC LIGHT BULB",
+ unified: "1F4A1",
+ non_qualified: null,
+ docomo: "E6FB",
+ au: "E476",
+ softbank: "E10F",
+ google: "FEB56",
+ image: "1f4a1.png",
+ sheet_x: 27,
+ sheet_y: 49,
+ short_name: "bulb",
+ short_names: ["bulb"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "light & video",
+ sort_order: 1231,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ flashlight: {
+ char: "🔦",
+ key: "flashlight",
+ keywords: ["flashlight", "ELECTRIC TORCH"],
+ category: "objects",
+ lib: {
+ name: "ELECTRIC TORCH",
+ unified: "1F526",
+ non_qualified: null,
+ docomo: "E6FB",
+ au: "E583",
+ softbank: null,
+ google: "FE4FB",
+ image: "1f526.png",
+ sheet_x: 30,
+ sheet_y: 3,
+ short_name: "flashlight",
+ short_names: ["flashlight"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "light & video",
+ sort_order: 1232,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ izakaya_lantern: {
+ char: "🏮",
+ key: "izakaya_lantern",
+ keywords: ["izakaya_lantern", "IZAKAYA LANTERN"],
+ category: "objects",
+ lib: {
+ name: "IZAKAYA LANTERN",
+ unified: "1F3EE",
+ non_qualified: null,
+ docomo: "E74B",
+ au: "E4BD",
+ softbank: null,
+ google: "FE4C2",
+ image: "1f3ee.png",
+ sheet_x: 10,
+ sheet_y: 25,
+ short_name: "izakaya_lantern",
+ short_names: ["izakaya_lantern", "lantern"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "light & video",
+ sort_order: 1233,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ diya_lamp: {
+ char: "🪔",
+ key: "diya_lamp",
+ keywords: ["diya_lamp", "DIYA LAMP"],
+ category: "objects",
+ lib: {
+ name: "DIYA LAMP",
+ unified: "1FA94",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1fa94.png",
+ sheet_x: 54,
+ sheet_y: 13,
+ short_name: "diya_lamp",
+ short_names: ["diya_lamp"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "light & video",
+ sort_order: 1234,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ notebook_with_decorative_cover: {
+ char: "📔",
+ key: "notebook_with_decorative_cover",
+ keywords: [
+ "notebook_with_decorative_cover",
+ "NOTEBOOK WITH DECORATIVE COVER",
+ ],
+ category: "objects",
+ lib: {
+ name: "NOTEBOOK WITH DECORATIVE COVER",
+ unified: "1F4D4",
+ non_qualified: null,
+ docomo: "E683",
+ au: "E49D",
+ softbank: null,
+ google: "FE547",
+ image: "1f4d4.png",
+ sheet_x: 28,
+ sheet_y: 44,
+ short_name: "notebook_with_decorative_cover",
+ short_names: ["notebook_with_decorative_cover"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "book-paper",
+ sort_order: 1235,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ closed_book: {
+ char: "📕",
+ key: "closed_book",
+ keywords: ["closed_book", "CLOSED BOOK"],
+ category: "objects",
+ lib: {
+ name: "CLOSED BOOK",
+ unified: "1F4D5",
+ non_qualified: null,
+ docomo: "E683",
+ au: "E568",
+ softbank: null,
+ google: "FE502",
+ image: "1f4d5.png",
+ sheet_x: 28,
+ sheet_y: 45,
+ short_name: "closed_book",
+ short_names: ["closed_book"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "book-paper",
+ sort_order: 1236,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ book: {
+ char: "📖",
+ key: "book",
+ keywords: ["book", "OPEN BOOK"],
+ category: "objects",
+ lib: {
+ name: "OPEN BOOK",
+ unified: "1F4D6",
+ non_qualified: null,
+ docomo: "E683",
+ au: "E49F",
+ softbank: "E148",
+ google: "FE546",
+ image: "1f4d6.png",
+ sheet_x: 28,
+ sheet_y: 46,
+ short_name: "book",
+ short_names: ["book", "open_book"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "book-paper",
+ sort_order: 1237,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ green_book: {
+ char: "📗",
+ key: "green_book",
+ keywords: ["green_book", "GREEN BOOK"],
+ category: "objects",
+ lib: {
+ name: "GREEN BOOK",
+ unified: "1F4D7",
+ non_qualified: null,
+ docomo: "E683",
+ au: "E565",
+ softbank: null,
+ google: "FE4FF",
+ image: "1f4d7.png",
+ sheet_x: 28,
+ sheet_y: 47,
+ short_name: "green_book",
+ short_names: ["green_book"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "book-paper",
+ sort_order: 1238,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ blue_book: {
+ char: "📘",
+ key: "blue_book",
+ keywords: ["blue_book", "BLUE BOOK"],
+ category: "objects",
+ lib: {
+ name: "BLUE BOOK",
+ unified: "1F4D8",
+ non_qualified: null,
+ docomo: "E683",
+ au: "E566",
+ softbank: null,
+ google: "FE500",
+ image: "1f4d8.png",
+ sheet_x: 28,
+ sheet_y: 48,
+ short_name: "blue_book",
+ short_names: ["blue_book"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "book-paper",
+ sort_order: 1239,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ orange_book: {
+ char: "📙",
+ key: "orange_book",
+ keywords: ["orange_book", "ORANGE BOOK"],
+ category: "objects",
+ lib: {
+ name: "ORANGE BOOK",
+ unified: "1F4D9",
+ non_qualified: null,
+ docomo: "E683",
+ au: "E567",
+ softbank: null,
+ google: "FE501",
+ image: "1f4d9.png",
+ sheet_x: 28,
+ sheet_y: 49,
+ short_name: "orange_book",
+ short_names: ["orange_book"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "book-paper",
+ sort_order: 1240,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ books: {
+ char: "📚",
+ key: "books",
+ keywords: ["books", "BOOKS"],
+ category: "objects",
+ lib: {
+ name: "BOOKS",
+ unified: "1F4DA",
+ non_qualified: null,
+ docomo: "E683",
+ au: "E56F",
+ softbank: null,
+ google: "FE503",
+ image: "1f4da.png",
+ sheet_x: 28,
+ sheet_y: 50,
+ short_name: "books",
+ short_names: ["books"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "book-paper",
+ sort_order: 1241,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ notebook: {
+ char: "📓",
+ key: "notebook",
+ keywords: ["notebook", "NOTEBOOK"],
+ category: "objects",
+ lib: {
+ name: "NOTEBOOK",
+ unified: "1F4D3",
+ non_qualified: null,
+ docomo: "E683",
+ au: "E56B",
+ softbank: null,
+ google: "FE545",
+ image: "1f4d3.png",
+ sheet_x: 28,
+ sheet_y: 43,
+ short_name: "notebook",
+ short_names: ["notebook"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "book-paper",
+ sort_order: 1242,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ ledger: {
+ char: "📒",
+ key: "ledger",
+ keywords: ["ledger", "LEDGER"],
+ category: "objects",
+ lib: {
+ name: "LEDGER",
+ unified: "1F4D2",
+ non_qualified: null,
+ docomo: "E683",
+ au: "E56E",
+ softbank: null,
+ google: "FE54F",
+ image: "1f4d2.png",
+ sheet_x: 28,
+ sheet_y: 42,
+ short_name: "ledger",
+ short_names: ["ledger"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "book-paper",
+ sort_order: 1243,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ page_with_curl: {
+ char: "📃",
+ key: "page_with_curl",
+ keywords: ["page_with_curl", "PAGE WITH CURL"],
+ category: "objects",
+ lib: {
+ name: "PAGE WITH CURL",
+ unified: "1F4C3",
+ non_qualified: null,
+ docomo: "E689",
+ au: "E561",
+ softbank: null,
+ google: "FE540",
+ image: "1f4c3.png",
+ sheet_x: 28,
+ sheet_y: 27,
+ short_name: "page_with_curl",
+ short_names: ["page_with_curl"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "book-paper",
+ sort_order: 1244,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ scroll: {
+ char: "📜",
+ key: "scroll",
+ keywords: ["scroll", "SCROLL"],
+ category: "objects",
+ lib: {
+ name: "SCROLL",
+ unified: "1F4DC",
+ non_qualified: null,
+ docomo: "E70A",
+ au: "E55F",
+ softbank: null,
+ google: "FE4FD",
+ image: "1f4dc.png",
+ sheet_x: 28,
+ sheet_y: 52,
+ short_name: "scroll",
+ short_names: ["scroll"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "book-paper",
+ sort_order: 1245,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ page_facing_up: {
+ char: "📄",
+ key: "page_facing_up",
+ keywords: ["page_facing_up", "PAGE FACING UP"],
+ category: "objects",
+ lib: {
+ name: "PAGE FACING UP",
+ unified: "1F4C4",
+ non_qualified: null,
+ docomo: "E689",
+ au: "E569",
+ softbank: null,
+ google: "FE541",
+ image: "1f4c4.png",
+ sheet_x: 28,
+ sheet_y: 28,
+ short_name: "page_facing_up",
+ short_names: ["page_facing_up"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "book-paper",
+ sort_order: 1246,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ newspaper: {
+ char: "📰",
+ key: "newspaper",
+ keywords: ["newspaper", "NEWSPAPER"],
+ category: "objects",
+ lib: {
+ name: "NEWSPAPER",
+ unified: "1F4F0",
+ non_qualified: null,
+ docomo: null,
+ au: "E58B",
+ softbank: null,
+ google: "FE822",
+ image: "1f4f0.png",
+ sheet_x: 29,
+ sheet_y: 11,
+ short_name: "newspaper",
+ short_names: ["newspaper"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "book-paper",
+ sort_order: 1247,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ rolled_up_newspaper: {
+ char: "🗞️",
+ key: "rolled_up_newspaper",
+ keywords: ["rolled_up_newspaper", "ROLLED-UP NEWSPAPER"],
+ category: "objects",
+ lib: {
+ name: "ROLLED-UP NEWSPAPER",
+ unified: "1F5DE-FE0F",
+ non_qualified: "1F5DE",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f5de-fe0f.png",
+ sheet_x: 32,
+ sheet_y: 9,
+ short_name: "rolled_up_newspaper",
+ short_names: ["rolled_up_newspaper"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "book-paper",
+ sort_order: 1248,
+ added_in: "0.7",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ bookmark_tabs: {
+ char: "📑",
+ key: "bookmark_tabs",
+ keywords: ["bookmark_tabs", "BOOKMARK TABS"],
+ category: "objects",
+ lib: {
+ name: "BOOKMARK TABS",
+ unified: "1F4D1",
+ non_qualified: null,
+ docomo: "E689",
+ au: "EB0B",
+ softbank: null,
+ google: "FE552",
+ image: "1f4d1.png",
+ sheet_x: 28,
+ sheet_y: 41,
+ short_name: "bookmark_tabs",
+ short_names: ["bookmark_tabs"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "book-paper",
+ sort_order: 1249,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ bookmark: {
+ char: "🔖",
+ key: "bookmark",
+ keywords: ["bookmark", "BOOKMARK"],
+ category: "objects",
+ lib: {
+ name: "BOOKMARK",
+ unified: "1F516",
+ non_qualified: null,
+ docomo: null,
+ au: "EB07",
+ softbank: null,
+ google: "FEB8F",
+ image: "1f516.png",
+ sheet_x: 29,
+ sheet_y: 48,
+ short_name: "bookmark",
+ short_names: ["bookmark"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "book-paper",
+ sort_order: 1250,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ label: {
+ char: "🏷️",
+ key: "label",
+ keywords: ["label", "LABEL"],
+ category: "objects",
+ lib: {
+ name: "LABEL",
+ unified: "1F3F7-FE0F",
+ non_qualified: "1F3F7",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f3f7-fe0f.png",
+ sheet_x: 10,
+ sheet_y: 37,
+ short_name: "label",
+ short_names: ["label"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "book-paper",
+ sort_order: 1251,
+ added_in: "0.7",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ moneybag: {
+ char: "💰",
+ key: "moneybag",
+ keywords: ["moneybag", "MONEY BAG"],
+ category: "objects",
+ lib: {
+ name: "MONEY BAG",
+ unified: "1F4B0",
+ non_qualified: null,
+ docomo: "E715",
+ au: "E4C7",
+ softbank: "E12F",
+ google: "FE4DD",
+ image: "1f4b0.png",
+ sheet_x: 28,
+ sheet_y: 8,
+ short_name: "moneybag",
+ short_names: ["moneybag"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "money",
+ sort_order: 1252,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ coin: {
+ char: "🪙",
+ key: "coin",
+ keywords: ["coin", "COIN"],
+ category: "objects",
+ lib: {
+ name: "COIN",
+ unified: "1FA99",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1fa99.png",
+ sheet_x: 54,
+ sheet_y: 18,
+ short_name: "coin",
+ short_names: ["coin"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "money",
+ sort_order: 1253,
+ added_in: "13.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ yen: {
+ char: "💴",
+ key: "yen",
+ keywords: ["yen", "BANKNOTE WITH YEN SIGN"],
+ category: "objects",
+ lib: {
+ name: "BANKNOTE WITH YEN SIGN",
+ unified: "1F4B4",
+ non_qualified: null,
+ docomo: "E6D6",
+ au: "E57D",
+ softbank: null,
+ google: "FE4E2",
+ image: "1f4b4.png",
+ sheet_x: 28,
+ sheet_y: 12,
+ short_name: "yen",
+ short_names: ["yen"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "money",
+ sort_order: 1254,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ dollar: {
+ char: "💵",
+ key: "dollar",
+ keywords: ["dollar", "BANKNOTE WITH DOLLAR SIGN"],
+ category: "objects",
+ lib: {
+ name: "BANKNOTE WITH DOLLAR SIGN",
+ unified: "1F4B5",
+ non_qualified: null,
+ docomo: "E715",
+ au: "E585",
+ softbank: null,
+ google: "FE4E3",
+ image: "1f4b5.png",
+ sheet_x: 28,
+ sheet_y: 13,
+ short_name: "dollar",
+ short_names: ["dollar"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "money",
+ sort_order: 1255,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ euro: {
+ char: "💶",
+ key: "euro",
+ keywords: ["euro", "BANKNOTE WITH EURO SIGN"],
+ category: "objects",
+ lib: {
+ name: "BANKNOTE WITH EURO SIGN",
+ unified: "1F4B6",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f4b6.png",
+ sheet_x: 28,
+ sheet_y: 14,
+ short_name: "euro",
+ short_names: ["euro"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "money",
+ sort_order: 1256,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ pound: {
+ char: "💷",
+ key: "pound",
+ keywords: ["pound", "BANKNOTE WITH POUND SIGN"],
+ category: "objects",
+ lib: {
+ name: "BANKNOTE WITH POUND SIGN",
+ unified: "1F4B7",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f4b7.png",
+ sheet_x: 28,
+ sheet_y: 15,
+ short_name: "pound",
+ short_names: ["pound"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "money",
+ sort_order: 1257,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ money_with_wings: {
+ char: "💸",
+ key: "money_with_wings",
+ keywords: ["money_with_wings", "MONEY WITH WINGS"],
+ category: "objects",
+ lib: {
+ name: "MONEY WITH WINGS",
+ unified: "1F4B8",
+ non_qualified: null,
+ docomo: null,
+ au: "EB5B",
+ softbank: null,
+ google: "FE4E4",
+ image: "1f4b8.png",
+ sheet_x: 28,
+ sheet_y: 16,
+ short_name: "money_with_wings",
+ short_names: ["money_with_wings"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "money",
+ sort_order: 1258,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ credit_card: {
+ char: "💳",
+ key: "credit_card",
+ keywords: ["credit_card", "CREDIT CARD"],
+ category: "objects",
+ lib: {
+ name: "CREDIT CARD",
+ unified: "1F4B3",
+ non_qualified: null,
+ docomo: null,
+ au: "E57C",
+ softbank: null,
+ google: "FE4E1",
+ image: "1f4b3.png",
+ sheet_x: 28,
+ sheet_y: 11,
+ short_name: "credit_card",
+ short_names: ["credit_card"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "money",
+ sort_order: 1259,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ receipt: {
+ char: "🧾",
+ key: "receipt",
+ keywords: ["receipt", "RECEIPT"],
+ category: "objects",
+ lib: {
+ name: "RECEIPT",
+ unified: "1F9FE",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f9fe.png",
+ sheet_x: 53,
+ sheet_y: 46,
+ short_name: "receipt",
+ short_names: ["receipt"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "money",
+ sort_order: 1260,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ chart: {
+ char: "💹",
+ key: "chart",
+ keywords: ["chart", "CHART WITH UPWARDS TREND AND YEN SIGN"],
+ category: "objects",
+ lib: {
+ name: "CHART WITH UPWARDS TREND AND YEN SIGN",
+ unified: "1F4B9",
+ non_qualified: null,
+ docomo: null,
+ au: "E5DC",
+ softbank: "E14A",
+ google: "FE4DF",
+ image: "1f4b9.png",
+ sheet_x: 28,
+ sheet_y: 17,
+ short_name: "chart",
+ short_names: ["chart"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "money",
+ sort_order: 1261,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ email: {
+ char: "✉️",
+ key: "email",
+ keywords: ["email", "ENVELOPE"],
+ category: "objects",
+ lib: {
+ name: "ENVELOPE",
+ unified: "2709-FE0F",
+ non_qualified: "2709",
+ docomo: "E6D3",
+ au: "E521",
+ softbank: null,
+ google: "FE529",
+ image: "2709-fe0f.png",
+ sheet_x: 58,
+ sheet_y: 57,
+ short_name: "email",
+ short_names: ["email", "envelope"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "mail",
+ sort_order: 1262,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "e-mail": {
+ char: "📧",
+ key: "e-mail",
+ keywords: ["e-mail", "E-MAIL SYMBOL"],
+ category: "objects",
+ lib: {
+ name: "E-MAIL SYMBOL",
+ unified: "1F4E7",
+ non_qualified: null,
+ docomo: "E6D3",
+ au: "EB71",
+ softbank: null,
+ google: "FEB92",
+ image: "1f4e7.png",
+ sheet_x: 29,
+ sheet_y: 2,
+ short_name: "e-mail",
+ short_names: ["e-mail"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "mail",
+ sort_order: 1263,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ incoming_envelope: {
+ char: "📨",
+ key: "incoming_envelope",
+ keywords: ["incoming_envelope", "INCOMING ENVELOPE"],
+ category: "objects",
+ lib: {
+ name: "INCOMING ENVELOPE",
+ unified: "1F4E8",
+ non_qualified: null,
+ docomo: "E6CF",
+ au: "E591",
+ softbank: null,
+ google: "FE52A",
+ image: "1f4e8.png",
+ sheet_x: 29,
+ sheet_y: 3,
+ short_name: "incoming_envelope",
+ short_names: ["incoming_envelope"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "mail",
+ sort_order: 1264,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ envelope_with_arrow: {
+ char: "📩",
+ key: "envelope_with_arrow",
+ keywords: ["envelope_with_arrow", "ENVELOPE WITH DOWNWARDS ARROW ABOVE"],
+ category: "objects",
+ lib: {
+ name: "ENVELOPE WITH DOWNWARDS ARROW ABOVE",
+ unified: "1F4E9",
+ non_qualified: null,
+ docomo: "E6CF",
+ au: "EB62",
+ softbank: "E103",
+ google: "FE52B",
+ image: "1f4e9.png",
+ sheet_x: 29,
+ sheet_y: 4,
+ short_name: "envelope_with_arrow",
+ short_names: ["envelope_with_arrow"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "mail",
+ sort_order: 1265,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ outbox_tray: {
+ char: "📤",
+ key: "outbox_tray",
+ keywords: ["outbox_tray", "OUTBOX TRAY"],
+ category: "objects",
+ lib: {
+ name: "OUTBOX TRAY",
+ unified: "1F4E4",
+ non_qualified: null,
+ docomo: null,
+ au: "E592",
+ softbank: null,
+ google: "FE533",
+ image: "1f4e4.png",
+ sheet_x: 28,
+ sheet_y: 60,
+ short_name: "outbox_tray",
+ short_names: ["outbox_tray"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "mail",
+ sort_order: 1266,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ inbox_tray: {
+ char: "📥",
+ key: "inbox_tray",
+ keywords: ["inbox_tray", "INBOX TRAY"],
+ category: "objects",
+ lib: {
+ name: "INBOX TRAY",
+ unified: "1F4E5",
+ non_qualified: null,
+ docomo: null,
+ au: "E593",
+ softbank: null,
+ google: "FE534",
+ image: "1f4e5.png",
+ sheet_x: 29,
+ sheet_y: 0,
+ short_name: "inbox_tray",
+ short_names: ["inbox_tray"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "mail",
+ sort_order: 1267,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ package: {
+ char: "📦",
+ key: "package",
+ keywords: ["package", "PACKAGE"],
+ category: "objects",
+ lib: {
+ name: "PACKAGE",
+ unified: "1F4E6",
+ non_qualified: null,
+ docomo: "E685",
+ au: "E51F",
+ softbank: null,
+ google: "FE535",
+ image: "1f4e6.png",
+ sheet_x: 29,
+ sheet_y: 1,
+ short_name: "package",
+ short_names: ["package"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "mail",
+ sort_order: 1268,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ mailbox: {
+ char: "📫",
+ key: "mailbox",
+ keywords: ["mailbox", "CLOSED MAILBOX WITH RAISED FLAG"],
+ category: "objects",
+ lib: {
+ name: "CLOSED MAILBOX WITH RAISED FLAG",
+ unified: "1F4EB",
+ non_qualified: null,
+ docomo: "E665",
+ au: "EB0A",
+ softbank: "E101",
+ google: "FE52D",
+ image: "1f4eb.png",
+ sheet_x: 29,
+ sheet_y: 6,
+ short_name: "mailbox",
+ short_names: ["mailbox"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "mail",
+ sort_order: 1269,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ mailbox_closed: {
+ char: "📪",
+ key: "mailbox_closed",
+ keywords: ["mailbox_closed", "CLOSED MAILBOX WITH LOWERED FLAG"],
+ category: "objects",
+ lib: {
+ name: "CLOSED MAILBOX WITH LOWERED FLAG",
+ unified: "1F4EA",
+ non_qualified: null,
+ docomo: "E665",
+ au: "E51B",
+ softbank: null,
+ google: "FE52C",
+ image: "1f4ea.png",
+ sheet_x: 29,
+ sheet_y: 5,
+ short_name: "mailbox_closed",
+ short_names: ["mailbox_closed"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "mail",
+ sort_order: 1270,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ mailbox_with_mail: {
+ char: "📬",
+ key: "mailbox_with_mail",
+ keywords: ["mailbox_with_mail", "OPEN MAILBOX WITH RAISED FLAG"],
+ category: "objects",
+ lib: {
+ name: "OPEN MAILBOX WITH RAISED FLAG",
+ unified: "1F4EC",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f4ec.png",
+ sheet_x: 29,
+ sheet_y: 7,
+ short_name: "mailbox_with_mail",
+ short_names: ["mailbox_with_mail"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "mail",
+ sort_order: 1271,
+ added_in: "0.7",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ mailbox_with_no_mail: {
+ char: "📭",
+ key: "mailbox_with_no_mail",
+ keywords: ["mailbox_with_no_mail", "OPEN MAILBOX WITH LOWERED FLAG"],
+ category: "objects",
+ lib: {
+ name: "OPEN MAILBOX WITH LOWERED FLAG",
+ unified: "1F4ED",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f4ed.png",
+ sheet_x: 29,
+ sheet_y: 8,
+ short_name: "mailbox_with_no_mail",
+ short_names: ["mailbox_with_no_mail"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "mail",
+ sort_order: 1272,
+ added_in: "0.7",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ postbox: {
+ char: "📮",
+ key: "postbox",
+ keywords: ["postbox", "POSTBOX"],
+ category: "objects",
+ lib: {
+ name: "POSTBOX",
+ unified: "1F4EE",
+ non_qualified: null,
+ docomo: "E665",
+ au: "E51B",
+ softbank: "E102",
+ google: "FE52E",
+ image: "1f4ee.png",
+ sheet_x: 29,
+ sheet_y: 9,
+ short_name: "postbox",
+ short_names: ["postbox"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "mail",
+ sort_order: 1273,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ ballot_box_with_ballot: {
+ char: "🗳️",
+ key: "ballot_box_with_ballot",
+ keywords: ["ballot_box_with_ballot", "BALLOT BOX WITH BALLOT"],
+ category: "objects",
+ lib: {
+ name: "BALLOT BOX WITH BALLOT",
+ unified: "1F5F3-FE0F",
+ non_qualified: "1F5F3",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f5f3-fe0f.png",
+ sheet_x: 32,
+ sheet_y: 14,
+ short_name: "ballot_box_with_ballot",
+ short_names: ["ballot_box_with_ballot"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "mail",
+ sort_order: 1274,
+ added_in: "0.7",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ pencil2: {
+ char: "✏️",
+ key: "pencil2",
+ keywords: ["pencil2", "PENCIL"],
+ category: "objects",
+ lib: {
+ name: "PENCIL",
+ unified: "270F-FE0F",
+ non_qualified: "270F",
+ docomo: "E719",
+ au: "E4A1",
+ softbank: null,
+ google: "FE539",
+ image: "270f-fe0f.png",
+ sheet_x: 59,
+ sheet_y: 21,
+ short_name: "pencil2",
+ short_names: ["pencil2"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "writing",
+ sort_order: 1275,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ black_nib: {
+ char: "✒️",
+ key: "black_nib",
+ keywords: ["black_nib", "BLACK NIB"],
+ category: "objects",
+ lib: {
+ name: "BLACK NIB",
+ unified: "2712-FE0F",
+ non_qualified: "2712",
+ docomo: "E6AE",
+ au: "EB03",
+ softbank: null,
+ google: "FE536",
+ image: "2712-fe0f.png",
+ sheet_x: 59,
+ sheet_y: 22,
+ short_name: "black_nib",
+ short_names: ["black_nib"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "writing",
+ sort_order: 1276,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ lower_left_fountain_pen: {
+ char: "🖋️",
+ key: "lower_left_fountain_pen",
+ keywords: ["lower_left_fountain_pen", "FOUNTAIN PEN"],
+ category: "objects",
+ lib: {
+ name: "FOUNTAIN PEN",
+ unified: "1F58B-FE0F",
+ non_qualified: "1F58B",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f58b-fe0f.png",
+ sheet_x: 31,
+ sheet_y: 35,
+ short_name: "lower_left_fountain_pen",
+ short_names: ["lower_left_fountain_pen"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "writing",
+ sort_order: 1277,
+ added_in: "0.7",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ lower_left_ballpoint_pen: {
+ char: "🖊️",
+ key: "lower_left_ballpoint_pen",
+ keywords: ["lower_left_ballpoint_pen", "PEN"],
+ category: "objects",
+ lib: {
+ name: "PEN",
+ unified: "1F58A-FE0F",
+ non_qualified: "1F58A",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f58a-fe0f.png",
+ sheet_x: 31,
+ sheet_y: 34,
+ short_name: "lower_left_ballpoint_pen",
+ short_names: ["lower_left_ballpoint_pen"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "writing",
+ sort_order: 1278,
+ added_in: "0.7",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ lower_left_paintbrush: {
+ char: "🖌️",
+ key: "lower_left_paintbrush",
+ keywords: ["lower_left_paintbrush", "PAINTBRUSH"],
+ category: "objects",
+ lib: {
+ name: "PAINTBRUSH",
+ unified: "1F58C-FE0F",
+ non_qualified: "1F58C",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f58c-fe0f.png",
+ sheet_x: 31,
+ sheet_y: 36,
+ short_name: "lower_left_paintbrush",
+ short_names: ["lower_left_paintbrush"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "writing",
+ sort_order: 1279,
+ added_in: "0.7",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ lower_left_crayon: {
+ char: "🖍️",
+ key: "lower_left_crayon",
+ keywords: ["lower_left_crayon", "CRAYON"],
+ category: "objects",
+ lib: {
+ name: "CRAYON",
+ unified: "1F58D-FE0F",
+ non_qualified: "1F58D",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f58d-fe0f.png",
+ sheet_x: 31,
+ sheet_y: 37,
+ short_name: "lower_left_crayon",
+ short_names: ["lower_left_crayon"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "writing",
+ sort_order: 1280,
+ added_in: "0.7",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ memo: {
+ char: "📝",
+ key: "memo",
+ keywords: ["memo", "MEMO"],
+ category: "objects",
+ lib: {
+ name: "MEMO",
+ unified: "1F4DD",
+ non_qualified: null,
+ docomo: "E689",
+ au: "EA92",
+ softbank: "E301",
+ google: "FE527",
+ image: "1f4dd.png",
+ sheet_x: 28,
+ sheet_y: 53,
+ short_name: "memo",
+ short_names: ["memo", "pencil"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "writing",
+ sort_order: 1281,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ briefcase: {
+ char: "💼",
+ key: "briefcase",
+ keywords: ["briefcase", "BRIEFCASE"],
+ category: "objects",
+ lib: {
+ name: "BRIEFCASE",
+ unified: "1F4BC",
+ non_qualified: null,
+ docomo: "E682",
+ au: "E5CE",
+ softbank: "E11E",
+ google: "FE53B",
+ image: "1f4bc.png",
+ sheet_x: 28,
+ sheet_y: 20,
+ short_name: "briefcase",
+ short_names: ["briefcase"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "office",
+ sort_order: 1282,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ file_folder: {
+ char: "📁",
+ key: "file_folder",
+ keywords: ["file_folder", "FILE FOLDER"],
+ category: "objects",
+ lib: {
+ name: "FILE FOLDER",
+ unified: "1F4C1",
+ non_qualified: null,
+ docomo: null,
+ au: "E58F",
+ softbank: null,
+ google: "FE543",
+ image: "1f4c1.png",
+ sheet_x: 28,
+ sheet_y: 25,
+ short_name: "file_folder",
+ short_names: ["file_folder"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "office",
+ sort_order: 1283,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ open_file_folder: {
+ char: "📂",
+ key: "open_file_folder",
+ keywords: ["open_file_folder", "OPEN FILE FOLDER"],
+ category: "objects",
+ lib: {
+ name: "OPEN FILE FOLDER",
+ unified: "1F4C2",
+ non_qualified: null,
+ docomo: null,
+ au: "E590",
+ softbank: null,
+ google: "FE544",
+ image: "1f4c2.png",
+ sheet_x: 28,
+ sheet_y: 26,
+ short_name: "open_file_folder",
+ short_names: ["open_file_folder"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "office",
+ sort_order: 1284,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ card_index_dividers: {
+ char: "🗂️",
+ key: "card_index_dividers",
+ keywords: ["card_index_dividers", "CARD INDEX DIVIDERS"],
+ category: "objects",
+ lib: {
+ name: "CARD INDEX DIVIDERS",
+ unified: "1F5C2-FE0F",
+ non_qualified: "1F5C2",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f5c2-fe0f.png",
+ sheet_x: 32,
+ sheet_y: 1,
+ short_name: "card_index_dividers",
+ short_names: ["card_index_dividers"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "office",
+ sort_order: 1285,
+ added_in: "0.7",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ date: {
+ char: "📅",
+ key: "date",
+ keywords: ["date", "CALENDAR"],
+ category: "objects",
+ lib: {
+ name: "CALENDAR",
+ unified: "1F4C5",
+ non_qualified: null,
+ docomo: null,
+ au: "E563",
+ softbank: null,
+ google: "FE542",
+ image: "1f4c5.png",
+ sheet_x: 28,
+ sheet_y: 29,
+ short_name: "date",
+ short_names: ["date"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "office",
+ sort_order: 1286,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ calendar: {
+ char: "📆",
+ key: "calendar",
+ keywords: ["calendar", "TEAR-OFF CALENDAR"],
+ category: "objects",
+ lib: {
+ name: "TEAR-OFF CALENDAR",
+ unified: "1F4C6",
+ non_qualified: null,
+ docomo: null,
+ au: "E56A",
+ softbank: null,
+ google: "FE549",
+ image: "1f4c6.png",
+ sheet_x: 28,
+ sheet_y: 30,
+ short_name: "calendar",
+ short_names: ["calendar"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "office",
+ sort_order: 1287,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ spiral_note_pad: {
+ char: "🗒️",
+ key: "spiral_note_pad",
+ keywords: ["spiral_note_pad", "SPIRAL NOTEPAD"],
+ category: "objects",
+ lib: {
+ name: "SPIRAL NOTEPAD",
+ unified: "1F5D2-FE0F",
+ non_qualified: "1F5D2",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f5d2-fe0f.png",
+ sheet_x: 32,
+ sheet_y: 5,
+ short_name: "spiral_note_pad",
+ short_names: ["spiral_note_pad"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "office",
+ sort_order: 1288,
+ added_in: "0.7",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ spiral_calendar_pad: {
+ char: "🗓️",
+ key: "spiral_calendar_pad",
+ keywords: ["spiral_calendar_pad", "SPIRAL CALENDAR"],
+ category: "objects",
+ lib: {
+ name: "SPIRAL CALENDAR",
+ unified: "1F5D3-FE0F",
+ non_qualified: "1F5D3",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f5d3-fe0f.png",
+ sheet_x: 32,
+ sheet_y: 6,
+ short_name: "spiral_calendar_pad",
+ short_names: ["spiral_calendar_pad"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "office",
+ sort_order: 1289,
+ added_in: "0.7",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ card_index: {
+ char: "📇",
+ key: "card_index",
+ keywords: ["card_index", "CARD INDEX"],
+ category: "objects",
+ lib: {
+ name: "CARD INDEX",
+ unified: "1F4C7",
+ non_qualified: null,
+ docomo: "E683",
+ au: "E56C",
+ softbank: null,
+ google: "FE54D",
+ image: "1f4c7.png",
+ sheet_x: 28,
+ sheet_y: 31,
+ short_name: "card_index",
+ short_names: ["card_index"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "office",
+ sort_order: 1290,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ chart_with_upwards_trend: {
+ char: "📈",
+ key: "chart_with_upwards_trend",
+ keywords: ["chart_with_upwards_trend", "CHART WITH UPWARDS TREND"],
+ category: "objects",
+ lib: {
+ name: "CHART WITH UPWARDS TREND",
+ unified: "1F4C8",
+ non_qualified: null,
+ docomo: null,
+ au: "E575",
+ softbank: null,
+ google: "FE54B",
+ image: "1f4c8.png",
+ sheet_x: 28,
+ sheet_y: 32,
+ short_name: "chart_with_upwards_trend",
+ short_names: ["chart_with_upwards_trend"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "office",
+ sort_order: 1291,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ chart_with_downwards_trend: {
+ char: "📉",
+ key: "chart_with_downwards_trend",
+ keywords: ["chart_with_downwards_trend", "CHART WITH DOWNWARDS TREND"],
+ category: "objects",
+ lib: {
+ name: "CHART WITH DOWNWARDS TREND",
+ unified: "1F4C9",
+ non_qualified: null,
+ docomo: null,
+ au: "E576",
+ softbank: null,
+ google: "FE54C",
+ image: "1f4c9.png",
+ sheet_x: 28,
+ sheet_y: 33,
+ short_name: "chart_with_downwards_trend",
+ short_names: ["chart_with_downwards_trend"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "office",
+ sort_order: 1292,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ bar_chart: {
+ char: "📊",
+ key: "bar_chart",
+ keywords: ["bar_chart", "BAR CHART"],
+ category: "objects",
+ lib: {
+ name: "BAR CHART",
+ unified: "1F4CA",
+ non_qualified: null,
+ docomo: null,
+ au: "E574",
+ softbank: null,
+ google: "FE54A",
+ image: "1f4ca.png",
+ sheet_x: 28,
+ sheet_y: 34,
+ short_name: "bar_chart",
+ short_names: ["bar_chart"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "office",
+ sort_order: 1293,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ clipboard: {
+ char: "📋",
+ key: "clipboard",
+ keywords: ["clipboard", "CLIPBOARD"],
+ category: "objects",
+ lib: {
+ name: "CLIPBOARD",
+ unified: "1F4CB",
+ non_qualified: null,
+ docomo: "E689",
+ au: "E564",
+ softbank: null,
+ google: "FE548",
+ image: "1f4cb.png",
+ sheet_x: 28,
+ sheet_y: 35,
+ short_name: "clipboard",
+ short_names: ["clipboard"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "office",
+ sort_order: 1294,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ pushpin: {
+ char: "📌",
+ key: "pushpin",
+ keywords: ["pushpin", "PUSHPIN"],
+ category: "objects",
+ lib: {
+ name: "PUSHPIN",
+ unified: "1F4CC",
+ non_qualified: null,
+ docomo: null,
+ au: "E56D",
+ softbank: null,
+ google: "FE54E",
+ image: "1f4cc.png",
+ sheet_x: 28,
+ sheet_y: 36,
+ short_name: "pushpin",
+ short_names: ["pushpin"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "office",
+ sort_order: 1295,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ round_pushpin: {
+ char: "📍",
+ key: "round_pushpin",
+ keywords: ["round_pushpin", "ROUND PUSHPIN"],
+ category: "objects",
+ lib: {
+ name: "ROUND PUSHPIN",
+ unified: "1F4CD",
+ non_qualified: null,
+ docomo: null,
+ au: "E560",
+ softbank: null,
+ google: "FE53F",
+ image: "1f4cd.png",
+ sheet_x: 28,
+ sheet_y: 37,
+ short_name: "round_pushpin",
+ short_names: ["round_pushpin"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "office",
+ sort_order: 1296,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ paperclip: {
+ char: "📎",
+ key: "paperclip",
+ keywords: ["paperclip", "PAPERCLIP"],
+ category: "objects",
+ lib: {
+ name: "PAPERCLIP",
+ unified: "1F4CE",
+ non_qualified: null,
+ docomo: "E730",
+ au: "E4A0",
+ softbank: null,
+ google: "FE53A",
+ image: "1f4ce.png",
+ sheet_x: 28,
+ sheet_y: 38,
+ short_name: "paperclip",
+ short_names: ["paperclip"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "office",
+ sort_order: 1297,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ linked_paperclips: {
+ char: "🖇️",
+ key: "linked_paperclips",
+ keywords: ["linked_paperclips", "LINKED PAPERCLIPS"],
+ category: "objects",
+ lib: {
+ name: "LINKED PAPERCLIPS",
+ unified: "1F587-FE0F",
+ non_qualified: "1F587",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f587-fe0f.png",
+ sheet_x: 31,
+ sheet_y: 33,
+ short_name: "linked_paperclips",
+ short_names: ["linked_paperclips"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "office",
+ sort_order: 1298,
+ added_in: "0.7",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ straight_ruler: {
+ char: "📏",
+ key: "straight_ruler",
+ keywords: ["straight_ruler", "STRAIGHT RULER"],
+ category: "objects",
+ lib: {
+ name: "STRAIGHT RULER",
+ unified: "1F4CF",
+ non_qualified: null,
+ docomo: null,
+ au: "E570",
+ softbank: null,
+ google: "FE550",
+ image: "1f4cf.png",
+ sheet_x: 28,
+ sheet_y: 39,
+ short_name: "straight_ruler",
+ short_names: ["straight_ruler"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "office",
+ sort_order: 1299,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ triangular_ruler: {
+ char: "📐",
+ key: "triangular_ruler",
+ keywords: ["triangular_ruler", "TRIANGULAR RULER"],
+ category: "objects",
+ lib: {
+ name: "TRIANGULAR RULER",
+ unified: "1F4D0",
+ non_qualified: null,
+ docomo: null,
+ au: "E4A2",
+ softbank: null,
+ google: "FE551",
+ image: "1f4d0.png",
+ sheet_x: 28,
+ sheet_y: 40,
+ short_name: "triangular_ruler",
+ short_names: ["triangular_ruler"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "office",
+ sort_order: 1300,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ scissors: {
+ char: "✂️",
+ key: "scissors",
+ keywords: ["scissors", "BLACK SCISSORS"],
+ category: "objects",
+ lib: {
+ name: "BLACK SCISSORS",
+ unified: "2702-FE0F",
+ non_qualified: "2702",
+ docomo: "E675",
+ au: "E516",
+ softbank: "E313",
+ google: "FE53E",
+ image: "2702-fe0f.png",
+ sheet_x: 58,
+ sheet_y: 54,
+ short_name: "scissors",
+ short_names: ["scissors"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "office",
+ sort_order: 1301,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ card_file_box: {
+ char: "🗃️",
+ key: "card_file_box",
+ keywords: ["card_file_box", "CARD FILE BOX"],
+ category: "objects",
+ lib: {
+ name: "CARD FILE BOX",
+ unified: "1F5C3-FE0F",
+ non_qualified: "1F5C3",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f5c3-fe0f.png",
+ sheet_x: 32,
+ sheet_y: 2,
+ short_name: "card_file_box",
+ short_names: ["card_file_box"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "office",
+ sort_order: 1302,
+ added_in: "0.7",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ file_cabinet: {
+ char: "🗄️",
+ key: "file_cabinet",
+ keywords: ["file_cabinet", "FILE CABINET"],
+ category: "objects",
+ lib: {
+ name: "FILE CABINET",
+ unified: "1F5C4-FE0F",
+ non_qualified: "1F5C4",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f5c4-fe0f.png",
+ sheet_x: 32,
+ sheet_y: 3,
+ short_name: "file_cabinet",
+ short_names: ["file_cabinet"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "office",
+ sort_order: 1303,
+ added_in: "0.7",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ wastebasket: {
+ char: "🗑️",
+ key: "wastebasket",
+ keywords: ["wastebasket", "WASTEBASKET"],
+ category: "objects",
+ lib: {
+ name: "WASTEBASKET",
+ unified: "1F5D1-FE0F",
+ non_qualified: "1F5D1",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f5d1-fe0f.png",
+ sheet_x: 32,
+ sheet_y: 4,
+ short_name: "wastebasket",
+ short_names: ["wastebasket"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "office",
+ sort_order: 1304,
+ added_in: "0.7",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ lock: {
+ char: "🔒",
+ key: "lock",
+ keywords: ["lock", "LOCK"],
+ category: "objects",
+ lib: {
+ name: "LOCK",
+ unified: "1F512",
+ non_qualified: null,
+ docomo: "E6D9",
+ au: "E51C",
+ softbank: "E144",
+ google: "FEB86",
+ image: "1f512.png",
+ sheet_x: 29,
+ sheet_y: 44,
+ short_name: "lock",
+ short_names: ["lock"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "lock",
+ sort_order: 1305,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ unlock: {
+ char: "🔓",
+ key: "unlock",
+ keywords: ["unlock", "OPEN LOCK"],
+ category: "objects",
+ lib: {
+ name: "OPEN LOCK",
+ unified: "1F513",
+ non_qualified: null,
+ docomo: "E6D9",
+ au: "E51C",
+ softbank: "E145",
+ google: "FEB87",
+ image: "1f513.png",
+ sheet_x: 29,
+ sheet_y: 45,
+ short_name: "unlock",
+ short_names: ["unlock"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "lock",
+ sort_order: 1306,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ lock_with_ink_pen: {
+ char: "🔏",
+ key: "lock_with_ink_pen",
+ keywords: ["lock_with_ink_pen", "LOCK WITH INK PEN"],
+ category: "objects",
+ lib: {
+ name: "LOCK WITH INK PEN",
+ unified: "1F50F",
+ non_qualified: null,
+ docomo: "E6D9",
+ au: "EB0C",
+ softbank: null,
+ google: "FEB90",
+ image: "1f50f.png",
+ sheet_x: 29,
+ sheet_y: 41,
+ short_name: "lock_with_ink_pen",
+ short_names: ["lock_with_ink_pen"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "lock",
+ sort_order: 1307,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ closed_lock_with_key: {
+ char: "🔐",
+ key: "closed_lock_with_key",
+ keywords: ["closed_lock_with_key", "CLOSED LOCK WITH KEY"],
+ category: "objects",
+ lib: {
+ name: "CLOSED LOCK WITH KEY",
+ unified: "1F510",
+ non_qualified: null,
+ docomo: "E6D9",
+ au: "EAFC",
+ softbank: null,
+ google: "FEB8A",
+ image: "1f510.png",
+ sheet_x: 29,
+ sheet_y: 42,
+ short_name: "closed_lock_with_key",
+ short_names: ["closed_lock_with_key"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "lock",
+ sort_order: 1308,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ key: {
+ char: "🔑",
+ key: "key",
+ keywords: ["key", "KEY"],
+ category: "objects",
+ lib: {
+ name: "KEY",
+ unified: "1F511",
+ non_qualified: null,
+ docomo: "E6D9",
+ au: "E519",
+ softbank: "E03F",
+ google: "FEB82",
+ image: "1f511.png",
+ sheet_x: 29,
+ sheet_y: 43,
+ short_name: "key",
+ short_names: ["key"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "lock",
+ sort_order: 1309,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ old_key: {
+ char: "🗝️",
+ key: "old_key",
+ keywords: ["old_key", "OLD KEY"],
+ category: "objects",
+ lib: {
+ name: "OLD KEY",
+ unified: "1F5DD-FE0F",
+ non_qualified: "1F5DD",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f5dd-fe0f.png",
+ sheet_x: 32,
+ sheet_y: 8,
+ short_name: "old_key",
+ short_names: ["old_key"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "lock",
+ sort_order: 1310,
+ added_in: "0.7",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ hammer: {
+ char: "🔨",
+ key: "hammer",
+ keywords: ["hammer", "HAMMER"],
+ category: "objects",
+ lib: {
+ name: "HAMMER",
+ unified: "1F528",
+ non_qualified: null,
+ docomo: null,
+ au: "E5CB",
+ softbank: "E116",
+ google: "FE4CA",
+ image: "1f528.png",
+ sheet_x: 30,
+ sheet_y: 5,
+ short_name: "hammer",
+ short_names: ["hammer"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "tool",
+ sort_order: 1311,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ axe: {
+ char: "🪓",
+ key: "axe",
+ keywords: ["axe", "AXE"],
+ category: "objects",
+ lib: {
+ name: "AXE",
+ unified: "1FA93",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1fa93.png",
+ sheet_x: 54,
+ sheet_y: 12,
+ short_name: "axe",
+ short_names: ["axe"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "tool",
+ sort_order: 1312,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ pick: {
+ char: "⛏️",
+ key: "pick",
+ keywords: ["pick", "PICK"],
+ category: "objects",
+ lib: {
+ name: "PICK",
+ unified: "26CF-FE0F",
+ non_qualified: "26CF",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "26cf-fe0f.png",
+ sheet_x: 58,
+ sheet_y: 20,
+ short_name: "pick",
+ short_names: ["pick"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "tool",
+ sort_order: 1313,
+ added_in: "0.7",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ hammer_and_pick: {
+ char: "⚒️",
+ key: "hammer_and_pick",
+ keywords: ["hammer_and_pick", "HAMMER AND PICK"],
+ category: "objects",
+ lib: {
+ name: "HAMMER AND PICK",
+ unified: "2692-FE0F",
+ non_qualified: "2692",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "2692-fe0f.png",
+ sheet_x: 57,
+ sheet_y: 59,
+ short_name: "hammer_and_pick",
+ short_names: ["hammer_and_pick"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "tool",
+ sort_order: 1314,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ hammer_and_wrench: {
+ char: "🛠️",
+ key: "hammer_and_wrench",
+ keywords: ["hammer_and_wrench", "HAMMER AND WRENCH"],
+ category: "objects",
+ lib: {
+ name: "HAMMER AND WRENCH",
+ unified: "1F6E0-FE0F",
+ non_qualified: "1F6E0",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f6e0-fe0f.png",
+ sheet_x: 38,
+ sheet_y: 13,
+ short_name: "hammer_and_wrench",
+ short_names: ["hammer_and_wrench"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "tool",
+ sort_order: 1315,
+ added_in: "0.7",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ dagger_knife: {
+ char: "🗡️",
+ key: "dagger_knife",
+ keywords: ["dagger_knife", "DAGGER"],
+ category: "objects",
+ lib: {
+ name: "DAGGER",
+ unified: "1F5E1-FE0F",
+ non_qualified: "1F5E1",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f5e1-fe0f.png",
+ sheet_x: 32,
+ sheet_y: 10,
+ short_name: "dagger_knife",
+ short_names: ["dagger_knife"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "tool",
+ sort_order: 1316,
+ added_in: "0.7",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ crossed_swords: {
+ char: "⚔️",
+ key: "crossed_swords",
+ keywords: ["crossed_swords", "CROSSED SWORDS"],
+ category: "objects",
+ lib: {
+ name: "CROSSED SWORDS",
+ unified: "2694-FE0F",
+ non_qualified: "2694",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "2694-fe0f.png",
+ sheet_x: 58,
+ sheet_y: 0,
+ short_name: "crossed_swords",
+ short_names: ["crossed_swords"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "tool",
+ sort_order: 1317,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ bomb: {
+ char: "💣",
+ key: "bomb",
+ keywords: ["bomb", "BOMB"],
+ category: "objects",
+ lib: {
+ name: "BOMB",
+ unified: "1F4A3",
+ non_qualified: null,
+ docomo: "E6FE",
+ au: "E47A",
+ softbank: "E311",
+ google: "FEB58",
+ image: "1f4a3.png",
+ sheet_x: 27,
+ sheet_y: 51,
+ short_name: "bomb",
+ short_names: ["bomb"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "tool",
+ sort_order: 1318,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ boomerang: {
+ char: "🪃",
+ key: "boomerang",
+ keywords: ["boomerang", "BOOMERANG"],
+ category: "objects",
+ lib: {
+ name: "BOOMERANG",
+ unified: "1FA83",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1fa83.png",
+ sheet_x: 54,
+ sheet_y: 3,
+ short_name: "boomerang",
+ short_names: ["boomerang"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "tool",
+ sort_order: 1319,
+ added_in: "13.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ bow_and_arrow: {
+ char: "🏹",
+ key: "bow_and_arrow",
+ keywords: ["bow_and_arrow", "BOW AND ARROW"],
+ category: "objects",
+ lib: {
+ name: "BOW AND ARROW",
+ unified: "1F3F9",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f3f9.png",
+ sheet_x: 10,
+ sheet_y: 39,
+ short_name: "bow_and_arrow",
+ short_names: ["bow_and_arrow"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "tool",
+ sort_order: 1320,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ shield: {
+ char: "🛡️",
+ key: "shield",
+ keywords: ["shield", "SHIELD"],
+ category: "objects",
+ lib: {
+ name: "SHIELD",
+ unified: "1F6E1-FE0F",
+ non_qualified: "1F6E1",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f6e1-fe0f.png",
+ sheet_x: 38,
+ sheet_y: 14,
+ short_name: "shield",
+ short_names: ["shield"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "tool",
+ sort_order: 1321,
+ added_in: "0.7",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ carpentry_saw: {
+ char: "🪚",
+ key: "carpentry_saw",
+ keywords: ["carpentry_saw", "CARPENTRY SAW"],
+ category: "objects",
+ lib: {
+ name: "CARPENTRY SAW",
+ unified: "1FA9A",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1fa9a.png",
+ sheet_x: 54,
+ sheet_y: 19,
+ short_name: "carpentry_saw",
+ short_names: ["carpentry_saw"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "tool",
+ sort_order: 1322,
+ added_in: "13.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ wrench: {
+ char: "🔧",
+ key: "wrench",
+ keywords: ["wrench", "WRENCH"],
+ category: "objects",
+ lib: {
+ name: "WRENCH",
+ unified: "1F527",
+ non_qualified: null,
+ docomo: "E718",
+ au: "E587",
+ softbank: null,
+ google: "FE4C9",
+ image: "1f527.png",
+ sheet_x: 30,
+ sheet_y: 4,
+ short_name: "wrench",
+ short_names: ["wrench"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "tool",
+ sort_order: 1323,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ screwdriver: {
+ char: "🪛",
+ key: "screwdriver",
+ keywords: ["screwdriver", "SCREWDRIVER"],
+ category: "objects",
+ lib: {
+ name: "SCREWDRIVER",
+ unified: "1FA9B",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1fa9b.png",
+ sheet_x: 54,
+ sheet_y: 20,
+ short_name: "screwdriver",
+ short_names: ["screwdriver"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "tool",
+ sort_order: 1324,
+ added_in: "13.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ nut_and_bolt: {
+ char: "🔩",
+ key: "nut_and_bolt",
+ keywords: ["nut_and_bolt", "NUT AND BOLT"],
+ category: "objects",
+ lib: {
+ name: "NUT AND BOLT",
+ unified: "1F529",
+ non_qualified: null,
+ docomo: null,
+ au: "E581",
+ softbank: null,
+ google: "FE4CB",
+ image: "1f529.png",
+ sheet_x: 30,
+ sheet_y: 6,
+ short_name: "nut_and_bolt",
+ short_names: ["nut_and_bolt"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "tool",
+ sort_order: 1325,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ gear: {
+ char: "⚙️",
+ key: "gear",
+ keywords: ["gear", "GEAR"],
+ category: "objects",
+ lib: {
+ name: "GEAR",
+ unified: "2699-FE0F",
+ non_qualified: "2699",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "2699-fe0f.png",
+ sheet_x: 58,
+ sheet_y: 4,
+ short_name: "gear",
+ short_names: ["gear"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "tool",
+ sort_order: 1326,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ compression: {
+ char: "🗜️",
+ key: "compression",
+ keywords: ["compression", "CLAMP"],
+ category: "objects",
+ lib: {
+ name: "CLAMP",
+ unified: "1F5DC-FE0F",
+ non_qualified: "1F5DC",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f5dc-fe0f.png",
+ sheet_x: 32,
+ sheet_y: 7,
+ short_name: "compression",
+ short_names: ["compression"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "tool",
+ sort_order: 1327,
+ added_in: "0.7",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ scales: {
+ char: "⚖️",
+ key: "scales",
+ keywords: ["scales", "BALANCE SCALE"],
+ category: "objects",
+ lib: {
+ name: "BALANCE SCALE",
+ unified: "2696-FE0F",
+ non_qualified: "2696",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "2696-fe0f.png",
+ sheet_x: 58,
+ sheet_y: 2,
+ short_name: "scales",
+ short_names: ["scales"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "tool",
+ sort_order: 1328,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ probing_cane: {
+ char: "🦯",
+ key: "probing_cane",
+ keywords: ["probing_cane", "PROBING CANE"],
+ category: "objects",
+ lib: {
+ name: "PROBING CANE",
+ unified: "1F9AF",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f9af.png",
+ sheet_x: 45,
+ sheet_y: 6,
+ short_name: "probing_cane",
+ short_names: ["probing_cane"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "tool",
+ sort_order: 1329,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ link: {
+ char: "🔗",
+ key: "link",
+ keywords: ["link", "LINK SYMBOL"],
+ category: "objects",
+ lib: {
+ name: "LINK SYMBOL",
+ unified: "1F517",
+ non_qualified: null,
+ docomo: null,
+ au: "E58A",
+ softbank: null,
+ google: "FEB4B",
+ image: "1f517.png",
+ sheet_x: 29,
+ sheet_y: 49,
+ short_name: "link",
+ short_names: ["link"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "tool",
+ sort_order: 1330,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ chains: {
+ char: "⛓️",
+ key: "chains",
+ keywords: ["chains", "CHAINS"],
+ category: "objects",
+ lib: {
+ name: "CHAINS",
+ unified: "26D3-FE0F",
+ non_qualified: "26D3",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "26d3-fe0f.png",
+ sheet_x: 58,
+ sheet_y: 22,
+ short_name: "chains",
+ short_names: ["chains"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "tool",
+ sort_order: 1331,
+ added_in: "0.7",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ hook: {
+ char: "🪝",
+ key: "hook",
+ keywords: ["hook", "HOOK"],
+ category: "objects",
+ lib: {
+ name: "HOOK",
+ unified: "1FA9D",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1fa9d.png",
+ sheet_x: 54,
+ sheet_y: 22,
+ short_name: "hook",
+ short_names: ["hook"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "tool",
+ sort_order: 1332,
+ added_in: "13.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ toolbox: {
+ char: "🧰",
+ key: "toolbox",
+ keywords: ["toolbox", "TOOLBOX"],
+ category: "objects",
+ lib: {
+ name: "TOOLBOX",
+ unified: "1F9F0",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f9f0.png",
+ sheet_x: 53,
+ sheet_y: 32,
+ short_name: "toolbox",
+ short_names: ["toolbox"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "tool",
+ sort_order: 1333,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ magnet: {
+ char: "🧲",
+ key: "magnet",
+ keywords: ["magnet", "MAGNET"],
+ category: "objects",
+ lib: {
+ name: "MAGNET",
+ unified: "1F9F2",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f9f2.png",
+ sheet_x: 53,
+ sheet_y: 34,
+ short_name: "magnet",
+ short_names: ["magnet"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "tool",
+ sort_order: 1334,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ ladder: {
+ char: "🪜",
+ key: "ladder",
+ keywords: ["ladder", "LADDER"],
+ category: "objects",
+ lib: {
+ name: "LADDER",
+ unified: "1FA9C",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1fa9c.png",
+ sheet_x: 54,
+ sheet_y: 21,
+ short_name: "ladder",
+ short_names: ["ladder"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "tool",
+ sort_order: 1335,
+ added_in: "13.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ alembic: {
+ char: "⚗️",
+ key: "alembic",
+ keywords: ["alembic", "ALEMBIC"],
+ category: "objects",
+ lib: {
+ name: "ALEMBIC",
+ unified: "2697-FE0F",
+ non_qualified: "2697",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "2697-fe0f.png",
+ sheet_x: 58,
+ sheet_y: 3,
+ short_name: "alembic",
+ short_names: ["alembic"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "science",
+ sort_order: 1336,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ test_tube: {
+ char: "🧪",
+ key: "test_tube",
+ keywords: ["test_tube", "TEST TUBE"],
+ category: "objects",
+ lib: {
+ name: "TEST TUBE",
+ unified: "1F9EA",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f9ea.png",
+ sheet_x: 53,
+ sheet_y: 26,
+ short_name: "test_tube",
+ short_names: ["test_tube"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "science",
+ sort_order: 1337,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ petri_dish: {
+ char: "🧫",
+ key: "petri_dish",
+ keywords: ["petri_dish", "PETRI DISH"],
+ category: "objects",
+ lib: {
+ name: "PETRI DISH",
+ unified: "1F9EB",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f9eb.png",
+ sheet_x: 53,
+ sheet_y: 27,
+ short_name: "petri_dish",
+ short_names: ["petri_dish"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "science",
+ sort_order: 1338,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ dna: {
+ char: "🧬",
+ key: "dna",
+ keywords: ["dna", "DNA DOUBLE HELIX"],
+ category: "objects",
+ lib: {
+ name: "DNA DOUBLE HELIX",
+ unified: "1F9EC",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f9ec.png",
+ sheet_x: 53,
+ sheet_y: 28,
+ short_name: "dna",
+ short_names: ["dna"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "science",
+ sort_order: 1339,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ microscope: {
+ char: "🔬",
+ key: "microscope",
+ keywords: ["microscope", "MICROSCOPE"],
+ category: "objects",
+ lib: {
+ name: "MICROSCOPE",
+ unified: "1F52C",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f52c.png",
+ sheet_x: 30,
+ sheet_y: 9,
+ short_name: "microscope",
+ short_names: ["microscope"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "science",
+ sort_order: 1340,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ telescope: {
+ char: "🔭",
+ key: "telescope",
+ keywords: ["telescope", "TELESCOPE"],
+ category: "objects",
+ lib: {
+ name: "TELESCOPE",
+ unified: "1F52D",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f52d.png",
+ sheet_x: 30,
+ sheet_y: 10,
+ short_name: "telescope",
+ short_names: ["telescope"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "science",
+ sort_order: 1341,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ satellite_antenna: {
+ char: "📡",
+ key: "satellite_antenna",
+ keywords: ["satellite_antenna", "SATELLITE ANTENNA"],
+ category: "objects",
+ lib: {
+ name: "SATELLITE ANTENNA",
+ unified: "1F4E1",
+ non_qualified: null,
+ docomo: null,
+ au: "E4A8",
+ softbank: "E14B",
+ google: "FE531",
+ image: "1f4e1.png",
+ sheet_x: 28,
+ sheet_y: 57,
+ short_name: "satellite_antenna",
+ short_names: ["satellite_antenna"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "science",
+ sort_order: 1342,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ syringe: {
+ char: "💉",
+ key: "syringe",
+ keywords: ["syringe", "SYRINGE"],
+ category: "objects",
+ lib: {
+ name: "SYRINGE",
+ unified: "1F489",
+ non_qualified: null,
+ docomo: null,
+ au: "E510",
+ softbank: "E13B",
+ google: "FE509",
+ image: "1f489.png",
+ sheet_x: 26,
+ sheet_y: 36,
+ short_name: "syringe",
+ short_names: ["syringe"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "medical",
+ sort_order: 1343,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ drop_of_blood: {
+ char: "🩸",
+ key: "drop_of_blood",
+ keywords: ["drop_of_blood", "DROP OF BLOOD"],
+ category: "objects",
+ lib: {
+ name: "DROP OF BLOOD",
+ unified: "1FA78",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1fa78.png",
+ sheet_x: 53,
+ sheet_y: 56,
+ short_name: "drop_of_blood",
+ short_names: ["drop_of_blood"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "medical",
+ sort_order: 1344,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ pill: {
+ char: "💊",
+ key: "pill",
+ keywords: ["pill", "PILL"],
+ category: "objects",
+ lib: {
+ name: "PILL",
+ unified: "1F48A",
+ non_qualified: null,
+ docomo: null,
+ au: "EA9A",
+ softbank: "E30F",
+ google: "FE50A",
+ image: "1f48a.png",
+ sheet_x: 26,
+ sheet_y: 37,
+ short_name: "pill",
+ short_names: ["pill"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "medical",
+ sort_order: 1345,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ adhesive_bandage: {
+ char: "🩹",
+ key: "adhesive_bandage",
+ keywords: ["adhesive_bandage", "ADHESIVE BANDAGE"],
+ category: "objects",
+ lib: {
+ name: "ADHESIVE BANDAGE",
+ unified: "1FA79",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1fa79.png",
+ sheet_x: 53,
+ sheet_y: 57,
+ short_name: "adhesive_bandage",
+ short_names: ["adhesive_bandage"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "medical",
+ sort_order: 1346,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ crutch: {
+ char: "🩼",
+ key: "crutch",
+ keywords: ["crutch", "CRUTCH"],
+ category: "objects",
+ lib: {
+ name: "CRUTCH",
+ unified: "1FA7C",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1fa7c.png",
+ sheet_x: 53,
+ sheet_y: 60,
+ short_name: "crutch",
+ short_names: ["crutch"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "medical",
+ sort_order: 1347,
+ added_in: "14.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ stethoscope: {
+ char: "🩺",
+ key: "stethoscope",
+ keywords: ["stethoscope", "STETHOSCOPE"],
+ category: "objects",
+ lib: {
+ name: "STETHOSCOPE",
+ unified: "1FA7A",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1fa7a.png",
+ sheet_x: 53,
+ sheet_y: 58,
+ short_name: "stethoscope",
+ short_names: ["stethoscope"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "medical",
+ sort_order: 1348,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "x-ray": {
+ char: "🩻",
+ key: "x-ray",
+ keywords: ["x-ray", "X-RAY"],
+ category: "objects",
+ lib: {
+ name: "X-RAY",
+ unified: "1FA7B",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1fa7b.png",
+ sheet_x: 53,
+ sheet_y: 59,
+ short_name: "x-ray",
+ short_names: ["x-ray"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "medical",
+ sort_order: 1349,
+ added_in: "14.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ door: {
+ char: "🚪",
+ key: "door",
+ keywords: ["door", "DOOR"],
+ category: "objects",
+ lib: {
+ name: "DOOR",
+ unified: "1F6AA",
+ non_qualified: null,
+ docomo: "E714",
+ au: null,
+ softbank: null,
+ google: "FE4F3",
+ image: "1f6aa.png",
+ sheet_x: 36,
+ sheet_y: 31,
+ short_name: "door",
+ short_names: ["door"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "household",
+ sort_order: 1350,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ elevator: {
+ char: "🛗",
+ key: "elevator",
+ keywords: ["elevator", "ELEVATOR"],
+ category: "objects",
+ lib: {
+ name: "ELEVATOR",
+ unified: "1F6D7",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f6d7.png",
+ sheet_x: 38,
+ sheet_y: 8,
+ short_name: "elevator",
+ short_names: ["elevator"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "household",
+ sort_order: 1351,
+ added_in: "13.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ mirror: {
+ char: "🪞",
+ key: "mirror",
+ keywords: ["mirror", "MIRROR"],
+ category: "objects",
+ lib: {
+ name: "MIRROR",
+ unified: "1FA9E",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1fa9e.png",
+ sheet_x: 54,
+ sheet_y: 23,
+ short_name: "mirror",
+ short_names: ["mirror"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "household",
+ sort_order: 1352,
+ added_in: "13.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ window: {
+ char: "🪟",
+ key: "window",
+ keywords: ["window", "WINDOW"],
+ category: "objects",
+ lib: {
+ name: "WINDOW",
+ unified: "1FA9F",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1fa9f.png",
+ sheet_x: 54,
+ sheet_y: 24,
+ short_name: "window",
+ short_names: ["window"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "household",
+ sort_order: 1353,
+ added_in: "13.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ bed: {
+ char: "🛏️",
+ key: "bed",
+ keywords: ["bed", "BED"],
+ category: "objects",
+ lib: {
+ name: "BED",
+ unified: "1F6CF-FE0F",
+ non_qualified: "1F6CF",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f6cf-fe0f.png",
+ sheet_x: 38,
+ sheet_y: 2,
+ short_name: "bed",
+ short_names: ["bed"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "household",
+ sort_order: 1354,
+ added_in: "0.7",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ couch_and_lamp: {
+ char: "🛋️",
+ key: "couch_and_lamp",
+ keywords: ["couch_and_lamp", "COUCH AND LAMP"],
+ category: "objects",
+ lib: {
+ name: "COUCH AND LAMP",
+ unified: "1F6CB-FE0F",
+ non_qualified: "1F6CB",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f6cb-fe0f.png",
+ sheet_x: 37,
+ sheet_y: 54,
+ short_name: "couch_and_lamp",
+ short_names: ["couch_and_lamp"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "household",
+ sort_order: 1355,
+ added_in: "0.7",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ chair: {
+ char: "🪑",
+ key: "chair",
+ keywords: ["chair", "CHAIR"],
+ category: "objects",
+ lib: {
+ name: "CHAIR",
+ unified: "1FA91",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1fa91.png",
+ sheet_x: 54,
+ sheet_y: 10,
+ short_name: "chair",
+ short_names: ["chair"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "household",
+ sort_order: 1356,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ toilet: {
+ char: "🚽",
+ key: "toilet",
+ keywords: ["toilet", "TOILET"],
+ category: "objects",
+ lib: {
+ name: "TOILET",
+ unified: "1F6BD",
+ non_qualified: null,
+ docomo: "E66E",
+ au: "E4A5",
+ softbank: "E140",
+ google: "FE507",
+ image: "1f6bd.png",
+ sheet_x: 37,
+ sheet_y: 40,
+ short_name: "toilet",
+ short_names: ["toilet"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "household",
+ sort_order: 1357,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ plunger: {
+ char: "🪠",
+ key: "plunger",
+ keywords: ["plunger", "PLUNGER"],
+ category: "objects",
+ lib: {
+ name: "PLUNGER",
+ unified: "1FAA0",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1faa0.png",
+ sheet_x: 54,
+ sheet_y: 25,
+ short_name: "plunger",
+ short_names: ["plunger"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "household",
+ sort_order: 1358,
+ added_in: "13.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ shower: {
+ char: "🚿",
+ key: "shower",
+ keywords: ["shower", "SHOWER"],
+ category: "objects",
+ lib: {
+ name: "SHOWER",
+ unified: "1F6BF",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f6bf.png",
+ sheet_x: 37,
+ sheet_y: 42,
+ short_name: "shower",
+ short_names: ["shower"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "household",
+ sort_order: 1359,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ bathtub: {
+ char: "🛁",
+ key: "bathtub",
+ keywords: ["bathtub", "BATHTUB"],
+ category: "objects",
+ lib: {
+ name: "BATHTUB",
+ unified: "1F6C1",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f6c1.png",
+ sheet_x: 37,
+ sheet_y: 49,
+ short_name: "bathtub",
+ short_names: ["bathtub"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "household",
+ sort_order: 1360,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ mouse_trap: {
+ char: "🪤",
+ key: "mouse_trap",
+ keywords: ["mouse_trap", "MOUSE TRAP"],
+ category: "objects",
+ lib: {
+ name: "MOUSE TRAP",
+ unified: "1FAA4",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1faa4.png",
+ sheet_x: 54,
+ sheet_y: 29,
+ short_name: "mouse_trap",
+ short_names: ["mouse_trap"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "household",
+ sort_order: 1361,
+ added_in: "13.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ razor: {
+ char: "🪒",
+ key: "razor",
+ keywords: ["razor", "RAZOR"],
+ category: "objects",
+ lib: {
+ name: "RAZOR",
+ unified: "1FA92",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1fa92.png",
+ sheet_x: 54,
+ sheet_y: 11,
+ short_name: "razor",
+ short_names: ["razor"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "household",
+ sort_order: 1362,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ lotion_bottle: {
+ char: "🧴",
+ key: "lotion_bottle",
+ keywords: ["lotion_bottle", "LOTION BOTTLE"],
+ category: "objects",
+ lib: {
+ name: "LOTION BOTTLE",
+ unified: "1F9F4",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f9f4.png",
+ sheet_x: 53,
+ sheet_y: 36,
+ short_name: "lotion_bottle",
+ short_names: ["lotion_bottle"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "household",
+ sort_order: 1363,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ safety_pin: {
+ char: "🧷",
+ key: "safety_pin",
+ keywords: ["safety_pin", "SAFETY PIN"],
+ category: "objects",
+ lib: {
+ name: "SAFETY PIN",
+ unified: "1F9F7",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f9f7.png",
+ sheet_x: 53,
+ sheet_y: 39,
+ short_name: "safety_pin",
+ short_names: ["safety_pin"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "household",
+ sort_order: 1364,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ broom: {
+ char: "🧹",
+ key: "broom",
+ keywords: ["broom", "BROOM"],
+ category: "objects",
+ lib: {
+ name: "BROOM",
+ unified: "1F9F9",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f9f9.png",
+ sheet_x: 53,
+ sheet_y: 41,
+ short_name: "broom",
+ short_names: ["broom"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "household",
+ sort_order: 1365,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ basket: {
+ char: "🧺",
+ key: "basket",
+ keywords: ["basket", "BASKET"],
+ category: "objects",
+ lib: {
+ name: "BASKET",
+ unified: "1F9FA",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f9fa.png",
+ sheet_x: 53,
+ sheet_y: 42,
+ short_name: "basket",
+ short_names: ["basket"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "household",
+ sort_order: 1366,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ roll_of_paper: {
+ char: "🧻",
+ key: "roll_of_paper",
+ keywords: ["roll_of_paper", "ROLL OF PAPER"],
+ category: "objects",
+ lib: {
+ name: "ROLL OF PAPER",
+ unified: "1F9FB",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f9fb.png",
+ sheet_x: 53,
+ sheet_y: 43,
+ short_name: "roll_of_paper",
+ short_names: ["roll_of_paper"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "household",
+ sort_order: 1367,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ bucket: {
+ char: "🪣",
+ key: "bucket",
+ keywords: ["bucket", "BUCKET"],
+ category: "objects",
+ lib: {
+ name: "BUCKET",
+ unified: "1FAA3",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1faa3.png",
+ sheet_x: 54,
+ sheet_y: 28,
+ short_name: "bucket",
+ short_names: ["bucket"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "household",
+ sort_order: 1368,
+ added_in: "13.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ soap: {
+ char: "🧼",
+ key: "soap",
+ keywords: ["soap", "BAR OF SOAP"],
+ category: "objects",
+ lib: {
+ name: "BAR OF SOAP",
+ unified: "1F9FC",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f9fc.png",
+ sheet_x: 53,
+ sheet_y: 44,
+ short_name: "soap",
+ short_names: ["soap"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "household",
+ sort_order: 1369,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ bubbles: {
+ char: "🫧",
+ key: "bubbles",
+ keywords: ["bubbles", "BUBBLES"],
+ category: "objects",
+ lib: {
+ name: "BUBBLES",
+ unified: "1FAE7",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1fae7.png",
+ sheet_x: 55,
+ sheet_y: 37,
+ short_name: "bubbles",
+ short_names: ["bubbles"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "household",
+ sort_order: 1370,
+ added_in: "14.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ toothbrush: {
+ char: "🪥",
+ key: "toothbrush",
+ keywords: ["toothbrush", "TOOTHBRUSH"],
+ category: "objects",
+ lib: {
+ name: "TOOTHBRUSH",
+ unified: "1FAA5",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1faa5.png",
+ sheet_x: 54,
+ sheet_y: 30,
+ short_name: "toothbrush",
+ short_names: ["toothbrush"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "household",
+ sort_order: 1371,
+ added_in: "13.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ sponge: {
+ char: "🧽",
+ key: "sponge",
+ keywords: ["sponge", "SPONGE"],
+ category: "objects",
+ lib: {
+ name: "SPONGE",
+ unified: "1F9FD",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f9fd.png",
+ sheet_x: 53,
+ sheet_y: 45,
+ short_name: "sponge",
+ short_names: ["sponge"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "household",
+ sort_order: 1372,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ fire_extinguisher: {
+ char: "🧯",
+ key: "fire_extinguisher",
+ keywords: ["fire_extinguisher", "FIRE EXTINGUISHER"],
+ category: "objects",
+ lib: {
+ name: "FIRE EXTINGUISHER",
+ unified: "1F9EF",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f9ef.png",
+ sheet_x: 53,
+ sheet_y: 31,
+ short_name: "fire_extinguisher",
+ short_names: ["fire_extinguisher"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "household",
+ sort_order: 1373,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ shopping_trolley: {
+ char: "🛒",
+ key: "shopping_trolley",
+ keywords: ["shopping_trolley", "SHOPPING TROLLEY"],
+ category: "objects",
+ lib: {
+ name: "SHOPPING TROLLEY",
+ unified: "1F6D2",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f6d2.png",
+ sheet_x: 38,
+ sheet_y: 5,
+ short_name: "shopping_trolley",
+ short_names: ["shopping_trolley"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "household",
+ sort_order: 1374,
+ added_in: "3.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ smoking: {
+ char: "🚬",
+ key: "smoking",
+ keywords: ["smoking", "SMOKING SYMBOL"],
+ category: "objects",
+ lib: {
+ name: "SMOKING SYMBOL",
+ unified: "1F6AC",
+ non_qualified: null,
+ docomo: "E67F",
+ au: "E47D",
+ softbank: "E30E",
+ google: "FEB1E",
+ image: "1f6ac.png",
+ sheet_x: 36,
+ sheet_y: 33,
+ short_name: "smoking",
+ short_names: ["smoking"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "other-object",
+ sort_order: 1375,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ coffin: {
+ char: "⚰️",
+ key: "coffin",
+ keywords: ["coffin", "COFFIN"],
+ category: "objects",
+ lib: {
+ name: "COFFIN",
+ unified: "26B0-FE0F",
+ non_qualified: "26B0",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "26b0-fe0f.png",
+ sheet_x: 58,
+ sheet_y: 12,
+ short_name: "coffin",
+ short_names: ["coffin"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "other-object",
+ sort_order: 1376,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ headstone: {
+ char: "🪦",
+ key: "headstone",
+ keywords: ["headstone", "HEADSTONE"],
+ category: "objects",
+ lib: {
+ name: "HEADSTONE",
+ unified: "1FAA6",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1faa6.png",
+ sheet_x: 54,
+ sheet_y: 31,
+ short_name: "headstone",
+ short_names: ["headstone"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "other-object",
+ sort_order: 1377,
+ added_in: "13.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ funeral_urn: {
+ char: "⚱️",
+ key: "funeral_urn",
+ keywords: ["funeral_urn", "FUNERAL URN"],
+ category: "objects",
+ lib: {
+ name: "FUNERAL URN",
+ unified: "26B1-FE0F",
+ non_qualified: "26B1",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "26b1-fe0f.png",
+ sheet_x: 58,
+ sheet_y: 13,
+ short_name: "funeral_urn",
+ short_names: ["funeral_urn"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "other-object",
+ sort_order: 1378,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ nazar_amulet: {
+ char: "🧿",
+ key: "nazar_amulet",
+ keywords: ["nazar_amulet", "NAZAR AMULET"],
+ category: "objects",
+ lib: {
+ name: "NAZAR AMULET",
+ unified: "1F9FF",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f9ff.png",
+ sheet_x: 53,
+ sheet_y: 47,
+ short_name: "nazar_amulet",
+ short_names: ["nazar_amulet"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "other-object",
+ sort_order: 1379,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ hamsa: {
+ char: "🪬",
+ key: "hamsa",
+ keywords: ["hamsa", "HAMSA"],
+ category: "objects",
+ lib: {
+ name: "HAMSA",
+ unified: "1FAAC",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1faac.png",
+ sheet_x: 54,
+ sheet_y: 37,
+ short_name: "hamsa",
+ short_names: ["hamsa"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "other-object",
+ sort_order: 1380,
+ added_in: "14.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ moyai: {
+ char: "🗿",
+ key: "moyai",
+ keywords: ["moyai", "MOYAI"],
+ category: "objects",
+ lib: {
+ name: "MOYAI",
+ unified: "1F5FF",
+ non_qualified: null,
+ docomo: null,
+ au: "EB6C",
+ softbank: null,
+ google: "FE4C8",
+ image: "1f5ff.png",
+ sheet_x: 32,
+ sheet_y: 20,
+ short_name: "moyai",
+ short_names: ["moyai"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "other-object",
+ sort_order: 1381,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ placard: {
+ char: "🪧",
+ key: "placard",
+ keywords: ["placard", "PLACARD"],
+ category: "objects",
+ lib: {
+ name: "PLACARD",
+ unified: "1FAA7",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1faa7.png",
+ sheet_x: 54,
+ sheet_y: 32,
+ short_name: "placard",
+ short_names: ["placard"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "other-object",
+ sort_order: 1382,
+ added_in: "13.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ identification_card: {
+ char: "🪪",
+ key: "identification_card",
+ keywords: ["identification_card", "IDENTIFICATION CARD"],
+ category: "objects",
+ lib: {
+ name: "IDENTIFICATION CARD",
+ unified: "1FAAA",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1faaa.png",
+ sheet_x: 54,
+ sheet_y: 35,
+ short_name: "identification_card",
+ short_names: ["identification_card"],
+ text: null,
+ texts: null,
+ category: "Objects",
+ subcategory: "other-object",
+ sort_order: 1383,
+ added_in: "14.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ atm: {
+ char: "🏧",
+ key: "atm",
+ keywords: ["atm", "AUTOMATED TELLER MACHINE"],
+ category: "symbols",
+ lib: {
+ name: "AUTOMATED TELLER MACHINE",
+ unified: "1F3E7",
+ non_qualified: null,
+ docomo: "E668",
+ au: "E4A3",
+ softbank: "E154",
+ google: "FE4B6",
+ image: "1f3e7.png",
+ sheet_x: 10,
+ sheet_y: 18,
+ short_name: "atm",
+ short_names: ["atm"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "transport-sign",
+ sort_order: 1384,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ put_litter_in_its_place: {
+ char: "🚮",
+ key: "put_litter_in_its_place",
+ keywords: ["put_litter_in_its_place", "PUT LITTER IN ITS PLACE SYMBOL"],
+ category: "symbols",
+ lib: {
+ name: "PUT LITTER IN ITS PLACE SYMBOL",
+ unified: "1F6AE",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f6ae.png",
+ sheet_x: 36,
+ sheet_y: 35,
+ short_name: "put_litter_in_its_place",
+ short_names: ["put_litter_in_its_place"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "transport-sign",
+ sort_order: 1385,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ potable_water: {
+ char: "🚰",
+ key: "potable_water",
+ keywords: ["potable_water", "POTABLE WATER SYMBOL"],
+ category: "symbols",
+ lib: {
+ name: "POTABLE WATER SYMBOL",
+ unified: "1F6B0",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f6b0.png",
+ sheet_x: 36,
+ sheet_y: 37,
+ short_name: "potable_water",
+ short_names: ["potable_water"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "transport-sign",
+ sort_order: 1386,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ wheelchair: {
+ char: "♿",
+ key: "wheelchair",
+ keywords: ["wheelchair", "WHEELCHAIR SYMBOL"],
+ category: "symbols",
+ lib: {
+ name: "WHEELCHAIR SYMBOL",
+ unified: "267F",
+ non_qualified: null,
+ docomo: "E69B",
+ au: "E47F",
+ softbank: "E20A",
+ google: "FEB20",
+ image: "267f.png",
+ sheet_x: 57,
+ sheet_y: 58,
+ short_name: "wheelchair",
+ short_names: ["wheelchair"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "transport-sign",
+ sort_order: 1387,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ mens: {
+ char: "🚹",
+ key: "mens",
+ keywords: ["mens", "MENS SYMBOL"],
+ category: "symbols",
+ lib: {
+ name: "MENS SYMBOL",
+ unified: "1F6B9",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: "E138",
+ google: "FEB33",
+ image: "1f6b9.png",
+ sheet_x: 37,
+ sheet_y: 36,
+ short_name: "mens",
+ short_names: ["mens"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "transport-sign",
+ sort_order: 1388,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ womens: {
+ char: "🚺",
+ key: "womens",
+ keywords: ["womens", "WOMENS SYMBOL"],
+ category: "symbols",
+ lib: {
+ name: "WOMENS SYMBOL",
+ unified: "1F6BA",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: "E139",
+ google: "FEB34",
+ image: "1f6ba.png",
+ sheet_x: 37,
+ sheet_y: 37,
+ short_name: "womens",
+ short_names: ["womens"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "transport-sign",
+ sort_order: 1389,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ restroom: {
+ char: "🚻",
+ key: "restroom",
+ keywords: ["restroom", "RESTROOM"],
+ category: "symbols",
+ lib: {
+ name: "RESTROOM",
+ unified: "1F6BB",
+ non_qualified: null,
+ docomo: "E66E",
+ au: "E4A5",
+ softbank: "E151",
+ google: "FE506",
+ image: "1f6bb.png",
+ sheet_x: 37,
+ sheet_y: 38,
+ short_name: "restroom",
+ short_names: ["restroom"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "transport-sign",
+ sort_order: 1390,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ baby_symbol: {
+ char: "🚼",
+ key: "baby_symbol",
+ keywords: ["baby_symbol", "BABY SYMBOL"],
+ category: "symbols",
+ lib: {
+ name: "BABY SYMBOL",
+ unified: "1F6BC",
+ non_qualified: null,
+ docomo: null,
+ au: "EB18",
+ softbank: "E13A",
+ google: "FEB35",
+ image: "1f6bc.png",
+ sheet_x: 37,
+ sheet_y: 39,
+ short_name: "baby_symbol",
+ short_names: ["baby_symbol"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "transport-sign",
+ sort_order: 1391,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ wc: {
+ char: "🚾",
+ key: "wc",
+ keywords: ["wc", "WATER CLOSET"],
+ category: "symbols",
+ lib: {
+ name: "WATER CLOSET",
+ unified: "1F6BE",
+ non_qualified: null,
+ docomo: "E66E",
+ au: "E4A5",
+ softbank: "E309",
+ google: "FE508",
+ image: "1f6be.png",
+ sheet_x: 37,
+ sheet_y: 41,
+ short_name: "wc",
+ short_names: ["wc"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "transport-sign",
+ sort_order: 1392,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ passport_control: {
+ char: "🛂",
+ key: "passport_control",
+ keywords: ["passport_control", "PASSPORT CONTROL"],
+ category: "symbols",
+ lib: {
+ name: "PASSPORT CONTROL",
+ unified: "1F6C2",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f6c2.png",
+ sheet_x: 37,
+ sheet_y: 50,
+ short_name: "passport_control",
+ short_names: ["passport_control"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "transport-sign",
+ sort_order: 1393,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ customs: {
+ char: "🛃",
+ key: "customs",
+ keywords: ["customs", "CUSTOMS"],
+ category: "symbols",
+ lib: {
+ name: "CUSTOMS",
+ unified: "1F6C3",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f6c3.png",
+ sheet_x: 37,
+ sheet_y: 51,
+ short_name: "customs",
+ short_names: ["customs"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "transport-sign",
+ sort_order: 1394,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ baggage_claim: {
+ char: "🛄",
+ key: "baggage_claim",
+ keywords: ["baggage_claim", "BAGGAGE CLAIM"],
+ category: "symbols",
+ lib: {
+ name: "BAGGAGE CLAIM",
+ unified: "1F6C4",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f6c4.png",
+ sheet_x: 37,
+ sheet_y: 52,
+ short_name: "baggage_claim",
+ short_names: ["baggage_claim"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "transport-sign",
+ sort_order: 1395,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ left_luggage: {
+ char: "🛅",
+ key: "left_luggage",
+ keywords: ["left_luggage", "LEFT LUGGAGE"],
+ category: "symbols",
+ lib: {
+ name: "LEFT LUGGAGE",
+ unified: "1F6C5",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f6c5.png",
+ sheet_x: 37,
+ sheet_y: 53,
+ short_name: "left_luggage",
+ short_names: ["left_luggage"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "transport-sign",
+ sort_order: 1396,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ warning: {
+ char: "⚠️",
+ key: "warning",
+ keywords: ["warning", "WARNING SIGN"],
+ category: "symbols",
+ lib: {
+ name: "WARNING SIGN",
+ unified: "26A0-FE0F",
+ non_qualified: "26A0",
+ docomo: "E737",
+ au: "E481",
+ softbank: "E252",
+ google: "FEB23",
+ image: "26a0-fe0f.png",
+ sheet_x: 58,
+ sheet_y: 7,
+ short_name: "warning",
+ short_names: ["warning"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "warning",
+ sort_order: 1397,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ children_crossing: {
+ char: "🚸",
+ key: "children_crossing",
+ keywords: ["children_crossing", "CHILDREN CROSSING"],
+ category: "symbols",
+ lib: {
+ name: "CHILDREN CROSSING",
+ unified: "1F6B8",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f6b8.png",
+ sheet_x: 37,
+ sheet_y: 35,
+ short_name: "children_crossing",
+ short_names: ["children_crossing"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "warning",
+ sort_order: 1398,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ no_entry: {
+ char: "⛔",
+ key: "no_entry",
+ keywords: ["no_entry", "NO ENTRY"],
+ category: "symbols",
+ lib: {
+ name: "NO ENTRY",
+ unified: "26D4",
+ non_qualified: null,
+ docomo: "E72F",
+ au: "E484",
+ softbank: null,
+ google: "FEB26",
+ image: "26d4.png",
+ sheet_x: 58,
+ sheet_y: 23,
+ short_name: "no_entry",
+ short_names: ["no_entry"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "warning",
+ sort_order: 1399,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ no_entry_sign: {
+ char: "🚫",
+ key: "no_entry_sign",
+ keywords: ["no_entry_sign", "NO ENTRY SIGN"],
+ category: "symbols",
+ lib: {
+ name: "NO ENTRY SIGN",
+ unified: "1F6AB",
+ non_qualified: null,
+ docomo: "E738",
+ au: "E541",
+ softbank: null,
+ google: "FEB48",
+ image: "1f6ab.png",
+ sheet_x: 36,
+ sheet_y: 32,
+ short_name: "no_entry_sign",
+ short_names: ["no_entry_sign"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "warning",
+ sort_order: 1400,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ no_bicycles: {
+ char: "🚳",
+ key: "no_bicycles",
+ keywords: ["no_bicycles", "NO BICYCLES"],
+ category: "symbols",
+ lib: {
+ name: "NO BICYCLES",
+ unified: "1F6B3",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f6b3.png",
+ sheet_x: 36,
+ sheet_y: 40,
+ short_name: "no_bicycles",
+ short_names: ["no_bicycles"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "warning",
+ sort_order: 1401,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ no_smoking: {
+ char: "🚭",
+ key: "no_smoking",
+ keywords: ["no_smoking", "NO SMOKING SYMBOL"],
+ category: "symbols",
+ lib: {
+ name: "NO SMOKING SYMBOL",
+ unified: "1F6AD",
+ non_qualified: null,
+ docomo: "E680",
+ au: "E47E",
+ softbank: "E208",
+ google: "FEB1F",
+ image: "1f6ad.png",
+ sheet_x: 36,
+ sheet_y: 34,
+ short_name: "no_smoking",
+ short_names: ["no_smoking"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "warning",
+ sort_order: 1402,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ do_not_litter: {
+ char: "🚯",
+ key: "do_not_litter",
+ keywords: ["do_not_litter", "DO NOT LITTER SYMBOL"],
+ category: "symbols",
+ lib: {
+ name: "DO NOT LITTER SYMBOL",
+ unified: "1F6AF",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f6af.png",
+ sheet_x: 36,
+ sheet_y: 36,
+ short_name: "do_not_litter",
+ short_names: ["do_not_litter"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "warning",
+ sort_order: 1403,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "non-potable_water": {
+ char: "🚱",
+ key: "non-potable_water",
+ keywords: ["non-potable_water", "NON-POTABLE WATER SYMBOL"],
+ category: "symbols",
+ lib: {
+ name: "NON-POTABLE WATER SYMBOL",
+ unified: "1F6B1",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f6b1.png",
+ sheet_x: 36,
+ sheet_y: 38,
+ short_name: "non-potable_water",
+ short_names: ["non-potable_water"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "warning",
+ sort_order: 1404,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ no_pedestrians: {
+ char: "🚷",
+ key: "no_pedestrians",
+ keywords: ["no_pedestrians", "NO PEDESTRIANS"],
+ category: "symbols",
+ lib: {
+ name: "NO PEDESTRIANS",
+ unified: "1F6B7",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f6b7.png",
+ sheet_x: 37,
+ sheet_y: 34,
+ short_name: "no_pedestrians",
+ short_names: ["no_pedestrians"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "warning",
+ sort_order: 1405,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ no_mobile_phones: {
+ char: "📵",
+ key: "no_mobile_phones",
+ keywords: ["no_mobile_phones", "NO MOBILE PHONES"],
+ category: "symbols",
+ lib: {
+ name: "NO MOBILE PHONES",
+ unified: "1F4F5",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f4f5.png",
+ sheet_x: 29,
+ sheet_y: 16,
+ short_name: "no_mobile_phones",
+ short_names: ["no_mobile_phones"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "warning",
+ sort_order: 1406,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ underage: {
+ char: "🔞",
+ key: "underage",
+ keywords: ["underage", "NO ONE UNDER EIGHTEEN SYMBOL"],
+ category: "symbols",
+ lib: {
+ name: "NO ONE UNDER EIGHTEEN SYMBOL",
+ unified: "1F51E",
+ non_qualified: null,
+ docomo: null,
+ au: "EA83",
+ softbank: "E207",
+ google: "FEB25",
+ image: "1f51e.png",
+ sheet_x: 29,
+ sheet_y: 56,
+ short_name: "underage",
+ short_names: ["underage"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "warning",
+ sort_order: 1407,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ radioactive_sign: {
+ char: "☢️",
+ key: "radioactive_sign",
+ keywords: ["radioactive_sign", "RADIOACTIVE"],
+ category: "symbols",
+ lib: {
+ name: "RADIOACTIVE",
+ unified: "2622-FE0F",
+ non_qualified: "2622",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "2622-fe0f.png",
+ sheet_x: 57,
+ sheet_y: 27,
+ short_name: "radioactive_sign",
+ short_names: ["radioactive_sign"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "warning",
+ sort_order: 1408,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ biohazard_sign: {
+ char: "☣️",
+ key: "biohazard_sign",
+ keywords: ["biohazard_sign", "BIOHAZARD"],
+ category: "symbols",
+ lib: {
+ name: "BIOHAZARD",
+ unified: "2623-FE0F",
+ non_qualified: "2623",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "2623-fe0f.png",
+ sheet_x: 57,
+ sheet_y: 28,
+ short_name: "biohazard_sign",
+ short_names: ["biohazard_sign"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "warning",
+ sort_order: 1409,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ arrow_up: {
+ char: "⬆️",
+ key: "arrow_up",
+ keywords: ["arrow_up", "UPWARDS BLACK ARROW"],
+ category: "symbols",
+ lib: {
+ name: "UPWARDS BLACK ARROW",
+ unified: "2B06-FE0F",
+ non_qualified: "2B06",
+ docomo: null,
+ au: "E53F",
+ softbank: "E232",
+ google: "FEAF8",
+ image: "2b06-fe0f.png",
+ sheet_x: 59,
+ sheet_y: 51,
+ short_name: "arrow_up",
+ short_names: ["arrow_up"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "arrow",
+ sort_order: 1410,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ arrow_upper_right: {
+ char: "↗️",
+ key: "arrow_upper_right",
+ keywords: ["arrow_upper_right", "NORTH EAST ARROW"],
+ category: "symbols",
+ lib: {
+ name: "NORTH EAST ARROW",
+ unified: "2197-FE0F",
+ non_qualified: "2197",
+ docomo: "E678",
+ au: "E555",
+ softbank: "E236",
+ google: "FEAF0",
+ image: "2197-fe0f.png",
+ sheet_x: 56,
+ sheet_y: 39,
+ short_name: "arrow_upper_right",
+ short_names: ["arrow_upper_right"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "arrow",
+ sort_order: 1411,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ arrow_right: {
+ char: "➡️",
+ key: "arrow_right",
+ keywords: ["arrow_right", "BLACK RIGHTWARDS ARROW"],
+ category: "symbols",
+ lib: {
+ name: "BLACK RIGHTWARDS ARROW",
+ unified: "27A1-FE0F",
+ non_qualified: "27A1",
+ docomo: null,
+ au: "E552",
+ softbank: "E234",
+ google: "FEAFA",
+ image: "27a1-fe0f.png",
+ sheet_x: 59,
+ sheet_y: 45,
+ short_name: "arrow_right",
+ short_names: ["arrow_right"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "arrow",
+ sort_order: 1412,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ arrow_lower_right: {
+ char: "↘️",
+ key: "arrow_lower_right",
+ keywords: ["arrow_lower_right", "SOUTH EAST ARROW"],
+ category: "symbols",
+ lib: {
+ name: "SOUTH EAST ARROW",
+ unified: "2198-FE0F",
+ non_qualified: "2198",
+ docomo: "E696",
+ au: "E54D",
+ softbank: "E238",
+ google: "FEAF1",
+ image: "2198-fe0f.png",
+ sheet_x: 56,
+ sheet_y: 40,
+ short_name: "arrow_lower_right",
+ short_names: ["arrow_lower_right"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "arrow",
+ sort_order: 1413,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ arrow_down: {
+ char: "⬇️",
+ key: "arrow_down",
+ keywords: ["arrow_down", "DOWNWARDS BLACK ARROW"],
+ category: "symbols",
+ lib: {
+ name: "DOWNWARDS BLACK ARROW",
+ unified: "2B07-FE0F",
+ non_qualified: "2B07",
+ docomo: null,
+ au: "E540",
+ softbank: "E233",
+ google: "FEAF9",
+ image: "2b07-fe0f.png",
+ sheet_x: 59,
+ sheet_y: 52,
+ short_name: "arrow_down",
+ short_names: ["arrow_down"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "arrow",
+ sort_order: 1414,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ arrow_lower_left: {
+ char: "↙️",
+ key: "arrow_lower_left",
+ keywords: ["arrow_lower_left", "SOUTH WEST ARROW"],
+ category: "symbols",
+ lib: {
+ name: "SOUTH WEST ARROW",
+ unified: "2199-FE0F",
+ non_qualified: "2199",
+ docomo: "E6A5",
+ au: "E556",
+ softbank: "E239",
+ google: "FEAF3",
+ image: "2199-fe0f.png",
+ sheet_x: 56,
+ sheet_y: 41,
+ short_name: "arrow_lower_left",
+ short_names: ["arrow_lower_left"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "arrow",
+ sort_order: 1415,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ arrow_left: {
+ char: "⬅️",
+ key: "arrow_left",
+ keywords: ["arrow_left", "LEFTWARDS BLACK ARROW"],
+ category: "symbols",
+ lib: {
+ name: "LEFTWARDS BLACK ARROW",
+ unified: "2B05-FE0F",
+ non_qualified: "2B05",
+ docomo: null,
+ au: "E553",
+ softbank: "E235",
+ google: "FEAFB",
+ image: "2b05-fe0f.png",
+ sheet_x: 59,
+ sheet_y: 50,
+ short_name: "arrow_left",
+ short_names: ["arrow_left"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "arrow",
+ sort_order: 1416,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ arrow_upper_left: {
+ char: "↖️",
+ key: "arrow_upper_left",
+ keywords: ["arrow_upper_left", "NORTH WEST ARROW"],
+ category: "symbols",
+ lib: {
+ name: "NORTH WEST ARROW",
+ unified: "2196-FE0F",
+ non_qualified: "2196",
+ docomo: "E697",
+ au: "E54C",
+ softbank: "E237",
+ google: "FEAF2",
+ image: "2196-fe0f.png",
+ sheet_x: 56,
+ sheet_y: 38,
+ short_name: "arrow_upper_left",
+ short_names: ["arrow_upper_left"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "arrow",
+ sort_order: 1417,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ arrow_up_down: {
+ char: "↕️",
+ key: "arrow_up_down",
+ keywords: ["arrow_up_down", "UP DOWN ARROW"],
+ category: "symbols",
+ lib: {
+ name: "UP DOWN ARROW",
+ unified: "2195-FE0F",
+ non_qualified: "2195",
+ docomo: "E73D",
+ au: "EB7B",
+ softbank: null,
+ google: "FEAF7",
+ image: "2195-fe0f.png",
+ sheet_x: 56,
+ sheet_y: 37,
+ short_name: "arrow_up_down",
+ short_names: ["arrow_up_down"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "arrow",
+ sort_order: 1418,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ left_right_arrow: {
+ char: "↔️",
+ key: "left_right_arrow",
+ keywords: ["left_right_arrow", "LEFT RIGHT ARROW"],
+ category: "symbols",
+ lib: {
+ name: "LEFT RIGHT ARROW",
+ unified: "2194-FE0F",
+ non_qualified: "2194",
+ docomo: "E73C",
+ au: "EB7A",
+ softbank: null,
+ google: "FEAF6",
+ image: "2194-fe0f.png",
+ sheet_x: 56,
+ sheet_y: 36,
+ short_name: "left_right_arrow",
+ short_names: ["left_right_arrow"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "arrow",
+ sort_order: 1419,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ leftwards_arrow_with_hook: {
+ char: "↩️",
+ key: "leftwards_arrow_with_hook",
+ keywords: ["leftwards_arrow_with_hook", "LEFTWARDS ARROW WITH HOOK"],
+ category: "symbols",
+ lib: {
+ name: "LEFTWARDS ARROW WITH HOOK",
+ unified: "21A9-FE0F",
+ non_qualified: "21A9",
+ docomo: "E6DA",
+ au: "E55D",
+ softbank: null,
+ google: "FEB83",
+ image: "21a9-fe0f.png",
+ sheet_x: 56,
+ sheet_y: 42,
+ short_name: "leftwards_arrow_with_hook",
+ short_names: ["leftwards_arrow_with_hook"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "arrow",
+ sort_order: 1420,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ arrow_right_hook: {
+ char: "↪️",
+ key: "arrow_right_hook",
+ keywords: ["arrow_right_hook", "RIGHTWARDS ARROW WITH HOOK"],
+ category: "symbols",
+ lib: {
+ name: "RIGHTWARDS ARROW WITH HOOK",
+ unified: "21AA-FE0F",
+ non_qualified: "21AA",
+ docomo: null,
+ au: "E55C",
+ softbank: null,
+ google: "FEB88",
+ image: "21aa-fe0f.png",
+ sheet_x: 56,
+ sheet_y: 43,
+ short_name: "arrow_right_hook",
+ short_names: ["arrow_right_hook"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "arrow",
+ sort_order: 1421,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ arrow_heading_up: {
+ char: "⤴️",
+ key: "arrow_heading_up",
+ keywords: [
+ "arrow_heading_up",
+ "ARROW POINTING RIGHTWARDS THEN CURVING UPWARDS",
+ ],
+ category: "symbols",
+ lib: {
+ name: "ARROW POINTING RIGHTWARDS THEN CURVING UPWARDS",
+ unified: "2934-FE0F",
+ non_qualified: "2934",
+ docomo: "E6F5",
+ au: "EB2D",
+ softbank: null,
+ google: "FEAF4",
+ image: "2934-fe0f.png",
+ sheet_x: 59,
+ sheet_y: 48,
+ short_name: "arrow_heading_up",
+ short_names: ["arrow_heading_up"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "arrow",
+ sort_order: 1422,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ arrow_heading_down: {
+ char: "⤵️",
+ key: "arrow_heading_down",
+ keywords: [
+ "arrow_heading_down",
+ "ARROW POINTING RIGHTWARDS THEN CURVING DOWNWARDS",
+ ],
+ category: "symbols",
+ lib: {
+ name: "ARROW POINTING RIGHTWARDS THEN CURVING DOWNWARDS",
+ unified: "2935-FE0F",
+ non_qualified: "2935",
+ docomo: "E700",
+ au: "EB2E",
+ softbank: null,
+ google: "FEAF5",
+ image: "2935-fe0f.png",
+ sheet_x: 59,
+ sheet_y: 49,
+ short_name: "arrow_heading_down",
+ short_names: ["arrow_heading_down"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "arrow",
+ sort_order: 1423,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ arrows_clockwise: {
+ char: "🔃",
+ key: "arrows_clockwise",
+ keywords: [
+ "arrows_clockwise",
+ "CLOCKWISE DOWNWARDS AND UPWARDS OPEN CIRCLE ARROWS",
+ ],
+ category: "symbols",
+ lib: {
+ name: "CLOCKWISE DOWNWARDS AND UPWARDS OPEN CIRCLE ARROWS",
+ unified: "1F503",
+ non_qualified: null,
+ docomo: "E735",
+ au: "EB0D",
+ softbank: null,
+ google: "FEB91",
+ image: "1f503.png",
+ sheet_x: 29,
+ sheet_y: 29,
+ short_name: "arrows_clockwise",
+ short_names: ["arrows_clockwise"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "arrow",
+ sort_order: 1424,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ arrows_counterclockwise: {
+ char: "🔄",
+ key: "arrows_counterclockwise",
+ keywords: [
+ "arrows_counterclockwise",
+ "ANTICLOCKWISE DOWNWARDS AND UPWARDS OPEN CIRCLE ARROWS",
+ ],
+ category: "symbols",
+ lib: {
+ name: "ANTICLOCKWISE DOWNWARDS AND UPWARDS OPEN CIRCLE ARROWS",
+ unified: "1F504",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f504.png",
+ sheet_x: 29,
+ sheet_y: 30,
+ short_name: "arrows_counterclockwise",
+ short_names: ["arrows_counterclockwise"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "arrow",
+ sort_order: 1425,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ back: {
+ char: "🔙",
+ key: "back",
+ keywords: ["back", "BACK WITH LEFTWARDS ARROW ABOVE"],
+ category: "symbols",
+ lib: {
+ name: "BACK WITH LEFTWARDS ARROW ABOVE",
+ unified: "1F519",
+ non_qualified: null,
+ docomo: null,
+ au: "EB06",
+ softbank: null,
+ google: "FEB8E",
+ image: "1f519.png",
+ sheet_x: 29,
+ sheet_y: 51,
+ short_name: "back",
+ short_names: ["back"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "arrow",
+ sort_order: 1426,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ end: {
+ char: "🔚",
+ key: "end",
+ keywords: ["end", "END WITH LEFTWARDS ARROW ABOVE"],
+ category: "symbols",
+ lib: {
+ name: "END WITH LEFTWARDS ARROW ABOVE",
+ unified: "1F51A",
+ non_qualified: null,
+ docomo: "E6B9",
+ au: null,
+ softbank: null,
+ google: "FE01A",
+ image: "1f51a.png",
+ sheet_x: 29,
+ sheet_y: 52,
+ short_name: "end",
+ short_names: ["end"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "arrow",
+ sort_order: 1427,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ on: {
+ char: "🔛",
+ key: "on",
+ keywords: ["on", "ON WITH EXCLAMATION MARK WITH LEFT RIGHT ARROW ABOVE"],
+ category: "symbols",
+ lib: {
+ name: "ON WITH EXCLAMATION MARK WITH LEFT RIGHT ARROW ABOVE",
+ unified: "1F51B",
+ non_qualified: null,
+ docomo: "E6B8",
+ au: null,
+ softbank: null,
+ google: "FE019",
+ image: "1f51b.png",
+ sheet_x: 29,
+ sheet_y: 53,
+ short_name: "on",
+ short_names: ["on"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "arrow",
+ sort_order: 1428,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ soon: {
+ char: "🔜",
+ key: "soon",
+ keywords: ["soon", "SOON WITH RIGHTWARDS ARROW ABOVE"],
+ category: "symbols",
+ lib: {
+ name: "SOON WITH RIGHTWARDS ARROW ABOVE",
+ unified: "1F51C",
+ non_qualified: null,
+ docomo: "E6B7",
+ au: null,
+ softbank: null,
+ google: "FE018",
+ image: "1f51c.png",
+ sheet_x: 29,
+ sheet_y: 54,
+ short_name: "soon",
+ short_names: ["soon"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "arrow",
+ sort_order: 1429,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ top: {
+ char: "🔝",
+ key: "top",
+ keywords: ["top", "TOP WITH UPWARDS ARROW ABOVE"],
+ category: "symbols",
+ lib: {
+ name: "TOP WITH UPWARDS ARROW ABOVE",
+ unified: "1F51D",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: "E24C",
+ google: "FEB42",
+ image: "1f51d.png",
+ sheet_x: 29,
+ sheet_y: 55,
+ short_name: "top",
+ short_names: ["top"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "arrow",
+ sort_order: 1430,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ place_of_worship: {
+ char: "🛐",
+ key: "place_of_worship",
+ keywords: ["place_of_worship", "PLACE OF WORSHIP"],
+ category: "symbols",
+ lib: {
+ name: "PLACE OF WORSHIP",
+ unified: "1F6D0",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f6d0.png",
+ sheet_x: 38,
+ sheet_y: 3,
+ short_name: "place_of_worship",
+ short_names: ["place_of_worship"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "religion",
+ sort_order: 1431,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ atom_symbol: {
+ char: "⚛️",
+ key: "atom_symbol",
+ keywords: ["atom_symbol", "ATOM SYMBOL"],
+ category: "symbols",
+ lib: {
+ name: "ATOM SYMBOL",
+ unified: "269B-FE0F",
+ non_qualified: "269B",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "269b-fe0f.png",
+ sheet_x: 58,
+ sheet_y: 5,
+ short_name: "atom_symbol",
+ short_names: ["atom_symbol"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "religion",
+ sort_order: 1432,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ om_symbol: {
+ char: "🕉️",
+ key: "om_symbol",
+ keywords: ["om_symbol", "OM"],
+ category: "symbols",
+ lib: {
+ name: "OM",
+ unified: "1F549-FE0F",
+ non_qualified: "1F549",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f549-fe0f.png",
+ sheet_x: 30,
+ sheet_y: 27,
+ short_name: "om_symbol",
+ short_names: ["om_symbol"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "religion",
+ sort_order: 1433,
+ added_in: "0.7",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ star_of_david: {
+ char: "✡️",
+ key: "star_of_david",
+ keywords: ["star_of_david", "STAR OF DAVID"],
+ category: "symbols",
+ lib: {
+ name: "STAR OF DAVID",
+ unified: "2721-FE0F",
+ non_qualified: "2721",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "2721-fe0f.png",
+ sheet_x: 59,
+ sheet_y: 26,
+ short_name: "star_of_david",
+ short_names: ["star_of_david"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "religion",
+ sort_order: 1434,
+ added_in: "0.7",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ wheel_of_dharma: {
+ char: "☸️",
+ key: "wheel_of_dharma",
+ keywords: ["wheel_of_dharma", "WHEEL OF DHARMA"],
+ category: "symbols",
+ lib: {
+ name: "WHEEL OF DHARMA",
+ unified: "2638-FE0F",
+ non_qualified: "2638",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "2638-fe0f.png",
+ sheet_x: 57,
+ sheet_y: 33,
+ short_name: "wheel_of_dharma",
+ short_names: ["wheel_of_dharma"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "religion",
+ sort_order: 1435,
+ added_in: "0.7",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ yin_yang: {
+ char: "☯️",
+ key: "yin_yang",
+ keywords: ["yin_yang", "YIN YANG"],
+ category: "symbols",
+ lib: {
+ name: "YIN YANG",
+ unified: "262F-FE0F",
+ non_qualified: "262F",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "262f-fe0f.png",
+ sheet_x: 57,
+ sheet_y: 32,
+ short_name: "yin_yang",
+ short_names: ["yin_yang"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "religion",
+ sort_order: 1436,
+ added_in: "0.7",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ latin_cross: {
+ char: "✝️",
+ key: "latin_cross",
+ keywords: ["latin_cross", "LATIN CROSS"],
+ category: "symbols",
+ lib: {
+ name: "LATIN CROSS",
+ unified: "271D-FE0F",
+ non_qualified: "271D",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "271d-fe0f.png",
+ sheet_x: 59,
+ sheet_y: 25,
+ short_name: "latin_cross",
+ short_names: ["latin_cross"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "religion",
+ sort_order: 1437,
+ added_in: "0.7",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ orthodox_cross: {
+ char: "☦️",
+ key: "orthodox_cross",
+ keywords: ["orthodox_cross", "ORTHODOX CROSS"],
+ category: "symbols",
+ lib: {
+ name: "ORTHODOX CROSS",
+ unified: "2626-FE0F",
+ non_qualified: "2626",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "2626-fe0f.png",
+ sheet_x: 57,
+ sheet_y: 29,
+ short_name: "orthodox_cross",
+ short_names: ["orthodox_cross"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "religion",
+ sort_order: 1438,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ star_and_crescent: {
+ char: "☪️",
+ key: "star_and_crescent",
+ keywords: ["star_and_crescent", "STAR AND CRESCENT"],
+ category: "symbols",
+ lib: {
+ name: "STAR AND CRESCENT",
+ unified: "262A-FE0F",
+ non_qualified: "262A",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "262a-fe0f.png",
+ sheet_x: 57,
+ sheet_y: 30,
+ short_name: "star_and_crescent",
+ short_names: ["star_and_crescent"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "religion",
+ sort_order: 1439,
+ added_in: "0.7",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ peace_symbol: {
+ char: "☮️",
+ key: "peace_symbol",
+ keywords: ["peace_symbol", "PEACE SYMBOL"],
+ category: "symbols",
+ lib: {
+ name: "PEACE SYMBOL",
+ unified: "262E-FE0F",
+ non_qualified: "262E",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "262e-fe0f.png",
+ sheet_x: 57,
+ sheet_y: 31,
+ short_name: "peace_symbol",
+ short_names: ["peace_symbol"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "religion",
+ sort_order: 1440,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ menorah_with_nine_branches: {
+ char: "🕎",
+ key: "menorah_with_nine_branches",
+ keywords: ["menorah_with_nine_branches", "MENORAH WITH NINE BRANCHES"],
+ category: "symbols",
+ lib: {
+ name: "MENORAH WITH NINE BRANCHES",
+ unified: "1F54E",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f54e.png",
+ sheet_x: 30,
+ sheet_y: 32,
+ short_name: "menorah_with_nine_branches",
+ short_names: ["menorah_with_nine_branches"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "religion",
+ sort_order: 1441,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ six_pointed_star: {
+ char: "🔯",
+ key: "six_pointed_star",
+ keywords: ["six_pointed_star", "SIX POINTED STAR WITH MIDDLE DOT"],
+ category: "symbols",
+ lib: {
+ name: "SIX POINTED STAR WITH MIDDLE DOT",
+ unified: "1F52F",
+ non_qualified: null,
+ docomo: null,
+ au: "EA8F",
+ softbank: "E23E",
+ google: "FE4F8",
+ image: "1f52f.png",
+ sheet_x: 30,
+ sheet_y: 12,
+ short_name: "six_pointed_star",
+ short_names: ["six_pointed_star"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "religion",
+ sort_order: 1442,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ khanda: {
+ char: "🪯",
+ key: "khanda",
+ keywords: ["khanda", "KHANDA"],
+ category: "symbols",
+ lib: {
+ name: "KHANDA",
+ unified: "1FAAF",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1faaf.png",
+ sheet_x: 54,
+ sheet_y: 40,
+ short_name: "khanda",
+ short_names: ["khanda"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "religion",
+ sort_order: 1443,
+ added_in: "15.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: false,
+ has_img_facebook: false,
+ },
+ },
+ aries: {
+ char: "♈",
+ key: "aries",
+ keywords: ["aries", "ARIES"],
+ category: "symbols",
+ lib: {
+ name: "ARIES",
+ unified: "2648",
+ non_qualified: null,
+ docomo: "E646",
+ au: "E48F",
+ softbank: "E23F",
+ google: "FE02B",
+ image: "2648.png",
+ sheet_x: 57,
+ sheet_y: 38,
+ short_name: "aries",
+ short_names: ["aries"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "zodiac",
+ sort_order: 1444,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ taurus: {
+ char: "♉",
+ key: "taurus",
+ keywords: ["taurus", "TAURUS"],
+ category: "symbols",
+ lib: {
+ name: "TAURUS",
+ unified: "2649",
+ non_qualified: null,
+ docomo: "E647",
+ au: "E490",
+ softbank: "E240",
+ google: "FE02C",
+ image: "2649.png",
+ sheet_x: 57,
+ sheet_y: 39,
+ short_name: "taurus",
+ short_names: ["taurus"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "zodiac",
+ sort_order: 1445,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ gemini: {
+ char: "♊",
+ key: "gemini",
+ keywords: ["gemini", "GEMINI"],
+ category: "symbols",
+ lib: {
+ name: "GEMINI",
+ unified: "264A",
+ non_qualified: null,
+ docomo: "E648",
+ au: "E491",
+ softbank: "E241",
+ google: "FE02D",
+ image: "264a.png",
+ sheet_x: 57,
+ sheet_y: 40,
+ short_name: "gemini",
+ short_names: ["gemini"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "zodiac",
+ sort_order: 1446,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ cancer: {
+ char: "♋",
+ key: "cancer",
+ keywords: ["cancer", "CANCER"],
+ category: "symbols",
+ lib: {
+ name: "CANCER",
+ unified: "264B",
+ non_qualified: null,
+ docomo: "E649",
+ au: "E492",
+ softbank: "E242",
+ google: "FE02E",
+ image: "264b.png",
+ sheet_x: 57,
+ sheet_y: 41,
+ short_name: "cancer",
+ short_names: ["cancer"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "zodiac",
+ sort_order: 1447,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ leo: {
+ char: "♌",
+ key: "leo",
+ keywords: ["leo", "LEO"],
+ category: "symbols",
+ lib: {
+ name: "LEO",
+ unified: "264C",
+ non_qualified: null,
+ docomo: "E64A",
+ au: "E493",
+ softbank: "E243",
+ google: "FE02F",
+ image: "264c.png",
+ sheet_x: 57,
+ sheet_y: 42,
+ short_name: "leo",
+ short_names: ["leo"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "zodiac",
+ sort_order: 1448,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ virgo: {
+ char: "♍",
+ key: "virgo",
+ keywords: ["virgo", "VIRGO"],
+ category: "symbols",
+ lib: {
+ name: "VIRGO",
+ unified: "264D",
+ non_qualified: null,
+ docomo: "E64B",
+ au: "E494",
+ softbank: "E244",
+ google: "FE030",
+ image: "264d.png",
+ sheet_x: 57,
+ sheet_y: 43,
+ short_name: "virgo",
+ short_names: ["virgo"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "zodiac",
+ sort_order: 1449,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ libra: {
+ char: "♎",
+ key: "libra",
+ keywords: ["libra", "LIBRA"],
+ category: "symbols",
+ lib: {
+ name: "LIBRA",
+ unified: "264E",
+ non_qualified: null,
+ docomo: "E64C",
+ au: "E495",
+ softbank: "E245",
+ google: "FE031",
+ image: "264e.png",
+ sheet_x: 57,
+ sheet_y: 44,
+ short_name: "libra",
+ short_names: ["libra"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "zodiac",
+ sort_order: 1450,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ scorpius: {
+ char: "♏",
+ key: "scorpius",
+ keywords: ["scorpius", "SCORPIUS"],
+ category: "symbols",
+ lib: {
+ name: "SCORPIUS",
+ unified: "264F",
+ non_qualified: null,
+ docomo: "E64D",
+ au: "E496",
+ softbank: "E246",
+ google: "FE032",
+ image: "264f.png",
+ sheet_x: 57,
+ sheet_y: 45,
+ short_name: "scorpius",
+ short_names: ["scorpius"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "zodiac",
+ sort_order: 1451,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ sagittarius: {
+ char: "♐",
+ key: "sagittarius",
+ keywords: ["sagittarius", "SAGITTARIUS"],
+ category: "symbols",
+ lib: {
+ name: "SAGITTARIUS",
+ unified: "2650",
+ non_qualified: null,
+ docomo: "E64E",
+ au: "E497",
+ softbank: "E247",
+ google: "FE033",
+ image: "2650.png",
+ sheet_x: 57,
+ sheet_y: 46,
+ short_name: "sagittarius",
+ short_names: ["sagittarius"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "zodiac",
+ sort_order: 1452,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ capricorn: {
+ char: "♑",
+ key: "capricorn",
+ keywords: ["capricorn", "CAPRICORN"],
+ category: "symbols",
+ lib: {
+ name: "CAPRICORN",
+ unified: "2651",
+ non_qualified: null,
+ docomo: "E64F",
+ au: "E498",
+ softbank: "E248",
+ google: "FE034",
+ image: "2651.png",
+ sheet_x: 57,
+ sheet_y: 47,
+ short_name: "capricorn",
+ short_names: ["capricorn"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "zodiac",
+ sort_order: 1453,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ aquarius: {
+ char: "♒",
+ key: "aquarius",
+ keywords: ["aquarius", "AQUARIUS"],
+ category: "symbols",
+ lib: {
+ name: "AQUARIUS",
+ unified: "2652",
+ non_qualified: null,
+ docomo: "E650",
+ au: "E499",
+ softbank: "E249",
+ google: "FE035",
+ image: "2652.png",
+ sheet_x: 57,
+ sheet_y: 48,
+ short_name: "aquarius",
+ short_names: ["aquarius"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "zodiac",
+ sort_order: 1454,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ pisces: {
+ char: "♓",
+ key: "pisces",
+ keywords: ["pisces", "PISCES"],
+ category: "symbols",
+ lib: {
+ name: "PISCES",
+ unified: "2653",
+ non_qualified: null,
+ docomo: "E651",
+ au: "E49A",
+ softbank: "E24A",
+ google: "FE036",
+ image: "2653.png",
+ sheet_x: 57,
+ sheet_y: 49,
+ short_name: "pisces",
+ short_names: ["pisces"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "zodiac",
+ sort_order: 1455,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ ophiuchus: {
+ char: "⛎",
+ key: "ophiuchus",
+ keywords: ["ophiuchus", "OPHIUCHUS"],
+ category: "symbols",
+ lib: {
+ name: "OPHIUCHUS",
+ unified: "26CE",
+ non_qualified: null,
+ docomo: null,
+ au: "E49B",
+ softbank: "E24B",
+ google: "FE037",
+ image: "26ce.png",
+ sheet_x: 58,
+ sheet_y: 19,
+ short_name: "ophiuchus",
+ short_names: ["ophiuchus"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "zodiac",
+ sort_order: 1456,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ twisted_rightwards_arrows: {
+ char: "🔀",
+ key: "twisted_rightwards_arrows",
+ keywords: ["twisted_rightwards_arrows", "TWISTED RIGHTWARDS ARROWS"],
+ category: "symbols",
+ lib: {
+ name: "TWISTED RIGHTWARDS ARROWS",
+ unified: "1F500",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f500.png",
+ sheet_x: 29,
+ sheet_y: 26,
+ short_name: "twisted_rightwards_arrows",
+ short_names: ["twisted_rightwards_arrows"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "av-symbol",
+ sort_order: 1457,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ repeat: {
+ char: "🔁",
+ key: "repeat",
+ keywords: [
+ "repeat",
+ "CLOCKWISE RIGHTWARDS AND LEFTWARDS OPEN CIRCLE ARROWS",
+ ],
+ category: "symbols",
+ lib: {
+ name: "CLOCKWISE RIGHTWARDS AND LEFTWARDS OPEN CIRCLE ARROWS",
+ unified: "1F501",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f501.png",
+ sheet_x: 29,
+ sheet_y: 27,
+ short_name: "repeat",
+ short_names: ["repeat"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "av-symbol",
+ sort_order: 1458,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ repeat_one: {
+ char: "🔂",
+ key: "repeat_one",
+ keywords: [
+ "repeat_one",
+ "CLOCKWISE RIGHTWARDS AND LEFTWARDS OPEN CIRCLE ARROWS WITH CIRCLED ONE OVERLAY",
+ ],
+ category: "symbols",
+ lib: {
+ name: "CLOCKWISE RIGHTWARDS AND LEFTWARDS OPEN CIRCLE ARROWS WITH CIRCLED ONE OVERLAY",
+ unified: "1F502",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f502.png",
+ sheet_x: 29,
+ sheet_y: 28,
+ short_name: "repeat_one",
+ short_names: ["repeat_one"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "av-symbol",
+ sort_order: 1459,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ arrow_forward: {
+ char: "▶️",
+ key: "arrow_forward",
+ keywords: ["arrow_forward", "BLACK RIGHT-POINTING TRIANGLE"],
+ category: "symbols",
+ lib: {
+ name: "BLACK RIGHT-POINTING TRIANGLE",
+ unified: "25B6-FE0F",
+ non_qualified: "25B6",
+ docomo: null,
+ au: "E52E",
+ softbank: "E23A",
+ google: "FEAFC",
+ image: "25b6-fe0f.png",
+ sheet_x: 57,
+ sheet_y: 4,
+ short_name: "arrow_forward",
+ short_names: ["arrow_forward"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "av-symbol",
+ sort_order: 1460,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ fast_forward: {
+ char: "⏩",
+ key: "fast_forward",
+ keywords: ["fast_forward", "BLACK RIGHT-POINTING DOUBLE TRIANGLE"],
+ category: "symbols",
+ lib: {
+ name: "BLACK RIGHT-POINTING DOUBLE TRIANGLE",
+ unified: "23E9",
+ non_qualified: null,
+ docomo: null,
+ au: "E530",
+ softbank: "E23C",
+ google: "FEAFE",
+ image: "23e9.png",
+ sheet_x: 56,
+ sheet_y: 48,
+ short_name: "fast_forward",
+ short_names: ["fast_forward"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "av-symbol",
+ sort_order: 1461,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ black_right_pointing_double_triangle_with_vertical_bar: {
+ char: "⏭️",
+ key: "black_right_pointing_double_triangle_with_vertical_bar",
+ keywords: [
+ "black_right_pointing_double_triangle_with_vertical_bar",
+ "NEXT TRACK BUTTON",
+ ],
+ category: "symbols",
+ lib: {
+ name: "NEXT TRACK BUTTON",
+ unified: "23ED-FE0F",
+ non_qualified: "23ED",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "23ed-fe0f.png",
+ sheet_x: 56,
+ sheet_y: 52,
+ short_name: "black_right_pointing_double_triangle_with_vertical_bar",
+ short_names: ["black_right_pointing_double_triangle_with_vertical_bar"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "av-symbol",
+ sort_order: 1462,
+ added_in: "0.7",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ black_right_pointing_triangle_with_double_vertical_bar: {
+ char: "⏯️",
+ key: "black_right_pointing_triangle_with_double_vertical_bar",
+ keywords: [
+ "black_right_pointing_triangle_with_double_vertical_bar",
+ "PLAY OR PAUSE BUTTON",
+ ],
+ category: "symbols",
+ lib: {
+ name: "PLAY OR PAUSE BUTTON",
+ unified: "23EF-FE0F",
+ non_qualified: "23EF",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "23ef-fe0f.png",
+ sheet_x: 56,
+ sheet_y: 54,
+ short_name: "black_right_pointing_triangle_with_double_vertical_bar",
+ short_names: ["black_right_pointing_triangle_with_double_vertical_bar"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "av-symbol",
+ sort_order: 1463,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ arrow_backward: {
+ char: "◀️",
+ key: "arrow_backward",
+ keywords: ["arrow_backward", "BLACK LEFT-POINTING TRIANGLE"],
+ category: "symbols",
+ lib: {
+ name: "BLACK LEFT-POINTING TRIANGLE",
+ unified: "25C0-FE0F",
+ non_qualified: "25C0",
+ docomo: null,
+ au: "E52D",
+ softbank: "E23B",
+ google: "FEAFD",
+ image: "25c0-fe0f.png",
+ sheet_x: 57,
+ sheet_y: 5,
+ short_name: "arrow_backward",
+ short_names: ["arrow_backward"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "av-symbol",
+ sort_order: 1464,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ rewind: {
+ char: "⏪",
+ key: "rewind",
+ keywords: ["rewind", "BLACK LEFT-POINTING DOUBLE TRIANGLE"],
+ category: "symbols",
+ lib: {
+ name: "BLACK LEFT-POINTING DOUBLE TRIANGLE",
+ unified: "23EA",
+ non_qualified: null,
+ docomo: null,
+ au: "E52F",
+ softbank: "E23D",
+ google: "FEAFF",
+ image: "23ea.png",
+ sheet_x: 56,
+ sheet_y: 49,
+ short_name: "rewind",
+ short_names: ["rewind"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "av-symbol",
+ sort_order: 1465,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ black_left_pointing_double_triangle_with_vertical_bar: {
+ char: "⏮️",
+ key: "black_left_pointing_double_triangle_with_vertical_bar",
+ keywords: [
+ "black_left_pointing_double_triangle_with_vertical_bar",
+ "LAST TRACK BUTTON",
+ ],
+ category: "symbols",
+ lib: {
+ name: "LAST TRACK BUTTON",
+ unified: "23EE-FE0F",
+ non_qualified: "23EE",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "23ee-fe0f.png",
+ sheet_x: 56,
+ sheet_y: 53,
+ short_name: "black_left_pointing_double_triangle_with_vertical_bar",
+ short_names: ["black_left_pointing_double_triangle_with_vertical_bar"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "av-symbol",
+ sort_order: 1466,
+ added_in: "0.7",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ arrow_up_small: {
+ char: "🔼",
+ key: "arrow_up_small",
+ keywords: ["arrow_up_small", "UP-POINTING SMALL RED TRIANGLE"],
+ category: "symbols",
+ lib: {
+ name: "UP-POINTING SMALL RED TRIANGLE",
+ unified: "1F53C",
+ non_qualified: null,
+ docomo: null,
+ au: "E543",
+ softbank: null,
+ google: "FEB01",
+ image: "1f53c.png",
+ sheet_x: 30,
+ sheet_y: 25,
+ short_name: "arrow_up_small",
+ short_names: ["arrow_up_small"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "av-symbol",
+ sort_order: 1467,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ arrow_double_up: {
+ char: "⏫",
+ key: "arrow_double_up",
+ keywords: ["arrow_double_up", "BLACK UP-POINTING DOUBLE TRIANGLE"],
+ category: "symbols",
+ lib: {
+ name: "BLACK UP-POINTING DOUBLE TRIANGLE",
+ unified: "23EB",
+ non_qualified: null,
+ docomo: null,
+ au: "E545",
+ softbank: null,
+ google: "FEB03",
+ image: "23eb.png",
+ sheet_x: 56,
+ sheet_y: 50,
+ short_name: "arrow_double_up",
+ short_names: ["arrow_double_up"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "av-symbol",
+ sort_order: 1468,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ arrow_down_small: {
+ char: "🔽",
+ key: "arrow_down_small",
+ keywords: ["arrow_down_small", "DOWN-POINTING SMALL RED TRIANGLE"],
+ category: "symbols",
+ lib: {
+ name: "DOWN-POINTING SMALL RED TRIANGLE",
+ unified: "1F53D",
+ non_qualified: null,
+ docomo: null,
+ au: "E542",
+ softbank: null,
+ google: "FEB00",
+ image: "1f53d.png",
+ sheet_x: 30,
+ sheet_y: 26,
+ short_name: "arrow_down_small",
+ short_names: ["arrow_down_small"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "av-symbol",
+ sort_order: 1469,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ arrow_double_down: {
+ char: "⏬",
+ key: "arrow_double_down",
+ keywords: ["arrow_double_down", "BLACK DOWN-POINTING DOUBLE TRIANGLE"],
+ category: "symbols",
+ lib: {
+ name: "BLACK DOWN-POINTING DOUBLE TRIANGLE",
+ unified: "23EC",
+ non_qualified: null,
+ docomo: null,
+ au: "E544",
+ softbank: null,
+ google: "FEB02",
+ image: "23ec.png",
+ sheet_x: 56,
+ sheet_y: 51,
+ short_name: "arrow_double_down",
+ short_names: ["arrow_double_down"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "av-symbol",
+ sort_order: 1470,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ double_vertical_bar: {
+ char: "⏸️",
+ key: "double_vertical_bar",
+ keywords: ["double_vertical_bar", "PAUSE BUTTON"],
+ category: "symbols",
+ lib: {
+ name: "PAUSE BUTTON",
+ unified: "23F8-FE0F",
+ non_qualified: "23F8",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "23f8-fe0f.png",
+ sheet_x: 56,
+ sheet_y: 59,
+ short_name: "double_vertical_bar",
+ short_names: ["double_vertical_bar"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "av-symbol",
+ sort_order: 1471,
+ added_in: "0.7",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ black_square_for_stop: {
+ char: "⏹️",
+ key: "black_square_for_stop",
+ keywords: ["black_square_for_stop", "STOP BUTTON"],
+ category: "symbols",
+ lib: {
+ name: "STOP BUTTON",
+ unified: "23F9-FE0F",
+ non_qualified: "23F9",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "23f9-fe0f.png",
+ sheet_x: 56,
+ sheet_y: 60,
+ short_name: "black_square_for_stop",
+ short_names: ["black_square_for_stop"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "av-symbol",
+ sort_order: 1472,
+ added_in: "0.7",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ black_circle_for_record: {
+ char: "⏺️",
+ key: "black_circle_for_record",
+ keywords: ["black_circle_for_record", "RECORD BUTTON"],
+ category: "symbols",
+ lib: {
+ name: "RECORD BUTTON",
+ unified: "23FA-FE0F",
+ non_qualified: "23FA",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "23fa-fe0f.png",
+ sheet_x: 57,
+ sheet_y: 0,
+ short_name: "black_circle_for_record",
+ short_names: ["black_circle_for_record"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "av-symbol",
+ sort_order: 1473,
+ added_in: "0.7",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ eject: {
+ char: "⏏️",
+ key: "eject",
+ keywords: ["eject", "EJECT BUTTON"],
+ category: "symbols",
+ lib: {
+ name: "EJECT BUTTON",
+ unified: "23CF-FE0F",
+ non_qualified: "23CF",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "23cf-fe0f.png",
+ sheet_x: 56,
+ sheet_y: 47,
+ short_name: "eject",
+ short_names: ["eject"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "av-symbol",
+ sort_order: 1474,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ cinema: {
+ char: "🎦",
+ key: "cinema",
+ keywords: ["cinema", "CINEMA"],
+ category: "symbols",
+ lib: {
+ name: "CINEMA",
+ unified: "1F3A6",
+ non_qualified: null,
+ docomo: "E677",
+ au: "E517",
+ softbank: "E507",
+ google: "FE802",
+ image: "1f3a6.png",
+ sheet_x: 7,
+ sheet_y: 41,
+ short_name: "cinema",
+ short_names: ["cinema"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "av-symbol",
+ sort_order: 1475,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ low_brightness: {
+ char: "🔅",
+ key: "low_brightness",
+ keywords: ["low_brightness", "LOW BRIGHTNESS SYMBOL"],
+ category: "symbols",
+ lib: {
+ name: "LOW BRIGHTNESS SYMBOL",
+ unified: "1F505",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f505.png",
+ sheet_x: 29,
+ sheet_y: 31,
+ short_name: "low_brightness",
+ short_names: ["low_brightness"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "av-symbol",
+ sort_order: 1476,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ high_brightness: {
+ char: "🔆",
+ key: "high_brightness",
+ keywords: ["high_brightness", "HIGH BRIGHTNESS SYMBOL"],
+ category: "symbols",
+ lib: {
+ name: "HIGH BRIGHTNESS SYMBOL",
+ unified: "1F506",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f506.png",
+ sheet_x: 29,
+ sheet_y: 32,
+ short_name: "high_brightness",
+ short_names: ["high_brightness"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "av-symbol",
+ sort_order: 1477,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ signal_strength: {
+ char: "📶",
+ key: "signal_strength",
+ keywords: ["signal_strength", "ANTENNA WITH BARS"],
+ category: "symbols",
+ lib: {
+ name: "ANTENNA WITH BARS",
+ unified: "1F4F6",
+ non_qualified: null,
+ docomo: null,
+ au: "EA84",
+ softbank: "E20B",
+ google: "FE838",
+ image: "1f4f6.png",
+ sheet_x: 29,
+ sheet_y: 17,
+ short_name: "signal_strength",
+ short_names: ["signal_strength"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "av-symbol",
+ sort_order: 1478,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ wireless: {
+ char: "🛜",
+ key: "wireless",
+ keywords: ["wireless", "WIRELESS"],
+ category: "symbols",
+ lib: {
+ name: "WIRELESS",
+ unified: "1F6DC",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f6dc.png",
+ sheet_x: 38,
+ sheet_y: 9,
+ short_name: "wireless",
+ short_names: ["wireless"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "av-symbol",
+ sort_order: 1479,
+ added_in: "15.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: false,
+ has_img_facebook: false,
+ },
+ },
+ vibration_mode: {
+ char: "📳",
+ key: "vibration_mode",
+ keywords: ["vibration_mode", "VIBRATION MODE"],
+ category: "symbols",
+ lib: {
+ name: "VIBRATION MODE",
+ unified: "1F4F3",
+ non_qualified: null,
+ docomo: null,
+ au: "EA90",
+ softbank: "E250",
+ google: "FE839",
+ image: "1f4f3.png",
+ sheet_x: 29,
+ sheet_y: 14,
+ short_name: "vibration_mode",
+ short_names: ["vibration_mode"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "av-symbol",
+ sort_order: 1480,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ mobile_phone_off: {
+ char: "📴",
+ key: "mobile_phone_off",
+ keywords: ["mobile_phone_off", "MOBILE PHONE OFF"],
+ category: "symbols",
+ lib: {
+ name: "MOBILE PHONE OFF",
+ unified: "1F4F4",
+ non_qualified: null,
+ docomo: null,
+ au: "EA91",
+ softbank: "E251",
+ google: "FE83A",
+ image: "1f4f4.png",
+ sheet_x: 29,
+ sheet_y: 15,
+ short_name: "mobile_phone_off",
+ short_names: ["mobile_phone_off"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "av-symbol",
+ sort_order: 1481,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ female_sign: {
+ char: "♀️",
+ key: "female_sign",
+ keywords: ["female_sign", "FEMALE SIGN"],
+ category: "symbols",
+ lib: {
+ name: "FEMALE SIGN",
+ unified: "2640-FE0F",
+ non_qualified: "2640",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "2640-fe0f.png",
+ sheet_x: 57,
+ sheet_y: 36,
+ short_name: "female_sign",
+ short_names: ["female_sign"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "gender",
+ sort_order: 1482,
+ added_in: "4.0",
+ has_img_apple: false,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ male_sign: {
+ char: "♂️",
+ key: "male_sign",
+ keywords: ["male_sign", "MALE SIGN"],
+ category: "symbols",
+ lib: {
+ name: "MALE SIGN",
+ unified: "2642-FE0F",
+ non_qualified: "2642",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "2642-fe0f.png",
+ sheet_x: 57,
+ sheet_y: 37,
+ short_name: "male_sign",
+ short_names: ["male_sign"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "gender",
+ sort_order: 1483,
+ added_in: "4.0",
+ has_img_apple: false,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ transgender_symbol: {
+ char: "⚧️",
+ key: "transgender_symbol",
+ keywords: ["transgender_symbol", "TRANSGENDER SYMBOL"],
+ category: "symbols",
+ lib: {
+ name: "TRANSGENDER SYMBOL",
+ unified: "26A7-FE0F",
+ non_qualified: "26A7",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "26a7-fe0f.png",
+ sheet_x: 58,
+ sheet_y: 9,
+ short_name: "transgender_symbol",
+ short_names: ["transgender_symbol"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "gender",
+ sort_order: 1484,
+ added_in: "13.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ heavy_multiplication_x: {
+ char: "✖️",
+ key: "heavy_multiplication_x",
+ keywords: ["heavy_multiplication_x", "HEAVY MULTIPLICATION X"],
+ category: "symbols",
+ lib: {
+ name: "HEAVY MULTIPLICATION X",
+ unified: "2716-FE0F",
+ non_qualified: "2716",
+ docomo: null,
+ au: "E54F",
+ softbank: null,
+ google: "FEB53",
+ image: "2716-fe0f.png",
+ sheet_x: 59,
+ sheet_y: 24,
+ short_name: "heavy_multiplication_x",
+ short_names: ["heavy_multiplication_x"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "math",
+ sort_order: 1485,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ heavy_plus_sign: {
+ char: "➕",
+ key: "heavy_plus_sign",
+ keywords: ["heavy_plus_sign", "HEAVY PLUS SIGN"],
+ category: "symbols",
+ lib: {
+ name: "HEAVY PLUS SIGN",
+ unified: "2795",
+ non_qualified: null,
+ docomo: null,
+ au: "E53C",
+ softbank: null,
+ google: "FEB51",
+ image: "2795.png",
+ sheet_x: 59,
+ sheet_y: 42,
+ short_name: "heavy_plus_sign",
+ short_names: ["heavy_plus_sign"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "math",
+ sort_order: 1486,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ heavy_minus_sign: {
+ char: "➖",
+ key: "heavy_minus_sign",
+ keywords: ["heavy_minus_sign", "HEAVY MINUS SIGN"],
+ category: "symbols",
+ lib: {
+ name: "HEAVY MINUS SIGN",
+ unified: "2796",
+ non_qualified: null,
+ docomo: null,
+ au: "E53D",
+ softbank: null,
+ google: "FEB52",
+ image: "2796.png",
+ sheet_x: 59,
+ sheet_y: 43,
+ short_name: "heavy_minus_sign",
+ short_names: ["heavy_minus_sign"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "math",
+ sort_order: 1487,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ heavy_division_sign: {
+ char: "➗",
+ key: "heavy_division_sign",
+ keywords: ["heavy_division_sign", "HEAVY DIVISION SIGN"],
+ category: "symbols",
+ lib: {
+ name: "HEAVY DIVISION SIGN",
+ unified: "2797",
+ non_qualified: null,
+ docomo: null,
+ au: "E554",
+ softbank: null,
+ google: "FEB54",
+ image: "2797.png",
+ sheet_x: 59,
+ sheet_y: 44,
+ short_name: "heavy_division_sign",
+ short_names: ["heavy_division_sign"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "math",
+ sort_order: 1488,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ heavy_equals_sign: {
+ char: "🟰",
+ key: "heavy_equals_sign",
+ keywords: ["heavy_equals_sign", "HEAVY EQUALS SIGN"],
+ category: "symbols",
+ lib: {
+ name: "HEAVY EQUALS SIGN",
+ unified: "1F7F0",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f7f0.png",
+ sheet_x: 38,
+ sheet_y: 45,
+ short_name: "heavy_equals_sign",
+ short_names: ["heavy_equals_sign"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "math",
+ sort_order: 1489,
+ added_in: "14.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ infinity: {
+ char: "♾️",
+ key: "infinity",
+ keywords: ["infinity", "INFINITY"],
+ category: "symbols",
+ lib: {
+ name: "INFINITY",
+ unified: "267E-FE0F",
+ non_qualified: "267E",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "267e-fe0f.png",
+ sheet_x: 57,
+ sheet_y: 57,
+ short_name: "infinity",
+ short_names: ["infinity"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "math",
+ sort_order: 1490,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ bangbang: {
+ char: "‼️",
+ key: "bangbang",
+ keywords: ["bangbang", "DOUBLE EXCLAMATION MARK"],
+ category: "symbols",
+ lib: {
+ name: "DOUBLE EXCLAMATION MARK",
+ unified: "203C-FE0F",
+ non_qualified: "203C",
+ docomo: "E704",
+ au: "EB30",
+ softbank: null,
+ google: "FEB06",
+ image: "203c-fe0f.png",
+ sheet_x: 56,
+ sheet_y: 32,
+ short_name: "bangbang",
+ short_names: ["bangbang"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "punctuation",
+ sort_order: 1491,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ interrobang: {
+ char: "⁉️",
+ key: "interrobang",
+ keywords: ["interrobang", "EXCLAMATION QUESTION MARK"],
+ category: "symbols",
+ lib: {
+ name: "EXCLAMATION QUESTION MARK",
+ unified: "2049-FE0F",
+ non_qualified: "2049",
+ docomo: "E703",
+ au: "EB2F",
+ softbank: null,
+ google: "FEB05",
+ image: "2049-fe0f.png",
+ sheet_x: 56,
+ sheet_y: 33,
+ short_name: "interrobang",
+ short_names: ["interrobang"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "punctuation",
+ sort_order: 1492,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ question: {
+ char: "❓",
+ key: "question",
+ keywords: ["question", "BLACK QUESTION MARK ORNAMENT"],
+ category: "symbols",
+ lib: {
+ name: "BLACK QUESTION MARK ORNAMENT",
+ unified: "2753",
+ non_qualified: null,
+ docomo: null,
+ au: "E483",
+ softbank: "E020",
+ google: "FEB09",
+ image: "2753.png",
+ sheet_x: 59,
+ sheet_y: 34,
+ short_name: "question",
+ short_names: ["question"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "punctuation",
+ sort_order: 1493,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ grey_question: {
+ char: "❔",
+ key: "grey_question",
+ keywords: ["grey_question", "WHITE QUESTION MARK ORNAMENT"],
+ category: "symbols",
+ lib: {
+ name: "WHITE QUESTION MARK ORNAMENT",
+ unified: "2754",
+ non_qualified: null,
+ docomo: null,
+ au: "E483",
+ softbank: "E336",
+ google: "FEB0A",
+ image: "2754.png",
+ sheet_x: 59,
+ sheet_y: 35,
+ short_name: "grey_question",
+ short_names: ["grey_question"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "punctuation",
+ sort_order: 1494,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ grey_exclamation: {
+ char: "❕",
+ key: "grey_exclamation",
+ keywords: ["grey_exclamation", "WHITE EXCLAMATION MARK ORNAMENT"],
+ category: "symbols",
+ lib: {
+ name: "WHITE EXCLAMATION MARK ORNAMENT",
+ unified: "2755",
+ non_qualified: null,
+ docomo: "E702",
+ au: "E482",
+ softbank: "E337",
+ google: "FEB0B",
+ image: "2755.png",
+ sheet_x: 59,
+ sheet_y: 36,
+ short_name: "grey_exclamation",
+ short_names: ["grey_exclamation"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "punctuation",
+ sort_order: 1495,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ exclamation: {
+ char: "❗",
+ key: "exclamation",
+ keywords: ["exclamation", "HEAVY EXCLAMATION MARK SYMBOL"],
+ category: "symbols",
+ lib: {
+ name: "HEAVY EXCLAMATION MARK SYMBOL",
+ unified: "2757",
+ non_qualified: null,
+ docomo: "E702",
+ au: "E482",
+ softbank: "E021",
+ google: "FEB04",
+ image: "2757.png",
+ sheet_x: 59,
+ sheet_y: 37,
+ short_name: "exclamation",
+ short_names: ["exclamation", "heavy_exclamation_mark"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "punctuation",
+ sort_order: 1496,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ wavy_dash: {
+ char: "〰️",
+ key: "wavy_dash",
+ keywords: ["wavy_dash", "WAVY DASH"],
+ category: "symbols",
+ lib: {
+ name: "WAVY DASH",
+ unified: "3030-FE0F",
+ non_qualified: "3030",
+ docomo: "E709",
+ au: null,
+ softbank: null,
+ google: "FEB07",
+ image: "3030-fe0f.png",
+ sheet_x: 59,
+ sheet_y: 57,
+ short_name: "wavy_dash",
+ short_names: ["wavy_dash"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "punctuation",
+ sort_order: 1497,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ currency_exchange: {
+ char: "💱",
+ key: "currency_exchange",
+ keywords: ["currency_exchange", "CURRENCY EXCHANGE"],
+ category: "symbols",
+ lib: {
+ name: "CURRENCY EXCHANGE",
+ unified: "1F4B1",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: "E149",
+ google: "FE4DE",
+ image: "1f4b1.png",
+ sheet_x: 28,
+ sheet_y: 9,
+ short_name: "currency_exchange",
+ short_names: ["currency_exchange"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "currency",
+ sort_order: 1498,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ heavy_dollar_sign: {
+ char: "💲",
+ key: "heavy_dollar_sign",
+ keywords: ["heavy_dollar_sign", "HEAVY DOLLAR SIGN"],
+ category: "symbols",
+ lib: {
+ name: "HEAVY DOLLAR SIGN",
+ unified: "1F4B2",
+ non_qualified: null,
+ docomo: "E715",
+ au: "E579",
+ softbank: null,
+ google: "FE4E0",
+ image: "1f4b2.png",
+ sheet_x: 28,
+ sheet_y: 10,
+ short_name: "heavy_dollar_sign",
+ short_names: ["heavy_dollar_sign"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "currency",
+ sort_order: 1499,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ medical_symbol: {
+ char: "⚕️",
+ key: "medical_symbol",
+ keywords: ["medical_symbol", "MEDICAL SYMBOL"],
+ category: "symbols",
+ lib: {
+ name: "MEDICAL SYMBOL",
+ unified: "2695-FE0F",
+ non_qualified: "2695",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "2695-fe0f.png",
+ sheet_x: 58,
+ sheet_y: 1,
+ short_name: "medical_symbol",
+ short_names: ["medical_symbol", "staff_of_aesculapius"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "other-symbol",
+ sort_order: 1500,
+ added_in: "4.0",
+ has_img_apple: false,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ recycle: {
+ char: "♻️",
+ key: "recycle",
+ keywords: ["recycle", "BLACK UNIVERSAL RECYCLING SYMBOL"],
+ category: "symbols",
+ lib: {
+ name: "BLACK UNIVERSAL RECYCLING SYMBOL",
+ unified: "267B-FE0F",
+ non_qualified: "267B",
+ docomo: "E735",
+ au: "EB79",
+ softbank: null,
+ google: "FEB2C",
+ image: "267b-fe0f.png",
+ sheet_x: 57,
+ sheet_y: 56,
+ short_name: "recycle",
+ short_names: ["recycle"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "other-symbol",
+ sort_order: 1501,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ fleur_de_lis: {
+ char: "⚜️",
+ key: "fleur_de_lis",
+ keywords: ["fleur_de_lis", "FLEUR-DE-LIS"],
+ category: "symbols",
+ lib: {
+ name: "FLEUR-DE-LIS",
+ unified: "269C-FE0F",
+ non_qualified: "269C",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "269c-fe0f.png",
+ sheet_x: 58,
+ sheet_y: 6,
+ short_name: "fleur_de_lis",
+ short_names: ["fleur_de_lis"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "other-symbol",
+ sort_order: 1502,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ trident: {
+ char: "🔱",
+ key: "trident",
+ keywords: ["trident", "TRIDENT EMBLEM"],
+ category: "symbols",
+ lib: {
+ name: "TRIDENT EMBLEM",
+ unified: "1F531",
+ non_qualified: null,
+ docomo: "E71A",
+ au: "E5C9",
+ softbank: "E031",
+ google: "FE4D2",
+ image: "1f531.png",
+ sheet_x: 30,
+ sheet_y: 14,
+ short_name: "trident",
+ short_names: ["trident"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "other-symbol",
+ sort_order: 1503,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ name_badge: {
+ char: "📛",
+ key: "name_badge",
+ keywords: ["name_badge", "NAME BADGE"],
+ category: "symbols",
+ lib: {
+ name: "NAME BADGE",
+ unified: "1F4DB",
+ non_qualified: null,
+ docomo: null,
+ au: "E51D",
+ softbank: null,
+ google: "FE504",
+ image: "1f4db.png",
+ sheet_x: 28,
+ sheet_y: 51,
+ short_name: "name_badge",
+ short_names: ["name_badge"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "other-symbol",
+ sort_order: 1504,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ beginner: {
+ char: "🔰",
+ key: "beginner",
+ keywords: ["beginner", "JAPANESE SYMBOL FOR BEGINNER"],
+ category: "symbols",
+ lib: {
+ name: "JAPANESE SYMBOL FOR BEGINNER",
+ unified: "1F530",
+ non_qualified: null,
+ docomo: null,
+ au: "E480",
+ softbank: "E209",
+ google: "FE044",
+ image: "1f530.png",
+ sheet_x: 30,
+ sheet_y: 13,
+ short_name: "beginner",
+ short_names: ["beginner"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "other-symbol",
+ sort_order: 1505,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ o: {
+ char: "⭕",
+ key: "o",
+ keywords: ["o", "HEAVY LARGE CIRCLE"],
+ category: "symbols",
+ lib: {
+ name: "HEAVY LARGE CIRCLE",
+ unified: "2B55",
+ non_qualified: null,
+ docomo: "E6A0",
+ au: "EAAD",
+ softbank: "E332",
+ google: "FEB44",
+ image: "2b55.png",
+ sheet_x: 59,
+ sheet_y: 56,
+ short_name: "o",
+ short_names: ["o"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "other-symbol",
+ sort_order: 1506,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ white_check_mark: {
+ char: "✅",
+ key: "white_check_mark",
+ keywords: ["white_check_mark", "WHITE HEAVY CHECK MARK"],
+ category: "symbols",
+ lib: {
+ name: "WHITE HEAVY CHECK MARK",
+ unified: "2705",
+ non_qualified: null,
+ docomo: null,
+ au: "E55E",
+ softbank: null,
+ google: "FEB4A",
+ image: "2705.png",
+ sheet_x: 58,
+ sheet_y: 55,
+ short_name: "white_check_mark",
+ short_names: ["white_check_mark"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "other-symbol",
+ sort_order: 1507,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ ballot_box_with_check: {
+ char: "☑️",
+ key: "ballot_box_with_check",
+ keywords: ["ballot_box_with_check", "BALLOT BOX WITH CHECK"],
+ category: "symbols",
+ lib: {
+ name: "BALLOT BOX WITH CHECK",
+ unified: "2611-FE0F",
+ non_qualified: "2611",
+ docomo: null,
+ au: "EB02",
+ softbank: null,
+ google: "FEB8B",
+ image: "2611-fe0f.png",
+ sheet_x: 57,
+ sheet_y: 16,
+ short_name: "ballot_box_with_check",
+ short_names: ["ballot_box_with_check"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "other-symbol",
+ sort_order: 1508,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ heavy_check_mark: {
+ char: "✔️",
+ key: "heavy_check_mark",
+ keywords: ["heavy_check_mark", "HEAVY CHECK MARK"],
+ category: "symbols",
+ lib: {
+ name: "HEAVY CHECK MARK",
+ unified: "2714-FE0F",
+ non_qualified: "2714",
+ docomo: null,
+ au: "E557",
+ softbank: null,
+ google: "FEB49",
+ image: "2714-fe0f.png",
+ sheet_x: 59,
+ sheet_y: 23,
+ short_name: "heavy_check_mark",
+ short_names: ["heavy_check_mark"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "other-symbol",
+ sort_order: 1509,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ x: {
+ char: "❌",
+ key: "x",
+ keywords: ["x", "CROSS MARK"],
+ category: "symbols",
+ lib: {
+ name: "CROSS MARK",
+ unified: "274C",
+ non_qualified: null,
+ docomo: null,
+ au: "E550",
+ softbank: "E333",
+ google: "FEB45",
+ image: "274c.png",
+ sheet_x: 59,
+ sheet_y: 32,
+ short_name: "x",
+ short_names: ["x"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "other-symbol",
+ sort_order: 1510,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ negative_squared_cross_mark: {
+ char: "❎",
+ key: "negative_squared_cross_mark",
+ keywords: ["negative_squared_cross_mark", "NEGATIVE SQUARED CROSS MARK"],
+ category: "symbols",
+ lib: {
+ name: "NEGATIVE SQUARED CROSS MARK",
+ unified: "274E",
+ non_qualified: null,
+ docomo: null,
+ au: "E551",
+ softbank: null,
+ google: "FEB46",
+ image: "274e.png",
+ sheet_x: 59,
+ sheet_y: 33,
+ short_name: "negative_squared_cross_mark",
+ short_names: ["negative_squared_cross_mark"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "other-symbol",
+ sort_order: 1511,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ curly_loop: {
+ char: "➰",
+ key: "curly_loop",
+ keywords: ["curly_loop", "CURLY LOOP"],
+ category: "symbols",
+ lib: {
+ name: "CURLY LOOP",
+ unified: "27B0",
+ non_qualified: null,
+ docomo: "E70A",
+ au: "EB31",
+ softbank: null,
+ google: "FEB08",
+ image: "27b0.png",
+ sheet_x: 59,
+ sheet_y: 46,
+ short_name: "curly_loop",
+ short_names: ["curly_loop"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "other-symbol",
+ sort_order: 1512,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ loop: {
+ char: "➿",
+ key: "loop",
+ keywords: ["loop", "DOUBLE CURLY LOOP"],
+ category: "symbols",
+ lib: {
+ name: "DOUBLE CURLY LOOP",
+ unified: "27BF",
+ non_qualified: null,
+ docomo: "E6DF",
+ au: null,
+ softbank: "E211",
+ google: "FE82B",
+ image: "27bf.png",
+ sheet_x: 59,
+ sheet_y: 47,
+ short_name: "loop",
+ short_names: ["loop"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "other-symbol",
+ sort_order: 1513,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ part_alternation_mark: {
+ char: "〽️",
+ key: "part_alternation_mark",
+ keywords: ["part_alternation_mark", "PART ALTERNATION MARK"],
+ category: "symbols",
+ lib: {
+ name: "PART ALTERNATION MARK",
+ unified: "303D-FE0F",
+ non_qualified: "303D",
+ docomo: null,
+ au: null,
+ softbank: "E12C",
+ google: "FE81B",
+ image: "303d-fe0f.png",
+ sheet_x: 59,
+ sheet_y: 58,
+ short_name: "part_alternation_mark",
+ short_names: ["part_alternation_mark"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "other-symbol",
+ sort_order: 1514,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ eight_spoked_asterisk: {
+ char: "✳️",
+ key: "eight_spoked_asterisk",
+ keywords: ["eight_spoked_asterisk", "EIGHT SPOKED ASTERISK"],
+ category: "symbols",
+ lib: {
+ name: "EIGHT SPOKED ASTERISK",
+ unified: "2733-FE0F",
+ non_qualified: "2733",
+ docomo: "E6F8",
+ au: "E53E",
+ softbank: "E206",
+ google: "FEB62",
+ image: "2733-fe0f.png",
+ sheet_x: 59,
+ sheet_y: 28,
+ short_name: "eight_spoked_asterisk",
+ short_names: ["eight_spoked_asterisk"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "other-symbol",
+ sort_order: 1515,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ eight_pointed_black_star: {
+ char: "✴️",
+ key: "eight_pointed_black_star",
+ keywords: ["eight_pointed_black_star", "EIGHT POINTED BLACK STAR"],
+ category: "symbols",
+ lib: {
+ name: "EIGHT POINTED BLACK STAR",
+ unified: "2734-FE0F",
+ non_qualified: "2734",
+ docomo: "E6F8",
+ au: "E479",
+ softbank: "E205",
+ google: "FEB61",
+ image: "2734-fe0f.png",
+ sheet_x: 59,
+ sheet_y: 29,
+ short_name: "eight_pointed_black_star",
+ short_names: ["eight_pointed_black_star"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "other-symbol",
+ sort_order: 1516,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ sparkle: {
+ char: "❇️",
+ key: "sparkle",
+ keywords: ["sparkle", "SPARKLE"],
+ category: "symbols",
+ lib: {
+ name: "SPARKLE",
+ unified: "2747-FE0F",
+ non_qualified: "2747",
+ docomo: "E6FA",
+ au: "E46C",
+ softbank: null,
+ google: "FEB77",
+ image: "2747-fe0f.png",
+ sheet_x: 59,
+ sheet_y: 31,
+ short_name: "sparkle",
+ short_names: ["sparkle"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "other-symbol",
+ sort_order: 1517,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ copyright: {
+ char: "©️",
+ key: "copyright",
+ keywords: ["copyright", "COPYRIGHT SIGN"],
+ category: "symbols",
+ lib: {
+ name: "COPYRIGHT SIGN",
+ unified: "00A9-FE0F",
+ non_qualified: "00A9",
+ docomo: "E731",
+ au: "E558",
+ softbank: "E24E",
+ google: "FEB29",
+ image: "00a9-fe0f.png",
+ sheet_x: 0,
+ sheet_y: 12,
+ short_name: "copyright",
+ short_names: ["copyright"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "other-symbol",
+ sort_order: 1518,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: false,
+ },
+ },
+ registered: {
+ char: "®️",
+ key: "registered",
+ keywords: ["registered", "REGISTERED SIGN"],
+ category: "symbols",
+ lib: {
+ name: "REGISTERED SIGN",
+ unified: "00AE-FE0F",
+ non_qualified: "00AE",
+ docomo: "E736",
+ au: "E559",
+ softbank: "E24F",
+ google: "FEB2D",
+ image: "00ae-fe0f.png",
+ sheet_x: 0,
+ sheet_y: 13,
+ short_name: "registered",
+ short_names: ["registered"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "other-symbol",
+ sort_order: 1519,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: false,
+ },
+ },
+ tm: {
+ char: "™️",
+ key: "tm",
+ keywords: ["tm", "TRADE MARK SIGN"],
+ category: "symbols",
+ lib: {
+ name: "TRADE MARK SIGN",
+ unified: "2122-FE0F",
+ non_qualified: "2122",
+ docomo: "E732",
+ au: "E54E",
+ softbank: "E537",
+ google: "FEB2A",
+ image: "2122-fe0f.png",
+ sheet_x: 56,
+ sheet_y: 34,
+ short_name: "tm",
+ short_names: ["tm"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "other-symbol",
+ sort_order: 1520,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ hash: {
+ char: "#️⃣",
+ key: "hash",
+ keywords: ["hash", "HASH KEY"],
+ category: "symbols",
+ lib: {
+ name: "HASH KEY",
+ unified: "0023-FE0F-20E3",
+ non_qualified: "0023-20E3",
+ docomo: "E6E0",
+ au: "EB84",
+ softbank: "E210",
+ google: "FE82C",
+ image: "0023-fe0f-20e3.png",
+ sheet_x: 0,
+ sheet_y: 0,
+ short_name: "hash",
+ short_names: ["hash"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "keycap",
+ sort_order: 1521,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: false,
+ },
+ },
+ keycap_star: {
+ char: "*️⃣",
+ key: "keycap_star",
+ keywords: ["keycap_star", "KEYCAP: *"],
+ category: "symbols",
+ lib: {
+ name: "KEYCAP: *",
+ unified: "002A-FE0F-20E3",
+ non_qualified: "002A-20E3",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "002a-fe0f-20e3.png",
+ sheet_x: 0,
+ sheet_y: 1,
+ short_name: "keycap_star",
+ short_names: ["keycap_star"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "keycap",
+ sort_order: 1522,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: false,
+ },
+ },
+ zero: {
+ char: "0️⃣",
+ key: "zero",
+ keywords: ["zero", "KEYCAP 0"],
+ category: "symbols",
+ lib: {
+ name: "KEYCAP 0",
+ unified: "0030-FE0F-20E3",
+ non_qualified: "0030-20E3",
+ docomo: "E6EB",
+ au: "E5AC",
+ softbank: "E225",
+ google: "FE837",
+ image: "0030-fe0f-20e3.png",
+ sheet_x: 0,
+ sheet_y: 2,
+ short_name: "zero",
+ short_names: ["zero"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "keycap",
+ sort_order: 1523,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: false,
+ },
+ },
+ one: {
+ char: "1️⃣",
+ key: "one",
+ keywords: ["one", "KEYCAP 1"],
+ category: "symbols",
+ lib: {
+ name: "KEYCAP 1",
+ unified: "0031-FE0F-20E3",
+ non_qualified: "0031-20E3",
+ docomo: "E6E2",
+ au: "E522",
+ softbank: "E21C",
+ google: "FE82E",
+ image: "0031-fe0f-20e3.png",
+ sheet_x: 0,
+ sheet_y: 3,
+ short_name: "one",
+ short_names: ["one"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "keycap",
+ sort_order: 1524,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: false,
+ },
+ },
+ two: {
+ char: "2️⃣",
+ key: "two",
+ keywords: ["two", "KEYCAP 2"],
+ category: "symbols",
+ lib: {
+ name: "KEYCAP 2",
+ unified: "0032-FE0F-20E3",
+ non_qualified: "0032-20E3",
+ docomo: "E6E3",
+ au: "E523",
+ softbank: "E21D",
+ google: "FE82F",
+ image: "0032-fe0f-20e3.png",
+ sheet_x: 0,
+ sheet_y: 4,
+ short_name: "two",
+ short_names: ["two"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "keycap",
+ sort_order: 1525,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: false,
+ },
+ },
+ three: {
+ char: "3️⃣",
+ key: "three",
+ keywords: ["three", "KEYCAP 3"],
+ category: "symbols",
+ lib: {
+ name: "KEYCAP 3",
+ unified: "0033-FE0F-20E3",
+ non_qualified: "0033-20E3",
+ docomo: "E6E4",
+ au: "E524",
+ softbank: "E21E",
+ google: "FE830",
+ image: "0033-fe0f-20e3.png",
+ sheet_x: 0,
+ sheet_y: 5,
+ short_name: "three",
+ short_names: ["three"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "keycap",
+ sort_order: 1526,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: false,
+ },
+ },
+ four: {
+ char: "4️⃣",
+ key: "four",
+ keywords: ["four", "KEYCAP 4"],
+ category: "symbols",
+ lib: {
+ name: "KEYCAP 4",
+ unified: "0034-FE0F-20E3",
+ non_qualified: "0034-20E3",
+ docomo: "E6E5",
+ au: "E525",
+ softbank: "E21F",
+ google: "FE831",
+ image: "0034-fe0f-20e3.png",
+ sheet_x: 0,
+ sheet_y: 6,
+ short_name: "four",
+ short_names: ["four"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "keycap",
+ sort_order: 1527,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: false,
+ },
+ },
+ five: {
+ char: "5️⃣",
+ key: "five",
+ keywords: ["five", "KEYCAP 5"],
+ category: "symbols",
+ lib: {
+ name: "KEYCAP 5",
+ unified: "0035-FE0F-20E3",
+ non_qualified: "0035-20E3",
+ docomo: "E6E6",
+ au: "E526",
+ softbank: "E220",
+ google: "FE832",
+ image: "0035-fe0f-20e3.png",
+ sheet_x: 0,
+ sheet_y: 7,
+ short_name: "five",
+ short_names: ["five"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "keycap",
+ sort_order: 1528,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: false,
+ },
+ },
+ six: {
+ char: "6️⃣",
+ key: "six",
+ keywords: ["six", "KEYCAP 6"],
+ category: "symbols",
+ lib: {
+ name: "KEYCAP 6",
+ unified: "0036-FE0F-20E3",
+ non_qualified: "0036-20E3",
+ docomo: "E6E7",
+ au: "E527",
+ softbank: "E221",
+ google: "FE833",
+ image: "0036-fe0f-20e3.png",
+ sheet_x: 0,
+ sheet_y: 8,
+ short_name: "six",
+ short_names: ["six"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "keycap",
+ sort_order: 1529,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: false,
+ },
+ },
+ seven: {
+ char: "7️⃣",
+ key: "seven",
+ keywords: ["seven", "KEYCAP 7"],
+ category: "symbols",
+ lib: {
+ name: "KEYCAP 7",
+ unified: "0037-FE0F-20E3",
+ non_qualified: "0037-20E3",
+ docomo: "E6E8",
+ au: "E528",
+ softbank: "E222",
+ google: "FE834",
+ image: "0037-fe0f-20e3.png",
+ sheet_x: 0,
+ sheet_y: 9,
+ short_name: "seven",
+ short_names: ["seven"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "keycap",
+ sort_order: 1530,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: false,
+ },
+ },
+ eight: {
+ char: "8️⃣",
+ key: "eight",
+ keywords: ["eight", "KEYCAP 8"],
+ category: "symbols",
+ lib: {
+ name: "KEYCAP 8",
+ unified: "0038-FE0F-20E3",
+ non_qualified: "0038-20E3",
+ docomo: "E6E9",
+ au: "E529",
+ softbank: "E223",
+ google: "FE835",
+ image: "0038-fe0f-20e3.png",
+ sheet_x: 0,
+ sheet_y: 10,
+ short_name: "eight",
+ short_names: ["eight"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "keycap",
+ sort_order: 1531,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: false,
+ },
+ },
+ nine: {
+ char: "9️⃣",
+ key: "nine",
+ keywords: ["nine", "KEYCAP 9"],
+ category: "symbols",
+ lib: {
+ name: "KEYCAP 9",
+ unified: "0039-FE0F-20E3",
+ non_qualified: "0039-20E3",
+ docomo: "E6EA",
+ au: "E52A",
+ softbank: "E224",
+ google: "FE836",
+ image: "0039-fe0f-20e3.png",
+ sheet_x: 0,
+ sheet_y: 11,
+ short_name: "nine",
+ short_names: ["nine"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "keycap",
+ sort_order: 1532,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: false,
+ },
+ },
+ keycap_ten: {
+ char: "🔟",
+ key: "keycap_ten",
+ keywords: ["keycap_ten", "KEYCAP TEN"],
+ category: "symbols",
+ lib: {
+ name: "KEYCAP TEN",
+ unified: "1F51F",
+ non_qualified: null,
+ docomo: null,
+ au: "E52B",
+ softbank: null,
+ google: "FE83B",
+ image: "1f51f.png",
+ sheet_x: 29,
+ sheet_y: 57,
+ short_name: "keycap_ten",
+ short_names: ["keycap_ten"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "keycap",
+ sort_order: 1533,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ capital_abcd: {
+ char: "🔠",
+ key: "capital_abcd",
+ keywords: ["capital_abcd", "INPUT SYMBOL FOR LATIN CAPITAL LETTERS"],
+ category: "symbols",
+ lib: {
+ name: "INPUT SYMBOL FOR LATIN CAPITAL LETTERS",
+ unified: "1F520",
+ non_qualified: null,
+ docomo: null,
+ au: "EAFD",
+ softbank: null,
+ google: "FEB7C",
+ image: "1f520.png",
+ sheet_x: 29,
+ sheet_y: 58,
+ short_name: "capital_abcd",
+ short_names: ["capital_abcd"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "alphanum",
+ sort_order: 1534,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ abcd: {
+ char: "🔡",
+ key: "abcd",
+ keywords: ["abcd", "INPUT SYMBOL FOR LATIN SMALL LETTERS"],
+ category: "symbols",
+ lib: {
+ name: "INPUT SYMBOL FOR LATIN SMALL LETTERS",
+ unified: "1F521",
+ non_qualified: null,
+ docomo: null,
+ au: "EAFE",
+ softbank: null,
+ google: "FEB7D",
+ image: "1f521.png",
+ sheet_x: 29,
+ sheet_y: 59,
+ short_name: "abcd",
+ short_names: ["abcd"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "alphanum",
+ sort_order: 1535,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ symbols: {
+ char: "🔣",
+ key: "symbols",
+ keywords: ["symbols", "INPUT SYMBOL FOR SYMBOLS"],
+ category: "symbols",
+ lib: {
+ name: "INPUT SYMBOL FOR SYMBOLS",
+ unified: "1F523",
+ non_qualified: null,
+ docomo: null,
+ au: "EB00",
+ softbank: null,
+ google: "FEB7F",
+ image: "1f523.png",
+ sheet_x: 30,
+ sheet_y: 0,
+ short_name: "symbols",
+ short_names: ["symbols"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "alphanum",
+ sort_order: 1537,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ abc: {
+ char: "🔤",
+ key: "abc",
+ keywords: ["abc", "INPUT SYMBOL FOR LATIN LETTERS"],
+ category: "symbols",
+ lib: {
+ name: "INPUT SYMBOL FOR LATIN LETTERS",
+ unified: "1F524",
+ non_qualified: null,
+ docomo: null,
+ au: "EB55",
+ softbank: null,
+ google: "FEB80",
+ image: "1f524.png",
+ sheet_x: 30,
+ sheet_y: 1,
+ short_name: "abc",
+ short_names: ["abc"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "alphanum",
+ sort_order: 1538,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ a: {
+ char: "🅰️",
+ key: "a",
+ keywords: ["a", "NEGATIVE SQUARED LATIN CAPITAL LETTER A"],
+ category: "symbols",
+ lib: {
+ name: "NEGATIVE SQUARED LATIN CAPITAL LETTER A",
+ unified: "1F170-FE0F",
+ non_qualified: "1F170",
+ docomo: null,
+ au: "EB26",
+ softbank: "E532",
+ google: "FE50B",
+ image: "1f170-fe0f.png",
+ sheet_x: 0,
+ sheet_y: 16,
+ short_name: "a",
+ short_names: ["a"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "alphanum",
+ sort_order: 1539,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ ab: {
+ char: "🆎",
+ key: "ab",
+ keywords: ["ab", "NEGATIVE SQUARED AB"],
+ category: "symbols",
+ lib: {
+ name: "NEGATIVE SQUARED AB",
+ unified: "1F18E",
+ non_qualified: null,
+ docomo: null,
+ au: "EB29",
+ softbank: "E534",
+ google: "FE50D",
+ image: "1f18e.png",
+ sheet_x: 0,
+ sheet_y: 20,
+ short_name: "ab",
+ short_names: ["ab"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "alphanum",
+ sort_order: 1540,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ b: {
+ char: "🅱️",
+ key: "b",
+ keywords: ["b", "NEGATIVE SQUARED LATIN CAPITAL LETTER B"],
+ category: "symbols",
+ lib: {
+ name: "NEGATIVE SQUARED LATIN CAPITAL LETTER B",
+ unified: "1F171-FE0F",
+ non_qualified: "1F171",
+ docomo: null,
+ au: "EB27",
+ softbank: "E533",
+ google: "FE50C",
+ image: "1f171-fe0f.png",
+ sheet_x: 0,
+ sheet_y: 17,
+ short_name: "b",
+ short_names: ["b"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "alphanum",
+ sort_order: 1541,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ cl: {
+ char: "🆑",
+ key: "cl",
+ keywords: ["cl", "SQUARED CL"],
+ category: "symbols",
+ lib: {
+ name: "SQUARED CL",
+ unified: "1F191",
+ non_qualified: null,
+ docomo: "E6DB",
+ au: "E5AB",
+ softbank: null,
+ google: "FEB84",
+ image: "1f191.png",
+ sheet_x: 0,
+ sheet_y: 21,
+ short_name: "cl",
+ short_names: ["cl"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "alphanum",
+ sort_order: 1542,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ cool: {
+ char: "🆒",
+ key: "cool",
+ keywords: ["cool", "SQUARED COOL"],
+ category: "symbols",
+ lib: {
+ name: "SQUARED COOL",
+ unified: "1F192",
+ non_qualified: null,
+ docomo: null,
+ au: "EA85",
+ softbank: "E214",
+ google: "FEB38",
+ image: "1f192.png",
+ sheet_x: 0,
+ sheet_y: 22,
+ short_name: "cool",
+ short_names: ["cool"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "alphanum",
+ sort_order: 1543,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ free: {
+ char: "🆓",
+ key: "free",
+ keywords: ["free", "SQUARED FREE"],
+ category: "symbols",
+ lib: {
+ name: "SQUARED FREE",
+ unified: "1F193",
+ non_qualified: null,
+ docomo: "E6D7",
+ au: "E578",
+ softbank: null,
+ google: "FEB21",
+ image: "1f193.png",
+ sheet_x: 0,
+ sheet_y: 23,
+ short_name: "free",
+ short_names: ["free"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "alphanum",
+ sort_order: 1544,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ information_source: {
+ char: "ℹ️",
+ key: "information_source",
+ keywords: ["information_source", "INFORMATION SOURCE"],
+ category: "symbols",
+ lib: {
+ name: "INFORMATION SOURCE",
+ unified: "2139-FE0F",
+ non_qualified: "2139",
+ docomo: null,
+ au: "E533",
+ softbank: null,
+ google: "FEB47",
+ image: "2139-fe0f.png",
+ sheet_x: 56,
+ sheet_y: 35,
+ short_name: "information_source",
+ short_names: ["information_source"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "alphanum",
+ sort_order: 1545,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ id: {
+ char: "🆔",
+ key: "id",
+ keywords: ["id", "SQUARED ID"],
+ category: "symbols",
+ lib: {
+ name: "SQUARED ID",
+ unified: "1F194",
+ non_qualified: null,
+ docomo: "E6D8",
+ au: "EA88",
+ softbank: "E229",
+ google: "FEB81",
+ image: "1f194.png",
+ sheet_x: 0,
+ sheet_y: 24,
+ short_name: "id",
+ short_names: ["id"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "alphanum",
+ sort_order: 1546,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ m: {
+ char: "Ⓜ️",
+ key: "m",
+ keywords: ["m", "CIRCLED LATIN CAPITAL LETTER M"],
+ category: "symbols",
+ lib: {
+ name: "CIRCLED LATIN CAPITAL LETTER M",
+ unified: "24C2-FE0F",
+ non_qualified: "24C2",
+ docomo: "E65C",
+ au: "E5BC",
+ softbank: null,
+ google: "FE7E1",
+ image: "24c2-fe0f.png",
+ sheet_x: 57,
+ sheet_y: 1,
+ short_name: "m",
+ short_names: ["m"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "alphanum",
+ sort_order: 1547,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ new: {
+ char: "🆕",
+ key: "new",
+ keywords: ["new", "SQUARED NEW"],
+ category: "symbols",
+ lib: {
+ name: "SQUARED NEW",
+ unified: "1F195",
+ non_qualified: null,
+ docomo: "E6DD",
+ au: "E5B5",
+ softbank: "E212",
+ google: "FEB36",
+ image: "1f195.png",
+ sheet_x: 0,
+ sheet_y: 25,
+ short_name: "new",
+ short_names: ["new"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "alphanum",
+ sort_order: 1548,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ ng: {
+ char: "🆖",
+ key: "ng",
+ keywords: ["ng", "SQUARED NG"],
+ category: "symbols",
+ lib: {
+ name: "SQUARED NG",
+ unified: "1F196",
+ non_qualified: null,
+ docomo: "E72F",
+ au: null,
+ softbank: null,
+ google: "FEB28",
+ image: "1f196.png",
+ sheet_x: 0,
+ sheet_y: 26,
+ short_name: "ng",
+ short_names: ["ng"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "alphanum",
+ sort_order: 1549,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ o2: {
+ char: "🅾️",
+ key: "o2",
+ keywords: ["o2", "NEGATIVE SQUARED LATIN CAPITAL LETTER O"],
+ category: "symbols",
+ lib: {
+ name: "NEGATIVE SQUARED LATIN CAPITAL LETTER O",
+ unified: "1F17E-FE0F",
+ non_qualified: "1F17E",
+ docomo: null,
+ au: "EB28",
+ softbank: "E535",
+ google: "FE50E",
+ image: "1f17e-fe0f.png",
+ sheet_x: 0,
+ sheet_y: 18,
+ short_name: "o2",
+ short_names: ["o2"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "alphanum",
+ sort_order: 1550,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ ok: {
+ char: "🆗",
+ key: "ok",
+ keywords: ["ok", "SQUARED OK"],
+ category: "symbols",
+ lib: {
+ name: "SQUARED OK",
+ unified: "1F197",
+ non_qualified: null,
+ docomo: "E70B",
+ au: "E5AD",
+ softbank: "E24D",
+ google: "FEB27",
+ image: "1f197.png",
+ sheet_x: 0,
+ sheet_y: 27,
+ short_name: "ok",
+ short_names: ["ok"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "alphanum",
+ sort_order: 1551,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ parking: {
+ char: "🅿️",
+ key: "parking",
+ keywords: ["parking", "NEGATIVE SQUARED LATIN CAPITAL LETTER P"],
+ category: "symbols",
+ lib: {
+ name: "NEGATIVE SQUARED LATIN CAPITAL LETTER P",
+ unified: "1F17F-FE0F",
+ non_qualified: "1F17F",
+ docomo: "E66C",
+ au: "E4A6",
+ softbank: "E14F",
+ google: "FE7F6",
+ image: "1f17f-fe0f.png",
+ sheet_x: 0,
+ sheet_y: 19,
+ short_name: "parking",
+ short_names: ["parking"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "alphanum",
+ sort_order: 1552,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ sos: {
+ char: "🆘",
+ key: "sos",
+ keywords: ["sos", "SQUARED SOS"],
+ category: "symbols",
+ lib: {
+ name: "SQUARED SOS",
+ unified: "1F198",
+ non_qualified: null,
+ docomo: null,
+ au: "E4E8",
+ softbank: null,
+ google: "FEB4F",
+ image: "1f198.png",
+ sheet_x: 0,
+ sheet_y: 28,
+ short_name: "sos",
+ short_names: ["sos"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "alphanum",
+ sort_order: 1553,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ up: {
+ char: "🆙",
+ key: "up",
+ keywords: ["up", "SQUARED UP WITH EXCLAMATION MARK"],
+ category: "symbols",
+ lib: {
+ name: "SQUARED UP WITH EXCLAMATION MARK",
+ unified: "1F199",
+ non_qualified: null,
+ docomo: null,
+ au: "E50F",
+ softbank: "E213",
+ google: "FEB37",
+ image: "1f199.png",
+ sheet_x: 0,
+ sheet_y: 29,
+ short_name: "up",
+ short_names: ["up"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "alphanum",
+ sort_order: 1554,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ vs: {
+ char: "🆚",
+ key: "vs",
+ keywords: ["vs", "SQUARED VS"],
+ category: "symbols",
+ lib: {
+ name: "SQUARED VS",
+ unified: "1F19A",
+ non_qualified: null,
+ docomo: null,
+ au: "E5D2",
+ softbank: "E12E",
+ google: "FEB32",
+ image: "1f19a.png",
+ sheet_x: 0,
+ sheet_y: 30,
+ short_name: "vs",
+ short_names: ["vs"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "alphanum",
+ sort_order: 1555,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ koko: {
+ char: "🈁",
+ key: "koko",
+ keywords: ["koko", "SQUARED KATAKANA KOKO"],
+ category: "symbols",
+ lib: {
+ name: "SQUARED KATAKANA KOKO",
+ unified: "1F201",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: "E203",
+ google: "FEB24",
+ image: "1f201.png",
+ sheet_x: 4,
+ sheet_y: 45,
+ short_name: "koko",
+ short_names: ["koko"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "alphanum",
+ sort_order: 1556,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ sa: {
+ char: "🈂️",
+ key: "sa",
+ keywords: ["sa", "SQUARED KATAKANA SA"],
+ category: "symbols",
+ lib: {
+ name: "SQUARED KATAKANA SA",
+ unified: "1F202-FE0F",
+ non_qualified: "1F202",
+ docomo: null,
+ au: "EA87",
+ softbank: "E228",
+ google: "FEB3F",
+ image: "1f202-fe0f.png",
+ sheet_x: 4,
+ sheet_y: 46,
+ short_name: "sa",
+ short_names: ["sa"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "alphanum",
+ sort_order: 1557,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ u6708: {
+ char: "🈷️",
+ key: "u6708",
+ keywords: ["u6708", "SQUARED CJK UNIFIED IDEOGRAPH-6708"],
+ category: "symbols",
+ lib: {
+ name: "SQUARED CJK UNIFIED IDEOGRAPH-6708",
+ unified: "1F237-FE0F",
+ non_qualified: "1F237",
+ docomo: null,
+ au: null,
+ softbank: "E217",
+ google: "FEB3B",
+ image: "1f237-fe0f.png",
+ sheet_x: 4,
+ sheet_y: 54,
+ short_name: "u6708",
+ short_names: ["u6708"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "alphanum",
+ sort_order: 1558,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ u6709: {
+ char: "🈶",
+ key: "u6709",
+ keywords: ["u6709", "SQUARED CJK UNIFIED IDEOGRAPH-6709"],
+ category: "symbols",
+ lib: {
+ name: "SQUARED CJK UNIFIED IDEOGRAPH-6709",
+ unified: "1F236",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: "E215",
+ google: "FEB39",
+ image: "1f236.png",
+ sheet_x: 4,
+ sheet_y: 53,
+ short_name: "u6709",
+ short_names: ["u6709"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "alphanum",
+ sort_order: 1559,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ u6307: {
+ char: "🈯",
+ key: "u6307",
+ keywords: ["u6307", "SQUARED CJK UNIFIED IDEOGRAPH-6307"],
+ category: "symbols",
+ lib: {
+ name: "SQUARED CJK UNIFIED IDEOGRAPH-6307",
+ unified: "1F22F",
+ non_qualified: null,
+ docomo: null,
+ au: "EA8B",
+ softbank: "E22C",
+ google: "FEB40",
+ image: "1f22f.png",
+ sheet_x: 4,
+ sheet_y: 48,
+ short_name: "u6307",
+ short_names: ["u6307"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "alphanum",
+ sort_order: 1560,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ ideograph_advantage: {
+ char: "🉐",
+ key: "ideograph_advantage",
+ keywords: ["ideograph_advantage", "CIRCLED IDEOGRAPH ADVANTAGE"],
+ category: "symbols",
+ lib: {
+ name: "CIRCLED IDEOGRAPH ADVANTAGE",
+ unified: "1F250",
+ non_qualified: null,
+ docomo: null,
+ au: "E4F7",
+ softbank: "E226",
+ google: "FEB3D",
+ image: "1f250.png",
+ sheet_x: 4,
+ sheet_y: 58,
+ short_name: "ideograph_advantage",
+ short_names: ["ideograph_advantage"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "alphanum",
+ sort_order: 1561,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ u5272: {
+ char: "🈹",
+ key: "u5272",
+ keywords: ["u5272", "SQUARED CJK UNIFIED IDEOGRAPH-5272"],
+ category: "symbols",
+ lib: {
+ name: "SQUARED CJK UNIFIED IDEOGRAPH-5272",
+ unified: "1F239",
+ non_qualified: null,
+ docomo: null,
+ au: "EA86",
+ softbank: "E227",
+ google: "FEB3E",
+ image: "1f239.png",
+ sheet_x: 4,
+ sheet_y: 56,
+ short_name: "u5272",
+ short_names: ["u5272"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "alphanum",
+ sort_order: 1562,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ u7121: {
+ char: "🈚",
+ key: "u7121",
+ keywords: ["u7121", "SQUARED CJK UNIFIED IDEOGRAPH-7121"],
+ category: "symbols",
+ lib: {
+ name: "SQUARED CJK UNIFIED IDEOGRAPH-7121",
+ unified: "1F21A",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: "E216",
+ google: "FEB3A",
+ image: "1f21a.png",
+ sheet_x: 4,
+ sheet_y: 47,
+ short_name: "u7121",
+ short_names: ["u7121"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "alphanum",
+ sort_order: 1563,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ u7981: {
+ char: "🈲",
+ key: "u7981",
+ keywords: ["u7981", "SQUARED CJK UNIFIED IDEOGRAPH-7981"],
+ category: "symbols",
+ lib: {
+ name: "SQUARED CJK UNIFIED IDEOGRAPH-7981",
+ unified: "1F232",
+ non_qualified: null,
+ docomo: "E738",
+ au: null,
+ softbank: null,
+ google: "FEB2E",
+ image: "1f232.png",
+ sheet_x: 4,
+ sheet_y: 49,
+ short_name: "u7981",
+ short_names: ["u7981"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "alphanum",
+ sort_order: 1564,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ accept: {
+ char: "🉑",
+ key: "accept",
+ keywords: ["accept", "CIRCLED IDEOGRAPH ACCEPT"],
+ category: "symbols",
+ lib: {
+ name: "CIRCLED IDEOGRAPH ACCEPT",
+ unified: "1F251",
+ non_qualified: null,
+ docomo: null,
+ au: "EB01",
+ softbank: null,
+ google: "FEB50",
+ image: "1f251.png",
+ sheet_x: 4,
+ sheet_y: 59,
+ short_name: "accept",
+ short_names: ["accept"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "alphanum",
+ sort_order: 1565,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ u7533: {
+ char: "🈸",
+ key: "u7533",
+ keywords: ["u7533", "SQUARED CJK UNIFIED IDEOGRAPH-7533"],
+ category: "symbols",
+ lib: {
+ name: "SQUARED CJK UNIFIED IDEOGRAPH-7533",
+ unified: "1F238",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: "E218",
+ google: "FEB3C",
+ image: "1f238.png",
+ sheet_x: 4,
+ sheet_y: 55,
+ short_name: "u7533",
+ short_names: ["u7533"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "alphanum",
+ sort_order: 1566,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ u5408: {
+ char: "🈴",
+ key: "u5408",
+ keywords: ["u5408", "SQUARED CJK UNIFIED IDEOGRAPH-5408"],
+ category: "symbols",
+ lib: {
+ name: "SQUARED CJK UNIFIED IDEOGRAPH-5408",
+ unified: "1F234",
+ non_qualified: null,
+ docomo: "E73A",
+ au: null,
+ softbank: null,
+ google: "FEB30",
+ image: "1f234.png",
+ sheet_x: 4,
+ sheet_y: 51,
+ short_name: "u5408",
+ short_names: ["u5408"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "alphanum",
+ sort_order: 1567,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ u7a7a: {
+ char: "🈳",
+ key: "u7a7a",
+ keywords: ["u7a7a", "SQUARED CJK UNIFIED IDEOGRAPH-7A7A"],
+ category: "symbols",
+ lib: {
+ name: "SQUARED CJK UNIFIED IDEOGRAPH-7A7A",
+ unified: "1F233",
+ non_qualified: null,
+ docomo: "E739",
+ au: "EA8A",
+ softbank: "E22B",
+ google: "FEB2F",
+ image: "1f233.png",
+ sheet_x: 4,
+ sheet_y: 50,
+ short_name: "u7a7a",
+ short_names: ["u7a7a"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "alphanum",
+ sort_order: 1568,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ congratulations: {
+ char: "㊗️",
+ key: "congratulations",
+ keywords: ["congratulations", "CIRCLED IDEOGRAPH CONGRATULATION"],
+ category: "symbols",
+ lib: {
+ name: "CIRCLED IDEOGRAPH CONGRATULATION",
+ unified: "3297-FE0F",
+ non_qualified: "3297",
+ docomo: null,
+ au: "EA99",
+ softbank: "E30D",
+ google: "FEB43",
+ image: "3297-fe0f.png",
+ sheet_x: 59,
+ sheet_y: 59,
+ short_name: "congratulations",
+ short_names: ["congratulations"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "alphanum",
+ sort_order: 1569,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ secret: {
+ char: "㊙️",
+ key: "secret",
+ keywords: ["secret", "CIRCLED IDEOGRAPH SECRET"],
+ category: "symbols",
+ lib: {
+ name: "CIRCLED IDEOGRAPH SECRET",
+ unified: "3299-FE0F",
+ non_qualified: "3299",
+ docomo: "E734",
+ au: "E4F1",
+ softbank: "E315",
+ google: "FEB2B",
+ image: "3299-fe0f.png",
+ sheet_x: 59,
+ sheet_y: 60,
+ short_name: "secret",
+ short_names: ["secret"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "alphanum",
+ sort_order: 1570,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ u55b6: {
+ char: "🈺",
+ key: "u55b6",
+ keywords: ["u55b6", "SQUARED CJK UNIFIED IDEOGRAPH-55B6"],
+ category: "symbols",
+ lib: {
+ name: "SQUARED CJK UNIFIED IDEOGRAPH-55B6",
+ unified: "1F23A",
+ non_qualified: null,
+ docomo: null,
+ au: "EA8C",
+ softbank: "E22D",
+ google: "FEB41",
+ image: "1f23a.png",
+ sheet_x: 4,
+ sheet_y: 57,
+ short_name: "u55b6",
+ short_names: ["u55b6"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "alphanum",
+ sort_order: 1571,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ u6e80: {
+ char: "🈵",
+ key: "u6e80",
+ keywords: ["u6e80", "SQUARED CJK UNIFIED IDEOGRAPH-6E80"],
+ category: "symbols",
+ lib: {
+ name: "SQUARED CJK UNIFIED IDEOGRAPH-6E80",
+ unified: "1F235",
+ non_qualified: null,
+ docomo: "E73B",
+ au: "EA89",
+ softbank: "E22A",
+ google: "FEB31",
+ image: "1f235.png",
+ sheet_x: 4,
+ sheet_y: 52,
+ short_name: "u6e80",
+ short_names: ["u6e80"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "alphanum",
+ sort_order: 1572,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ red_circle: {
+ char: "🔴",
+ key: "red_circle",
+ keywords: ["red_circle", "LARGE RED CIRCLE"],
+ category: "symbols",
+ lib: {
+ name: "LARGE RED CIRCLE",
+ unified: "1F534",
+ non_qualified: null,
+ docomo: "E69C",
+ au: "E54A",
+ softbank: "E219",
+ google: "FEB63",
+ image: "1f534.png",
+ sheet_x: 30,
+ sheet_y: 17,
+ short_name: "red_circle",
+ short_names: ["red_circle"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "geometric",
+ sort_order: 1573,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ large_orange_circle: {
+ char: "🟠",
+ key: "large_orange_circle",
+ keywords: ["large_orange_circle", "LARGE ORANGE CIRCLE"],
+ category: "symbols",
+ lib: {
+ name: "LARGE ORANGE CIRCLE",
+ unified: "1F7E0",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f7e0.png",
+ sheet_x: 38,
+ sheet_y: 33,
+ short_name: "large_orange_circle",
+ short_names: ["large_orange_circle"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "geometric",
+ sort_order: 1574,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ large_yellow_circle: {
+ char: "🟡",
+ key: "large_yellow_circle",
+ keywords: ["large_yellow_circle", "LARGE YELLOW CIRCLE"],
+ category: "symbols",
+ lib: {
+ name: "LARGE YELLOW CIRCLE",
+ unified: "1F7E1",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f7e1.png",
+ sheet_x: 38,
+ sheet_y: 34,
+ short_name: "large_yellow_circle",
+ short_names: ["large_yellow_circle"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "geometric",
+ sort_order: 1575,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ large_green_circle: {
+ char: "🟢",
+ key: "large_green_circle",
+ keywords: ["large_green_circle", "LARGE GREEN CIRCLE"],
+ category: "symbols",
+ lib: {
+ name: "LARGE GREEN CIRCLE",
+ unified: "1F7E2",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f7e2.png",
+ sheet_x: 38,
+ sheet_y: 35,
+ short_name: "large_green_circle",
+ short_names: ["large_green_circle"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "geometric",
+ sort_order: 1576,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ large_blue_circle: {
+ char: "🔵",
+ key: "large_blue_circle",
+ keywords: ["large_blue_circle", "LARGE BLUE CIRCLE"],
+ category: "symbols",
+ lib: {
+ name: "LARGE BLUE CIRCLE",
+ unified: "1F535",
+ non_qualified: null,
+ docomo: "E69C",
+ au: "E54B",
+ softbank: null,
+ google: "FEB64",
+ image: "1f535.png",
+ sheet_x: 30,
+ sheet_y: 18,
+ short_name: "large_blue_circle",
+ short_names: ["large_blue_circle"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "geometric",
+ sort_order: 1577,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ large_purple_circle: {
+ char: "🟣",
+ key: "large_purple_circle",
+ keywords: ["large_purple_circle", "LARGE PURPLE CIRCLE"],
+ category: "symbols",
+ lib: {
+ name: "LARGE PURPLE CIRCLE",
+ unified: "1F7E3",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f7e3.png",
+ sheet_x: 38,
+ sheet_y: 36,
+ short_name: "large_purple_circle",
+ short_names: ["large_purple_circle"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "geometric",
+ sort_order: 1578,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ large_brown_circle: {
+ char: "🟤",
+ key: "large_brown_circle",
+ keywords: ["large_brown_circle", "LARGE BROWN CIRCLE"],
+ category: "symbols",
+ lib: {
+ name: "LARGE BROWN CIRCLE",
+ unified: "1F7E4",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f7e4.png",
+ sheet_x: 38,
+ sheet_y: 37,
+ short_name: "large_brown_circle",
+ short_names: ["large_brown_circle"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "geometric",
+ sort_order: 1579,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ black_circle: {
+ char: "⚫",
+ key: "black_circle",
+ keywords: ["black_circle", "MEDIUM BLACK CIRCLE"],
+ category: "symbols",
+ lib: {
+ name: "MEDIUM BLACK CIRCLE",
+ unified: "26AB",
+ non_qualified: null,
+ docomo: "E69C",
+ au: "E53B",
+ softbank: null,
+ google: "FEB66",
+ image: "26ab.png",
+ sheet_x: 58,
+ sheet_y: 11,
+ short_name: "black_circle",
+ short_names: ["black_circle"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "geometric",
+ sort_order: 1580,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ white_circle: {
+ char: "⚪",
+ key: "white_circle",
+ keywords: ["white_circle", "MEDIUM WHITE CIRCLE"],
+ category: "symbols",
+ lib: {
+ name: "MEDIUM WHITE CIRCLE",
+ unified: "26AA",
+ non_qualified: null,
+ docomo: "E69C",
+ au: "E53A",
+ softbank: null,
+ google: "FEB65",
+ image: "26aa.png",
+ sheet_x: 58,
+ sheet_y: 10,
+ short_name: "white_circle",
+ short_names: ["white_circle"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "geometric",
+ sort_order: 1581,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ large_red_square: {
+ char: "🟥",
+ key: "large_red_square",
+ keywords: ["large_red_square", "LARGE RED SQUARE"],
+ category: "symbols",
+ lib: {
+ name: "LARGE RED SQUARE",
+ unified: "1F7E5",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f7e5.png",
+ sheet_x: 38,
+ sheet_y: 38,
+ short_name: "large_red_square",
+ short_names: ["large_red_square"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "geometric",
+ sort_order: 1582,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ large_orange_square: {
+ char: "🟧",
+ key: "large_orange_square",
+ keywords: ["large_orange_square", "LARGE ORANGE SQUARE"],
+ category: "symbols",
+ lib: {
+ name: "LARGE ORANGE SQUARE",
+ unified: "1F7E7",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f7e7.png",
+ sheet_x: 38,
+ sheet_y: 40,
+ short_name: "large_orange_square",
+ short_names: ["large_orange_square"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "geometric",
+ sort_order: 1583,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ large_yellow_square: {
+ char: "🟨",
+ key: "large_yellow_square",
+ keywords: ["large_yellow_square", "LARGE YELLOW SQUARE"],
+ category: "symbols",
+ lib: {
+ name: "LARGE YELLOW SQUARE",
+ unified: "1F7E8",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f7e8.png",
+ sheet_x: 38,
+ sheet_y: 41,
+ short_name: "large_yellow_square",
+ short_names: ["large_yellow_square"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "geometric",
+ sort_order: 1584,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ large_green_square: {
+ char: "🟩",
+ key: "large_green_square",
+ keywords: ["large_green_square", "LARGE GREEN SQUARE"],
+ category: "symbols",
+ lib: {
+ name: "LARGE GREEN SQUARE",
+ unified: "1F7E9",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f7e9.png",
+ sheet_x: 38,
+ sheet_y: 42,
+ short_name: "large_green_square",
+ short_names: ["large_green_square"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "geometric",
+ sort_order: 1585,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ large_blue_square: {
+ char: "🟦",
+ key: "large_blue_square",
+ keywords: ["large_blue_square", "LARGE BLUE SQUARE"],
+ category: "symbols",
+ lib: {
+ name: "LARGE BLUE SQUARE",
+ unified: "1F7E6",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f7e6.png",
+ sheet_x: 38,
+ sheet_y: 39,
+ short_name: "large_blue_square",
+ short_names: ["large_blue_square"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "geometric",
+ sort_order: 1586,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ large_purple_square: {
+ char: "🟪",
+ key: "large_purple_square",
+ keywords: ["large_purple_square", "LARGE PURPLE SQUARE"],
+ category: "symbols",
+ lib: {
+ name: "LARGE PURPLE SQUARE",
+ unified: "1F7EA",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f7ea.png",
+ sheet_x: 38,
+ sheet_y: 43,
+ short_name: "large_purple_square",
+ short_names: ["large_purple_square"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "geometric",
+ sort_order: 1587,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ large_brown_square: {
+ char: "🟫",
+ key: "large_brown_square",
+ keywords: ["large_brown_square", "LARGE BROWN SQUARE"],
+ category: "symbols",
+ lib: {
+ name: "LARGE BROWN SQUARE",
+ unified: "1F7EB",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f7eb.png",
+ sheet_x: 38,
+ sheet_y: 44,
+ short_name: "large_brown_square",
+ short_names: ["large_brown_square"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "geometric",
+ sort_order: 1588,
+ added_in: "12.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ black_large_square: {
+ char: "⬛",
+ key: "black_large_square",
+ keywords: ["black_large_square", "BLACK LARGE SQUARE"],
+ category: "symbols",
+ lib: {
+ name: "BLACK LARGE SQUARE",
+ unified: "2B1B",
+ non_qualified: null,
+ docomo: null,
+ au: "E549",
+ softbank: null,
+ google: "FEB6C",
+ image: "2b1b.png",
+ sheet_x: 59,
+ sheet_y: 53,
+ short_name: "black_large_square",
+ short_names: ["black_large_square"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "geometric",
+ sort_order: 1589,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ white_large_square: {
+ char: "⬜",
+ key: "white_large_square",
+ keywords: ["white_large_square", "WHITE LARGE SQUARE"],
+ category: "symbols",
+ lib: {
+ name: "WHITE LARGE SQUARE",
+ unified: "2B1C",
+ non_qualified: null,
+ docomo: null,
+ au: "E548",
+ softbank: null,
+ google: "FEB6B",
+ image: "2b1c.png",
+ sheet_x: 59,
+ sheet_y: 54,
+ short_name: "white_large_square",
+ short_names: ["white_large_square"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "geometric",
+ sort_order: 1590,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ black_medium_square: {
+ char: "◼️",
+ key: "black_medium_square",
+ keywords: ["black_medium_square", "BLACK MEDIUM SQUARE"],
+ category: "symbols",
+ lib: {
+ name: "BLACK MEDIUM SQUARE",
+ unified: "25FC-FE0F",
+ non_qualified: "25FC",
+ docomo: null,
+ au: "E539",
+ softbank: null,
+ google: "FEB72",
+ image: "25fc-fe0f.png",
+ sheet_x: 57,
+ sheet_y: 7,
+ short_name: "black_medium_square",
+ short_names: ["black_medium_square"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "geometric",
+ sort_order: 1591,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ white_medium_square: {
+ char: "◻️",
+ key: "white_medium_square",
+ keywords: ["white_medium_square", "WHITE MEDIUM SQUARE"],
+ category: "symbols",
+ lib: {
+ name: "WHITE MEDIUM SQUARE",
+ unified: "25FB-FE0F",
+ non_qualified: "25FB",
+ docomo: null,
+ au: "E538",
+ softbank: null,
+ google: "FEB71",
+ image: "25fb-fe0f.png",
+ sheet_x: 57,
+ sheet_y: 6,
+ short_name: "white_medium_square",
+ short_names: ["white_medium_square"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "geometric",
+ sort_order: 1592,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ black_medium_small_square: {
+ char: "◾",
+ key: "black_medium_small_square",
+ keywords: ["black_medium_small_square", "BLACK MEDIUM SMALL SQUARE"],
+ category: "symbols",
+ lib: {
+ name: "BLACK MEDIUM SMALL SQUARE",
+ unified: "25FE",
+ non_qualified: null,
+ docomo: null,
+ au: "E535",
+ softbank: null,
+ google: "FEB70",
+ image: "25fe.png",
+ sheet_x: 57,
+ sheet_y: 9,
+ short_name: "black_medium_small_square",
+ short_names: ["black_medium_small_square"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "geometric",
+ sort_order: 1593,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ white_medium_small_square: {
+ char: "◽",
+ key: "white_medium_small_square",
+ keywords: ["white_medium_small_square", "WHITE MEDIUM SMALL SQUARE"],
+ category: "symbols",
+ lib: {
+ name: "WHITE MEDIUM SMALL SQUARE",
+ unified: "25FD",
+ non_qualified: null,
+ docomo: null,
+ au: "E534",
+ softbank: null,
+ google: "FEB6F",
+ image: "25fd.png",
+ sheet_x: 57,
+ sheet_y: 8,
+ short_name: "white_medium_small_square",
+ short_names: ["white_medium_small_square"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "geometric",
+ sort_order: 1594,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ black_small_square: {
+ char: "▪️",
+ key: "black_small_square",
+ keywords: ["black_small_square", "BLACK SMALL SQUARE"],
+ category: "symbols",
+ lib: {
+ name: "BLACK SMALL SQUARE",
+ unified: "25AA-FE0F",
+ non_qualified: "25AA",
+ docomo: null,
+ au: "E532",
+ softbank: null,
+ google: "FEB6E",
+ image: "25aa-fe0f.png",
+ sheet_x: 57,
+ sheet_y: 2,
+ short_name: "black_small_square",
+ short_names: ["black_small_square"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "geometric",
+ sort_order: 1595,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ white_small_square: {
+ char: "▫️",
+ key: "white_small_square",
+ keywords: ["white_small_square", "WHITE SMALL SQUARE"],
+ category: "symbols",
+ lib: {
+ name: "WHITE SMALL SQUARE",
+ unified: "25AB-FE0F",
+ non_qualified: "25AB",
+ docomo: null,
+ au: "E531",
+ softbank: null,
+ google: "FEB6D",
+ image: "25ab-fe0f.png",
+ sheet_x: 57,
+ sheet_y: 3,
+ short_name: "white_small_square",
+ short_names: ["white_small_square"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "geometric",
+ sort_order: 1596,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ large_orange_diamond: {
+ char: "🔶",
+ key: "large_orange_diamond",
+ keywords: ["large_orange_diamond", "LARGE ORANGE DIAMOND"],
+ category: "symbols",
+ lib: {
+ name: "LARGE ORANGE DIAMOND",
+ unified: "1F536",
+ non_qualified: null,
+ docomo: null,
+ au: "E546",
+ softbank: null,
+ google: "FEB73",
+ image: "1f536.png",
+ sheet_x: 30,
+ sheet_y: 19,
+ short_name: "large_orange_diamond",
+ short_names: ["large_orange_diamond"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "geometric",
+ sort_order: 1597,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ large_blue_diamond: {
+ char: "🔷",
+ key: "large_blue_diamond",
+ keywords: ["large_blue_diamond", "LARGE BLUE DIAMOND"],
+ category: "symbols",
+ lib: {
+ name: "LARGE BLUE DIAMOND",
+ unified: "1F537",
+ non_qualified: null,
+ docomo: null,
+ au: "E547",
+ softbank: null,
+ google: "FEB74",
+ image: "1f537.png",
+ sheet_x: 30,
+ sheet_y: 20,
+ short_name: "large_blue_diamond",
+ short_names: ["large_blue_diamond"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "geometric",
+ sort_order: 1598,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ small_orange_diamond: {
+ char: "🔸",
+ key: "small_orange_diamond",
+ keywords: ["small_orange_diamond", "SMALL ORANGE DIAMOND"],
+ category: "symbols",
+ lib: {
+ name: "SMALL ORANGE DIAMOND",
+ unified: "1F538",
+ non_qualified: null,
+ docomo: null,
+ au: "E536",
+ softbank: null,
+ google: "FEB75",
+ image: "1f538.png",
+ sheet_x: 30,
+ sheet_y: 21,
+ short_name: "small_orange_diamond",
+ short_names: ["small_orange_diamond"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "geometric",
+ sort_order: 1599,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ small_blue_diamond: {
+ char: "🔹",
+ key: "small_blue_diamond",
+ keywords: ["small_blue_diamond", "SMALL BLUE DIAMOND"],
+ category: "symbols",
+ lib: {
+ name: "SMALL BLUE DIAMOND",
+ unified: "1F539",
+ non_qualified: null,
+ docomo: null,
+ au: "E537",
+ softbank: null,
+ google: "FEB76",
+ image: "1f539.png",
+ sheet_x: 30,
+ sheet_y: 22,
+ short_name: "small_blue_diamond",
+ short_names: ["small_blue_diamond"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "geometric",
+ sort_order: 1600,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ small_red_triangle: {
+ char: "🔺",
+ key: "small_red_triangle",
+ keywords: ["small_red_triangle", "UP-POINTING RED TRIANGLE"],
+ category: "symbols",
+ lib: {
+ name: "UP-POINTING RED TRIANGLE",
+ unified: "1F53A",
+ non_qualified: null,
+ docomo: null,
+ au: "E55A",
+ softbank: null,
+ google: "FEB78",
+ image: "1f53a.png",
+ sheet_x: 30,
+ sheet_y: 23,
+ short_name: "small_red_triangle",
+ short_names: ["small_red_triangle"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "geometric",
+ sort_order: 1601,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ small_red_triangle_down: {
+ char: "🔻",
+ key: "small_red_triangle_down",
+ keywords: ["small_red_triangle_down", "DOWN-POINTING RED TRIANGLE"],
+ category: "symbols",
+ lib: {
+ name: "DOWN-POINTING RED TRIANGLE",
+ unified: "1F53B",
+ non_qualified: null,
+ docomo: null,
+ au: "E55B",
+ softbank: null,
+ google: "FEB79",
+ image: "1f53b.png",
+ sheet_x: 30,
+ sheet_y: 24,
+ short_name: "small_red_triangle_down",
+ short_names: ["small_red_triangle_down"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "geometric",
+ sort_order: 1602,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ diamond_shape_with_a_dot_inside: {
+ char: "💠",
+ key: "diamond_shape_with_a_dot_inside",
+ keywords: [
+ "diamond_shape_with_a_dot_inside",
+ "DIAMOND SHAPE WITH A DOT INSIDE",
+ ],
+ category: "symbols",
+ lib: {
+ name: "DIAMOND SHAPE WITH A DOT INSIDE",
+ unified: "1F4A0",
+ non_qualified: null,
+ docomo: "E6F8",
+ au: null,
+ softbank: null,
+ google: "FEB55",
+ image: "1f4a0.png",
+ sheet_x: 27,
+ sheet_y: 48,
+ short_name: "diamond_shape_with_a_dot_inside",
+ short_names: ["diamond_shape_with_a_dot_inside"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "geometric",
+ sort_order: 1603,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ radio_button: {
+ char: "🔘",
+ key: "radio_button",
+ keywords: ["radio_button", "RADIO BUTTON"],
+ category: "symbols",
+ lib: {
+ name: "RADIO BUTTON",
+ unified: "1F518",
+ non_qualified: null,
+ docomo: null,
+ au: "EB04",
+ softbank: null,
+ google: "FEB8C",
+ image: "1f518.png",
+ sheet_x: 29,
+ sheet_y: 50,
+ short_name: "radio_button",
+ short_names: ["radio_button"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "geometric",
+ sort_order: 1604,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ white_square_button: {
+ char: "🔳",
+ key: "white_square_button",
+ keywords: ["white_square_button", "WHITE SQUARE BUTTON"],
+ category: "symbols",
+ lib: {
+ name: "WHITE SQUARE BUTTON",
+ unified: "1F533",
+ non_qualified: null,
+ docomo: "E69C",
+ au: "E54B",
+ softbank: "E21B",
+ google: "FEB67",
+ image: "1f533.png",
+ sheet_x: 30,
+ sheet_y: 16,
+ short_name: "white_square_button",
+ short_names: ["white_square_button"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "geometric",
+ sort_order: 1605,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ black_square_button: {
+ char: "🔲",
+ key: "black_square_button",
+ keywords: ["black_square_button", "BLACK SQUARE BUTTON"],
+ category: "symbols",
+ lib: {
+ name: "BLACK SQUARE BUTTON",
+ unified: "1F532",
+ non_qualified: null,
+ docomo: "E69C",
+ au: "E54B",
+ softbank: "E21A",
+ google: "FEB64",
+ image: "1f532.png",
+ sheet_x: 30,
+ sheet_y: 15,
+ short_name: "black_square_button",
+ short_names: ["black_square_button"],
+ text: null,
+ texts: null,
+ category: "Symbols",
+ subcategory: "geometric",
+ sort_order: 1606,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ checkered_flag: {
+ char: "🏁",
+ key: "checkered_flag",
+ keywords: ["checkered_flag", "CHEQUERED FLAG"],
+ category: "flags",
+ lib: {
+ name: "CHEQUERED FLAG",
+ unified: "1F3C1",
+ non_qualified: null,
+ docomo: "E659",
+ au: "E4B9",
+ softbank: "E132",
+ google: "FE7D7",
+ image: "1f3c1.png",
+ sheet_x: 8,
+ sheet_y: 7,
+ short_name: "checkered_flag",
+ short_names: ["checkered_flag"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "flag",
+ sort_order: 1607,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ triangular_flag_on_post: {
+ char: "🚩",
+ key: "triangular_flag_on_post",
+ keywords: ["triangular_flag_on_post", "TRIANGULAR FLAG ON POST"],
+ category: "flags",
+ lib: {
+ name: "TRIANGULAR FLAG ON POST",
+ unified: "1F6A9",
+ non_qualified: null,
+ docomo: "E6DE",
+ au: "EB2C",
+ softbank: null,
+ google: "FEB22",
+ image: "1f6a9.png",
+ sheet_x: 36,
+ sheet_y: 30,
+ short_name: "triangular_flag_on_post",
+ short_names: ["triangular_flag_on_post"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "flag",
+ sort_order: 1608,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ crossed_flags: {
+ char: "🎌",
+ key: "crossed_flags",
+ keywords: ["crossed_flags", "CROSSED FLAGS"],
+ category: "flags",
+ lib: {
+ name: "CROSSED FLAGS",
+ unified: "1F38C",
+ non_qualified: null,
+ docomo: null,
+ au: "E5D9",
+ softbank: "E143",
+ google: "FE514",
+ image: "1f38c.png",
+ sheet_x: 7,
+ sheet_y: 20,
+ short_name: "crossed_flags",
+ short_names: ["crossed_flags"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "flag",
+ sort_order: 1609,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ waving_black_flag: {
+ char: "🏴",
+ key: "waving_black_flag",
+ keywords: ["waving_black_flag", "WAVING BLACK FLAG"],
+ category: "flags",
+ lib: {
+ name: "WAVING BLACK FLAG",
+ unified: "1F3F4",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f3f4.png",
+ sheet_x: 10,
+ sheet_y: 35,
+ short_name: "waving_black_flag",
+ short_names: ["waving_black_flag"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "flag",
+ sort_order: 1610,
+ added_in: "1.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ waving_white_flag: {
+ char: "🏳️",
+ key: "waving_white_flag",
+ keywords: ["waving_white_flag", "WHITE FLAG"],
+ category: "flags",
+ lib: {
+ name: "WHITE FLAG",
+ unified: "1F3F3-FE0F",
+ non_qualified: "1F3F3",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f3f3-fe0f.png",
+ sheet_x: 10,
+ sheet_y: 30,
+ short_name: "waving_white_flag",
+ short_names: ["waving_white_flag"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "flag",
+ sort_order: 1611,
+ added_in: "0.7",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "rainbow-flag": {
+ char: "🏳️🌈",
+ key: "rainbow-flag",
+ keywords: ["rainbow-flag", "RAINBOW FLAG"],
+ category: "flags",
+ lib: {
+ name: "RAINBOW FLAG",
+ unified: "1F3F3-FE0F-200D-1F308",
+ non_qualified: "1F3F3-200D-1F308",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f3f3-fe0f-200d-1f308.png",
+ sheet_x: 10,
+ sheet_y: 28,
+ short_name: "rainbow-flag",
+ short_names: ["rainbow-flag"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "flag",
+ sort_order: 1612,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ transgender_flag: {
+ char: "🏳️⚧️",
+ key: "transgender_flag",
+ keywords: ["transgender_flag", "TRANSGENDER FLAG"],
+ category: "flags",
+ lib: {
+ name: "TRANSGENDER FLAG",
+ unified: "1F3F3-FE0F-200D-26A7-FE0F",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f3f3-fe0f-200d-26a7-fe0f.png",
+ sheet_x: 10,
+ sheet_y: 29,
+ short_name: "transgender_flag",
+ short_names: ["transgender_flag"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "flag",
+ sort_order: 1613,
+ added_in: "13.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: false,
+ },
+ },
+ pirate_flag: {
+ char: "🏴☠️",
+ key: "pirate_flag",
+ keywords: ["pirate_flag", "PIRATE FLAG"],
+ category: "flags",
+ lib: {
+ name: "PIRATE FLAG",
+ unified: "1F3F4-200D-2620-FE0F",
+ non_qualified: "1F3F4-200D-2620",
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f3f4-200d-2620-fe0f.png",
+ sheet_x: 10,
+ sheet_y: 31,
+ short_name: "pirate_flag",
+ short_names: ["pirate_flag"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "flag",
+ sort_order: 1614,
+ added_in: "11.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-ac": {
+ char: "🇦🇨",
+ key: "flag-ac",
+ keywords: ["flag-ac", "Ascension Island Flag"],
+ category: "flags",
+ lib: {
+ name: "Ascension Island Flag",
+ unified: "1F1E6-1F1E8",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1e6-1f1e8.png",
+ sheet_x: 0,
+ sheet_y: 31,
+ short_name: "flag-ac",
+ short_names: ["flag-ac"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1615,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-ad": {
+ char: "🇦🇩",
+ key: "flag-ad",
+ keywords: ["flag-ad", "Andorra Flag"],
+ category: "flags",
+ lib: {
+ name: "Andorra Flag",
+ unified: "1F1E6-1F1E9",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1e6-1f1e9.png",
+ sheet_x: 0,
+ sheet_y: 32,
+ short_name: "flag-ad",
+ short_names: ["flag-ad"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1616,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-ae": {
+ char: "🇦🇪",
+ key: "flag-ae",
+ keywords: ["flag-ae", "United Arab Emirates Flag"],
+ category: "flags",
+ lib: {
+ name: "United Arab Emirates Flag",
+ unified: "1F1E6-1F1EA",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1e6-1f1ea.png",
+ sheet_x: 0,
+ sheet_y: 33,
+ short_name: "flag-ae",
+ short_names: ["flag-ae"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1617,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-af": {
+ char: "🇦🇫",
+ key: "flag-af",
+ keywords: ["flag-af", "Afghanistan Flag"],
+ category: "flags",
+ lib: {
+ name: "Afghanistan Flag",
+ unified: "1F1E6-1F1EB",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1e6-1f1eb.png",
+ sheet_x: 0,
+ sheet_y: 34,
+ short_name: "flag-af",
+ short_names: ["flag-af"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1618,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-ag": {
+ char: "🇦🇬",
+ key: "flag-ag",
+ keywords: ["flag-ag", "Antigua & Barbuda Flag"],
+ category: "flags",
+ lib: {
+ name: "Antigua & Barbuda Flag",
+ unified: "1F1E6-1F1EC",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1e6-1f1ec.png",
+ sheet_x: 0,
+ sheet_y: 35,
+ short_name: "flag-ag",
+ short_names: ["flag-ag"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1619,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-ai": {
+ char: "🇦🇮",
+ key: "flag-ai",
+ keywords: ["flag-ai", "Anguilla Flag"],
+ category: "flags",
+ lib: {
+ name: "Anguilla Flag",
+ unified: "1F1E6-1F1EE",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1e6-1f1ee.png",
+ sheet_x: 0,
+ sheet_y: 36,
+ short_name: "flag-ai",
+ short_names: ["flag-ai"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1620,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-al": {
+ char: "🇦🇱",
+ key: "flag-al",
+ keywords: ["flag-al", "Albania Flag"],
+ category: "flags",
+ lib: {
+ name: "Albania Flag",
+ unified: "1F1E6-1F1F1",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1e6-1f1f1.png",
+ sheet_x: 0,
+ sheet_y: 37,
+ short_name: "flag-al",
+ short_names: ["flag-al"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1621,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-am": {
+ char: "🇦🇲",
+ key: "flag-am",
+ keywords: ["flag-am", "Armenia Flag"],
+ category: "flags",
+ lib: {
+ name: "Armenia Flag",
+ unified: "1F1E6-1F1F2",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1e6-1f1f2.png",
+ sheet_x: 0,
+ sheet_y: 38,
+ short_name: "flag-am",
+ short_names: ["flag-am"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1622,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-ao": {
+ char: "🇦🇴",
+ key: "flag-ao",
+ keywords: ["flag-ao", "Angola Flag"],
+ category: "flags",
+ lib: {
+ name: "Angola Flag",
+ unified: "1F1E6-1F1F4",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1e6-1f1f4.png",
+ sheet_x: 0,
+ sheet_y: 39,
+ short_name: "flag-ao",
+ short_names: ["flag-ao"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1623,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-aq": {
+ char: "🇦🇶",
+ key: "flag-aq",
+ keywords: ["flag-aq", "Antarctica Flag"],
+ category: "flags",
+ lib: {
+ name: "Antarctica Flag",
+ unified: "1F1E6-1F1F6",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1e6-1f1f6.png",
+ sheet_x: 0,
+ sheet_y: 40,
+ short_name: "flag-aq",
+ short_names: ["flag-aq"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1624,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-ar": {
+ char: "🇦🇷",
+ key: "flag-ar",
+ keywords: ["flag-ar", "Argentina Flag"],
+ category: "flags",
+ lib: {
+ name: "Argentina Flag",
+ unified: "1F1E6-1F1F7",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1e6-1f1f7.png",
+ sheet_x: 0,
+ sheet_y: 41,
+ short_name: "flag-ar",
+ short_names: ["flag-ar"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1625,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-as": {
+ char: "🇦🇸",
+ key: "flag-as",
+ keywords: ["flag-as", "American Samoa Flag"],
+ category: "flags",
+ lib: {
+ name: "American Samoa Flag",
+ unified: "1F1E6-1F1F8",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1e6-1f1f8.png",
+ sheet_x: 0,
+ sheet_y: 42,
+ short_name: "flag-as",
+ short_names: ["flag-as"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1626,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-at": {
+ char: "🇦🇹",
+ key: "flag-at",
+ keywords: ["flag-at", "Austria Flag"],
+ category: "flags",
+ lib: {
+ name: "Austria Flag",
+ unified: "1F1E6-1F1F9",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1e6-1f1f9.png",
+ sheet_x: 0,
+ sheet_y: 43,
+ short_name: "flag-at",
+ short_names: ["flag-at"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1627,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-au": {
+ char: "🇦🇺",
+ key: "flag-au",
+ keywords: ["flag-au", "Australia Flag"],
+ category: "flags",
+ lib: {
+ name: "Australia Flag",
+ unified: "1F1E6-1F1FA",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1e6-1f1fa.png",
+ sheet_x: 0,
+ sheet_y: 44,
+ short_name: "flag-au",
+ short_names: ["flag-au"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1628,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-aw": {
+ char: "🇦🇼",
+ key: "flag-aw",
+ keywords: ["flag-aw", "Aruba Flag"],
+ category: "flags",
+ lib: {
+ name: "Aruba Flag",
+ unified: "1F1E6-1F1FC",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1e6-1f1fc.png",
+ sheet_x: 0,
+ sheet_y: 45,
+ short_name: "flag-aw",
+ short_names: ["flag-aw"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1629,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-ax": {
+ char: "🇦🇽",
+ key: "flag-ax",
+ keywords: ["flag-ax", "Åland Islands Flag"],
+ category: "flags",
+ lib: {
+ name: "Åland Islands Flag",
+ unified: "1F1E6-1F1FD",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1e6-1f1fd.png",
+ sheet_x: 0,
+ sheet_y: 46,
+ short_name: "flag-ax",
+ short_names: ["flag-ax"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1630,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-az": {
+ char: "🇦🇿",
+ key: "flag-az",
+ keywords: ["flag-az", "Azerbaijan Flag"],
+ category: "flags",
+ lib: {
+ name: "Azerbaijan Flag",
+ unified: "1F1E6-1F1FF",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1e6-1f1ff.png",
+ sheet_x: 0,
+ sheet_y: 47,
+ short_name: "flag-az",
+ short_names: ["flag-az"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1631,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-ba": {
+ char: "🇧🇦",
+ key: "flag-ba",
+ keywords: ["flag-ba", "Bosnia & Herzegovina Flag"],
+ category: "flags",
+ lib: {
+ name: "Bosnia & Herzegovina Flag",
+ unified: "1F1E7-1F1E6",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1e7-1f1e6.png",
+ sheet_x: 0,
+ sheet_y: 48,
+ short_name: "flag-ba",
+ short_names: ["flag-ba"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1632,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-bb": {
+ char: "🇧🇧",
+ key: "flag-bb",
+ keywords: ["flag-bb", "Barbados Flag"],
+ category: "flags",
+ lib: {
+ name: "Barbados Flag",
+ unified: "1F1E7-1F1E7",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1e7-1f1e7.png",
+ sheet_x: 0,
+ sheet_y: 49,
+ short_name: "flag-bb",
+ short_names: ["flag-bb"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1633,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-bd": {
+ char: "🇧🇩",
+ key: "flag-bd",
+ keywords: ["flag-bd", "Bangladesh Flag"],
+ category: "flags",
+ lib: {
+ name: "Bangladesh Flag",
+ unified: "1F1E7-1F1E9",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1e7-1f1e9.png",
+ sheet_x: 0,
+ sheet_y: 50,
+ short_name: "flag-bd",
+ short_names: ["flag-bd"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1634,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-be": {
+ char: "🇧🇪",
+ key: "flag-be",
+ keywords: ["flag-be", "Belgium Flag"],
+ category: "flags",
+ lib: {
+ name: "Belgium Flag",
+ unified: "1F1E7-1F1EA",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1e7-1f1ea.png",
+ sheet_x: 0,
+ sheet_y: 51,
+ short_name: "flag-be",
+ short_names: ["flag-be"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1635,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-bf": {
+ char: "🇧🇫",
+ key: "flag-bf",
+ keywords: ["flag-bf", "Burkina Faso Flag"],
+ category: "flags",
+ lib: {
+ name: "Burkina Faso Flag",
+ unified: "1F1E7-1F1EB",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1e7-1f1eb.png",
+ sheet_x: 0,
+ sheet_y: 52,
+ short_name: "flag-bf",
+ short_names: ["flag-bf"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1636,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-bg": {
+ char: "🇧🇬",
+ key: "flag-bg",
+ keywords: ["flag-bg", "Bulgaria Flag"],
+ category: "flags",
+ lib: {
+ name: "Bulgaria Flag",
+ unified: "1F1E7-1F1EC",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1e7-1f1ec.png",
+ sheet_x: 0,
+ sheet_y: 53,
+ short_name: "flag-bg",
+ short_names: ["flag-bg"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1637,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-bh": {
+ char: "🇧🇭",
+ key: "flag-bh",
+ keywords: ["flag-bh", "Bahrain Flag"],
+ category: "flags",
+ lib: {
+ name: "Bahrain Flag",
+ unified: "1F1E7-1F1ED",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1e7-1f1ed.png",
+ sheet_x: 0,
+ sheet_y: 54,
+ short_name: "flag-bh",
+ short_names: ["flag-bh"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1638,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-bi": {
+ char: "🇧🇮",
+ key: "flag-bi",
+ keywords: ["flag-bi", "Burundi Flag"],
+ category: "flags",
+ lib: {
+ name: "Burundi Flag",
+ unified: "1F1E7-1F1EE",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1e7-1f1ee.png",
+ sheet_x: 0,
+ sheet_y: 55,
+ short_name: "flag-bi",
+ short_names: ["flag-bi"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1639,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-bj": {
+ char: "🇧🇯",
+ key: "flag-bj",
+ keywords: ["flag-bj", "Benin Flag"],
+ category: "flags",
+ lib: {
+ name: "Benin Flag",
+ unified: "1F1E7-1F1EF",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1e7-1f1ef.png",
+ sheet_x: 0,
+ sheet_y: 56,
+ short_name: "flag-bj",
+ short_names: ["flag-bj"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1640,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-bl": {
+ char: "🇧🇱",
+ key: "flag-bl",
+ keywords: ["flag-bl", "St. Barthélemy Flag"],
+ category: "flags",
+ lib: {
+ name: "St. Barthélemy Flag",
+ unified: "1F1E7-1F1F1",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1e7-1f1f1.png",
+ sheet_x: 0,
+ sheet_y: 57,
+ short_name: "flag-bl",
+ short_names: ["flag-bl"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1641,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-bm": {
+ char: "🇧🇲",
+ key: "flag-bm",
+ keywords: ["flag-bm", "Bermuda Flag"],
+ category: "flags",
+ lib: {
+ name: "Bermuda Flag",
+ unified: "1F1E7-1F1F2",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1e7-1f1f2.png",
+ sheet_x: 0,
+ sheet_y: 58,
+ short_name: "flag-bm",
+ short_names: ["flag-bm"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1642,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-bn": {
+ char: "🇧🇳",
+ key: "flag-bn",
+ keywords: ["flag-bn", "Brunei Flag"],
+ category: "flags",
+ lib: {
+ name: "Brunei Flag",
+ unified: "1F1E7-1F1F3",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1e7-1f1f3.png",
+ sheet_x: 0,
+ sheet_y: 59,
+ short_name: "flag-bn",
+ short_names: ["flag-bn"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1643,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-bo": {
+ char: "🇧🇴",
+ key: "flag-bo",
+ keywords: ["flag-bo", "Bolivia Flag"],
+ category: "flags",
+ lib: {
+ name: "Bolivia Flag",
+ unified: "1F1E7-1F1F4",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1e7-1f1f4.png",
+ sheet_x: 0,
+ sheet_y: 60,
+ short_name: "flag-bo",
+ short_names: ["flag-bo"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1644,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-bq": {
+ char: "🇧🇶",
+ key: "flag-bq",
+ keywords: ["flag-bq", "Caribbean Netherlands Flag"],
+ category: "flags",
+ lib: {
+ name: "Caribbean Netherlands Flag",
+ unified: "1F1E7-1F1F6",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1e7-1f1f6.png",
+ sheet_x: 1,
+ sheet_y: 0,
+ short_name: "flag-bq",
+ short_names: ["flag-bq"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1645,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-br": {
+ char: "🇧🇷",
+ key: "flag-br",
+ keywords: ["flag-br", "Brazil Flag"],
+ category: "flags",
+ lib: {
+ name: "Brazil Flag",
+ unified: "1F1E7-1F1F7",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1e7-1f1f7.png",
+ sheet_x: 1,
+ sheet_y: 1,
+ short_name: "flag-br",
+ short_names: ["flag-br"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1646,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-bs": {
+ char: "🇧🇸",
+ key: "flag-bs",
+ keywords: ["flag-bs", "Bahamas Flag"],
+ category: "flags",
+ lib: {
+ name: "Bahamas Flag",
+ unified: "1F1E7-1F1F8",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1e7-1f1f8.png",
+ sheet_x: 1,
+ sheet_y: 2,
+ short_name: "flag-bs",
+ short_names: ["flag-bs"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1647,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-bt": {
+ char: "🇧🇹",
+ key: "flag-bt",
+ keywords: ["flag-bt", "Bhutan Flag"],
+ category: "flags",
+ lib: {
+ name: "Bhutan Flag",
+ unified: "1F1E7-1F1F9",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1e7-1f1f9.png",
+ sheet_x: 1,
+ sheet_y: 3,
+ short_name: "flag-bt",
+ short_names: ["flag-bt"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1648,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-bv": {
+ char: "🇧🇻",
+ key: "flag-bv",
+ keywords: ["flag-bv", "Bouvet Island Flag"],
+ category: "flags",
+ lib: {
+ name: "Bouvet Island Flag",
+ unified: "1F1E7-1F1FB",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1e7-1f1fb.png",
+ sheet_x: 1,
+ sheet_y: 4,
+ short_name: "flag-bv",
+ short_names: ["flag-bv"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1649,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-bw": {
+ char: "🇧🇼",
+ key: "flag-bw",
+ keywords: ["flag-bw", "Botswana Flag"],
+ category: "flags",
+ lib: {
+ name: "Botswana Flag",
+ unified: "1F1E7-1F1FC",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1e7-1f1fc.png",
+ sheet_x: 1,
+ sheet_y: 5,
+ short_name: "flag-bw",
+ short_names: ["flag-bw"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1650,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-by": {
+ char: "🇧🇾",
+ key: "flag-by",
+ keywords: ["flag-by", "Belarus Flag"],
+ category: "flags",
+ lib: {
+ name: "Belarus Flag",
+ unified: "1F1E7-1F1FE",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1e7-1f1fe.png",
+ sheet_x: 1,
+ sheet_y: 6,
+ short_name: "flag-by",
+ short_names: ["flag-by"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1651,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-bz": {
+ char: "🇧🇿",
+ key: "flag-bz",
+ keywords: ["flag-bz", "Belize Flag"],
+ category: "flags",
+ lib: {
+ name: "Belize Flag",
+ unified: "1F1E7-1F1FF",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1e7-1f1ff.png",
+ sheet_x: 1,
+ sheet_y: 7,
+ short_name: "flag-bz",
+ short_names: ["flag-bz"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1652,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-ca": {
+ char: "🇨🇦",
+ key: "flag-ca",
+ keywords: ["flag-ca", "Canada Flag"],
+ category: "flags",
+ lib: {
+ name: "Canada Flag",
+ unified: "1F1E8-1F1E6",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1e8-1f1e6.png",
+ sheet_x: 1,
+ sheet_y: 8,
+ short_name: "flag-ca",
+ short_names: ["flag-ca"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1653,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-cc": {
+ char: "🇨🇨",
+ key: "flag-cc",
+ keywords: ["flag-cc", "Cocos (Keeling) Islands Flag"],
+ category: "flags",
+ lib: {
+ name: "Cocos (Keeling) Islands Flag",
+ unified: "1F1E8-1F1E8",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1e8-1f1e8.png",
+ sheet_x: 1,
+ sheet_y: 9,
+ short_name: "flag-cc",
+ short_names: ["flag-cc"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1654,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-cd": {
+ char: "🇨🇩",
+ key: "flag-cd",
+ keywords: ["flag-cd", "Congo - Kinshasa Flag"],
+ category: "flags",
+ lib: {
+ name: "Congo - Kinshasa Flag",
+ unified: "1F1E8-1F1E9",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1e8-1f1e9.png",
+ sheet_x: 1,
+ sheet_y: 10,
+ short_name: "flag-cd",
+ short_names: ["flag-cd"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1655,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-cf": {
+ char: "🇨🇫",
+ key: "flag-cf",
+ keywords: ["flag-cf", "Central African Republic Flag"],
+ category: "flags",
+ lib: {
+ name: "Central African Republic Flag",
+ unified: "1F1E8-1F1EB",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1e8-1f1eb.png",
+ sheet_x: 1,
+ sheet_y: 11,
+ short_name: "flag-cf",
+ short_names: ["flag-cf"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1656,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-cg": {
+ char: "🇨🇬",
+ key: "flag-cg",
+ keywords: ["flag-cg", "Congo - Brazzaville Flag"],
+ category: "flags",
+ lib: {
+ name: "Congo - Brazzaville Flag",
+ unified: "1F1E8-1F1EC",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1e8-1f1ec.png",
+ sheet_x: 1,
+ sheet_y: 12,
+ short_name: "flag-cg",
+ short_names: ["flag-cg"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1657,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-ch": {
+ char: "🇨🇭",
+ key: "flag-ch",
+ keywords: ["flag-ch", "Switzerland Flag"],
+ category: "flags",
+ lib: {
+ name: "Switzerland Flag",
+ unified: "1F1E8-1F1ED",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1e8-1f1ed.png",
+ sheet_x: 1,
+ sheet_y: 13,
+ short_name: "flag-ch",
+ short_names: ["flag-ch"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1658,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-ci": {
+ char: "🇨🇮",
+ key: "flag-ci",
+ keywords: ["flag-ci", "Côte d’Ivoire Flag"],
+ category: "flags",
+ lib: {
+ name: "Côte d’Ivoire Flag",
+ unified: "1F1E8-1F1EE",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1e8-1f1ee.png",
+ sheet_x: 1,
+ sheet_y: 14,
+ short_name: "flag-ci",
+ short_names: ["flag-ci"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1659,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-ck": {
+ char: "🇨🇰",
+ key: "flag-ck",
+ keywords: ["flag-ck", "Cook Islands Flag"],
+ category: "flags",
+ lib: {
+ name: "Cook Islands Flag",
+ unified: "1F1E8-1F1F0",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1e8-1f1f0.png",
+ sheet_x: 1,
+ sheet_y: 15,
+ short_name: "flag-ck",
+ short_names: ["flag-ck"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1660,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-cl": {
+ char: "🇨🇱",
+ key: "flag-cl",
+ keywords: ["flag-cl", "Chile Flag"],
+ category: "flags",
+ lib: {
+ name: "Chile Flag",
+ unified: "1F1E8-1F1F1",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1e8-1f1f1.png",
+ sheet_x: 1,
+ sheet_y: 16,
+ short_name: "flag-cl",
+ short_names: ["flag-cl"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1661,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-cm": {
+ char: "🇨🇲",
+ key: "flag-cm",
+ keywords: ["flag-cm", "Cameroon Flag"],
+ category: "flags",
+ lib: {
+ name: "Cameroon Flag",
+ unified: "1F1E8-1F1F2",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1e8-1f1f2.png",
+ sheet_x: 1,
+ sheet_y: 17,
+ short_name: "flag-cm",
+ short_names: ["flag-cm"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1662,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ cn: {
+ char: "🇨🇳",
+ key: "cn",
+ keywords: ["cn", "China Flag"],
+ category: "flags",
+ lib: {
+ name: "China Flag",
+ unified: "1F1E8-1F1F3",
+ non_qualified: null,
+ docomo: null,
+ au: "EB11",
+ softbank: "E513",
+ google: "FE4ED",
+ image: "1f1e8-1f1f3.png",
+ sheet_x: 1,
+ sheet_y: 18,
+ short_name: "cn",
+ short_names: ["cn", "flag-cn"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1663,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-co": {
+ char: "🇨🇴",
+ key: "flag-co",
+ keywords: ["flag-co", "Colombia Flag"],
+ category: "flags",
+ lib: {
+ name: "Colombia Flag",
+ unified: "1F1E8-1F1F4",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1e8-1f1f4.png",
+ sheet_x: 1,
+ sheet_y: 19,
+ short_name: "flag-co",
+ short_names: ["flag-co"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1664,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-cp": {
+ char: "🇨🇵",
+ key: "flag-cp",
+ keywords: ["flag-cp", "Clipperton Island Flag"],
+ category: "flags",
+ lib: {
+ name: "Clipperton Island Flag",
+ unified: "1F1E8-1F1F5",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1e8-1f1f5.png",
+ sheet_x: 1,
+ sheet_y: 20,
+ short_name: "flag-cp",
+ short_names: ["flag-cp"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1665,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-cr": {
+ char: "🇨🇷",
+ key: "flag-cr",
+ keywords: ["flag-cr", "Costa Rica Flag"],
+ category: "flags",
+ lib: {
+ name: "Costa Rica Flag",
+ unified: "1F1E8-1F1F7",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1e8-1f1f7.png",
+ sheet_x: 1,
+ sheet_y: 21,
+ short_name: "flag-cr",
+ short_names: ["flag-cr"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1666,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-cu": {
+ char: "🇨🇺",
+ key: "flag-cu",
+ keywords: ["flag-cu", "Cuba Flag"],
+ category: "flags",
+ lib: {
+ name: "Cuba Flag",
+ unified: "1F1E8-1F1FA",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1e8-1f1fa.png",
+ sheet_x: 1,
+ sheet_y: 22,
+ short_name: "flag-cu",
+ short_names: ["flag-cu"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1667,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-cv": {
+ char: "🇨🇻",
+ key: "flag-cv",
+ keywords: ["flag-cv", "Cape Verde Flag"],
+ category: "flags",
+ lib: {
+ name: "Cape Verde Flag",
+ unified: "1F1E8-1F1FB",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1e8-1f1fb.png",
+ sheet_x: 1,
+ sheet_y: 23,
+ short_name: "flag-cv",
+ short_names: ["flag-cv"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1668,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-cw": {
+ char: "🇨🇼",
+ key: "flag-cw",
+ keywords: ["flag-cw", "Curaçao Flag"],
+ category: "flags",
+ lib: {
+ name: "Curaçao Flag",
+ unified: "1F1E8-1F1FC",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1e8-1f1fc.png",
+ sheet_x: 1,
+ sheet_y: 24,
+ short_name: "flag-cw",
+ short_names: ["flag-cw"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1669,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-cx": {
+ char: "🇨🇽",
+ key: "flag-cx",
+ keywords: ["flag-cx", "Christmas Island Flag"],
+ category: "flags",
+ lib: {
+ name: "Christmas Island Flag",
+ unified: "1F1E8-1F1FD",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1e8-1f1fd.png",
+ sheet_x: 1,
+ sheet_y: 25,
+ short_name: "flag-cx",
+ short_names: ["flag-cx"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1670,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-cy": {
+ char: "🇨🇾",
+ key: "flag-cy",
+ keywords: ["flag-cy", "Cyprus Flag"],
+ category: "flags",
+ lib: {
+ name: "Cyprus Flag",
+ unified: "1F1E8-1F1FE",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1e8-1f1fe.png",
+ sheet_x: 1,
+ sheet_y: 26,
+ short_name: "flag-cy",
+ short_names: ["flag-cy"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1671,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-cz": {
+ char: "🇨🇿",
+ key: "flag-cz",
+ keywords: ["flag-cz", "Czechia Flag"],
+ category: "flags",
+ lib: {
+ name: "Czechia Flag",
+ unified: "1F1E8-1F1FF",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1e8-1f1ff.png",
+ sheet_x: 1,
+ sheet_y: 27,
+ short_name: "flag-cz",
+ short_names: ["flag-cz"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1672,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ de: {
+ char: "🇩🇪",
+ key: "de",
+ keywords: ["de", "Germany Flag"],
+ category: "flags",
+ lib: {
+ name: "Germany Flag",
+ unified: "1F1E9-1F1EA",
+ non_qualified: null,
+ docomo: null,
+ au: "EB0E",
+ softbank: "E50E",
+ google: "FE4E8",
+ image: "1f1e9-1f1ea.png",
+ sheet_x: 1,
+ sheet_y: 28,
+ short_name: "de",
+ short_names: ["de", "flag-de"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1673,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-dg": {
+ char: "🇩🇬",
+ key: "flag-dg",
+ keywords: ["flag-dg", "Diego Garcia Flag"],
+ category: "flags",
+ lib: {
+ name: "Diego Garcia Flag",
+ unified: "1F1E9-1F1EC",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1e9-1f1ec.png",
+ sheet_x: 1,
+ sheet_y: 29,
+ short_name: "flag-dg",
+ short_names: ["flag-dg"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1674,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-dj": {
+ char: "🇩🇯",
+ key: "flag-dj",
+ keywords: ["flag-dj", "Djibouti Flag"],
+ category: "flags",
+ lib: {
+ name: "Djibouti Flag",
+ unified: "1F1E9-1F1EF",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1e9-1f1ef.png",
+ sheet_x: 1,
+ sheet_y: 30,
+ short_name: "flag-dj",
+ short_names: ["flag-dj"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1675,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-dk": {
+ char: "🇩🇰",
+ key: "flag-dk",
+ keywords: ["flag-dk", "Denmark Flag"],
+ category: "flags",
+ lib: {
+ name: "Denmark Flag",
+ unified: "1F1E9-1F1F0",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1e9-1f1f0.png",
+ sheet_x: 1,
+ sheet_y: 31,
+ short_name: "flag-dk",
+ short_names: ["flag-dk"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1676,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-dm": {
+ char: "🇩🇲",
+ key: "flag-dm",
+ keywords: ["flag-dm", "Dominica Flag"],
+ category: "flags",
+ lib: {
+ name: "Dominica Flag",
+ unified: "1F1E9-1F1F2",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1e9-1f1f2.png",
+ sheet_x: 1,
+ sheet_y: 32,
+ short_name: "flag-dm",
+ short_names: ["flag-dm"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1677,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-do": {
+ char: "🇩🇴",
+ key: "flag-do",
+ keywords: ["flag-do", "Dominican Republic Flag"],
+ category: "flags",
+ lib: {
+ name: "Dominican Republic Flag",
+ unified: "1F1E9-1F1F4",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1e9-1f1f4.png",
+ sheet_x: 1,
+ sheet_y: 33,
+ short_name: "flag-do",
+ short_names: ["flag-do"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1678,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-dz": {
+ char: "🇩🇿",
+ key: "flag-dz",
+ keywords: ["flag-dz", "Algeria Flag"],
+ category: "flags",
+ lib: {
+ name: "Algeria Flag",
+ unified: "1F1E9-1F1FF",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1e9-1f1ff.png",
+ sheet_x: 1,
+ sheet_y: 34,
+ short_name: "flag-dz",
+ short_names: ["flag-dz"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1679,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-ea": {
+ char: "🇪🇦",
+ key: "flag-ea",
+ keywords: ["flag-ea", "Ceuta & Melilla Flag"],
+ category: "flags",
+ lib: {
+ name: "Ceuta & Melilla Flag",
+ unified: "1F1EA-1F1E6",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1ea-1f1e6.png",
+ sheet_x: 1,
+ sheet_y: 35,
+ short_name: "flag-ea",
+ short_names: ["flag-ea"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1680,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-ec": {
+ char: "🇪🇨",
+ key: "flag-ec",
+ keywords: ["flag-ec", "Ecuador Flag"],
+ category: "flags",
+ lib: {
+ name: "Ecuador Flag",
+ unified: "1F1EA-1F1E8",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1ea-1f1e8.png",
+ sheet_x: 1,
+ sheet_y: 36,
+ short_name: "flag-ec",
+ short_names: ["flag-ec"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1681,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-ee": {
+ char: "🇪🇪",
+ key: "flag-ee",
+ keywords: ["flag-ee", "Estonia Flag"],
+ category: "flags",
+ lib: {
+ name: "Estonia Flag",
+ unified: "1F1EA-1F1EA",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1ea-1f1ea.png",
+ sheet_x: 1,
+ sheet_y: 37,
+ short_name: "flag-ee",
+ short_names: ["flag-ee"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1682,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-eg": {
+ char: "🇪🇬",
+ key: "flag-eg",
+ keywords: ["flag-eg", "Egypt Flag"],
+ category: "flags",
+ lib: {
+ name: "Egypt Flag",
+ unified: "1F1EA-1F1EC",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1ea-1f1ec.png",
+ sheet_x: 1,
+ sheet_y: 38,
+ short_name: "flag-eg",
+ short_names: ["flag-eg"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1683,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-eh": {
+ char: "🇪🇭",
+ key: "flag-eh",
+ keywords: ["flag-eh", "Western Sahara Flag"],
+ category: "flags",
+ lib: {
+ name: "Western Sahara Flag",
+ unified: "1F1EA-1F1ED",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1ea-1f1ed.png",
+ sheet_x: 1,
+ sheet_y: 39,
+ short_name: "flag-eh",
+ short_names: ["flag-eh"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1684,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-er": {
+ char: "🇪🇷",
+ key: "flag-er",
+ keywords: ["flag-er", "Eritrea Flag"],
+ category: "flags",
+ lib: {
+ name: "Eritrea Flag",
+ unified: "1F1EA-1F1F7",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1ea-1f1f7.png",
+ sheet_x: 1,
+ sheet_y: 40,
+ short_name: "flag-er",
+ short_names: ["flag-er"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1685,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ es: {
+ char: "🇪🇸",
+ key: "es",
+ keywords: ["es", "Spain Flag"],
+ category: "flags",
+ lib: {
+ name: "Spain Flag",
+ unified: "1F1EA-1F1F8",
+ non_qualified: null,
+ docomo: null,
+ au: "E5D5",
+ softbank: "E511",
+ google: "FE4EB",
+ image: "1f1ea-1f1f8.png",
+ sheet_x: 1,
+ sheet_y: 41,
+ short_name: "es",
+ short_names: ["es", "flag-es"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1686,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-et": {
+ char: "🇪🇹",
+ key: "flag-et",
+ keywords: ["flag-et", "Ethiopia Flag"],
+ category: "flags",
+ lib: {
+ name: "Ethiopia Flag",
+ unified: "1F1EA-1F1F9",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1ea-1f1f9.png",
+ sheet_x: 1,
+ sheet_y: 42,
+ short_name: "flag-et",
+ short_names: ["flag-et"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1687,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-eu": {
+ char: "🇪🇺",
+ key: "flag-eu",
+ keywords: ["flag-eu", "European Union Flag"],
+ category: "flags",
+ lib: {
+ name: "European Union Flag",
+ unified: "1F1EA-1F1FA",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1ea-1f1fa.png",
+ sheet_x: 1,
+ sheet_y: 43,
+ short_name: "flag-eu",
+ short_names: ["flag-eu"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1688,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-fi": {
+ char: "🇫🇮",
+ key: "flag-fi",
+ keywords: ["flag-fi", "Finland Flag"],
+ category: "flags",
+ lib: {
+ name: "Finland Flag",
+ unified: "1F1EB-1F1EE",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1eb-1f1ee.png",
+ sheet_x: 1,
+ sheet_y: 44,
+ short_name: "flag-fi",
+ short_names: ["flag-fi"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1689,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-fj": {
+ char: "🇫🇯",
+ key: "flag-fj",
+ keywords: ["flag-fj", "Fiji Flag"],
+ category: "flags",
+ lib: {
+ name: "Fiji Flag",
+ unified: "1F1EB-1F1EF",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1eb-1f1ef.png",
+ sheet_x: 1,
+ sheet_y: 45,
+ short_name: "flag-fj",
+ short_names: ["flag-fj"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1690,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-fk": {
+ char: "🇫🇰",
+ key: "flag-fk",
+ keywords: ["flag-fk", "Falkland Islands Flag"],
+ category: "flags",
+ lib: {
+ name: "Falkland Islands Flag",
+ unified: "1F1EB-1F1F0",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1eb-1f1f0.png",
+ sheet_x: 1,
+ sheet_y: 46,
+ short_name: "flag-fk",
+ short_names: ["flag-fk"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1691,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-fm": {
+ char: "🇫🇲",
+ key: "flag-fm",
+ keywords: ["flag-fm", "Micronesia Flag"],
+ category: "flags",
+ lib: {
+ name: "Micronesia Flag",
+ unified: "1F1EB-1F1F2",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1eb-1f1f2.png",
+ sheet_x: 1,
+ sheet_y: 47,
+ short_name: "flag-fm",
+ short_names: ["flag-fm"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1692,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-fo": {
+ char: "🇫🇴",
+ key: "flag-fo",
+ keywords: ["flag-fo", "Faroe Islands Flag"],
+ category: "flags",
+ lib: {
+ name: "Faroe Islands Flag",
+ unified: "1F1EB-1F1F4",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1eb-1f1f4.png",
+ sheet_x: 1,
+ sheet_y: 48,
+ short_name: "flag-fo",
+ short_names: ["flag-fo"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1693,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ fr: {
+ char: "🇫🇷",
+ key: "fr",
+ keywords: ["fr", "France Flag"],
+ category: "flags",
+ lib: {
+ name: "France Flag",
+ unified: "1F1EB-1F1F7",
+ non_qualified: null,
+ docomo: null,
+ au: "EAFA",
+ softbank: "E50D",
+ google: "FE4E7",
+ image: "1f1eb-1f1f7.png",
+ sheet_x: 1,
+ sheet_y: 49,
+ short_name: "fr",
+ short_names: ["fr", "flag-fr"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1694,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-ga": {
+ char: "🇬🇦",
+ key: "flag-ga",
+ keywords: ["flag-ga", "Gabon Flag"],
+ category: "flags",
+ lib: {
+ name: "Gabon Flag",
+ unified: "1F1EC-1F1E6",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1ec-1f1e6.png",
+ sheet_x: 1,
+ sheet_y: 50,
+ short_name: "flag-ga",
+ short_names: ["flag-ga"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1695,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ gb: {
+ char: "🇬🇧",
+ key: "gb",
+ keywords: ["gb", "United Kingdom Flag"],
+ category: "flags",
+ lib: {
+ name: "United Kingdom Flag",
+ unified: "1F1EC-1F1E7",
+ non_qualified: null,
+ docomo: null,
+ au: "EB10",
+ softbank: "E510",
+ google: "FE4EA",
+ image: "1f1ec-1f1e7.png",
+ sheet_x: 1,
+ sheet_y: 51,
+ short_name: "gb",
+ short_names: ["gb", "uk", "flag-gb"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1696,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-gd": {
+ char: "🇬🇩",
+ key: "flag-gd",
+ keywords: ["flag-gd", "Grenada Flag"],
+ category: "flags",
+ lib: {
+ name: "Grenada Flag",
+ unified: "1F1EC-1F1E9",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1ec-1f1e9.png",
+ sheet_x: 1,
+ sheet_y: 52,
+ short_name: "flag-gd",
+ short_names: ["flag-gd"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1697,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-ge": {
+ char: "🇬🇪",
+ key: "flag-ge",
+ keywords: ["flag-ge", "Georgia Flag"],
+ category: "flags",
+ lib: {
+ name: "Georgia Flag",
+ unified: "1F1EC-1F1EA",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1ec-1f1ea.png",
+ sheet_x: 1,
+ sheet_y: 53,
+ short_name: "flag-ge",
+ short_names: ["flag-ge"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1698,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-gf": {
+ char: "🇬🇫",
+ key: "flag-gf",
+ keywords: ["flag-gf", "French Guiana Flag"],
+ category: "flags",
+ lib: {
+ name: "French Guiana Flag",
+ unified: "1F1EC-1F1EB",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1ec-1f1eb.png",
+ sheet_x: 1,
+ sheet_y: 54,
+ short_name: "flag-gf",
+ short_names: ["flag-gf"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1699,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-gg": {
+ char: "🇬🇬",
+ key: "flag-gg",
+ keywords: ["flag-gg", "Guernsey Flag"],
+ category: "flags",
+ lib: {
+ name: "Guernsey Flag",
+ unified: "1F1EC-1F1EC",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1ec-1f1ec.png",
+ sheet_x: 1,
+ sheet_y: 55,
+ short_name: "flag-gg",
+ short_names: ["flag-gg"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1700,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-gh": {
+ char: "🇬🇭",
+ key: "flag-gh",
+ keywords: ["flag-gh", "Ghana Flag"],
+ category: "flags",
+ lib: {
+ name: "Ghana Flag",
+ unified: "1F1EC-1F1ED",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1ec-1f1ed.png",
+ sheet_x: 1,
+ sheet_y: 56,
+ short_name: "flag-gh",
+ short_names: ["flag-gh"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1701,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-gi": {
+ char: "🇬🇮",
+ key: "flag-gi",
+ keywords: ["flag-gi", "Gibraltar Flag"],
+ category: "flags",
+ lib: {
+ name: "Gibraltar Flag",
+ unified: "1F1EC-1F1EE",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1ec-1f1ee.png",
+ sheet_x: 1,
+ sheet_y: 57,
+ short_name: "flag-gi",
+ short_names: ["flag-gi"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1702,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-gl": {
+ char: "🇬🇱",
+ key: "flag-gl",
+ keywords: ["flag-gl", "Greenland Flag"],
+ category: "flags",
+ lib: {
+ name: "Greenland Flag",
+ unified: "1F1EC-1F1F1",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1ec-1f1f1.png",
+ sheet_x: 1,
+ sheet_y: 58,
+ short_name: "flag-gl",
+ short_names: ["flag-gl"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1703,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-gm": {
+ char: "🇬🇲",
+ key: "flag-gm",
+ keywords: ["flag-gm", "Gambia Flag"],
+ category: "flags",
+ lib: {
+ name: "Gambia Flag",
+ unified: "1F1EC-1F1F2",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1ec-1f1f2.png",
+ sheet_x: 1,
+ sheet_y: 59,
+ short_name: "flag-gm",
+ short_names: ["flag-gm"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1704,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-gn": {
+ char: "🇬🇳",
+ key: "flag-gn",
+ keywords: ["flag-gn", "Guinea Flag"],
+ category: "flags",
+ lib: {
+ name: "Guinea Flag",
+ unified: "1F1EC-1F1F3",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1ec-1f1f3.png",
+ sheet_x: 1,
+ sheet_y: 60,
+ short_name: "flag-gn",
+ short_names: ["flag-gn"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1705,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-gp": {
+ char: "🇬🇵",
+ key: "flag-gp",
+ keywords: ["flag-gp", "Guadeloupe Flag"],
+ category: "flags",
+ lib: {
+ name: "Guadeloupe Flag",
+ unified: "1F1EC-1F1F5",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1ec-1f1f5.png",
+ sheet_x: 2,
+ sheet_y: 0,
+ short_name: "flag-gp",
+ short_names: ["flag-gp"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1706,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-gq": {
+ char: "🇬🇶",
+ key: "flag-gq",
+ keywords: ["flag-gq", "Equatorial Guinea Flag"],
+ category: "flags",
+ lib: {
+ name: "Equatorial Guinea Flag",
+ unified: "1F1EC-1F1F6",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1ec-1f1f6.png",
+ sheet_x: 2,
+ sheet_y: 1,
+ short_name: "flag-gq",
+ short_names: ["flag-gq"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1707,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-gr": {
+ char: "🇬🇷",
+ key: "flag-gr",
+ keywords: ["flag-gr", "Greece Flag"],
+ category: "flags",
+ lib: {
+ name: "Greece Flag",
+ unified: "1F1EC-1F1F7",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1ec-1f1f7.png",
+ sheet_x: 2,
+ sheet_y: 2,
+ short_name: "flag-gr",
+ short_names: ["flag-gr"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1708,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-gs": {
+ char: "🇬🇸",
+ key: "flag-gs",
+ keywords: ["flag-gs", "South Georgia & South Sandwich Islands Flag"],
+ category: "flags",
+ lib: {
+ name: "South Georgia & South Sandwich Islands Flag",
+ unified: "1F1EC-1F1F8",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1ec-1f1f8.png",
+ sheet_x: 2,
+ sheet_y: 3,
+ short_name: "flag-gs",
+ short_names: ["flag-gs"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1709,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-gt": {
+ char: "🇬🇹",
+ key: "flag-gt",
+ keywords: ["flag-gt", "Guatemala Flag"],
+ category: "flags",
+ lib: {
+ name: "Guatemala Flag",
+ unified: "1F1EC-1F1F9",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1ec-1f1f9.png",
+ sheet_x: 2,
+ sheet_y: 4,
+ short_name: "flag-gt",
+ short_names: ["flag-gt"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1710,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-gu": {
+ char: "🇬🇺",
+ key: "flag-gu",
+ keywords: ["flag-gu", "Guam Flag"],
+ category: "flags",
+ lib: {
+ name: "Guam Flag",
+ unified: "1F1EC-1F1FA",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1ec-1f1fa.png",
+ sheet_x: 2,
+ sheet_y: 5,
+ short_name: "flag-gu",
+ short_names: ["flag-gu"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1711,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-gw": {
+ char: "🇬🇼",
+ key: "flag-gw",
+ keywords: ["flag-gw", "Guinea-Bissau Flag"],
+ category: "flags",
+ lib: {
+ name: "Guinea-Bissau Flag",
+ unified: "1F1EC-1F1FC",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1ec-1f1fc.png",
+ sheet_x: 2,
+ sheet_y: 6,
+ short_name: "flag-gw",
+ short_names: ["flag-gw"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1712,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-gy": {
+ char: "🇬🇾",
+ key: "flag-gy",
+ keywords: ["flag-gy", "Guyana Flag"],
+ category: "flags",
+ lib: {
+ name: "Guyana Flag",
+ unified: "1F1EC-1F1FE",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1ec-1f1fe.png",
+ sheet_x: 2,
+ sheet_y: 7,
+ short_name: "flag-gy",
+ short_names: ["flag-gy"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1713,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-hk": {
+ char: "🇭🇰",
+ key: "flag-hk",
+ keywords: ["flag-hk", "Hong Kong SAR China Flag"],
+ category: "flags",
+ lib: {
+ name: "Hong Kong SAR China Flag",
+ unified: "1F1ED-1F1F0",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1ed-1f1f0.png",
+ sheet_x: 2,
+ sheet_y: 8,
+ short_name: "flag-hk",
+ short_names: ["flag-hk"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1714,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-hm": {
+ char: "🇭🇲",
+ key: "flag-hm",
+ keywords: ["flag-hm", "Heard & McDonald Islands Flag"],
+ category: "flags",
+ lib: {
+ name: "Heard & McDonald Islands Flag",
+ unified: "1F1ED-1F1F2",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1ed-1f1f2.png",
+ sheet_x: 2,
+ sheet_y: 9,
+ short_name: "flag-hm",
+ short_names: ["flag-hm"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1715,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-hn": {
+ char: "🇭🇳",
+ key: "flag-hn",
+ keywords: ["flag-hn", "Honduras Flag"],
+ category: "flags",
+ lib: {
+ name: "Honduras Flag",
+ unified: "1F1ED-1F1F3",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1ed-1f1f3.png",
+ sheet_x: 2,
+ sheet_y: 10,
+ short_name: "flag-hn",
+ short_names: ["flag-hn"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1716,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-hr": {
+ char: "🇭🇷",
+ key: "flag-hr",
+ keywords: ["flag-hr", "Croatia Flag"],
+ category: "flags",
+ lib: {
+ name: "Croatia Flag",
+ unified: "1F1ED-1F1F7",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1ed-1f1f7.png",
+ sheet_x: 2,
+ sheet_y: 11,
+ short_name: "flag-hr",
+ short_names: ["flag-hr"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1717,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-ht": {
+ char: "🇭🇹",
+ key: "flag-ht",
+ keywords: ["flag-ht", "Haiti Flag"],
+ category: "flags",
+ lib: {
+ name: "Haiti Flag",
+ unified: "1F1ED-1F1F9",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1ed-1f1f9.png",
+ sheet_x: 2,
+ sheet_y: 12,
+ short_name: "flag-ht",
+ short_names: ["flag-ht"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1718,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-hu": {
+ char: "🇭🇺",
+ key: "flag-hu",
+ keywords: ["flag-hu", "Hungary Flag"],
+ category: "flags",
+ lib: {
+ name: "Hungary Flag",
+ unified: "1F1ED-1F1FA",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1ed-1f1fa.png",
+ sheet_x: 2,
+ sheet_y: 13,
+ short_name: "flag-hu",
+ short_names: ["flag-hu"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1719,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-ic": {
+ char: "🇮🇨",
+ key: "flag-ic",
+ keywords: ["flag-ic", "Canary Islands Flag"],
+ category: "flags",
+ lib: {
+ name: "Canary Islands Flag",
+ unified: "1F1EE-1F1E8",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1ee-1f1e8.png",
+ sheet_x: 2,
+ sheet_y: 14,
+ short_name: "flag-ic",
+ short_names: ["flag-ic"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1720,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-id": {
+ char: "🇮🇩",
+ key: "flag-id",
+ keywords: ["flag-id", "Indonesia Flag"],
+ category: "flags",
+ lib: {
+ name: "Indonesia Flag",
+ unified: "1F1EE-1F1E9",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1ee-1f1e9.png",
+ sheet_x: 2,
+ sheet_y: 15,
+ short_name: "flag-id",
+ short_names: ["flag-id"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1721,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-ie": {
+ char: "🇮🇪",
+ key: "flag-ie",
+ keywords: ["flag-ie", "Ireland Flag"],
+ category: "flags",
+ lib: {
+ name: "Ireland Flag",
+ unified: "1F1EE-1F1EA",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1ee-1f1ea.png",
+ sheet_x: 2,
+ sheet_y: 16,
+ short_name: "flag-ie",
+ short_names: ["flag-ie"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1722,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-il": {
+ char: "🇮🇱",
+ key: "flag-il",
+ keywords: ["flag-il", "Israel Flag"],
+ category: "flags",
+ lib: {
+ name: "Israel Flag",
+ unified: "1F1EE-1F1F1",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1ee-1f1f1.png",
+ sheet_x: 2,
+ sheet_y: 17,
+ short_name: "flag-il",
+ short_names: ["flag-il"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1723,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-im": {
+ char: "🇮🇲",
+ key: "flag-im",
+ keywords: ["flag-im", "Isle of Man Flag"],
+ category: "flags",
+ lib: {
+ name: "Isle of Man Flag",
+ unified: "1F1EE-1F1F2",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1ee-1f1f2.png",
+ sheet_x: 2,
+ sheet_y: 18,
+ short_name: "flag-im",
+ short_names: ["flag-im"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1724,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-in": {
+ char: "🇮🇳",
+ key: "flag-in",
+ keywords: ["flag-in", "India Flag"],
+ category: "flags",
+ lib: {
+ name: "India Flag",
+ unified: "1F1EE-1F1F3",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1ee-1f1f3.png",
+ sheet_x: 2,
+ sheet_y: 19,
+ short_name: "flag-in",
+ short_names: ["flag-in"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1725,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-io": {
+ char: "🇮🇴",
+ key: "flag-io",
+ keywords: ["flag-io", "British Indian Ocean Territory Flag"],
+ category: "flags",
+ lib: {
+ name: "British Indian Ocean Territory Flag",
+ unified: "1F1EE-1F1F4",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1ee-1f1f4.png",
+ sheet_x: 2,
+ sheet_y: 20,
+ short_name: "flag-io",
+ short_names: ["flag-io"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1726,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-iq": {
+ char: "🇮🇶",
+ key: "flag-iq",
+ keywords: ["flag-iq", "Iraq Flag"],
+ category: "flags",
+ lib: {
+ name: "Iraq Flag",
+ unified: "1F1EE-1F1F6",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1ee-1f1f6.png",
+ sheet_x: 2,
+ sheet_y: 21,
+ short_name: "flag-iq",
+ short_names: ["flag-iq"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1727,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-ir": {
+ char: "🇮🇷",
+ key: "flag-ir",
+ keywords: ["flag-ir", "Iran Flag"],
+ category: "flags",
+ lib: {
+ name: "Iran Flag",
+ unified: "1F1EE-1F1F7",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1ee-1f1f7.png",
+ sheet_x: 2,
+ sheet_y: 22,
+ short_name: "flag-ir",
+ short_names: ["flag-ir"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1728,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-is": {
+ char: "🇮🇸",
+ key: "flag-is",
+ keywords: ["flag-is", "Iceland Flag"],
+ category: "flags",
+ lib: {
+ name: "Iceland Flag",
+ unified: "1F1EE-1F1F8",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1ee-1f1f8.png",
+ sheet_x: 2,
+ sheet_y: 23,
+ short_name: "flag-is",
+ short_names: ["flag-is"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1729,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ it: {
+ char: "🇮🇹",
+ key: "it",
+ keywords: ["it", "Italy Flag"],
+ category: "flags",
+ lib: {
+ name: "Italy Flag",
+ unified: "1F1EE-1F1F9",
+ non_qualified: null,
+ docomo: null,
+ au: "EB0F",
+ softbank: "E50F",
+ google: "FE4E9",
+ image: "1f1ee-1f1f9.png",
+ sheet_x: 2,
+ sheet_y: 24,
+ short_name: "it",
+ short_names: ["it", "flag-it"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1730,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-je": {
+ char: "🇯🇪",
+ key: "flag-je",
+ keywords: ["flag-je", "Jersey Flag"],
+ category: "flags",
+ lib: {
+ name: "Jersey Flag",
+ unified: "1F1EF-1F1EA",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1ef-1f1ea.png",
+ sheet_x: 2,
+ sheet_y: 25,
+ short_name: "flag-je",
+ short_names: ["flag-je"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1731,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-jm": {
+ char: "🇯🇲",
+ key: "flag-jm",
+ keywords: ["flag-jm", "Jamaica Flag"],
+ category: "flags",
+ lib: {
+ name: "Jamaica Flag",
+ unified: "1F1EF-1F1F2",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1ef-1f1f2.png",
+ sheet_x: 2,
+ sheet_y: 26,
+ short_name: "flag-jm",
+ short_names: ["flag-jm"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1732,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-jo": {
+ char: "🇯🇴",
+ key: "flag-jo",
+ keywords: ["flag-jo", "Jordan Flag"],
+ category: "flags",
+ lib: {
+ name: "Jordan Flag",
+ unified: "1F1EF-1F1F4",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1ef-1f1f4.png",
+ sheet_x: 2,
+ sheet_y: 27,
+ short_name: "flag-jo",
+ short_names: ["flag-jo"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1733,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ jp: {
+ char: "🇯🇵",
+ key: "jp",
+ keywords: ["jp", "Japan Flag"],
+ category: "flags",
+ lib: {
+ name: "Japan Flag",
+ unified: "1F1EF-1F1F5",
+ non_qualified: null,
+ docomo: null,
+ au: "E4CC",
+ softbank: "E50B",
+ google: "FE4E5",
+ image: "1f1ef-1f1f5.png",
+ sheet_x: 2,
+ sheet_y: 28,
+ short_name: "jp",
+ short_names: ["jp", "flag-jp"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1734,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-ke": {
+ char: "🇰🇪",
+ key: "flag-ke",
+ keywords: ["flag-ke", "Kenya Flag"],
+ category: "flags",
+ lib: {
+ name: "Kenya Flag",
+ unified: "1F1F0-1F1EA",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1f0-1f1ea.png",
+ sheet_x: 2,
+ sheet_y: 29,
+ short_name: "flag-ke",
+ short_names: ["flag-ke"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1735,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-kg": {
+ char: "🇰🇬",
+ key: "flag-kg",
+ keywords: ["flag-kg", "Kyrgyzstan Flag"],
+ category: "flags",
+ lib: {
+ name: "Kyrgyzstan Flag",
+ unified: "1F1F0-1F1EC",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1f0-1f1ec.png",
+ sheet_x: 2,
+ sheet_y: 30,
+ short_name: "flag-kg",
+ short_names: ["flag-kg"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1736,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-kh": {
+ char: "🇰🇭",
+ key: "flag-kh",
+ keywords: ["flag-kh", "Cambodia Flag"],
+ category: "flags",
+ lib: {
+ name: "Cambodia Flag",
+ unified: "1F1F0-1F1ED",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1f0-1f1ed.png",
+ sheet_x: 2,
+ sheet_y: 31,
+ short_name: "flag-kh",
+ short_names: ["flag-kh"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1737,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-ki": {
+ char: "🇰🇮",
+ key: "flag-ki",
+ keywords: ["flag-ki", "Kiribati Flag"],
+ category: "flags",
+ lib: {
+ name: "Kiribati Flag",
+ unified: "1F1F0-1F1EE",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1f0-1f1ee.png",
+ sheet_x: 2,
+ sheet_y: 32,
+ short_name: "flag-ki",
+ short_names: ["flag-ki"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1738,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-km": {
+ char: "🇰🇲",
+ key: "flag-km",
+ keywords: ["flag-km", "Comoros Flag"],
+ category: "flags",
+ lib: {
+ name: "Comoros Flag",
+ unified: "1F1F0-1F1F2",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1f0-1f1f2.png",
+ sheet_x: 2,
+ sheet_y: 33,
+ short_name: "flag-km",
+ short_names: ["flag-km"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1739,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-kn": {
+ char: "🇰🇳",
+ key: "flag-kn",
+ keywords: ["flag-kn", "St. Kitts & Nevis Flag"],
+ category: "flags",
+ lib: {
+ name: "St. Kitts & Nevis Flag",
+ unified: "1F1F0-1F1F3",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1f0-1f1f3.png",
+ sheet_x: 2,
+ sheet_y: 34,
+ short_name: "flag-kn",
+ short_names: ["flag-kn"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1740,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-kp": {
+ char: "🇰🇵",
+ key: "flag-kp",
+ keywords: ["flag-kp", "North Korea Flag"],
+ category: "flags",
+ lib: {
+ name: "North Korea Flag",
+ unified: "1F1F0-1F1F5",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1f0-1f1f5.png",
+ sheet_x: 2,
+ sheet_y: 35,
+ short_name: "flag-kp",
+ short_names: ["flag-kp"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1741,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ kr: {
+ char: "🇰🇷",
+ key: "kr",
+ keywords: ["kr", "South Korea Flag"],
+ category: "flags",
+ lib: {
+ name: "South Korea Flag",
+ unified: "1F1F0-1F1F7",
+ non_qualified: null,
+ docomo: null,
+ au: "EB12",
+ softbank: "E514",
+ google: "FE4EE",
+ image: "1f1f0-1f1f7.png",
+ sheet_x: 2,
+ sheet_y: 36,
+ short_name: "kr",
+ short_names: ["kr", "flag-kr"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1742,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-kw": {
+ char: "🇰🇼",
+ key: "flag-kw",
+ keywords: ["flag-kw", "Kuwait Flag"],
+ category: "flags",
+ lib: {
+ name: "Kuwait Flag",
+ unified: "1F1F0-1F1FC",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1f0-1f1fc.png",
+ sheet_x: 2,
+ sheet_y: 37,
+ short_name: "flag-kw",
+ short_names: ["flag-kw"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1743,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-ky": {
+ char: "🇰🇾",
+ key: "flag-ky",
+ keywords: ["flag-ky", "Cayman Islands Flag"],
+ category: "flags",
+ lib: {
+ name: "Cayman Islands Flag",
+ unified: "1F1F0-1F1FE",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1f0-1f1fe.png",
+ sheet_x: 2,
+ sheet_y: 38,
+ short_name: "flag-ky",
+ short_names: ["flag-ky"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1744,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-kz": {
+ char: "🇰🇿",
+ key: "flag-kz",
+ keywords: ["flag-kz", "Kazakhstan Flag"],
+ category: "flags",
+ lib: {
+ name: "Kazakhstan Flag",
+ unified: "1F1F0-1F1FF",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1f0-1f1ff.png",
+ sheet_x: 2,
+ sheet_y: 39,
+ short_name: "flag-kz",
+ short_names: ["flag-kz"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1745,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-la": {
+ char: "🇱🇦",
+ key: "flag-la",
+ keywords: ["flag-la", "Laos Flag"],
+ category: "flags",
+ lib: {
+ name: "Laos Flag",
+ unified: "1F1F1-1F1E6",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1f1-1f1e6.png",
+ sheet_x: 2,
+ sheet_y: 40,
+ short_name: "flag-la",
+ short_names: ["flag-la"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1746,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-lb": {
+ char: "🇱🇧",
+ key: "flag-lb",
+ keywords: ["flag-lb", "Lebanon Flag"],
+ category: "flags",
+ lib: {
+ name: "Lebanon Flag",
+ unified: "1F1F1-1F1E7",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1f1-1f1e7.png",
+ sheet_x: 2,
+ sheet_y: 41,
+ short_name: "flag-lb",
+ short_names: ["flag-lb"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1747,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-lc": {
+ char: "🇱🇨",
+ key: "flag-lc",
+ keywords: ["flag-lc", "St. Lucia Flag"],
+ category: "flags",
+ lib: {
+ name: "St. Lucia Flag",
+ unified: "1F1F1-1F1E8",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1f1-1f1e8.png",
+ sheet_x: 2,
+ sheet_y: 42,
+ short_name: "flag-lc",
+ short_names: ["flag-lc"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1748,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-li": {
+ char: "🇱🇮",
+ key: "flag-li",
+ keywords: ["flag-li", "Liechtenstein Flag"],
+ category: "flags",
+ lib: {
+ name: "Liechtenstein Flag",
+ unified: "1F1F1-1F1EE",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1f1-1f1ee.png",
+ sheet_x: 2,
+ sheet_y: 43,
+ short_name: "flag-li",
+ short_names: ["flag-li"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1749,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-lk": {
+ char: "🇱🇰",
+ key: "flag-lk",
+ keywords: ["flag-lk", "Sri Lanka Flag"],
+ category: "flags",
+ lib: {
+ name: "Sri Lanka Flag",
+ unified: "1F1F1-1F1F0",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1f1-1f1f0.png",
+ sheet_x: 2,
+ sheet_y: 44,
+ short_name: "flag-lk",
+ short_names: ["flag-lk"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1750,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-lr": {
+ char: "🇱🇷",
+ key: "flag-lr",
+ keywords: ["flag-lr", "Liberia Flag"],
+ category: "flags",
+ lib: {
+ name: "Liberia Flag",
+ unified: "1F1F1-1F1F7",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1f1-1f1f7.png",
+ sheet_x: 2,
+ sheet_y: 45,
+ short_name: "flag-lr",
+ short_names: ["flag-lr"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1751,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-ls": {
+ char: "🇱🇸",
+ key: "flag-ls",
+ keywords: ["flag-ls", "Lesotho Flag"],
+ category: "flags",
+ lib: {
+ name: "Lesotho Flag",
+ unified: "1F1F1-1F1F8",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1f1-1f1f8.png",
+ sheet_x: 2,
+ sheet_y: 46,
+ short_name: "flag-ls",
+ short_names: ["flag-ls"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1752,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-lt": {
+ char: "🇱🇹",
+ key: "flag-lt",
+ keywords: ["flag-lt", "Lithuania Flag"],
+ category: "flags",
+ lib: {
+ name: "Lithuania Flag",
+ unified: "1F1F1-1F1F9",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1f1-1f1f9.png",
+ sheet_x: 2,
+ sheet_y: 47,
+ short_name: "flag-lt",
+ short_names: ["flag-lt"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1753,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-lu": {
+ char: "🇱🇺",
+ key: "flag-lu",
+ keywords: ["flag-lu", "Luxembourg Flag"],
+ category: "flags",
+ lib: {
+ name: "Luxembourg Flag",
+ unified: "1F1F1-1F1FA",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1f1-1f1fa.png",
+ sheet_x: 2,
+ sheet_y: 48,
+ short_name: "flag-lu",
+ short_names: ["flag-lu"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1754,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-lv": {
+ char: "🇱🇻",
+ key: "flag-lv",
+ keywords: ["flag-lv", "Latvia Flag"],
+ category: "flags",
+ lib: {
+ name: "Latvia Flag",
+ unified: "1F1F1-1F1FB",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1f1-1f1fb.png",
+ sheet_x: 2,
+ sheet_y: 49,
+ short_name: "flag-lv",
+ short_names: ["flag-lv"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1755,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-ly": {
+ char: "🇱🇾",
+ key: "flag-ly",
+ keywords: ["flag-ly", "Libya Flag"],
+ category: "flags",
+ lib: {
+ name: "Libya Flag",
+ unified: "1F1F1-1F1FE",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1f1-1f1fe.png",
+ sheet_x: 2,
+ sheet_y: 50,
+ short_name: "flag-ly",
+ short_names: ["flag-ly"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1756,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-ma": {
+ char: "🇲🇦",
+ key: "flag-ma",
+ keywords: ["flag-ma", "Morocco Flag"],
+ category: "flags",
+ lib: {
+ name: "Morocco Flag",
+ unified: "1F1F2-1F1E6",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1f2-1f1e6.png",
+ sheet_x: 2,
+ sheet_y: 51,
+ short_name: "flag-ma",
+ short_names: ["flag-ma"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1757,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-mc": {
+ char: "🇲🇨",
+ key: "flag-mc",
+ keywords: ["flag-mc", "Monaco Flag"],
+ category: "flags",
+ lib: {
+ name: "Monaco Flag",
+ unified: "1F1F2-1F1E8",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1f2-1f1e8.png",
+ sheet_x: 2,
+ sheet_y: 52,
+ short_name: "flag-mc",
+ short_names: ["flag-mc"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1758,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-md": {
+ char: "🇲🇩",
+ key: "flag-md",
+ keywords: ["flag-md", "Moldova Flag"],
+ category: "flags",
+ lib: {
+ name: "Moldova Flag",
+ unified: "1F1F2-1F1E9",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1f2-1f1e9.png",
+ sheet_x: 2,
+ sheet_y: 53,
+ short_name: "flag-md",
+ short_names: ["flag-md"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1759,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-me": {
+ char: "🇲🇪",
+ key: "flag-me",
+ keywords: ["flag-me", "Montenegro Flag"],
+ category: "flags",
+ lib: {
+ name: "Montenegro Flag",
+ unified: "1F1F2-1F1EA",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1f2-1f1ea.png",
+ sheet_x: 2,
+ sheet_y: 54,
+ short_name: "flag-me",
+ short_names: ["flag-me"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1760,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-mf": {
+ char: "🇲🇫",
+ key: "flag-mf",
+ keywords: ["flag-mf", "St. Martin Flag"],
+ category: "flags",
+ lib: {
+ name: "St. Martin Flag",
+ unified: "1F1F2-1F1EB",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1f2-1f1eb.png",
+ sheet_x: 2,
+ sheet_y: 55,
+ short_name: "flag-mf",
+ short_names: ["flag-mf"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1761,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-mg": {
+ char: "🇲🇬",
+ key: "flag-mg",
+ keywords: ["flag-mg", "Madagascar Flag"],
+ category: "flags",
+ lib: {
+ name: "Madagascar Flag",
+ unified: "1F1F2-1F1EC",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1f2-1f1ec.png",
+ sheet_x: 2,
+ sheet_y: 56,
+ short_name: "flag-mg",
+ short_names: ["flag-mg"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1762,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-mh": {
+ char: "🇲🇭",
+ key: "flag-mh",
+ keywords: ["flag-mh", "Marshall Islands Flag"],
+ category: "flags",
+ lib: {
+ name: "Marshall Islands Flag",
+ unified: "1F1F2-1F1ED",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1f2-1f1ed.png",
+ sheet_x: 2,
+ sheet_y: 57,
+ short_name: "flag-mh",
+ short_names: ["flag-mh"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1763,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-mk": {
+ char: "🇲🇰",
+ key: "flag-mk",
+ keywords: ["flag-mk", "North Macedonia Flag"],
+ category: "flags",
+ lib: {
+ name: "North Macedonia Flag",
+ unified: "1F1F2-1F1F0",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1f2-1f1f0.png",
+ sheet_x: 2,
+ sheet_y: 58,
+ short_name: "flag-mk",
+ short_names: ["flag-mk"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1764,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-ml": {
+ char: "🇲🇱",
+ key: "flag-ml",
+ keywords: ["flag-ml", "Mali Flag"],
+ category: "flags",
+ lib: {
+ name: "Mali Flag",
+ unified: "1F1F2-1F1F1",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1f2-1f1f1.png",
+ sheet_x: 2,
+ sheet_y: 59,
+ short_name: "flag-ml",
+ short_names: ["flag-ml"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1765,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-mm": {
+ char: "🇲🇲",
+ key: "flag-mm",
+ keywords: ["flag-mm", "Myanmar (Burma) Flag"],
+ category: "flags",
+ lib: {
+ name: "Myanmar (Burma) Flag",
+ unified: "1F1F2-1F1F2",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1f2-1f1f2.png",
+ sheet_x: 2,
+ sheet_y: 60,
+ short_name: "flag-mm",
+ short_names: ["flag-mm"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1766,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-mn": {
+ char: "🇲🇳",
+ key: "flag-mn",
+ keywords: ["flag-mn", "Mongolia Flag"],
+ category: "flags",
+ lib: {
+ name: "Mongolia Flag",
+ unified: "1F1F2-1F1F3",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1f2-1f1f3.png",
+ sheet_x: 3,
+ sheet_y: 0,
+ short_name: "flag-mn",
+ short_names: ["flag-mn"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1767,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-mo": {
+ char: "🇲🇴",
+ key: "flag-mo",
+ keywords: ["flag-mo", "Macao SAR China Flag"],
+ category: "flags",
+ lib: {
+ name: "Macao SAR China Flag",
+ unified: "1F1F2-1F1F4",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1f2-1f1f4.png",
+ sheet_x: 3,
+ sheet_y: 1,
+ short_name: "flag-mo",
+ short_names: ["flag-mo"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1768,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-mp": {
+ char: "🇲🇵",
+ key: "flag-mp",
+ keywords: ["flag-mp", "Northern Mariana Islands Flag"],
+ category: "flags",
+ lib: {
+ name: "Northern Mariana Islands Flag",
+ unified: "1F1F2-1F1F5",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1f2-1f1f5.png",
+ sheet_x: 3,
+ sheet_y: 2,
+ short_name: "flag-mp",
+ short_names: ["flag-mp"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1769,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-mq": {
+ char: "🇲🇶",
+ key: "flag-mq",
+ keywords: ["flag-mq", "Martinique Flag"],
+ category: "flags",
+ lib: {
+ name: "Martinique Flag",
+ unified: "1F1F2-1F1F6",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1f2-1f1f6.png",
+ sheet_x: 3,
+ sheet_y: 3,
+ short_name: "flag-mq",
+ short_names: ["flag-mq"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1770,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-mr": {
+ char: "🇲🇷",
+ key: "flag-mr",
+ keywords: ["flag-mr", "Mauritania Flag"],
+ category: "flags",
+ lib: {
+ name: "Mauritania Flag",
+ unified: "1F1F2-1F1F7",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1f2-1f1f7.png",
+ sheet_x: 3,
+ sheet_y: 4,
+ short_name: "flag-mr",
+ short_names: ["flag-mr"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1771,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-ms": {
+ char: "🇲🇸",
+ key: "flag-ms",
+ keywords: ["flag-ms", "Montserrat Flag"],
+ category: "flags",
+ lib: {
+ name: "Montserrat Flag",
+ unified: "1F1F2-1F1F8",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1f2-1f1f8.png",
+ sheet_x: 3,
+ sheet_y: 5,
+ short_name: "flag-ms",
+ short_names: ["flag-ms"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1772,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-mt": {
+ char: "🇲🇹",
+ key: "flag-mt",
+ keywords: ["flag-mt", "Malta Flag"],
+ category: "flags",
+ lib: {
+ name: "Malta Flag",
+ unified: "1F1F2-1F1F9",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1f2-1f1f9.png",
+ sheet_x: 3,
+ sheet_y: 6,
+ short_name: "flag-mt",
+ short_names: ["flag-mt"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1773,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-mu": {
+ char: "🇲🇺",
+ key: "flag-mu",
+ keywords: ["flag-mu", "Mauritius Flag"],
+ category: "flags",
+ lib: {
+ name: "Mauritius Flag",
+ unified: "1F1F2-1F1FA",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1f2-1f1fa.png",
+ sheet_x: 3,
+ sheet_y: 7,
+ short_name: "flag-mu",
+ short_names: ["flag-mu"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1774,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-mv": {
+ char: "🇲🇻",
+ key: "flag-mv",
+ keywords: ["flag-mv", "Maldives Flag"],
+ category: "flags",
+ lib: {
+ name: "Maldives Flag",
+ unified: "1F1F2-1F1FB",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1f2-1f1fb.png",
+ sheet_x: 3,
+ sheet_y: 8,
+ short_name: "flag-mv",
+ short_names: ["flag-mv"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1775,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-mw": {
+ char: "🇲🇼",
+ key: "flag-mw",
+ keywords: ["flag-mw", "Malawi Flag"],
+ category: "flags",
+ lib: {
+ name: "Malawi Flag",
+ unified: "1F1F2-1F1FC",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1f2-1f1fc.png",
+ sheet_x: 3,
+ sheet_y: 9,
+ short_name: "flag-mw",
+ short_names: ["flag-mw"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1776,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-mx": {
+ char: "🇲🇽",
+ key: "flag-mx",
+ keywords: ["flag-mx", "Mexico Flag"],
+ category: "flags",
+ lib: {
+ name: "Mexico Flag",
+ unified: "1F1F2-1F1FD",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1f2-1f1fd.png",
+ sheet_x: 3,
+ sheet_y: 10,
+ short_name: "flag-mx",
+ short_names: ["flag-mx"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1777,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-my": {
+ char: "🇲🇾",
+ key: "flag-my",
+ keywords: ["flag-my", "Malaysia Flag"],
+ category: "flags",
+ lib: {
+ name: "Malaysia Flag",
+ unified: "1F1F2-1F1FE",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1f2-1f1fe.png",
+ sheet_x: 3,
+ sheet_y: 11,
+ short_name: "flag-my",
+ short_names: ["flag-my"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1778,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-mz": {
+ char: "🇲🇿",
+ key: "flag-mz",
+ keywords: ["flag-mz", "Mozambique Flag"],
+ category: "flags",
+ lib: {
+ name: "Mozambique Flag",
+ unified: "1F1F2-1F1FF",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1f2-1f1ff.png",
+ sheet_x: 3,
+ sheet_y: 12,
+ short_name: "flag-mz",
+ short_names: ["flag-mz"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1779,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-na": {
+ char: "🇳🇦",
+ key: "flag-na",
+ keywords: ["flag-na", "Namibia Flag"],
+ category: "flags",
+ lib: {
+ name: "Namibia Flag",
+ unified: "1F1F3-1F1E6",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1f3-1f1e6.png",
+ sheet_x: 3,
+ sheet_y: 13,
+ short_name: "flag-na",
+ short_names: ["flag-na"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1780,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-nc": {
+ char: "🇳🇨",
+ key: "flag-nc",
+ keywords: ["flag-nc", "New Caledonia Flag"],
+ category: "flags",
+ lib: {
+ name: "New Caledonia Flag",
+ unified: "1F1F3-1F1E8",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1f3-1f1e8.png",
+ sheet_x: 3,
+ sheet_y: 14,
+ short_name: "flag-nc",
+ short_names: ["flag-nc"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1781,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-ne": {
+ char: "🇳🇪",
+ key: "flag-ne",
+ keywords: ["flag-ne", "Niger Flag"],
+ category: "flags",
+ lib: {
+ name: "Niger Flag",
+ unified: "1F1F3-1F1EA",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1f3-1f1ea.png",
+ sheet_x: 3,
+ sheet_y: 15,
+ short_name: "flag-ne",
+ short_names: ["flag-ne"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1782,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-nf": {
+ char: "🇳🇫",
+ key: "flag-nf",
+ keywords: ["flag-nf", "Norfolk Island Flag"],
+ category: "flags",
+ lib: {
+ name: "Norfolk Island Flag",
+ unified: "1F1F3-1F1EB",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1f3-1f1eb.png",
+ sheet_x: 3,
+ sheet_y: 16,
+ short_name: "flag-nf",
+ short_names: ["flag-nf"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1783,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-ng": {
+ char: "🇳🇬",
+ key: "flag-ng",
+ keywords: ["flag-ng", "Nigeria Flag"],
+ category: "flags",
+ lib: {
+ name: "Nigeria Flag",
+ unified: "1F1F3-1F1EC",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1f3-1f1ec.png",
+ sheet_x: 3,
+ sheet_y: 17,
+ short_name: "flag-ng",
+ short_names: ["flag-ng"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1784,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-ni": {
+ char: "🇳🇮",
+ key: "flag-ni",
+ keywords: ["flag-ni", "Nicaragua Flag"],
+ category: "flags",
+ lib: {
+ name: "Nicaragua Flag",
+ unified: "1F1F3-1F1EE",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1f3-1f1ee.png",
+ sheet_x: 3,
+ sheet_y: 18,
+ short_name: "flag-ni",
+ short_names: ["flag-ni"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1785,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-nl": {
+ char: "🇳🇱",
+ key: "flag-nl",
+ keywords: ["flag-nl", "Netherlands Flag"],
+ category: "flags",
+ lib: {
+ name: "Netherlands Flag",
+ unified: "1F1F3-1F1F1",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1f3-1f1f1.png",
+ sheet_x: 3,
+ sheet_y: 19,
+ short_name: "flag-nl",
+ short_names: ["flag-nl"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1786,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-no": {
+ char: "🇳🇴",
+ key: "flag-no",
+ keywords: ["flag-no", "Norway Flag"],
+ category: "flags",
+ lib: {
+ name: "Norway Flag",
+ unified: "1F1F3-1F1F4",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1f3-1f1f4.png",
+ sheet_x: 3,
+ sheet_y: 20,
+ short_name: "flag-no",
+ short_names: ["flag-no"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1787,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-np": {
+ char: "🇳🇵",
+ key: "flag-np",
+ keywords: ["flag-np", "Nepal Flag"],
+ category: "flags",
+ lib: {
+ name: "Nepal Flag",
+ unified: "1F1F3-1F1F5",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1f3-1f1f5.png",
+ sheet_x: 3,
+ sheet_y: 21,
+ short_name: "flag-np",
+ short_names: ["flag-np"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1788,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-nr": {
+ char: "🇳🇷",
+ key: "flag-nr",
+ keywords: ["flag-nr", "Nauru Flag"],
+ category: "flags",
+ lib: {
+ name: "Nauru Flag",
+ unified: "1F1F3-1F1F7",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1f3-1f1f7.png",
+ sheet_x: 3,
+ sheet_y: 22,
+ short_name: "flag-nr",
+ short_names: ["flag-nr"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1789,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-nu": {
+ char: "🇳🇺",
+ key: "flag-nu",
+ keywords: ["flag-nu", "Niue Flag"],
+ category: "flags",
+ lib: {
+ name: "Niue Flag",
+ unified: "1F1F3-1F1FA",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1f3-1f1fa.png",
+ sheet_x: 3,
+ sheet_y: 23,
+ short_name: "flag-nu",
+ short_names: ["flag-nu"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1790,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-nz": {
+ char: "🇳🇿",
+ key: "flag-nz",
+ keywords: ["flag-nz", "New Zealand Flag"],
+ category: "flags",
+ lib: {
+ name: "New Zealand Flag",
+ unified: "1F1F3-1F1FF",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1f3-1f1ff.png",
+ sheet_x: 3,
+ sheet_y: 24,
+ short_name: "flag-nz",
+ short_names: ["flag-nz"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1791,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-om": {
+ char: "🇴🇲",
+ key: "flag-om",
+ keywords: ["flag-om", "Oman Flag"],
+ category: "flags",
+ lib: {
+ name: "Oman Flag",
+ unified: "1F1F4-1F1F2",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1f4-1f1f2.png",
+ sheet_x: 3,
+ sheet_y: 25,
+ short_name: "flag-om",
+ short_names: ["flag-om"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1792,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-pa": {
+ char: "🇵🇦",
+ key: "flag-pa",
+ keywords: ["flag-pa", "Panama Flag"],
+ category: "flags",
+ lib: {
+ name: "Panama Flag",
+ unified: "1F1F5-1F1E6",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1f5-1f1e6.png",
+ sheet_x: 3,
+ sheet_y: 26,
+ short_name: "flag-pa",
+ short_names: ["flag-pa"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1793,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-pe": {
+ char: "🇵🇪",
+ key: "flag-pe",
+ keywords: ["flag-pe", "Peru Flag"],
+ category: "flags",
+ lib: {
+ name: "Peru Flag",
+ unified: "1F1F5-1F1EA",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1f5-1f1ea.png",
+ sheet_x: 3,
+ sheet_y: 27,
+ short_name: "flag-pe",
+ short_names: ["flag-pe"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1794,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-pf": {
+ char: "🇵🇫",
+ key: "flag-pf",
+ keywords: ["flag-pf", "French Polynesia Flag"],
+ category: "flags",
+ lib: {
+ name: "French Polynesia Flag",
+ unified: "1F1F5-1F1EB",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1f5-1f1eb.png",
+ sheet_x: 3,
+ sheet_y: 28,
+ short_name: "flag-pf",
+ short_names: ["flag-pf"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1795,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-pg": {
+ char: "🇵🇬",
+ key: "flag-pg",
+ keywords: ["flag-pg", "Papua New Guinea Flag"],
+ category: "flags",
+ lib: {
+ name: "Papua New Guinea Flag",
+ unified: "1F1F5-1F1EC",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1f5-1f1ec.png",
+ sheet_x: 3,
+ sheet_y: 29,
+ short_name: "flag-pg",
+ short_names: ["flag-pg"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1796,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-ph": {
+ char: "🇵🇭",
+ key: "flag-ph",
+ keywords: ["flag-ph", "Philippines Flag"],
+ category: "flags",
+ lib: {
+ name: "Philippines Flag",
+ unified: "1F1F5-1F1ED",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1f5-1f1ed.png",
+ sheet_x: 3,
+ sheet_y: 30,
+ short_name: "flag-ph",
+ short_names: ["flag-ph"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1797,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-pk": {
+ char: "🇵🇰",
+ key: "flag-pk",
+ keywords: ["flag-pk", "Pakistan Flag"],
+ category: "flags",
+ lib: {
+ name: "Pakistan Flag",
+ unified: "1F1F5-1F1F0",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1f5-1f1f0.png",
+ sheet_x: 3,
+ sheet_y: 31,
+ short_name: "flag-pk",
+ short_names: ["flag-pk"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1798,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-pl": {
+ char: "🇵🇱",
+ key: "flag-pl",
+ keywords: ["flag-pl", "Poland Flag"],
+ category: "flags",
+ lib: {
+ name: "Poland Flag",
+ unified: "1F1F5-1F1F1",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1f5-1f1f1.png",
+ sheet_x: 3,
+ sheet_y: 32,
+ short_name: "flag-pl",
+ short_names: ["flag-pl"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1799,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-pm": {
+ char: "🇵🇲",
+ key: "flag-pm",
+ keywords: ["flag-pm", "St. Pierre & Miquelon Flag"],
+ category: "flags",
+ lib: {
+ name: "St. Pierre & Miquelon Flag",
+ unified: "1F1F5-1F1F2",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1f5-1f1f2.png",
+ sheet_x: 3,
+ sheet_y: 33,
+ short_name: "flag-pm",
+ short_names: ["flag-pm"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1800,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-pn": {
+ char: "🇵🇳",
+ key: "flag-pn",
+ keywords: ["flag-pn", "Pitcairn Islands Flag"],
+ category: "flags",
+ lib: {
+ name: "Pitcairn Islands Flag",
+ unified: "1F1F5-1F1F3",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1f5-1f1f3.png",
+ sheet_x: 3,
+ sheet_y: 34,
+ short_name: "flag-pn",
+ short_names: ["flag-pn"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1801,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-pr": {
+ char: "🇵🇷",
+ key: "flag-pr",
+ keywords: ["flag-pr", "Puerto Rico Flag"],
+ category: "flags",
+ lib: {
+ name: "Puerto Rico Flag",
+ unified: "1F1F5-1F1F7",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1f5-1f1f7.png",
+ sheet_x: 3,
+ sheet_y: 35,
+ short_name: "flag-pr",
+ short_names: ["flag-pr"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1802,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-ps": {
+ char: "🇵🇸",
+ key: "flag-ps",
+ keywords: ["flag-ps", "Palestinian Territories Flag"],
+ category: "flags",
+ lib: {
+ name: "Palestinian Territories Flag",
+ unified: "1F1F5-1F1F8",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1f5-1f1f8.png",
+ sheet_x: 3,
+ sheet_y: 36,
+ short_name: "flag-ps",
+ short_names: ["flag-ps"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1803,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-pt": {
+ char: "🇵🇹",
+ key: "flag-pt",
+ keywords: ["flag-pt", "Portugal Flag"],
+ category: "flags",
+ lib: {
+ name: "Portugal Flag",
+ unified: "1F1F5-1F1F9",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1f5-1f1f9.png",
+ sheet_x: 3,
+ sheet_y: 37,
+ short_name: "flag-pt",
+ short_names: ["flag-pt"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1804,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-pw": {
+ char: "🇵🇼",
+ key: "flag-pw",
+ keywords: ["flag-pw", "Palau Flag"],
+ category: "flags",
+ lib: {
+ name: "Palau Flag",
+ unified: "1F1F5-1F1FC",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1f5-1f1fc.png",
+ sheet_x: 3,
+ sheet_y: 38,
+ short_name: "flag-pw",
+ short_names: ["flag-pw"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1805,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-py": {
+ char: "🇵🇾",
+ key: "flag-py",
+ keywords: ["flag-py", "Paraguay Flag"],
+ category: "flags",
+ lib: {
+ name: "Paraguay Flag",
+ unified: "1F1F5-1F1FE",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1f5-1f1fe.png",
+ sheet_x: 3,
+ sheet_y: 39,
+ short_name: "flag-py",
+ short_names: ["flag-py"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1806,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-qa": {
+ char: "🇶🇦",
+ key: "flag-qa",
+ keywords: ["flag-qa", "Qatar Flag"],
+ category: "flags",
+ lib: {
+ name: "Qatar Flag",
+ unified: "1F1F6-1F1E6",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1f6-1f1e6.png",
+ sheet_x: 3,
+ sheet_y: 40,
+ short_name: "flag-qa",
+ short_names: ["flag-qa"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1807,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-re": {
+ char: "🇷🇪",
+ key: "flag-re",
+ keywords: ["flag-re", "Réunion Flag"],
+ category: "flags",
+ lib: {
+ name: "Réunion Flag",
+ unified: "1F1F7-1F1EA",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1f7-1f1ea.png",
+ sheet_x: 3,
+ sheet_y: 41,
+ short_name: "flag-re",
+ short_names: ["flag-re"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1808,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-ro": {
+ char: "🇷🇴",
+ key: "flag-ro",
+ keywords: ["flag-ro", "Romania Flag"],
+ category: "flags",
+ lib: {
+ name: "Romania Flag",
+ unified: "1F1F7-1F1F4",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1f7-1f1f4.png",
+ sheet_x: 3,
+ sheet_y: 42,
+ short_name: "flag-ro",
+ short_names: ["flag-ro"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1809,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-rs": {
+ char: "🇷🇸",
+ key: "flag-rs",
+ keywords: ["flag-rs", "Serbia Flag"],
+ category: "flags",
+ lib: {
+ name: "Serbia Flag",
+ unified: "1F1F7-1F1F8",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1f7-1f1f8.png",
+ sheet_x: 3,
+ sheet_y: 43,
+ short_name: "flag-rs",
+ short_names: ["flag-rs"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1810,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ ru: {
+ char: "🇷🇺",
+ key: "ru",
+ keywords: ["ru", "Russia Flag"],
+ category: "flags",
+ lib: {
+ name: "Russia Flag",
+ unified: "1F1F7-1F1FA",
+ non_qualified: null,
+ docomo: null,
+ au: "E5D6",
+ softbank: "E512",
+ google: "FE4EC",
+ image: "1f1f7-1f1fa.png",
+ sheet_x: 3,
+ sheet_y: 44,
+ short_name: "ru",
+ short_names: ["ru", "flag-ru"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1811,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-rw": {
+ char: "🇷🇼",
+ key: "flag-rw",
+ keywords: ["flag-rw", "Rwanda Flag"],
+ category: "flags",
+ lib: {
+ name: "Rwanda Flag",
+ unified: "1F1F7-1F1FC",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1f7-1f1fc.png",
+ sheet_x: 3,
+ sheet_y: 45,
+ short_name: "flag-rw",
+ short_names: ["flag-rw"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1812,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-sa": {
+ char: "🇸🇦",
+ key: "flag-sa",
+ keywords: ["flag-sa", "Saudi Arabia Flag"],
+ category: "flags",
+ lib: {
+ name: "Saudi Arabia Flag",
+ unified: "1F1F8-1F1E6",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1f8-1f1e6.png",
+ sheet_x: 3,
+ sheet_y: 46,
+ short_name: "flag-sa",
+ short_names: ["flag-sa"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1813,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-sb": {
+ char: "🇸🇧",
+ key: "flag-sb",
+ keywords: ["flag-sb", "Solomon Islands Flag"],
+ category: "flags",
+ lib: {
+ name: "Solomon Islands Flag",
+ unified: "1F1F8-1F1E7",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1f8-1f1e7.png",
+ sheet_x: 3,
+ sheet_y: 47,
+ short_name: "flag-sb",
+ short_names: ["flag-sb"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1814,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-sc": {
+ char: "🇸🇨",
+ key: "flag-sc",
+ keywords: ["flag-sc", "Seychelles Flag"],
+ category: "flags",
+ lib: {
+ name: "Seychelles Flag",
+ unified: "1F1F8-1F1E8",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1f8-1f1e8.png",
+ sheet_x: 3,
+ sheet_y: 48,
+ short_name: "flag-sc",
+ short_names: ["flag-sc"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1815,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-sd": {
+ char: "🇸🇩",
+ key: "flag-sd",
+ keywords: ["flag-sd", "Sudan Flag"],
+ category: "flags",
+ lib: {
+ name: "Sudan Flag",
+ unified: "1F1F8-1F1E9",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1f8-1f1e9.png",
+ sheet_x: 3,
+ sheet_y: 49,
+ short_name: "flag-sd",
+ short_names: ["flag-sd"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1816,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-se": {
+ char: "🇸🇪",
+ key: "flag-se",
+ keywords: ["flag-se", "Sweden Flag"],
+ category: "flags",
+ lib: {
+ name: "Sweden Flag",
+ unified: "1F1F8-1F1EA",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1f8-1f1ea.png",
+ sheet_x: 3,
+ sheet_y: 50,
+ short_name: "flag-se",
+ short_names: ["flag-se"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1817,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-sg": {
+ char: "🇸🇬",
+ key: "flag-sg",
+ keywords: ["flag-sg", "Singapore Flag"],
+ category: "flags",
+ lib: {
+ name: "Singapore Flag",
+ unified: "1F1F8-1F1EC",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1f8-1f1ec.png",
+ sheet_x: 3,
+ sheet_y: 51,
+ short_name: "flag-sg",
+ short_names: ["flag-sg"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1818,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-sh": {
+ char: "🇸🇭",
+ key: "flag-sh",
+ keywords: ["flag-sh", "St. Helena Flag"],
+ category: "flags",
+ lib: {
+ name: "St. Helena Flag",
+ unified: "1F1F8-1F1ED",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1f8-1f1ed.png",
+ sheet_x: 3,
+ sheet_y: 52,
+ short_name: "flag-sh",
+ short_names: ["flag-sh"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1819,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-si": {
+ char: "🇸🇮",
+ key: "flag-si",
+ keywords: ["flag-si", "Slovenia Flag"],
+ category: "flags",
+ lib: {
+ name: "Slovenia Flag",
+ unified: "1F1F8-1F1EE",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1f8-1f1ee.png",
+ sheet_x: 3,
+ sheet_y: 53,
+ short_name: "flag-si",
+ short_names: ["flag-si"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1820,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-sj": {
+ char: "🇸🇯",
+ key: "flag-sj",
+ keywords: ["flag-sj", "Svalbard & Jan Mayen Flag"],
+ category: "flags",
+ lib: {
+ name: "Svalbard & Jan Mayen Flag",
+ unified: "1F1F8-1F1EF",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1f8-1f1ef.png",
+ sheet_x: 3,
+ sheet_y: 54,
+ short_name: "flag-sj",
+ short_names: ["flag-sj"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1821,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-sk": {
+ char: "🇸🇰",
+ key: "flag-sk",
+ keywords: ["flag-sk", "Slovakia Flag"],
+ category: "flags",
+ lib: {
+ name: "Slovakia Flag",
+ unified: "1F1F8-1F1F0",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1f8-1f1f0.png",
+ sheet_x: 3,
+ sheet_y: 55,
+ short_name: "flag-sk",
+ short_names: ["flag-sk"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1822,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-sl": {
+ char: "🇸🇱",
+ key: "flag-sl",
+ keywords: ["flag-sl", "Sierra Leone Flag"],
+ category: "flags",
+ lib: {
+ name: "Sierra Leone Flag",
+ unified: "1F1F8-1F1F1",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1f8-1f1f1.png",
+ sheet_x: 3,
+ sheet_y: 56,
+ short_name: "flag-sl",
+ short_names: ["flag-sl"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1823,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-sm": {
+ char: "🇸🇲",
+ key: "flag-sm",
+ keywords: ["flag-sm", "San Marino Flag"],
+ category: "flags",
+ lib: {
+ name: "San Marino Flag",
+ unified: "1F1F8-1F1F2",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1f8-1f1f2.png",
+ sheet_x: 3,
+ sheet_y: 57,
+ short_name: "flag-sm",
+ short_names: ["flag-sm"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1824,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-sn": {
+ char: "🇸🇳",
+ key: "flag-sn",
+ keywords: ["flag-sn", "Senegal Flag"],
+ category: "flags",
+ lib: {
+ name: "Senegal Flag",
+ unified: "1F1F8-1F1F3",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1f8-1f1f3.png",
+ sheet_x: 3,
+ sheet_y: 58,
+ short_name: "flag-sn",
+ short_names: ["flag-sn"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1825,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-so": {
+ char: "🇸🇴",
+ key: "flag-so",
+ keywords: ["flag-so", "Somalia Flag"],
+ category: "flags",
+ lib: {
+ name: "Somalia Flag",
+ unified: "1F1F8-1F1F4",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1f8-1f1f4.png",
+ sheet_x: 3,
+ sheet_y: 59,
+ short_name: "flag-so",
+ short_names: ["flag-so"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1826,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-sr": {
+ char: "🇸🇷",
+ key: "flag-sr",
+ keywords: ["flag-sr", "Suriname Flag"],
+ category: "flags",
+ lib: {
+ name: "Suriname Flag",
+ unified: "1F1F8-1F1F7",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1f8-1f1f7.png",
+ sheet_x: 3,
+ sheet_y: 60,
+ short_name: "flag-sr",
+ short_names: ["flag-sr"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1827,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-ss": {
+ char: "🇸🇸",
+ key: "flag-ss",
+ keywords: ["flag-ss", "South Sudan Flag"],
+ category: "flags",
+ lib: {
+ name: "South Sudan Flag",
+ unified: "1F1F8-1F1F8",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1f8-1f1f8.png",
+ sheet_x: 4,
+ sheet_y: 0,
+ short_name: "flag-ss",
+ short_names: ["flag-ss"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1828,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-st": {
+ char: "🇸🇹",
+ key: "flag-st",
+ keywords: ["flag-st", "São Tomé & Príncipe Flag"],
+ category: "flags",
+ lib: {
+ name: "São Tomé & Príncipe Flag",
+ unified: "1F1F8-1F1F9",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1f8-1f1f9.png",
+ sheet_x: 4,
+ sheet_y: 1,
+ short_name: "flag-st",
+ short_names: ["flag-st"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1829,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-sv": {
+ char: "🇸🇻",
+ key: "flag-sv",
+ keywords: ["flag-sv", "El Salvador Flag"],
+ category: "flags",
+ lib: {
+ name: "El Salvador Flag",
+ unified: "1F1F8-1F1FB",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1f8-1f1fb.png",
+ sheet_x: 4,
+ sheet_y: 2,
+ short_name: "flag-sv",
+ short_names: ["flag-sv"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1830,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-sx": {
+ char: "🇸🇽",
+ key: "flag-sx",
+ keywords: ["flag-sx", "Sint Maarten Flag"],
+ category: "flags",
+ lib: {
+ name: "Sint Maarten Flag",
+ unified: "1F1F8-1F1FD",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1f8-1f1fd.png",
+ sheet_x: 4,
+ sheet_y: 3,
+ short_name: "flag-sx",
+ short_names: ["flag-sx"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1831,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-sy": {
+ char: "🇸🇾",
+ key: "flag-sy",
+ keywords: ["flag-sy", "Syria Flag"],
+ category: "flags",
+ lib: {
+ name: "Syria Flag",
+ unified: "1F1F8-1F1FE",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1f8-1f1fe.png",
+ sheet_x: 4,
+ sheet_y: 4,
+ short_name: "flag-sy",
+ short_names: ["flag-sy"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1832,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-sz": {
+ char: "🇸🇿",
+ key: "flag-sz",
+ keywords: ["flag-sz", "Eswatini Flag"],
+ category: "flags",
+ lib: {
+ name: "Eswatini Flag",
+ unified: "1F1F8-1F1FF",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1f8-1f1ff.png",
+ sheet_x: 4,
+ sheet_y: 5,
+ short_name: "flag-sz",
+ short_names: ["flag-sz"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1833,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-ta": {
+ char: "🇹🇦",
+ key: "flag-ta",
+ keywords: ["flag-ta", "Tristan da Cunha Flag"],
+ category: "flags",
+ lib: {
+ name: "Tristan da Cunha Flag",
+ unified: "1F1F9-1F1E6",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1f9-1f1e6.png",
+ sheet_x: 4,
+ sheet_y: 6,
+ short_name: "flag-ta",
+ short_names: ["flag-ta"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1834,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-tc": {
+ char: "🇹🇨",
+ key: "flag-tc",
+ keywords: ["flag-tc", "Turks & Caicos Islands Flag"],
+ category: "flags",
+ lib: {
+ name: "Turks & Caicos Islands Flag",
+ unified: "1F1F9-1F1E8",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1f9-1f1e8.png",
+ sheet_x: 4,
+ sheet_y: 7,
+ short_name: "flag-tc",
+ short_names: ["flag-tc"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1835,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-td": {
+ char: "🇹🇩",
+ key: "flag-td",
+ keywords: ["flag-td", "Chad Flag"],
+ category: "flags",
+ lib: {
+ name: "Chad Flag",
+ unified: "1F1F9-1F1E9",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1f9-1f1e9.png",
+ sheet_x: 4,
+ sheet_y: 8,
+ short_name: "flag-td",
+ short_names: ["flag-td"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1836,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-tf": {
+ char: "🇹🇫",
+ key: "flag-tf",
+ keywords: ["flag-tf", "French Southern Territories Flag"],
+ category: "flags",
+ lib: {
+ name: "French Southern Territories Flag",
+ unified: "1F1F9-1F1EB",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1f9-1f1eb.png",
+ sheet_x: 4,
+ sheet_y: 9,
+ short_name: "flag-tf",
+ short_names: ["flag-tf"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1837,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-tg": {
+ char: "🇹🇬",
+ key: "flag-tg",
+ keywords: ["flag-tg", "Togo Flag"],
+ category: "flags",
+ lib: {
+ name: "Togo Flag",
+ unified: "1F1F9-1F1EC",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1f9-1f1ec.png",
+ sheet_x: 4,
+ sheet_y: 10,
+ short_name: "flag-tg",
+ short_names: ["flag-tg"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1838,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-th": {
+ char: "🇹🇭",
+ key: "flag-th",
+ keywords: ["flag-th", "Thailand Flag"],
+ category: "flags",
+ lib: {
+ name: "Thailand Flag",
+ unified: "1F1F9-1F1ED",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1f9-1f1ed.png",
+ sheet_x: 4,
+ sheet_y: 11,
+ short_name: "flag-th",
+ short_names: ["flag-th"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1839,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-tj": {
+ char: "🇹🇯",
+ key: "flag-tj",
+ keywords: ["flag-tj", "Tajikistan Flag"],
+ category: "flags",
+ lib: {
+ name: "Tajikistan Flag",
+ unified: "1F1F9-1F1EF",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1f9-1f1ef.png",
+ sheet_x: 4,
+ sheet_y: 12,
+ short_name: "flag-tj",
+ short_names: ["flag-tj"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1840,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-tk": {
+ char: "🇹🇰",
+ key: "flag-tk",
+ keywords: ["flag-tk", "Tokelau Flag"],
+ category: "flags",
+ lib: {
+ name: "Tokelau Flag",
+ unified: "1F1F9-1F1F0",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1f9-1f1f0.png",
+ sheet_x: 4,
+ sheet_y: 13,
+ short_name: "flag-tk",
+ short_names: ["flag-tk"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1841,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-tl": {
+ char: "🇹🇱",
+ key: "flag-tl",
+ keywords: ["flag-tl", "Timor-Leste Flag"],
+ category: "flags",
+ lib: {
+ name: "Timor-Leste Flag",
+ unified: "1F1F9-1F1F1",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1f9-1f1f1.png",
+ sheet_x: 4,
+ sheet_y: 14,
+ short_name: "flag-tl",
+ short_names: ["flag-tl"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1842,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-tm": {
+ char: "🇹🇲",
+ key: "flag-tm",
+ keywords: ["flag-tm", "Turkmenistan Flag"],
+ category: "flags",
+ lib: {
+ name: "Turkmenistan Flag",
+ unified: "1F1F9-1F1F2",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1f9-1f1f2.png",
+ sheet_x: 4,
+ sheet_y: 15,
+ short_name: "flag-tm",
+ short_names: ["flag-tm"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1843,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-tn": {
+ char: "🇹🇳",
+ key: "flag-tn",
+ keywords: ["flag-tn", "Tunisia Flag"],
+ category: "flags",
+ lib: {
+ name: "Tunisia Flag",
+ unified: "1F1F9-1F1F3",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1f9-1f1f3.png",
+ sheet_x: 4,
+ sheet_y: 16,
+ short_name: "flag-tn",
+ short_names: ["flag-tn"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1844,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-to": {
+ char: "🇹🇴",
+ key: "flag-to",
+ keywords: ["flag-to", "Tonga Flag"],
+ category: "flags",
+ lib: {
+ name: "Tonga Flag",
+ unified: "1F1F9-1F1F4",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1f9-1f1f4.png",
+ sheet_x: 4,
+ sheet_y: 17,
+ short_name: "flag-to",
+ short_names: ["flag-to"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1845,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-tr": {
+ char: "🇹🇷",
+ key: "flag-tr",
+ keywords: ["flag-tr", "Turkey Flag"],
+ category: "flags",
+ lib: {
+ name: "Turkey Flag",
+ unified: "1F1F9-1F1F7",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1f9-1f1f7.png",
+ sheet_x: 4,
+ sheet_y: 18,
+ short_name: "flag-tr",
+ short_names: ["flag-tr"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1846,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-tt": {
+ char: "🇹🇹",
+ key: "flag-tt",
+ keywords: ["flag-tt", "Trinidad & Tobago Flag"],
+ category: "flags",
+ lib: {
+ name: "Trinidad & Tobago Flag",
+ unified: "1F1F9-1F1F9",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1f9-1f1f9.png",
+ sheet_x: 4,
+ sheet_y: 19,
+ short_name: "flag-tt",
+ short_names: ["flag-tt"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1847,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-tv": {
+ char: "🇹🇻",
+ key: "flag-tv",
+ keywords: ["flag-tv", "Tuvalu Flag"],
+ category: "flags",
+ lib: {
+ name: "Tuvalu Flag",
+ unified: "1F1F9-1F1FB",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1f9-1f1fb.png",
+ sheet_x: 4,
+ sheet_y: 20,
+ short_name: "flag-tv",
+ short_names: ["flag-tv"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1848,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-tw": {
+ char: "🇹🇼",
+ key: "flag-tw",
+ keywords: ["flag-tw", "Taiwan Flag"],
+ category: "flags",
+ lib: {
+ name: "Taiwan Flag",
+ unified: "1F1F9-1F1FC",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1f9-1f1fc.png",
+ sheet_x: 4,
+ sheet_y: 21,
+ short_name: "flag-tw",
+ short_names: ["flag-tw"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1849,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-tz": {
+ char: "🇹🇿",
+ key: "flag-tz",
+ keywords: ["flag-tz", "Tanzania Flag"],
+ category: "flags",
+ lib: {
+ name: "Tanzania Flag",
+ unified: "1F1F9-1F1FF",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1f9-1f1ff.png",
+ sheet_x: 4,
+ sheet_y: 22,
+ short_name: "flag-tz",
+ short_names: ["flag-tz"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1850,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-ua": {
+ char: "🇺🇦",
+ key: "flag-ua",
+ keywords: ["flag-ua", "Ukraine Flag"],
+ category: "flags",
+ lib: {
+ name: "Ukraine Flag",
+ unified: "1F1FA-1F1E6",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1fa-1f1e6.png",
+ sheet_x: 4,
+ sheet_y: 23,
+ short_name: "flag-ua",
+ short_names: ["flag-ua"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1851,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-ug": {
+ char: "🇺🇬",
+ key: "flag-ug",
+ keywords: ["flag-ug", "Uganda Flag"],
+ category: "flags",
+ lib: {
+ name: "Uganda Flag",
+ unified: "1F1FA-1F1EC",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1fa-1f1ec.png",
+ sheet_x: 4,
+ sheet_y: 24,
+ short_name: "flag-ug",
+ short_names: ["flag-ug"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1852,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-um": {
+ char: "🇺🇲",
+ key: "flag-um",
+ keywords: ["flag-um", "U.S. Outlying Islands Flag"],
+ category: "flags",
+ lib: {
+ name: "U.S. Outlying Islands Flag",
+ unified: "1F1FA-1F1F2",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1fa-1f1f2.png",
+ sheet_x: 4,
+ sheet_y: 25,
+ short_name: "flag-um",
+ short_names: ["flag-um"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1853,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-un": {
+ char: "🇺🇳",
+ key: "flag-un",
+ keywords: ["flag-un", "United Nations Flag"],
+ category: "flags",
+ lib: {
+ name: "United Nations Flag",
+ unified: "1F1FA-1F1F3",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1fa-1f1f3.png",
+ sheet_x: 4,
+ sheet_y: 26,
+ short_name: "flag-un",
+ short_names: ["flag-un"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1854,
+ added_in: "4.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ us: {
+ char: "🇺🇸",
+ key: "us",
+ keywords: ["us", "United States Flag"],
+ category: "flags",
+ lib: {
+ name: "United States Flag",
+ unified: "1F1FA-1F1F8",
+ non_qualified: null,
+ docomo: null,
+ au: "E573",
+ softbank: "E50C",
+ google: "FE4E6",
+ image: "1f1fa-1f1f8.png",
+ sheet_x: 4,
+ sheet_y: 27,
+ short_name: "us",
+ short_names: ["us", "flag-us"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1855,
+ added_in: "0.6",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-uy": {
+ char: "🇺🇾",
+ key: "flag-uy",
+ keywords: ["flag-uy", "Uruguay Flag"],
+ category: "flags",
+ lib: {
+ name: "Uruguay Flag",
+ unified: "1F1FA-1F1FE",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1fa-1f1fe.png",
+ sheet_x: 4,
+ sheet_y: 28,
+ short_name: "flag-uy",
+ short_names: ["flag-uy"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1856,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-uz": {
+ char: "🇺🇿",
+ key: "flag-uz",
+ keywords: ["flag-uz", "Uzbekistan Flag"],
+ category: "flags",
+ lib: {
+ name: "Uzbekistan Flag",
+ unified: "1F1FA-1F1FF",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1fa-1f1ff.png",
+ sheet_x: 4,
+ sheet_y: 29,
+ short_name: "flag-uz",
+ short_names: ["flag-uz"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1857,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-va": {
+ char: "🇻🇦",
+ key: "flag-va",
+ keywords: ["flag-va", "Vatican City Flag"],
+ category: "flags",
+ lib: {
+ name: "Vatican City Flag",
+ unified: "1F1FB-1F1E6",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1fb-1f1e6.png",
+ sheet_x: 4,
+ sheet_y: 30,
+ short_name: "flag-va",
+ short_names: ["flag-va"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1858,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-vc": {
+ char: "🇻🇨",
+ key: "flag-vc",
+ keywords: ["flag-vc", "St. Vincent & Grenadines Flag"],
+ category: "flags",
+ lib: {
+ name: "St. Vincent & Grenadines Flag",
+ unified: "1F1FB-1F1E8",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1fb-1f1e8.png",
+ sheet_x: 4,
+ sheet_y: 31,
+ short_name: "flag-vc",
+ short_names: ["flag-vc"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1859,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-ve": {
+ char: "🇻🇪",
+ key: "flag-ve",
+ keywords: ["flag-ve", "Venezuela Flag"],
+ category: "flags",
+ lib: {
+ name: "Venezuela Flag",
+ unified: "1F1FB-1F1EA",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1fb-1f1ea.png",
+ sheet_x: 4,
+ sheet_y: 32,
+ short_name: "flag-ve",
+ short_names: ["flag-ve"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1860,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-vg": {
+ char: "🇻🇬",
+ key: "flag-vg",
+ keywords: ["flag-vg", "British Virgin Islands Flag"],
+ category: "flags",
+ lib: {
+ name: "British Virgin Islands Flag",
+ unified: "1F1FB-1F1EC",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1fb-1f1ec.png",
+ sheet_x: 4,
+ sheet_y: 33,
+ short_name: "flag-vg",
+ short_names: ["flag-vg"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1861,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-vi": {
+ char: "🇻🇮",
+ key: "flag-vi",
+ keywords: ["flag-vi", "U.S. Virgin Islands Flag"],
+ category: "flags",
+ lib: {
+ name: "U.S. Virgin Islands Flag",
+ unified: "1F1FB-1F1EE",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1fb-1f1ee.png",
+ sheet_x: 4,
+ sheet_y: 34,
+ short_name: "flag-vi",
+ short_names: ["flag-vi"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1862,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-vn": {
+ char: "🇻🇳",
+ key: "flag-vn",
+ keywords: ["flag-vn", "Vietnam Flag"],
+ category: "flags",
+ lib: {
+ name: "Vietnam Flag",
+ unified: "1F1FB-1F1F3",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1fb-1f1f3.png",
+ sheet_x: 4,
+ sheet_y: 35,
+ short_name: "flag-vn",
+ short_names: ["flag-vn"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1863,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-vu": {
+ char: "🇻🇺",
+ key: "flag-vu",
+ keywords: ["flag-vu", "Vanuatu Flag"],
+ category: "flags",
+ lib: {
+ name: "Vanuatu Flag",
+ unified: "1F1FB-1F1FA",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1fb-1f1fa.png",
+ sheet_x: 4,
+ sheet_y: 36,
+ short_name: "flag-vu",
+ short_names: ["flag-vu"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1864,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-wf": {
+ char: "🇼🇫",
+ key: "flag-wf",
+ keywords: ["flag-wf", "Wallis & Futuna Flag"],
+ category: "flags",
+ lib: {
+ name: "Wallis & Futuna Flag",
+ unified: "1F1FC-1F1EB",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1fc-1f1eb.png",
+ sheet_x: 4,
+ sheet_y: 37,
+ short_name: "flag-wf",
+ short_names: ["flag-wf"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1865,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-ws": {
+ char: "🇼🇸",
+ key: "flag-ws",
+ keywords: ["flag-ws", "Samoa Flag"],
+ category: "flags",
+ lib: {
+ name: "Samoa Flag",
+ unified: "1F1FC-1F1F8",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1fc-1f1f8.png",
+ sheet_x: 4,
+ sheet_y: 38,
+ short_name: "flag-ws",
+ short_names: ["flag-ws"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1866,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-xk": {
+ char: "🇽🇰",
+ key: "flag-xk",
+ keywords: ["flag-xk", "Kosovo Flag"],
+ category: "flags",
+ lib: {
+ name: "Kosovo Flag",
+ unified: "1F1FD-1F1F0",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1fd-1f1f0.png",
+ sheet_x: 4,
+ sheet_y: 39,
+ short_name: "flag-xk",
+ short_names: ["flag-xk"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1867,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-ye": {
+ char: "🇾🇪",
+ key: "flag-ye",
+ keywords: ["flag-ye", "Yemen Flag"],
+ category: "flags",
+ lib: {
+ name: "Yemen Flag",
+ unified: "1F1FE-1F1EA",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1fe-1f1ea.png",
+ sheet_x: 4,
+ sheet_y: 40,
+ short_name: "flag-ye",
+ short_names: ["flag-ye"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1868,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-yt": {
+ char: "🇾🇹",
+ key: "flag-yt",
+ keywords: ["flag-yt", "Mayotte Flag"],
+ category: "flags",
+ lib: {
+ name: "Mayotte Flag",
+ unified: "1F1FE-1F1F9",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1fe-1f1f9.png",
+ sheet_x: 4,
+ sheet_y: 41,
+ short_name: "flag-yt",
+ short_names: ["flag-yt"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1869,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-za": {
+ char: "🇿🇦",
+ key: "flag-za",
+ keywords: ["flag-za", "South Africa Flag"],
+ category: "flags",
+ lib: {
+ name: "South Africa Flag",
+ unified: "1F1FF-1F1E6",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1ff-1f1e6.png",
+ sheet_x: 4,
+ sheet_y: 42,
+ short_name: "flag-za",
+ short_names: ["flag-za"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1870,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-zm": {
+ char: "🇿🇲",
+ key: "flag-zm",
+ keywords: ["flag-zm", "Zambia Flag"],
+ category: "flags",
+ lib: {
+ name: "Zambia Flag",
+ unified: "1F1FF-1F1F2",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1ff-1f1f2.png",
+ sheet_x: 4,
+ sheet_y: 43,
+ short_name: "flag-zm",
+ short_names: ["flag-zm"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1871,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-zw": {
+ char: "🇿🇼",
+ key: "flag-zw",
+ keywords: ["flag-zw", "Zimbabwe Flag"],
+ category: "flags",
+ lib: {
+ name: "Zimbabwe Flag",
+ unified: "1F1FF-1F1FC",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f1ff-1f1fc.png",
+ sheet_x: 4,
+ sheet_y: 44,
+ short_name: "flag-zw",
+ short_names: ["flag-zw"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "country-flag",
+ sort_order: 1872,
+ added_in: "2.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-england": {
+ char: "🏴",
+ key: "flag-england",
+ keywords: ["flag-england", "England Flag"],
+ category: "flags",
+ lib: {
+ name: "England Flag",
+ unified: "1F3F4-E0067-E0062-E0065-E006E-E0067-E007F",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f3f4-e0067-e0062-e0065-e006e-e0067-e007f.png",
+ sheet_x: 10,
+ sheet_y: 32,
+ short_name: "flag-england",
+ short_names: ["flag-england"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "subdivision-flag",
+ sort_order: 1873,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-scotland": {
+ char: "🏴",
+ key: "flag-scotland",
+ keywords: ["flag-scotland", "Scotland Flag"],
+ category: "flags",
+ lib: {
+ name: "Scotland Flag",
+ unified: "1F3F4-E0067-E0062-E0073-E0063-E0074-E007F",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f3f4-e0067-e0062-e0073-e0063-e0074-e007f.png",
+ sheet_x: 10,
+ sheet_y: 33,
+ short_name: "flag-scotland",
+ short_names: ["flag-scotland"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "subdivision-flag",
+ sort_order: 1874,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ "flag-wales": {
+ char: "🏴",
+ key: "flag-wales",
+ keywords: ["flag-wales", "Wales Flag"],
+ category: "flags",
+ lib: {
+ name: "Wales Flag",
+ unified: "1F3F4-E0067-E0062-E0077-E006C-E0073-E007F",
+ non_qualified: null,
+ docomo: null,
+ au: null,
+ softbank: null,
+ google: null,
+ image: "1f3f4-e0067-e0062-e0077-e006c-e0073-e007f.png",
+ sheet_x: 10,
+ sheet_y: 34,
+ short_name: "flag-wales",
+ short_names: ["flag-wales"],
+ text: null,
+ texts: null,
+ category: "Flags",
+ subcategory: "subdivision-flag",
+ sort_order: 1875,
+ added_in: "5.0",
+ has_img_apple: true,
+ has_img_google: true,
+ has_img_twitter: true,
+ has_img_facebook: true,
+ },
+ },
+ },
+ emojiArray: [
+ {
+ keywords: [
+ "100",
+ "100",
+ "HUNDRED",
+ "POINTS",
+ "SYMBOLpass",
+ "score",
+ "century",
+ "quiz",
+ "numbers",
+ "perfect",
+ "hundred",
+ "test",
+ "exam",
+ ],
+ emoji_key: "100",
+ },
+ {
+ keywords: [
+ "1234",
+ "1234",
+ "INPUT",
+ "SYMBOL",
+ "FOR",
+ "NUMBERSnumbers",
+ "blue-square",
+ ],
+ emoji_key: "1234",
+ },
+ {
+ keywords: [
+ "grinning",
+ "grinning",
+ "GRINNING",
+ "FACEjoy",
+ "face",
+ "giggling",
+ ":D",
+ "happy",
+ "exclaimed",
+ "smile",
+ "grin",
+ "smiling",
+ ],
+ emoji_key: "grinning",
+ },
+ {
+ keywords: [
+ "smiley",
+ "smiley",
+ "SMILING",
+ "FACE",
+ "WITH",
+ "OPEN",
+ "MOUTH:)",
+ "haha",
+ "funny",
+ "joy",
+ "face",
+ ":D",
+ "happy",
+ "smile",
+ "cheerful",
+ "merry",
+ ],
+ emoji_key: "smiley",
+ },
+ {
+ keywords: [
+ "smile",
+ "smile",
+ "SMILING",
+ "FACE",
+ "WITH",
+ "OPEN",
+ "MOUTH",
+ "AND",
+ "SMILING",
+ "EYESlike",
+ ":)",
+ "haha",
+ "funny",
+ "joy",
+ "face",
+ ":D",
+ "happy",
+ "laugh",
+ "grin",
+ ],
+ emoji_key: "smile",
+ },
+ {
+ keywords: [
+ "grin",
+ "grin",
+ "GRINNING",
+ "FACE",
+ "WITH",
+ "SMILING",
+ "EYESkawaii",
+ "joy",
+ "face",
+ "happy",
+ "smile",
+ "cheer",
+ ],
+ emoji_key: "grin",
+ },
+ {
+ keywords: [
+ "laughing",
+ "laughing",
+ "SMILING",
+ "FACE",
+ "WITH",
+ "OPEN",
+ "MOUTH",
+ "AND",
+ "TIGHTLY-CLOSED",
+ "EYESlol",
+ "haha",
+ "joy",
+ "face",
+ "chuckle",
+ "happy",
+ "laugh",
+ "joke",
+ "giggle",
+ "joking",
+ "satisfied",
+ "smiling",
+ "XD",
+ "glad",
+ ],
+ emoji_key: "laughing",
+ },
+ {
+ keywords: [
+ "sweat_smile",
+ "sweat",
+ "smile",
+ "SMILING",
+ "FACE",
+ "WITH",
+ "OPEN",
+ "MOUTH",
+ "AND",
+ "COLD",
+ "SWEATface",
+ "hot",
+ "happy",
+ "laugh",
+ "sweat",
+ "smile",
+ "relief",
+ ],
+ emoji_key: "sweat_smile",
+ },
+ {
+ keywords: [
+ "rolling_on_the_floor_laughing",
+ "rolling",
+ "on",
+ "the",
+ "floor",
+ "laughing",
+ "ROLLING",
+ "ON",
+ "THE",
+ "FLOOR",
+ "LAUGHING",
+ ],
+ emoji_key: "rolling_on_the_floor_laughing",
+ },
+ {
+ keywords: [
+ "joy",
+ "joy",
+ "FACE",
+ "WITH",
+ "TEARS",
+ "OF",
+ "JOYhaha",
+ "elation",
+ "cry",
+ "delight",
+ "face",
+ "happytears",
+ "excitement",
+ "happy",
+ "tears",
+ "weep",
+ "thrill",
+ ],
+ emoji_key: "joy",
+ },
+ {
+ keywords: [
+ "slightly_smiling_face",
+ "slightly",
+ "smiling",
+ "face",
+ "SLIGHTLY",
+ "SMILING",
+ "FACEface",
+ "smile",
+ ],
+ emoji_key: "slightly_smiling_face",
+ },
+ {
+ keywords: [
+ "upside_down_face",
+ "upside",
+ "down",
+ "face",
+ "UPSIDE-DOWN",
+ "FACEface",
+ "flipped",
+ "silly",
+ "smile",
+ ],
+ emoji_key: "upside_down_face",
+ },
+ {
+ keywords: ["melting_face", "melting", "face", "MELTING", "FACE"],
+ emoji_key: "melting_face",
+ },
+ {
+ keywords: [
+ "wink",
+ "wink",
+ "WINKING",
+ "FACEsecret",
+ "blink",
+ "mischievous",
+ "face",
+ "eye",
+ "happy",
+ ";)",
+ "smile",
+ ],
+ emoji_key: "wink",
+ },
+ {
+ keywords: [
+ "blush",
+ "blush",
+ "SMILING",
+ "FACE",
+ "WITH",
+ "SMILING",
+ "EYESshy",
+ "redness",
+ "crush",
+ "embarrassed",
+ "joy",
+ "face",
+ "rosiness",
+ "happy",
+ "smile",
+ "flushed",
+ "redden",
+ ],
+ emoji_key: "blush",
+ },
+ {
+ keywords: [
+ "innocent",
+ "innocent",
+ "SMILING",
+ "FACE",
+ "WITH",
+ "HALOface",
+ "angel",
+ "heaven",
+ "halo",
+ ],
+ emoji_key: "innocent",
+ },
+ {
+ keywords: [
+ "smiling_face_with_3_hearts",
+ "smiling",
+ "face",
+ "with",
+ "3",
+ "hearts",
+ "SMILING",
+ "FACE",
+ "WITH",
+ "SMILING",
+ "EYES",
+ "AND",
+ "THREE",
+ "HEARTSsmiley",
+ ],
+ emoji_key: "smiling_face_with_3_hearts",
+ },
+ {
+ keywords: [
+ "heart_eyes",
+ "heart",
+ "eyes",
+ "SMILING",
+ "FACE",
+ "WITH",
+ "HEART-SHAPED",
+ "EYESface",
+ "love",
+ "like",
+ "affection",
+ "valentines",
+ "infatuation",
+ "crush",
+ "heart",
+ ],
+ emoji_key: "heart_eyes",
+ },
+ {
+ keywords: [
+ "star-struck",
+ "star-struck",
+ "GRINNING",
+ "FACE",
+ "WITH",
+ "STAR",
+ "EYES",
+ ],
+ emoji_key: "star-struck",
+ },
+ {
+ keywords: [
+ "kissing_heart",
+ "kissing",
+ "heart",
+ "FACE",
+ "THROWING",
+ "A",
+ "KISSface",
+ "love",
+ "like",
+ "affection",
+ "valentines",
+ "infatuation",
+ "kiss",
+ ],
+ emoji_key: "kissing_heart",
+ },
+ {
+ keywords: [
+ "kissing",
+ "kissing",
+ "KISSING",
+ "FACElike",
+ "valentines",
+ "smooching",
+ "love",
+ "face",
+ "infatuation",
+ "kiss",
+ "3",
+ ],
+ emoji_key: "kissing",
+ },
+ {
+ keywords: [
+ "relaxed",
+ "relaxed",
+ "WHITE",
+ "SMILING",
+ "FACEunstrained",
+ "happiness",
+ "comfortable",
+ "face",
+ "loosened",
+ "easygoing",
+ "calm",
+ "laid-back",
+ "massage",
+ "blush",
+ "mellow",
+ "at",
+ "ease",
+ "lax",
+ ],
+ emoji_key: "relaxed",
+ },
+ {
+ keywords: [
+ "kissing_closed_eyes",
+ "kissing",
+ "closed",
+ "eyes",
+ "KISSING",
+ "FACE",
+ "WITH",
+ "CLOSED",
+ "EYESface",
+ "love",
+ "like",
+ "affection",
+ "valentines",
+ "infatuation",
+ "kiss",
+ ],
+ emoji_key: "kissing_closed_eyes",
+ },
+ {
+ keywords: [
+ "kissing_smiling_eyes",
+ "kissing",
+ "smiling",
+ "eyes",
+ "KISSING",
+ "FACE",
+ "WITH",
+ "SMILING",
+ "EYESface",
+ "affection",
+ "valentines",
+ "infatuation",
+ "kiss",
+ ],
+ emoji_key: "kissing_smiling_eyes",
+ },
+ {
+ keywords: [
+ "smiling_face_with_tear",
+ "smiling",
+ "face",
+ "with",
+ "tear",
+ "SMILING",
+ "FACE",
+ "WITH",
+ "TEAR",
+ ],
+ emoji_key: "smiling_face_with_tear",
+ },
+ {
+ keywords: [
+ "yum",
+ "yum",
+ "FACE",
+ "SAVOURING",
+ "DELICIOUS",
+ "FOODyummy",
+ "silly",
+ "joy",
+ "face",
+ "tasty",
+ "happy",
+ "delicious",
+ "smile",
+ "nom",
+ "tongue",
+ "savouring",
+ ],
+ emoji_key: "yum",
+ },
+ {
+ keywords: [
+ "stuck_out_tongue",
+ "stuck",
+ "out",
+ "tongue",
+ "FACE",
+ "WITH",
+ "STUCK-OUT",
+ "TONGUEface",
+ "prank",
+ "childish",
+ "playful",
+ "mischievous",
+ "smile",
+ "tongue",
+ ],
+ emoji_key: "stuck_out_tongue",
+ },
+ {
+ keywords: [
+ "stuck_out_tongue_winking_eye",
+ "stuck",
+ "out",
+ "tongue",
+ "winking",
+ "eye",
+ "FACE",
+ "WITH",
+ "STUCK-OUT",
+ "TONGUE",
+ "AND",
+ "WINKING",
+ "EYEface",
+ "prank",
+ "childish",
+ "playful",
+ "mischievous",
+ "smile",
+ "wink",
+ "tongue",
+ ],
+ emoji_key: "stuck_out_tongue_winking_eye",
+ },
+ {
+ keywords: [
+ "zany_face",
+ "zany",
+ "face",
+ "GRINNING",
+ "FACE",
+ "WITH",
+ "ONE",
+ "LARGE",
+ "AND",
+ "ONE",
+ "SMALL",
+ "EYE",
+ ],
+ emoji_key: "zany_face",
+ },
+ {
+ keywords: [
+ "stuck_out_tongue_closed_eyes",
+ "stuck",
+ "out",
+ "tongue",
+ "closed",
+ "eyes",
+ "FACE",
+ "WITH",
+ "STUCK-OUT",
+ "TONGUE",
+ "AND",
+ "TIGHTLY-CLOSED",
+ "EYESface",
+ "prank",
+ "playful",
+ "mischievous",
+ "smile",
+ "tongue",
+ ],
+ emoji_key: "stuck_out_tongue_closed_eyes",
+ },
+ {
+ keywords: [
+ "money_mouth_face",
+ "money",
+ "mouth",
+ "face",
+ "MONEY-MOUTH",
+ "FACEface",
+ "rich",
+ "dollar",
+ "money",
+ ],
+ emoji_key: "money_mouth_face",
+ },
+ {
+ keywords: ["hugging_face", "hugging", "face", "HUGGING", "FACEsnuggle"],
+ emoji_key: "hugging_face",
+ },
+ {
+ keywords: [
+ "face_with_hand_over_mouth",
+ "face",
+ "with",
+ "hand",
+ "over",
+ "mouth",
+ "SMILING",
+ "FACE",
+ "WITH",
+ "SMILING",
+ "EYES",
+ "AND",
+ "HAND",
+ "COVERING",
+ "MOUTH",
+ ],
+ emoji_key: "face_with_hand_over_mouth",
+ },
+ {
+ keywords: [
+ "face_with_open_eyes_and_hand_over_mouth",
+ "face",
+ "with",
+ "open",
+ "eyes",
+ "and",
+ "hand",
+ "over",
+ "mouth",
+ "FACE",
+ "WITH",
+ "OPEN",
+ "EYES",
+ "AND",
+ "HAND",
+ "OVER",
+ "MOUTH",
+ ],
+ emoji_key: "face_with_open_eyes_and_hand_over_mouth",
+ },
+ {
+ keywords: [
+ "face_with_peeking_eye",
+ "face",
+ "with",
+ "peeking",
+ "eye",
+ "FACE",
+ "WITH",
+ "PEEKING",
+ "EYE",
+ ],
+ emoji_key: "face_with_peeking_eye",
+ },
+ {
+ keywords: [
+ "shushing_face",
+ "shushing",
+ "face",
+ "FACE",
+ "WITH",
+ "FINGER",
+ "COVERING",
+ "CLOSED",
+ "LIPS",
+ ],
+ emoji_key: "shushing_face",
+ },
+ {
+ keywords: ["thinking_face", "thinking", "face", "THINKING", "FACE"],
+ emoji_key: "thinking_face",
+ },
+ {
+ keywords: ["saluting_face", "saluting", "face", "SALUTING", "FACE"],
+ emoji_key: "saluting_face",
+ },
+ {
+ keywords: [
+ "zipper_mouth_face",
+ "zipper",
+ "mouth",
+ "face",
+ "ZIPPER-MOUTH",
+ "FACEface",
+ "sealed",
+ "zipper",
+ "secret",
+ ],
+ emoji_key: "zipper_mouth_face",
+ },
+ {
+ keywords: [
+ "face_with_raised_eyebrow",
+ "face",
+ "with",
+ "raised",
+ "eyebrow",
+ "FACE",
+ "WITH",
+ "ONE",
+ "EYEBROW",
+ "RAISED",
+ ],
+ emoji_key: "face_with_raised_eyebrow",
+ },
+ {
+ keywords: [
+ "neutral_face",
+ "neutral",
+ "face",
+ "NEUTRAL",
+ "FACEindifference",
+ "meh",
+ ":|",
+ "neutral",
+ ],
+ emoji_key: "neutral_face",
+ },
+ {
+ keywords: [
+ "expressionless",
+ "expressionless",
+ "EXPRESSIONLESS",
+ "FACEunexpressive",
+ "-",
+ "-",
+ "deadpan",
+ "face",
+ "poker-faced",
+ "meh",
+ "indifferent",
+ "emotionless",
+ ],
+ emoji_key: "expressionless",
+ },
+ {
+ keywords: [
+ "no_mouth",
+ "no",
+ "mouth",
+ "FACE",
+ "WITHOUT",
+ "MOUTHface",
+ "hellokitty",
+ ],
+ emoji_key: "no_mouth",
+ },
+ {
+ keywords: [
+ "dotted_line_face",
+ "dotted",
+ "line",
+ "face",
+ "DOTTED",
+ "LINE",
+ "FACE",
+ ],
+ emoji_key: "dotted_line_face",
+ },
+ {
+ keywords: [
+ "face_in_clouds",
+ "face",
+ "in",
+ "clouds",
+ "FACE",
+ "IN",
+ "CLOUDS",
+ ],
+ emoji_key: "face_in_clouds",
+ },
+ {
+ keywords: [
+ "smirk",
+ "smirk",
+ "SMIRKING",
+ "FACEsmug",
+ "face",
+ "mean",
+ "sarcasm",
+ "prank",
+ "smile",
+ "sneer",
+ ],
+ emoji_key: "smirk",
+ },
+ {
+ keywords: [
+ "unamused",
+ "unamused",
+ "UNAMUSED",
+ "FACEindifference",
+ "bored",
+ "straight",
+ "face",
+ "serious",
+ "sarcasm",
+ ],
+ emoji_key: "unamused",
+ },
+ {
+ keywords: [
+ "face_with_rolling_eyes",
+ "face",
+ "with",
+ "rolling",
+ "eyes",
+ "FACE",
+ "WITH",
+ "ROLLING",
+ "EYES",
+ ],
+ emoji_key: "face_with_rolling_eyes",
+ },
+ {
+ keywords: [
+ "grimacing",
+ "grimacing",
+ "GRIMACING",
+ "FACEface",
+ "grimace",
+ "teeth",
+ ],
+ emoji_key: "grimacing",
+ },
+ {
+ keywords: ["face_exhaling", "face", "exhaling", "FACE", "EXHALING"],
+ emoji_key: "face_exhaling",
+ },
+ {
+ keywords: [
+ "lying_face",
+ "lying",
+ "face",
+ "LYING",
+ "FACEface",
+ "lie",
+ "pinocchio",
+ ],
+ emoji_key: "lying_face",
+ },
+ {
+ keywords: ["shaking_face", "shaking", "face", "SHAKING", "FACE"],
+ emoji_key: "shaking_face",
+ },
+ {
+ keywords: [
+ "relieved",
+ "relieved",
+ "RELIEVED",
+ "FACEface",
+ "relaxed",
+ "phew",
+ "massage",
+ "happiness",
+ ],
+ emoji_key: "relieved",
+ },
+ {
+ keywords: [
+ "pensive",
+ "pensive",
+ "PENSIVE",
+ "FACEface",
+ "sad",
+ "depressed",
+ "upset",
+ ],
+ emoji_key: "pensive",
+ },
+ {
+ keywords: [
+ "sleepy",
+ "sleepy",
+ "SLEEPY",
+ "FACEface",
+ "tired",
+ "rest",
+ "nap",
+ ],
+ emoji_key: "sleepy",
+ },
+ {
+ keywords: ["drooling_face", "drooling", "face", "DROOLING", "FACEface"],
+ emoji_key: "drooling_face",
+ },
+ {
+ keywords: [
+ "sleeping",
+ "sleeping",
+ "SLEEPING",
+ "FACEface",
+ "tired",
+ "sleepy",
+ "night",
+ "zzz",
+ ],
+ emoji_key: "sleeping",
+ },
+ {
+ keywords: [
+ "mask",
+ "mask",
+ "FACE",
+ "WITH",
+ "MEDICAL",
+ "MASKface",
+ "sick",
+ "ill",
+ "disease",
+ ],
+ emoji_key: "mask",
+ },
+ {
+ keywords: [
+ "face_with_thermometer",
+ "face",
+ "with",
+ "thermometer",
+ "FACE",
+ "WITH",
+ "THERMOMETERsick",
+ "temperature",
+ "thermometer",
+ "cold",
+ "fever",
+ ],
+ emoji_key: "face_with_thermometer",
+ },
+ {
+ keywords: [
+ "face_with_head_bandage",
+ "face",
+ "with",
+ "head",
+ "bandage",
+ "FACE",
+ "WITH",
+ "HEAD-BANDAGEinjured",
+ "clumsy",
+ "bandage",
+ "hurt",
+ ],
+ emoji_key: "face_with_head_bandage",
+ },
+ {
+ keywords: [
+ "nauseated_face",
+ "nauseated",
+ "face",
+ "NAUSEATED",
+ "FACEface",
+ "vomit",
+ "gross",
+ "green",
+ "sick",
+ "throw",
+ "up",
+ "ill",
+ ],
+ emoji_key: "nauseated_face",
+ },
+ {
+ keywords: [
+ "face_vomiting",
+ "face",
+ "vomiting",
+ "FACE",
+ "WITH",
+ "OPEN",
+ "MOUTH",
+ "VOMITING",
+ ],
+ emoji_key: "face_vomiting",
+ },
+ {
+ keywords: [
+ "sneezing_face",
+ "sneezing",
+ "face",
+ "SNEEZING",
+ "FACEface",
+ "gesundheit",
+ "sneeze",
+ "sick",
+ "allergy",
+ ],
+ emoji_key: "sneezing_face",
+ },
+ {
+ keywords: ["hot_face", "hot", "face", "OVERHEATED", "FACE"],
+ emoji_key: "hot_face",
+ },
+ {
+ keywords: ["cold_face", "cold", "face", "FREEZING", "FACE"],
+ emoji_key: "cold_face",
+ },
+ {
+ keywords: [
+ "woozy_face",
+ "woozy",
+ "face",
+ "FACE",
+ "WITH",
+ "UNEVEN",
+ "EYES",
+ "AND",
+ "WAVY",
+ "MOUTH",
+ ],
+ emoji_key: "woozy_face",
+ },
+ {
+ keywords: [
+ "dizzy_face",
+ "dizzy",
+ "face",
+ "DIZZY",
+ "FACEspent",
+ "unconscious",
+ "xox",
+ "dizzy",
+ ],
+ emoji_key: "dizzy_face",
+ },
+ {
+ keywords: [
+ "face_with_spiral_eyes",
+ "face",
+ "with",
+ "spiral",
+ "eyes",
+ "FACE",
+ "WITH",
+ "SPIRAL",
+ "EYES",
+ ],
+ emoji_key: "face_with_spiral_eyes",
+ },
+ {
+ keywords: [
+ "exploding_head",
+ "exploding",
+ "head",
+ "SHOCKED",
+ "FACE",
+ "WITH",
+ "EXPLODING",
+ "HEADface",
+ "shocked",
+ "mind",
+ "blown",
+ ],
+ emoji_key: "exploding_head",
+ },
+ {
+ keywords: [
+ "face_with_cowboy_hat",
+ "face",
+ "with",
+ "cowboy",
+ "hat",
+ "FACE",
+ "WITH",
+ "COWBOY",
+ "HAT",
+ ],
+ emoji_key: "face_with_cowboy_hat",
+ },
+ {
+ keywords: [
+ "partying_face",
+ "partying",
+ "face",
+ "FACE",
+ "WITH",
+ "PARTY",
+ "HORN",
+ "AND",
+ "PARTY",
+ "HAT",
+ ],
+ emoji_key: "partying_face",
+ },
+ {
+ keywords: ["disguised_face", "disguised", "face", "DISGUISED", "FACE"],
+ emoji_key: "disguised_face",
+ },
+ {
+ keywords: [
+ "sunglasses",
+ "sunglasses",
+ "SMILING",
+ "FACE",
+ "WITH",
+ "SUNGLASSESbeach",
+ "eyewear",
+ "face",
+ "smile",
+ "cool",
+ "sunglass",
+ "summer",
+ "shades",
+ ],
+ emoji_key: "sunglasses",
+ },
+ {
+ keywords: [
+ "nerd_face",
+ "nerd",
+ "face",
+ "NERD",
+ "FACEface",
+ "nerdy",
+ "geek",
+ "dork",
+ ],
+ emoji_key: "nerd_face",
+ },
+ {
+ keywords: [
+ "face_with_monocle",
+ "face",
+ "with",
+ "monocle",
+ "FACE",
+ "WITH",
+ "MONOCLE",
+ ],
+ emoji_key: "face_with_monocle",
+ },
+ {
+ keywords: [
+ "confused",
+ "confused",
+ "CONFUSED",
+ "FACEface",
+ "indifference",
+ "huh",
+ "weird",
+ "hmmm",
+ ":/",
+ ],
+ emoji_key: "confused",
+ },
+ {
+ keywords: [
+ "face_with_diagonal_mouth",
+ "face",
+ "with",
+ "diagonal",
+ "mouth",
+ "FACE",
+ "WITH",
+ "DIAGONAL",
+ "MOUTH",
+ ],
+ emoji_key: "face_with_diagonal_mouth",
+ },
+ {
+ keywords: [
+ "worried",
+ "worried",
+ "WORRIED",
+ "FACEface",
+ "concern",
+ "nervous",
+ ":(",
+ ],
+ emoji_key: "worried",
+ },
+ {
+ keywords: [
+ "slightly_frowning_face",
+ "slightly",
+ "frowning",
+ "face",
+ "SLIGHTLY",
+ "FROWNING",
+ "FACEface",
+ "frowning",
+ "disappointed",
+ "sad",
+ "upset",
+ ],
+ emoji_key: "slightly_frowning_face",
+ },
+ {
+ keywords: [
+ "white_frowning_face",
+ "white",
+ "frowning",
+ "face",
+ "FROWNING",
+ "FACE",
+ ],
+ emoji_key: "white_frowning_face",
+ },
+ {
+ keywords: [
+ "open_mouth",
+ "open",
+ "mouth",
+ "FACE",
+ "WITH",
+ "OPEN",
+ "MOUTHwow",
+ "surprise",
+ "face",
+ "whoa",
+ "gasping",
+ "impressed",
+ "gaping",
+ ":O",
+ ],
+ emoji_key: "open_mouth",
+ },
+ {
+ keywords: [
+ "hushed",
+ "hushed",
+ "HUSHED",
+ "FACEface",
+ "woo",
+ "quiet",
+ "soft",
+ "whispered",
+ "shh",
+ ],
+ emoji_key: "hushed",
+ },
+ {
+ keywords: [
+ "astonished",
+ "astonished",
+ "ASTONISHED",
+ "FACEface",
+ "xox",
+ "surprised",
+ "poisoned",
+ ],
+ emoji_key: "astonished",
+ },
+ {
+ keywords: [
+ "flushed",
+ "flushed",
+ "FLUSHED",
+ "FACEface",
+ "blush",
+ "shy",
+ "flattered",
+ ],
+ emoji_key: "flushed",
+ },
+ {
+ keywords: [
+ "pleading_face",
+ "pleading",
+ "face",
+ "FACE",
+ "WITH",
+ "PLEADING",
+ "EYES",
+ ],
+ emoji_key: "pleading_face",
+ },
+ {
+ keywords: [
+ "face_holding_back_tears",
+ "face",
+ "holding",
+ "back",
+ "tears",
+ "FACE",
+ "HOLDING",
+ "BACK",
+ "TEARS",
+ ],
+ emoji_key: "face_holding_back_tears",
+ },
+ {
+ keywords: [
+ "frowning",
+ "frowning",
+ "FROWNING",
+ "FACE",
+ "WITH",
+ "OPEN",
+ "MOUTHface",
+ "aw",
+ "what",
+ ],
+ emoji_key: "frowning",
+ },
+ {
+ keywords: [
+ "anguished",
+ "anguished",
+ "ANGUISHED",
+ "FACEface",
+ "stunned",
+ "nervous",
+ ],
+ emoji_key: "anguished",
+ },
+ {
+ keywords: [
+ "fearful",
+ "fearful",
+ "FEARFUL",
+ "FACEface",
+ "scared",
+ "terrified",
+ "nervous",
+ "oops",
+ "huh",
+ ],
+ emoji_key: "fearful",
+ },
+ {
+ keywords: [
+ "cold_sweat",
+ "cold",
+ "sweat",
+ "FACE",
+ "WITH",
+ "OPEN",
+ "MOUTH",
+ "AND",
+ "COLD",
+ "SWEATface",
+ "nervous",
+ "sweat",
+ ],
+ emoji_key: "cold_sweat",
+ },
+ {
+ keywords: [
+ "disappointed_relieved",
+ "disappointed",
+ "relieved",
+ "DISAPPOINTED",
+ "BUT",
+ "RELIEVED",
+ "FACEface",
+ "phew",
+ "sweat",
+ "nervous",
+ ],
+ emoji_key: "disappointed_relieved",
+ },
+ {
+ keywords: [
+ "cry",
+ "cry",
+ "CRYING",
+ "FACEface",
+ "tears",
+ "sad",
+ "depressed",
+ "upset",
+ ":'(",
+ ],
+ emoji_key: "cry",
+ },
+ {
+ keywords: [
+ "sob",
+ "sob",
+ "LOUDLY",
+ "CRYING",
+ "FACEface",
+ "cry",
+ "tears",
+ "sad",
+ "upset",
+ "depressed",
+ ],
+ emoji_key: "sob",
+ },
+ {
+ keywords: [
+ "scream",
+ "scream",
+ "FACE",
+ "SCREAMING",
+ "IN",
+ "FEARface",
+ "munch",
+ "scared",
+ "omg",
+ ],
+ emoji_key: "scream",
+ },
+ {
+ keywords: [
+ "confounded",
+ "confounded",
+ "CONFOUNDED",
+ "FACEface",
+ "confused",
+ "sick",
+ "unwell",
+ "oops",
+ ":S",
+ ],
+ emoji_key: "confounded",
+ },
+ {
+ keywords: [
+ "persevere",
+ "persevere",
+ "PERSEVERING",
+ "FACEface",
+ "sick",
+ "no",
+ "upset",
+ "oops",
+ ],
+ emoji_key: "persevere",
+ },
+ {
+ keywords: [
+ "disappointed",
+ "disappointed",
+ "DISAPPOINTED",
+ "FACEface",
+ "sad",
+ "upset",
+ "depressed",
+ ":(",
+ ],
+ emoji_key: "disappointed",
+ },
+ {
+ keywords: [
+ "sweat",
+ "sweat",
+ "FACE",
+ "WITH",
+ "COLD",
+ "SWEATface",
+ "hot",
+ "sad",
+ "tired",
+ "exercise",
+ ],
+ emoji_key: "sweat",
+ },
+ {
+ keywords: [
+ "weary",
+ "weary",
+ "WEARY",
+ "FACEface",
+ "tired",
+ "sleepy",
+ "sad",
+ "frustrated",
+ "upset",
+ ],
+ emoji_key: "weary",
+ },
+ {
+ keywords: [
+ "tired_face",
+ "tired",
+ "face",
+ "TIRED",
+ "FACEsick",
+ "whine",
+ "upset",
+ "frustrated",
+ ],
+ emoji_key: "tired_face",
+ },
+ {
+ keywords: ["yawning_face", "yawning", "face", "YAWNING", "FACE"],
+ emoji_key: "yawning_face",
+ },
+ {
+ keywords: [
+ "triumph",
+ "triumph",
+ "FACE",
+ "WITH",
+ "LOOK",
+ "OF",
+ "TRIUMPHface",
+ "gas",
+ "phew",
+ "proud",
+ "pride",
+ ],
+ emoji_key: "triumph",
+ },
+ {
+ keywords: [
+ "rage",
+ "rage",
+ "POUTING",
+ "FACEangry",
+ "mad",
+ "hate",
+ "despise",
+ ],
+ emoji_key: "rage",
+ },
+ {
+ keywords: [
+ "angry",
+ "angry",
+ "ANGRY",
+ "FACEmad",
+ "face",
+ "annoyed",
+ "frustrated",
+ ],
+ emoji_key: "angry",
+ },
+ {
+ keywords: [
+ "face_with_symbols_on_mouth",
+ "face",
+ "with",
+ "symbols",
+ "on",
+ "mouth",
+ "SERIOUS",
+ "FACE",
+ "WITH",
+ "SYMBOLS",
+ "COVERING",
+ "MOUTH",
+ ],
+ emoji_key: "face_with_symbols_on_mouth",
+ },
+ {
+ keywords: [
+ "smiling_imp",
+ "smiling",
+ "imp",
+ "SMILING",
+ "FACE",
+ "WITH",
+ "HORNSdevil",
+ "horns",
+ ],
+ emoji_key: "smiling_imp",
+ },
+ {
+ keywords: ["imp", "imp", "IMPdevil", "angry", "horns"],
+ emoji_key: "imp",
+ },
+ {
+ keywords: ["skull", "skull", "SKULLdead", "skeleton", "creepy", "death"],
+ emoji_key: "skull",
+ },
+ {
+ keywords: [
+ "skull_and_crossbones",
+ "skull",
+ "and",
+ "crossbones",
+ "SKULL",
+ "AND",
+ "CROSSBONESpoison",
+ "danger",
+ "deadly",
+ "scary",
+ "death",
+ "pirate",
+ "evil",
+ ],
+ emoji_key: "skull_and_crossbones",
+ },
+ {
+ keywords: ["hankey", "hankey", "PILE", "OF", "POO"],
+ emoji_key: "hankey",
+ },
+ {
+ keywords: ["clown_face", "clown", "face", "CLOWN", "FACEface"],
+ emoji_key: "clown_face",
+ },
+ {
+ keywords: [
+ "japanese_ogre",
+ "japanese",
+ "ogre",
+ "JAPANESE",
+ "OGREmonster",
+ "red",
+ "mask",
+ "halloween",
+ "scary",
+ "creepy",
+ "devil",
+ "demon",
+ "japanese",
+ "ogre",
+ ],
+ emoji_key: "japanese_ogre",
+ },
+ {
+ keywords: [
+ "japanese_goblin",
+ "japanese",
+ "goblin",
+ "JAPANESE",
+ "GOBLINred",
+ "evil",
+ "mask",
+ "monster",
+ "scary",
+ "creepy",
+ "japanese",
+ "goblin",
+ ],
+ emoji_key: "japanese_goblin",
+ },
+ {
+ keywords: ["ghost", "ghost", "GHOSThalloween", "spooky", "scary"],
+ emoji_key: "ghost",
+ },
+ {
+ keywords: [
+ "alien",
+ "alien",
+ "EXTRATERRESTRIAL",
+ "ALIENUFO",
+ "paul",
+ "weird",
+ "outer",
+ "space",
+ ],
+ emoji_key: "alien",
+ },
+ {
+ keywords: [
+ "space_invader",
+ "space",
+ "invader",
+ "ALIEN",
+ "MONSTERgame",
+ "arcade",
+ "play",
+ ],
+ emoji_key: "space_invader",
+ },
+ {
+ keywords: ["robot_face", "robot", "face", "ROBOT", "FACE"],
+ emoji_key: "robot_face",
+ },
+ {
+ keywords: [
+ "smiley_cat",
+ "smiley",
+ "cat",
+ "SMILING",
+ "CAT",
+ "FACE",
+ "WITH",
+ "OPEN",
+ "MOUTHanimal",
+ "cats",
+ "happy",
+ "smile",
+ ],
+ emoji_key: "smiley_cat",
+ },
+ {
+ keywords: [
+ "smile_cat",
+ "smile",
+ "cat",
+ "GRINNING",
+ "CAT",
+ "FACE",
+ "WITH",
+ "SMILING",
+ "EYESanimal",
+ "cats",
+ "smile",
+ ],
+ emoji_key: "smile_cat",
+ },
+ {
+ keywords: [
+ "joy_cat",
+ "joy",
+ "cat",
+ "CAT",
+ "FACE",
+ "WITH",
+ "TEARS",
+ "OF",
+ "JOYanimal",
+ "cats",
+ "haha",
+ "happy",
+ "tears",
+ ],
+ emoji_key: "joy_cat",
+ },
+ {
+ keywords: [
+ "heart_eyes_cat",
+ "heart",
+ "eyes",
+ "cat",
+ "SMILING",
+ "CAT",
+ "FACE",
+ "WITH",
+ "HEART-SHAPED",
+ "EYESanimal",
+ "love",
+ "like",
+ "affection",
+ "cats",
+ "valentines",
+ "heart",
+ ],
+ emoji_key: "heart_eyes_cat",
+ },
+ {
+ keywords: [
+ "smirk_cat",
+ "smirk",
+ "cat",
+ "CAT",
+ "FACE",
+ "WITH",
+ "WRY",
+ "SMILEanimal",
+ "cats",
+ "smirk",
+ ],
+ emoji_key: "smirk_cat",
+ },
+ {
+ keywords: [
+ "kissing_cat",
+ "kissing",
+ "cat",
+ "KISSING",
+ "CAT",
+ "FACE",
+ "WITH",
+ "CLOSED",
+ "EYESanimal",
+ "cats",
+ "kiss",
+ ],
+ emoji_key: "kissing_cat",
+ },
+ {
+ keywords: [
+ "scream_cat",
+ "scream",
+ "cat",
+ "WEARY",
+ "CAT",
+ "FACEanimal",
+ "cats",
+ "munch",
+ "scared",
+ "scream",
+ ],
+ emoji_key: "scream_cat",
+ },
+ {
+ keywords: [
+ "crying_cat_face",
+ "crying",
+ "cat",
+ "face",
+ "CRYING",
+ "CAT",
+ "FACEanimal",
+ "tears",
+ "weep",
+ "sad",
+ "cats",
+ "upset",
+ "cry",
+ ],
+ emoji_key: "crying_cat_face",
+ },
+ {
+ keywords: [
+ "pouting_cat",
+ "pouting",
+ "cat",
+ "POUTING",
+ "CAT",
+ "FACEanimal",
+ "cats",
+ ],
+ emoji_key: "pouting_cat",
+ },
+ {
+ keywords: [
+ "see_no_evil",
+ "see",
+ "no",
+ "evil",
+ "SEE-NO-EVIL",
+ "MONKEYmonkey",
+ "animal",
+ "nature",
+ "haha",
+ ],
+ emoji_key: "see_no_evil",
+ },
+ {
+ keywords: [
+ "hear_no_evil",
+ "hear",
+ "no",
+ "evil",
+ "HEAR-NO-EVIL",
+ "MONKEYanimal",
+ "monkey",
+ "nature",
+ ],
+ emoji_key: "hear_no_evil",
+ },
+ {
+ keywords: [
+ "speak_no_evil",
+ "speak",
+ "no",
+ "evil",
+ "SPEAK-NO-EVIL",
+ "MONKEYmonkey",
+ "animal",
+ "nature",
+ "omg",
+ ],
+ emoji_key: "speak_no_evil",
+ },
+ {
+ keywords: [
+ "love_letter",
+ "love",
+ "letter",
+ "LOVE",
+ "LETTERemail",
+ "like",
+ "affection",
+ "envelope",
+ "valentines",
+ ],
+ emoji_key: "love_letter",
+ },
+ {
+ keywords: [
+ "cupid",
+ "cupid",
+ "HEART",
+ "WITH",
+ "ARROWlove",
+ "like",
+ "heart",
+ "affection",
+ "valentines",
+ ],
+ emoji_key: "cupid",
+ },
+ {
+ keywords: [
+ "gift_heart",
+ "gift",
+ "heart",
+ "HEART",
+ "WITH",
+ "RIBBONlove",
+ "valentines",
+ ],
+ emoji_key: "gift_heart",
+ },
+ {
+ keywords: [
+ "sparkling_heart",
+ "sparkling",
+ "heart",
+ "SPARKLING",
+ "HEARTlove",
+ "like",
+ "affection",
+ "valentines",
+ ],
+ emoji_key: "sparkling_heart",
+ },
+ {
+ keywords: [
+ "heartpulse",
+ "heartpulse",
+ "GROWING",
+ "HEARTlike",
+ "love",
+ "affection",
+ "valentines",
+ "pink",
+ ],
+ emoji_key: "heartpulse",
+ },
+ {
+ keywords: [
+ "heartbeat",
+ "heartbeat",
+ "BEATING",
+ "HEARTlove",
+ "like",
+ "affection",
+ "valentines",
+ "pink",
+ "heart",
+ ],
+ emoji_key: "heartbeat",
+ },
+ {
+ keywords: [
+ "revolving_hearts",
+ "revolving",
+ "hearts",
+ "REVOLVING",
+ "HEARTSlove",
+ "like",
+ "affection",
+ "valentines",
+ ],
+ emoji_key: "revolving_hearts",
+ },
+ {
+ keywords: [
+ "two_hearts",
+ "two",
+ "hearts",
+ "TWO",
+ "HEARTSlove",
+ "like",
+ "affection",
+ "valentines",
+ "heart",
+ ],
+ emoji_key: "two_hearts",
+ },
+ {
+ keywords: [
+ "heart_decoration",
+ "heart",
+ "decoration",
+ "HEART",
+ "DECORATIONpurple-square",
+ "love",
+ "like",
+ ],
+ emoji_key: "heart_decoration",
+ },
+ {
+ keywords: [
+ "heavy_heart_exclamation_mark_ornament",
+ "heavy",
+ "heart",
+ "exclamation",
+ "mark",
+ "ornament",
+ "HEART",
+ "EXCLAMATION",
+ ],
+ emoji_key: "heavy_heart_exclamation_mark_ornament",
+ },
+ {
+ keywords: [
+ "broken_heart",
+ "broken",
+ "heart",
+ "BROKEN",
+ "HEARTsad",
+ "sorry",
+ "break",
+ "heart",
+ "heartbreak",
+ ],
+ emoji_key: "broken_heart",
+ },
+ {
+ keywords: ["heart_on_fire", "heart", "on", "fire", "HEART", "ON", "FIRE"],
+ emoji_key: "heart_on_fire",
+ },
+ {
+ keywords: ["mending_heart", "mending", "heart", "MENDING", "HEART"],
+ emoji_key: "mending_heart",
+ },
+ {
+ keywords: [
+ "heart",
+ "heart",
+ "HEAVY",
+ "BLACK",
+ "HEARTlove",
+ "like",
+ "valentines",
+ ],
+ emoji_key: "heart",
+ },
+ {
+ keywords: ["pink_heart", "pink", "heart", "PINK", "HEART"],
+ emoji_key: "pink_heart",
+ },
+ {
+ keywords: [
+ "orange_heart",
+ "orange",
+ "heart",
+ "ORANGE",
+ "HEARTlove",
+ "like",
+ "affection",
+ "valentines",
+ ],
+ emoji_key: "orange_heart",
+ },
+ {
+ keywords: [
+ "yellow_heart",
+ "yellow",
+ "heart",
+ "YELLOW",
+ "HEARTlove",
+ "like",
+ "affection",
+ "valentines",
+ ],
+ emoji_key: "yellow_heart",
+ },
+ {
+ keywords: [
+ "green_heart",
+ "green",
+ "heart",
+ "GREEN",
+ "HEARTlove",
+ "like",
+ "affection",
+ "valentines",
+ ],
+ emoji_key: "green_heart",
+ },
+ {
+ keywords: [
+ "blue_heart",
+ "blue",
+ "heart",
+ "BLUE",
+ "HEARTlove",
+ "like",
+ "affection",
+ "valentines",
+ ],
+ emoji_key: "blue_heart",
+ },
+ {
+ keywords: [
+ "light_blue_heart",
+ "light",
+ "blue",
+ "heart",
+ "LIGHT",
+ "BLUE",
+ "HEART",
+ ],
+ emoji_key: "light_blue_heart",
+ },
+ {
+ keywords: [
+ "purple_heart",
+ "purple",
+ "heart",
+ "PURPLE",
+ "HEARTlove",
+ "like",
+ "affection",
+ "valentines",
+ ],
+ emoji_key: "purple_heart",
+ },
+ {
+ keywords: ["brown_heart", "brown", "heart", "BROWN", "HEART"],
+ emoji_key: "brown_heart",
+ },
+ {
+ keywords: ["black_heart", "black", "heart", "BLACK", "HEARTevil"],
+ emoji_key: "black_heart",
+ },
+ {
+ keywords: ["grey_heart", "grey", "heart", "GREY", "HEART"],
+ emoji_key: "grey_heart",
+ },
+ {
+ keywords: ["white_heart", "white", "heart", "WHITE", "HEART"],
+ emoji_key: "white_heart",
+ },
+ {
+ keywords: [
+ "kiss",
+ "kiss",
+ "KISS",
+ "MARKface",
+ "lips",
+ "love",
+ "like",
+ "affection",
+ "valentines",
+ ],
+ emoji_key: "kiss",
+ },
+ {
+ keywords: ["anger", "anger", "ANGER", "SYMBOLangry", "mad"],
+ emoji_key: "anger",
+ },
+ {
+ keywords: [
+ "boom",
+ "boom",
+ "COLLISION",
+ "SYMBOLbomb",
+ "explode",
+ "explosion",
+ "collision",
+ "blown",
+ ],
+ emoji_key: "boom",
+ },
+ {
+ keywords: [
+ "dizzy",
+ "dizzy",
+ "DIZZY",
+ "SYMBOLstar",
+ "sparkle",
+ "shoot",
+ "magic",
+ ],
+ emoji_key: "dizzy",
+ },
+ {
+ keywords: [
+ "sweat_drops",
+ "sweat",
+ "drops",
+ "SPLASHING",
+ "SWEAT",
+ "SYMBOLwater",
+ "drip",
+ "oops",
+ ],
+ emoji_key: "sweat_drops",
+ },
+ {
+ keywords: [
+ "dash",
+ "dash",
+ "DASH",
+ "SYMBOLwind",
+ "air",
+ "fast",
+ "shoo",
+ "fart",
+ "smoke",
+ "puff",
+ ],
+ emoji_key: "dash",
+ },
+ { keywords: ["hole", "hole", "HOLEembarrassing"], emoji_key: "hole" },
+ {
+ keywords: [
+ "speech_balloon",
+ "speech",
+ "balloon",
+ "SPEECH",
+ "BALLOONbubble",
+ "words",
+ "message",
+ "talk",
+ "chatting",
+ ],
+ emoji_key: "speech_balloon",
+ },
+ {
+ keywords: [
+ "eye-in-speech-bubble",
+ "eye-in-speech-bubble",
+ "EYE",
+ "IN",
+ "SPEECH",
+ "BUBBLE",
+ ],
+ emoji_key: "eye-in-speech-bubble",
+ },
+ {
+ keywords: [
+ "left_speech_bubble",
+ "left",
+ "speech",
+ "bubble",
+ "LEFT",
+ "SPEECH",
+ "BUBBLEwords",
+ "message",
+ "talk",
+ "chatting",
+ ],
+ emoji_key: "left_speech_bubble",
+ },
+ {
+ keywords: [
+ "right_anger_bubble",
+ "right",
+ "anger",
+ "bubble",
+ "RIGHT",
+ "ANGER",
+ "BUBBLEcaption",
+ "speech",
+ "thinking",
+ "mad",
+ ],
+ emoji_key: "right_anger_bubble",
+ },
+ {
+ keywords: [
+ "thought_balloon",
+ "thought",
+ "balloon",
+ "THOUGHT",
+ "BALLOONbubble",
+ "cloud",
+ "speech",
+ "thinking",
+ "dream",
+ ],
+ emoji_key: "thought_balloon",
+ },
+ {
+ keywords: ["zzz", "zzz", "SLEEPING", "SYMBOLsleepy", "tired", "dream"],
+ emoji_key: "zzz",
+ },
+ {
+ keywords: [
+ "wave",
+ "wave",
+ "WAVING",
+ "HAND",
+ "SIGNhands",
+ "gesture",
+ "goodbye",
+ "solong",
+ "farewell",
+ "hello",
+ "hi",
+ "palm",
+ ],
+ emoji_key: "wave",
+ },
+ {
+ keywords: [
+ "raised_back_of_hand",
+ "raised",
+ "back",
+ "of",
+ "hand",
+ "RAISED",
+ "BACK",
+ "OF",
+ "HANDfingers",
+ "raised",
+ "backhand",
+ ],
+ emoji_key: "raised_back_of_hand",
+ },
+ {
+ keywords: [
+ "raised_hand_with_fingers_splayed",
+ "raised",
+ "hand",
+ "with",
+ "fingers",
+ "splayed",
+ "HAND",
+ "WITH",
+ "FINGERS",
+ "SPLAYEDhand",
+ "fingers",
+ "palm",
+ ],
+ emoji_key: "raised_hand_with_fingers_splayed",
+ },
+ { keywords: ["hand", "hand", "RAISED", "HAND"], emoji_key: "hand" },
+ {
+ keywords: [
+ "spock-hand",
+ "spock-hand",
+ "RAISED",
+ "HAND",
+ "WITH",
+ "PART",
+ "BETWEEN",
+ "MIDDLE",
+ "AND",
+ "RING",
+ "FINGERS",
+ ],
+ emoji_key: "spock-hand",
+ },
+ {
+ keywords: ["rightwards_hand", "rightwards", "hand", "RIGHTWARDS", "HAND"],
+ emoji_key: "rightwards_hand",
+ },
+ {
+ keywords: ["leftwards_hand", "leftwards", "hand", "LEFTWARDS", "HAND"],
+ emoji_key: "leftwards_hand",
+ },
+ {
+ keywords: [
+ "palm_down_hand",
+ "palm",
+ "down",
+ "hand",
+ "PALM",
+ "DOWN",
+ "HAND",
+ ],
+ emoji_key: "palm_down_hand",
+ },
+ {
+ keywords: ["palm_up_hand", "palm", "up", "hand", "PALM", "UP", "HAND"],
+ emoji_key: "palm_up_hand",
+ },
+ {
+ keywords: [
+ "leftwards_pushing_hand",
+ "leftwards",
+ "pushing",
+ "hand",
+ "LEFTWARDS",
+ "PUSHING",
+ "HAND",
+ ],
+ emoji_key: "leftwards_pushing_hand",
+ },
+ {
+ keywords: [
+ "rightwards_pushing_hand",
+ "rightwards",
+ "pushing",
+ "hand",
+ "RIGHTWARDS",
+ "PUSHING",
+ "HAND",
+ ],
+ emoji_key: "rightwards_pushing_hand",
+ },
+ {
+ keywords: [
+ "ok_hand",
+ "ok",
+ "hand",
+ "OK",
+ "HAND",
+ "SIGNfingers",
+ "limbs",
+ "perfect",
+ "ok",
+ "okay",
+ ],
+ emoji_key: "ok_hand",
+ },
+ {
+ keywords: ["pinched_fingers", "pinched", "fingers", "PINCHED", "FINGERS"],
+ emoji_key: "pinched_fingers",
+ },
+ {
+ keywords: ["pinching_hand", "pinching", "hand", "PINCHING", "HAND"],
+ emoji_key: "pinching_hand",
+ },
+ {
+ keywords: [
+ "v",
+ "v",
+ "VICTORY",
+ "HANDfingers",
+ "ohyeah",
+ "hand",
+ "peace",
+ "victory",
+ "two",
+ ],
+ emoji_key: "v",
+ },
+ {
+ keywords: [
+ "crossed_fingers",
+ "crossed",
+ "fingers",
+ "HAND",
+ "WITH",
+ "INDEX",
+ "AND",
+ "MIDDLE",
+ "FINGERS",
+ "CROSSEDgood",
+ "lucky",
+ ],
+ emoji_key: "crossed_fingers",
+ },
+ {
+ keywords: [
+ "hand_with_index_finger_and_thumb_crossed",
+ "hand",
+ "with",
+ "index",
+ "finger",
+ "and",
+ "thumb",
+ "crossed",
+ "HAND",
+ "WITH",
+ "INDEX",
+ "FINGER",
+ "AND",
+ "THUMB",
+ "CROSSED",
+ ],
+ emoji_key: "hand_with_index_finger_and_thumb_crossed",
+ },
+ {
+ keywords: [
+ "i_love_you_hand_sign",
+ "i",
+ "love",
+ "you",
+ "hand",
+ "sign",
+ "I",
+ "LOVE",
+ "YOU",
+ "HAND",
+ "SIGN",
+ ],
+ emoji_key: "i_love_you_hand_sign",
+ },
+ {
+ keywords: ["the_horns", "the", "horns", "SIGN", "OF", "THE", "HORNS"],
+ emoji_key: "the_horns",
+ },
+ {
+ keywords: [
+ "call_me_hand",
+ "call",
+ "me",
+ "hand",
+ "CALL",
+ "ME",
+ "HANDhands",
+ "gesture",
+ ],
+ emoji_key: "call_me_hand",
+ },
+ {
+ keywords: [
+ "point_left",
+ "point",
+ "left",
+ "WHITE",
+ "LEFT",
+ "POINTING",
+ "BACKHAND",
+ "INDEXdirection",
+ "fingers",
+ "hand",
+ "left",
+ ],
+ emoji_key: "point_left",
+ },
+ {
+ keywords: [
+ "point_right",
+ "point",
+ "right",
+ "WHITE",
+ "RIGHT",
+ "POINTING",
+ "BACKHAND",
+ "INDEXfingers",
+ "hand",
+ "direction",
+ "right",
+ ],
+ emoji_key: "point_right",
+ },
+ {
+ keywords: [
+ "point_up_2",
+ "point",
+ "up",
+ "2",
+ "WHITE",
+ "UP",
+ "POINTING",
+ "BACKHAND",
+ "INDEXfingers",
+ "hand",
+ "direction",
+ "up",
+ ],
+ emoji_key: "point_up_2",
+ },
+ {
+ keywords: [
+ "middle_finger",
+ "middle",
+ "finger",
+ "REVERSED",
+ "HAND",
+ "WITH",
+ "MIDDLE",
+ "FINGER",
+ "EXTENDED",
+ ],
+ emoji_key: "middle_finger",
+ },
+ {
+ keywords: [
+ "point_down",
+ "point",
+ "down",
+ "WHITE",
+ "DOWN",
+ "POINTING",
+ "BACKHAND",
+ "INDEXfingers",
+ "hand",
+ "direction",
+ "down",
+ ],
+ emoji_key: "point_down",
+ },
+ {
+ keywords: [
+ "point_up",
+ "point",
+ "up",
+ "WHITE",
+ "UP",
+ "POINTING",
+ "INDEXhand",
+ "fingers",
+ "direction",
+ "up",
+ ],
+ emoji_key: "point_up",
+ },
+ {
+ keywords: [
+ "index_pointing_at_the_viewer",
+ "index",
+ "pointing",
+ "at",
+ "the",
+ "viewer",
+ "INDEX",
+ "POINTING",
+ "AT",
+ "THE",
+ "VIEWER",
+ ],
+ emoji_key: "index_pointing_at_the_viewer",
+ },
+ {
+ keywords: [
+ "+1",
+ "+1",
+ "THUMBS",
+ "UP",
+ "SIGNthumbsup",
+ "yes",
+ "awesome",
+ "good",
+ "agree",
+ "accept",
+ "cool",
+ "hand",
+ "like",
+ ],
+ emoji_key: "+1",
+ },
+ {
+ keywords: [
+ "-1",
+ "-1",
+ "THUMBS",
+ "DOWN",
+ "SIGNthumbsdown",
+ "no",
+ "dislike",
+ "hand",
+ ],
+ emoji_key: "-1",
+ },
+ {
+ keywords: ["fist", "fist", "RAISED", "FISTfingers", "hand", "grasp"],
+ emoji_key: "fist",
+ },
+ {
+ keywords: [
+ "facepunch",
+ "facepunch",
+ "FISTED",
+ "HAND",
+ "SIGNangry",
+ "violence",
+ "fist",
+ "hit",
+ "attack",
+ "hand",
+ ],
+ emoji_key: "facepunch",
+ },
+ {
+ keywords: [
+ "left-facing_fist",
+ "left-facing",
+ "fist",
+ "LEFT-FACING",
+ "FIST",
+ ],
+ emoji_key: "left-facing_fist",
+ },
+ {
+ keywords: [
+ "right-facing_fist",
+ "right-facing",
+ "fist",
+ "RIGHT-FACING",
+ "FIST",
+ ],
+ emoji_key: "right-facing_fist",
+ },
+ {
+ keywords: [
+ "clap",
+ "clap",
+ "CLAPPING",
+ "HANDS",
+ "SIGNhands",
+ "praise",
+ "applause",
+ "congrats",
+ "yay",
+ ],
+ emoji_key: "clap",
+ },
+ {
+ keywords: [
+ "raised_hands",
+ "raised",
+ "hands",
+ "PERSON",
+ "RAISING",
+ "BOTH",
+ "HANDS",
+ "IN",
+ "CELEBRATIONgesture",
+ "hooray",
+ "yea",
+ "celebration",
+ "hands",
+ ],
+ emoji_key: "raised_hands",
+ },
+ {
+ keywords: ["heart_hands", "heart", "hands", "HEART", "HANDS"],
+ emoji_key: "heart_hands",
+ },
+ {
+ keywords: [
+ "open_hands",
+ "open",
+ "hands",
+ "OPEN",
+ "HANDS",
+ "SIGNfingers",
+ "butterfly",
+ "hands",
+ "open",
+ ],
+ emoji_key: "open_hands",
+ },
+ {
+ keywords: [
+ "palms_up_together",
+ "palms",
+ "up",
+ "together",
+ "PALMS",
+ "UP",
+ "TOGETHER",
+ ],
+ emoji_key: "palms_up_together",
+ },
+ {
+ keywords: ["handshake", "handshake", "HANDSHAKEagreement", "shake"],
+ emoji_key: "handshake",
+ },
+ {
+ keywords: [
+ "pray",
+ "pray",
+ "PERSON",
+ "WITH",
+ "FOLDED",
+ "HANDSplease",
+ "hope",
+ "wish",
+ "namaste",
+ "highfive",
+ ],
+ emoji_key: "pray",
+ },
+ {
+ keywords: [
+ "writing_hand",
+ "writing",
+ "hand",
+ "WRITING",
+ "HANDlower",
+ "left",
+ "ballpoint",
+ "pen",
+ "stationery",
+ "write",
+ "compose",
+ ],
+ emoji_key: "writing_hand",
+ },
+ {
+ keywords: [
+ "nail_care",
+ "nail",
+ "care",
+ "NAIL",
+ "POLISHbeauty",
+ "manicure",
+ "finger",
+ "fashion",
+ "nail",
+ ],
+ emoji_key: "nail_care",
+ },
+ {
+ keywords: ["selfie", "selfie", "SELFIEcamera", "phone"],
+ emoji_key: "selfie",
+ },
+ {
+ keywords: [
+ "muscle",
+ "muscle",
+ "FLEXED",
+ "BICEPSarm",
+ "flex",
+ "hand",
+ "summer",
+ "strong",
+ "biceps",
+ ],
+ emoji_key: "muscle",
+ },
+ {
+ keywords: ["mechanical_arm", "mechanical", "arm", "MECHANICAL", "ARM"],
+ emoji_key: "mechanical_arm",
+ },
+ {
+ keywords: ["mechanical_leg", "mechanical", "leg", "MECHANICAL", "LEG"],
+ emoji_key: "mechanical_leg",
+ },
+ { keywords: ["leg", "leg", "LEG"], emoji_key: "leg" },
+ { keywords: ["foot", "foot", "FOOT"], emoji_key: "foot" },
+ {
+ keywords: ["ear", "ear", "EARface", "hear", "sound", "listen"],
+ emoji_key: "ear",
+ },
+ {
+ keywords: [
+ "ear_with_hearing_aid",
+ "ear",
+ "with",
+ "hearing",
+ "aid",
+ "EAR",
+ "WITH",
+ "HEARING",
+ "AID",
+ ],
+ emoji_key: "ear_with_hearing_aid",
+ },
+ { keywords: ["nose", "nose", "NOSEsmell", "sniff"], emoji_key: "nose" },
+ {
+ keywords: ["brain", "brain", "BRAINsmart", "intelligent"],
+ emoji_key: "brain",
+ },
+ {
+ keywords: [
+ "anatomical_heart",
+ "anatomical",
+ "heart",
+ "ANATOMICAL",
+ "HEART",
+ ],
+ emoji_key: "anatomical_heart",
+ },
+ { keywords: ["lungs", "lungs", "LUNGS"], emoji_key: "lungs" },
+ { keywords: ["tooth", "tooth", "TOOTH"], emoji_key: "tooth" },
+ { keywords: ["bone", "bone", "BONE"], emoji_key: "bone" },
+ {
+ keywords: ["eyes", "eyes", "EYESlook", "watch", "stalk", "peek", "see"],
+ emoji_key: "eyes",
+ },
+ {
+ keywords: ["eye", "eye", "EYEface", "look", "see", "watch", "stare"],
+ emoji_key: "eye",
+ },
+ {
+ keywords: ["tongue", "tongue", "TONGUEmouth", "playful"],
+ emoji_key: "tongue",
+ },
+ { keywords: ["lips", "lips", "MOUTHmouth", "kiss"], emoji_key: "lips" },
+ {
+ keywords: ["biting_lip", "biting", "lip", "BITING", "LIP"],
+ emoji_key: "biting_lip",
+ },
+ {
+ keywords: ["baby", "baby", "BABYchild", "boy", "girl", "toddler"],
+ emoji_key: "baby",
+ },
+ {
+ keywords: ["child", "child", "CHILDgender-neutral", "young"],
+ emoji_key: "child",
+ },
+ {
+ keywords: ["boy", "boy", "BOYman", "male", "guy", "teenager"],
+ emoji_key: "boy",
+ },
+ {
+ keywords: ["girl", "girl", "GIRLfemale", "woman", "teenager"],
+ emoji_key: "girl",
+ },
+ {
+ keywords: ["adult", "adult", "ADULTgender-neutral", "person"],
+ emoji_key: "adult",
+ },
+ {
+ keywords: [
+ "man",
+ "man",
+ "MANmustache",
+ "father",
+ "dad",
+ "guy",
+ "classy",
+ "sir",
+ "moustache",
+ ],
+ emoji_key: "man",
+ },
+ {
+ keywords: [
+ "bearded_person",
+ "bearded",
+ "person",
+ "BEARDED",
+ "PERSONperson",
+ "bewhiskered",
+ ],
+ emoji_key: "bearded_person",
+ },
+ {
+ keywords: ["man_with_beard", "man", "with", "beard", "MAN:", "BEARD"],
+ emoji_key: "man_with_beard",
+ },
+ {
+ keywords: [
+ "woman_with_beard",
+ "woman",
+ "with",
+ "beard",
+ "WOMAN:",
+ "BEARD",
+ ],
+ emoji_key: "woman_with_beard",
+ },
+ {
+ keywords: [
+ "red_haired_man",
+ "red",
+ "haired",
+ "man",
+ "MAN:",
+ "RED",
+ "HAIR",
+ ],
+ emoji_key: "red_haired_man",
+ },
+ {
+ keywords: [
+ "curly_haired_man",
+ "curly",
+ "haired",
+ "man",
+ "MAN:",
+ "CURLY",
+ "HAIR",
+ ],
+ emoji_key: "curly_haired_man",
+ },
+ {
+ keywords: [
+ "white_haired_man",
+ "white",
+ "haired",
+ "man",
+ "MAN:",
+ "WHITE",
+ "HAIR",
+ ],
+ emoji_key: "white_haired_man",
+ },
+ {
+ keywords: ["bald_man", "bald", "man", "MAN:", "BALD"],
+ emoji_key: "bald_man",
+ },
+ {
+ keywords: ["woman", "woman", "WOMANfemale", "girls", "lady"],
+ emoji_key: "woman",
+ },
+ {
+ keywords: [
+ "red_haired_woman",
+ "red",
+ "haired",
+ "woman",
+ "WOMAN:",
+ "RED",
+ "HAIR",
+ ],
+ emoji_key: "red_haired_woman",
+ },
+ {
+ keywords: [
+ "red_haired_person",
+ "red",
+ "haired",
+ "person",
+ "PERSON:",
+ "RED",
+ "HAIR",
+ ],
+ emoji_key: "red_haired_person",
+ },
+ {
+ keywords: [
+ "curly_haired_woman",
+ "curly",
+ "haired",
+ "woman",
+ "WOMAN:",
+ "CURLY",
+ "HAIR",
+ ],
+ emoji_key: "curly_haired_woman",
+ },
+ {
+ keywords: [
+ "curly_haired_person",
+ "curly",
+ "haired",
+ "person",
+ "PERSON:",
+ "CURLY",
+ "HAIR",
+ ],
+ emoji_key: "curly_haired_person",
+ },
+ {
+ keywords: [
+ "white_haired_woman",
+ "white",
+ "haired",
+ "woman",
+ "WOMAN:",
+ "WHITE",
+ "HAIR",
+ ],
+ emoji_key: "white_haired_woman",
+ },
+ {
+ keywords: [
+ "white_haired_person",
+ "white",
+ "haired",
+ "person",
+ "PERSON:",
+ "WHITE",
+ "HAIR",
+ ],
+ emoji_key: "white_haired_person",
+ },
+ {
+ keywords: ["bald_woman", "bald", "woman", "WOMAN:", "BALD"],
+ emoji_key: "bald_woman",
+ },
+ {
+ keywords: ["bald_person", "bald", "person", "PERSON:", "BALD"],
+ emoji_key: "bald_person",
+ },
+ {
+ keywords: [
+ "blond-haired-woman",
+ "blond-haired-woman",
+ "WOMAN:",
+ "BLOND",
+ "HAIR",
+ ],
+ emoji_key: "blond-haired-woman",
+ },
+ {
+ keywords: [
+ "blond-haired-man",
+ "blond-haired-man",
+ "MAN:",
+ "BLOND",
+ "HAIR",
+ ],
+ emoji_key: "blond-haired-man",
+ },
+ {
+ keywords: [
+ "older_adult",
+ "older",
+ "adult",
+ "OLDER",
+ "ADULThuman",
+ "elder",
+ "senior",
+ "gender-neutral",
+ ],
+ emoji_key: "older_adult",
+ },
+ {
+ keywords: [
+ "older_man",
+ "older",
+ "man",
+ "OLDER",
+ "MANhuman",
+ "male",
+ "men",
+ "old",
+ "elder",
+ "senior",
+ ],
+ emoji_key: "older_man",
+ },
+ {
+ keywords: [
+ "older_woman",
+ "older",
+ "woman",
+ "OLDER",
+ "WOMANhuman",
+ "female",
+ "women",
+ "lady",
+ "old",
+ "elder",
+ "senior",
+ ],
+ emoji_key: "older_woman",
+ },
+ {
+ keywords: ["man-frowning", "man-frowning", "MAN", "FROWNING"],
+ emoji_key: "man-frowning",
+ },
+ {
+ keywords: ["woman-frowning", "woman-frowning", "WOMAN", "FROWNING"],
+ emoji_key: "woman-frowning",
+ },
+ {
+ keywords: ["man-pouting", "man-pouting", "MAN", "POUTING"],
+ emoji_key: "man-pouting",
+ },
+ {
+ keywords: ["woman-pouting", "woman-pouting", "WOMAN", "POUTING"],
+ emoji_key: "woman-pouting",
+ },
+ {
+ keywords: [
+ "man-gesturing-no",
+ "man-gesturing-no",
+ "MAN",
+ "GESTURING",
+ "NO",
+ ],
+ emoji_key: "man-gesturing-no",
+ },
+ {
+ keywords: [
+ "woman-gesturing-no",
+ "woman-gesturing-no",
+ "WOMAN",
+ "GESTURING",
+ "NO",
+ ],
+ emoji_key: "woman-gesturing-no",
+ },
+ {
+ keywords: [
+ "man-gesturing-ok",
+ "man-gesturing-ok",
+ "MAN",
+ "GESTURING",
+ "OK",
+ ],
+ emoji_key: "man-gesturing-ok",
+ },
+ {
+ keywords: [
+ "woman-gesturing-ok",
+ "woman-gesturing-ok",
+ "WOMAN",
+ "GESTURING",
+ "OK",
+ ],
+ emoji_key: "woman-gesturing-ok",
+ },
+ {
+ keywords: [
+ "man-tipping-hand",
+ "man-tipping-hand",
+ "MAN",
+ "TIPPING",
+ "HAND",
+ ],
+ emoji_key: "man-tipping-hand",
+ },
+ {
+ keywords: [
+ "woman-tipping-hand",
+ "woman-tipping-hand",
+ "WOMAN",
+ "TIPPING",
+ "HAND",
+ ],
+ emoji_key: "woman-tipping-hand",
+ },
+ {
+ keywords: [
+ "man-raising-hand",
+ "man-raising-hand",
+ "MAN",
+ "RAISING",
+ "HAND",
+ ],
+ emoji_key: "man-raising-hand",
+ },
+ {
+ keywords: [
+ "woman-raising-hand",
+ "woman-raising-hand",
+ "WOMAN",
+ "RAISING",
+ "HAND",
+ ],
+ emoji_key: "woman-raising-hand",
+ },
+ {
+ keywords: ["deaf_person", "deaf", "person", "DEAF", "PERSON"],
+ emoji_key: "deaf_person",
+ },
+ {
+ keywords: ["deaf_man", "deaf", "man", "DEAF", "MAN"],
+ emoji_key: "deaf_man",
+ },
+ {
+ keywords: ["deaf_woman", "deaf", "woman", "DEAF", "WOMAN"],
+ emoji_key: "deaf_woman",
+ },
+ {
+ keywords: ["bow", "bow", "PERSON", "BOWING", "DEEPLY"],
+ emoji_key: "bow",
+ },
+ {
+ keywords: ["man-bowing", "man-bowing", "MAN", "BOWING"],
+ emoji_key: "man-bowing",
+ },
+ {
+ keywords: ["woman-bowing", "woman-bowing", "WOMAN", "BOWING"],
+ emoji_key: "woman-bowing",
+ },
+ {
+ keywords: ["man-facepalming", "man-facepalming", "MAN", "FACEPALMING"],
+ emoji_key: "man-facepalming",
+ },
+ {
+ keywords: [
+ "woman-facepalming",
+ "woman-facepalming",
+ "WOMAN",
+ "FACEPALMING",
+ ],
+ emoji_key: "woman-facepalming",
+ },
+ {
+ keywords: ["man-shrugging", "man-shrugging", "MAN", "SHRUGGING"],
+ emoji_key: "man-shrugging",
+ },
+ {
+ keywords: ["woman-shrugging", "woman-shrugging", "WOMAN", "SHRUGGING"],
+ emoji_key: "woman-shrugging",
+ },
+ {
+ keywords: ["health_worker", "health", "worker", "HEALTH", "WORKER"],
+ emoji_key: "health_worker",
+ },
+ {
+ keywords: ["male-doctor", "male-doctor", "MAN", "HEALTH", "WORKER"],
+ emoji_key: "male-doctor",
+ },
+ {
+ keywords: ["female-doctor", "female-doctor", "WOMAN", "HEALTH", "WORKER"],
+ emoji_key: "female-doctor",
+ },
+ { keywords: ["student", "student", "STUDENT"], emoji_key: "student" },
+ {
+ keywords: ["male-student", "male-student", "MAN", "STUDENT"],
+ emoji_key: "male-student",
+ },
+ {
+ keywords: ["female-student", "female-student", "WOMAN", "STUDENT"],
+ emoji_key: "female-student",
+ },
+ { keywords: ["teacher", "teacher", "TEACHER"], emoji_key: "teacher" },
+ {
+ keywords: ["male-teacher", "male-teacher", "MAN", "TEACHER"],
+ emoji_key: "male-teacher",
+ },
+ {
+ keywords: ["female-teacher", "female-teacher", "WOMAN", "TEACHER"],
+ emoji_key: "female-teacher",
+ },
+ { keywords: ["judge", "judge", "JUDGE"], emoji_key: "judge" },
+ {
+ keywords: ["male-judge", "male-judge", "MAN", "JUDGE"],
+ emoji_key: "male-judge",
+ },
+ {
+ keywords: ["female-judge", "female-judge", "WOMAN", "JUDGE"],
+ emoji_key: "female-judge",
+ },
+ { keywords: ["farmer", "farmer", "FARMER"], emoji_key: "farmer" },
+ {
+ keywords: ["male-farmer", "male-farmer", "MAN", "FARMER"],
+ emoji_key: "male-farmer",
+ },
+ {
+ keywords: ["female-farmer", "female-farmer", "WOMAN", "FARMER"],
+ emoji_key: "female-farmer",
+ },
+ { keywords: ["cook", "cook", "COOK"], emoji_key: "cook" },
+ {
+ keywords: ["male-cook", "male-cook", "MAN", "COOK"],
+ emoji_key: "male-cook",
+ },
+ {
+ keywords: ["female-cook", "female-cook", "WOMAN", "COOK"],
+ emoji_key: "female-cook",
+ },
+ { keywords: ["mechanic", "mechanic", "MECHANIC"], emoji_key: "mechanic" },
+ {
+ keywords: ["male-mechanic", "male-mechanic", "MAN", "MECHANIC"],
+ emoji_key: "male-mechanic",
+ },
+ {
+ keywords: ["female-mechanic", "female-mechanic", "WOMAN", "MECHANIC"],
+ emoji_key: "female-mechanic",
+ },
+ {
+ keywords: ["factory_worker", "factory", "worker", "FACTORY", "WORKER"],
+ emoji_key: "factory_worker",
+ },
+ {
+ keywords: [
+ "male-factory-worker",
+ "male-factory-worker",
+ "MAN",
+ "FACTORY",
+ "WORKER",
+ ],
+ emoji_key: "male-factory-worker",
+ },
+ {
+ keywords: [
+ "female-factory-worker",
+ "female-factory-worker",
+ "WOMAN",
+ "FACTORY",
+ "WORKER",
+ ],
+ emoji_key: "female-factory-worker",
+ },
+ {
+ keywords: ["office_worker", "office", "worker", "OFFICE", "WORKER"],
+ emoji_key: "office_worker",
+ },
+ {
+ keywords: [
+ "male-office-worker",
+ "male-office-worker",
+ "MAN",
+ "OFFICE",
+ "WORKER",
+ ],
+ emoji_key: "male-office-worker",
+ },
+ {
+ keywords: [
+ "female-office-worker",
+ "female-office-worker",
+ "WOMAN",
+ "OFFICE",
+ "WORKER",
+ ],
+ emoji_key: "female-office-worker",
+ },
+ {
+ keywords: ["scientist", "scientist", "SCIENTIST"],
+ emoji_key: "scientist",
+ },
+ {
+ keywords: ["male-scientist", "male-scientist", "MAN", "SCIENTIST"],
+ emoji_key: "male-scientist",
+ },
+ {
+ keywords: ["female-scientist", "female-scientist", "WOMAN", "SCIENTIST"],
+ emoji_key: "female-scientist",
+ },
+ {
+ keywords: ["technologist", "technologist", "TECHNOLOGIST"],
+ emoji_key: "technologist",
+ },
+ {
+ keywords: [
+ "male-technologist",
+ "male-technologist",
+ "MAN",
+ "TECHNOLOGIST",
+ ],
+ emoji_key: "male-technologist",
+ },
+ {
+ keywords: [
+ "female-technologist",
+ "female-technologist",
+ "WOMAN",
+ "TECHNOLOGIST",
+ ],
+ emoji_key: "female-technologist",
+ },
+ { keywords: ["singer", "singer", "SINGER"], emoji_key: "singer" },
+ {
+ keywords: ["male-singer", "male-singer", "MAN", "SINGER"],
+ emoji_key: "male-singer",
+ },
+ {
+ keywords: ["female-singer", "female-singer", "WOMAN", "SINGER"],
+ emoji_key: "female-singer",
+ },
+ { keywords: ["artist", "artist", "ARTIST"], emoji_key: "artist" },
+ {
+ keywords: ["male-artist", "male-artist", "MAN", "ARTIST"],
+ emoji_key: "male-artist",
+ },
+ {
+ keywords: ["female-artist", "female-artist", "WOMAN", "ARTIST"],
+ emoji_key: "female-artist",
+ },
+ { keywords: ["pilot", "pilot", "PILOT"], emoji_key: "pilot" },
+ {
+ keywords: ["male-pilot", "male-pilot", "MAN", "PILOT"],
+ emoji_key: "male-pilot",
+ },
+ {
+ keywords: ["female-pilot", "female-pilot", "WOMAN", "PILOT"],
+ emoji_key: "female-pilot",
+ },
+ {
+ keywords: ["astronaut", "astronaut", "ASTRONAUT"],
+ emoji_key: "astronaut",
+ },
+ {
+ keywords: ["male-astronaut", "male-astronaut", "MAN", "ASTRONAUT"],
+ emoji_key: "male-astronaut",
+ },
+ {
+ keywords: ["female-astronaut", "female-astronaut", "WOMAN", "ASTRONAUT"],
+ emoji_key: "female-astronaut",
+ },
+ {
+ keywords: ["firefighter", "firefighter", "FIREFIGHTER"],
+ emoji_key: "firefighter",
+ },
+ {
+ keywords: ["male-firefighter", "male-firefighter", "MAN", "FIREFIGHTER"],
+ emoji_key: "male-firefighter",
+ },
+ {
+ keywords: [
+ "female-firefighter",
+ "female-firefighter",
+ "WOMAN",
+ "FIREFIGHTER",
+ ],
+ emoji_key: "female-firefighter",
+ },
+ {
+ keywords: [
+ "male-police-officer",
+ "male-police-officer",
+ "MAN",
+ "POLICE",
+ "OFFICER",
+ ],
+ emoji_key: "male-police-officer",
+ },
+ {
+ keywords: [
+ "female-police-officer",
+ "female-police-officer",
+ "WOMAN",
+ "POLICE",
+ "OFFICER",
+ ],
+ emoji_key: "female-police-officer",
+ },
+ {
+ keywords: ["male-detective", "male-detective", "MAN", "DETECTIVE"],
+ emoji_key: "male-detective",
+ },
+ {
+ keywords: ["female-detective", "female-detective", "WOMAN", "DETECTIVE"],
+ emoji_key: "female-detective",
+ },
+ {
+ keywords: ["male-guard", "male-guard", "MAN", "GUARD"],
+ emoji_key: "male-guard",
+ },
+ {
+ keywords: ["female-guard", "female-guard", "WOMAN", "GUARD"],
+ emoji_key: "female-guard",
+ },
+ { keywords: ["ninja", "ninja", "NINJA"], emoji_key: "ninja" },
+ {
+ keywords: [
+ "male-construction-worker",
+ "male-construction-worker",
+ "MAN",
+ "CONSTRUCTION",
+ "WORKER",
+ ],
+ emoji_key: "male-construction-worker",
+ },
+ {
+ keywords: [
+ "female-construction-worker",
+ "female-construction-worker",
+ "WOMAN",
+ "CONSTRUCTION",
+ "WORKER",
+ ],
+ emoji_key: "female-construction-worker",
+ },
+ {
+ keywords: [
+ "person_with_crown",
+ "person",
+ "with",
+ "crown",
+ "PERSON",
+ "WITH",
+ "CROWN",
+ ],
+ emoji_key: "person_with_crown",
+ },
+ {
+ keywords: [
+ "prince",
+ "prince",
+ "PRINCEboy",
+ "man",
+ "male",
+ "crown",
+ "royal",
+ "king",
+ ],
+ emoji_key: "prince",
+ },
+ {
+ keywords: [
+ "princess",
+ "princess",
+ "PRINCESSgirl",
+ "woman",
+ "female",
+ "blond",
+ "crown",
+ "royal",
+ "queen",
+ ],
+ emoji_key: "princess",
+ },
+ {
+ keywords: [
+ "man-wearing-turban",
+ "man-wearing-turban",
+ "MAN",
+ "WEARING",
+ "TURBAN",
+ ],
+ emoji_key: "man-wearing-turban",
+ },
+ {
+ keywords: [
+ "woman-wearing-turban",
+ "woman-wearing-turban",
+ "WOMAN",
+ "WEARING",
+ "TURBAN",
+ ],
+ emoji_key: "woman-wearing-turban",
+ },
+ {
+ keywords: [
+ "man_with_gua_pi_mao",
+ "man",
+ "with",
+ "gua",
+ "pi",
+ "mao",
+ "MAN",
+ "WITH",
+ "GUA",
+ "PI",
+ "MAOmale",
+ "boy",
+ "chinese",
+ ],
+ emoji_key: "man_with_gua_pi_mao",
+ },
+ {
+ keywords: [
+ "person_with_headscarf",
+ "person",
+ "with",
+ "headscarf",
+ "PERSON",
+ "WITH",
+ "HEADSCARF",
+ ],
+ emoji_key: "person_with_headscarf",
+ },
+ {
+ keywords: [
+ "person_in_tuxedo",
+ "person",
+ "in",
+ "tuxedo",
+ "MAN",
+ "IN",
+ "TUXEDO",
+ ],
+ emoji_key: "person_in_tuxedo",
+ },
+ {
+ keywords: [
+ "man_in_tuxedo",
+ "man",
+ "in",
+ "tuxedo",
+ "MAN",
+ "IN",
+ "TUXEDOcouple",
+ "marriage",
+ "wedding",
+ "groom",
+ ],
+ emoji_key: "man_in_tuxedo",
+ },
+ {
+ keywords: [
+ "woman_in_tuxedo",
+ "woman",
+ "in",
+ "tuxedo",
+ "WOMAN",
+ "IN",
+ "TUXEDO",
+ ],
+ emoji_key: "woman_in_tuxedo",
+ },
+ {
+ keywords: [
+ "bride_with_veil",
+ "bride",
+ "with",
+ "veil",
+ "BRIDE",
+ "WITH",
+ "VEILcouple",
+ "marriage",
+ "wedding",
+ "woman",
+ "bride",
+ ],
+ emoji_key: "bride_with_veil",
+ },
+ {
+ keywords: ["man_with_veil", "man", "with", "veil", "MAN", "WITH", "VEIL"],
+ emoji_key: "man_with_veil",
+ },
+ {
+ keywords: [
+ "woman_with_veil",
+ "woman",
+ "with",
+ "veil",
+ "WOMAN",
+ "WITH",
+ "VEIL",
+ ],
+ emoji_key: "woman_with_veil",
+ },
+ {
+ keywords: [
+ "pregnant_woman",
+ "pregnant",
+ "woman",
+ "PREGNANT",
+ "WOMANbaby",
+ ],
+ emoji_key: "pregnant_woman",
+ },
+ {
+ keywords: ["pregnant_man", "pregnant", "man", "PREGNANT", "MAN"],
+ emoji_key: "pregnant_man",
+ },
+ {
+ keywords: ["pregnant_person", "pregnant", "person", "PREGNANT", "PERSON"],
+ emoji_key: "pregnant_person",
+ },
+ {
+ keywords: ["breast-feeding", "breast-feeding", "BREAST-FEEDING"],
+ emoji_key: "breast-feeding",
+ },
+ {
+ keywords: [
+ "woman_feeding_baby",
+ "woman",
+ "feeding",
+ "baby",
+ "WOMAN",
+ "FEEDING",
+ "BABY",
+ ],
+ emoji_key: "woman_feeding_baby",
+ },
+ {
+ keywords: [
+ "man_feeding_baby",
+ "man",
+ "feeding",
+ "baby",
+ "MAN",
+ "FEEDING",
+ "BABY",
+ ],
+ emoji_key: "man_feeding_baby",
+ },
+ {
+ keywords: [
+ "person_feeding_baby",
+ "person",
+ "feeding",
+ "baby",
+ "PERSON",
+ "FEEDING",
+ "BABY",
+ ],
+ emoji_key: "person_feeding_baby",
+ },
+ {
+ keywords: ["angel", "angel", "BABY", "ANGELheaven", "wings", "halo"],
+ emoji_key: "angel",
+ },
+ {
+ keywords: [
+ "santa",
+ "santa",
+ "FATHER",
+ "CHRISTMASfestival",
+ "man",
+ "male",
+ "xmas",
+ "father",
+ "christmas",
+ ],
+ emoji_key: "santa",
+ },
+ {
+ keywords: [
+ "mrs_claus",
+ "mrs",
+ "claus",
+ "MOTHER",
+ "CHRISTMASwoman",
+ "female",
+ "xmas",
+ "mother",
+ "christmas",
+ ],
+ emoji_key: "mrs_claus",
+ },
+ {
+ keywords: ["mx_claus", "mx", "claus", "MX", "CLAUS"],
+ emoji_key: "mx_claus",
+ },
+ {
+ keywords: ["superhero", "superhero", "SUPERHERO"],
+ emoji_key: "superhero",
+ },
+ {
+ keywords: ["male_superhero", "male", "superhero", "MAN", "SUPERHERO"],
+ emoji_key: "male_superhero",
+ },
+ {
+ keywords: [
+ "female_superhero",
+ "female",
+ "superhero",
+ "WOMAN",
+ "SUPERHERO",
+ ],
+ emoji_key: "female_superhero",
+ },
+ {
+ keywords: ["supervillain", "supervillain", "SUPERVILLAIN"],
+ emoji_key: "supervillain",
+ },
+ {
+ keywords: [
+ "male_supervillain",
+ "male",
+ "supervillain",
+ "MAN",
+ "SUPERVILLAIN",
+ ],
+ emoji_key: "male_supervillain",
+ },
+ {
+ keywords: [
+ "female_supervillain",
+ "female",
+ "supervillain",
+ "WOMAN",
+ "SUPERVILLAIN",
+ ],
+ emoji_key: "female_supervillain",
+ },
+ {
+ keywords: ["male_mage", "male", "mage", "MAN", "MAGE"],
+ emoji_key: "male_mage",
+ },
+ {
+ keywords: ["female_mage", "female", "mage", "WOMAN", "MAGE"],
+ emoji_key: "female_mage",
+ },
+ {
+ keywords: ["male_fairy", "male", "fairy", "MAN", "FAIRY"],
+ emoji_key: "male_fairy",
+ },
+ {
+ keywords: ["female_fairy", "female", "fairy", "WOMAN", "FAIRY"],
+ emoji_key: "female_fairy",
+ },
+ {
+ keywords: ["male_vampire", "male", "vampire", "MAN", "VAMPIRE"],
+ emoji_key: "male_vampire",
+ },
+ {
+ keywords: ["female_vampire", "female", "vampire", "WOMAN", "VAMPIRE"],
+ emoji_key: "female_vampire",
+ },
+ {
+ keywords: ["merman", "merman", "MERMANman", "male", "triton"],
+ emoji_key: "merman",
+ },
+ {
+ keywords: [
+ "mermaid",
+ "mermaid",
+ "MERMAIDwoman",
+ "female",
+ "merwoman",
+ "ariel",
+ ],
+ emoji_key: "mermaid",
+ },
+ {
+ keywords: ["male_elf", "male", "elf", "MAN", "ELF"],
+ emoji_key: "male_elf",
+ },
+ {
+ keywords: ["female_elf", "female", "elf", "WOMAN", "ELF"],
+ emoji_key: "female_elf",
+ },
+ {
+ keywords: ["male_genie", "male", "genie", "MAN", "GENIE"],
+ emoji_key: "male_genie",
+ },
+ {
+ keywords: ["female_genie", "female", "genie", "WOMAN", "GENIE"],
+ emoji_key: "female_genie",
+ },
+ {
+ keywords: ["male_zombie", "male", "zombie", "MAN", "ZOMBIE"],
+ emoji_key: "male_zombie",
+ },
+ {
+ keywords: ["female_zombie", "female", "zombie", "WOMAN", "ZOMBIE"],
+ emoji_key: "female_zombie",
+ },
+ { keywords: ["troll", "troll", "TROLL"], emoji_key: "troll" },
+ {
+ keywords: [
+ "man-getting-massage",
+ "man-getting-massage",
+ "MAN",
+ "GETTING",
+ "MASSAGE",
+ ],
+ emoji_key: "man-getting-massage",
+ },
+ {
+ keywords: [
+ "woman-getting-massage",
+ "woman-getting-massage",
+ "WOMAN",
+ "GETTING",
+ "MASSAGE",
+ ],
+ emoji_key: "woman-getting-massage",
+ },
+ {
+ keywords: [
+ "man-getting-haircut",
+ "man-getting-haircut",
+ "MAN",
+ "GETTING",
+ "HAIRCUT",
+ ],
+ emoji_key: "man-getting-haircut",
+ },
+ {
+ keywords: [
+ "woman-getting-haircut",
+ "woman-getting-haircut",
+ "WOMAN",
+ "GETTING",
+ "HAIRCUT",
+ ],
+ emoji_key: "woman-getting-haircut",
+ },
+ {
+ keywords: ["man-walking", "man-walking", "MAN", "WALKING"],
+ emoji_key: "man-walking",
+ },
+ {
+ keywords: ["woman-walking", "woman-walking", "WOMAN", "WALKING"],
+ emoji_key: "woman-walking",
+ },
+ {
+ keywords: ["standing_person", "standing", "person", "STANDING", "PERSON"],
+ emoji_key: "standing_person",
+ },
+ {
+ keywords: ["man_standing", "man", "standing", "MAN", "STANDING"],
+ emoji_key: "man_standing",
+ },
+ {
+ keywords: ["woman_standing", "woman", "standing", "WOMAN", "STANDING"],
+ emoji_key: "woman_standing",
+ },
+ {
+ keywords: ["kneeling_person", "kneeling", "person", "KNEELING", "PERSON"],
+ emoji_key: "kneeling_person",
+ },
+ {
+ keywords: ["man_kneeling", "man", "kneeling", "MAN", "KNEELING"],
+ emoji_key: "man_kneeling",
+ },
+ {
+ keywords: ["woman_kneeling", "woman", "kneeling", "WOMAN", "KNEELING"],
+ emoji_key: "woman_kneeling",
+ },
+ {
+ keywords: [
+ "person_with_probing_cane",
+ "person",
+ "with",
+ "probing",
+ "cane",
+ "PERSON",
+ "WITH",
+ "WHITE",
+ "CANE",
+ ],
+ emoji_key: "person_with_probing_cane",
+ },
+ {
+ keywords: [
+ "man_with_probing_cane",
+ "man",
+ "with",
+ "probing",
+ "cane",
+ "MAN",
+ "WITH",
+ "WHITE",
+ "CANE",
+ ],
+ emoji_key: "man_with_probing_cane",
+ },
+ {
+ keywords: [
+ "woman_with_probing_cane",
+ "woman",
+ "with",
+ "probing",
+ "cane",
+ "WOMAN",
+ "WITH",
+ "WHITE",
+ "CANE",
+ ],
+ emoji_key: "woman_with_probing_cane",
+ },
+ {
+ keywords: [
+ "person_in_motorized_wheelchair",
+ "person",
+ "in",
+ "motorized",
+ "wheelchair",
+ "PERSON",
+ "IN",
+ "MOTORIZED",
+ "WHEELCHAIR",
+ ],
+ emoji_key: "person_in_motorized_wheelchair",
+ },
+ {
+ keywords: [
+ "man_in_motorized_wheelchair",
+ "man",
+ "in",
+ "motorized",
+ "wheelchair",
+ "MAN",
+ "IN",
+ "MOTORIZED",
+ "WHEELCHAIR",
+ ],
+ emoji_key: "man_in_motorized_wheelchair",
+ },
+ {
+ keywords: [
+ "woman_in_motorized_wheelchair",
+ "woman",
+ "in",
+ "motorized",
+ "wheelchair",
+ "WOMAN",
+ "IN",
+ "MOTORIZED",
+ "WHEELCHAIR",
+ ],
+ emoji_key: "woman_in_motorized_wheelchair",
+ },
+ {
+ keywords: [
+ "person_in_manual_wheelchair",
+ "person",
+ "in",
+ "manual",
+ "wheelchair",
+ "PERSON",
+ "IN",
+ "MANUAL",
+ "WHEELCHAIR",
+ ],
+ emoji_key: "person_in_manual_wheelchair",
+ },
+ {
+ keywords: [
+ "man_in_manual_wheelchair",
+ "man",
+ "in",
+ "manual",
+ "wheelchair",
+ "MAN",
+ "IN",
+ "MANUAL",
+ "WHEELCHAIR",
+ ],
+ emoji_key: "man_in_manual_wheelchair",
+ },
+ {
+ keywords: [
+ "woman_in_manual_wheelchair",
+ "woman",
+ "in",
+ "manual",
+ "wheelchair",
+ "WOMAN",
+ "IN",
+ "MANUAL",
+ "WHEELCHAIR",
+ ],
+ emoji_key: "woman_in_manual_wheelchair",
+ },
+ {
+ keywords: ["man-running", "man-running", "MAN", "RUNNING"],
+ emoji_key: "man-running",
+ },
+ {
+ keywords: ["woman-running", "woman-running", "WOMAN", "RUNNING"],
+ emoji_key: "woman-running",
+ },
+ {
+ keywords: ["dancer", "dancer", "DANCERfemale", "girl", "woman", "fun"],
+ emoji_key: "dancer",
+ },
+ {
+ keywords: [
+ "man_dancing",
+ "man",
+ "dancing",
+ "MAN",
+ "DANCINGmale",
+ "boy",
+ "fun",
+ "dancer",
+ ],
+ emoji_key: "man_dancing",
+ },
+ {
+ keywords: [
+ "man_in_business_suit_levitating",
+ "man",
+ "in",
+ "business",
+ "suit",
+ "levitating",
+ "PERSON",
+ "IN",
+ "SUIT",
+ "LEVITATING",
+ ],
+ emoji_key: "man_in_business_suit_levitating",
+ },
+ {
+ keywords: [
+ "men-with-bunny-ears-partying",
+ "men-with-bunny-ears-partying",
+ "MEN",
+ "WITH",
+ "BUNNY",
+ "EARS",
+ ],
+ emoji_key: "men-with-bunny-ears-partying",
+ },
+ {
+ keywords: [
+ "women-with-bunny-ears-partying",
+ "women-with-bunny-ears-partying",
+ "WOMEN",
+ "WITH",
+ "BUNNY",
+ "EARS",
+ ],
+ emoji_key: "women-with-bunny-ears-partying",
+ },
+ {
+ keywords: [
+ "man_in_steamy_room",
+ "man",
+ "in",
+ "steamy",
+ "room",
+ "MAN",
+ "IN",
+ "STEAMY",
+ "ROOMmale",
+ "man",
+ "spa",
+ "steamroom",
+ "sauna",
+ ],
+ emoji_key: "man_in_steamy_room",
+ },
+ {
+ keywords: [
+ "woman_in_steamy_room",
+ "woman",
+ "in",
+ "steamy",
+ "room",
+ "WOMAN",
+ "IN",
+ "STEAMY",
+ "ROOMfemale",
+ "woman",
+ "spa",
+ "steamroom",
+ "sauna",
+ ],
+ emoji_key: "woman_in_steamy_room",
+ },
+ {
+ keywords: ["man_climbing", "man", "climbing", "MAN", "CLIMBING"],
+ emoji_key: "man_climbing",
+ },
+ {
+ keywords: ["woman_climbing", "woman", "climbing", "WOMAN", "CLIMBING"],
+ emoji_key: "woman_climbing",
+ },
+ { keywords: ["fencer", "fencer", "FENCER"], emoji_key: "fencer" },
+ {
+ keywords: [
+ "horse_racing",
+ "horse",
+ "racing",
+ "HORSE",
+ "RACINGanimal",
+ "betting",
+ "competition",
+ "gambling",
+ "luck",
+ ],
+ emoji_key: "horse_racing",
+ },
+ {
+ keywords: ["skier", "skier", "SKIERsports", "winter", "snow"],
+ emoji_key: "skier",
+ },
+ {
+ keywords: ["snowboarder", "snowboarder", "SNOWBOARDERsports", "winter"],
+ emoji_key: "snowboarder",
+ },
+ {
+ keywords: ["man-golfing", "man-golfing", "MAN", "GOLFING"],
+ emoji_key: "man-golfing",
+ },
+ {
+ keywords: ["woman-golfing", "woman-golfing", "WOMAN", "GOLFING"],
+ emoji_key: "woman-golfing",
+ },
+ {
+ keywords: ["man-surfing", "man-surfing", "MAN", "SURFING"],
+ emoji_key: "man-surfing",
+ },
+ {
+ keywords: ["woman-surfing", "woman-surfing", "WOMAN", "SURFING"],
+ emoji_key: "woman-surfing",
+ },
+ {
+ keywords: ["man-rowing-boat", "man-rowing-boat", "MAN", "ROWING", "BOAT"],
+ emoji_key: "man-rowing-boat",
+ },
+ {
+ keywords: [
+ "woman-rowing-boat",
+ "woman-rowing-boat",
+ "WOMAN",
+ "ROWING",
+ "BOAT",
+ ],
+ emoji_key: "woman-rowing-boat",
+ },
+ {
+ keywords: ["man-swimming", "man-swimming", "MAN", "SWIMMING"],
+ emoji_key: "man-swimming",
+ },
+ {
+ keywords: ["woman-swimming", "woman-swimming", "WOMAN", "SWIMMING"],
+ emoji_key: "woman-swimming",
+ },
+ {
+ keywords: [
+ "man-bouncing-ball",
+ "man-bouncing-ball",
+ "MAN",
+ "BOUNCING",
+ "BALL",
+ ],
+ emoji_key: "man-bouncing-ball",
+ },
+ {
+ keywords: [
+ "woman-bouncing-ball",
+ "woman-bouncing-ball",
+ "WOMAN",
+ "BOUNCING",
+ "BALL",
+ ],
+ emoji_key: "woman-bouncing-ball",
+ },
+ {
+ keywords: [
+ "man-lifting-weights",
+ "man-lifting-weights",
+ "MAN",
+ "LIFTING",
+ "WEIGHTS",
+ ],
+ emoji_key: "man-lifting-weights",
+ },
+ {
+ keywords: [
+ "woman-lifting-weights",
+ "woman-lifting-weights",
+ "WOMAN",
+ "LIFTING",
+ "WEIGHTS",
+ ],
+ emoji_key: "woman-lifting-weights",
+ },
+ {
+ keywords: ["man-biking", "man-biking", "MAN", "BIKING"],
+ emoji_key: "man-biking",
+ },
+ {
+ keywords: ["woman-biking", "woman-biking", "WOMAN", "BIKING"],
+ emoji_key: "woman-biking",
+ },
+ {
+ keywords: [
+ "man-mountain-biking",
+ "man-mountain-biking",
+ "MAN",
+ "MOUNTAIN",
+ "BIKING",
+ ],
+ emoji_key: "man-mountain-biking",
+ },
+ {
+ keywords: [
+ "woman-mountain-biking",
+ "woman-mountain-biking",
+ "WOMAN",
+ "MOUNTAIN",
+ "BIKING",
+ ],
+ emoji_key: "woman-mountain-biking",
+ },
+ {
+ keywords: ["man-cartwheeling", "man-cartwheeling", "MAN", "CARTWHEELING"],
+ emoji_key: "man-cartwheeling",
+ },
+ {
+ keywords: [
+ "woman-cartwheeling",
+ "woman-cartwheeling",
+ "WOMAN",
+ "CARTWHEELING",
+ ],
+ emoji_key: "woman-cartwheeling",
+ },
+ {
+ keywords: ["man-wrestling", "man-wrestling", "MEN", "WRESTLING"],
+ emoji_key: "man-wrestling",
+ },
+ {
+ keywords: ["woman-wrestling", "woman-wrestling", "WOMEN", "WRESTLING"],
+ emoji_key: "woman-wrestling",
+ },
+ {
+ keywords: [
+ "man-playing-water-polo",
+ "man-playing-water-polo",
+ "MAN",
+ "PLAYING",
+ "WATER",
+ "POLO",
+ ],
+ emoji_key: "man-playing-water-polo",
+ },
+ {
+ keywords: [
+ "woman-playing-water-polo",
+ "woman-playing-water-polo",
+ "WOMAN",
+ "PLAYING",
+ "WATER",
+ "POLO",
+ ],
+ emoji_key: "woman-playing-water-polo",
+ },
+ {
+ keywords: [
+ "man-playing-handball",
+ "man-playing-handball",
+ "MAN",
+ "PLAYING",
+ "HANDBALL",
+ ],
+ emoji_key: "man-playing-handball",
+ },
+ {
+ keywords: [
+ "woman-playing-handball",
+ "woman-playing-handball",
+ "WOMAN",
+ "PLAYING",
+ "HANDBALL",
+ ],
+ emoji_key: "woman-playing-handball",
+ },
+ {
+ keywords: ["man-juggling", "man-juggling", "MAN", "JUGGLING"],
+ emoji_key: "man-juggling",
+ },
+ {
+ keywords: ["woman-juggling", "woman-juggling", "WOMAN", "JUGGLING"],
+ emoji_key: "woman-juggling",
+ },
+ {
+ keywords: [
+ "man_in_lotus_position",
+ "man",
+ "in",
+ "lotus",
+ "position",
+ "MAN",
+ "IN",
+ "LOTUS",
+ "POSITIONman",
+ "male",
+ "meditation",
+ "yoga",
+ "serenity",
+ "zen",
+ "mindfulness",
+ ],
+ emoji_key: "man_in_lotus_position",
+ },
+ {
+ keywords: [
+ "woman_in_lotus_position",
+ "woman",
+ "in",
+ "lotus",
+ "position",
+ "WOMAN",
+ "IN",
+ "LOTUS",
+ "POSITIONwoman",
+ "female",
+ "meditation",
+ "yoga",
+ "serenity",
+ "zen",
+ "mindfulness",
+ ],
+ emoji_key: "woman_in_lotus_position",
+ },
+ {
+ keywords: ["bath", "bath", "BATHclean", "shower", "bathroom"],
+ emoji_key: "bath",
+ },
+ {
+ keywords: [
+ "sleeping_accommodation",
+ "sleeping",
+ "accommodation",
+ "SLEEPING",
+ "ACCOMMODATION",
+ ],
+ emoji_key: "sleeping_accommodation",
+ },
+ {
+ keywords: [
+ "people_holding_hands",
+ "people",
+ "holding",
+ "hands",
+ "PEOPLE",
+ "HOLDING",
+ "HANDS",
+ ],
+ emoji_key: "people_holding_hands",
+ },
+ {
+ keywords: [
+ "two_women_holding_hands",
+ "two",
+ "women",
+ "holding",
+ "hands",
+ "TWO",
+ "WOMEN",
+ "HOLDING",
+ "HANDSpair",
+ "friendship",
+ "couple",
+ "love",
+ "like",
+ "female",
+ "people",
+ "human",
+ ],
+ emoji_key: "two_women_holding_hands",
+ },
+ {
+ keywords: [
+ "man_and_woman_holding_hands",
+ "man",
+ "and",
+ "woman",
+ "holding",
+ "hands",
+ "MAN",
+ "AND",
+ "WOMAN",
+ "HOLDING",
+ "HANDS",
+ ],
+ emoji_key: "man_and_woman_holding_hands",
+ },
+ {
+ keywords: [
+ "two_men_holding_hands",
+ "two",
+ "men",
+ "holding",
+ "hands",
+ "TWO",
+ "MEN",
+ "HOLDING",
+ "HANDSpair",
+ "couple",
+ "love",
+ "like",
+ "bromance",
+ "friendship",
+ "people",
+ "human",
+ ],
+ emoji_key: "two_men_holding_hands",
+ },
+ { keywords: ["couplekiss", "couplekiss", "KISS"], emoji_key: "couplekiss" },
+ {
+ keywords: ["woman-kiss-man", "woman-kiss-man", "KISS:", "WOMAN,", "MAN"],
+ emoji_key: "woman-kiss-man",
+ },
+ {
+ keywords: ["man-kiss-man", "man-kiss-man", "KISS:", "MAN,", "MAN"],
+ emoji_key: "man-kiss-man",
+ },
+ {
+ keywords: [
+ "woman-kiss-woman",
+ "woman-kiss-woman",
+ "KISS:",
+ "WOMAN,",
+ "WOMAN",
+ ],
+ emoji_key: "woman-kiss-woman",
+ },
+ {
+ keywords: [
+ "couple_with_heart",
+ "couple",
+ "with",
+ "heart",
+ "COUPLE",
+ "WITH",
+ "HEART",
+ ],
+ emoji_key: "couple_with_heart",
+ },
+ {
+ keywords: [
+ "woman-heart-man",
+ "woman-heart-man",
+ "COUPLE",
+ "WITH",
+ "HEART:",
+ "WOMAN,",
+ "MAN",
+ ],
+ emoji_key: "woman-heart-man",
+ },
+ {
+ keywords: [
+ "man-heart-man",
+ "man-heart-man",
+ "COUPLE",
+ "WITH",
+ "HEART:",
+ "MAN,",
+ "MAN",
+ ],
+ emoji_key: "man-heart-man",
+ },
+ {
+ keywords: [
+ "woman-heart-woman",
+ "woman-heart-woman",
+ "COUPLE",
+ "WITH",
+ "HEART:",
+ "WOMAN,",
+ "WOMAN",
+ ],
+ emoji_key: "woman-heart-woman",
+ },
+ {
+ keywords: [
+ "man-woman-boy",
+ "man-woman-boy",
+ "FAMILY:",
+ "MAN,",
+ "WOMAN,",
+ "BOY",
+ ],
+ emoji_key: "man-woman-boy",
+ },
+ {
+ keywords: [
+ "man-woman-girl",
+ "man-woman-girl",
+ "FAMILY:",
+ "MAN,",
+ "WOMAN,",
+ "GIRL",
+ ],
+ emoji_key: "man-woman-girl",
+ },
+ {
+ keywords: [
+ "man-woman-girl-boy",
+ "man-woman-girl-boy",
+ "FAMILY:",
+ "MAN,",
+ "WOMAN,",
+ "GIRL,",
+ "BOY",
+ ],
+ emoji_key: "man-woman-girl-boy",
+ },
+ {
+ keywords: [
+ "man-woman-boy-boy",
+ "man-woman-boy-boy",
+ "FAMILY:",
+ "MAN,",
+ "WOMAN,",
+ "BOY,",
+ "BOY",
+ ],
+ emoji_key: "man-woman-boy-boy",
+ },
+ {
+ keywords: [
+ "man-woman-girl-girl",
+ "man-woman-girl-girl",
+ "FAMILY:",
+ "MAN,",
+ "WOMAN,",
+ "GIRL,",
+ "GIRL",
+ ],
+ emoji_key: "man-woman-girl-girl",
+ },
+ {
+ keywords: [
+ "man-man-boy",
+ "man-man-boy",
+ "FAMILY:",
+ "MAN,",
+ "MAN,",
+ "BOY",
+ ],
+ emoji_key: "man-man-boy",
+ },
+ {
+ keywords: [
+ "man-man-girl",
+ "man-man-girl",
+ "FAMILY:",
+ "MAN,",
+ "MAN,",
+ "GIRL",
+ ],
+ emoji_key: "man-man-girl",
+ },
+ {
+ keywords: [
+ "man-man-girl-boy",
+ "man-man-girl-boy",
+ "FAMILY:",
+ "MAN,",
+ "MAN,",
+ "GIRL,",
+ "BOY",
+ ],
+ emoji_key: "man-man-girl-boy",
+ },
+ {
+ keywords: [
+ "man-man-boy-boy",
+ "man-man-boy-boy",
+ "FAMILY:",
+ "MAN,",
+ "MAN,",
+ "BOY,",
+ "BOY",
+ ],
+ emoji_key: "man-man-boy-boy",
+ },
+ {
+ keywords: [
+ "man-man-girl-girl",
+ "man-man-girl-girl",
+ "FAMILY:",
+ "MAN,",
+ "MAN,",
+ "GIRL,",
+ "GIRL",
+ ],
+ emoji_key: "man-man-girl-girl",
+ },
+ {
+ keywords: [
+ "woman-woman-boy",
+ "woman-woman-boy",
+ "FAMILY:",
+ "WOMAN,",
+ "WOMAN,",
+ "BOY",
+ ],
+ emoji_key: "woman-woman-boy",
+ },
+ {
+ keywords: [
+ "woman-woman-girl",
+ "woman-woman-girl",
+ "FAMILY:",
+ "WOMAN,",
+ "WOMAN,",
+ "GIRL",
+ ],
+ emoji_key: "woman-woman-girl",
+ },
+ {
+ keywords: [
+ "woman-woman-girl-boy",
+ "woman-woman-girl-boy",
+ "FAMILY:",
+ "WOMAN,",
+ "WOMAN,",
+ "GIRL,",
+ "BOY",
+ ],
+ emoji_key: "woman-woman-girl-boy",
+ },
+ {
+ keywords: [
+ "woman-woman-boy-boy",
+ "woman-woman-boy-boy",
+ "FAMILY:",
+ "WOMAN,",
+ "WOMAN,",
+ "BOY,",
+ "BOY",
+ ],
+ emoji_key: "woman-woman-boy-boy",
+ },
+ {
+ keywords: [
+ "woman-woman-girl-girl",
+ "woman-woman-girl-girl",
+ "FAMILY:",
+ "WOMAN,",
+ "WOMAN,",
+ "GIRL,",
+ "GIRL",
+ ],
+ emoji_key: "woman-woman-girl-girl",
+ },
+ {
+ keywords: ["man-boy", "man-boy", "FAMILY:", "MAN,", "BOY"],
+ emoji_key: "man-boy",
+ },
+ {
+ keywords: [
+ "man-boy-boy",
+ "man-boy-boy",
+ "FAMILY:",
+ "MAN,",
+ "BOY,",
+ "BOY",
+ ],
+ emoji_key: "man-boy-boy",
+ },
+ {
+ keywords: ["man-girl", "man-girl", "FAMILY:", "MAN,", "GIRL"],
+ emoji_key: "man-girl",
+ },
+ {
+ keywords: [
+ "man-girl-boy",
+ "man-girl-boy",
+ "FAMILY:",
+ "MAN,",
+ "GIRL,",
+ "BOY",
+ ],
+ emoji_key: "man-girl-boy",
+ },
+ {
+ keywords: [
+ "man-girl-girl",
+ "man-girl-girl",
+ "FAMILY:",
+ "MAN,",
+ "GIRL,",
+ "GIRL",
+ ],
+ emoji_key: "man-girl-girl",
+ },
+ {
+ keywords: ["woman-boy", "woman-boy", "FAMILY:", "WOMAN,", "BOY"],
+ emoji_key: "woman-boy",
+ },
+ {
+ keywords: [
+ "woman-boy-boy",
+ "woman-boy-boy",
+ "FAMILY:",
+ "WOMAN,",
+ "BOY,",
+ "BOY",
+ ],
+ emoji_key: "woman-boy-boy",
+ },
+ {
+ keywords: ["woman-girl", "woman-girl", "FAMILY:", "WOMAN,", "GIRL"],
+ emoji_key: "woman-girl",
+ },
+ {
+ keywords: [
+ "woman-girl-boy",
+ "woman-girl-boy",
+ "FAMILY:",
+ "WOMAN,",
+ "GIRL,",
+ "BOY",
+ ],
+ emoji_key: "woman-girl-boy",
+ },
+ {
+ keywords: [
+ "woman-girl-girl",
+ "woman-girl-girl",
+ "FAMILY:",
+ "WOMAN,",
+ "GIRL,",
+ "GIRL",
+ ],
+ emoji_key: "woman-girl-girl",
+ },
+ {
+ keywords: [
+ "speaking_head_in_silhouette",
+ "speaking",
+ "head",
+ "in",
+ "silhouette",
+ "SPEAKING",
+ "HEAD",
+ ],
+ emoji_key: "speaking_head_in_silhouette",
+ },
+ {
+ keywords: [
+ "bust_in_silhouette",
+ "bust",
+ "in",
+ "silhouette",
+ "BUST",
+ "IN",
+ "SILHOUETTEuser",
+ "person",
+ "human",
+ ],
+ emoji_key: "bust_in_silhouette",
+ },
+ {
+ keywords: [
+ "busts_in_silhouette",
+ "busts",
+ "in",
+ "silhouette",
+ "BUSTS",
+ "IN",
+ "SILHOUETTEuser",
+ "person",
+ "human",
+ "group",
+ "team",
+ ],
+ emoji_key: "busts_in_silhouette",
+ },
+ {
+ keywords: ["people_hugging", "people", "hugging", "PEOPLE", "HUGGING"],
+ emoji_key: "people_hugging",
+ },
+ {
+ keywords: [
+ "footprints",
+ "footprints",
+ "FOOTPRINTSfeet",
+ "tracking",
+ "walking",
+ "beach",
+ ],
+ emoji_key: "footprints",
+ },
+ {
+ keywords: [
+ "skin-tone-2",
+ "skin-tone-2",
+ "EMOJI",
+ "MODIFIER",
+ "FITZPATRICK",
+ "TYPE-1-2",
+ ],
+ emoji_key: "skin-tone-2",
+ },
+ {
+ keywords: [
+ "skin-tone-3",
+ "skin-tone-3",
+ "EMOJI",
+ "MODIFIER",
+ "FITZPATRICK",
+ "TYPE-3",
+ ],
+ emoji_key: "skin-tone-3",
+ },
+ {
+ keywords: [
+ "skin-tone-4",
+ "skin-tone-4",
+ "EMOJI",
+ "MODIFIER",
+ "FITZPATRICK",
+ "TYPE-4",
+ ],
+ emoji_key: "skin-tone-4",
+ },
+ {
+ keywords: [
+ "skin-tone-5",
+ "skin-tone-5",
+ "EMOJI",
+ "MODIFIER",
+ "FITZPATRICK",
+ "TYPE-5",
+ ],
+ emoji_key: "skin-tone-5",
+ },
+ {
+ keywords: [
+ "skin-tone-6",
+ "skin-tone-6",
+ "EMOJI",
+ "MODIFIER",
+ "FITZPATRICK",
+ "TYPE-6",
+ ],
+ emoji_key: "skin-tone-6",
+ },
+ {
+ keywords: [
+ "monkey_face",
+ "monkey",
+ "face",
+ "MONKEY",
+ "FACEanimal",
+ "nature",
+ "circus",
+ ],
+ emoji_key: "monkey_face",
+ },
+ {
+ keywords: [
+ "monkey",
+ "monkey",
+ "MONKEYanimal",
+ "nature",
+ "banana",
+ "circus",
+ ],
+ emoji_key: "monkey",
+ },
+ {
+ keywords: [
+ "gorilla",
+ "gorilla",
+ "GORILLAnature",
+ "ape",
+ "animal",
+ "circus",
+ "silverback",
+ ],
+ emoji_key: "gorilla",
+ },
+ {
+ keywords: ["orangutan", "orangutan", "ORANGUTAN"],
+ emoji_key: "orangutan",
+ },
+ {
+ keywords: [
+ "dog",
+ "dog",
+ "DOG",
+ "FACEanimal",
+ "friend",
+ "nature",
+ "woof",
+ "puppy",
+ "pet",
+ "faithful",
+ ],
+ emoji_key: "dog",
+ },
+ {
+ keywords: [
+ "dog2",
+ "dog2",
+ "DOGanimal",
+ "nature",
+ "friend",
+ "doge",
+ "pet",
+ "faithful",
+ ],
+ emoji_key: "dog2",
+ },
+ {
+ keywords: ["guide_dog", "guide", "dog", "GUIDE", "DOG"],
+ emoji_key: "guide_dog",
+ },
+ {
+ keywords: ["service_dog", "service", "dog", "SERVICE", "DOG"],
+ emoji_key: "service_dog",
+ },
+ {
+ keywords: [
+ "poodle",
+ "poodle",
+ "POODLEdog",
+ "animal",
+ "101",
+ "nature",
+ "pet",
+ ],
+ emoji_key: "poodle",
+ },
+ {
+ keywords: ["wolf", "wolf", "WOLF", "FACEanimal", "nature", "wild"],
+ emoji_key: "wolf",
+ },
+ {
+ keywords: [
+ "fox_face",
+ "fox",
+ "face",
+ "FOX",
+ "FACEanimal",
+ "nature",
+ "face",
+ ],
+ emoji_key: "fox_face",
+ },
+ { keywords: ["raccoon", "raccoon", "RACCOON"], emoji_key: "raccoon" },
+ {
+ keywords: [
+ "cat",
+ "cat",
+ "CAT",
+ "FACEanimal",
+ "meow",
+ "nature",
+ "pet",
+ "kitten",
+ ],
+ emoji_key: "cat",
+ },
+ {
+ keywords: ["cat2", "cat2", "CATanimal", "meow", "pet", "cats"],
+ emoji_key: "cat2",
+ },
+ {
+ keywords: ["black_cat", "black", "cat", "BLACK", "CAT"],
+ emoji_key: "black_cat",
+ },
+ {
+ keywords: ["lion_face", "lion", "face", "LION", "FACE"],
+ emoji_key: "lion_face",
+ },
+ {
+ keywords: [
+ "tiger",
+ "tiger",
+ "TIGER",
+ "FACEanimal",
+ "cat",
+ "danger",
+ "wild",
+ "nature",
+ "roar",
+ ],
+ emoji_key: "tiger",
+ },
+ {
+ keywords: ["tiger2", "tiger2", "TIGERanimal", "nature", "roar"],
+ emoji_key: "tiger2",
+ },
+ {
+ keywords: ["leopard", "leopard", "LEOPARDanimal", "nature"],
+ emoji_key: "leopard",
+ },
+ {
+ keywords: [
+ "horse",
+ "horse",
+ "HORSE",
+ "FACEbrown",
+ "nature",
+ "cavalry",
+ "animal",
+ ],
+ emoji_key: "horse",
+ },
+ { keywords: ["moose", "moose", "MOOSE"], emoji_key: "moose" },
+ { keywords: ["donkey", "donkey", "DONKEY"], emoji_key: "donkey" },
+ {
+ keywords: [
+ "racehorse",
+ "racehorse",
+ "HORSEsteed",
+ "gamble",
+ "luck",
+ "animal",
+ ],
+ emoji_key: "racehorse",
+ },
+ {
+ keywords: ["unicorn_face", "unicorn", "face", "UNICORN", "FACE"],
+ emoji_key: "unicorn_face",
+ },
+ {
+ keywords: ["zebra_face", "zebra", "face", "ZEBRA", "FACE"],
+ emoji_key: "zebra_face",
+ },
+ {
+ keywords: [
+ "deer",
+ "deer",
+ "DEERhorns",
+ "nature",
+ "venison",
+ "animal",
+ "doe",
+ ],
+ emoji_key: "deer",
+ },
+ { keywords: ["bison", "bison", "BISON"], emoji_key: "bison" },
+ {
+ keywords: [
+ "cow",
+ "cow",
+ "COW",
+ "FACEbeef",
+ "ox",
+ "animal",
+ "nature",
+ "moo",
+ "milk",
+ ],
+ emoji_key: "cow",
+ },
+ { keywords: ["ox", "ox", "OXanimal", "cow", "beef"], emoji_key: "ox" },
+ {
+ keywords: [
+ "water_buffalo",
+ "water",
+ "buffalo",
+ "WATER",
+ "BUFFALOanimal",
+ "nature",
+ "ox",
+ "cow",
+ ],
+ emoji_key: "water_buffalo",
+ },
+ {
+ keywords: [
+ "cow2",
+ "cow2",
+ "COWbeef",
+ "ox",
+ "animal",
+ "nature",
+ "moo",
+ "milk",
+ ],
+ emoji_key: "cow2",
+ },
+ {
+ keywords: ["pig", "pig", "PIG", "FACEoink", "nature", "hog", "animal"],
+ emoji_key: "pig",
+ },
+ { keywords: ["pig2", "pig2", "PIGanimal", "nature"], emoji_key: "pig2" },
+ { keywords: ["boar", "boar", "BOARanimal", "nature"], emoji_key: "boar" },
+ {
+ keywords: [
+ "pig_nose",
+ "pig",
+ "nose",
+ "PIG",
+ "NOSEoink",
+ "snout",
+ "animal",
+ ],
+ emoji_key: "pig_nose",
+ },
+ {
+ keywords: ["ram", "ram", "RAManimal", "sheep", "nature"],
+ emoji_key: "ram",
+ },
+ {
+ keywords: [
+ "sheep",
+ "sheep",
+ "SHEEPlivestock",
+ "nature",
+ "shipit",
+ "animal",
+ "wool",
+ ],
+ emoji_key: "sheep",
+ },
+ { keywords: ["goat", "goat", "GOATanimal", "nature"], emoji_key: "goat" },
+ {
+ keywords: [
+ "dromedary_camel",
+ "dromedary",
+ "camel",
+ "DROMEDARY",
+ "CAMELanimal",
+ "hot",
+ "desert",
+ "hump",
+ ],
+ emoji_key: "dromedary_camel",
+ },
+ {
+ keywords: [
+ "camel",
+ "camel",
+ "BACTRIAN",
+ "CAMELanimal",
+ "nature",
+ "hot",
+ "desert",
+ "hump",
+ ],
+ emoji_key: "camel",
+ },
+ { keywords: ["llama", "llama", "LLAMA"], emoji_key: "llama" },
+ {
+ keywords: ["giraffe_face", "giraffe", "face", "GIRAFFE", "FACE"],
+ emoji_key: "giraffe_face",
+ },
+ {
+ keywords: [
+ "elephant",
+ "elephant",
+ "ELEPHANTanimal",
+ "nature",
+ "nose",
+ "th",
+ "circus",
+ ],
+ emoji_key: "elephant",
+ },
+ { keywords: ["mammoth", "mammoth", "MAMMOTH"], emoji_key: "mammoth" },
+ {
+ keywords: [
+ "rhinoceros",
+ "rhinoceros",
+ "RHINOCEROSanimal",
+ "nature",
+ "horn",
+ ],
+ emoji_key: "rhinoceros",
+ },
+ {
+ keywords: ["hippopotamus", "hippopotamus", "HIPPOPOTAMUS"],
+ emoji_key: "hippopotamus",
+ },
+ {
+ keywords: [
+ "mouse",
+ "mouse",
+ "MOUSE",
+ "FACEanimal",
+ "nature",
+ "cheese",
+ "wedge",
+ "rodent",
+ ],
+ emoji_key: "mouse",
+ },
+ {
+ keywords: ["mouse2", "mouse2", "MOUSEanimal", "nature", "rodent"],
+ emoji_key: "mouse2",
+ },
+ {
+ keywords: ["rat", "rat", "RATanimal", "mouse", "rodent"],
+ emoji_key: "rat",
+ },
+ {
+ keywords: ["hamster", "hamster", "HAMSTER", "FACEanimal", "nature"],
+ emoji_key: "hamster",
+ },
+ {
+ keywords: [
+ "rabbit",
+ "rabbit",
+ "RABBIT",
+ "FACEanimal",
+ "nature",
+ "pet",
+ "spring",
+ "magic",
+ "bunny",
+ ],
+ emoji_key: "rabbit",
+ },
+ {
+ keywords: [
+ "rabbit2",
+ "rabbit2",
+ "RABBITanimal",
+ "nature",
+ "pet",
+ "magic",
+ "spring",
+ ],
+ emoji_key: "rabbit2",
+ },
+ {
+ keywords: [
+ "chipmunk",
+ "chipmunk",
+ "CHIPMUNKanimal",
+ "nature",
+ "rodent",
+ "squirrel",
+ ],
+ emoji_key: "chipmunk",
+ },
+ { keywords: ["beaver", "beaver", "BEAVER"], emoji_key: "beaver" },
+ {
+ keywords: ["hedgehog", "hedgehog", "HEDGEHOGanimal", "nature", "spiny"],
+ emoji_key: "hedgehog",
+ },
+ {
+ keywords: ["bat", "bat", "BATanimal", "nature", "blind", "vampire"],
+ emoji_key: "bat",
+ },
+ {
+ keywords: ["bear", "bear", "BEAR", "FACEanimal", "nature", "wild"],
+ emoji_key: "bear",
+ },
+ {
+ keywords: ["polar_bear", "polar", "bear", "POLAR", "BEAR"],
+ emoji_key: "polar_bear",
+ },
+ {
+ keywords: ["koala", "koala", "KOALAanimal", "nature"],
+ emoji_key: "koala",
+ },
+ {
+ keywords: [
+ "panda_face",
+ "panda",
+ "face",
+ "PANDA",
+ "FACEanimal",
+ "nature",
+ "panda",
+ ],
+ emoji_key: "panda_face",
+ },
+ { keywords: ["sloth", "sloth", "SLOTH"], emoji_key: "sloth" },
+ { keywords: ["otter", "otter", "OTTER"], emoji_key: "otter" },
+ { keywords: ["skunk", "skunk", "SKUNK"], emoji_key: "skunk" },
+ { keywords: ["kangaroo", "kangaroo", "KANGAROO"], emoji_key: "kangaroo" },
+ { keywords: ["badger", "badger", "BADGER"], emoji_key: "badger" },
+ { keywords: ["feet", "feet", "PAW", "PRINTS"], emoji_key: "feet" },
+ {
+ keywords: ["turkey", "turkey", "TURKEYanimal", "bird"],
+ emoji_key: "turkey",
+ },
+ {
+ keywords: [
+ "chicken",
+ "chicken",
+ "CHICKENanimal",
+ "cluck",
+ "nature",
+ "bird",
+ ],
+ emoji_key: "chicken",
+ },
+ {
+ keywords: ["rooster", "rooster", "ROOSTERanimal", "nature", "chicken"],
+ emoji_key: "rooster",
+ },
+ {
+ keywords: [
+ "hatching_chick",
+ "hatching",
+ "chick",
+ "HATCHING",
+ "CHICKanimal",
+ "chicken",
+ "egg",
+ "born",
+ "baby",
+ "bird",
+ ],
+ emoji_key: "hatching_chick",
+ },
+ {
+ keywords: [
+ "baby_chick",
+ "baby",
+ "chick",
+ "BABY",
+ "CHICKanimal",
+ "chicken",
+ "bird",
+ ],
+ emoji_key: "baby_chick",
+ },
+ {
+ keywords: [
+ "hatched_chick",
+ "hatched",
+ "chick",
+ "FRONT-FACING",
+ "BABY",
+ "CHICKanimal",
+ "chicken",
+ "baby",
+ "bird",
+ ],
+ emoji_key: "hatched_chick",
+ },
+ {
+ keywords: [
+ "bird",
+ "bird",
+ "BIRDanimal",
+ "nature",
+ "fly",
+ "tweet",
+ "spring",
+ ],
+ emoji_key: "bird",
+ },
+ {
+ keywords: ["penguin", "penguin", "PENGUINanimal", "nature"],
+ emoji_key: "penguin",
+ },
+ {
+ keywords: ["dove_of_peace", "dove", "of", "peace", "DOVE"],
+ emoji_key: "dove_of_peace",
+ },
+ {
+ keywords: ["eagle", "eagle", "EAGLEanimal", "nature", "bird"],
+ emoji_key: "eagle",
+ },
+ {
+ keywords: ["duck", "duck", "DUCKanimal", "nature", "bird", "mallard"],
+ emoji_key: "duck",
+ },
+ { keywords: ["swan", "swan", "SWAN"], emoji_key: "swan" },
+ {
+ keywords: ["owl", "owl", "OWLanimal", "nature", "bird", "hoot"],
+ emoji_key: "owl",
+ },
+ { keywords: ["dodo", "dodo", "DODO"], emoji_key: "dodo" },
+ { keywords: ["feather", "feather", "FEATHER"], emoji_key: "feather" },
+ { keywords: ["flamingo", "flamingo", "FLAMINGO"], emoji_key: "flamingo" },
+ { keywords: ["peacock", "peacock", "PEACOCK"], emoji_key: "peacock" },
+ { keywords: ["parrot", "parrot", "PARROT"], emoji_key: "parrot" },
+ { keywords: ["wing", "wing", "WING"], emoji_key: "wing" },
+ {
+ keywords: ["black_bird", "black", "bird", "BLACK", "BIRD"],
+ emoji_key: "black_bird",
+ },
+ { keywords: ["goose", "goose", "GOOSE"], emoji_key: "goose" },
+ {
+ keywords: [
+ "frog",
+ "frog",
+ "FROG",
+ "FACEanimal",
+ "nature",
+ "croak",
+ "toad",
+ ],
+ emoji_key: "frog",
+ },
+ {
+ keywords: [
+ "crocodile",
+ "crocodile",
+ "CROCODILEanimal",
+ "nature",
+ "reptile",
+ "lizard",
+ "alligator",
+ ],
+ emoji_key: "crocodile",
+ },
+ {
+ keywords: [
+ "turtle",
+ "turtle",
+ "TURTLEanimal",
+ "slow",
+ "nature",
+ "tortoise",
+ ],
+ emoji_key: "turtle",
+ },
+ {
+ keywords: ["lizard", "lizard", "LIZARDanimal", "nature", "reptile"],
+ emoji_key: "lizard",
+ },
+ {
+ keywords: [
+ "snake",
+ "snake",
+ "SNAKEanimal",
+ "evil",
+ "nature",
+ "hiss",
+ "python",
+ ],
+ emoji_key: "snake",
+ },
+ {
+ keywords: [
+ "dragon_face",
+ "dragon",
+ "face",
+ "DRAGON",
+ "FACEanimal",
+ "myth",
+ "nature",
+ "chinese",
+ "green",
+ ],
+ emoji_key: "dragon_face",
+ },
+ {
+ keywords: [
+ "dragon",
+ "dragon",
+ "DRAGONanimal",
+ "myth",
+ "nature",
+ "chinese",
+ "green",
+ ],
+ emoji_key: "dragon",
+ },
+ {
+ keywords: [
+ "sauropod",
+ "sauropod",
+ "SAUROPODanimal",
+ "nature",
+ "dinosaur",
+ "brachiosaurus",
+ "brontosaurus",
+ "diplodocus",
+ "extinct",
+ ],
+ emoji_key: "sauropod",
+ },
+ {
+ keywords: [
+ "t-rex",
+ "t-rex",
+ "T-REXanimal",
+ "nature",
+ "dinosaur",
+ "tyrannosaurus",
+ "extinct",
+ ],
+ emoji_key: "t-rex",
+ },
+ {
+ keywords: [
+ "whale",
+ "whale",
+ "SPOUTING",
+ "WHALEanimal",
+ "nature",
+ "sea",
+ "ocean",
+ ],
+ emoji_key: "whale",
+ },
+ {
+ keywords: ["whale2", "whale2", "WHALEanimal", "nature", "sea", "ocean"],
+ emoji_key: "whale2",
+ },
+ {
+ keywords: [
+ "dolphin",
+ "dolphin",
+ "DOLPHINanimal",
+ "nature",
+ "fish",
+ "sea",
+ "ocean",
+ "flipper",
+ "fins",
+ "beach",
+ ],
+ emoji_key: "dolphin",
+ },
+ { keywords: ["seal", "seal", "SEAL"], emoji_key: "seal" },
+ {
+ keywords: ["fish", "fish", "FISHanimal", "food", "nature"],
+ emoji_key: "fish",
+ },
+ {
+ keywords: [
+ "tropical_fish",
+ "tropical",
+ "fish",
+ "TROPICAL",
+ "FISHanimal",
+ "swim",
+ "ocean",
+ "beach",
+ "nemo",
+ ],
+ emoji_key: "tropical_fish",
+ },
+ {
+ keywords: [
+ "blowfish",
+ "blowfish",
+ "BLOWFISHanimal",
+ "nature",
+ "food",
+ "sea",
+ "ocean",
+ ],
+ emoji_key: "blowfish",
+ },
+ {
+ keywords: [
+ "shark",
+ "shark",
+ "SHARKanimal",
+ "nature",
+ "fish",
+ "sea",
+ "ocean",
+ "jaws",
+ "fins",
+ "beach",
+ ],
+ emoji_key: "shark",
+ },
+ {
+ keywords: [
+ "octopus",
+ "octopus",
+ "OCTOPUSanimal",
+ "creature",
+ "ocean",
+ "sea",
+ "nature",
+ "beach",
+ ],
+ emoji_key: "octopus",
+ },
+ {
+ keywords: ["shell", "shell", "SPIRAL", "SHELLnature", "sea", "beach"],
+ emoji_key: "shell",
+ },
+ { keywords: ["coral", "coral", "CORAL"], emoji_key: "coral" },
+ {
+ keywords: ["jellyfish", "jellyfish", "JELLYFISH"],
+ emoji_key: "jellyfish",
+ },
+ {
+ keywords: ["snail", "snail", "SNAILslow", "animal", "shell"],
+ emoji_key: "snail",
+ },
+ {
+ keywords: [
+ "butterfly",
+ "butterfly",
+ "BUTTERFLYanimal",
+ "insect",
+ "nature",
+ "caterpillar",
+ ],
+ emoji_key: "butterfly",
+ },
+ {
+ keywords: ["bug", "bug", "BUGanimal", "insect", "nature", "worm"],
+ emoji_key: "bug",
+ },
+ {
+ keywords: ["ant", "ant", "ANTanimal", "insect", "nature", "bug"],
+ emoji_key: "ant",
+ },
+ { keywords: ["bee", "bee", "HONEYBEE"], emoji_key: "bee" },
+ {
+ keywords: [
+ "beetle",
+ "beetle",
+ "BEETLEanimal",
+ "insect",
+ "nature",
+ "ladybug",
+ ],
+ emoji_key: "beetle",
+ },
+ {
+ keywords: ["ladybug", "ladybug", "LADY", "BEETLE"],
+ emoji_key: "ladybug",
+ },
+ { keywords: ["cricket", "cricket", "CRICKETsports"], emoji_key: "cricket" },
+ {
+ keywords: ["cockroach", "cockroach", "COCKROACH"],
+ emoji_key: "cockroach",
+ },
+ {
+ keywords: ["spider", "spider", "SPIDERanimal", "arachnid"],
+ emoji_key: "spider",
+ },
+ {
+ keywords: [
+ "spider_web",
+ "spider",
+ "web",
+ "SPIDER",
+ "WEBanimal",
+ "insect",
+ "arachnid",
+ "silk",
+ ],
+ emoji_key: "spider_web",
+ },
+ {
+ keywords: ["scorpion", "scorpion", "SCORPIONanimal", "arachnid"],
+ emoji_key: "scorpion",
+ },
+ { keywords: ["mosquito", "mosquito", "MOSQUITO"], emoji_key: "mosquito" },
+ { keywords: ["fly", "fly", "FLY"], emoji_key: "fly" },
+ { keywords: ["worm", "worm", "WORM"], emoji_key: "worm" },
+ { keywords: ["microbe", "microbe", "MICROBE"], emoji_key: "microbe" },
+ {
+ keywords: ["bouquet", "bouquet", "BOUQUETflowers", "nature", "spring"],
+ emoji_key: "bouquet",
+ },
+ {
+ keywords: [
+ "cherry_blossom",
+ "cherry",
+ "blossom",
+ "CHERRY",
+ "BLOSSOMnature",
+ "plant",
+ "spring",
+ "flower",
+ ],
+ emoji_key: "cherry_blossom",
+ },
+ {
+ keywords: [
+ "white_flower",
+ "white",
+ "flower",
+ "WHITE",
+ "FLOWERjapanese",
+ "spring",
+ ],
+ emoji_key: "white_flower",
+ },
+ { keywords: ["lotus", "lotus", "LOTUS"], emoji_key: "lotus" },
+ {
+ keywords: [
+ "rosette",
+ "rosette",
+ "ROSETTEflower",
+ "decoration",
+ "military",
+ ],
+ emoji_key: "rosette",
+ },
+ {
+ keywords: ["rose", "rose", "ROSEflowers", "valentines", "love", "spring"],
+ emoji_key: "rose",
+ },
+ {
+ keywords: [
+ "wilted_flower",
+ "wilted",
+ "flower",
+ "WILTED",
+ "FLOWERplant",
+ "nature",
+ "flower",
+ ],
+ emoji_key: "wilted_flower",
+ },
+ {
+ keywords: [
+ "hibiscus",
+ "hibiscus",
+ "HIBISCUSplant",
+ "vegetable",
+ "flowers",
+ "beach",
+ ],
+ emoji_key: "hibiscus",
+ },
+ {
+ keywords: ["sunflower", "sunflower", "SUNFLOWERnature", "plant", "fall"],
+ emoji_key: "sunflower",
+ },
+ {
+ keywords: ["blossom", "blossom", "BLOSSOMnature", "flowers", "yellow"],
+ emoji_key: "blossom",
+ },
+ {
+ keywords: [
+ "tulip",
+ "tulip",
+ "TULIPflowers",
+ "plant",
+ "nature",
+ "summer",
+ "spring",
+ ],
+ emoji_key: "tulip",
+ },
+ { keywords: ["hyacinth", "hyacinth", "HYACINTH"], emoji_key: "hyacinth" },
+ {
+ keywords: [
+ "seedling",
+ "seedling",
+ "SEEDLINGplant",
+ "nature",
+ "grass",
+ "lawn",
+ "spring",
+ ],
+ emoji_key: "seedling",
+ },
+ {
+ keywords: ["potted_plant", "potted", "plant", "POTTED", "PLANT"],
+ emoji_key: "potted_plant",
+ },
+ {
+ keywords: [
+ "evergreen_tree",
+ "evergreen",
+ "tree",
+ "EVERGREEN",
+ "TREEplant",
+ "nature",
+ ],
+ emoji_key: "evergreen_tree",
+ },
+ {
+ keywords: [
+ "deciduous_tree",
+ "deciduous",
+ "tree",
+ "DECIDUOUS",
+ "TREEplant",
+ "nature",
+ ],
+ emoji_key: "deciduous_tree",
+ },
+ {
+ keywords: [
+ "palm_tree",
+ "palm",
+ "tree",
+ "PALM",
+ "TREEplant",
+ "vegetable",
+ "nature",
+ "summer",
+ "beach",
+ "mojito",
+ "tropical",
+ ],
+ emoji_key: "palm_tree",
+ },
+ {
+ keywords: ["cactus", "cactus", "CACTUSvegetable", "plant", "nature"],
+ emoji_key: "cactus",
+ },
+ {
+ keywords: [
+ "ear_of_rice",
+ "ear",
+ "of",
+ "rice",
+ "EAR",
+ "OF",
+ "RICEnature",
+ "plant",
+ ],
+ emoji_key: "ear_of_rice",
+ },
+ {
+ keywords: [
+ "herb",
+ "herb",
+ "HERBvegetable",
+ "plant",
+ "medicine",
+ "weed",
+ "grass",
+ "lawn",
+ ],
+ emoji_key: "herb",
+ },
+ {
+ keywords: [
+ "shamrock",
+ "shamrock",
+ "SHAMROCKvegetable",
+ "plant",
+ "nature",
+ "irish",
+ "clover",
+ ],
+ emoji_key: "shamrock",
+ },
+ {
+ keywords: [
+ "four_leaf_clover",
+ "four",
+ "leaf",
+ "clover",
+ "FOUR",
+ "LEAF",
+ "CLOVERvegetable",
+ "plant",
+ "nature",
+ "lucky",
+ "irish",
+ ],
+ emoji_key: "four_leaf_clover",
+ },
+ {
+ keywords: [
+ "maple_leaf",
+ "maple",
+ "leaf",
+ "MAPLE",
+ "LEAFnature",
+ "plant",
+ "vegetable",
+ "ca",
+ "fall",
+ ],
+ emoji_key: "maple_leaf",
+ },
+ {
+ keywords: [
+ "fallen_leaf",
+ "fallen",
+ "leaf",
+ "FALLEN",
+ "LEAFnature",
+ "plant",
+ "vegetable",
+ "leaves",
+ ],
+ emoji_key: "fallen_leaf",
+ },
+ {
+ keywords: [
+ "leaves",
+ "leaves",
+ "LEAF",
+ "FLUTTERING",
+ "IN",
+ "WINDnature",
+ "plant",
+ "tree",
+ "vegetable",
+ "grass",
+ "lawn",
+ "spring",
+ ],
+ emoji_key: "leaves",
+ },
+ {
+ keywords: ["empty_nest", "empty", "nest", "EMPTY", "NEST"],
+ emoji_key: "empty_nest",
+ },
+ {
+ keywords: [
+ "nest_with_eggs",
+ "nest",
+ "with",
+ "eggs",
+ "NEST",
+ "WITH",
+ "EGGS",
+ ],
+ emoji_key: "nest_with_eggs",
+ },
+ {
+ keywords: [
+ "mushroom",
+ "mushroom",
+ "MUSHROOMfungi",
+ "plant",
+ "vegetable",
+ "fungus",
+ ],
+ emoji_key: "mushroom",
+ },
+ {
+ keywords: [
+ "grapes",
+ "grapes",
+ "GRAPESwine",
+ "food",
+ "grapevine",
+ "fruit",
+ ],
+ emoji_key: "grapes",
+ },
+ {
+ keywords: ["melon", "melon", "MELONfruit", "nature", "food"],
+ emoji_key: "melon",
+ },
+ {
+ keywords: [
+ "watermelon",
+ "watermelon",
+ "WATERMELONfruit",
+ "food",
+ "picnic",
+ "summer",
+ ],
+ emoji_key: "watermelon",
+ },
+ {
+ keywords: [
+ "tangerine",
+ "tangerine",
+ "TANGERINEfood",
+ "fruit",
+ "nature",
+ "orange",
+ ],
+ emoji_key: "tangerine",
+ },
+ {
+ keywords: [
+ "lemon",
+ "lemon",
+ "LEMONcitrus",
+ "limon",
+ "nature",
+ "citric",
+ "lime",
+ "citron",
+ "fruit",
+ "sour",
+ ],
+ emoji_key: "lemon",
+ },
+ {
+ keywords: ["banana", "banana", "BANANAyellow", "food", "monkey", "fruit"],
+ emoji_key: "banana",
+ },
+ {
+ keywords: ["pineapple", "pineapple", "PINEAPPLEfruit", "nature", "food"],
+ emoji_key: "pineapple",
+ },
+ { keywords: ["mango", "mango", "MANGO"], emoji_key: "mango" },
+ {
+ keywords: ["apple", "apple", "RED", "APPLEfruit", "mac", "school"],
+ emoji_key: "apple",
+ },
+ {
+ keywords: [
+ "green_apple",
+ "green",
+ "apple",
+ "GREEN",
+ "APPLEgranny",
+ "smith",
+ "nature",
+ "fruit",
+ ],
+ emoji_key: "green_apple",
+ },
+ {
+ keywords: ["pear", "pear", "PEARfruit", "nature", "food"],
+ emoji_key: "pear",
+ },
+ {
+ keywords: ["peach", "peach", "PEACHfruit", "nature", "food"],
+ emoji_key: "peach",
+ },
+ {
+ keywords: ["cherries", "cherries", "CHERRIESfood", "fruit"],
+ emoji_key: "cherries",
+ },
+ {
+ keywords: [
+ "strawberry",
+ "strawberry",
+ "STRAWBERRYfruit",
+ "food",
+ "nature",
+ ],
+ emoji_key: "strawberry",
+ },
+ {
+ keywords: ["blueberries", "blueberries", "BLUEBERRIES"],
+ emoji_key: "blueberries",
+ },
+ {
+ keywords: ["kiwifruit", "kiwifruit", "KIWIFRUITfruit"],
+ emoji_key: "kiwifruit",
+ },
+ {
+ keywords: [
+ "tomato",
+ "tomato",
+ "TOMATOfruit",
+ "vegetable",
+ "nature",
+ "food",
+ ],
+ emoji_key: "tomato",
+ },
+ { keywords: ["olive", "olive", "OLIVE"], emoji_key: "olive" },
+ {
+ keywords: [
+ "coconut",
+ "coconut",
+ "COCONUTfruit",
+ "nature",
+ "food",
+ "palm",
+ ],
+ emoji_key: "coconut",
+ },
+ {
+ keywords: ["avocado", "avocado", "AVOCADOfruit", "food"],
+ emoji_key: "avocado",
+ },
+ {
+ keywords: [
+ "eggplant",
+ "eggplant",
+ "AUBERGINEvegetable",
+ "nature",
+ "food",
+ "aubergine",
+ ],
+ emoji_key: "eggplant",
+ },
+ {
+ keywords: [
+ "potato",
+ "potato",
+ "POTATOtuber",
+ "food",
+ "starch",
+ "tater",
+ "vegatable",
+ "spud",
+ ],
+ emoji_key: "potato",
+ },
+ {
+ keywords: ["carrot", "carrot", "CARROTvegetable", "food", "orange"],
+ emoji_key: "carrot",
+ },
+ {
+ keywords: [
+ "corn",
+ "corn",
+ "EAR",
+ "OF",
+ "MAIZEplant",
+ "maize",
+ "food",
+ "vegetable",
+ ],
+ emoji_key: "corn",
+ },
+ {
+ keywords: [
+ "hot_pepper",
+ "hot",
+ "pepper",
+ "HOT",
+ "PEPPERspicy",
+ "chili",
+ "pepper",
+ "food",
+ "habanero",
+ "chili",
+ "tabasco",
+ "plant",
+ "jalapeno",
+ "chilli",
+ ],
+ emoji_key: "hot_pepper",
+ },
+ {
+ keywords: ["bell_pepper", "bell", "pepper", "BELL", "PEPPER"],
+ emoji_key: "bell_pepper",
+ },
+ {
+ keywords: ["cucumber", "cucumber", "CUCUMBERfruit", "food", "pickle"],
+ emoji_key: "cucumber",
+ },
+ {
+ keywords: [
+ "leafy_green",
+ "leafy",
+ "green",
+ "LEAFY",
+ "GREENspinach",
+ "greens",
+ "kale",
+ ],
+ emoji_key: "leafy_green",
+ },
+ {
+ keywords: ["broccoli", "broccoli", "BROCCOLIfruit", "food", "vegetable"],
+ emoji_key: "broccoli",
+ },
+ { keywords: ["garlic", "garlic", "GARLIC"], emoji_key: "garlic" },
+ { keywords: ["onion", "onion", "ONION"], emoji_key: "onion" },
+ {
+ keywords: ["peanuts", "peanuts", "PEANUTSfood", "nut"],
+ emoji_key: "peanuts",
+ },
+ { keywords: ["beans", "beans", "BEANS"], emoji_key: "beans" },
+ {
+ keywords: ["chestnut", "chestnut", "CHESTNUTfood", "squirrel"],
+ emoji_key: "chestnut",
+ },
+ {
+ keywords: ["ginger_root", "ginger", "root", "GINGER", "ROOT"],
+ emoji_key: "ginger_root",
+ },
+ { keywords: ["pea_pod", "pea", "pod", "PEA", "POD"], emoji_key: "pea_pod" },
+ {
+ keywords: [
+ "bread",
+ "bread",
+ "BREADfood",
+ "wheat",
+ "breakfast",
+ "toast",
+ "dough",
+ ],
+ emoji_key: "bread",
+ },
+ {
+ keywords: ["croissant", "croissant", "CROISSANTfood", "bread", "french"],
+ emoji_key: "croissant",
+ },
+ {
+ keywords: [
+ "baguette_bread",
+ "baguette",
+ "bread",
+ "BAGUETTE",
+ "BREADfood",
+ "french",
+ "loaf",
+ "bread",
+ ],
+ emoji_key: "baguette_bread",
+ },
+ {
+ keywords: ["flatbread", "flatbread", "FLATBREAD"],
+ emoji_key: "flatbread",
+ },
+ {
+ keywords: ["pretzel", "pretzel", "PRETZELfood", "bread", "twisted"],
+ emoji_key: "pretzel",
+ },
+ { keywords: ["bagel", "bagel", "BAGEL"], emoji_key: "bagel" },
+ {
+ keywords: [
+ "pancakes",
+ "pancakes",
+ "PANCAKESfood",
+ "breakfast",
+ "flapjacks",
+ "hotcakes",
+ ],
+ emoji_key: "pancakes",
+ },
+ { keywords: ["waffle", "waffle", "WAFFLE"], emoji_key: "waffle" },
+ {
+ keywords: ["cheese_wedge", "cheese", "wedge", "CHEESE", "WEDGE"],
+ emoji_key: "cheese_wedge",
+ },
+ {
+ keywords: [
+ "meat_on_bone",
+ "meat",
+ "on",
+ "bone",
+ "MEAT",
+ "ON",
+ "BONEgood",
+ "food",
+ "drumstick",
+ ],
+ emoji_key: "meat_on_bone",
+ },
+ {
+ keywords: [
+ "poultry_leg",
+ "poultry",
+ "leg",
+ "POULTRY",
+ "LEGfood",
+ "meat",
+ "drumstick",
+ "bird",
+ "chicken",
+ "turkey",
+ ],
+ emoji_key: "poultry_leg",
+ },
+ {
+ keywords: [
+ "cut_of_meat",
+ "cut",
+ "of",
+ "meat",
+ "CUT",
+ "OF",
+ "MEATsteak",
+ "beef",
+ ],
+ emoji_key: "cut_of_meat",
+ },
+ {
+ keywords: [
+ "bacon",
+ "bacon",
+ "BACONfood",
+ "breakfast",
+ "pork",
+ "pig",
+ "meat",
+ ],
+ emoji_key: "bacon",
+ },
+ {
+ keywords: [
+ "hamburger",
+ "hamburger",
+ "HAMBURGERmeat",
+ "fast",
+ "food",
+ "beef",
+ "cheeseburger",
+ "mcdonalds",
+ "burger",
+ "king",
+ ],
+ emoji_key: "hamburger",
+ },
+ {
+ keywords: [
+ "fries",
+ "fries",
+ "FRENCH",
+ "FRIESchips",
+ "snack",
+ "fast",
+ "food",
+ ],
+ emoji_key: "fries",
+ },
+ {
+ keywords: ["pizza", "pizza", "SLICE", "OF", "PIZZAfood", "party"],
+ emoji_key: "pizza",
+ },
+ {
+ keywords: ["hotdog", "hotdog", "HOT", "DOGfood", "frankfurter"],
+ emoji_key: "hotdog",
+ },
+ {
+ keywords: ["sandwich", "sandwich", "SANDWICHfood", "lunch", "bread"],
+ emoji_key: "sandwich",
+ },
+ { keywords: ["taco", "taco", "TACOfood", "mexican"], emoji_key: "taco" },
+ {
+ keywords: ["burrito", "burrito", "BURRITOfood", "mexican"],
+ emoji_key: "burrito",
+ },
+ { keywords: ["tamale", "tamale", "TAMALE"], emoji_key: "tamale" },
+ {
+ keywords: [
+ "stuffed_flatbread",
+ "stuffed",
+ "flatbread",
+ "STUFFED",
+ "FLATBREADfood",
+ "flatbread",
+ "stuffed",
+ "gyro",
+ ],
+ emoji_key: "stuffed_flatbread",
+ },
+ { keywords: ["falafel", "falafel", "FALAFEL"], emoji_key: "falafel" },
+ {
+ keywords: ["egg", "egg", "EGGfood", "chicken", "breakfast"],
+ emoji_key: "egg",
+ },
+ {
+ keywords: [
+ "fried_egg",
+ "fried",
+ "egg",
+ "COOKINGfood",
+ "breakfast",
+ "kitchen",
+ "egg",
+ ],
+ emoji_key: "fried_egg",
+ },
+ {
+ keywords: [
+ "shallow_pan_of_food",
+ "shallow",
+ "pan",
+ "of",
+ "food",
+ "SHALLOW",
+ "PAN",
+ "OF",
+ "FOODfood",
+ "cooking",
+ "casserole",
+ "paella",
+ ],
+ emoji_key: "shallow_pan_of_food",
+ },
+ {
+ keywords: ["stew", "stew", "POT", "OF", "FOODfood", "meat", "soup"],
+ emoji_key: "stew",
+ },
+ { keywords: ["fondue", "fondue", "FONDUE"], emoji_key: "fondue" },
+ {
+ keywords: [
+ "bowl_with_spoon",
+ "bowl",
+ "with",
+ "spoon",
+ "BOWL",
+ "WITH",
+ "SPOONfood",
+ "breakfast",
+ "cereal",
+ "oatmeal",
+ "porridge",
+ ],
+ emoji_key: "bowl_with_spoon",
+ },
+ {
+ keywords: [
+ "green_salad",
+ "green",
+ "salad",
+ "GREEN",
+ "SALADfood",
+ "healthy",
+ "lettuce",
+ ],
+ emoji_key: "green_salad",
+ },
+ {
+ keywords: [
+ "popcorn",
+ "popcorn",
+ "POPCORNfood",
+ "movie",
+ "theater",
+ "films",
+ "snack",
+ ],
+ emoji_key: "popcorn",
+ },
+ { keywords: ["butter", "butter", "BUTTER"], emoji_key: "butter" },
+ { keywords: ["salt", "salt", "SALT", "SHAKER"], emoji_key: "salt" },
+ {
+ keywords: ["canned_food", "canned", "food", "CANNED", "FOODfood", "soup"],
+ emoji_key: "canned_food",
+ },
+ {
+ keywords: ["bento", "bento", "BENTO", "BOXfood", "japanese", "box"],
+ emoji_key: "bento",
+ },
+ {
+ keywords: [
+ "rice_cracker",
+ "rice",
+ "cracker",
+ "RICE",
+ "CRACKERfood",
+ "japanese",
+ ],
+ emoji_key: "rice_cracker",
+ },
+ {
+ keywords: ["rice_ball", "rice", "ball", "RICE", "BALLfood", "japanese"],
+ emoji_key: "rice_ball",
+ },
+ {
+ keywords: ["rice", "rice", "COOKED", "RICEfood", "china", "asian"],
+ emoji_key: "rice",
+ },
+ {
+ keywords: [
+ "curry",
+ "curry",
+ "CURRY",
+ "AND",
+ "RICEfood",
+ "spicy",
+ "hot",
+ "indian",
+ ],
+ emoji_key: "curry",
+ },
+ {
+ keywords: [
+ "ramen",
+ "ramen",
+ "STEAMING",
+ "BOWLfood",
+ "japanese",
+ "noodle",
+ "chopsticks",
+ ],
+ emoji_key: "ramen",
+ },
+ {
+ keywords: [
+ "spaghetti",
+ "spaghetti",
+ "SPAGHETTIfood",
+ "italian",
+ "noodle",
+ ],
+ emoji_key: "spaghetti",
+ },
+ {
+ keywords: [
+ "sweet_potato",
+ "sweet",
+ "potato",
+ "ROASTED",
+ "SWEET",
+ "POTATOfood",
+ "nature",
+ ],
+ emoji_key: "sweet_potato",
+ },
+ { keywords: ["oden", "oden", "ODENfood", "japanese"], emoji_key: "oden" },
+ {
+ keywords: ["sushi", "sushi", "SUSHIfood", "fish", "japanese", "rice"],
+ emoji_key: "sushi",
+ },
+ {
+ keywords: [
+ "fried_shrimp",
+ "fried",
+ "shrimp",
+ "FRIED",
+ "SHRIMPfood",
+ "animal",
+ "appetizer",
+ "summer",
+ ],
+ emoji_key: "fried_shrimp",
+ },
+ {
+ keywords: [
+ "fish_cake",
+ "fish",
+ "cake",
+ "FISH",
+ "CAKE",
+ "WITH",
+ "SWIRL",
+ "DESIGNfood",
+ "japan",
+ "sea",
+ "beach",
+ "narutomaki",
+ "pink",
+ "swirl",
+ "kamaboko",
+ "surimi",
+ "ramen",
+ ],
+ emoji_key: "fish_cake",
+ },
+ {
+ keywords: ["moon_cake", "moon", "cake", "MOON", "CAKE"],
+ emoji_key: "moon_cake",
+ },
+ {
+ keywords: [
+ "dango",
+ "dango",
+ "DANGOfood",
+ "dessert",
+ "sweet",
+ "japanese",
+ "barbecue",
+ "meat",
+ ],
+ emoji_key: "dango",
+ },
+ {
+ keywords: [
+ "dumpling",
+ "dumpling",
+ "DUMPLINGfood",
+ "empanada",
+ "pierogi",
+ "potsticker",
+ ],
+ emoji_key: "dumpling",
+ },
+ {
+ keywords: [
+ "fortune_cookie",
+ "fortune",
+ "cookie",
+ "FORTUNE",
+ "COOKIEfood",
+ "prophecy",
+ ],
+ emoji_key: "fortune_cookie",
+ },
+ {
+ keywords: [
+ "takeout_box",
+ "takeout",
+ "box",
+ "TAKEOUT",
+ "BOXfood",
+ "leftovers",
+ ],
+ emoji_key: "takeout_box",
+ },
+ {
+ keywords: ["crab", "crab", "CRABanimal", "crustacean"],
+ emoji_key: "crab",
+ },
+ { keywords: ["lobster", "lobster", "LOBSTER"], emoji_key: "lobster" },
+ {
+ keywords: [
+ "shrimp",
+ "shrimp",
+ "SHRIMPanimal",
+ "ocean",
+ "nature",
+ "seafood",
+ ],
+ emoji_key: "shrimp",
+ },
+ {
+ keywords: ["squid", "squid", "SQUIDanimal", "nature", "ocean", "sea"],
+ emoji_key: "squid",
+ },
+ { keywords: ["oyster", "oyster", "OYSTER"], emoji_key: "oyster" },
+ {
+ keywords: [
+ "icecream",
+ "icecream",
+ "SOFT",
+ "ICE",
+ "CREAMfood",
+ "hot",
+ "dessert",
+ "summer",
+ ],
+ emoji_key: "icecream",
+ },
+ {
+ keywords: [
+ "shaved_ice",
+ "shaved",
+ "ice",
+ "SHAVED",
+ "ICEhot",
+ "dessert",
+ "summer",
+ ],
+ emoji_key: "shaved_ice",
+ },
+ {
+ keywords: [
+ "ice_cream",
+ "ice",
+ "cream",
+ "ICE",
+ "CREAMfood",
+ "hot",
+ "dessert",
+ ],
+ emoji_key: "ice_cream",
+ },
+ {
+ keywords: [
+ "doughnut",
+ "doughnut",
+ "DOUGHNUTfood",
+ "dessert",
+ "snack",
+ "sweet",
+ "donut",
+ ],
+ emoji_key: "doughnut",
+ },
+ {
+ keywords: [
+ "cookie",
+ "cookie",
+ "COOKIEfood",
+ "snack",
+ "oreo",
+ "chocolate",
+ "sweet",
+ "dessert",
+ ],
+ emoji_key: "cookie",
+ },
+ {
+ keywords: [
+ "birthday",
+ "birthday",
+ "BIRTHDAY",
+ "CAKEfood",
+ "dessert",
+ "cake",
+ ],
+ emoji_key: "birthday",
+ },
+ {
+ keywords: ["cake", "cake", "SHORTCAKEfood", "dessert"],
+ emoji_key: "cake",
+ },
+ { keywords: ["cupcake", "cupcake", "CUPCAKE"], emoji_key: "cupcake" },
+ {
+ keywords: ["pie", "pie", "PIEfood", "dessert", "pastry"],
+ emoji_key: "pie",
+ },
+ {
+ keywords: [
+ "chocolate_bar",
+ "chocolate",
+ "bar",
+ "CHOCOLATE",
+ "BARfood",
+ "snack",
+ "dessert",
+ "sweet",
+ ],
+ emoji_key: "chocolate_bar",
+ },
+ {
+ keywords: ["candy", "candy", "CANDYsnack", "dessert", "sweet", "lolly"],
+ emoji_key: "candy",
+ },
+ {
+ keywords: [
+ "lollipop",
+ "lollipop",
+ "LOLLIPOPfood",
+ "snack",
+ "candy",
+ "sweet",
+ ],
+ emoji_key: "lollipop",
+ },
+ {
+ keywords: ["custard", "custard", "CUSTARDdessert", "food"],
+ emoji_key: "custard",
+ },
+ {
+ keywords: [
+ "honey_pot",
+ "honey",
+ "pot",
+ "HONEY",
+ "POTbees",
+ "sweet",
+ "kitchen",
+ ],
+ emoji_key: "honey_pot",
+ },
+ {
+ keywords: [
+ "baby_bottle",
+ "baby",
+ "bottle",
+ "BABY",
+ "BOTTLEfood",
+ "container",
+ "milk",
+ ],
+ emoji_key: "baby_bottle",
+ },
+ {
+ keywords: ["glass_of_milk", "glass", "of", "milk", "GLASS", "OF", "MILK"],
+ emoji_key: "glass_of_milk",
+ },
+ {
+ keywords: [
+ "coffee",
+ "coffee",
+ "HOT",
+ "BEVERAGEbeverage",
+ "caffeine",
+ "latte",
+ "espresso",
+ ],
+ emoji_key: "coffee",
+ },
+ { keywords: ["teapot", "teapot", "TEAPOT"], emoji_key: "teapot" },
+ {
+ keywords: [
+ "tea",
+ "tea",
+ "TEACUP",
+ "WITHOUT",
+ "HANDLEdrink",
+ "bowl",
+ "breakfast",
+ "green",
+ "british",
+ ],
+ emoji_key: "tea",
+ },
+ {
+ keywords: [
+ "sake",
+ "sake",
+ "SAKE",
+ "BOTTLE",
+ "AND",
+ "CUPwine",
+ "drink",
+ "drunk",
+ "beverage",
+ "japanese",
+ "alcohol",
+ "booze",
+ ],
+ emoji_key: "sake",
+ },
+ {
+ keywords: [
+ "champagne",
+ "champagne",
+ "BOTTLE",
+ "WITH",
+ "POPPING",
+ "CORKdrink",
+ "wine",
+ "bottle",
+ "celebration",
+ ],
+ emoji_key: "champagne",
+ },
+ {
+ keywords: [
+ "wine_glass",
+ "wine",
+ "glass",
+ "WINE",
+ "GLASSdrink",
+ "beverage",
+ "drunk",
+ "alcohol",
+ "booze",
+ ],
+ emoji_key: "wine_glass",
+ },
+ {
+ keywords: [
+ "cocktail",
+ "cocktail",
+ "COCKTAIL",
+ "GLASSdrink",
+ "drunk",
+ "alcohol",
+ "beverage",
+ "booze",
+ "mojito",
+ ],
+ emoji_key: "cocktail",
+ },
+ {
+ keywords: [
+ "tropical_drink",
+ "tropical",
+ "drink",
+ "TROPICAL",
+ "DRINKbeverage",
+ "cocktail",
+ "summer",
+ "beach",
+ "alcohol",
+ "booze",
+ "mojito",
+ ],
+ emoji_key: "tropical_drink",
+ },
+ {
+ keywords: [
+ "beer",
+ "beer",
+ "BEER",
+ "MUGrelax",
+ "beverage",
+ "drink",
+ "drunk",
+ "party",
+ "pub",
+ "summer",
+ "alcohol",
+ "booze",
+ ],
+ emoji_key: "beer",
+ },
+ {
+ keywords: [
+ "beers",
+ "beers",
+ "CLINKING",
+ "BEER",
+ "MUGSrelax",
+ "beverage",
+ "drink",
+ "drunk",
+ "party",
+ "pub",
+ "summer",
+ "alcohol",
+ "booze",
+ ],
+ emoji_key: "beers",
+ },
+ {
+ keywords: [
+ "clinking_glasses",
+ "clinking",
+ "glasses",
+ "CLINKING",
+ "GLASSESbeverage",
+ "drink",
+ "party",
+ "alcohol",
+ "celebrate",
+ "cheers",
+ ],
+ emoji_key: "clinking_glasses",
+ },
+ {
+ keywords: [
+ "tumbler_glass",
+ "tumbler",
+ "glass",
+ "TUMBLER",
+ "GLASSdrink",
+ "beverage",
+ "drunk",
+ "alcohol",
+ "liquor",
+ "booze",
+ "bourbon",
+ "scotch",
+ "whisky",
+ "glass",
+ "shot",
+ ],
+ emoji_key: "tumbler_glass",
+ },
+ {
+ keywords: ["pouring_liquid", "pouring", "liquid", "POURING", "LIQUID"],
+ emoji_key: "pouring_liquid",
+ },
+ {
+ keywords: [
+ "cup_with_straw",
+ "cup",
+ "with",
+ "straw",
+ "CUP",
+ "WITH",
+ "STRAWdrink",
+ "soda",
+ ],
+ emoji_key: "cup_with_straw",
+ },
+ {
+ keywords: ["bubble_tea", "bubble", "tea", "BUBBLE", "TEA"],
+ emoji_key: "bubble_tea",
+ },
+ {
+ keywords: ["beverage_box", "beverage", "box", "BEVERAGE", "BOX"],
+ emoji_key: "beverage_box",
+ },
+ {
+ keywords: ["mate_drink", "mate", "drink", "MATE", "DRINK"],
+ emoji_key: "mate_drink",
+ },
+ {
+ keywords: ["ice_cube", "ice", "cube", "ICE", "CUBE"],
+ emoji_key: "ice_cube",
+ },
+ {
+ keywords: ["chopsticks", "chopsticks", "CHOPSTICKSfood"],
+ emoji_key: "chopsticks",
+ },
+ {
+ keywords: [
+ "knife_fork_plate",
+ "knife",
+ "fork",
+ "plate",
+ "FORK",
+ "AND",
+ "KNIFE",
+ "WITH",
+ "PLATE",
+ ],
+ emoji_key: "knife_fork_plate",
+ },
+ {
+ keywords: [
+ "fork_and_knife",
+ "fork",
+ "and",
+ "knife",
+ "FORK",
+ "AND",
+ "KNIFEcutlery",
+ "kitchen",
+ ],
+ emoji_key: "fork_and_knife",
+ },
+ {
+ keywords: ["spoon", "spoon", "SPOONcutlery", "kitchen", "tableware"],
+ emoji_key: "spoon",
+ },
+ {
+ keywords: [
+ "hocho",
+ "hocho",
+ "HOCHOknife",
+ "blade",
+ "cutlery",
+ "kitchen",
+ "weapon",
+ ],
+ emoji_key: "hocho",
+ },
+ { keywords: ["jar", "jar", "JAR"], emoji_key: "jar" },
+ {
+ keywords: ["amphora", "amphora", "AMPHORAvase", "jar"],
+ emoji_key: "amphora",
+ },
+ {
+ keywords: [
+ "earth_africa",
+ "earth",
+ "africa",
+ "EARTH",
+ "GLOBE",
+ "EUROPE-AFRICAeastern",
+ "hemisphere",
+ "globe",
+ "international",
+ "continent",
+ "world",
+ ],
+ emoji_key: "earth_africa",
+ },
+ {
+ keywords: [
+ "earth_americas",
+ "earth",
+ "americas",
+ "EARTH",
+ "GLOBE",
+ "AMERICASUSA",
+ "globe",
+ "western",
+ "hemisphere",
+ "international",
+ "world",
+ ],
+ emoji_key: "earth_americas",
+ },
+ {
+ keywords: [
+ "earth_asia",
+ "earth",
+ "asia",
+ "EARTH",
+ "GLOBE",
+ "ASIA-AUSTRALIAeast",
+ "world",
+ "eastern",
+ "hemisphere",
+ "globe",
+ "continent",
+ "international",
+ ],
+ emoji_key: "earth_asia",
+ },
+ {
+ keywords: [
+ "globe_with_meridians",
+ "globe",
+ "with",
+ "meridians",
+ "GLOBE",
+ "WITH",
+ "MERIDIANSinternet",
+ "world",
+ "i18n",
+ "earth",
+ "interweb",
+ "hemisphere",
+ "international",
+ ],
+ emoji_key: "globe_with_meridians",
+ },
+ {
+ keywords: [
+ "world_map",
+ "world",
+ "map",
+ "WORLD",
+ "MAPatlas",
+ "location",
+ "direction",
+ ],
+ emoji_key: "world_map",
+ },
+ {
+ keywords: [
+ "japan",
+ "japan",
+ "SILHOUETTE",
+ "OF",
+ "JAPANjapanese",
+ "nation",
+ "tokyo",
+ "nihon",
+ "asia",
+ "country",
+ "nippon",
+ ],
+ emoji_key: "japan",
+ },
+ {
+ keywords: ["compass", "compass", "COMPASScircumnavigate"],
+ emoji_key: "compass",
+ },
+ {
+ keywords: [
+ "snow_capped_mountain",
+ "snow",
+ "capped",
+ "mountain",
+ "SNOW-CAPPED",
+ "MOUNTAINsnowcap",
+ "fuji",
+ ],
+ emoji_key: "snow_capped_mountain",
+ },
+ {
+ keywords: [
+ "mountain",
+ "mountain",
+ "MOUNTAINhighland",
+ "upland",
+ "nature",
+ "ridge",
+ "environment",
+ "photo",
+ "alpine",
+ "hill",
+ ],
+ emoji_key: "mountain",
+ },
+ {
+ keywords: [
+ "volcano",
+ "volcano",
+ "VOLCANOnature",
+ "photo",
+ "lava",
+ "disaster",
+ "ash",
+ "eruption",
+ ],
+ emoji_key: "volcano",
+ },
+ {
+ keywords: [
+ "mount_fuji",
+ "mount",
+ "fuji",
+ "MOUNT",
+ "FUJIphoto",
+ "mountain",
+ "nature",
+ "japanese",
+ ],
+ emoji_key: "mount_fuji",
+ },
+ {
+ keywords: [
+ "camping",
+ "camping",
+ "CAMPINGcampgrounds",
+ "tent",
+ "outdoors",
+ "photo",
+ ],
+ emoji_key: "camping",
+ },
+ {
+ keywords: [
+ "beach_with_umbrella",
+ "beach",
+ "with",
+ "umbrella",
+ "BEACH",
+ "WITH",
+ "UMBRELLAparasol",
+ ],
+ emoji_key: "beach_with_umbrella",
+ },
+ {
+ keywords: ["desert", "desert", "DESERTphoto", "warm", "saharah"],
+ emoji_key: "desert",
+ },
+ {
+ keywords: [
+ "desert_island",
+ "desert",
+ "island",
+ "DESERT",
+ "ISLANDphoto",
+ "tropical",
+ "mojito",
+ ],
+ emoji_key: "desert_island",
+ },
+ {
+ keywords: [
+ "national_park",
+ "national",
+ "park",
+ "NATIONAL",
+ "PARKphoto",
+ "environment",
+ "nature",
+ ],
+ emoji_key: "national_park",
+ },
+ {
+ keywords: [
+ "stadium",
+ "stadium",
+ "STADIUMplace",
+ "venue",
+ "sports",
+ "concert",
+ "coliseum",
+ "photo",
+ "arena",
+ ],
+ emoji_key: "stadium",
+ },
+ {
+ keywords: [
+ "classical_building",
+ "classical",
+ "building",
+ "CLASSICAL",
+ "BUILDINGart",
+ "culture",
+ "history",
+ ],
+ emoji_key: "classical_building",
+ },
+ {
+ keywords: [
+ "building_construction",
+ "building",
+ "construction",
+ "BUILDING",
+ "CONSTRUCTIONwip",
+ "architecture",
+ "progress",
+ "working",
+ ],
+ emoji_key: "building_construction",
+ },
+ { keywords: ["bricks", "bricks", "BRICK"], emoji_key: "bricks" },
+ { keywords: ["rock", "rock", "ROCK"], emoji_key: "rock" },
+ { keywords: ["wood", "wood", "WOOD"], emoji_key: "wood" },
+ { keywords: ["hut", "hut", "HUT"], emoji_key: "hut" },
+ {
+ keywords: ["house_buildings", "house", "buildings", "HOUSES"],
+ emoji_key: "house_buildings",
+ },
+ {
+ keywords: [
+ "derelict_house_building",
+ "derelict",
+ "house",
+ "building",
+ "DERELICT",
+ "HOUSE",
+ ],
+ emoji_key: "derelict_house_building",
+ },
+ {
+ keywords: ["house", "house", "HOUSE", "BUILDINGhome", "building"],
+ emoji_key: "house",
+ },
+ {
+ keywords: [
+ "house_with_garden",
+ "house",
+ "with",
+ "garden",
+ "HOUSE",
+ "WITH",
+ "GARDENhome",
+ "plant",
+ "nature",
+ ],
+ emoji_key: "house_with_garden",
+ },
+ {
+ keywords: [
+ "office",
+ "office",
+ "OFFICE",
+ "BUILDINGbuilding",
+ "bureau",
+ "agency",
+ "work",
+ ],
+ emoji_key: "office",
+ },
+ {
+ keywords: [
+ "post_office",
+ "post",
+ "office",
+ "JAPANESE",
+ "POST",
+ "OFFICEmail",
+ "envelope",
+ "building",
+ "postal",
+ "communication",
+ ],
+ emoji_key: "post_office",
+ },
+ {
+ keywords: [
+ "european_post_office",
+ "european",
+ "post",
+ "office",
+ "EUROPEAN",
+ "POST",
+ "OFFICEbuilding",
+ "email",
+ ],
+ emoji_key: "european_post_office",
+ },
+ {
+ keywords: [
+ "hospital",
+ "hospital",
+ "HOSPITALsurgery",
+ "medical",
+ "health",
+ "building",
+ "doctor",
+ "clinic",
+ ],
+ emoji_key: "hospital",
+ },
+ {
+ keywords: [
+ "bank",
+ "bank",
+ "BANKbusiness",
+ "sales",
+ "cash",
+ "enterprise",
+ "trust",
+ "building",
+ "money",
+ ],
+ emoji_key: "bank",
+ },
+ {
+ keywords: ["hotel", "hotel", "HOTELbuilding", "accomodation", "checkin"],
+ emoji_key: "hotel",
+ },
+ {
+ keywords: [
+ "love_hotel",
+ "love",
+ "hotel",
+ "LOVE",
+ "HOTELlike",
+ "affection",
+ "dating",
+ ],
+ emoji_key: "love_hotel",
+ },
+ {
+ keywords: [
+ "convenience_store",
+ "convenience",
+ "store",
+ "CONVENIENCE",
+ "STOREbuilding",
+ "shopping",
+ "groceries",
+ ],
+ emoji_key: "convenience_store",
+ },
+ {
+ keywords: [
+ "school",
+ "school",
+ "SCHOOLbuilding",
+ "student",
+ "education",
+ "learn",
+ "teach",
+ ],
+ emoji_key: "school",
+ },
+ {
+ keywords: [
+ "department_store",
+ "department",
+ "store",
+ "DEPARTMENT",
+ "STOREbuilding",
+ "shopping",
+ "mall",
+ ],
+ emoji_key: "department_store",
+ },
+ {
+ keywords: [
+ "factory",
+ "factory",
+ "FACTORYbuilding",
+ "industry",
+ "pollution",
+ "smoke",
+ ],
+ emoji_key: "factory",
+ },
+ {
+ keywords: [
+ "japanese_castle",
+ "japanese",
+ "castle",
+ "JAPANESE",
+ "CASTLEphoto",
+ "building",
+ ],
+ emoji_key: "japanese_castle",
+ },
+ {
+ keywords: [
+ "european_castle",
+ "european",
+ "castle",
+ "EUROPEAN",
+ "CASTLEbuilding",
+ "royalty",
+ "history",
+ ],
+ emoji_key: "european_castle",
+ },
+ {
+ keywords: [
+ "wedding",
+ "wedding",
+ "WEDDINGlove",
+ "like",
+ "affection",
+ "couple",
+ "marriage",
+ "bride",
+ "groom",
+ ],
+ emoji_key: "wedding",
+ },
+ {
+ keywords: [
+ "tokyo_tower",
+ "tokyo",
+ "tower",
+ "TOKYO",
+ "TOWERphoto",
+ "japanese",
+ ],
+ emoji_key: "tokyo_tower",
+ },
+ {
+ keywords: [
+ "statue_of_liberty",
+ "statue",
+ "of",
+ "liberty",
+ "STATUE",
+ "OF",
+ "LIBERTYamerican",
+ "newyork",
+ ],
+ emoji_key: "statue_of_liberty",
+ },
+ {
+ keywords: ["church", "church", "CHURCHbuilding", "religion", "christ"],
+ emoji_key: "church",
+ },
+ {
+ keywords: ["mosque", "mosque", "MOSQUEislam", "worship", "minaret"],
+ emoji_key: "mosque",
+ },
+ {
+ keywords: ["hindu_temple", "hindu", "temple", "HINDU", "TEMPLE"],
+ emoji_key: "hindu_temple",
+ },
+ {
+ keywords: [
+ "synagogue",
+ "synagogue",
+ "SYNAGOGUEjudaism",
+ "worship",
+ "temple",
+ "jewish",
+ ],
+ emoji_key: "synagogue",
+ },
+ {
+ keywords: [
+ "shinto_shrine",
+ "shinto",
+ "shrine",
+ "SHINTO",
+ "SHRINEtemple",
+ "japan",
+ "kyoto",
+ ],
+ emoji_key: "shinto_shrine",
+ },
+ {
+ keywords: ["kaaba", "kaaba", "KAABAmecca", "mosque", "islam"],
+ emoji_key: "kaaba",
+ },
+ {
+ keywords: [
+ "fountain",
+ "fountain",
+ "FOUNTAINphoto",
+ "summer",
+ "water",
+ "fresh",
+ ],
+ emoji_key: "fountain",
+ },
+ {
+ keywords: ["tent", "tent", "TENTphoto", "camping", "outdoors"],
+ emoji_key: "tent",
+ },
+ {
+ keywords: ["foggy", "foggy", "FOGGYphoto", "mountain"],
+ emoji_key: "foggy",
+ },
+ {
+ keywords: [
+ "night_with_stars",
+ "night",
+ "with",
+ "stars",
+ "NIGHT",
+ "WITH",
+ "STARSevening",
+ "city",
+ "downtown",
+ ],
+ emoji_key: "night_with_stars",
+ },
+ {
+ keywords: [
+ "cityscape",
+ "cityscape",
+ "CITYSCAPEphoto",
+ "night",
+ "life",
+ "urban",
+ ],
+ emoji_key: "cityscape",
+ },
+ {
+ keywords: [
+ "sunrise_over_mountains",
+ "sunrise",
+ "over",
+ "mountains",
+ "SUNRISE",
+ "OVER",
+ "MOUNTAINSview",
+ "vacation",
+ "photo",
+ ],
+ emoji_key: "sunrise_over_mountains",
+ },
+ {
+ keywords: [
+ "sunrise",
+ "sunrise",
+ "SUNRISEmorning",
+ "view",
+ "vacation",
+ "photo",
+ ],
+ emoji_key: "sunrise",
+ },
+ {
+ keywords: [
+ "city_sunset",
+ "city",
+ "sunset",
+ "CITYSCAPE",
+ "AT",
+ "DUSKphoto",
+ "evening",
+ "sky",
+ "buildings",
+ ],
+ emoji_key: "city_sunset",
+ },
+ {
+ keywords: [
+ "city_sunrise",
+ "city",
+ "sunrise",
+ "SUNSET",
+ "OVER",
+ "BUILDINGSphoto",
+ "good",
+ "morning",
+ "dawn",
+ ],
+ emoji_key: "city_sunrise",
+ },
+ {
+ keywords: [
+ "bridge_at_night",
+ "bridge",
+ "at",
+ "night",
+ "BRIDGE",
+ "AT",
+ "NIGHTphoto",
+ "sanfrancisco",
+ ],
+ emoji_key: "bridge_at_night",
+ },
+ {
+ keywords: [
+ "hotsprings",
+ "hotsprings",
+ "HOT",
+ "SPRINGSbath",
+ "warm",
+ "relax",
+ ],
+ emoji_key: "hotsprings",
+ },
+ {
+ keywords: [
+ "carousel_horse",
+ "carousel",
+ "horse",
+ "CAROUSEL",
+ "HORSEphoto",
+ "carnival",
+ ],
+ emoji_key: "carousel_horse",
+ },
+ {
+ keywords: [
+ "playground_slide",
+ "playground",
+ "slide",
+ "PLAYGROUND",
+ "SLIDE",
+ ],
+ emoji_key: "playground_slide",
+ },
+ {
+ keywords: [
+ "ferris_wheel",
+ "ferris",
+ "wheel",
+ "FERRIS",
+ "WHEELphoto",
+ "carnival",
+ "londoneye",
+ ],
+ emoji_key: "ferris_wheel",
+ },
+ {
+ keywords: [
+ "roller_coaster",
+ "roller",
+ "coaster",
+ "ROLLER",
+ "COASTERcarnival",
+ "playground",
+ "photo",
+ "fun",
+ ],
+ emoji_key: "roller_coaster",
+ },
+ {
+ keywords: ["barber", "barber", "BARBER", "POLEhair", "salon", "style"],
+ emoji_key: "barber",
+ },
+ {
+ keywords: [
+ "circus_tent",
+ "circus",
+ "tent",
+ "CIRCUS",
+ "TENTfestival",
+ "carnival",
+ "party",
+ ],
+ emoji_key: "circus_tent",
+ },
+ {
+ keywords: [
+ "steam_locomotive",
+ "steam",
+ "locomotive",
+ "STEAM",
+ "LOCOMOTIVEtransportation",
+ "vehicle",
+ "train",
+ ],
+ emoji_key: "steam_locomotive",
+ },
+ {
+ keywords: [
+ "railway_car",
+ "railway",
+ "car",
+ "RAILWAY",
+ "CARtransportation",
+ "vehicle",
+ ],
+ emoji_key: "railway_car",
+ },
+ {
+ keywords: [
+ "bullettrain_side",
+ "bullettrain",
+ "side",
+ "HIGH-SPEED",
+ "TRAINtransportation",
+ "vehicle",
+ ],
+ emoji_key: "bullettrain_side",
+ },
+ {
+ keywords: [
+ "bullettrain_front",
+ "bullettrain",
+ "front",
+ "HIGH-SPEED",
+ "TRAIN",
+ "WITH",
+ "BULLET",
+ "NOSEtransportation",
+ "vehicle",
+ "speed",
+ "fast",
+ "public",
+ "travel",
+ ],
+ emoji_key: "bullettrain_front",
+ },
+ {
+ keywords: ["train2", "train2", "TRAINtransportation", "vehicle"],
+ emoji_key: "train2",
+ },
+ {
+ keywords: [
+ "metro",
+ "metro",
+ "METROtransportation",
+ "blue-square",
+ "mrt",
+ "underground",
+ "tube",
+ ],
+ emoji_key: "metro",
+ },
+ {
+ keywords: [
+ "light_rail",
+ "light",
+ "rail",
+ "LIGHT",
+ "RAILtransportation",
+ "vehicle",
+ ],
+ emoji_key: "light_rail",
+ },
+ {
+ keywords: [
+ "station",
+ "station",
+ "STATIONtransportation",
+ "vehicle",
+ "public",
+ ],
+ emoji_key: "station",
+ },
+ {
+ keywords: ["tram", "tram", "TRAMtransportation", "vehicle"],
+ emoji_key: "tram",
+ },
+ {
+ keywords: ["monorail", "monorail", "MONORAILtransportation", "vehicle"],
+ emoji_key: "monorail",
+ },
+ {
+ keywords: [
+ "mountain_railway",
+ "mountain",
+ "railway",
+ "MOUNTAIN",
+ "RAILWAYtransportation",
+ "vehicle",
+ ],
+ emoji_key: "mountain_railway",
+ },
+ {
+ keywords: [
+ "train",
+ "train",
+ "TRAM",
+ "CARtransportation",
+ "vehicle",
+ "carriage",
+ "public",
+ "travel",
+ ],
+ emoji_key: "train",
+ },
+ {
+ keywords: ["bus", "bus", "BUScar", "vehicle", "transportation"],
+ emoji_key: "bus",
+ },
+ {
+ keywords: [
+ "oncoming_bus",
+ "oncoming",
+ "bus",
+ "ONCOMING",
+ "BUSvehicle",
+ "transportation",
+ ],
+ emoji_key: "oncoming_bus",
+ },
+ {
+ keywords: [
+ "trolleybus",
+ "trolleybus",
+ "TROLLEYBUSbart",
+ "transportation",
+ "vehicle",
+ ],
+ emoji_key: "trolleybus",
+ },
+ {
+ keywords: [
+ "minibus",
+ "minibus",
+ "MINIBUSvehicle",
+ "car",
+ "transportation",
+ ],
+ emoji_key: "minibus",
+ },
+ {
+ keywords: [
+ "ambulance",
+ "ambulance",
+ "AMBULANCEhealth",
+ "911",
+ "hospital",
+ ],
+ emoji_key: "ambulance",
+ },
+ {
+ keywords: [
+ "fire_engine",
+ "fire",
+ "engine",
+ "FIRE",
+ "ENGINEtransportation",
+ "cars",
+ "vehicle",
+ ],
+ emoji_key: "fire_engine",
+ },
+ {
+ keywords: [
+ "police_car",
+ "police",
+ "car",
+ "POLICE",
+ "CARvehicle",
+ "cars",
+ "transportation",
+ "law",
+ "legal",
+ "enforcement",
+ ],
+ emoji_key: "police_car",
+ },
+ {
+ keywords: [
+ "oncoming_police_car",
+ "oncoming",
+ "police",
+ "car",
+ "ONCOMING",
+ "POLICE",
+ "CARvehicle",
+ "law",
+ "legal",
+ "enforcement",
+ "911",
+ ],
+ emoji_key: "oncoming_police_car",
+ },
+ {
+ keywords: [
+ "taxi",
+ "taxi",
+ "TAXIuber",
+ "vehicle",
+ "cars",
+ "transportation",
+ ],
+ emoji_key: "taxi",
+ },
+ {
+ keywords: [
+ "oncoming_taxi",
+ "oncoming",
+ "taxi",
+ "ONCOMING",
+ "TAXIvehicle",
+ "cars",
+ "uber",
+ ],
+ emoji_key: "oncoming_taxi",
+ },
+ { keywords: ["car", "car", "AUTOMOBILE"], emoji_key: "car" },
+ {
+ keywords: [
+ "oncoming_automobile",
+ "oncoming",
+ "automobile",
+ "ONCOMING",
+ "AUTOMOBILEcar",
+ "vehicle",
+ "transportation",
+ ],
+ emoji_key: "oncoming_automobile",
+ },
+ {
+ keywords: [
+ "blue_car",
+ "blue",
+ "car",
+ "RECREATIONAL",
+ "VEHICLEtransportation",
+ "vehicle",
+ ],
+ emoji_key: "blue_car",
+ },
+ {
+ keywords: ["pickup_truck", "pickup", "truck", "PICKUP", "TRUCK"],
+ emoji_key: "pickup_truck",
+ },
+ {
+ keywords: ["truck", "truck", "DELIVERY", "TRUCKcars", "transportation"],
+ emoji_key: "truck",
+ },
+ {
+ keywords: [
+ "articulated_lorry",
+ "articulated",
+ "lorry",
+ "ARTICULATED",
+ "LORRYvehicle",
+ "cars",
+ "transportation",
+ "express",
+ ],
+ emoji_key: "articulated_lorry",
+ },
+ {
+ keywords: [
+ "tractor",
+ "tractor",
+ "TRACTORvehicle",
+ "car",
+ "farming",
+ "agriculture",
+ ],
+ emoji_key: "tractor",
+ },
+ {
+ keywords: [
+ "racing_car",
+ "racing",
+ "car",
+ "RACING",
+ "CARsports",
+ "race",
+ "fast",
+ "formula",
+ "f1",
+ ],
+ emoji_key: "racing_car",
+ },
+ {
+ keywords: ["racing_motorcycle", "racing", "motorcycle", "MOTORCYCLE"],
+ emoji_key: "racing_motorcycle",
+ },
+ {
+ keywords: [
+ "motor_scooter",
+ "motor",
+ "scooter",
+ "MOTOR",
+ "SCOOTERvehicle",
+ "vespa",
+ "sasha",
+ ],
+ emoji_key: "motor_scooter",
+ },
+ {
+ keywords: [
+ "manual_wheelchair",
+ "manual",
+ "wheelchair",
+ "MANUAL",
+ "WHEELCHAIR",
+ ],
+ emoji_key: "manual_wheelchair",
+ },
+ {
+ keywords: [
+ "motorized_wheelchair",
+ "motorized",
+ "wheelchair",
+ "MOTORIZED",
+ "WHEELCHAIR",
+ ],
+ emoji_key: "motorized_wheelchair",
+ },
+ {
+ keywords: ["auto_rickshaw", "auto", "rickshaw", "AUTO", "RICKSHAW"],
+ emoji_key: "auto_rickshaw",
+ },
+ {
+ keywords: [
+ "bike",
+ "bike",
+ "BICYCLEsports",
+ "bicycle",
+ "exercise",
+ "hipster",
+ ],
+ emoji_key: "bike",
+ },
+ { keywords: ["scooter", "scooter", "SCOOTER"], emoji_key: "scooter" },
+ {
+ keywords: ["skateboard", "skateboard", "SKATEBOARD"],
+ emoji_key: "skateboard",
+ },
+ {
+ keywords: ["roller_skate", "roller", "skate", "ROLLER", "SKATE"],
+ emoji_key: "roller_skate",
+ },
+ {
+ keywords: ["busstop", "busstop", "BUS", "STOPtransportation", "wait"],
+ emoji_key: "busstop",
+ },
+ {
+ keywords: [
+ "motorway",
+ "motorway",
+ "MOTORWAYroad",
+ "cupertino",
+ "interstate",
+ "highway",
+ ],
+ emoji_key: "motorway",
+ },
+ {
+ keywords: [
+ "railway_track",
+ "railway",
+ "track",
+ "RAILWAY",
+ "TRACKtrain",
+ "transportation",
+ ],
+ emoji_key: "railway_track",
+ },
+ {
+ keywords: ["oil_drum", "oil", "drum", "OIL", "DRUMbarrell"],
+ emoji_key: "oil_drum",
+ },
+ {
+ keywords: [
+ "fuelpump",
+ "fuelpump",
+ "FUEL",
+ "PUMPgas",
+ "station",
+ "petroleum",
+ ],
+ emoji_key: "fuelpump",
+ },
+ { keywords: ["wheel", "wheel", "WHEEL"], emoji_key: "wheel" },
+ {
+ keywords: [
+ "rotating_light",
+ "rotating",
+ "light",
+ "POLICE",
+ "CARS",
+ "REVOLVING",
+ "LIGHTpolice",
+ "ambulance",
+ "911",
+ "emergency",
+ "alert",
+ "error",
+ "pinged",
+ "law",
+ "legal",
+ ],
+ emoji_key: "rotating_light",
+ },
+ {
+ keywords: [
+ "traffic_light",
+ "traffic",
+ "light",
+ "HORIZONTAL",
+ "TRAFFIC",
+ "LIGHTtransportation",
+ "signal",
+ ],
+ emoji_key: "traffic_light",
+ },
+ {
+ keywords: [
+ "vertical_traffic_light",
+ "vertical",
+ "traffic",
+ "light",
+ "VERTICAL",
+ "TRAFFIC",
+ "LIGHTtransportation",
+ "driving",
+ ],
+ emoji_key: "vertical_traffic_light",
+ },
+ {
+ keywords: ["octagonal_sign", "octagonal", "sign", "OCTAGONAL", "SIGN"],
+ emoji_key: "octagonal_sign",
+ },
+ {
+ keywords: [
+ "construction",
+ "construction",
+ "CONSTRUCTION",
+ "SIGNwip",
+ "progress",
+ "caution",
+ "warning",
+ ],
+ emoji_key: "construction",
+ },
+ {
+ keywords: ["anchor", "anchor", "ANCHORship", "ferry", "sea", "boat"],
+ emoji_key: "anchor",
+ },
+ {
+ keywords: ["ring_buoy", "ring", "buoy", "RING", "BUOY"],
+ emoji_key: "ring_buoy",
+ },
+ { keywords: ["boat", "boat", "SAILBOAT"], emoji_key: "boat" },
+ {
+ keywords: ["canoe", "canoe", "CANOEboat", "paddle", "water", "ship"],
+ emoji_key: "canoe",
+ },
+ {
+ keywords: [
+ "speedboat",
+ "speedboat",
+ "SPEEDBOATship",
+ "transportation",
+ "vehicle",
+ "summer",
+ ],
+ emoji_key: "speedboat",
+ },
+ {
+ keywords: [
+ "passenger_ship",
+ "passenger",
+ "ship",
+ "PASSENGER",
+ "SHIPyacht",
+ "cruise",
+ "ferry",
+ ],
+ emoji_key: "passenger_ship",
+ },
+ {
+ keywords: ["ferry", "ferry", "FERRYboat", "ship", "yacht"],
+ emoji_key: "ferry",
+ },
+ {
+ keywords: ["motor_boat", "motor", "boat", "MOTOR", "BOATship"],
+ emoji_key: "motor_boat",
+ },
+ {
+ keywords: ["ship", "ship", "SHIPtransportation", "titanic", "deploy"],
+ emoji_key: "ship",
+ },
+ {
+ keywords: [
+ "airplane",
+ "airplane",
+ "AIRPLANEvehicle",
+ "transportation",
+ "flight",
+ "fly",
+ ],
+ emoji_key: "airplane",
+ },
+ {
+ keywords: [
+ "small_airplane",
+ "small",
+ "airplane",
+ "SMALL",
+ "AIRPLANEflight",
+ "transportation",
+ "fly",
+ "vehicle",
+ ],
+ emoji_key: "small_airplane",
+ },
+ {
+ keywords: [
+ "airplane_departure",
+ "airplane",
+ "departure",
+ "AIRPLANE",
+ "DEPARTURE",
+ ],
+ emoji_key: "airplane_departure",
+ },
+ {
+ keywords: [
+ "airplane_arriving",
+ "airplane",
+ "arriving",
+ "AIRPLANE",
+ "ARRIVING",
+ ],
+ emoji_key: "airplane_arriving",
+ },
+ {
+ keywords: ["parachute", "parachute", "PARACHUTE"],
+ emoji_key: "parachute",
+ },
+ {
+ keywords: [
+ "seat",
+ "seat",
+ "SEATsit",
+ "airplane",
+ "transport",
+ "bus",
+ "flight",
+ "fly",
+ ],
+ emoji_key: "seat",
+ },
+ {
+ keywords: [
+ "helicopter",
+ "helicopter",
+ "HELICOPTERtransportation",
+ "vehicle",
+ "fly",
+ ],
+ emoji_key: "helicopter",
+ },
+ {
+ keywords: [
+ "suspension_railway",
+ "suspension",
+ "railway",
+ "SUSPENSION",
+ "RAILWAYvehicle",
+ "transportation",
+ ],
+ emoji_key: "suspension_railway",
+ },
+ {
+ keywords: [
+ "mountain_cableway",
+ "mountain",
+ "cableway",
+ "MOUNTAIN",
+ "CABLEWAYtransportation",
+ "vehicle",
+ "ski",
+ ],
+ emoji_key: "mountain_cableway",
+ },
+ {
+ keywords: [
+ "aerial_tramway",
+ "aerial",
+ "tramway",
+ "AERIAL",
+ "TRAMWAYtransportation",
+ "vehicle",
+ "ski",
+ ],
+ emoji_key: "aerial_tramway",
+ },
+ {
+ keywords: [
+ "satellite",
+ "satellite",
+ "SATELLITEcommunication",
+ "future",
+ "radio",
+ "space",
+ ],
+ emoji_key: "satellite",
+ },
+ {
+ keywords: [
+ "rocket",
+ "rocket",
+ "ROCKETlaunch",
+ "ship",
+ "staffmode",
+ "NASA",
+ "outer",
+ "space",
+ "outer",
+ "space",
+ "fly",
+ ],
+ emoji_key: "rocket",
+ },
+ {
+ keywords: [
+ "flying_saucer",
+ "flying",
+ "saucer",
+ "FLYING",
+ "SAUCERtransportation",
+ "vehicle",
+ "ufo",
+ ],
+ emoji_key: "flying_saucer",
+ },
+ {
+ keywords: ["bellhop_bell", "bellhop", "bell", "BELLHOP", "BELLservice"],
+ emoji_key: "bellhop_bell",
+ },
+ { keywords: ["luggage", "luggage", "LUGGAGE"], emoji_key: "luggage" },
+ {
+ keywords: [
+ "hourglass",
+ "hourglass",
+ "HOURGLASStime",
+ "clock",
+ "oldschool",
+ "limit",
+ "exam",
+ "quiz",
+ "test",
+ ],
+ emoji_key: "hourglass",
+ },
+ {
+ keywords: [
+ "hourglass_flowing_sand",
+ "hourglass",
+ "flowing",
+ "sand",
+ "HOURGLASS",
+ "WITH",
+ "FLOWING",
+ "SANDoldschool",
+ "time",
+ "countdown",
+ ],
+ emoji_key: "hourglass_flowing_sand",
+ },
+ {
+ keywords: ["watch", "watch", "WATCHtime", "accessories"],
+ emoji_key: "watch",
+ },
+ {
+ keywords: ["alarm_clock", "alarm", "clock", "ALARM", "CLOCKtime", "wake"],
+ emoji_key: "alarm_clock",
+ },
+ {
+ keywords: ["stopwatch", "stopwatch", "STOPWATCHtime", "deadline"],
+ emoji_key: "stopwatch",
+ },
+ {
+ keywords: ["timer_clock", "timer", "clock", "TIMER", "CLOCKalarm"],
+ emoji_key: "timer_clock",
+ },
+ {
+ keywords: [
+ "mantelpiece_clock",
+ "mantelpiece",
+ "clock",
+ "MANTELPIECE",
+ "CLOCKtime",
+ ],
+ emoji_key: "mantelpiece_clock",
+ },
+ {
+ keywords: [
+ "clock12",
+ "clock12",
+ "CLOCK",
+ "FACE",
+ "TWELVE",
+ "OCLOCKtime",
+ "noon",
+ "midnight",
+ "midday",
+ "late",
+ "early",
+ "schedule",
+ ],
+ emoji_key: "clock12",
+ },
+ {
+ keywords: [
+ "clock1230",
+ "clock1230",
+ "CLOCK",
+ "FACE",
+ "TWELVE-THIRTYtime",
+ "late",
+ "early",
+ "schedule",
+ ],
+ emoji_key: "clock1230",
+ },
+ {
+ keywords: [
+ "clock1",
+ "clock1",
+ "CLOCK",
+ "FACE",
+ "ONE",
+ "OCLOCKtime",
+ "late",
+ "early",
+ "schedule",
+ ],
+ emoji_key: "clock1",
+ },
+ {
+ keywords: [
+ "clock130",
+ "clock130",
+ "CLOCK",
+ "FACE",
+ "ONE-THIRTYtime",
+ "late",
+ "early",
+ "schedule",
+ ],
+ emoji_key: "clock130",
+ },
+ {
+ keywords: [
+ "clock2",
+ "clock2",
+ "CLOCK",
+ "FACE",
+ "TWO",
+ "OCLOCKtime",
+ "late",
+ "early",
+ "schedule",
+ ],
+ emoji_key: "clock2",
+ },
+ {
+ keywords: [
+ "clock230",
+ "clock230",
+ "CLOCK",
+ "FACE",
+ "TWO-THIRTYtime",
+ "late",
+ "early",
+ "schedule",
+ ],
+ emoji_key: "clock230",
+ },
+ {
+ keywords: [
+ "clock3",
+ "clock3",
+ "CLOCK",
+ "FACE",
+ "THREE",
+ "OCLOCKtime",
+ "late",
+ "early",
+ "schedule",
+ ],
+ emoji_key: "clock3",
+ },
+ {
+ keywords: [
+ "clock330",
+ "clock330",
+ "CLOCK",
+ "FACE",
+ "THREE-THIRTYtime",
+ "late",
+ "early",
+ "schedule",
+ ],
+ emoji_key: "clock330",
+ },
+ {
+ keywords: [
+ "clock4",
+ "clock4",
+ "CLOCK",
+ "FACE",
+ "FOUR",
+ "OCLOCKtime",
+ "late",
+ "early",
+ "schedule",
+ ],
+ emoji_key: "clock4",
+ },
+ {
+ keywords: [
+ "clock430",
+ "clock430",
+ "CLOCK",
+ "FACE",
+ "FOUR-THIRTYtime",
+ "late",
+ "early",
+ "schedule",
+ ],
+ emoji_key: "clock430",
+ },
+ {
+ keywords: [
+ "clock5",
+ "clock5",
+ "CLOCK",
+ "FACE",
+ "FIVE",
+ "OCLOCKtime",
+ "late",
+ "early",
+ "schedule",
+ ],
+ emoji_key: "clock5",
+ },
+ {
+ keywords: [
+ "clock530",
+ "clock530",
+ "CLOCK",
+ "FACE",
+ "FIVE-THIRTYtime",
+ "late",
+ "early",
+ "schedule",
+ ],
+ emoji_key: "clock530",
+ },
+ {
+ keywords: [
+ "clock6",
+ "clock6",
+ "CLOCK",
+ "FACE",
+ "SIX",
+ "OCLOCKtime",
+ "late",
+ "early",
+ "schedule",
+ "dawn",
+ "dusk",
+ ],
+ emoji_key: "clock6",
+ },
+ {
+ keywords: [
+ "clock630",
+ "clock630",
+ "CLOCK",
+ "FACE",
+ "SIX-THIRTYtime",
+ "late",
+ "early",
+ "schedule",
+ ],
+ emoji_key: "clock630",
+ },
+ {
+ keywords: [
+ "clock7",
+ "clock7",
+ "CLOCK",
+ "FACE",
+ "SEVEN",
+ "OCLOCKtime",
+ "late",
+ "early",
+ "schedule",
+ ],
+ emoji_key: "clock7",
+ },
+ {
+ keywords: [
+ "clock730",
+ "clock730",
+ "CLOCK",
+ "FACE",
+ "SEVEN-THIRTYtime",
+ "late",
+ "early",
+ "schedule",
+ ],
+ emoji_key: "clock730",
+ },
+ {
+ keywords: [
+ "clock8",
+ "clock8",
+ "CLOCK",
+ "FACE",
+ "EIGHT",
+ "OCLOCKtime",
+ "late",
+ "early",
+ "schedule",
+ ],
+ emoji_key: "clock8",
+ },
+ {
+ keywords: [
+ "clock830",
+ "clock830",
+ "CLOCK",
+ "FACE",
+ "EIGHT-THIRTYtime",
+ "late",
+ "early",
+ "schedule",
+ ],
+ emoji_key: "clock830",
+ },
+ {
+ keywords: [
+ "clock9",
+ "clock9",
+ "CLOCK",
+ "FACE",
+ "NINE",
+ "OCLOCKtime",
+ "late",
+ "early",
+ "schedule",
+ ],
+ emoji_key: "clock9",
+ },
+ {
+ keywords: [
+ "clock930",
+ "clock930",
+ "CLOCK",
+ "FACE",
+ "NINE-THIRTYtime",
+ "late",
+ "early",
+ "schedule",
+ ],
+ emoji_key: "clock930",
+ },
+ {
+ keywords: [
+ "clock10",
+ "clock10",
+ "CLOCK",
+ "FACE",
+ "TEN",
+ "OCLOCKtime",
+ "late",
+ "early",
+ "schedule",
+ ],
+ emoji_key: "clock10",
+ },
+ {
+ keywords: [
+ "clock1030",
+ "clock1030",
+ "CLOCK",
+ "FACE",
+ "TEN-THIRTYtime",
+ "late",
+ "early",
+ "schedule",
+ ],
+ emoji_key: "clock1030",
+ },
+ {
+ keywords: [
+ "clock11",
+ "clock11",
+ "CLOCK",
+ "FACE",
+ "ELEVEN",
+ "OCLOCKtime",
+ "late",
+ "early",
+ "schedule",
+ ],
+ emoji_key: "clock11",
+ },
+ {
+ keywords: [
+ "clock1130",
+ "clock1130",
+ "CLOCK",
+ "FACE",
+ "ELEVEN-THIRTYtime",
+ "late",
+ "early",
+ "schedule",
+ ],
+ emoji_key: "clock1130",
+ },
+ {
+ keywords: [
+ "new_moon",
+ "new",
+ "moon",
+ "NEW",
+ "MOON",
+ "SYMBOLnature",
+ "twilight",
+ "planet",
+ "space",
+ "night",
+ "evening",
+ "sleep",
+ ],
+ emoji_key: "new_moon",
+ },
+ {
+ keywords: [
+ "waxing_crescent_moon",
+ "waxing",
+ "crescent",
+ "moon",
+ "WAXING",
+ "CRESCENT",
+ "MOON",
+ "SYMBOLnature",
+ "twilight",
+ "planet",
+ "space",
+ "night",
+ "evening",
+ "sleep",
+ ],
+ emoji_key: "waxing_crescent_moon",
+ },
+ {
+ keywords: [
+ "first_quarter_moon",
+ "first",
+ "quarter",
+ "moon",
+ "FIRST",
+ "QUARTER",
+ "MOON",
+ "SYMBOLnature",
+ "twilight",
+ "planet",
+ "space",
+ "night",
+ "evening",
+ "sleep",
+ ],
+ emoji_key: "first_quarter_moon",
+ },
+ {
+ keywords: ["moon", "moon", "WAXING", "GIBBOUS", "MOON", "SYMBOL"],
+ emoji_key: "moon",
+ },
+ {
+ keywords: [
+ "full_moon",
+ "full",
+ "moon",
+ "FULL",
+ "MOON",
+ "SYMBOLnature",
+ "yellow",
+ "twilight",
+ "planet",
+ "space",
+ "night",
+ "evening",
+ "sleep",
+ ],
+ emoji_key: "full_moon",
+ },
+ {
+ keywords: [
+ "waning_gibbous_moon",
+ "waning",
+ "gibbous",
+ "moon",
+ "WANING",
+ "GIBBOUS",
+ "MOON",
+ "SYMBOLnature",
+ "twilight",
+ "planet",
+ "space",
+ "night",
+ "evening",
+ "sleep",
+ "waxing",
+ "gibbous",
+ "moon",
+ ],
+ emoji_key: "waning_gibbous_moon",
+ },
+ {
+ keywords: [
+ "last_quarter_moon",
+ "last",
+ "quarter",
+ "moon",
+ "LAST",
+ "QUARTER",
+ "MOON",
+ "SYMBOLnature",
+ "twilight",
+ "planet",
+ "space",
+ "night",
+ "evening",
+ "sleep",
+ ],
+ emoji_key: "last_quarter_moon",
+ },
+ {
+ keywords: [
+ "waning_crescent_moon",
+ "waning",
+ "crescent",
+ "moon",
+ "WANING",
+ "CRESCENT",
+ "MOON",
+ "SYMBOLnature",
+ "twilight",
+ "planet",
+ "space",
+ "night",
+ "evening",
+ "sleep",
+ ],
+ emoji_key: "waning_crescent_moon",
+ },
+ {
+ keywords: [
+ "crescent_moon",
+ "crescent",
+ "moon",
+ "CRESCENT",
+ "MOONnight",
+ "sleep",
+ "sky",
+ "evening",
+ "magic",
+ ],
+ emoji_key: "crescent_moon",
+ },
+ {
+ keywords: [
+ "new_moon_with_face",
+ "new",
+ "moon",
+ "with",
+ "face",
+ "NEW",
+ "MOON",
+ "WITH",
+ "FACEnature",
+ "twilight",
+ "planet",
+ "space",
+ "night",
+ "evening",
+ "sleep",
+ ],
+ emoji_key: "new_moon_with_face",
+ },
+ {
+ keywords: [
+ "first_quarter_moon_with_face",
+ "first",
+ "quarter",
+ "moon",
+ "with",
+ "face",
+ "FIRST",
+ "QUARTER",
+ "MOON",
+ "WITH",
+ "FACEnature",
+ "twilight",
+ "planet",
+ "space",
+ "night",
+ "evening",
+ "sleep",
+ ],
+ emoji_key: "first_quarter_moon_with_face",
+ },
+ {
+ keywords: [
+ "last_quarter_moon_with_face",
+ "last",
+ "quarter",
+ "moon",
+ "with",
+ "face",
+ "LAST",
+ "QUARTER",
+ "MOON",
+ "WITH",
+ "FACEnature",
+ "twilight",
+ "planet",
+ "space",
+ "night",
+ "evening",
+ "sleep",
+ ],
+ emoji_key: "last_quarter_moon_with_face",
+ },
+ {
+ keywords: [
+ "thermometer",
+ "thermometer",
+ "THERMOMETERweather",
+ "temperature",
+ "hot",
+ "cold",
+ ],
+ emoji_key: "thermometer",
+ },
+ {
+ keywords: [
+ "sunny",
+ "sunny",
+ "BLACK",
+ "SUN",
+ "WITH",
+ "RAYSweather",
+ "nature",
+ "brightness",
+ "summer",
+ "beach",
+ "spring",
+ ],
+ emoji_key: "sunny",
+ },
+ {
+ keywords: [
+ "full_moon_with_face",
+ "full",
+ "moon",
+ "with",
+ "face",
+ "FULL",
+ "MOON",
+ "WITH",
+ "FACEnature",
+ "twilight",
+ "planet",
+ "space",
+ "night",
+ "evening",
+ "sleep",
+ ],
+ emoji_key: "full_moon_with_face",
+ },
+ {
+ keywords: [
+ "sun_with_face",
+ "sun",
+ "with",
+ "face",
+ "SUN",
+ "WITH",
+ "FACEnature",
+ "morning",
+ "sky",
+ ],
+ emoji_key: "sun_with_face",
+ },
+ {
+ keywords: ["ringed_planet", "ringed", "planet", "RINGED", "PLANET"],
+ emoji_key: "ringed_planet",
+ },
+ {
+ keywords: ["star", "star", "WHITE", "MEDIUM", "STARnight", "yellow"],
+ emoji_key: "star",
+ },
+ {
+ keywords: [
+ "star2",
+ "star2",
+ "GLOWING",
+ "STARnight",
+ "sparkle",
+ "awesome",
+ "good",
+ "magic",
+ ],
+ emoji_key: "star2",
+ },
+ {
+ keywords: ["stars", "stars", "SHOOTING", "STARnight", "photo"],
+ emoji_key: "stars",
+ },
+ {
+ keywords: [
+ "milky_way",
+ "milky",
+ "way",
+ "MILKY",
+ "WAYphoto",
+ "space",
+ "stars",
+ ],
+ emoji_key: "milky_way",
+ },
+ { keywords: ["cloud", "cloud", "CLOUDweather", "sky"], emoji_key: "cloud" },
+ {
+ keywords: [
+ "partly_sunny",
+ "partly",
+ "sunny",
+ "SUN",
+ "BEHIND",
+ "CLOUDweather",
+ "nature",
+ "cloudy",
+ "morning",
+ "fall",
+ "spring",
+ ],
+ emoji_key: "partly_sunny",
+ },
+ {
+ keywords: [
+ "thunder_cloud_and_rain",
+ "thunder",
+ "cloud",
+ "and",
+ "rain",
+ "CLOUD",
+ "WITH",
+ "LIGHTNING",
+ "AND",
+ "RAIN",
+ ],
+ emoji_key: "thunder_cloud_and_rain",
+ },
+ {
+ keywords: [
+ "mostly_sunny",
+ "mostly",
+ "sunny",
+ "SUN",
+ "BEHIND",
+ "SMALL",
+ "CLOUD",
+ ],
+ emoji_key: "mostly_sunny",
+ },
+ {
+ keywords: [
+ "barely_sunny",
+ "barely",
+ "sunny",
+ "SUN",
+ "BEHIND",
+ "LARGE",
+ "CLOUD",
+ ],
+ emoji_key: "barely_sunny",
+ },
+ {
+ keywords: [
+ "partly_sunny_rain",
+ "partly",
+ "sunny",
+ "rain",
+ "SUN",
+ "BEHIND",
+ "RAIN",
+ "CLOUD",
+ ],
+ emoji_key: "partly_sunny_rain",
+ },
+ {
+ keywords: ["rain_cloud", "rain", "cloud", "CLOUD", "WITH", "RAIN"],
+ emoji_key: "rain_cloud",
+ },
+ {
+ keywords: ["snow_cloud", "snow", "cloud", "CLOUD", "WITH", "SNOW"],
+ emoji_key: "snow_cloud",
+ },
+ {
+ keywords: ["lightning", "lightning", "CLOUD", "WITH", "LIGHTNING"],
+ emoji_key: "lightning",
+ },
+ {
+ keywords: ["tornado", "tornado", "TORNADOweather", "cyclone", "twister"],
+ emoji_key: "tornado",
+ },
+ { keywords: ["fog", "fog", "FOGweather"], emoji_key: "fog" },
+ {
+ keywords: [
+ "wind_blowing_face",
+ "wind",
+ "blowing",
+ "face",
+ "WIND",
+ "FACE",
+ ],
+ emoji_key: "wind_blowing_face",
+ },
+ {
+ keywords: [
+ "cyclone",
+ "cyclone",
+ "CYCLONEweather",
+ "swirl",
+ "blue",
+ "cloud",
+ "vortex",
+ "spiral",
+ "whirlpool",
+ "spin",
+ "tornado",
+ "hurricane",
+ "typhoon",
+ ],
+ emoji_key: "cyclone",
+ },
+ {
+ keywords: [
+ "rainbow",
+ "rainbow",
+ "RAINBOWnature",
+ "happy",
+ "unicorn",
+ "face",
+ "photo",
+ "sky",
+ "spring",
+ ],
+ emoji_key: "rainbow",
+ },
+ {
+ keywords: [
+ "closed_umbrella",
+ "closed",
+ "umbrella",
+ "CLOSED",
+ "UMBRELLAweather",
+ "rain",
+ "drizzle",
+ ],
+ emoji_key: "closed_umbrella",
+ },
+ {
+ keywords: ["umbrella", "umbrella", "UMBRELLArainy", "weather", "spring"],
+ emoji_key: "umbrella",
+ },
+ {
+ keywords: [
+ "umbrella_with_rain_drops",
+ "umbrella",
+ "with",
+ "rain",
+ "drops",
+ "UMBRELLA",
+ "WITH",
+ "RAIN",
+ "DROPS",
+ ],
+ emoji_key: "umbrella_with_rain_drops",
+ },
+ {
+ keywords: [
+ "umbrella_on_ground",
+ "umbrella",
+ "on",
+ "ground",
+ "UMBRELLA",
+ "ON",
+ "GROUND",
+ ],
+ emoji_key: "umbrella_on_ground",
+ },
+ {
+ keywords: [
+ "zap",
+ "zap",
+ "HIGH",
+ "VOLTAGE",
+ "SIGNthunder",
+ "weather",
+ "lightning",
+ "bolt",
+ "fast",
+ ],
+ emoji_key: "zap",
+ },
+ {
+ keywords: [
+ "snowflake",
+ "snowflake",
+ "SNOWFLAKEwinter",
+ "season",
+ "cold",
+ "weather",
+ "christmas",
+ "xmas",
+ ],
+ emoji_key: "snowflake",
+ },
+ {
+ keywords: [
+ "snowman",
+ "snowman",
+ "SNOWMANwinter",
+ "season",
+ "cold",
+ "weather",
+ "christmas",
+ "xmas",
+ "frozen",
+ "without",
+ "snow",
+ ],
+ emoji_key: "snowman",
+ },
+ {
+ keywords: [
+ "snowman_without_snow",
+ "snowman",
+ "without",
+ "snow",
+ "SNOWMAN",
+ "WITHOUT",
+ "SNOW",
+ ],
+ emoji_key: "snowman_without_snow",
+ },
+ { keywords: ["comet", "comet", "COMETspace"], emoji_key: "comet" },
+ {
+ keywords: ["fire", "fire", "FIREhot", "cook", "flame"],
+ emoji_key: "fire",
+ },
+ {
+ keywords: [
+ "droplet",
+ "droplet",
+ "DROPLETwater",
+ "drip",
+ "faucet",
+ "spring",
+ ],
+ emoji_key: "droplet",
+ },
+ {
+ keywords: [
+ "ocean",
+ "ocean",
+ "WATER",
+ "WAVEsea",
+ "water",
+ "wave",
+ "nature",
+ "tsunami",
+ "disaster",
+ ],
+ emoji_key: "ocean",
+ },
+ {
+ keywords: [
+ "jack_o_lantern",
+ "jack",
+ "o",
+ "lantern",
+ "JACK-O-LANTERNlight",
+ "pumpkin",
+ "fall",
+ "carve",
+ "halloween",
+ "creepy",
+ ],
+ emoji_key: "jack_o_lantern",
+ },
+ {
+ keywords: [
+ "christmas_tree",
+ "christmas",
+ "tree",
+ "CHRISTMAS",
+ "TREEfestival",
+ "vacation",
+ "december",
+ "xmas",
+ "celebration",
+ ],
+ emoji_key: "christmas_tree",
+ },
+ {
+ keywords: [
+ "fireworks",
+ "fireworks",
+ "FIREWORKSfestival",
+ "carnival",
+ "pyrotechnics",
+ "firecrackers",
+ "photo",
+ "congratulations",
+ ],
+ emoji_key: "fireworks",
+ },
+ {
+ keywords: [
+ "sparkler",
+ "sparkler",
+ "FIREWORK",
+ "SPARKLERstars",
+ "night",
+ "shine",
+ ],
+ emoji_key: "sparkler",
+ },
+ {
+ keywords: ["firecracker", "firecracker", "FIRECRACKER"],
+ emoji_key: "firecracker",
+ },
+ {
+ keywords: [
+ "sparkles",
+ "sparkles",
+ "SPARKLESmagic",
+ "stars",
+ "good",
+ "glitter",
+ "awesome",
+ "glisten",
+ "shine",
+ "cool",
+ "shiny",
+ ],
+ emoji_key: "sparkles",
+ },
+ {
+ keywords: [
+ "balloon",
+ "balloon",
+ "BALLOONbirthday",
+ "party",
+ "celebration",
+ "inflate",
+ "circus",
+ ],
+ emoji_key: "balloon",
+ },
+ {
+ keywords: [
+ "tada",
+ "tada",
+ "PARTY",
+ "POPPERbirthday",
+ "magic",
+ "party",
+ "presto",
+ "whee",
+ "celebration",
+ "circus",
+ "woohoo",
+ "congratulations",
+ ],
+ emoji_key: "tada",
+ },
+ {
+ keywords: [
+ "confetti_ball",
+ "confetti",
+ "ball",
+ "CONFETTI",
+ "BALLfestival",
+ "party",
+ "birthday",
+ "circus",
+ ],
+ emoji_key: "confetti_ball",
+ },
+ {
+ keywords: [
+ "tanabata_tree",
+ "tanabata",
+ "tree",
+ "TANABATA",
+ "TREEplant",
+ "nature",
+ "branch",
+ "summer",
+ ],
+ emoji_key: "tanabata_tree",
+ },
+ {
+ keywords: [
+ "bamboo",
+ "bamboo",
+ "PINE",
+ "DECORATIONnature",
+ "vegetable",
+ "wood",
+ "panda",
+ "plant",
+ "pine",
+ "decoration",
+ ],
+ emoji_key: "bamboo",
+ },
+ {
+ keywords: [
+ "dolls",
+ "dolls",
+ "JAPANESE",
+ "DOLLStoys",
+ "japanese",
+ "toy",
+ "figurines",
+ "kimono",
+ ],
+ emoji_key: "dolls",
+ },
+ {
+ keywords: [
+ "flags",
+ "flags",
+ "CARP",
+ "STREAMERfish",
+ "japanese",
+ "koinobori",
+ "carp",
+ "banner",
+ ],
+ emoji_key: "flags",
+ },
+ {
+ keywords: [
+ "wind_chime",
+ "wind",
+ "chime",
+ "WIND",
+ "CHIMEnature",
+ "ding",
+ "spring",
+ "bell",
+ ],
+ emoji_key: "wind_chime",
+ },
+ {
+ keywords: [
+ "rice_scene",
+ "rice",
+ "scene",
+ "MOON",
+ "VIEWING",
+ "CEREMONYphoto",
+ "japan",
+ "asia",
+ "tsukimi",
+ ],
+ emoji_key: "rice_scene",
+ },
+ {
+ keywords: ["red_envelope", "red", "envelope", "RED", "GIFT", "ENVELOPE"],
+ emoji_key: "red_envelope",
+ },
+ {
+ keywords: [
+ "ribbon",
+ "ribbon",
+ "RIBBONdecoration",
+ "pink",
+ "girl",
+ "bowtie",
+ ],
+ emoji_key: "ribbon",
+ },
+ {
+ keywords: [
+ "gift",
+ "gift",
+ "WRAPPED",
+ "PRESENTxmas",
+ "birthday",
+ "christmas",
+ "present",
+ ],
+ emoji_key: "gift",
+ },
+ {
+ keywords: [
+ "reminder_ribbon",
+ "reminder",
+ "ribbon",
+ "REMINDER",
+ "RIBBONsports",
+ "cause",
+ "support",
+ "awareness",
+ ],
+ emoji_key: "reminder_ribbon",
+ },
+ {
+ keywords: [
+ "admission_tickets",
+ "admission",
+ "tickets",
+ "ADMISSION",
+ "TICKETS",
+ ],
+ emoji_key: "admission_tickets",
+ },
+ {
+ keywords: [
+ "ticket",
+ "ticket",
+ "TICKETvoucher",
+ "event",
+ "concert",
+ "pass",
+ "fare",
+ ],
+ emoji_key: "ticket",
+ },
+ {
+ keywords: ["medal", "medal", "MILITARY", "MEDALmedallion", "prize"],
+ emoji_key: "medal",
+ },
+ {
+ keywords: [
+ "trophy",
+ "trophy",
+ "TROPHYplace",
+ "win",
+ "goblet",
+ "ftw",
+ "award",
+ "ceremony",
+ "prize",
+ "contest",
+ ],
+ emoji_key: "trophy",
+ },
+ {
+ keywords: ["sports_medal", "sports", "medal", "SPORTS", "MEDAL"],
+ emoji_key: "sports_medal",
+ },
+ {
+ keywords: [
+ "first_place_medal",
+ "first",
+ "place",
+ "medal",
+ "FIRST",
+ "PLACE",
+ "MEDALgold",
+ "champion",
+ ],
+ emoji_key: "first_place_medal",
+ },
+ {
+ keywords: [
+ "second_place_medal",
+ "second",
+ "place",
+ "medal",
+ "SECOND",
+ "PLACE",
+ "MEDALsilver",
+ "medal",
+ "silver",
+ ],
+ emoji_key: "second_place_medal",
+ },
+ {
+ keywords: [
+ "third_place_medal",
+ "third",
+ "place",
+ "medal",
+ "THIRD",
+ "PLACE",
+ "MEDALbronze",
+ ],
+ emoji_key: "third_place_medal",
+ },
+ {
+ keywords: ["soccer", "soccer", "SOCCER", "BALLsports", "football"],
+ emoji_key: "soccer",
+ },
+ {
+ keywords: ["baseball", "baseball", "BASEBALLleague", "sports", "balls"],
+ emoji_key: "baseball",
+ },
+ { keywords: ["softball", "softball", "SOFTBALL"], emoji_key: "softball" },
+ {
+ keywords: [
+ "basketball",
+ "basketball",
+ "BASKETBALL",
+ "AND",
+ "HOOPsports",
+ "balls",
+ "NBA",
+ ],
+ emoji_key: "basketball",
+ },
+ {
+ keywords: ["volleyball", "volleyball", "VOLLEYBALLsports", "balls"],
+ emoji_key: "volleyball",
+ },
+ {
+ keywords: [
+ "football",
+ "football",
+ "AMERICAN",
+ "FOOTBALLsports",
+ "balls",
+ "NFL",
+ ],
+ emoji_key: "football",
+ },
+ {
+ keywords: [
+ "rugby_football",
+ "rugby",
+ "football",
+ "RUGBY",
+ "FOOTBALLsports",
+ "team",
+ ],
+ emoji_key: "rugby_football",
+ },
+ {
+ keywords: [
+ "tennis",
+ "tennis",
+ "TENNIS",
+ "RACQUET",
+ "AND",
+ "BALLsports",
+ "balls",
+ "green",
+ ],
+ emoji_key: "tennis",
+ },
+ {
+ keywords: ["flying_disc", "flying", "disc", "FLYING", "DISC"],
+ emoji_key: "flying_disc",
+ },
+ {
+ keywords: ["bowling", "bowling", "BOWLINGsports", "fun", "play"],
+ emoji_key: "bowling",
+ },
+ {
+ keywords: [
+ "cricket_bat_and_ball",
+ "cricket",
+ "bat",
+ "and",
+ "ball",
+ "CRICKET",
+ "BAT",
+ "AND",
+ "BALL",
+ ],
+ emoji_key: "cricket_bat_and_ball",
+ },
+ {
+ keywords: [
+ "field_hockey_stick_and_ball",
+ "field",
+ "hockey",
+ "stick",
+ "and",
+ "ball",
+ "FIELD",
+ "HOCKEY",
+ "STICK",
+ "AND",
+ "BALL",
+ ],
+ emoji_key: "field_hockey_stick_and_ball",
+ },
+ {
+ keywords: [
+ "ice_hockey_stick_and_puck",
+ "ice",
+ "hockey",
+ "stick",
+ "and",
+ "puck",
+ "ICE",
+ "HOCKEY",
+ "STICK",
+ "AND",
+ "PUCK",
+ ],
+ emoji_key: "ice_hockey_stick_and_puck",
+ },
+ {
+ keywords: ["lacrosse", "lacrosse", "LACROSSE", "STICK", "AND", "BALL"],
+ emoji_key: "lacrosse",
+ },
+ {
+ keywords: [
+ "table_tennis_paddle_and_ball",
+ "table",
+ "tennis",
+ "paddle",
+ "and",
+ "ball",
+ "TABLE",
+ "TENNIS",
+ "PADDLE",
+ "AND",
+ "BALL",
+ ],
+ emoji_key: "table_tennis_paddle_and_ball",
+ },
+ {
+ keywords: [
+ "badminton_racquet_and_shuttlecock",
+ "badminton",
+ "racquet",
+ "and",
+ "shuttlecock",
+ "BADMINTON",
+ "RACQUET",
+ "AND",
+ "SHUTTLECOCK",
+ ],
+ emoji_key: "badminton_racquet_and_shuttlecock",
+ },
+ {
+ keywords: [
+ "boxing_glove",
+ "boxing",
+ "glove",
+ "BOXING",
+ "GLOVEsports",
+ "fighting",
+ ],
+ emoji_key: "boxing_glove",
+ },
+ {
+ keywords: [
+ "martial_arts_uniform",
+ "martial",
+ "arts",
+ "uniform",
+ "MARTIAL",
+ "ARTS",
+ "UNIFORMjudo",
+ "karate",
+ "taekwondo",
+ ],
+ emoji_key: "martial_arts_uniform",
+ },
+ {
+ keywords: ["goal_net", "goal", "net", "GOAL", "NETsports"],
+ emoji_key: "goal_net",
+ },
+ {
+ keywords: [
+ "golf",
+ "golf",
+ "FLAG",
+ "IN",
+ "HOLEsports",
+ "business",
+ "flag",
+ "hole",
+ "summer",
+ ],
+ emoji_key: "golf",
+ },
+ {
+ keywords: ["ice_skate", "ice", "skate", "ICE", "SKATEsports"],
+ emoji_key: "ice_skate",
+ },
+ {
+ keywords: [
+ "fishing_pole_and_fish",
+ "fishing",
+ "pole",
+ "and",
+ "fish",
+ "FISHING",
+ "POLE",
+ "AND",
+ "FISHfood",
+ "hobby",
+ "summer",
+ ],
+ emoji_key: "fishing_pole_and_fish",
+ },
+ {
+ keywords: ["diving_mask", "diving", "mask", "DIVING", "MASK"],
+ emoji_key: "diving_mask",
+ },
+ {
+ keywords: [
+ "running_shirt_with_sash",
+ "running",
+ "shirt",
+ "with",
+ "sash",
+ "RUNNING",
+ "SHIRT",
+ "WITH",
+ "SASHplay",
+ "pageant",
+ ],
+ emoji_key: "running_shirt_with_sash",
+ },
+ {
+ keywords: [
+ "ski",
+ "ski",
+ "SKI",
+ "AND",
+ "SKI",
+ "BOOTsports",
+ "winter",
+ "cold",
+ "snow",
+ ],
+ emoji_key: "ski",
+ },
+ {
+ keywords: ["sled", "sled", "SLEDsleigh", "luge", "toboggan"],
+ emoji_key: "sled",
+ },
+ {
+ keywords: ["curling_stone", "curling", "stone", "CURLING", "STONEsports"],
+ emoji_key: "curling_stone",
+ },
+ {
+ keywords: [
+ "dart",
+ "dart",
+ "DIRECT",
+ "HITgame",
+ "play",
+ "bar",
+ "target",
+ "bullseye",
+ ],
+ emoji_key: "dart",
+ },
+ { keywords: ["yo-yo", "yo-yo", "YO-YO"], emoji_key: "yo-yo" },
+ { keywords: ["kite", "kite", "KITE"], emoji_key: "kite" },
+ {
+ keywords: [
+ "gun",
+ "gun",
+ "PISTOLviolence",
+ "weapon",
+ "pistol",
+ "revolver",
+ ],
+ emoji_key: "gun",
+ },
+ {
+ keywords: [
+ "8ball",
+ "8ball",
+ "BILLIARDSpool",
+ "hobby",
+ "game",
+ "luck",
+ "magic",
+ ],
+ emoji_key: "8ball",
+ },
+ {
+ keywords: [
+ "crystal_ball",
+ "crystal",
+ "ball",
+ "CRYSTAL",
+ "BALLdisco",
+ "party",
+ "magic",
+ "circus",
+ "fortune",
+ "teller",
+ ],
+ emoji_key: "crystal_ball",
+ },
+ {
+ keywords: ["magic_wand", "magic", "wand", "MAGIC", "WAND"],
+ emoji_key: "magic_wand",
+ },
+ {
+ keywords: [
+ "video_game",
+ "video",
+ "game",
+ "VIDEO",
+ "GAMEplay",
+ "console",
+ "PS4",
+ "controller",
+ ],
+ emoji_key: "video_game",
+ },
+ {
+ keywords: ["joystick", "joystick", "JOYSTICKgame", "play"],
+ emoji_key: "joystick",
+ },
+ {
+ keywords: [
+ "slot_machine",
+ "slot",
+ "machine",
+ "SLOT",
+ "MACHINEbet",
+ "gamble",
+ "vegas",
+ "fruit",
+ "machine",
+ "luck",
+ "casino",
+ ],
+ emoji_key: "slot_machine",
+ },
+ {
+ keywords: [
+ "game_die",
+ "game",
+ "die",
+ "GAME",
+ "DIEdice",
+ "random",
+ "tabletop",
+ "play",
+ "luck",
+ ],
+ emoji_key: "game_die",
+ },
+ {
+ keywords: ["jigsaw", "jigsaw", "JIGSAW", "PUZZLE", "PIECE"],
+ emoji_key: "jigsaw",
+ },
+ {
+ keywords: ["teddy_bear", "teddy", "bear", "TEDDY", "BEAR"],
+ emoji_key: "teddy_bear",
+ },
+ { keywords: ["pinata", "pinata", "PINATA"], emoji_key: "pinata" },
+ {
+ keywords: ["mirror_ball", "mirror", "ball", "MIRROR", "BALL"],
+ emoji_key: "mirror_ball",
+ },
+ {
+ keywords: ["nesting_dolls", "nesting", "dolls", "NESTING", "DOLLS"],
+ emoji_key: "nesting_dolls",
+ },
+ {
+ keywords: [
+ "spades",
+ "spades",
+ "BLACK",
+ "SPADE",
+ "SUITpoker",
+ "cards",
+ "suits",
+ "magic",
+ ],
+ emoji_key: "spades",
+ },
+ {
+ keywords: [
+ "hearts",
+ "hearts",
+ "BLACK",
+ "HEART",
+ "SUITpoker",
+ "cards",
+ "magic",
+ "suits",
+ ],
+ emoji_key: "hearts",
+ },
+ {
+ keywords: [
+ "diamonds",
+ "diamonds",
+ "BLACK",
+ "DIAMOND",
+ "SUITpoker",
+ "cards",
+ "magic",
+ "suits",
+ ],
+ emoji_key: "diamonds",
+ },
+ {
+ keywords: [
+ "clubs",
+ "clubs",
+ "BLACK",
+ "CLUB",
+ "SUITpoker",
+ "cards",
+ "magic",
+ "suits",
+ ],
+ emoji_key: "clubs",
+ },
+ {
+ keywords: ["chess_pawn", "chess", "pawn", "CHESS", "PAWN"],
+ emoji_key: "chess_pawn",
+ },
+ {
+ keywords: [
+ "black_joker",
+ "black",
+ "joker",
+ "PLAYING",
+ "CARD",
+ "BLACK",
+ "JOKERpoker",
+ "cards",
+ "game",
+ "play",
+ "magic",
+ ],
+ emoji_key: "black_joker",
+ },
+ {
+ keywords: [
+ "mahjong",
+ "mahjong",
+ "MAHJONG",
+ "TILE",
+ "RED",
+ "DRAGONgame",
+ "play",
+ "chinese",
+ "kanji",
+ ],
+ emoji_key: "mahjong",
+ },
+ {
+ keywords: [
+ "flower_playing_cards",
+ "flower",
+ "playing",
+ "cards",
+ "FLOWER",
+ "PLAYING",
+ "CARDSgame",
+ "sunset",
+ "red",
+ ],
+ emoji_key: "flower_playing_cards",
+ },
+ {
+ keywords: [
+ "performing_arts",
+ "performing",
+ "arts",
+ "PERFORMING",
+ "ARTSacting",
+ "theater",
+ "drama",
+ ],
+ emoji_key: "performing_arts",
+ },
+ {
+ keywords: [
+ "frame_with_picture",
+ "frame",
+ "with",
+ "picture",
+ "FRAMED",
+ "PICTURE",
+ ],
+ emoji_key: "frame_with_picture",
+ },
+ {
+ keywords: [
+ "art",
+ "art",
+ "ARTIST",
+ "PALETTEdesign",
+ "paint",
+ "draw",
+ "colors",
+ ],
+ emoji_key: "art",
+ },
+ {
+ keywords: ["thread", "thread", "SPOOL", "OF", "THREAD"],
+ emoji_key: "thread",
+ },
+ {
+ keywords: ["sewing_needle", "sewing", "needle", "SEWING", "NEEDLE"],
+ emoji_key: "sewing_needle",
+ },
+ { keywords: ["yarn", "yarn", "BALL", "OF", "YARN"], emoji_key: "yarn" },
+ { keywords: ["knot", "knot", "KNOT"], emoji_key: "knot" },
+ {
+ keywords: [
+ "eyeglasses",
+ "eyeglasses",
+ "EYEGLASSESfashion",
+ "accessories",
+ "eyesight",
+ "nerdy",
+ "dork",
+ "geek",
+ ],
+ emoji_key: "eyeglasses",
+ },
+ {
+ keywords: [
+ "dark_sunglasses",
+ "dark",
+ "sunglasses",
+ "SUNGLASSESface",
+ "cool",
+ "accessories",
+ ],
+ emoji_key: "dark_sunglasses",
+ },
+ { keywords: ["goggles", "goggles", "GOGGLES"], emoji_key: "goggles" },
+ {
+ keywords: ["lab_coat", "lab", "coat", "LAB", "COAT"],
+ emoji_key: "lab_coat",
+ },
+ {
+ keywords: ["safety_vest", "safety", "vest", "SAFETY", "VEST"],
+ emoji_key: "safety_vest",
+ },
+ {
+ keywords: [
+ "necktie",
+ "necktie",
+ "NECKTIEshirt",
+ "suitup",
+ "formal",
+ "fashion",
+ "cloth",
+ "business",
+ ],
+ emoji_key: "necktie",
+ },
+ { keywords: ["shirt", "shirt", "T-SHIRT"], emoji_key: "shirt" },
+ {
+ keywords: ["jeans", "jeans", "JEANSfashion", "shopping"],
+ emoji_key: "jeans",
+ },
+ {
+ keywords: ["scarf", "scarf", "SCARFneck", "winter", "clothes"],
+ emoji_key: "scarf",
+ },
+ {
+ keywords: ["gloves", "gloves", "GLOVEShands", "winter", "clothes"],
+ emoji_key: "gloves",
+ },
+ { keywords: ["coat", "coat", "COATjacket"], emoji_key: "coat" },
+ {
+ keywords: ["socks", "socks", "SOCKSstockings", "clothes"],
+ emoji_key: "socks",
+ },
+ {
+ keywords: ["dress", "dress", "DRESSclothes", "fashion", "shopping"],
+ emoji_key: "dress",
+ },
+ {
+ keywords: [
+ "kimono",
+ "kimono",
+ "KIMONOdress",
+ "fashion",
+ "women",
+ "female",
+ "japanese",
+ ],
+ emoji_key: "kimono",
+ },
+ { keywords: ["sari", "sari", "SARI"], emoji_key: "sari" },
+ {
+ keywords: [
+ "one-piece_swimsuit",
+ "one-piece",
+ "swimsuit",
+ "ONE-PIECE",
+ "SWIMSUIT",
+ ],
+ emoji_key: "one-piece_swimsuit",
+ },
+ { keywords: ["briefs", "briefs", "BRIEFS"], emoji_key: "briefs" },
+ { keywords: ["shorts", "shorts", "SHORTS"], emoji_key: "shorts" },
+ {
+ keywords: [
+ "bikini",
+ "bikini",
+ "BIKINIswimming",
+ "female",
+ "woman",
+ "girl",
+ "fashion",
+ "beach",
+ "summer",
+ ],
+ emoji_key: "bikini",
+ },
+ {
+ keywords: [
+ "womans_clothes",
+ "womans",
+ "clothes",
+ "WOMANS",
+ "CLOTHESfashion",
+ "shopping",
+ "bags",
+ "female",
+ ],
+ emoji_key: "womans_clothes",
+ },
+ {
+ keywords: [
+ "folding_hand_fan",
+ "folding",
+ "hand",
+ "fan",
+ "FOLDING",
+ "HAND",
+ "FAN",
+ ],
+ emoji_key: "folding_hand_fan",
+ },
+ {
+ keywords: [
+ "purse",
+ "purse",
+ "PURSEfashion",
+ "accessories",
+ "money",
+ "sales",
+ "shopping",
+ ],
+ emoji_key: "purse",
+ },
+ {
+ keywords: [
+ "handbag",
+ "handbag",
+ "HANDBAGfashion",
+ "accessory",
+ "accessories",
+ "shopping",
+ ],
+ emoji_key: "handbag",
+ },
+ {
+ keywords: ["pouch", "pouch", "POUCHbag", "accessories", "shopping"],
+ emoji_key: "pouch",
+ },
+ {
+ keywords: ["shopping_bags", "shopping", "bags", "SHOPPING", "BAGS"],
+ emoji_key: "shopping_bags",
+ },
+ {
+ keywords: [
+ "school_satchel",
+ "school",
+ "satchel",
+ "SCHOOL",
+ "SATCHELstudent",
+ "education",
+ "bag",
+ "backpack",
+ ],
+ emoji_key: "school_satchel",
+ },
+ {
+ keywords: ["thong_sandal", "thong", "sandal", "THONG", "SANDAL"],
+ emoji_key: "thong_sandal",
+ },
+ {
+ keywords: ["mans_shoe", "mans", "shoe", "MANS", "SHOEfashion", "male"],
+ emoji_key: "mans_shoe",
+ },
+ {
+ keywords: [
+ "athletic_shoe",
+ "athletic",
+ "shoe",
+ "ATHLETIC",
+ "SHOEshoes",
+ "sports",
+ "sneakers",
+ ],
+ emoji_key: "athletic_shoe",
+ },
+ {
+ keywords: ["hiking_boot", "hiking", "boot", "HIKING", "BOOT"],
+ emoji_key: "hiking_boot",
+ },
+ {
+ keywords: ["womans_flat_shoe", "womans", "flat", "shoe", "FLAT", "SHOE"],
+ emoji_key: "womans_flat_shoe",
+ },
+ {
+ keywords: [
+ "high_heel",
+ "high",
+ "heel",
+ "HIGH-HEELED",
+ "SHOEfashion",
+ "shoes",
+ "female",
+ "pumps",
+ "stiletto",
+ ],
+ emoji_key: "high_heel",
+ },
+ {
+ keywords: [
+ "sandal",
+ "sandal",
+ "WOMANS",
+ "SANDALshoes",
+ "fashion",
+ "flip",
+ "flops",
+ ],
+ emoji_key: "sandal",
+ },
+ {
+ keywords: ["ballet_shoes", "ballet", "shoes", "BALLET", "SHOES"],
+ emoji_key: "ballet_shoes",
+ },
+ {
+ keywords: ["boot", "boot", "WOMANS", "BOOTSshoes", "fashion"],
+ emoji_key: "boot",
+ },
+ {
+ keywords: ["hair_pick", "hair", "pick", "HAIR", "PICK"],
+ emoji_key: "hair_pick",
+ },
+ {
+ keywords: [
+ "crown",
+ "crown",
+ "CROWNking",
+ "kod",
+ "leader",
+ "royalty",
+ "lord",
+ ],
+ emoji_key: "crown",
+ },
+ {
+ keywords: [
+ "womans_hat",
+ "womans",
+ "hat",
+ "WOMANS",
+ "HATfashion",
+ "accessories",
+ "female",
+ "lady",
+ "spring",
+ ],
+ emoji_key: "womans_hat",
+ },
+ {
+ keywords: [
+ "tophat",
+ "tophat",
+ "TOP",
+ "HATmagic",
+ "gentleman",
+ "classy",
+ "circus",
+ ],
+ emoji_key: "tophat",
+ },
+ {
+ keywords: [
+ "mortar_board",
+ "mortar",
+ "board",
+ "GRADUATION",
+ "CAPschool",
+ "college",
+ "degree",
+ "university",
+ "graduation",
+ "cap",
+ "hat",
+ "legal",
+ "learn",
+ "education",
+ ],
+ emoji_key: "mortar_board",
+ },
+ {
+ keywords: ["billed_cap", "billed", "cap", "BILLED", "CAP"],
+ emoji_key: "billed_cap",
+ },
+ {
+ keywords: ["military_helmet", "military", "helmet", "MILITARY", "HELMET"],
+ emoji_key: "military_helmet",
+ },
+ {
+ keywords: [
+ "helmet_with_white_cross",
+ "helmet",
+ "with",
+ "white",
+ "cross",
+ "RESCUE",
+ "WORKER’S",
+ "HELMET",
+ ],
+ emoji_key: "helmet_with_white_cross",
+ },
+ {
+ keywords: [
+ "prayer_beads",
+ "prayer",
+ "beads",
+ "PRAYER",
+ "BEADSdhikr",
+ "religious",
+ ],
+ emoji_key: "prayer_beads",
+ },
+ {
+ keywords: [
+ "lipstick",
+ "lipstick",
+ "LIPSTICKfemale",
+ "girl",
+ "fashion",
+ "woman",
+ ],
+ emoji_key: "lipstick",
+ },
+ {
+ keywords: [
+ "ring",
+ "ring",
+ "RINGwedding",
+ "propose",
+ "marriage",
+ "valentines",
+ "diamond",
+ "fashion",
+ "jewelry",
+ "gem",
+ "engagement",
+ ],
+ emoji_key: "ring",
+ },
+ {
+ keywords: [
+ "gem",
+ "gem",
+ "GEM",
+ "STONEblue",
+ "ruby",
+ "diamond",
+ "jewelry",
+ ],
+ emoji_key: "gem",
+ },
+ {
+ keywords: [
+ "mute",
+ "mute",
+ "SPEAKER",
+ "WITH",
+ "CANCELLATION",
+ "STROKEunspoken",
+ "sound",
+ "wordless",
+ "silence",
+ "nonspeaking",
+ "quiet",
+ "silent",
+ "volume",
+ ],
+ emoji_key: "mute",
+ },
+ {
+ keywords: [
+ "speaker",
+ "speaker",
+ "SPEAKERsound",
+ "loudspeaker",
+ "silence",
+ "broadcast",
+ "volume",
+ ],
+ emoji_key: "speaker",
+ },
+ {
+ keywords: [
+ "sound",
+ "sound",
+ "SPEAKER",
+ "WITH",
+ "ONE",
+ "SOUND",
+ "WAVEvolume",
+ "audio",
+ "speaker",
+ "broadcast",
+ ],
+ emoji_key: "sound",
+ },
+ {
+ keywords: [
+ "loud_sound",
+ "loud",
+ "sound",
+ "SPEAKER",
+ "WITH",
+ "THREE",
+ "SOUND",
+ "WAVESbellow",
+ "blare",
+ "broadcast",
+ "noise",
+ "speaker",
+ "noisy",
+ "bang",
+ "volume",
+ "roar",
+ "boom",
+ ],
+ emoji_key: "loud_sound",
+ },
+ {
+ keywords: [
+ "loudspeaker",
+ "loudspeaker",
+ "PUBLIC",
+ "ADDRESS",
+ "LOUDSPEAKERsound",
+ "speakerphone",
+ "speakers",
+ "volume",
+ "amplifier",
+ ],
+ emoji_key: "loudspeaker",
+ },
+ {
+ keywords: [
+ "mega",
+ "mega",
+ "CHEERING",
+ "MEGAPHONEsound",
+ "speaker",
+ "volume",
+ ],
+ emoji_key: "mega",
+ },
+ {
+ keywords: [
+ "postal_horn",
+ "postal",
+ "horn",
+ "POSTAL",
+ "HORNinstrument",
+ "music",
+ ],
+ emoji_key: "postal_horn",
+ },
+ {
+ keywords: [
+ "bell",
+ "bell",
+ "BELLring",
+ "sound",
+ "notification",
+ "buzzer",
+ "xmas",
+ "christmas",
+ "chime",
+ ],
+ emoji_key: "bell",
+ },
+ {
+ keywords: [
+ "no_bell",
+ "no",
+ "bell",
+ "BELL",
+ "WITH",
+ "CANCELLATION",
+ "STROKEsound",
+ "volume",
+ "mute",
+ "quiet",
+ "silent",
+ ],
+ emoji_key: "no_bell",
+ },
+ {
+ keywords: [
+ "musical_score",
+ "musical",
+ "score",
+ "MUSICAL",
+ "SCOREtreble",
+ "clef",
+ "music",
+ "compose",
+ ],
+ emoji_key: "musical_score",
+ },
+ {
+ keywords: [
+ "musical_note",
+ "musical",
+ "note",
+ "MUSICAL",
+ "NOTEscore",
+ "tone",
+ "sound",
+ ],
+ emoji_key: "musical_note",
+ },
+ {
+ keywords: [
+ "notes",
+ "notes",
+ "MULTIPLE",
+ "MUSICAL",
+ "NOTESmusic",
+ "tone",
+ "score",
+ ],
+ emoji_key: "notes",
+ },
+ {
+ keywords: [
+ "studio_microphone",
+ "studio",
+ "microphone",
+ "STUDIO",
+ "MICROPHONEsing",
+ "recording",
+ "artist",
+ "talkshow",
+ ],
+ emoji_key: "studio_microphone",
+ },
+ {
+ keywords: ["level_slider", "level", "slider", "LEVEL", "SLIDERscale"],
+ emoji_key: "level_slider",
+ },
+ {
+ keywords: ["control_knobs", "control", "knobs", "CONTROL", "KNOBSdial"],
+ emoji_key: "control_knobs",
+ },
+ {
+ keywords: [
+ "microphone",
+ "microphone",
+ "MICROPHONEsound",
+ "talkshow",
+ "music",
+ "mic",
+ "mike",
+ "PA",
+ "boom",
+ "sing",
+ ],
+ emoji_key: "microphone",
+ },
+ {
+ keywords: [
+ "headphones",
+ "headphones",
+ "HEADPHONEmusic",
+ "gadgets",
+ "earphone",
+ "score",
+ ],
+ emoji_key: "headphones",
+ },
+ {
+ keywords: [
+ "radio",
+ "radio",
+ "RADIOprogram",
+ "music",
+ "broadcast",
+ "podcast",
+ "broadcasting",
+ "communication",
+ ],
+ emoji_key: "radio",
+ },
+ {
+ keywords: [
+ "saxophone",
+ "saxophone",
+ "SAXOPHONEmusic",
+ "instrument",
+ "jazz",
+ "blues",
+ ],
+ emoji_key: "saxophone",
+ },
+ {
+ keywords: ["accordion", "accordion", "ACCORDION"],
+ emoji_key: "accordion",
+ },
+ {
+ keywords: ["guitar", "guitar", "GUITARmusic", "instrument"],
+ emoji_key: "guitar",
+ },
+ {
+ keywords: [
+ "musical_keyboard",
+ "musical",
+ "keyboard",
+ "MUSICAL",
+ "KEYBOARDpiano",
+ "instrument",
+ "compose",
+ ],
+ emoji_key: "musical_keyboard",
+ },
+ {
+ keywords: ["trumpet", "trumpet", "TRUMPETmusic", "horn", "brass"],
+ emoji_key: "trumpet",
+ },
+ {
+ keywords: [
+ "violin",
+ "violin",
+ "VIOLINfiddle",
+ "symphony",
+ "music",
+ "instrument",
+ "orchestra",
+ ],
+ emoji_key: "violin",
+ },
+ { keywords: ["banjo", "banjo", "BANJO"], emoji_key: "banjo" },
+ {
+ keywords: [
+ "drum_with_drumsticks",
+ "drum",
+ "with",
+ "drumsticks",
+ "DRUM",
+ "WITH",
+ "DRUMSTICKS",
+ ],
+ emoji_key: "drum_with_drumsticks",
+ },
+ {
+ keywords: ["long_drum", "long", "drum", "LONG", "DRUM"],
+ emoji_key: "long_drum",
+ },
+ { keywords: ["maracas", "maracas", "MARACAS"], emoji_key: "maracas" },
+ { keywords: ["flute", "flute", "FLUTE"], emoji_key: "flute" },
+ {
+ keywords: [
+ "iphone",
+ "iphone",
+ "MOBILE",
+ "PHONEgadgets",
+ "cellphone",
+ "smartphone",
+ "technology",
+ "apple",
+ "dial",
+ ],
+ emoji_key: "iphone",
+ },
+ {
+ keywords: [
+ "calling",
+ "calling",
+ "MOBILE",
+ "PHONE",
+ "WITH",
+ "RIGHTWARDS",
+ "ARROW",
+ "AT",
+ "LEFTcontacting",
+ "dialing",
+ "iphone",
+ "incoming",
+ ],
+ emoji_key: "calling",
+ },
+ {
+ keywords: [
+ "phone",
+ "phone",
+ "BLACK",
+ "TELEPHONEtelephone",
+ "dial",
+ "technology",
+ "call",
+ "communication",
+ ],
+ emoji_key: "phone",
+ },
+ {
+ keywords: [
+ "telephone_receiver",
+ "telephone",
+ "receiver",
+ "TELEPHONE",
+ "RECEIVERtechnology",
+ "communication",
+ "dial",
+ ],
+ emoji_key: "telephone_receiver",
+ },
+ {
+ keywords: ["pager", "pager", "PAGERbbcall", "beeper", "90s", "oldschool"],
+ emoji_key: "pager",
+ },
+ {
+ keywords: ["fax", "fax", "FAX", "MACHINEcommunication", "technology"],
+ emoji_key: "fax",
+ },
+ {
+ keywords: ["battery", "battery", "BATTERYpower", "energy", "sustain"],
+ emoji_key: "battery",
+ },
+ {
+ keywords: ["low_battery", "low", "battery", "LOW", "BATTERY"],
+ emoji_key: "low_battery",
+ },
+ {
+ keywords: [
+ "electric_plug",
+ "electric",
+ "plug",
+ "ELECTRIC",
+ "PLUGsocket",
+ "charger",
+ "power",
+ ],
+ emoji_key: "electric_plug",
+ },
+ {
+ keywords: [
+ "computer",
+ "computer",
+ "PERSONAL",
+ "COMPUTERdisplay",
+ "laptop",
+ "screen",
+ "technology",
+ "monitor",
+ ],
+ emoji_key: "computer",
+ },
+ {
+ keywords: [
+ "desktop_computer",
+ "desktop",
+ "computer",
+ "DESKTOP",
+ "COMPUTERtechnology",
+ "computing",
+ "screen",
+ ],
+ emoji_key: "desktop_computer",
+ },
+ {
+ keywords: ["printer", "printer", "PRINTERpaper", "ink"],
+ emoji_key: "printer",
+ },
+ {
+ keywords: [
+ "keyboard",
+ "keyboard",
+ "KEYBOARDtechnology",
+ "computer",
+ "type",
+ "input",
+ "text",
+ ],
+ emoji_key: "keyboard",
+ },
+ {
+ keywords: [
+ "three_button_mouse",
+ "three",
+ "button",
+ "mouse",
+ "COMPUTER",
+ "MOUSE",
+ ],
+ emoji_key: "three_button_mouse",
+ },
+ {
+ keywords: ["trackball", "trackball", "TRACKBALLtechnology", "trackpad"],
+ emoji_key: "trackball",
+ },
+ {
+ keywords: [
+ "minidisc",
+ "minidisc",
+ "MINIDISCtechnology",
+ "record",
+ "data",
+ "disk",
+ "90s",
+ ],
+ emoji_key: "minidisc",
+ },
+ {
+ keywords: [
+ "floppy_disk",
+ "floppy",
+ "disk",
+ "FLOPPY",
+ "DISKoldschool",
+ "technology",
+ "save",
+ "90s",
+ "80s",
+ ],
+ emoji_key: "floppy_disk",
+ },
+ {
+ keywords: [
+ "cd",
+ "cd",
+ "OPTICAL",
+ "DISCtechnology",
+ "dvd",
+ "disk",
+ "disc",
+ "90s",
+ ],
+ emoji_key: "cd",
+ },
+ { keywords: ["dvd", "dvd", "DVDcd", "disk", "disc"], emoji_key: "dvd" },
+ { keywords: ["abacus", "abacus", "ABACUS"], emoji_key: "abacus" },
+ {
+ keywords: [
+ "movie_camera",
+ "movie",
+ "camera",
+ "MOVIE",
+ "CAMERAfilm",
+ "record",
+ ],
+ emoji_key: "movie_camera",
+ },
+ {
+ keywords: ["film_frames", "film", "frames", "FILM", "FRAMES"],
+ emoji_key: "film_frames",
+ },
+ {
+ keywords: [
+ "film_projector",
+ "film",
+ "projector",
+ "FILM",
+ "PROJECTORvideo",
+ "tape",
+ "record",
+ "movie",
+ ],
+ emoji_key: "film_projector",
+ },
+ {
+ keywords: [
+ "clapper",
+ "clapper",
+ "CLAPPER",
+ "BOARDmovie",
+ "film",
+ "record",
+ ],
+ emoji_key: "clapper",
+ },
+ {
+ keywords: [
+ "tv",
+ "tv",
+ "TELEVISIONtechnology",
+ "program",
+ "oldschool",
+ "show",
+ "television",
+ ],
+ emoji_key: "tv",
+ },
+ {
+ keywords: ["camera", "camera", "CAMERAgadgets", "photography"],
+ emoji_key: "camera",
+ },
+ {
+ keywords: [
+ "camera_with_flash",
+ "camera",
+ "with",
+ "flash",
+ "CAMERA",
+ "WITH",
+ "FLASH",
+ ],
+ emoji_key: "camera_with_flash",
+ },
+ {
+ keywords: [
+ "video_camera",
+ "video",
+ "camera",
+ "VIDEO",
+ "CAMERAfilm",
+ "record",
+ ],
+ emoji_key: "video_camera",
+ },
+ {
+ keywords: [
+ "vhs",
+ "vhs",
+ "VIDEOCASSETTErecord",
+ "video",
+ "oldschool",
+ "90s",
+ "80s",
+ ],
+ emoji_key: "vhs",
+ },
+ {
+ keywords: [
+ "mag",
+ "mag",
+ "LEFT-POINTING",
+ "MAGNIFYING",
+ "GLASSsearch",
+ "zoom",
+ "find",
+ "detective",
+ ],
+ emoji_key: "mag",
+ },
+ {
+ keywords: [
+ "mag_right",
+ "mag",
+ "right",
+ "RIGHT-POINTING",
+ "MAGNIFYING",
+ "GLASSsearch",
+ "zoom",
+ "find",
+ "detective",
+ ],
+ emoji_key: "mag_right",
+ },
+ {
+ keywords: ["candle", "candle", "CANDLEfire", "wax"],
+ emoji_key: "candle",
+ },
+ {
+ keywords: [
+ "bulb",
+ "bulb",
+ "ELECTRIC",
+ "LIGHT",
+ "BULBlight",
+ "electricity",
+ "idea",
+ ],
+ emoji_key: "bulb",
+ },
+ {
+ keywords: [
+ "flashlight",
+ "flashlight",
+ "ELECTRIC",
+ "TORCHdark",
+ "camping",
+ "sight",
+ "night",
+ ],
+ emoji_key: "flashlight",
+ },
+ {
+ keywords: [
+ "izakaya_lantern",
+ "izakaya",
+ "lantern",
+ "IZAKAYA",
+ "LANTERNlight",
+ "paper",
+ "halloween",
+ "spooky",
+ ],
+ emoji_key: "izakaya_lantern",
+ },
+ {
+ keywords: ["diya_lamp", "diya", "lamp", "DIYA", "LAMP"],
+ emoji_key: "diya_lamp",
+ },
+ {
+ keywords: [
+ "notebook_with_decorative_cover",
+ "notebook",
+ "with",
+ "decorative",
+ "cover",
+ "NOTEBOOK",
+ "WITH",
+ "DECORATIVE",
+ "COVERclassroom",
+ "notes",
+ "record",
+ "paper",
+ "study",
+ ],
+ emoji_key: "notebook_with_decorative_cover",
+ },
+ {
+ keywords: [
+ "closed_book",
+ "closed",
+ "book",
+ "CLOSED",
+ "BOOKread",
+ "library",
+ "knowledge",
+ "textbook",
+ "learn",
+ ],
+ emoji_key: "closed_book",
+ },
+ { keywords: ["book", "book", "OPEN", "BOOK"], emoji_key: "book" },
+ {
+ keywords: [
+ "green_book",
+ "green",
+ "book",
+ "GREEN",
+ "BOOKread",
+ "library",
+ "knowledge",
+ "study",
+ ],
+ emoji_key: "green_book",
+ },
+ {
+ keywords: [
+ "blue_book",
+ "blue",
+ "book",
+ "BLUE",
+ "BOOKread",
+ "library",
+ "knowledge",
+ "learn",
+ "study",
+ ],
+ emoji_key: "blue_book",
+ },
+ {
+ keywords: [
+ "orange_book",
+ "orange",
+ "book",
+ "ORANGE",
+ "BOOKread",
+ "library",
+ "knowledge",
+ "textbook",
+ "study",
+ ],
+ emoji_key: "orange_book",
+ },
+ {
+ keywords: ["books", "books", "BOOKSliterature", "library", "study"],
+ emoji_key: "books",
+ },
+ {
+ keywords: [
+ "notebook",
+ "notebook",
+ "NOTEBOOKstationery",
+ "record",
+ "notes",
+ "paper",
+ "study",
+ ],
+ emoji_key: "notebook",
+ },
+ {
+ keywords: ["ledger", "ledger", "LEDGERnotes", "paper"],
+ emoji_key: "ledger",
+ },
+ {
+ keywords: [
+ "page_with_curl",
+ "page",
+ "with",
+ "curl",
+ "PAGE",
+ "WITH",
+ "CURLdocuments",
+ "office",
+ "paper",
+ ],
+ emoji_key: "page_with_curl",
+ },
+ {
+ keywords: [
+ "scroll",
+ "scroll",
+ "SCROLLdocuments",
+ "ancient",
+ "history",
+ "paper",
+ ],
+ emoji_key: "scroll",
+ },
+ {
+ keywords: [
+ "page_facing_up",
+ "page",
+ "facing",
+ "up",
+ "PAGE",
+ "FACING",
+ "UPdocuments",
+ "office",
+ "paper",
+ "information",
+ ],
+ emoji_key: "page_facing_up",
+ },
+ {
+ keywords: ["newspaper", "newspaper", "NEWSPAPERpress", "headline"],
+ emoji_key: "newspaper",
+ },
+ {
+ keywords: [
+ "rolled_up_newspaper",
+ "rolled",
+ "up",
+ "newspaper",
+ "ROLLED-UP",
+ "NEWSPAPER",
+ ],
+ emoji_key: "rolled_up_newspaper",
+ },
+ {
+ keywords: [
+ "bookmark_tabs",
+ "bookmark",
+ "tabs",
+ "BOOKMARK",
+ "TABSfavorite",
+ "save",
+ "order",
+ "tidy",
+ ],
+ emoji_key: "bookmark_tabs",
+ },
+ {
+ keywords: ["bookmark", "bookmark", "BOOKMARKfavorite", "label", "save"],
+ emoji_key: "bookmark",
+ },
+ { keywords: ["label", "label", "LABELsale", "tag"], emoji_key: "label" },
+ {
+ keywords: [
+ "moneybag",
+ "moneybag",
+ "MONEY",
+ "BAGdollar",
+ "payment",
+ "coins",
+ "sale",
+ ],
+ emoji_key: "moneybag",
+ },
+ { keywords: ["coin", "coin", "COIN"], emoji_key: "coin" },
+ {
+ keywords: [
+ "yen",
+ "yen",
+ "BANKNOTE",
+ "WITH",
+ "YEN",
+ "SIGNmoney",
+ "sales",
+ "japanese",
+ "dollar",
+ "currency",
+ ],
+ emoji_key: "yen",
+ },
+ {
+ keywords: [
+ "dollar",
+ "dollar",
+ "BANKNOTE",
+ "WITH",
+ "DOLLAR",
+ "SIGNmoney",
+ "sales",
+ "bill",
+ "currency",
+ ],
+ emoji_key: "dollar",
+ },
+ {
+ keywords: [
+ "euro",
+ "euro",
+ "BANKNOTE",
+ "WITH",
+ "EURO",
+ "SIGNmoney",
+ "sales",
+ "dollar",
+ "currency",
+ ],
+ emoji_key: "euro",
+ },
+ {
+ keywords: [
+ "pound",
+ "pound",
+ "BANKNOTE",
+ "WITH",
+ "POUND",
+ "SIGNbritish",
+ "sterling",
+ "money",
+ "sales",
+ "bills",
+ "uk",
+ "england",
+ "currency",
+ ],
+ emoji_key: "pound",
+ },
+ {
+ keywords: [
+ "money_with_wings",
+ "money",
+ "with",
+ "wings",
+ "MONEY",
+ "WITH",
+ "WINGSdollar",
+ "bills",
+ "payment",
+ "sale",
+ ],
+ emoji_key: "money_with_wings",
+ },
+ {
+ keywords: [
+ "credit_card",
+ "credit",
+ "card",
+ "CREDIT",
+ "CARDmoney",
+ "sales",
+ "dollar",
+ "bill",
+ "payment",
+ "shopping",
+ ],
+ emoji_key: "credit_card",
+ },
+ { keywords: ["receipt", "receipt", "RECEIPT"], emoji_key: "receipt" },
+ {
+ keywords: [
+ "chart",
+ "chart",
+ "CHART",
+ "WITH",
+ "UPWARDS",
+ "TREND",
+ "AND",
+ "YEN",
+ "SIGNgreen-square",
+ "graph",
+ "presentation",
+ "stats",
+ ],
+ emoji_key: "chart",
+ },
+ {
+ keywords: [
+ "email",
+ "email",
+ "ENVELOPEletter",
+ "postal",
+ "inbox",
+ "communication",
+ ],
+ emoji_key: "email",
+ },
+ {
+ keywords: ["e-mail", "e-mail", "E-MAIL", "SYMBOLcommunication", "inbox"],
+ emoji_key: "e-mail",
+ },
+ {
+ keywords: [
+ "incoming_envelope",
+ "incoming",
+ "envelope",
+ "INCOMING",
+ "ENVELOPEemail",
+ "inbox",
+ ],
+ emoji_key: "incoming_envelope",
+ },
+ {
+ keywords: [
+ "envelope_with_arrow",
+ "envelope",
+ "with",
+ "arrow",
+ "ENVELOPE",
+ "WITH",
+ "DOWNWARDS",
+ "ARROW",
+ "ABOVEemail",
+ "communication",
+ ],
+ emoji_key: "envelope_with_arrow",
+ },
+ {
+ keywords: [
+ "outbox_tray",
+ "outbox",
+ "tray",
+ "OUTBOX",
+ "TRAYinbox",
+ "email",
+ ],
+ emoji_key: "outbox_tray",
+ },
+ {
+ keywords: [
+ "inbox_tray",
+ "inbox",
+ "tray",
+ "INBOX",
+ "TRAYemail",
+ "documents",
+ ],
+ emoji_key: "inbox_tray",
+ },
+ {
+ keywords: [
+ "package",
+ "package",
+ "PACKAGEmail",
+ "gift",
+ "cardboard",
+ "box",
+ "moving",
+ ],
+ emoji_key: "package",
+ },
+ {
+ keywords: [
+ "mailbox",
+ "mailbox",
+ "CLOSED",
+ "MAILBOX",
+ "WITH",
+ "RAISED",
+ "FLAGemail",
+ "inbox",
+ "communication",
+ ],
+ emoji_key: "mailbox",
+ },
+ {
+ keywords: [
+ "mailbox_closed",
+ "mailbox",
+ "closed",
+ "CLOSED",
+ "MAILBOX",
+ "WITH",
+ "LOWERED",
+ "FLAGemail",
+ "communication",
+ "inbox",
+ ],
+ emoji_key: "mailbox_closed",
+ },
+ {
+ keywords: [
+ "mailbox_with_mail",
+ "mailbox",
+ "with",
+ "mail",
+ "OPEN",
+ "MAILBOX",
+ "WITH",
+ "RAISED",
+ "FLAGemail",
+ "inbox",
+ "communication",
+ ],
+ emoji_key: "mailbox_with_mail",
+ },
+ {
+ keywords: [
+ "mailbox_with_no_mail",
+ "mailbox",
+ "with",
+ "no",
+ "mail",
+ "OPEN",
+ "MAILBOX",
+ "WITH",
+ "LOWERED",
+ "FLAGemail",
+ "inbox",
+ ],
+ emoji_key: "mailbox_with_no_mail",
+ },
+ {
+ keywords: ["postbox", "postbox", "POSTBOXemail", "letter", "envelope"],
+ emoji_key: "postbox",
+ },
+ {
+ keywords: [
+ "ballot_box_with_ballot",
+ "ballot",
+ "box",
+ "with",
+ "ballot",
+ "BALLOT",
+ "BOX",
+ "WITH",
+ "BALLOT",
+ ],
+ emoji_key: "ballot_box_with_ballot",
+ },
+ {
+ keywords: [
+ "pencil2",
+ "pencil2",
+ "PENCILstationery",
+ "write",
+ "paper",
+ "writing",
+ "school",
+ "study",
+ ],
+ emoji_key: "pencil2",
+ },
+ {
+ keywords: [
+ "black_nib",
+ "black",
+ "nib",
+ "BLACK",
+ "NIBpen",
+ "stationery",
+ "writing",
+ "write",
+ ],
+ emoji_key: "black_nib",
+ },
+ {
+ keywords: [
+ "lower_left_fountain_pen",
+ "lower",
+ "left",
+ "fountain",
+ "pen",
+ "FOUNTAIN",
+ "PEN",
+ ],
+ emoji_key: "lower_left_fountain_pen",
+ },
+ {
+ keywords: [
+ "lower_left_ballpoint_pen",
+ "lower",
+ "left",
+ "ballpoint",
+ "pen",
+ "PEN",
+ ],
+ emoji_key: "lower_left_ballpoint_pen",
+ },
+ {
+ keywords: [
+ "lower_left_paintbrush",
+ "lower",
+ "left",
+ "paintbrush",
+ "PAINTBRUSH",
+ ],
+ emoji_key: "lower_left_paintbrush",
+ },
+ {
+ keywords: ["lower_left_crayon", "lower", "left", "crayon", "CRAYON"],
+ emoji_key: "lower_left_crayon",
+ },
+ {
+ keywords: [
+ "memo",
+ "memo",
+ "MEMOwrite",
+ "documents",
+ "stationery",
+ "pencil",
+ "paper",
+ "writing",
+ "legal",
+ "exam",
+ "quiz",
+ "test",
+ "study",
+ "compose",
+ ],
+ emoji_key: "memo",
+ },
+ {
+ keywords: [
+ "briefcase",
+ "briefcase",
+ "BRIEFCASEbusiness",
+ "documents",
+ "work",
+ "law",
+ "legal",
+ "job",
+ "career",
+ ],
+ emoji_key: "briefcase",
+ },
+ {
+ keywords: [
+ "file_folder",
+ "file",
+ "folder",
+ "FILE",
+ "FOLDERdocuments",
+ "business",
+ "office",
+ ],
+ emoji_key: "file_folder",
+ },
+ {
+ keywords: [
+ "open_file_folder",
+ "open",
+ "file",
+ "folder",
+ "OPEN",
+ "FILE",
+ "FOLDERdocuments",
+ "load",
+ ],
+ emoji_key: "open_file_folder",
+ },
+ {
+ keywords: [
+ "card_index_dividers",
+ "card",
+ "index",
+ "dividers",
+ "CARD",
+ "INDEX",
+ "DIVIDERSorganizing",
+ "business",
+ "stationery",
+ ],
+ emoji_key: "card_index_dividers",
+ },
+ {
+ keywords: ["date", "date", "CALENDARcalendar", "schedule"],
+ emoji_key: "date",
+ },
+ {
+ keywords: [
+ "calendar",
+ "calendar",
+ "TEAR-OFF",
+ "CALENDARschedule",
+ "date",
+ "planning",
+ ],
+ emoji_key: "calendar",
+ },
+ {
+ keywords: [
+ "spiral_note_pad",
+ "spiral",
+ "note",
+ "pad",
+ "SPIRAL",
+ "NOTEPAD",
+ ],
+ emoji_key: "spiral_note_pad",
+ },
+ {
+ keywords: [
+ "spiral_calendar_pad",
+ "spiral",
+ "calendar",
+ "pad",
+ "SPIRAL",
+ "CALENDAR",
+ ],
+ emoji_key: "spiral_calendar_pad",
+ },
+ {
+ keywords: [
+ "card_index",
+ "card",
+ "index",
+ "CARD",
+ "INDEXbusiness",
+ "stationery",
+ ],
+ emoji_key: "card_index",
+ },
+ {
+ keywords: [
+ "chart_with_upwards_trend",
+ "chart",
+ "with",
+ "upwards",
+ "trend",
+ "CHART",
+ "WITH",
+ "UPWARDS",
+ "TRENDgraph",
+ "presentation",
+ "stats",
+ "recovery",
+ "business",
+ "economics",
+ "money",
+ "sales",
+ "good",
+ "success",
+ ],
+ emoji_key: "chart_with_upwards_trend",
+ },
+ {
+ keywords: [
+ "chart_with_downwards_trend",
+ "chart",
+ "with",
+ "downwards",
+ "trend",
+ "CHART",
+ "WITH",
+ "DOWNWARDS",
+ "TRENDgraph",
+ "presentation",
+ "stats",
+ "recession",
+ "business",
+ "economics",
+ "money",
+ "sales",
+ "bad",
+ "failure",
+ ],
+ emoji_key: "chart_with_downwards_trend",
+ },
+ {
+ keywords: [
+ "bar_chart",
+ "bar",
+ "chart",
+ "BAR",
+ "CHARTgraph",
+ "presentation",
+ "stats",
+ ],
+ emoji_key: "bar_chart",
+ },
+ {
+ keywords: ["clipboard", "clipboard", "CLIPBOARDstationery", "documents"],
+ emoji_key: "clipboard",
+ },
+ {
+ keywords: ["pushpin", "pushpin", "PUSHPINstationery", "mark", "here"],
+ emoji_key: "pushpin",
+ },
+ {
+ keywords: [
+ "round_pushpin",
+ "round",
+ "pushpin",
+ "ROUND",
+ "PUSHPINstationery",
+ "location",
+ "map",
+ "here",
+ ],
+ emoji_key: "round_pushpin",
+ },
+ {
+ keywords: ["paperclip", "paperclip", "PAPERCLIPdocuments", "stationery"],
+ emoji_key: "paperclip",
+ },
+ {
+ keywords: [
+ "linked_paperclips",
+ "linked",
+ "paperclips",
+ "LINKED",
+ "PAPERCLIPS",
+ ],
+ emoji_key: "linked_paperclips",
+ },
+ {
+ keywords: [
+ "straight_ruler",
+ "straight",
+ "ruler",
+ "STRAIGHT",
+ "RULERstationery",
+ "calculate",
+ "length",
+ "math",
+ "school",
+ "drawing",
+ "architect",
+ "sketch",
+ ],
+ emoji_key: "straight_ruler",
+ },
+ {
+ keywords: [
+ "triangular_ruler",
+ "triangular",
+ "ruler",
+ "TRIANGULAR",
+ "RULERstationery",
+ "math",
+ "architect",
+ "sketch",
+ ],
+ emoji_key: "triangular_ruler",
+ },
+ {
+ keywords: ["scissors", "scissors", "BLACK", "SCISSORSstationery", "cut"],
+ emoji_key: "scissors",
+ },
+ {
+ keywords: [
+ "card_file_box",
+ "card",
+ "file",
+ "box",
+ "CARD",
+ "FILE",
+ "BOXbusiness",
+ "stationery",
+ ],
+ emoji_key: "card_file_box",
+ },
+ {
+ keywords: [
+ "file_cabinet",
+ "file",
+ "cabinet",
+ "FILE",
+ "CABINETfiling",
+ "organizing",
+ ],
+ emoji_key: "file_cabinet",
+ },
+ {
+ keywords: [
+ "wastebasket",
+ "wastebasket",
+ "WASTEBASKETbin",
+ "trash",
+ "rubbish",
+ "garbage",
+ "toss",
+ ],
+ emoji_key: "wastebasket",
+ },
+ {
+ keywords: ["lock", "lock", "LOCKsecurity", "password", "padlock"],
+ emoji_key: "lock",
+ },
+ {
+ keywords: ["unlock", "unlock", "OPEN", "LOCKprivacy", "security"],
+ emoji_key: "unlock",
+ },
+ {
+ keywords: [
+ "lock_with_ink_pen",
+ "lock",
+ "with",
+ "ink",
+ "pen",
+ "LOCK",
+ "WITH",
+ "INK",
+ "PENsecurity",
+ "secret",
+ ],
+ emoji_key: "lock_with_ink_pen",
+ },
+ {
+ keywords: [
+ "closed_lock_with_key",
+ "closed",
+ "lock",
+ "with",
+ "key",
+ "CLOSED",
+ "LOCK",
+ "WITH",
+ "KEYsecurity",
+ "privacy",
+ ],
+ emoji_key: "closed_lock_with_key",
+ },
+ {
+ keywords: ["key", "key", "KEYlock", "door", "password"],
+ emoji_key: "key",
+ },
+ {
+ keywords: ["old_key", "old", "key", "OLD", "KEYlock", "door", "password"],
+ emoji_key: "old_key",
+ },
+ {
+ keywords: ["hammer", "hammer", "HAMMERtools", "build", "create"],
+ emoji_key: "hammer",
+ },
+ { keywords: ["axe", "axe", "AXE"], emoji_key: "axe" },
+ { keywords: ["pick", "pick", "PICKtools", "dig"], emoji_key: "pick" },
+ {
+ keywords: [
+ "hammer_and_pick",
+ "hammer",
+ "and",
+ "pick",
+ "HAMMER",
+ "AND",
+ "PICKtools",
+ "build",
+ "create",
+ ],
+ emoji_key: "hammer_and_pick",
+ },
+ {
+ keywords: [
+ "hammer_and_wrench",
+ "hammer",
+ "and",
+ "wrench",
+ "HAMMER",
+ "AND",
+ "WRENCHtools",
+ "build",
+ "create",
+ ],
+ emoji_key: "hammer_and_wrench",
+ },
+ {
+ keywords: ["dagger_knife", "dagger", "knife", "DAGGER"],
+ emoji_key: "dagger_knife",
+ },
+ {
+ keywords: [
+ "crossed_swords",
+ "crossed",
+ "swords",
+ "CROSSED",
+ "SWORDSweapon",
+ ],
+ emoji_key: "crossed_swords",
+ },
+ {
+ keywords: [
+ "bomb",
+ "bomb",
+ "BOMBboom",
+ "explode",
+ "explosion",
+ "terrorism",
+ ],
+ emoji_key: "bomb",
+ },
+ {
+ keywords: ["boomerang", "boomerang", "BOOMERANG"],
+ emoji_key: "boomerang",
+ },
+ {
+ keywords: [
+ "bow_and_arrow",
+ "bow",
+ "and",
+ "arrow",
+ "BOW",
+ "AND",
+ "ARROWsports",
+ ],
+ emoji_key: "bow_and_arrow",
+ },
+ {
+ keywords: ["shield", "shield", "SHIELDprotection", "security"],
+ emoji_key: "shield",
+ },
+ {
+ keywords: ["carpentry_saw", "carpentry", "saw", "CARPENTRY", "SAW"],
+ emoji_key: "carpentry_saw",
+ },
+ {
+ keywords: [
+ "wrench",
+ "wrench",
+ "WRENCHtools",
+ "diy",
+ "ikea",
+ "fix",
+ "maintainer",
+ ],
+ emoji_key: "wrench",
+ },
+ {
+ keywords: ["screwdriver", "screwdriver", "SCREWDRIVER"],
+ emoji_key: "screwdriver",
+ },
+ {
+ keywords: [
+ "nut_and_bolt",
+ "nut",
+ "and",
+ "bolt",
+ "NUT",
+ "AND",
+ "BOLThandy",
+ "tools",
+ "fix",
+ ],
+ emoji_key: "nut_and_bolt",
+ },
+ { keywords: ["gear", "gear", "GEARcog"], emoji_key: "gear" },
+ {
+ keywords: ["compression", "compression", "CLAMP"],
+ emoji_key: "compression",
+ },
+ { keywords: ["scales", "scales", "BALANCE", "SCALE"], emoji_key: "scales" },
+ {
+ keywords: ["probing_cane", "probing", "cane", "PROBING", "CANE"],
+ emoji_key: "probing_cane",
+ },
+ {
+ keywords: ["link", "link", "LINK", "SYMBOLrings", "url"],
+ emoji_key: "link",
+ },
+ {
+ keywords: ["chains", "chains", "CHAINSlock", "arrest"],
+ emoji_key: "chains",
+ },
+ { keywords: ["hook", "hook", "HOOK"], emoji_key: "hook" },
+ { keywords: ["toolbox", "toolbox", "TOOLBOX"], emoji_key: "toolbox" },
+ { keywords: ["magnet", "magnet", "MAGNET"], emoji_key: "magnet" },
+ { keywords: ["ladder", "ladder", "LADDER"], emoji_key: "ladder" },
+ {
+ keywords: [
+ "alembic",
+ "alembic",
+ "ALEMBICdistilling",
+ "science",
+ "experiment",
+ "chemistry",
+ ],
+ emoji_key: "alembic",
+ },
+ {
+ keywords: ["test_tube", "test", "tube", "TEST", "TUBE"],
+ emoji_key: "test_tube",
+ },
+ {
+ keywords: ["petri_dish", "petri", "dish", "PETRI", "DISH"],
+ emoji_key: "petri_dish",
+ },
+ { keywords: ["dna", "dna", "DNA", "DOUBLE", "HELIX"], emoji_key: "dna" },
+ {
+ keywords: [
+ "microscope",
+ "microscope",
+ "MICROSCOPElaboratory",
+ "experiment",
+ "zoomin",
+ "science",
+ "study",
+ ],
+ emoji_key: "microscope",
+ },
+ {
+ keywords: [
+ "telescope",
+ "telescope",
+ "TELESCOPEstars",
+ "space",
+ "zoom",
+ "science",
+ "astronomy",
+ ],
+ emoji_key: "telescope",
+ },
+ {
+ keywords: [
+ "satellite_antenna",
+ "satellite",
+ "antenna",
+ "SATELLITE",
+ "ANTENNA",
+ ],
+ emoji_key: "satellite_antenna",
+ },
+ {
+ keywords: [
+ "syringe",
+ "syringe",
+ "SYRINGEhealth",
+ "hospital",
+ "drugs",
+ "blood",
+ "medicine",
+ "needle",
+ "doctor",
+ "nurse",
+ ],
+ emoji_key: "syringe",
+ },
+ {
+ keywords: ["drop_of_blood", "drop", "of", "blood", "DROP", "OF", "BLOOD"],
+ emoji_key: "drop_of_blood",
+ },
+ {
+ keywords: [
+ "pill",
+ "pill",
+ "PILLhealth",
+ "medicine",
+ "doctor",
+ "pharmacy",
+ "drug",
+ ],
+ emoji_key: "pill",
+ },
+ {
+ keywords: [
+ "adhesive_bandage",
+ "adhesive",
+ "bandage",
+ "ADHESIVE",
+ "BANDAGE",
+ ],
+ emoji_key: "adhesive_bandage",
+ },
+ { keywords: ["crutch", "crutch", "CRUTCH"], emoji_key: "crutch" },
+ {
+ keywords: ["stethoscope", "stethoscope", "STETHOSCOPE"],
+ emoji_key: "stethoscope",
+ },
+ { keywords: ["x-ray", "x-ray", "X-RAY"], emoji_key: "x-ray" },
+ {
+ keywords: ["door", "door", "DOORhouse", "entry", "exit"],
+ emoji_key: "door",
+ },
+ { keywords: ["elevator", "elevator", "ELEVATOR"], emoji_key: "elevator" },
+ { keywords: ["mirror", "mirror", "MIRROR"], emoji_key: "mirror" },
+ { keywords: ["window", "window", "WINDOW"], emoji_key: "window" },
+ { keywords: ["bed", "bed", "BEDsleep", "rest"], emoji_key: "bed" },
+ {
+ keywords: [
+ "couch_and_lamp",
+ "couch",
+ "and",
+ "lamp",
+ "COUCH",
+ "AND",
+ "LAMPread",
+ "chill",
+ ],
+ emoji_key: "couch_and_lamp",
+ },
+ { keywords: ["chair", "chair", "CHAIR"], emoji_key: "chair" },
+ {
+ keywords: [
+ "toilet",
+ "toilet",
+ "TOILETrestroom",
+ "wc",
+ "washroom",
+ "bathroom",
+ "potty",
+ ],
+ emoji_key: "toilet",
+ },
+ { keywords: ["plunger", "plunger", "PLUNGER"], emoji_key: "plunger" },
+ {
+ keywords: ["shower", "shower", "SHOWERclean", "water", "bathroom"],
+ emoji_key: "shower",
+ },
+ {
+ keywords: ["bathtub", "bathtub", "BATHTUBclean", "shower", "bathroom"],
+ emoji_key: "bathtub",
+ },
+ {
+ keywords: ["mouse_trap", "mouse", "trap", "MOUSE", "TRAP"],
+ emoji_key: "mouse_trap",
+ },
+ { keywords: ["razor", "razor", "RAZOR"], emoji_key: "razor" },
+ {
+ keywords: ["lotion_bottle", "lotion", "bottle", "LOTION", "BOTTLE"],
+ emoji_key: "lotion_bottle",
+ },
+ {
+ keywords: ["safety_pin", "safety", "pin", "SAFETY", "PIN"],
+ emoji_key: "safety_pin",
+ },
+ { keywords: ["broom", "broom", "BROOM"], emoji_key: "broom" },
+ { keywords: ["basket", "basket", "BASKET"], emoji_key: "basket" },
+ {
+ keywords: ["roll_of_paper", "roll", "of", "paper", "ROLL", "OF", "PAPER"],
+ emoji_key: "roll_of_paper",
+ },
+ { keywords: ["bucket", "bucket", "BUCKET"], emoji_key: "bucket" },
+ { keywords: ["soap", "soap", "BAR", "OF", "SOAP"], emoji_key: "soap" },
+ { keywords: ["bubbles", "bubbles", "BUBBLES"], emoji_key: "bubbles" },
+ {
+ keywords: ["toothbrush", "toothbrush", "TOOTHBRUSH"],
+ emoji_key: "toothbrush",
+ },
+ { keywords: ["sponge", "sponge", "SPONGE"], emoji_key: "sponge" },
+ {
+ keywords: [
+ "fire_extinguisher",
+ "fire",
+ "extinguisher",
+ "FIRE",
+ "EXTINGUISHER",
+ ],
+ emoji_key: "fire_extinguisher",
+ },
+ {
+ keywords: [
+ "shopping_trolley",
+ "shopping",
+ "trolley",
+ "SHOPPING",
+ "TROLLEY",
+ ],
+ emoji_key: "shopping_trolley",
+ },
+ {
+ keywords: [
+ "smoking",
+ "smoking",
+ "SMOKING",
+ "SYMBOLkills",
+ "tobacco",
+ "cigarette",
+ "joint",
+ "smoke",
+ ],
+ emoji_key: "smoking",
+ },
+ {
+ keywords: [
+ "coffin",
+ "coffin",
+ "COFFINvampire",
+ "dead",
+ "die",
+ "death",
+ "rip",
+ "graveyard",
+ "cemetery",
+ "casket",
+ "funeral",
+ "box",
+ ],
+ emoji_key: "coffin",
+ },
+ {
+ keywords: ["headstone", "headstone", "HEADSTONE"],
+ emoji_key: "headstone",
+ },
+ {
+ keywords: [
+ "funeral_urn",
+ "funeral",
+ "urn",
+ "FUNERAL",
+ "URNdead",
+ "die",
+ "death",
+ "rip",
+ "ashes",
+ ],
+ emoji_key: "funeral_urn",
+ },
+ {
+ keywords: ["nazar_amulet", "nazar", "amulet", "NAZAR", "AMULET"],
+ emoji_key: "nazar_amulet",
+ },
+ { keywords: ["hamsa", "hamsa", "HAMSA"], emoji_key: "hamsa" },
+ {
+ keywords: ["moyai", "moyai", "MOYAIrock", "easter", "island", "moai"],
+ emoji_key: "moyai",
+ },
+ { keywords: ["placard", "placard", "PLACARD"], emoji_key: "placard" },
+ {
+ keywords: [
+ "identification_card",
+ "identification",
+ "card",
+ "IDENTIFICATION",
+ "CARD",
+ ],
+ emoji_key: "identification_card",
+ },
+ {
+ keywords: [
+ "atm",
+ "atm",
+ "AUTOMATED",
+ "TELLER",
+ "MACHINEautomated",
+ "teller",
+ "sales",
+ "automatic",
+ "teller",
+ "cash",
+ "payment",
+ "cash",
+ "dispenser",
+ "automatic",
+ "teller",
+ "machine",
+ "bank",
+ "blue-square",
+ "money",
+ ],
+ emoji_key: "atm",
+ },
+ {
+ keywords: [
+ "put_litter_in_its_place",
+ "put",
+ "litter",
+ "in",
+ "its",
+ "place",
+ "PUT",
+ "LITTER",
+ "IN",
+ "ITS",
+ "PLACE",
+ "SYMBOLblue-square",
+ "sign",
+ "human",
+ "info",
+ ],
+ emoji_key: "put_litter_in_its_place",
+ },
+ {
+ keywords: [
+ "potable_water",
+ "potable",
+ "water",
+ "POTABLE",
+ "WATER",
+ "SYMBOLblue-square",
+ "liquid",
+ "restroom",
+ "cleaning",
+ "faucet",
+ ],
+ emoji_key: "potable_water",
+ },
+ {
+ keywords: [
+ "wheelchair",
+ "wheelchair",
+ "WHEELCHAIR",
+ "SYMBOLblue-square",
+ "disabled",
+ "a11y",
+ "accessibility",
+ ],
+ emoji_key: "wheelchair",
+ },
+ {
+ keywords: [
+ "mens",
+ "mens",
+ "MENS",
+ "SYMBOLtoilet",
+ "restroom",
+ "wc",
+ "blue-square",
+ "gender",
+ "male",
+ ],
+ emoji_key: "mens",
+ },
+ {
+ keywords: [
+ "womens",
+ "womens",
+ "WOMENS",
+ "SYMBOLpurple-square",
+ "woman",
+ "female",
+ "toilet",
+ "loo",
+ "restroom",
+ "gender",
+ ],
+ emoji_key: "womens",
+ },
+ {
+ keywords: [
+ "restroom",
+ "restroom",
+ "RESTROOMbathroom",
+ "toilet",
+ "wc",
+ "blue-square",
+ "gender",
+ "loo",
+ "wash",
+ "room",
+ "refresh",
+ "public",
+ "lavatory",
+ ],
+ emoji_key: "restroom",
+ },
+ {
+ keywords: [
+ "baby_symbol",
+ "baby",
+ "symbol",
+ "BABY",
+ "SYMBOLorange-square",
+ "child",
+ ],
+ emoji_key: "baby_symbol",
+ },
+ {
+ keywords: [
+ "wc",
+ "wc",
+ "WATER",
+ "CLOSETtoilet",
+ "restroom",
+ "blue-square",
+ ],
+ emoji_key: "wc",
+ },
+ {
+ keywords: [
+ "passport_control",
+ "passport",
+ "control",
+ "PASSPORT",
+ "CONTROLcustom",
+ "blue-square",
+ ],
+ emoji_key: "passport_control",
+ },
+ {
+ keywords: [
+ "customs",
+ "customs",
+ "CUSTOMSpassport",
+ "border",
+ "blue-square",
+ ],
+ emoji_key: "customs",
+ },
+ {
+ keywords: [
+ "baggage_claim",
+ "baggage",
+ "claim",
+ "BAGGAGE",
+ "CLAIMairport",
+ "transport",
+ "suitcase",
+ "blue-square",
+ ],
+ emoji_key: "baggage_claim",
+ },
+ {
+ keywords: [
+ "left_luggage",
+ "left",
+ "luggage",
+ "LEFT",
+ "LUGGAGEblue-square",
+ "travel",
+ ],
+ emoji_key: "left_luggage",
+ },
+ {
+ keywords: [
+ "warning",
+ "warning",
+ "WARNING",
+ "SIGNalert",
+ "issue",
+ "problem",
+ "wip",
+ "cautionary",
+ "exclamation",
+ "error",
+ "admonition",
+ ],
+ emoji_key: "warning",
+ },
+ {
+ keywords: [
+ "children_crossing",
+ "children",
+ "crossing",
+ "CHILDREN",
+ "CROSSINGschool",
+ "warning",
+ "danger",
+ "sign",
+ "driving",
+ "yellow-diamond",
+ ],
+ emoji_key: "children_crossing",
+ },
+ {
+ keywords: [
+ "no_entry",
+ "no",
+ "entry",
+ "NO",
+ "ENTRYlimit",
+ "security",
+ "privacy",
+ "bad",
+ "denied",
+ "stop",
+ "circle",
+ ],
+ emoji_key: "no_entry",
+ },
+ {
+ keywords: [
+ "no_entry_sign",
+ "no",
+ "entry",
+ "sign",
+ "NO",
+ "ENTRY",
+ "SIGNforbid",
+ "stop",
+ "limit",
+ "denied",
+ "disallow",
+ "circle",
+ ],
+ emoji_key: "no_entry_sign",
+ },
+ {
+ keywords: [
+ "no_bicycles",
+ "no",
+ "bicycles",
+ "NO",
+ "BICYCLEScyclist",
+ "prohibited",
+ "circle",
+ ],
+ emoji_key: "no_bicycles",
+ },
+ {
+ keywords: [
+ "no_smoking",
+ "no",
+ "smoking",
+ "NO",
+ "SMOKING",
+ "SYMBOLcigarette",
+ "blue-square",
+ "smell",
+ "smoke",
+ ],
+ emoji_key: "no_smoking",
+ },
+ {
+ keywords: [
+ "do_not_litter",
+ "do",
+ "not",
+ "litter",
+ "DO",
+ "NOT",
+ "LITTER",
+ "SYMBOLtrash",
+ "bin",
+ "garbage",
+ "circle",
+ ],
+ emoji_key: "do_not_litter",
+ },
+ {
+ keywords: [
+ "non-potable_water",
+ "non-potable",
+ "water",
+ "NON-POTABLE",
+ "WATER",
+ "SYMBOLdrink",
+ "faucet",
+ "tap",
+ "circle",
+ ],
+ emoji_key: "non-potable_water",
+ },
+ {
+ keywords: [
+ "no_pedestrians",
+ "no",
+ "pedestrians",
+ "NO",
+ "PEDESTRIANSrules",
+ "crossing",
+ "walking",
+ "circle",
+ ],
+ emoji_key: "no_pedestrians",
+ },
+ {
+ keywords: [
+ "no_mobile_phones",
+ "no",
+ "mobile",
+ "phones",
+ "NO",
+ "MOBILE",
+ "PHONESiphone",
+ "mute",
+ "circle",
+ ],
+ emoji_key: "no_mobile_phones",
+ },
+ {
+ keywords: [
+ "underage",
+ "underage",
+ "NO",
+ "ONE",
+ "UNDER",
+ "EIGHTEEN",
+ "SYMBOLnight",
+ "teenage",
+ "young",
+ "18",
+ "drink",
+ "pub",
+ "juveniles",
+ "circle",
+ "minor",
+ ],
+ emoji_key: "underage",
+ },
+ {
+ keywords: ["radioactive_sign", "radioactive", "sign", "RADIOACTIVE"],
+ emoji_key: "radioactive_sign",
+ },
+ {
+ keywords: ["biohazard_sign", "biohazard", "sign", "BIOHAZARD"],
+ emoji_key: "biohazard_sign",
+ },
+ {
+ keywords: [
+ "arrow_up",
+ "arrow",
+ "up",
+ "UPWARDS",
+ "BLACK",
+ "ARROWtop",
+ "above",
+ "continue",
+ "direction",
+ "blue-square",
+ ],
+ emoji_key: "arrow_up",
+ },
+ {
+ keywords: [
+ "arrow_upper_right",
+ "arrow",
+ "upper",
+ "right",
+ "NORTH",
+ "EAST",
+ "ARROWblue-square",
+ "point",
+ "direction",
+ "diagonal",
+ "northeast",
+ ],
+ emoji_key: "arrow_upper_right",
+ },
+ {
+ keywords: [
+ "arrow_right",
+ "arrow",
+ "right",
+ "BLACK",
+ "RIGHTWARDS",
+ "ARROWblue-square",
+ "next",
+ ],
+ emoji_key: "arrow_right",
+ },
+ {
+ keywords: [
+ "arrow_lower_right",
+ "arrow",
+ "lower",
+ "right",
+ "SOUTH",
+ "EAST",
+ "ARROWblue-square",
+ "direction",
+ "diagonal",
+ "southeast",
+ ],
+ emoji_key: "arrow_lower_right",
+ },
+ {
+ keywords: [
+ "arrow_down",
+ "arrow",
+ "down",
+ "DOWNWARDS",
+ "BLACK",
+ "ARROWblue-square",
+ "direction",
+ "bottom",
+ ],
+ emoji_key: "arrow_down",
+ },
+ {
+ keywords: [
+ "arrow_lower_left",
+ "arrow",
+ "lower",
+ "left",
+ "SOUTH",
+ "WEST",
+ "ARROWblue-square",
+ "direction",
+ "diagonal",
+ "southwest",
+ ],
+ emoji_key: "arrow_lower_left",
+ },
+ {
+ keywords: [
+ "arrow_left",
+ "arrow",
+ "left",
+ "LEFTWARDS",
+ "BLACK",
+ "ARROWblue-square",
+ "previous",
+ "back",
+ ],
+ emoji_key: "arrow_left",
+ },
+ {
+ keywords: [
+ "arrow_upper_left",
+ "arrow",
+ "upper",
+ "left",
+ "NORTH",
+ "WEST",
+ "ARROWblue-square",
+ "point",
+ "direction",
+ "diagonal",
+ "northwest",
+ ],
+ emoji_key: "arrow_upper_left",
+ },
+ {
+ keywords: [
+ "arrow_up_down",
+ "arrow",
+ "up",
+ "down",
+ "UP",
+ "DOWN",
+ "ARROWblue-square",
+ "direction",
+ "way",
+ "vertical",
+ ],
+ emoji_key: "arrow_up_down",
+ },
+ {
+ keywords: [
+ "left_right_arrow",
+ "left",
+ "right",
+ "arrow",
+ "LEFT",
+ "RIGHT",
+ "ARROWshape",
+ "direction",
+ "horizontal",
+ "sideways",
+ ],
+ emoji_key: "left_right_arrow",
+ },
+ {
+ keywords: [
+ "leftwards_arrow_with_hook",
+ "leftwards",
+ "arrow",
+ "with",
+ "hook",
+ "LEFTWARDS",
+ "ARROW",
+ "WITH",
+ "HOOKback",
+ "return",
+ "blue-square",
+ "undo",
+ "enter",
+ ],
+ emoji_key: "leftwards_arrow_with_hook",
+ },
+ {
+ keywords: [
+ "arrow_right_hook",
+ "arrow",
+ "right",
+ "hook",
+ "RIGHTWARDS",
+ "ARROW",
+ "WITH",
+ "HOOKblue-square",
+ "return",
+ "rotate",
+ "direction",
+ ],
+ emoji_key: "arrow_right_hook",
+ },
+ {
+ keywords: [
+ "arrow_heading_up",
+ "arrow",
+ "heading",
+ "up",
+ "ARROW",
+ "POINTING",
+ "RIGHTWARDS",
+ "THEN",
+ "CURVING",
+ "UPWARDSblue-square",
+ "direction",
+ "top",
+ ],
+ emoji_key: "arrow_heading_up",
+ },
+ {
+ keywords: [
+ "arrow_heading_down",
+ "arrow",
+ "heading",
+ "down",
+ "ARROW",
+ "POINTING",
+ "RIGHTWARDS",
+ "THEN",
+ "CURVING",
+ "DOWNWARDSblue-square",
+ "direction",
+ "bottom",
+ ],
+ emoji_key: "arrow_heading_down",
+ },
+ {
+ keywords: [
+ "arrows_clockwise",
+ "arrows",
+ "clockwise",
+ "CLOCKWISE",
+ "DOWNWARDS",
+ "AND",
+ "UPWARDS",
+ "OPEN",
+ "CIRCLE",
+ "ARROWSsync",
+ "cycle",
+ "round",
+ "repeat",
+ ],
+ emoji_key: "arrows_clockwise",
+ },
+ {
+ keywords: [
+ "arrows_counterclockwise",
+ "arrows",
+ "counterclockwise",
+ "ANTICLOCKWISE",
+ "DOWNWARDS",
+ "AND",
+ "UPWARDS",
+ "OPEN",
+ "CIRCLE",
+ "ARROWSblue-square",
+ "sync",
+ "cycle",
+ ],
+ emoji_key: "arrows_counterclockwise",
+ },
+ {
+ keywords: [
+ "back",
+ "back",
+ "BACK",
+ "WITH",
+ "LEFTWARDS",
+ "ARROW",
+ "ABOVEarrow",
+ "words",
+ "return",
+ ],
+ emoji_key: "back",
+ },
+ {
+ keywords: [
+ "end",
+ "end",
+ "END",
+ "WITH",
+ "LEFTWARDS",
+ "ARROW",
+ "ABOVEwords",
+ "arrow",
+ ],
+ emoji_key: "end",
+ },
+ {
+ keywords: [
+ "on",
+ "on",
+ "ON",
+ "WITH",
+ "EXCLAMATION",
+ "MARK",
+ "WITH",
+ "LEFT",
+ "RIGHT",
+ "ARROW",
+ "ABOVEarrow",
+ "words",
+ ],
+ emoji_key: "on",
+ },
+ {
+ keywords: [
+ "soon",
+ "soon",
+ "SOON",
+ "WITH",
+ "RIGHTWARDS",
+ "ARROW",
+ "ABOVEarrow",
+ "words",
+ ],
+ emoji_key: "soon",
+ },
+ {
+ keywords: [
+ "top",
+ "top",
+ "TOP",
+ "WITH",
+ "UPWARDS",
+ "ARROW",
+ "ABOVEwords",
+ "blue-square",
+ ],
+ emoji_key: "top",
+ },
+ {
+ keywords: [
+ "place_of_worship",
+ "place",
+ "of",
+ "worship",
+ "PLACE",
+ "OF",
+ "WORSHIPreligion",
+ "church",
+ "temple",
+ "prayer",
+ ],
+ emoji_key: "place_of_worship",
+ },
+ {
+ keywords: [
+ "atom_symbol",
+ "atom",
+ "symbol",
+ "ATOM",
+ "SYMBOLscience",
+ "physics",
+ "chemistry",
+ ],
+ emoji_key: "atom_symbol",
+ },
+ { keywords: ["om_symbol", "om", "symbol", "OM"], emoji_key: "om_symbol" },
+ {
+ keywords: [
+ "star_of_david",
+ "star",
+ "of",
+ "david",
+ "STAR",
+ "OF",
+ "DAVIDjudaism",
+ ],
+ emoji_key: "star_of_david",
+ },
+ {
+ keywords: [
+ "wheel_of_dharma",
+ "wheel",
+ "of",
+ "dharma",
+ "WHEEL",
+ "OF",
+ "DHARMAhinduism",
+ "buddhism",
+ "sikhism",
+ "jainism",
+ ],
+ emoji_key: "wheel_of_dharma",
+ },
+ {
+ keywords: ["yin_yang", "yin", "yang", "YIN", "YANGbalance"],
+ emoji_key: "yin_yang",
+ },
+ {
+ keywords: ["latin_cross", "latin", "cross", "LATIN", "CROSSchristianity"],
+ emoji_key: "latin_cross",
+ },
+ {
+ keywords: [
+ "orthodox_cross",
+ "orthodox",
+ "cross",
+ "ORTHODOX",
+ "CROSSsuppedaneum",
+ "religion",
+ ],
+ emoji_key: "orthodox_cross",
+ },
+ {
+ keywords: [
+ "star_and_crescent",
+ "star",
+ "and",
+ "crescent",
+ "STAR",
+ "AND",
+ "CRESCENTislam",
+ ],
+ emoji_key: "star_and_crescent",
+ },
+ {
+ keywords: ["peace_symbol", "peace", "symbol", "PEACE", "SYMBOLhippie"],
+ emoji_key: "peace_symbol",
+ },
+ {
+ keywords: [
+ "menorah_with_nine_branches",
+ "menorah",
+ "with",
+ "nine",
+ "branches",
+ "MENORAH",
+ "WITH",
+ "NINE",
+ "BRANCHES",
+ ],
+ emoji_key: "menorah_with_nine_branches",
+ },
+ {
+ keywords: [
+ "six_pointed_star",
+ "six",
+ "pointed",
+ "star",
+ "SIX",
+ "POINTED",
+ "STAR",
+ "WITH",
+ "MIDDLE",
+ "DOTpurple-square",
+ "religion",
+ "jewish",
+ "hexagram",
+ ],
+ emoji_key: "six_pointed_star",
+ },
+ { keywords: ["khanda", "khanda", "KHANDA"], emoji_key: "khanda" },
+ {
+ keywords: [
+ "aries",
+ "aries",
+ "ARIESsign",
+ "purple-square",
+ "zodiac",
+ "astrology",
+ ],
+ emoji_key: "aries",
+ },
+ {
+ keywords: [
+ "taurus",
+ "taurus",
+ "TAURUSpurple-square",
+ "sign",
+ "zodiac",
+ "astrology",
+ ],
+ emoji_key: "taurus",
+ },
+ {
+ keywords: [
+ "gemini",
+ "gemini",
+ "GEMINIsign",
+ "zodiac",
+ "purple-square",
+ "astrology",
+ ],
+ emoji_key: "gemini",
+ },
+ {
+ keywords: [
+ "cancer",
+ "cancer",
+ "CANCERsign",
+ "zodiac",
+ "purple-square",
+ "astrology",
+ ],
+ emoji_key: "cancer",
+ },
+ {
+ keywords: [
+ "leo",
+ "leo",
+ "LEOsign",
+ "purple-square",
+ "zodiac",
+ "astrology",
+ ],
+ emoji_key: "leo",
+ },
+ {
+ keywords: [
+ "virgo",
+ "virgo",
+ "VIRGOsign",
+ "zodiac",
+ "purple-square",
+ "astrology",
+ ],
+ emoji_key: "virgo",
+ },
+ {
+ keywords: [
+ "libra",
+ "libra",
+ "LIBRAsign",
+ "purple-square",
+ "zodiac",
+ "astrology",
+ ],
+ emoji_key: "libra",
+ },
+ {
+ keywords: [
+ "scorpius",
+ "scorpius",
+ "SCORPIUSsign",
+ "zodiac",
+ "purple-square",
+ "astrology",
+ "scorpio",
+ ],
+ emoji_key: "scorpius",
+ },
+ {
+ keywords: [
+ "sagittarius",
+ "sagittarius",
+ "SAGITTARIUSsign",
+ "zodiac",
+ "purple-square",
+ "astrology",
+ ],
+ emoji_key: "sagittarius",
+ },
+ {
+ keywords: [
+ "capricorn",
+ "capricorn",
+ "CAPRICORNsign",
+ "zodiac",
+ "purple-square",
+ "astrology",
+ ],
+ emoji_key: "capricorn",
+ },
+ {
+ keywords: [
+ "aquarius",
+ "aquarius",
+ "AQUARIUSsign",
+ "purple-square",
+ "zodiac",
+ "astrology",
+ ],
+ emoji_key: "aquarius",
+ },
+ {
+ keywords: [
+ "pisces",
+ "pisces",
+ "PISCESpurple-square",
+ "sign",
+ "zodiac",
+ "astrology",
+ ],
+ emoji_key: "pisces",
+ },
+ {
+ keywords: [
+ "ophiuchus",
+ "ophiuchus",
+ "OPHIUCHUSsign",
+ "purple-square",
+ "constellation",
+ "astrology",
+ ],
+ emoji_key: "ophiuchus",
+ },
+ {
+ keywords: [
+ "twisted_rightwards_arrows",
+ "twisted",
+ "rightwards",
+ "arrows",
+ "TWISTED",
+ "RIGHTWARDS",
+ "ARROWSblue-square",
+ "shuffle",
+ "music",
+ "random",
+ ],
+ emoji_key: "twisted_rightwards_arrows",
+ },
+ {
+ keywords: [
+ "repeat",
+ "repeat",
+ "CLOCKWISE",
+ "RIGHTWARDS",
+ "AND",
+ "LEFTWARDS",
+ "OPEN",
+ "CIRCLE",
+ "ARROWSloop",
+ "record",
+ ],
+ emoji_key: "repeat",
+ },
+ {
+ keywords: [
+ "repeat_one",
+ "repeat",
+ "one",
+ "CLOCKWISE",
+ "RIGHTWARDS",
+ "AND",
+ "LEFTWARDS",
+ "OPEN",
+ "CIRCLE",
+ "ARROWS",
+ "WITH",
+ "CIRCLED",
+ "ONE",
+ "OVERLAYblue-square",
+ "loop",
+ ],
+ emoji_key: "repeat_one",
+ },
+ {
+ keywords: [
+ "arrow_forward",
+ "arrow",
+ "forward",
+ "BLACK",
+ "RIGHT-POINTING",
+ "TRIANGLEblue-square",
+ "right",
+ "direction",
+ "play",
+ ],
+ emoji_key: "arrow_forward",
+ },
+ {
+ keywords: [
+ "fast_forward",
+ "fast",
+ "forward",
+ "BLACK",
+ "RIGHT-POINTING",
+ "DOUBLE",
+ "TRIANGLEblue-square",
+ "play",
+ "speed",
+ "continue",
+ ],
+ emoji_key: "fast_forward",
+ },
+ {
+ keywords: [
+ "black_right_pointing_double_triangle_with_vertical_bar",
+ "black",
+ "right",
+ "pointing",
+ "double",
+ "triangle",
+ "with",
+ "vertical",
+ "bar",
+ "NEXT",
+ "TRACK",
+ "BUTTON",
+ ],
+ emoji_key: "black_right_pointing_double_triangle_with_vertical_bar",
+ },
+ {
+ keywords: [
+ "black_right_pointing_triangle_with_double_vertical_bar",
+ "black",
+ "right",
+ "pointing",
+ "triangle",
+ "with",
+ "double",
+ "vertical",
+ "bar",
+ "PLAY",
+ "OR",
+ "PAUSE",
+ "BUTTON",
+ ],
+ emoji_key: "black_right_pointing_triangle_with_double_vertical_bar",
+ },
+ {
+ keywords: [
+ "arrow_backward",
+ "arrow",
+ "backward",
+ "BLACK",
+ "LEFT-POINTING",
+ "TRIANGLEblue-square",
+ "left",
+ "direction",
+ ],
+ emoji_key: "arrow_backward",
+ },
+ {
+ keywords: [
+ "rewind",
+ "rewind",
+ "BLACK",
+ "LEFT-POINTING",
+ "DOUBLE",
+ "TRIANGLEplay",
+ "blue-square",
+ ],
+ emoji_key: "rewind",
+ },
+ {
+ keywords: [
+ "black_left_pointing_double_triangle_with_vertical_bar",
+ "black",
+ "left",
+ "pointing",
+ "double",
+ "triangle",
+ "with",
+ "vertical",
+ "bar",
+ "LAST",
+ "TRACK",
+ "BUTTON",
+ ],
+ emoji_key: "black_left_pointing_double_triangle_with_vertical_bar",
+ },
+ {
+ keywords: [
+ "arrow_up_small",
+ "arrow",
+ "up",
+ "small",
+ "UP-POINTING",
+ "SMALL",
+ "RED",
+ "TRIANGLEblue-square",
+ "triangle",
+ "direction",
+ "point",
+ "forward",
+ "top",
+ ],
+ emoji_key: "arrow_up_small",
+ },
+ {
+ keywords: [
+ "arrow_double_up",
+ "arrow",
+ "double",
+ "up",
+ "BLACK",
+ "UP-POINTING",
+ "DOUBLE",
+ "TRIANGLEblue-square",
+ "direction",
+ "top",
+ ],
+ emoji_key: "arrow_double_up",
+ },
+ {
+ keywords: [
+ "arrow_down_small",
+ "arrow",
+ "down",
+ "small",
+ "DOWN-POINTING",
+ "SMALL",
+ "RED",
+ "TRIANGLEblue-square",
+ "direction",
+ "bottom",
+ ],
+ emoji_key: "arrow_down_small",
+ },
+ {
+ keywords: [
+ "arrow_double_down",
+ "arrow",
+ "double",
+ "down",
+ "BLACK",
+ "DOWN-POINTING",
+ "DOUBLE",
+ "TRIANGLEblue-square",
+ "direction",
+ "bottom",
+ ],
+ emoji_key: "arrow_double_down",
+ },
+ {
+ keywords: [
+ "double_vertical_bar",
+ "double",
+ "vertical",
+ "bar",
+ "PAUSE",
+ "BUTTON",
+ ],
+ emoji_key: "double_vertical_bar",
+ },
+ {
+ keywords: [
+ "black_square_for_stop",
+ "black",
+ "square",
+ "for",
+ "stop",
+ "STOP",
+ "BUTTON",
+ ],
+ emoji_key: "black_square_for_stop",
+ },
+ {
+ keywords: [
+ "black_circle_for_record",
+ "black",
+ "circle",
+ "for",
+ "record",
+ "RECORD",
+ "BUTTON",
+ ],
+ emoji_key: "black_circle_for_record",
+ },
+ { keywords: ["eject", "eject", "EJECT", "BUTTON"], emoji_key: "eject" },
+ {
+ keywords: [
+ "cinema",
+ "cinema",
+ "CINEMAblue-square",
+ "record",
+ "film",
+ "movie",
+ "curtain",
+ "stage",
+ "theater",
+ ],
+ emoji_key: "cinema",
+ },
+ {
+ keywords: [
+ "low_brightness",
+ "low",
+ "brightness",
+ "LOW",
+ "BRIGHTNESS",
+ "SYMBOLsun",
+ "afternoon",
+ "warm",
+ "summer",
+ ],
+ emoji_key: "low_brightness",
+ },
+ {
+ keywords: [
+ "high_brightness",
+ "high",
+ "brightness",
+ "HIGH",
+ "BRIGHTNESS",
+ "SYMBOLsun",
+ "light",
+ ],
+ emoji_key: "high_brightness",
+ },
+ {
+ keywords: [
+ "signal_strength",
+ "signal",
+ "strength",
+ "ANTENNA",
+ "WITH",
+ "BARSblue-square",
+ "reception",
+ "phone",
+ "internet",
+ "connection",
+ "wifi",
+ "bluetooth",
+ "bars",
+ ],
+ emoji_key: "signal_strength",
+ },
+ { keywords: ["wireless", "wireless", "WIRELESS"], emoji_key: "wireless" },
+ {
+ keywords: [
+ "vibration_mode",
+ "vibration",
+ "mode",
+ "VIBRATION",
+ "MODEorange-square",
+ "phone",
+ ],
+ emoji_key: "vibration_mode",
+ },
+ {
+ keywords: [
+ "mobile_phone_off",
+ "mobile",
+ "phone",
+ "off",
+ "MOBILE",
+ "PHONE",
+ "OFFmute",
+ "orange-square",
+ "silence",
+ "quiet",
+ ],
+ emoji_key: "mobile_phone_off",
+ },
+ {
+ keywords: ["female_sign", "female", "sign", "FEMALE", "SIGN"],
+ emoji_key: "female_sign",
+ },
+ {
+ keywords: ["male_sign", "male", "sign", "MALE", "SIGN"],
+ emoji_key: "male_sign",
+ },
+ {
+ keywords: [
+ "transgender_symbol",
+ "transgender",
+ "symbol",
+ "TRANSGENDER",
+ "SYMBOL",
+ ],
+ emoji_key: "transgender_symbol",
+ },
+ {
+ keywords: [
+ "heavy_multiplication_x",
+ "heavy",
+ "multiplication",
+ "x",
+ "HEAVY",
+ "MULTIPLICATION",
+ "Xmath",
+ "calculation",
+ ],
+ emoji_key: "heavy_multiplication_x",
+ },
+ {
+ keywords: [
+ "heavy_plus_sign",
+ "heavy",
+ "plus",
+ "sign",
+ "HEAVY",
+ "PLUS",
+ "SIGNmath",
+ "calculation",
+ "addition",
+ "more",
+ "increase",
+ ],
+ emoji_key: "heavy_plus_sign",
+ },
+ {
+ keywords: [
+ "heavy_minus_sign",
+ "heavy",
+ "minus",
+ "sign",
+ "HEAVY",
+ "MINUS",
+ "SIGNmath",
+ "calculation",
+ "subtract",
+ "less",
+ ],
+ emoji_key: "heavy_minus_sign",
+ },
+ {
+ keywords: [
+ "heavy_division_sign",
+ "heavy",
+ "division",
+ "sign",
+ "HEAVY",
+ "DIVISION",
+ "SIGNdivide",
+ "math",
+ "calculation",
+ ],
+ emoji_key: "heavy_division_sign",
+ },
+ {
+ keywords: [
+ "heavy_equals_sign",
+ "heavy",
+ "equals",
+ "sign",
+ "HEAVY",
+ "EQUALS",
+ "SIGN",
+ ],
+ emoji_key: "heavy_equals_sign",
+ },
+ { keywords: ["infinity", "infinity", "INFINITY"], emoji_key: "infinity" },
+ {
+ keywords: [
+ "bangbang",
+ "bangbang",
+ "DOUBLE",
+ "EXCLAMATION",
+ "MARKexclamation",
+ "surprise",
+ ],
+ emoji_key: "bangbang",
+ },
+ {
+ keywords: [
+ "interrobang",
+ "interrobang",
+ "EXCLAMATION",
+ "QUESTION",
+ "MARKwat",
+ "punctuation",
+ "surprise",
+ ],
+ emoji_key: "interrobang",
+ },
+ {
+ keywords: [
+ "question",
+ "question",
+ "BLACK",
+ "QUESTION",
+ "MARK",
+ "ORNAMENTdoubt",
+ "confused",
+ ],
+ emoji_key: "question",
+ },
+ {
+ keywords: [
+ "grey_question",
+ "grey",
+ "question",
+ "WHITE",
+ "QUESTION",
+ "MARK",
+ "ORNAMENTdoubts",
+ "gray",
+ "huh",
+ "confused",
+ ],
+ emoji_key: "grey_question",
+ },
+ {
+ keywords: [
+ "grey_exclamation",
+ "grey",
+ "exclamation",
+ "WHITE",
+ "EXCLAMATION",
+ "MARK",
+ "ORNAMENTsurprise",
+ "punctuation",
+ "gray",
+ "wow",
+ "warning",
+ ],
+ emoji_key: "grey_exclamation",
+ },
+ {
+ keywords: [
+ "exclamation",
+ "exclamation",
+ "HEAVY",
+ "EXCLAMATION",
+ "MARK",
+ "SYMBOLheavy",
+ "exclamation",
+ "mark",
+ "danger",
+ "surprise",
+ "punctuation",
+ "wow",
+ "warning",
+ ],
+ emoji_key: "exclamation",
+ },
+ {
+ keywords: [
+ "wavy_dash",
+ "wavy",
+ "dash",
+ "WAVY",
+ "DASHdraw",
+ "line",
+ "moustache",
+ "mustache",
+ "squiggle",
+ "scribble",
+ ],
+ emoji_key: "wavy_dash",
+ },
+ {
+ keywords: [
+ "currency_exchange",
+ "currency",
+ "exchange",
+ "CURRENCY",
+ "EXCHANGEmoney",
+ "sales",
+ "dollar",
+ "travel",
+ ],
+ emoji_key: "currency_exchange",
+ },
+ {
+ keywords: [
+ "heavy_dollar_sign",
+ "heavy",
+ "dollar",
+ "sign",
+ "HEAVY",
+ "DOLLAR",
+ "SIGNmoney",
+ "sales",
+ "payment",
+ "currency",
+ "buck",
+ ],
+ emoji_key: "heavy_dollar_sign",
+ },
+ {
+ keywords: ["medical_symbol", "medical", "symbol", "MEDICAL", "SYMBOL"],
+ emoji_key: "medical_symbol",
+ },
+ {
+ keywords: [
+ "recycle",
+ "recycle",
+ "BLACK",
+ "UNIVERSAL",
+ "RECYCLING",
+ "SYMBOLarrow",
+ "environment",
+ "garbage",
+ "trash",
+ ],
+ emoji_key: "recycle",
+ },
+ {
+ keywords: [
+ "fleur_de_lis",
+ "fleur",
+ "de",
+ "lis",
+ "FLEUR-DE-LISdecorative",
+ "scout",
+ ],
+ emoji_key: "fleur_de_lis",
+ },
+ {
+ keywords: ["trident", "trident", "TRIDENT", "EMBLEMweapon", "spear"],
+ emoji_key: "trident",
+ },
+ {
+ keywords: ["name_badge", "name", "badge", "NAME", "BADGEfire", "forbid"],
+ emoji_key: "name_badge",
+ },
+ {
+ keywords: [
+ "beginner",
+ "beginner",
+ "JAPANESE",
+ "SYMBOL",
+ "FOR",
+ "BEGINNERbadge",
+ "shield",
+ ],
+ emoji_key: "beginner",
+ },
+ {
+ keywords: ["o", "o", "HEAVY", "LARGE", "CIRCLEcircle", "round"],
+ emoji_key: "o",
+ },
+ {
+ keywords: [
+ "white_check_mark",
+ "white",
+ "check",
+ "mark",
+ "WHITE",
+ "HEAVY",
+ "CHECK",
+ "MARKgreen-square",
+ "ok",
+ "agree",
+ "vote",
+ "election",
+ "answer",
+ "tick",
+ ],
+ emoji_key: "white_check_mark",
+ },
+ {
+ keywords: [
+ "ballot_box_with_check",
+ "ballot",
+ "box",
+ "with",
+ "check",
+ "BALLOT",
+ "BOX",
+ "WITH",
+ "CHECKok",
+ "agree",
+ "confirm",
+ "black-square",
+ "vote",
+ "election",
+ "yes",
+ "tick",
+ ],
+ emoji_key: "ballot_box_with_check",
+ },
+ {
+ keywords: [
+ "heavy_check_mark",
+ "heavy",
+ "check",
+ "mark",
+ "HEAVY",
+ "CHECK",
+ "MARKok",
+ "nike",
+ "answer",
+ "yes",
+ "tick",
+ ],
+ emoji_key: "heavy_check_mark",
+ },
+ {
+ keywords: ["x", "x", "CROSS", "MARKno", "delete", "remove", "cancel"],
+ emoji_key: "x",
+ },
+ {
+ keywords: [
+ "negative_squared_cross_mark",
+ "negative",
+ "squared",
+ "cross",
+ "mark",
+ "NEGATIVE",
+ "SQUARED",
+ "CROSS",
+ "MARKx",
+ "green-square",
+ "no",
+ "deny",
+ ],
+ emoji_key: "negative_squared_cross_mark",
+ },
+ {
+ keywords: [
+ "curly_loop",
+ "curly",
+ "loop",
+ "CURLY",
+ "LOOPscribble",
+ "draw",
+ "shape",
+ "squiggle",
+ ],
+ emoji_key: "curly_loop",
+ },
+ {
+ keywords: ["loop", "loop", "DOUBLE", "CURLY", "LOOPtape", "cassette"],
+ emoji_key: "loop",
+ },
+ {
+ keywords: [
+ "part_alternation_mark",
+ "part",
+ "alternation",
+ "mark",
+ "PART",
+ "ALTERNATION",
+ "MARKgraph",
+ "presentation",
+ "stats",
+ "business",
+ "economics",
+ "bad",
+ ],
+ emoji_key: "part_alternation_mark",
+ },
+ {
+ keywords: [
+ "eight_spoked_asterisk",
+ "eight",
+ "spoked",
+ "asterisk",
+ "EIGHT",
+ "SPOKED",
+ "ASTERISKstar",
+ "sparkle",
+ "green-square",
+ ],
+ emoji_key: "eight_spoked_asterisk",
+ },
+ {
+ keywords: [
+ "eight_pointed_black_star",
+ "eight",
+ "pointed",
+ "black",
+ "star",
+ "EIGHT",
+ "POINTED",
+ "BLACK",
+ "STARorange-square",
+ "shape",
+ "polygon",
+ ],
+ emoji_key: "eight_pointed_black_star",
+ },
+ {
+ keywords: [
+ "sparkle",
+ "sparkle",
+ "SPARKLEstars",
+ "green-square",
+ "awesome",
+ "good",
+ "fireworks",
+ ],
+ emoji_key: "sparkle",
+ },
+ {
+ keywords: [
+ "copyright",
+ "copyright",
+ "COPYRIGHT",
+ "SIGNip",
+ "license",
+ "circle",
+ "law",
+ "legal",
+ ],
+ emoji_key: "copyright",
+ },
+ {
+ keywords: [
+ "registered",
+ "registered",
+ "REGISTERED",
+ "SIGNalphabet",
+ "circle",
+ ],
+ emoji_key: "registered",
+ },
+ {
+ keywords: [
+ "tm",
+ "tm",
+ "TRADE",
+ "MARK",
+ "SIGNtrademark",
+ "brand",
+ "law",
+ "legal",
+ ],
+ emoji_key: "tm",
+ },
+ {
+ keywords: ["hash", "hash", "HASH", "KEYsymbol", "blue-square", "twitter"],
+ emoji_key: "hash",
+ },
+ {
+ keywords: ["keycap_star", "keycap", "star", "KEYCAP:", "*"],
+ emoji_key: "keycap_star",
+ },
+ {
+ keywords: [
+ "zero",
+ "zero",
+ "KEYCAP",
+ "00",
+ "numbers",
+ "blue-square",
+ "null",
+ ],
+ emoji_key: "zero",
+ },
+ {
+ keywords: ["one", "one", "KEYCAP", "1blue-square", "numbers", "1"],
+ emoji_key: "one",
+ },
+ {
+ keywords: [
+ "two",
+ "two",
+ "KEYCAP",
+ "2numbers",
+ "2",
+ "prime",
+ "blue-square",
+ ],
+ emoji_key: "two",
+ },
+ {
+ keywords: [
+ "three",
+ "three",
+ "KEYCAP",
+ "33",
+ "numbers",
+ "prime",
+ "blue-square",
+ ],
+ emoji_key: "three",
+ },
+ {
+ keywords: ["four", "four", "KEYCAP", "44", "numbers", "blue-square"],
+ emoji_key: "four",
+ },
+ {
+ keywords: [
+ "five",
+ "five",
+ "KEYCAP",
+ "55",
+ "numbers",
+ "blue-square",
+ "prime",
+ ],
+ emoji_key: "five",
+ },
+ {
+ keywords: ["six", "six", "KEYCAP", "66", "numbers", "blue-square"],
+ emoji_key: "six",
+ },
+ {
+ keywords: [
+ "seven",
+ "seven",
+ "KEYCAP",
+ "77",
+ "numbers",
+ "blue-square",
+ "prime",
+ ],
+ emoji_key: "seven",
+ },
+ {
+ keywords: ["eight", "eight", "KEYCAP", "88", "blue-square", "numbers"],
+ emoji_key: "eight",
+ },
+ {
+ keywords: ["nine", "nine", "KEYCAP", "9blue-square", "numbers", "9"],
+ emoji_key: "nine",
+ },
+ {
+ keywords: [
+ "keycap_ten",
+ "keycap",
+ "ten",
+ "KEYCAP",
+ "TENnumbers",
+ "10",
+ "blue-square",
+ ],
+ emoji_key: "keycap_ten",
+ },
+ {
+ keywords: [
+ "capital_abcd",
+ "capital",
+ "abcd",
+ "INPUT",
+ "SYMBOL",
+ "FOR",
+ "LATIN",
+ "CAPITAL",
+ "LETTERSalphabet",
+ "words",
+ "blue-square",
+ ],
+ emoji_key: "capital_abcd",
+ },
+ {
+ keywords: [
+ "abcd",
+ "abcd",
+ "INPUT",
+ "SYMBOL",
+ "FOR",
+ "LATIN",
+ "SMALL",
+ "LETTERSblue-square",
+ "alphabet",
+ ],
+ emoji_key: "abcd",
+ },
+ {
+ keywords: [
+ "symbols",
+ "symbols",
+ "INPUT",
+ "SYMBOL",
+ "FOR",
+ "SYMBOLSblue-square",
+ "music",
+ "note",
+ "ampersand",
+ "percent",
+ "glyphs",
+ "characters",
+ ],
+ emoji_key: "symbols",
+ },
+ {
+ keywords: [
+ "abc",
+ "abc",
+ "INPUT",
+ "SYMBOL",
+ "FOR",
+ "LATIN",
+ "LETTERSblue-square",
+ "alphabet",
+ ],
+ emoji_key: "abc",
+ },
+ {
+ keywords: [
+ "a",
+ "a",
+ "NEGATIVE",
+ "SQUARED",
+ "LATIN",
+ "CAPITAL",
+ "LETTER",
+ "Ared-square",
+ "alphabet",
+ "letter",
+ ],
+ emoji_key: "a",
+ },
+ {
+ keywords: ["ab", "ab", "NEGATIVE", "SQUARED", "ABred-square", "alphabet"],
+ emoji_key: "ab",
+ },
+ {
+ keywords: [
+ "b",
+ "b",
+ "NEGATIVE",
+ "SQUARED",
+ "LATIN",
+ "CAPITAL",
+ "LETTER",
+ "Bred-square",
+ "alphabet",
+ "letter",
+ ],
+ emoji_key: "b",
+ },
+ {
+ keywords: ["cl", "cl", "SQUARED", "CLalphabet", "words", "red-square"],
+ emoji_key: "cl",
+ },
+ {
+ keywords: ["cool", "cool", "SQUARED", "COOLwords", "blue-square"],
+ emoji_key: "cool",
+ },
+ {
+ keywords: ["free", "free", "SQUARED", "FREEblue-square", "words"],
+ emoji_key: "free",
+ },
+ {
+ keywords: [
+ "information_source",
+ "information",
+ "source",
+ "INFORMATION",
+ "SOURCEblue-square",
+ "alphabet",
+ "letter",
+ ],
+ emoji_key: "information_source",
+ },
+ {
+ keywords: ["id", "id", "SQUARED", "IDpurple-square", "words"],
+ emoji_key: "id",
+ },
+ {
+ keywords: [
+ "m",
+ "m",
+ "CIRCLED",
+ "LATIN",
+ "CAPITAL",
+ "LETTER",
+ "Malphabet",
+ "blue-circle",
+ "letter",
+ ],
+ emoji_key: "m",
+ },
+ {
+ keywords: ["new", "new", "SQUARED", "NEWblue-square", "words", "start"],
+ emoji_key: "new",
+ },
+ {
+ keywords: [
+ "ng",
+ "ng",
+ "SQUARED",
+ "NGblue-square",
+ "words",
+ "shape",
+ "icon",
+ ],
+ emoji_key: "ng",
+ },
+ {
+ keywords: [
+ "o2",
+ "o2",
+ "NEGATIVE",
+ "SQUARED",
+ "LATIN",
+ "CAPITAL",
+ "LETTER",
+ "Oalphabet",
+ "red-square",
+ "letter",
+ ],
+ emoji_key: "o2",
+ },
+ {
+ keywords: [
+ "ok",
+ "ok",
+ "SQUARED",
+ "OKgood",
+ "agree",
+ "yes",
+ "blue-square",
+ ],
+ emoji_key: "ok",
+ },
+ {
+ keywords: [
+ "parking",
+ "parking",
+ "NEGATIVE",
+ "SQUARED",
+ "LATIN",
+ "CAPITAL",
+ "LETTER",
+ "Pcars",
+ "blue-square",
+ "alphabet",
+ "letter",
+ ],
+ emoji_key: "parking",
+ },
+ {
+ keywords: [
+ "sos",
+ "sos",
+ "SQUARED",
+ "SOShelp",
+ "red-square",
+ "words",
+ "emergency",
+ "911",
+ ],
+ emoji_key: "sos",
+ },
+ {
+ keywords: [
+ "up",
+ "up",
+ "SQUARED",
+ "UP",
+ "WITH",
+ "EXCLAMATION",
+ "MARKblue-square",
+ "above",
+ "high",
+ ],
+ emoji_key: "up",
+ },
+ {
+ keywords: ["vs", "vs", "SQUARED", "VSwords", "orange-square"],
+ emoji_key: "vs",
+ },
+ {
+ keywords: [
+ "koko",
+ "koko",
+ "SQUARED",
+ "KATAKANA",
+ "KOKOblue-square",
+ "here",
+ "katakana",
+ "japanese",
+ "destination",
+ ],
+ emoji_key: "koko",
+ },
+ {
+ keywords: [
+ "sa",
+ "sa",
+ "SQUARED",
+ "KATAKANA",
+ "SAjapanese",
+ "blue-square",
+ "katakana",
+ ],
+ emoji_key: "sa",
+ },
+ {
+ keywords: [
+ "u6708",
+ "u6708",
+ "SQUARED",
+ "CJK",
+ "UNIFIED",
+ "IDEOGRAPH-6708chinese",
+ "month",
+ "moon",
+ "japanese",
+ "orange-square",
+ "kanji",
+ ],
+ emoji_key: "u6708",
+ },
+ {
+ keywords: [
+ "u6709",
+ "u6709",
+ "SQUARED",
+ "CJK",
+ "UNIFIED",
+ "IDEOGRAPH-6709orange-square",
+ "chinese",
+ "have",
+ "kanji",
+ ],
+ emoji_key: "u6709",
+ },
+ {
+ keywords: [
+ "u6307",
+ "u6307",
+ "SQUARED",
+ "CJK",
+ "UNIFIED",
+ "IDEOGRAPH-6307chinese",
+ "point",
+ "green-square",
+ "kanji",
+ ],
+ emoji_key: "u6307",
+ },
+ {
+ keywords: [
+ "ideograph_advantage",
+ "ideograph",
+ "advantage",
+ "CIRCLED",
+ "IDEOGRAPH",
+ "ADVANTAGEchinese",
+ "kanji",
+ "obtain",
+ "get",
+ "circle",
+ ],
+ emoji_key: "ideograph_advantage",
+ },
+ {
+ keywords: [
+ "u5272",
+ "u5272",
+ "SQUARED",
+ "CJK",
+ "UNIFIED",
+ "IDEOGRAPH-5272cut",
+ "divide",
+ "chinese",
+ "kanji",
+ "pink-square",
+ ],
+ emoji_key: "u5272",
+ },
+ {
+ keywords: [
+ "u7121",
+ "u7121",
+ "SQUARED",
+ "CJK",
+ "UNIFIED",
+ "IDEOGRAPH-7121nothing",
+ "chinese",
+ "kanji",
+ "japanese",
+ "orange-square",
+ ],
+ emoji_key: "u7121",
+ },
+ {
+ keywords: [
+ "u7981",
+ "u7981",
+ "SQUARED",
+ "CJK",
+ "UNIFIED",
+ "IDEOGRAPH-7981kanji",
+ "japanese",
+ "chinese",
+ "forbidden",
+ "limit",
+ "restricted",
+ "red-square",
+ ],
+ emoji_key: "u7981",
+ },
+ {
+ keywords: [
+ "accept",
+ "accept",
+ "CIRCLED",
+ "IDEOGRAPH",
+ "ACCEPTok",
+ "good",
+ "chinese",
+ "kanji",
+ "agree",
+ "yes",
+ "orange-circle",
+ ],
+ emoji_key: "accept",
+ },
+ {
+ keywords: [
+ "u7533",
+ "u7533",
+ "SQUARED",
+ "CJK",
+ "UNIFIED",
+ "IDEOGRAPH-7533chinese",
+ "japanese",
+ "kanji",
+ "orange-square",
+ ],
+ emoji_key: "u7533",
+ },
+ {
+ keywords: [
+ "u5408",
+ "u5408",
+ "SQUARED",
+ "CJK",
+ "UNIFIED",
+ "IDEOGRAPH-5408japanese",
+ "chinese",
+ "join",
+ "kanji",
+ "red-square",
+ ],
+ emoji_key: "u5408",
+ },
+ {
+ keywords: [
+ "u7a7a",
+ "u7a7a",
+ "SQUARED",
+ "CJK",
+ "UNIFIED",
+ "IDEOGRAPH-7A7Akanji",
+ "japanese",
+ "chinese",
+ "empty",
+ "sky",
+ "blue-square",
+ ],
+ emoji_key: "u7a7a",
+ },
+ {
+ keywords: [
+ "congratulations",
+ "congratulations",
+ "CIRCLED",
+ "IDEOGRAPH",
+ "CONGRATULATIONchinese",
+ "kanji",
+ "japanese",
+ "red-circle",
+ ],
+ emoji_key: "congratulations",
+ },
+ {
+ keywords: [
+ "secret",
+ "secret",
+ "CIRCLED",
+ "IDEOGRAPH",
+ "SECRETprivacy",
+ "chinese",
+ "sshh",
+ "kanji",
+ "red-circle",
+ ],
+ emoji_key: "secret",
+ },
+ {
+ keywords: [
+ "u55b6",
+ "u55b6",
+ "SQUARED",
+ "CJK",
+ "UNIFIED",
+ "IDEOGRAPH-55B6japanese",
+ "opening",
+ "hours",
+ "orange-square",
+ ],
+ emoji_key: "u55b6",
+ },
+ {
+ keywords: [
+ "u6e80",
+ "u6e80",
+ "SQUARED",
+ "CJK",
+ "UNIFIED",
+ "IDEOGRAPH-6E80full",
+ "chinese",
+ "japanese",
+ "red-square",
+ "kanji",
+ ],
+ emoji_key: "u6e80",
+ },
+ {
+ keywords: [
+ "red_circle",
+ "red",
+ "circle",
+ "LARGE",
+ "RED",
+ "CIRCLEshape",
+ "error",
+ "danger",
+ ],
+ emoji_key: "red_circle",
+ },
+ {
+ keywords: [
+ "large_orange_circle",
+ "large",
+ "orange",
+ "circle",
+ "LARGE",
+ "ORANGE",
+ "CIRCLE",
+ ],
+ emoji_key: "large_orange_circle",
+ },
+ {
+ keywords: [
+ "large_yellow_circle",
+ "large",
+ "yellow",
+ "circle",
+ "LARGE",
+ "YELLOW",
+ "CIRCLE",
+ ],
+ emoji_key: "large_yellow_circle",
+ },
+ {
+ keywords: [
+ "large_green_circle",
+ "large",
+ "green",
+ "circle",
+ "LARGE",
+ "GREEN",
+ "CIRCLE",
+ ],
+ emoji_key: "large_green_circle",
+ },
+ {
+ keywords: [
+ "large_blue_circle",
+ "large",
+ "blue",
+ "circle",
+ "LARGE",
+ "BLUE",
+ "CIRCLEshape",
+ "icon",
+ "button",
+ ],
+ emoji_key: "large_blue_circle",
+ },
+ {
+ keywords: [
+ "large_purple_circle",
+ "large",
+ "purple",
+ "circle",
+ "LARGE",
+ "PURPLE",
+ "CIRCLE",
+ ],
+ emoji_key: "large_purple_circle",
+ },
+ {
+ keywords: [
+ "large_brown_circle",
+ "large",
+ "brown",
+ "circle",
+ "LARGE",
+ "BROWN",
+ "CIRCLE",
+ ],
+ emoji_key: "large_brown_circle",
+ },
+ {
+ keywords: [
+ "black_circle",
+ "black",
+ "circle",
+ "MEDIUM",
+ "BLACK",
+ "CIRCLEshape",
+ "button",
+ "round",
+ ],
+ emoji_key: "black_circle",
+ },
+ {
+ keywords: [
+ "white_circle",
+ "white",
+ "circle",
+ "MEDIUM",
+ "WHITE",
+ "CIRCLEshape",
+ "round",
+ ],
+ emoji_key: "white_circle",
+ },
+ {
+ keywords: [
+ "large_red_square",
+ "large",
+ "red",
+ "square",
+ "LARGE",
+ "RED",
+ "SQUARE",
+ ],
+ emoji_key: "large_red_square",
+ },
+ {
+ keywords: [
+ "large_orange_square",
+ "large",
+ "orange",
+ "square",
+ "LARGE",
+ "ORANGE",
+ "SQUARE",
+ ],
+ emoji_key: "large_orange_square",
+ },
+ {
+ keywords: [
+ "large_yellow_square",
+ "large",
+ "yellow",
+ "square",
+ "LARGE",
+ "YELLOW",
+ "SQUARE",
+ ],
+ emoji_key: "large_yellow_square",
+ },
+ {
+ keywords: [
+ "large_green_square",
+ "large",
+ "green",
+ "square",
+ "LARGE",
+ "GREEN",
+ "SQUARE",
+ ],
+ emoji_key: "large_green_square",
+ },
+ {
+ keywords: [
+ "large_blue_square",
+ "large",
+ "blue",
+ "square",
+ "LARGE",
+ "BLUE",
+ "SQUARE",
+ ],
+ emoji_key: "large_blue_square",
+ },
+ {
+ keywords: [
+ "large_purple_square",
+ "large",
+ "purple",
+ "square",
+ "LARGE",
+ "PURPLE",
+ "SQUARE",
+ ],
+ emoji_key: "large_purple_square",
+ },
+ {
+ keywords: [
+ "large_brown_square",
+ "large",
+ "brown",
+ "square",
+ "LARGE",
+ "BROWN",
+ "SQUARE",
+ ],
+ emoji_key: "large_brown_square",
+ },
+ {
+ keywords: [
+ "black_large_square",
+ "black",
+ "large",
+ "square",
+ "BLACK",
+ "LARGE",
+ "SQUAREshape",
+ "icon",
+ "button",
+ ],
+ emoji_key: "black_large_square",
+ },
+ {
+ keywords: [
+ "white_large_square",
+ "white",
+ "large",
+ "square",
+ "WHITE",
+ "LARGE",
+ "SQUAREshape",
+ "icon",
+ "stone",
+ "button",
+ ],
+ emoji_key: "white_large_square",
+ },
+ {
+ keywords: [
+ "black_medium_square",
+ "black",
+ "medium",
+ "square",
+ "BLACK",
+ "MEDIUM",
+ "SQUAREshape",
+ "button",
+ "icon",
+ ],
+ emoji_key: "black_medium_square",
+ },
+ {
+ keywords: [
+ "white_medium_square",
+ "white",
+ "medium",
+ "square",
+ "WHITE",
+ "MEDIUM",
+ "SQUAREshape",
+ "stone",
+ "icon",
+ ],
+ emoji_key: "white_medium_square",
+ },
+ {
+ keywords: [
+ "black_medium_small_square",
+ "black",
+ "medium",
+ "small",
+ "square",
+ "BLACK",
+ "MEDIUM",
+ "SMALL",
+ "SQUAREicon",
+ "shape",
+ "button",
+ ],
+ emoji_key: "black_medium_small_square",
+ },
+ {
+ keywords: [
+ "white_medium_small_square",
+ "white",
+ "medium",
+ "small",
+ "square",
+ "WHITE",
+ "MEDIUM",
+ "SMALL",
+ "SQUAREshape",
+ "stone",
+ "icon",
+ "button",
+ ],
+ emoji_key: "white_medium_small_square",
+ },
+ {
+ keywords: [
+ "black_small_square",
+ "black",
+ "small",
+ "square",
+ "BLACK",
+ "SMALL",
+ "SQUAREshape",
+ "icon",
+ ],
+ emoji_key: "black_small_square",
+ },
+ {
+ keywords: [
+ "white_small_square",
+ "white",
+ "small",
+ "square",
+ "WHITE",
+ "SMALL",
+ "SQUAREshape",
+ "icon",
+ ],
+ emoji_key: "white_small_square",
+ },
+ {
+ keywords: [
+ "large_orange_diamond",
+ "large",
+ "orange",
+ "diamond",
+ "LARGE",
+ "ORANGE",
+ "DIAMONDshape",
+ "jewel",
+ "gem",
+ ],
+ emoji_key: "large_orange_diamond",
+ },
+ {
+ keywords: [
+ "large_blue_diamond",
+ "large",
+ "blue",
+ "diamond",
+ "LARGE",
+ "BLUE",
+ "DIAMONDshape",
+ "jewel",
+ "gem",
+ ],
+ emoji_key: "large_blue_diamond",
+ },
+ {
+ keywords: [
+ "small_orange_diamond",
+ "small",
+ "orange",
+ "diamond",
+ "SMALL",
+ "ORANGE",
+ "DIAMONDshape",
+ "jewel",
+ "gem",
+ ],
+ emoji_key: "small_orange_diamond",
+ },
+ {
+ keywords: [
+ "small_blue_diamond",
+ "small",
+ "blue",
+ "diamond",
+ "SMALL",
+ "BLUE",
+ "DIAMONDshape",
+ "jewel",
+ "gem",
+ ],
+ emoji_key: "small_blue_diamond",
+ },
+ {
+ keywords: [
+ "small_red_triangle",
+ "small",
+ "red",
+ "triangle",
+ "UP-POINTING",
+ "RED",
+ "TRIANGLEshape",
+ "direction",
+ "up",
+ "top",
+ ],
+ emoji_key: "small_red_triangle",
+ },
+ {
+ keywords: [
+ "small_red_triangle_down",
+ "small",
+ "red",
+ "triangle",
+ "down",
+ "DOWN-POINTING",
+ "RED",
+ "TRIANGLEshape",
+ "direction",
+ "bottom",
+ ],
+ emoji_key: "small_red_triangle_down",
+ },
+ {
+ keywords: [
+ "diamond_shape_with_a_dot_inside",
+ "diamond",
+ "shape",
+ "with",
+ "a",
+ "dot",
+ "inside",
+ "DIAMOND",
+ "SHAPE",
+ "WITH",
+ "A",
+ "DOT",
+ "INSIDEjewel",
+ "blue",
+ "gem",
+ "crystal",
+ "fancy",
+ ],
+ emoji_key: "diamond_shape_with_a_dot_inside",
+ },
+ {
+ keywords: [
+ "radio_button",
+ "radio",
+ "button",
+ "RADIO",
+ "BUTTONinput",
+ "old",
+ "music",
+ "circle",
+ ],
+ emoji_key: "radio_button",
+ },
+ {
+ keywords: [
+ "white_square_button",
+ "white",
+ "square",
+ "button",
+ "WHITE",
+ "SQUARE",
+ "BUTTONshape",
+ "input",
+ ],
+ emoji_key: "white_square_button",
+ },
+ {
+ keywords: [
+ "black_square_button",
+ "black",
+ "square",
+ "button",
+ "BLACK",
+ "SQUARE",
+ "BUTTONshape",
+ "input",
+ "frame",
+ ],
+ emoji_key: "black_square_button",
+ },
+ {
+ keywords: [
+ "checkered_flag",
+ "checkered",
+ "flag",
+ "CHEQUERED",
+ "FLAGgokart",
+ "finishline",
+ "laps",
+ "race",
+ "pit",
+ "lane",
+ "contest",
+ "racecar",
+ ],
+ emoji_key: "checkered_flag",
+ },
+ {
+ keywords: [
+ "triangular_flag_on_post",
+ "triangular",
+ "flag",
+ "on",
+ "post",
+ "TRIANGULAR",
+ "FLAG",
+ "ON",
+ "POSTpennant",
+ "place",
+ "milestone",
+ "mark",
+ ],
+ emoji_key: "triangular_flag_on_post",
+ },
+ {
+ keywords: [
+ "crossed_flags",
+ "crossed",
+ "flags",
+ "CROSSED",
+ "FLAGSjapanese",
+ "nation",
+ "country",
+ "border",
+ ],
+ emoji_key: "crossed_flags",
+ },
+ {
+ keywords: [
+ "waving_black_flag",
+ "waving",
+ "black",
+ "flag",
+ "WAVING",
+ "BLACK",
+ "FLAG",
+ ],
+ emoji_key: "waving_black_flag",
+ },
+ {
+ keywords: [
+ "waving_white_flag",
+ "waving",
+ "white",
+ "flag",
+ "WHITE",
+ "FLAG",
+ ],
+ emoji_key: "waving_white_flag",
+ },
+ {
+ keywords: ["rainbow-flag", "rainbow-flag", "RAINBOW", "FLAG"],
+ emoji_key: "rainbow-flag",
+ },
+ {
+ keywords: [
+ "transgender_flag",
+ "transgender",
+ "flag",
+ "TRANSGENDER",
+ "FLAG",
+ ],
+ emoji_key: "transgender_flag",
+ },
+ {
+ keywords: [
+ "pirate_flag",
+ "pirate",
+ "flag",
+ "PIRATE",
+ "FLAGskull",
+ "and",
+ "crossbones",
+ "skull",
+ "roger",
+ "jolly",
+ "roger",
+ "bones",
+ "black",
+ "flag",
+ ],
+ emoji_key: "pirate_flag",
+ },
+ {
+ keywords: ["flag-ac", "flag-ac", "Ascension", "Island", "Flag"],
+ emoji_key: "flag-ac",
+ },
+ {
+ keywords: ["flag-ad", "flag-ad", "Andorra", "Flag"],
+ emoji_key: "flag-ad",
+ },
+ {
+ keywords: ["flag-ae", "flag-ae", "United", "Arab", "Emirates", "Flag"],
+ emoji_key: "flag-ae",
+ },
+ {
+ keywords: ["flag-af", "flag-af", "Afghanistan", "Flag"],
+ emoji_key: "flag-af",
+ },
+ {
+ keywords: ["flag-ag", "flag-ag", "Antigua", "&", "Barbuda", "Flag"],
+ emoji_key: "flag-ag",
+ },
+ {
+ keywords: ["flag-ai", "flag-ai", "Anguilla", "Flag"],
+ emoji_key: "flag-ai",
+ },
+ {
+ keywords: ["flag-al", "flag-al", "Albania", "Flag"],
+ emoji_key: "flag-al",
+ },
+ {
+ keywords: ["flag-am", "flag-am", "Armenia", "Flag"],
+ emoji_key: "flag-am",
+ },
+ {
+ keywords: ["flag-ao", "flag-ao", "Angola", "Flag"],
+ emoji_key: "flag-ao",
+ },
+ {
+ keywords: ["flag-aq", "flag-aq", "Antarctica", "Flag"],
+ emoji_key: "flag-aq",
+ },
+ {
+ keywords: ["flag-ar", "flag-ar", "Argentina", "Flag"],
+ emoji_key: "flag-ar",
+ },
+ {
+ keywords: ["flag-as", "flag-as", "American", "Samoa", "Flag"],
+ emoji_key: "flag-as",
+ },
+ {
+ keywords: ["flag-at", "flag-at", "Austria", "Flag"],
+ emoji_key: "flag-at",
+ },
+ {
+ keywords: ["flag-au", "flag-au", "Australia", "Flag"],
+ emoji_key: "flag-au",
+ },
+ { keywords: ["flag-aw", "flag-aw", "Aruba", "Flag"], emoji_key: "flag-aw" },
+ {
+ keywords: ["flag-ax", "flag-ax", "Åland", "Islands", "Flag"],
+ emoji_key: "flag-ax",
+ },
+ {
+ keywords: ["flag-az", "flag-az", "Azerbaijan", "Flag"],
+ emoji_key: "flag-az",
+ },
+ {
+ keywords: ["flag-ba", "flag-ba", "Bosnia", "&", "Herzegovina", "Flag"],
+ emoji_key: "flag-ba",
+ },
+ {
+ keywords: ["flag-bb", "flag-bb", "Barbados", "Flag"],
+ emoji_key: "flag-bb",
+ },
+ {
+ keywords: ["flag-bd", "flag-bd", "Bangladesh", "Flag"],
+ emoji_key: "flag-bd",
+ },
+ {
+ keywords: ["flag-be", "flag-be", "Belgium", "Flag"],
+ emoji_key: "flag-be",
+ },
+ {
+ keywords: ["flag-bf", "flag-bf", "Burkina", "Faso", "Flag"],
+ emoji_key: "flag-bf",
+ },
+ {
+ keywords: ["flag-bg", "flag-bg", "Bulgaria", "Flag"],
+ emoji_key: "flag-bg",
+ },
+ {
+ keywords: ["flag-bh", "flag-bh", "Bahrain", "Flag"],
+ emoji_key: "flag-bh",
+ },
+ {
+ keywords: ["flag-bi", "flag-bi", "Burundi", "Flag"],
+ emoji_key: "flag-bi",
+ },
+ { keywords: ["flag-bj", "flag-bj", "Benin", "Flag"], emoji_key: "flag-bj" },
+ {
+ keywords: ["flag-bl", "flag-bl", "St.", "Barthélemy", "Flag"],
+ emoji_key: "flag-bl",
+ },
+ {
+ keywords: ["flag-bm", "flag-bm", "Bermuda", "Flag"],
+ emoji_key: "flag-bm",
+ },
+ {
+ keywords: ["flag-bn", "flag-bn", "Brunei", "Flag"],
+ emoji_key: "flag-bn",
+ },
+ {
+ keywords: ["flag-bo", "flag-bo", "Bolivia", "Flag"],
+ emoji_key: "flag-bo",
+ },
+ {
+ keywords: ["flag-bq", "flag-bq", "Caribbean", "Netherlands", "Flag"],
+ emoji_key: "flag-bq",
+ },
+ {
+ keywords: ["flag-br", "flag-br", "Brazil", "Flag"],
+ emoji_key: "flag-br",
+ },
+ {
+ keywords: ["flag-bs", "flag-bs", "Bahamas", "Flag"],
+ emoji_key: "flag-bs",
+ },
+ {
+ keywords: ["flag-bt", "flag-bt", "Bhutan", "Flag"],
+ emoji_key: "flag-bt",
+ },
+ {
+ keywords: ["flag-bv", "flag-bv", "Bouvet", "Island", "Flag"],
+ emoji_key: "flag-bv",
+ },
+ {
+ keywords: ["flag-bw", "flag-bw", "Botswana", "Flag"],
+ emoji_key: "flag-bw",
+ },
+ {
+ keywords: ["flag-by", "flag-by", "Belarus", "Flag"],
+ emoji_key: "flag-by",
+ },
+ {
+ keywords: ["flag-bz", "flag-bz", "Belize", "Flag"],
+ emoji_key: "flag-bz",
+ },
+ {
+ keywords: ["flag-ca", "flag-ca", "Canada", "Flag"],
+ emoji_key: "flag-ca",
+ },
+ {
+ keywords: ["flag-cc", "flag-cc", "Cocos", "(Keeling)", "Islands", "Flag"],
+ emoji_key: "flag-cc",
+ },
+ {
+ keywords: ["flag-cd", "flag-cd", "Congo", "-", "Kinshasa", "Flag"],
+ emoji_key: "flag-cd",
+ },
+ {
+ keywords: [
+ "flag-cf",
+ "flag-cf",
+ "Central",
+ "African",
+ "Republic",
+ "Flag",
+ ],
+ emoji_key: "flag-cf",
+ },
+ {
+ keywords: ["flag-cg", "flag-cg", "Congo", "-", "Brazzaville", "Flag"],
+ emoji_key: "flag-cg",
+ },
+ {
+ keywords: ["flag-ch", "flag-ch", "Switzerland", "Flag"],
+ emoji_key: "flag-ch",
+ },
+ {
+ keywords: ["flag-ci", "flag-ci", "Côte", "d’Ivoire", "Flag"],
+ emoji_key: "flag-ci",
+ },
+ {
+ keywords: ["flag-ck", "flag-ck", "Cook", "Islands", "Flag"],
+ emoji_key: "flag-ck",
+ },
+ { keywords: ["flag-cl", "flag-cl", "Chile", "Flag"], emoji_key: "flag-cl" },
+ {
+ keywords: ["flag-cm", "flag-cm", "Cameroon", "Flag"],
+ emoji_key: "flag-cm",
+ },
+ {
+ keywords: [
+ "cn",
+ "cn",
+ "China",
+ "Flagchina",
+ "chinese",
+ "prc",
+ "flag",
+ "country",
+ "nation",
+ "banner",
+ ],
+ emoji_key: "cn",
+ },
+ {
+ keywords: ["flag-co", "flag-co", "Colombia", "Flag"],
+ emoji_key: "flag-co",
+ },
+ {
+ keywords: ["flag-cp", "flag-cp", "Clipperton", "Island", "Flag"],
+ emoji_key: "flag-cp",
+ },
+ {
+ keywords: ["flag-cr", "flag-cr", "Costa", "Rica", "Flag"],
+ emoji_key: "flag-cr",
+ },
+ { keywords: ["flag-cu", "flag-cu", "Cuba", "Flag"], emoji_key: "flag-cu" },
+ {
+ keywords: ["flag-cv", "flag-cv", "Cape", "Verde", "Flag"],
+ emoji_key: "flag-cv",
+ },
+ {
+ keywords: ["flag-cw", "flag-cw", "Curaçao", "Flag"],
+ emoji_key: "flag-cw",
+ },
+ {
+ keywords: ["flag-cx", "flag-cx", "Christmas", "Island", "Flag"],
+ emoji_key: "flag-cx",
+ },
+ {
+ keywords: ["flag-cy", "flag-cy", "Cyprus", "Flag"],
+ emoji_key: "flag-cy",
+ },
+ {
+ keywords: ["flag-cz", "flag-cz", "Czechia", "Flag"],
+ emoji_key: "flag-cz",
+ },
+ {
+ keywords: [
+ "de",
+ "de",
+ "Germany",
+ "Flaggerman",
+ "nation",
+ "flag",
+ "country",
+ "banner",
+ ],
+ emoji_key: "de",
+ },
+ {
+ keywords: ["flag-dg", "flag-dg", "Diego", "Garcia", "Flag"],
+ emoji_key: "flag-dg",
+ },
+ {
+ keywords: ["flag-dj", "flag-dj", "Djibouti", "Flag"],
+ emoji_key: "flag-dj",
+ },
+ {
+ keywords: ["flag-dk", "flag-dk", "Denmark", "Flag"],
+ emoji_key: "flag-dk",
+ },
+ {
+ keywords: ["flag-dm", "flag-dm", "Dominica", "Flag"],
+ emoji_key: "flag-dm",
+ },
+ {
+ keywords: ["flag-do", "flag-do", "Dominican", "Republic", "Flag"],
+ emoji_key: "flag-do",
+ },
+ {
+ keywords: ["flag-dz", "flag-dz", "Algeria", "Flag"],
+ emoji_key: "flag-dz",
+ },
+ {
+ keywords: ["flag-ea", "flag-ea", "Ceuta", "&", "Melilla", "Flag"],
+ emoji_key: "flag-ea",
+ },
+ {
+ keywords: ["flag-ec", "flag-ec", "Ecuador", "Flag"],
+ emoji_key: "flag-ec",
+ },
+ {
+ keywords: ["flag-ee", "flag-ee", "Estonia", "Flag"],
+ emoji_key: "flag-ee",
+ },
+ { keywords: ["flag-eg", "flag-eg", "Egypt", "Flag"], emoji_key: "flag-eg" },
+ {
+ keywords: ["flag-eh", "flag-eh", "Western", "Sahara", "Flag"],
+ emoji_key: "flag-eh",
+ },
+ {
+ keywords: ["flag-er", "flag-er", "Eritrea", "Flag"],
+ emoji_key: "flag-er",
+ },
+ {
+ keywords: [
+ "es",
+ "es",
+ "Spain",
+ "Flagspain",
+ "flag",
+ "nation",
+ "country",
+ "banner",
+ ],
+ emoji_key: "es",
+ },
+ {
+ keywords: ["flag-et", "flag-et", "Ethiopia", "Flag"],
+ emoji_key: "flag-et",
+ },
+ {
+ keywords: ["flag-eu", "flag-eu", "European", "Union", "Flag"],
+ emoji_key: "flag-eu",
+ },
+ {
+ keywords: ["flag-fi", "flag-fi", "Finland", "Flag"],
+ emoji_key: "flag-fi",
+ },
+ { keywords: ["flag-fj", "flag-fj", "Fiji", "Flag"], emoji_key: "flag-fj" },
+ {
+ keywords: ["flag-fk", "flag-fk", "Falkland", "Islands", "Flag"],
+ emoji_key: "flag-fk",
+ },
+ {
+ keywords: ["flag-fm", "flag-fm", "Micronesia", "Flag"],
+ emoji_key: "flag-fm",
+ },
+ {
+ keywords: ["flag-fo", "flag-fo", "Faroe", "Islands", "Flag"],
+ emoji_key: "flag-fo",
+ },
+ {
+ keywords: [
+ "fr",
+ "fr",
+ "France",
+ "Flagbanner",
+ "flag",
+ "nation",
+ "france",
+ "french",
+ "country",
+ ],
+ emoji_key: "fr",
+ },
+ { keywords: ["flag-ga", "flag-ga", "Gabon", "Flag"], emoji_key: "flag-ga" },
+ { keywords: ["gb", "gb", "United", "Kingdom", "Flag"], emoji_key: "gb" },
+ {
+ keywords: ["flag-gd", "flag-gd", "Grenada", "Flag"],
+ emoji_key: "flag-gd",
+ },
+ {
+ keywords: ["flag-ge", "flag-ge", "Georgia", "Flag"],
+ emoji_key: "flag-ge",
+ },
+ {
+ keywords: ["flag-gf", "flag-gf", "French", "Guiana", "Flag"],
+ emoji_key: "flag-gf",
+ },
+ {
+ keywords: ["flag-gg", "flag-gg", "Guernsey", "Flag"],
+ emoji_key: "flag-gg",
+ },
+ { keywords: ["flag-gh", "flag-gh", "Ghana", "Flag"], emoji_key: "flag-gh" },
+ {
+ keywords: ["flag-gi", "flag-gi", "Gibraltar", "Flag"],
+ emoji_key: "flag-gi",
+ },
+ {
+ keywords: ["flag-gl", "flag-gl", "Greenland", "Flag"],
+ emoji_key: "flag-gl",
+ },
+ {
+ keywords: ["flag-gm", "flag-gm", "Gambia", "Flag"],
+ emoji_key: "flag-gm",
+ },
+ {
+ keywords: ["flag-gn", "flag-gn", "Guinea", "Flag"],
+ emoji_key: "flag-gn",
+ },
+ {
+ keywords: ["flag-gp", "flag-gp", "Guadeloupe", "Flag"],
+ emoji_key: "flag-gp",
+ },
+ {
+ keywords: ["flag-gq", "flag-gq", "Equatorial", "Guinea", "Flag"],
+ emoji_key: "flag-gq",
+ },
+ {
+ keywords: ["flag-gr", "flag-gr", "Greece", "Flag"],
+ emoji_key: "flag-gr",
+ },
+ {
+ keywords: [
+ "flag-gs",
+ "flag-gs",
+ "South",
+ "Georgia",
+ "&",
+ "South",
+ "Sandwich",
+ "Islands",
+ "Flag",
+ ],
+ emoji_key: "flag-gs",
+ },
+ {
+ keywords: ["flag-gt", "flag-gt", "Guatemala", "Flag"],
+ emoji_key: "flag-gt",
+ },
+ { keywords: ["flag-gu", "flag-gu", "Guam", "Flag"], emoji_key: "flag-gu" },
+ {
+ keywords: ["flag-gw", "flag-gw", "Guinea-Bissau", "Flag"],
+ emoji_key: "flag-gw",
+ },
+ {
+ keywords: ["flag-gy", "flag-gy", "Guyana", "Flag"],
+ emoji_key: "flag-gy",
+ },
+ {
+ keywords: ["flag-hk", "flag-hk", "Hong", "Kong", "SAR", "China", "Flag"],
+ emoji_key: "flag-hk",
+ },
+ {
+ keywords: [
+ "flag-hm",
+ "flag-hm",
+ "Heard",
+ "&",
+ "McDonald",
+ "Islands",
+ "Flag",
+ ],
+ emoji_key: "flag-hm",
+ },
+ {
+ keywords: ["flag-hn", "flag-hn", "Honduras", "Flag"],
+ emoji_key: "flag-hn",
+ },
+ {
+ keywords: ["flag-hr", "flag-hr", "Croatia", "Flag"],
+ emoji_key: "flag-hr",
+ },
+ { keywords: ["flag-ht", "flag-ht", "Haiti", "Flag"], emoji_key: "flag-ht" },
+ {
+ keywords: ["flag-hu", "flag-hu", "Hungary", "Flag"],
+ emoji_key: "flag-hu",
+ },
+ {
+ keywords: ["flag-ic", "flag-ic", "Canary", "Islands", "Flag"],
+ emoji_key: "flag-ic",
+ },
+ {
+ keywords: ["flag-id", "flag-id", "Indonesia", "Flag"],
+ emoji_key: "flag-id",
+ },
+ {
+ keywords: ["flag-ie", "flag-ie", "Ireland", "Flag"],
+ emoji_key: "flag-ie",
+ },
+ {
+ keywords: ["flag-il", "flag-il", "Israel", "Flag"],
+ emoji_key: "flag-il",
+ },
+ {
+ keywords: ["flag-im", "flag-im", "Isle", "of", "Man", "Flag"],
+ emoji_key: "flag-im",
+ },
+ { keywords: ["flag-in", "flag-in", "India", "Flag"], emoji_key: "flag-in" },
+ {
+ keywords: [
+ "flag-io",
+ "flag-io",
+ "British",
+ "Indian",
+ "Ocean",
+ "Territory",
+ "Flag",
+ ],
+ emoji_key: "flag-io",
+ },
+ { keywords: ["flag-iq", "flag-iq", "Iraq", "Flag"], emoji_key: "flag-iq" },
+ { keywords: ["flag-ir", "flag-ir", "Iran", "Flag"], emoji_key: "flag-ir" },
+ {
+ keywords: ["flag-is", "flag-is", "Iceland", "Flag"],
+ emoji_key: "flag-is",
+ },
+ {
+ keywords: [
+ "it",
+ "it",
+ "Italy",
+ "Flagitaly",
+ "flag",
+ "nation",
+ "country",
+ "banner",
+ ],
+ emoji_key: "it",
+ },
+ {
+ keywords: ["flag-je", "flag-je", "Jersey", "Flag"],
+ emoji_key: "flag-je",
+ },
+ {
+ keywords: ["flag-jm", "flag-jm", "Jamaica", "Flag"],
+ emoji_key: "flag-jm",
+ },
+ {
+ keywords: ["flag-jo", "flag-jo", "Jordan", "Flag"],
+ emoji_key: "flag-jo",
+ },
+ {
+ keywords: [
+ "jp",
+ "jp",
+ "Japan",
+ "Flagjapanese",
+ "nation",
+ "flag",
+ "country",
+ "banner",
+ ],
+ emoji_key: "jp",
+ },
+ { keywords: ["flag-ke", "flag-ke", "Kenya", "Flag"], emoji_key: "flag-ke" },
+ {
+ keywords: ["flag-kg", "flag-kg", "Kyrgyzstan", "Flag"],
+ emoji_key: "flag-kg",
+ },
+ {
+ keywords: ["flag-kh", "flag-kh", "Cambodia", "Flag"],
+ emoji_key: "flag-kh",
+ },
+ {
+ keywords: ["flag-ki", "flag-ki", "Kiribati", "Flag"],
+ emoji_key: "flag-ki",
+ },
+ {
+ keywords: ["flag-km", "flag-km", "Comoros", "Flag"],
+ emoji_key: "flag-km",
+ },
+ {
+ keywords: ["flag-kn", "flag-kn", "St.", "Kitts", "&", "Nevis", "Flag"],
+ emoji_key: "flag-kn",
+ },
+ {
+ keywords: ["flag-kp", "flag-kp", "North", "Korea", "Flag"],
+ emoji_key: "flag-kp",
+ },
+ {
+ keywords: [
+ "kr",
+ "kr",
+ "South",
+ "Korea",
+ "Flagsouth",
+ "korea",
+ "nation",
+ "flag",
+ "country",
+ "banner",
+ ],
+ emoji_key: "kr",
+ },
+ {
+ keywords: ["flag-kw", "flag-kw", "Kuwait", "Flag"],
+ emoji_key: "flag-kw",
+ },
+ {
+ keywords: ["flag-ky", "flag-ky", "Cayman", "Islands", "Flag"],
+ emoji_key: "flag-ky",
+ },
+ {
+ keywords: ["flag-kz", "flag-kz", "Kazakhstan", "Flag"],
+ emoji_key: "flag-kz",
+ },
+ { keywords: ["flag-la", "flag-la", "Laos", "Flag"], emoji_key: "flag-la" },
+ {
+ keywords: ["flag-lb", "flag-lb", "Lebanon", "Flag"],
+ emoji_key: "flag-lb",
+ },
+ {
+ keywords: ["flag-lc", "flag-lc", "St.", "Lucia", "Flag"],
+ emoji_key: "flag-lc",
+ },
+ {
+ keywords: ["flag-li", "flag-li", "Liechtenstein", "Flag"],
+ emoji_key: "flag-li",
+ },
+ {
+ keywords: ["flag-lk", "flag-lk", "Sri", "Lanka", "Flag"],
+ emoji_key: "flag-lk",
+ },
+ {
+ keywords: ["flag-lr", "flag-lr", "Liberia", "Flag"],
+ emoji_key: "flag-lr",
+ },
+ {
+ keywords: ["flag-ls", "flag-ls", "Lesotho", "Flag"],
+ emoji_key: "flag-ls",
+ },
+ {
+ keywords: ["flag-lt", "flag-lt", "Lithuania", "Flag"],
+ emoji_key: "flag-lt",
+ },
+ {
+ keywords: ["flag-lu", "flag-lu", "Luxembourg", "Flag"],
+ emoji_key: "flag-lu",
+ },
+ {
+ keywords: ["flag-lv", "flag-lv", "Latvia", "Flag"],
+ emoji_key: "flag-lv",
+ },
+ { keywords: ["flag-ly", "flag-ly", "Libya", "Flag"], emoji_key: "flag-ly" },
+ {
+ keywords: ["flag-ma", "flag-ma", "Morocco", "Flag"],
+ emoji_key: "flag-ma",
+ },
+ {
+ keywords: ["flag-mc", "flag-mc", "Monaco", "Flag"],
+ emoji_key: "flag-mc",
+ },
+ {
+ keywords: ["flag-md", "flag-md", "Moldova", "Flag"],
+ emoji_key: "flag-md",
+ },
+ {
+ keywords: ["flag-me", "flag-me", "Montenegro", "Flag"],
+ emoji_key: "flag-me",
+ },
+ {
+ keywords: ["flag-mf", "flag-mf", "St.", "Martin", "Flag"],
+ emoji_key: "flag-mf",
+ },
+ {
+ keywords: ["flag-mg", "flag-mg", "Madagascar", "Flag"],
+ emoji_key: "flag-mg",
+ },
+ {
+ keywords: ["flag-mh", "flag-mh", "Marshall", "Islands", "Flag"],
+ emoji_key: "flag-mh",
+ },
+ {
+ keywords: ["flag-mk", "flag-mk", "North", "Macedonia", "Flag"],
+ emoji_key: "flag-mk",
+ },
+ { keywords: ["flag-ml", "flag-ml", "Mali", "Flag"], emoji_key: "flag-ml" },
+ {
+ keywords: ["flag-mm", "flag-mm", "Myanmar", "(Burma)", "Flag"],
+ emoji_key: "flag-mm",
+ },
+ {
+ keywords: ["flag-mn", "flag-mn", "Mongolia", "Flag"],
+ emoji_key: "flag-mn",
+ },
+ {
+ keywords: ["flag-mo", "flag-mo", "Macao", "SAR", "China", "Flag"],
+ emoji_key: "flag-mo",
+ },
+ {
+ keywords: [
+ "flag-mp",
+ "flag-mp",
+ "Northern",
+ "Mariana",
+ "Islands",
+ "Flag",
+ ],
+ emoji_key: "flag-mp",
+ },
+ {
+ keywords: ["flag-mq", "flag-mq", "Martinique", "Flag"],
+ emoji_key: "flag-mq",
+ },
+ {
+ keywords: ["flag-mr", "flag-mr", "Mauritania", "Flag"],
+ emoji_key: "flag-mr",
+ },
+ {
+ keywords: ["flag-ms", "flag-ms", "Montserrat", "Flag"],
+ emoji_key: "flag-ms",
+ },
+ { keywords: ["flag-mt", "flag-mt", "Malta", "Flag"], emoji_key: "flag-mt" },
+ {
+ keywords: ["flag-mu", "flag-mu", "Mauritius", "Flag"],
+ emoji_key: "flag-mu",
+ },
+ {
+ keywords: ["flag-mv", "flag-mv", "Maldives", "Flag"],
+ emoji_key: "flag-mv",
+ },
+ {
+ keywords: ["flag-mw", "flag-mw", "Malawi", "Flag"],
+ emoji_key: "flag-mw",
+ },
+ {
+ keywords: ["flag-mx", "flag-mx", "Mexico", "Flag"],
+ emoji_key: "flag-mx",
+ },
+ {
+ keywords: ["flag-my", "flag-my", "Malaysia", "Flag"],
+ emoji_key: "flag-my",
+ },
+ {
+ keywords: ["flag-mz", "flag-mz", "Mozambique", "Flag"],
+ emoji_key: "flag-mz",
+ },
+ {
+ keywords: ["flag-na", "flag-na", "Namibia", "Flag"],
+ emoji_key: "flag-na",
+ },
+ {
+ keywords: ["flag-nc", "flag-nc", "New", "Caledonia", "Flag"],
+ emoji_key: "flag-nc",
+ },
+ { keywords: ["flag-ne", "flag-ne", "Niger", "Flag"], emoji_key: "flag-ne" },
+ {
+ keywords: ["flag-nf", "flag-nf", "Norfolk", "Island", "Flag"],
+ emoji_key: "flag-nf",
+ },
+ {
+ keywords: ["flag-ng", "flag-ng", "Nigeria", "Flag"],
+ emoji_key: "flag-ng",
+ },
+ {
+ keywords: ["flag-ni", "flag-ni", "Nicaragua", "Flag"],
+ emoji_key: "flag-ni",
+ },
+ {
+ keywords: ["flag-nl", "flag-nl", "Netherlands", "Flag"],
+ emoji_key: "flag-nl",
+ },
+ {
+ keywords: ["flag-no", "flag-no", "Norway", "Flag"],
+ emoji_key: "flag-no",
+ },
+ { keywords: ["flag-np", "flag-np", "Nepal", "Flag"], emoji_key: "flag-np" },
+ { keywords: ["flag-nr", "flag-nr", "Nauru", "Flag"], emoji_key: "flag-nr" },
+ { keywords: ["flag-nu", "flag-nu", "Niue", "Flag"], emoji_key: "flag-nu" },
+ {
+ keywords: ["flag-nz", "flag-nz", "New", "Zealand", "Flag"],
+ emoji_key: "flag-nz",
+ },
+ { keywords: ["flag-om", "flag-om", "Oman", "Flag"], emoji_key: "flag-om" },
+ {
+ keywords: ["flag-pa", "flag-pa", "Panama", "Flag"],
+ emoji_key: "flag-pa",
+ },
+ { keywords: ["flag-pe", "flag-pe", "Peru", "Flag"], emoji_key: "flag-pe" },
+ {
+ keywords: ["flag-pf", "flag-pf", "French", "Polynesia", "Flag"],
+ emoji_key: "flag-pf",
+ },
+ {
+ keywords: ["flag-pg", "flag-pg", "Papua", "New", "Guinea", "Flag"],
+ emoji_key: "flag-pg",
+ },
+ {
+ keywords: ["flag-ph", "flag-ph", "Philippines", "Flag"],
+ emoji_key: "flag-ph",
+ },
+ {
+ keywords: ["flag-pk", "flag-pk", "Pakistan", "Flag"],
+ emoji_key: "flag-pk",
+ },
+ {
+ keywords: ["flag-pl", "flag-pl", "Poland", "Flag"],
+ emoji_key: "flag-pl",
+ },
+ {
+ keywords: [
+ "flag-pm",
+ "flag-pm",
+ "St.",
+ "Pierre",
+ "&",
+ "Miquelon",
+ "Flag",
+ ],
+ emoji_key: "flag-pm",
+ },
+ {
+ keywords: ["flag-pn", "flag-pn", "Pitcairn", "Islands", "Flag"],
+ emoji_key: "flag-pn",
+ },
+ {
+ keywords: ["flag-pr", "flag-pr", "Puerto", "Rico", "Flag"],
+ emoji_key: "flag-pr",
+ },
+ {
+ keywords: ["flag-ps", "flag-ps", "Palestinian", "Territories", "Flag"],
+ emoji_key: "flag-ps",
+ },
+ {
+ keywords: ["flag-pt", "flag-pt", "Portugal", "Flag"],
+ emoji_key: "flag-pt",
+ },
+ { keywords: ["flag-pw", "flag-pw", "Palau", "Flag"], emoji_key: "flag-pw" },
+ {
+ keywords: ["flag-py", "flag-py", "Paraguay", "Flag"],
+ emoji_key: "flag-py",
+ },
+ { keywords: ["flag-qa", "flag-qa", "Qatar", "Flag"], emoji_key: "flag-qa" },
+ {
+ keywords: ["flag-re", "flag-re", "Réunion", "Flag"],
+ emoji_key: "flag-re",
+ },
+ {
+ keywords: ["flag-ro", "flag-ro", "Romania", "Flag"],
+ emoji_key: "flag-ro",
+ },
+ {
+ keywords: ["flag-rs", "flag-rs", "Serbia", "Flag"],
+ emoji_key: "flag-rs",
+ },
+ {
+ keywords: [
+ "ru",
+ "ru",
+ "Russia",
+ "Flagrussian",
+ "federation",
+ "flag",
+ "nation",
+ "country",
+ "banner",
+ ],
+ emoji_key: "ru",
+ },
+ {
+ keywords: ["flag-rw", "flag-rw", "Rwanda", "Flag"],
+ emoji_key: "flag-rw",
+ },
+ {
+ keywords: ["flag-sa", "flag-sa", "Saudi", "Arabia", "Flag"],
+ emoji_key: "flag-sa",
+ },
+ {
+ keywords: ["flag-sb", "flag-sb", "Solomon", "Islands", "Flag"],
+ emoji_key: "flag-sb",
+ },
+ {
+ keywords: ["flag-sc", "flag-sc", "Seychelles", "Flag"],
+ emoji_key: "flag-sc",
+ },
+ { keywords: ["flag-sd", "flag-sd", "Sudan", "Flag"], emoji_key: "flag-sd" },
+ {
+ keywords: ["flag-se", "flag-se", "Sweden", "Flag"],
+ emoji_key: "flag-se",
+ },
+ {
+ keywords: ["flag-sg", "flag-sg", "Singapore", "Flag"],
+ emoji_key: "flag-sg",
+ },
+ {
+ keywords: ["flag-sh", "flag-sh", "St.", "Helena", "Flag"],
+ emoji_key: "flag-sh",
+ },
+ {
+ keywords: ["flag-si", "flag-si", "Slovenia", "Flag"],
+ emoji_key: "flag-si",
+ },
+ {
+ keywords: ["flag-sj", "flag-sj", "Svalbard", "&", "Jan", "Mayen", "Flag"],
+ emoji_key: "flag-sj",
+ },
+ {
+ keywords: ["flag-sk", "flag-sk", "Slovakia", "Flag"],
+ emoji_key: "flag-sk",
+ },
+ {
+ keywords: ["flag-sl", "flag-sl", "Sierra", "Leone", "Flag"],
+ emoji_key: "flag-sl",
+ },
+ {
+ keywords: ["flag-sm", "flag-sm", "San", "Marino", "Flag"],
+ emoji_key: "flag-sm",
+ },
+ {
+ keywords: ["flag-sn", "flag-sn", "Senegal", "Flag"],
+ emoji_key: "flag-sn",
+ },
+ {
+ keywords: ["flag-so", "flag-so", "Somalia", "Flag"],
+ emoji_key: "flag-so",
+ },
+ {
+ keywords: ["flag-sr", "flag-sr", "Suriname", "Flag"],
+ emoji_key: "flag-sr",
+ },
+ {
+ keywords: ["flag-ss", "flag-ss", "South", "Sudan", "Flag"],
+ emoji_key: "flag-ss",
+ },
+ {
+ keywords: ["flag-st", "flag-st", "São", "Tomé", "&", "Príncipe", "Flag"],
+ emoji_key: "flag-st",
+ },
+ {
+ keywords: ["flag-sv", "flag-sv", "El", "Salvador", "Flag"],
+ emoji_key: "flag-sv",
+ },
+ {
+ keywords: ["flag-sx", "flag-sx", "Sint", "Maarten", "Flag"],
+ emoji_key: "flag-sx",
+ },
+ { keywords: ["flag-sy", "flag-sy", "Syria", "Flag"], emoji_key: "flag-sy" },
+ {
+ keywords: ["flag-sz", "flag-sz", "Eswatini", "Flag"],
+ emoji_key: "flag-sz",
+ },
+ {
+ keywords: ["flag-ta", "flag-ta", "Tristan", "da", "Cunha", "Flag"],
+ emoji_key: "flag-ta",
+ },
+ {
+ keywords: [
+ "flag-tc",
+ "flag-tc",
+ "Turks",
+ "&",
+ "Caicos",
+ "Islands",
+ "Flag",
+ ],
+ emoji_key: "flag-tc",
+ },
+ { keywords: ["flag-td", "flag-td", "Chad", "Flag"], emoji_key: "flag-td" },
+ {
+ keywords: [
+ "flag-tf",
+ "flag-tf",
+ "French",
+ "Southern",
+ "Territories",
+ "Flag",
+ ],
+ emoji_key: "flag-tf",
+ },
+ { keywords: ["flag-tg", "flag-tg", "Togo", "Flag"], emoji_key: "flag-tg" },
+ {
+ keywords: ["flag-th", "flag-th", "Thailand", "Flag"],
+ emoji_key: "flag-th",
+ },
+ {
+ keywords: ["flag-tj", "flag-tj", "Tajikistan", "Flag"],
+ emoji_key: "flag-tj",
+ },
+ {
+ keywords: ["flag-tk", "flag-tk", "Tokelau", "Flag"],
+ emoji_key: "flag-tk",
+ },
+ {
+ keywords: ["flag-tl", "flag-tl", "Timor-Leste", "Flag"],
+ emoji_key: "flag-tl",
+ },
+ {
+ keywords: ["flag-tm", "flag-tm", "Turkmenistan", "Flag"],
+ emoji_key: "flag-tm",
+ },
+ {
+ keywords: ["flag-tn", "flag-tn", "Tunisia", "Flag"],
+ emoji_key: "flag-tn",
+ },
+ { keywords: ["flag-to", "flag-to", "Tonga", "Flag"], emoji_key: "flag-to" },
+ {
+ keywords: ["flag-tr", "flag-tr", "Turkey", "Flag"],
+ emoji_key: "flag-tr",
+ },
+ {
+ keywords: ["flag-tt", "flag-tt", "Trinidad", "&", "Tobago", "Flag"],
+ emoji_key: "flag-tt",
+ },
+ {
+ keywords: ["flag-tv", "flag-tv", "Tuvalu", "Flag"],
+ emoji_key: "flag-tv",
+ },
+ {
+ keywords: ["flag-tw", "flag-tw", "Taiwan", "Flag"],
+ emoji_key: "flag-tw",
+ },
+ {
+ keywords: ["flag-tz", "flag-tz", "Tanzania", "Flag"],
+ emoji_key: "flag-tz",
+ },
+ {
+ keywords: ["flag-ua", "flag-ua", "Ukraine", "Flag"],
+ emoji_key: "flag-ua",
+ },
+ {
+ keywords: ["flag-ug", "flag-ug", "Uganda", "Flag"],
+ emoji_key: "flag-ug",
+ },
+ {
+ keywords: ["flag-um", "flag-um", "U.S.", "Outlying", "Islands", "Flag"],
+ emoji_key: "flag-um",
+ },
+ {
+ keywords: ["flag-un", "flag-un", "United", "Nations", "Flag"],
+ emoji_key: "flag-un",
+ },
+ {
+ keywords: [
+ "us",
+ "us",
+ "United",
+ "States",
+ "Flagunited",
+ "states",
+ "america",
+ "flag",
+ "nation",
+ "country",
+ "banner",
+ ],
+ emoji_key: "us",
+ },
+ {
+ keywords: ["flag-uy", "flag-uy", "Uruguay", "Flag"],
+ emoji_key: "flag-uy",
+ },
+ {
+ keywords: ["flag-uz", "flag-uz", "Uzbekistan", "Flag"],
+ emoji_key: "flag-uz",
+ },
+ {
+ keywords: ["flag-va", "flag-va", "Vatican", "City", "Flag"],
+ emoji_key: "flag-va",
+ },
+ {
+ keywords: [
+ "flag-vc",
+ "flag-vc",
+ "St.",
+ "Vincent",
+ "&",
+ "Grenadines",
+ "Flag",
+ ],
+ emoji_key: "flag-vc",
+ },
+ {
+ keywords: ["flag-ve", "flag-ve", "Venezuela", "Flag"],
+ emoji_key: "flag-ve",
+ },
+ {
+ keywords: ["flag-vg", "flag-vg", "British", "Virgin", "Islands", "Flag"],
+ emoji_key: "flag-vg",
+ },
+ {
+ keywords: ["flag-vi", "flag-vi", "U.S.", "Virgin", "Islands", "Flag"],
+ emoji_key: "flag-vi",
+ },
+ {
+ keywords: ["flag-vn", "flag-vn", "Vietnam", "Flag"],
+ emoji_key: "flag-vn",
+ },
+ {
+ keywords: ["flag-vu", "flag-vu", "Vanuatu", "Flag"],
+ emoji_key: "flag-vu",
+ },
+ {
+ keywords: ["flag-wf", "flag-wf", "Wallis", "&", "Futuna", "Flag"],
+ emoji_key: "flag-wf",
+ },
+ { keywords: ["flag-ws", "flag-ws", "Samoa", "Flag"], emoji_key: "flag-ws" },
+ {
+ keywords: ["flag-xk", "flag-xk", "Kosovo", "Flag"],
+ emoji_key: "flag-xk",
+ },
+ { keywords: ["flag-ye", "flag-ye", "Yemen", "Flag"], emoji_key: "flag-ye" },
+ {
+ keywords: ["flag-yt", "flag-yt", "Mayotte", "Flag"],
+ emoji_key: "flag-yt",
+ },
+ {
+ keywords: ["flag-za", "flag-za", "South", "Africa", "Flag"],
+ emoji_key: "flag-za",
+ },
+ {
+ keywords: ["flag-zm", "flag-zm", "Zambia", "Flag"],
+ emoji_key: "flag-zm",
+ },
+ {
+ keywords: ["flag-zw", "flag-zw", "Zimbabwe", "Flag"],
+ emoji_key: "flag-zw",
+ },
+ {
+ keywords: ["flag-england", "flag-england", "England", "Flag"],
+ emoji_key: "flag-england",
+ },
+ {
+ keywords: ["flag-scotland", "flag-scotland", "Scotland", "Flag"],
+ emoji_key: "flag-scotland",
+ },
+ {
+ keywords: ["flag-wales", "flag-wales", "Wales", "Flag"],
+ emoji_key: "flag-wales",
+ },
+ ],
+};
diff --git a/src/emoji-data/emoji-data.json b/src/emoji-data/emoji-data.json
index 1603298..aa39d0e 100644
--- a/src/emoji-data/emoji-data.json
+++ b/src/emoji-data/emoji-data.json
@@ -15,16 +15,16 @@
"text": null,
"texts": null,
"category": "Symbols",
- "sort_order": 132,
- "added_in": "3.0",
+ "subcategory": "keycap",
+ "sort_order": 1521,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": false
},
{
- "name": null,
+ "name": "KEYCAP: *",
"unified": "002A-FE0F-20E3",
"non_qualified": "002A-20E3",
"docomo": null,
@@ -39,13 +39,13 @@
"text": null,
"texts": null,
"category": "Symbols",
- "sort_order": 133,
- "added_in": "3.0",
+ "subcategory": "keycap",
+ "sort_order": 1522,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": false
},
{
"name": "KEYCAP 0",
@@ -63,13 +63,13 @@
"text": null,
"texts": null,
"category": "Symbols",
- "sort_order": 134,
- "added_in": "3.0",
+ "subcategory": "keycap",
+ "sort_order": 1523,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": false
},
{
"name": "KEYCAP 1",
@@ -87,13 +87,13 @@
"text": null,
"texts": null,
"category": "Symbols",
- "sort_order": 135,
- "added_in": "3.0",
+ "subcategory": "keycap",
+ "sort_order": 1524,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": false
},
{
"name": "KEYCAP 2",
@@ -111,13 +111,13 @@
"text": null,
"texts": null,
"category": "Symbols",
- "sort_order": 136,
- "added_in": "3.0",
+ "subcategory": "keycap",
+ "sort_order": 1525,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": false
},
{
"name": "KEYCAP 3",
@@ -135,13 +135,13 @@
"text": null,
"texts": null,
"category": "Symbols",
- "sort_order": 137,
- "added_in": "3.0",
+ "subcategory": "keycap",
+ "sort_order": 1526,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": false
},
{
"name": "KEYCAP 4",
@@ -159,13 +159,13 @@
"text": null,
"texts": null,
"category": "Symbols",
- "sort_order": 138,
- "added_in": "3.0",
+ "subcategory": "keycap",
+ "sort_order": 1527,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": false
},
{
"name": "KEYCAP 5",
@@ -183,13 +183,13 @@
"text": null,
"texts": null,
"category": "Symbols",
- "sort_order": 139,
- "added_in": "3.0",
+ "subcategory": "keycap",
+ "sort_order": 1528,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": false
},
{
"name": "KEYCAP 6",
@@ -207,13 +207,13 @@
"text": null,
"texts": null,
"category": "Symbols",
- "sort_order": 140,
- "added_in": "3.0",
+ "subcategory": "keycap",
+ "sort_order": 1529,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": false
},
{
"name": "KEYCAP 7",
@@ -231,13 +231,13 @@
"text": null,
"texts": null,
"category": "Symbols",
- "sort_order": 141,
- "added_in": "3.0",
+ "subcategory": "keycap",
+ "sort_order": 1530,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": false
},
{
"name": "KEYCAP 8",
@@ -255,13 +255,13 @@
"text": null,
"texts": null,
"category": "Symbols",
- "sort_order": 142,
- "added_in": "3.0",
+ "subcategory": "keycap",
+ "sort_order": 1531,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": false
},
{
"name": "KEYCAP 9",
@@ -279,13 +279,13 @@
"text": null,
"texts": null,
"category": "Symbols",
- "sort_order": 143,
- "added_in": "3.0",
+ "subcategory": "keycap",
+ "sort_order": 1532,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": false
},
{
"name": "COPYRIGHT SIGN",
@@ -303,13 +303,13 @@
"text": null,
"texts": null,
"category": "Symbols",
- "sort_order": 129,
- "added_in": "1.1",
+ "subcategory": "other-symbol",
+ "sort_order": 1518,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_twitter": true,
+ "has_img_facebook": false
},
{
"name": "REGISTERED SIGN",
@@ -327,13 +327,13 @@
"text": null,
"texts": null,
"category": "Symbols",
- "sort_order": 130,
- "added_in": "1.1",
+ "subcategory": "other-symbol",
+ "sort_order": 1519,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_twitter": true,
+ "has_img_facebook": false
},
{
"name": "MAHJONG TILE RED DRAGON",
@@ -351,13 +351,13 @@
"text": null,
"texts": null,
"category": "Activities",
- "sort_order": 70,
- "added_in": "5.1",
+ "subcategory": "game",
+ "sort_order": 1114,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "PLAYING CARD BLACK JOKER",
@@ -375,13 +375,13 @@
"text": null,
"texts": null,
"category": "Activities",
- "sort_order": 69,
- "added_in": "6.0",
+ "subcategory": "game",
+ "sort_order": 1113,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "NEGATIVE SQUARED LATIN CAPITAL LETTER A",
@@ -399,13 +399,13 @@
"text": null,
"texts": null,
"category": "Symbols",
- "sort_order": 151,
- "added_in": "6.0",
+ "subcategory": "alphanum",
+ "sort_order": 1539,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "NEGATIVE SQUARED LATIN CAPITAL LETTER B",
@@ -423,13 +423,13 @@
"text": null,
"texts": null,
"category": "Symbols",
- "sort_order": 153,
- "added_in": "6.0",
+ "subcategory": "alphanum",
+ "sort_order": 1541,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "NEGATIVE SQUARED LATIN CAPITAL LETTER O",
@@ -447,13 +447,13 @@
"text": null,
"texts": null,
"category": "Symbols",
- "sort_order": 162,
- "added_in": "6.0",
+ "subcategory": "alphanum",
+ "sort_order": 1550,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "NEGATIVE SQUARED LATIN CAPITAL LETTER P",
@@ -471,13 +471,13 @@
"text": null,
"texts": null,
"category": "Symbols",
- "sort_order": 164,
- "added_in": "5.2",
+ "subcategory": "alphanum",
+ "sort_order": 1552,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "NEGATIVE SQUARED AB",
@@ -495,13 +495,13 @@
"text": null,
"texts": null,
"category": "Symbols",
- "sort_order": 152,
- "added_in": "6.0",
+ "subcategory": "alphanum",
+ "sort_order": 1540,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "SQUARED CL",
@@ -519,13 +519,13 @@
"text": null,
"texts": null,
"category": "Symbols",
- "sort_order": 154,
- "added_in": "6.0",
+ "subcategory": "alphanum",
+ "sort_order": 1542,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "SQUARED COOL",
@@ -543,13 +543,13 @@
"text": null,
"texts": null,
"category": "Symbols",
- "sort_order": 155,
- "added_in": "6.0",
+ "subcategory": "alphanum",
+ "sort_order": 1543,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "SQUARED FREE",
@@ -567,13 +567,13 @@
"text": null,
"texts": null,
"category": "Symbols",
- "sort_order": 156,
- "added_in": "6.0",
+ "subcategory": "alphanum",
+ "sort_order": 1544,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "SQUARED ID",
@@ -591,13 +591,13 @@
"text": null,
"texts": null,
"category": "Symbols",
- "sort_order": 158,
- "added_in": "6.0",
+ "subcategory": "alphanum",
+ "sort_order": 1546,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "SQUARED NEW",
@@ -615,13 +615,13 @@
"text": null,
"texts": null,
"category": "Symbols",
- "sort_order": 160,
- "added_in": "6.0",
+ "subcategory": "alphanum",
+ "sort_order": 1548,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "SQUARED NG",
@@ -639,13 +639,13 @@
"text": null,
"texts": null,
"category": "Symbols",
- "sort_order": 161,
- "added_in": "6.0",
+ "subcategory": "alphanum",
+ "sort_order": 1549,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "SQUARED OK",
@@ -663,13 +663,13 @@
"text": null,
"texts": null,
"category": "Symbols",
- "sort_order": 163,
- "added_in": "6.0",
+ "subcategory": "alphanum",
+ "sort_order": 1551,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "SQUARED SOS",
@@ -687,13 +687,13 @@
"text": null,
"texts": null,
"category": "Symbols",
- "sort_order": 165,
- "added_in": "6.0",
+ "subcategory": "alphanum",
+ "sort_order": 1553,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "SQUARED UP WITH EXCLAMATION MARK",
@@ -711,13 +711,13 @@
"text": null,
"texts": null,
"category": "Symbols",
- "sort_order": 166,
- "added_in": "6.0",
+ "subcategory": "alphanum",
+ "sort_order": 1554,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "SQUARED VS",
@@ -735,13 +735,13 @@
"text": null,
"texts": null,
"category": "Symbols",
- "sort_order": 167,
- "added_in": "6.0",
+ "subcategory": "alphanum",
+ "sort_order": 1555,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Ascension Island Flag",
@@ -759,13 +759,13 @@
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 8,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1615,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Andorra Flag",
@@ -783,13 +783,13 @@
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 9,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1616,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "United Arab Emirates Flag",
@@ -807,13 +807,13 @@
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 10,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1617,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Afghanistan Flag",
@@ -831,13 +831,13 @@
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 11,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1618,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Antigua & Barbuda Flag",
@@ -855,13 +855,13 @@
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 12,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1619,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Anguilla Flag",
@@ -879,13 +879,13 @@
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 13,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1620,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Albania Flag",
@@ -903,13 +903,13 @@
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 14,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1621,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Armenia Flag",
@@ -927,13 +927,13 @@
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 15,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1622,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Angola Flag",
@@ -951,13 +951,13 @@
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 16,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1623,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Antarctica Flag",
@@ -975,13 +975,13 @@
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 17,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1624,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Argentina Flag",
@@ -999,13 +999,13 @@
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 18,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1625,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "American Samoa Flag",
@@ -1023,13 +1023,13 @@
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 19,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1626,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Austria Flag",
@@ -1047,13 +1047,13 @@
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 20,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1627,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Australia Flag",
@@ -1071,13 +1071,13 @@
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 21,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1628,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Aruba Flag",
@@ -1095,13 +1095,13 @@
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 22,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1629,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "\u00c5land Islands Flag",
@@ -1119,13 +1119,13 @@
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 23,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1630,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Azerbaijan Flag",
@@ -1143,13 +1143,13 @@
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 24,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1631,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Bosnia & Herzegovina Flag",
@@ -1167,13 +1167,13 @@
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 25,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1632,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
"name": "Barbados Flag",
@@ -1191,13 +1191,13 @@
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 26,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1633,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Bangladesh Flag",
@@ -1215,13 +1215,13 @@
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 27,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1634,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Belgium Flag",
@@ -1239,13 +1239,13 @@
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 28,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1635,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Burkina Faso Flag",
@@ -1263,13 +1263,13 @@
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 29,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1636,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Bulgaria Flag",
@@ -1280,20 +1280,20 @@
"softbank": null,
"google": null,
"image": "1f1e7-1f1ec.png",
- "sheet_x": 1,
- "sheet_y": 0,
+ "sheet_x": 0,
+ "sheet_y": 53,
"short_name": "flag-bg",
"short_names": ["flag-bg"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 30,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1637,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Bahrain Flag",
@@ -1304,20 +1304,20 @@
"softbank": null,
"google": null,
"image": "1f1e7-1f1ed.png",
- "sheet_x": 1,
- "sheet_y": 1,
+ "sheet_x": 0,
+ "sheet_y": 54,
"short_name": "flag-bh",
"short_names": ["flag-bh"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 31,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1638,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Burundi Flag",
@@ -1328,20 +1328,20 @@
"softbank": null,
"google": null,
"image": "1f1e7-1f1ee.png",
- "sheet_x": 1,
- "sheet_y": 2,
+ "sheet_x": 0,
+ "sheet_y": 55,
"short_name": "flag-bi",
"short_names": ["flag-bi"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 32,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1639,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Benin Flag",
@@ -1352,20 +1352,20 @@
"softbank": null,
"google": null,
"image": "1f1e7-1f1ef.png",
- "sheet_x": 1,
- "sheet_y": 3,
+ "sheet_x": 0,
+ "sheet_y": 56,
"short_name": "flag-bj",
"short_names": ["flag-bj"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 33,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1640,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "St. Barth\u00e9lemy Flag",
@@ -1376,20 +1376,20 @@
"softbank": null,
"google": null,
"image": "1f1e7-1f1f1.png",
- "sheet_x": 1,
- "sheet_y": 4,
+ "sheet_x": 0,
+ "sheet_y": 57,
"short_name": "flag-bl",
"short_names": ["flag-bl"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 34,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1641,
+ "added_in": "2.0",
"has_img_apple": true,
- "has_img_google": false,
+ "has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Bermuda Flag",
@@ -1400,20 +1400,20 @@
"softbank": null,
"google": null,
"image": "1f1e7-1f1f2.png",
- "sheet_x": 1,
- "sheet_y": 5,
+ "sheet_x": 0,
+ "sheet_y": 58,
"short_name": "flag-bm",
"short_names": ["flag-bm"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 35,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1642,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Brunei Flag",
@@ -1424,20 +1424,20 @@
"softbank": null,
"google": null,
"image": "1f1e7-1f1f3.png",
- "sheet_x": 1,
- "sheet_y": 6,
+ "sheet_x": 0,
+ "sheet_y": 59,
"short_name": "flag-bn",
"short_names": ["flag-bn"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 36,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1643,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
"name": "Bolivia Flag",
@@ -1448,20 +1448,20 @@
"softbank": null,
"google": null,
"image": "1f1e7-1f1f4.png",
- "sheet_x": 1,
- "sheet_y": 7,
+ "sheet_x": 0,
+ "sheet_y": 60,
"short_name": "flag-bo",
"short_names": ["flag-bo"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 37,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1644,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Caribbean Netherlands Flag",
@@ -1473,19 +1473,19 @@
"google": null,
"image": "1f1e7-1f1f6.png",
"sheet_x": 1,
- "sheet_y": 8,
+ "sheet_y": 0,
"short_name": "flag-bq",
"short_names": ["flag-bq"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 38,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1645,
+ "added_in": "2.0",
"has_img_apple": true,
- "has_img_google": false,
+ "has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Brazil Flag",
@@ -1497,19 +1497,19 @@
"google": null,
"image": "1f1e7-1f1f7.png",
"sheet_x": 1,
- "sheet_y": 9,
+ "sheet_y": 1,
"short_name": "flag-br",
"short_names": ["flag-br"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 39,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1646,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Bahamas Flag",
@@ -1521,19 +1521,19 @@
"google": null,
"image": "1f1e7-1f1f8.png",
"sheet_x": 1,
- "sheet_y": 10,
+ "sheet_y": 2,
"short_name": "flag-bs",
"short_names": ["flag-bs"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 40,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1647,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Bhutan Flag",
@@ -1545,19 +1545,19 @@
"google": null,
"image": "1f1e7-1f1f9.png",
"sheet_x": 1,
- "sheet_y": 11,
+ "sheet_y": 3,
"short_name": "flag-bt",
"short_names": ["flag-bt"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 41,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1648,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Bouvet Island Flag",
@@ -1569,19 +1569,19 @@
"google": null,
"image": "1f1e7-1f1fb.png",
"sheet_x": 1,
- "sheet_y": 12,
+ "sheet_y": 4,
"short_name": "flag-bv",
"short_names": ["flag-bv"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 42,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1649,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Botswana Flag",
@@ -1593,19 +1593,19 @@
"google": null,
"image": "1f1e7-1f1fc.png",
"sheet_x": 1,
- "sheet_y": 13,
+ "sheet_y": 5,
"short_name": "flag-bw",
"short_names": ["flag-bw"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 43,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1650,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Belarus Flag",
@@ -1617,19 +1617,19 @@
"google": null,
"image": "1f1e7-1f1fe.png",
"sheet_x": 1,
- "sheet_y": 14,
+ "sheet_y": 6,
"short_name": "flag-by",
"short_names": ["flag-by"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 44,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1651,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Belize Flag",
@@ -1641,19 +1641,19 @@
"google": null,
"image": "1f1e7-1f1ff.png",
"sheet_x": 1,
- "sheet_y": 15,
+ "sheet_y": 7,
"short_name": "flag-bz",
"short_names": ["flag-bz"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 45,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1652,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Canada Flag",
@@ -1665,19 +1665,19 @@
"google": null,
"image": "1f1e8-1f1e6.png",
"sheet_x": 1,
- "sheet_y": 16,
+ "sheet_y": 8,
"short_name": "flag-ca",
"short_names": ["flag-ca"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 46,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1653,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Cocos (Keeling) Islands Flag",
@@ -1689,19 +1689,19 @@
"google": null,
"image": "1f1e8-1f1e8.png",
"sheet_x": 1,
- "sheet_y": 17,
+ "sheet_y": 9,
"short_name": "flag-cc",
"short_names": ["flag-cc"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 47,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1654,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Congo - Kinshasa Flag",
@@ -1713,19 +1713,19 @@
"google": null,
"image": "1f1e8-1f1e9.png",
"sheet_x": 1,
- "sheet_y": 18,
+ "sheet_y": 10,
"short_name": "flag-cd",
"short_names": ["flag-cd"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 48,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1655,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Central African Republic Flag",
@@ -1737,19 +1737,19 @@
"google": null,
"image": "1f1e8-1f1eb.png",
"sheet_x": 1,
- "sheet_y": 19,
+ "sheet_y": 11,
"short_name": "flag-cf",
"short_names": ["flag-cf"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 49,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1656,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Congo - Brazzaville Flag",
@@ -1761,19 +1761,19 @@
"google": null,
"image": "1f1e8-1f1ec.png",
"sheet_x": 1,
- "sheet_y": 20,
+ "sheet_y": 12,
"short_name": "flag-cg",
"short_names": ["flag-cg"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 50,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1657,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Switzerland Flag",
@@ -1785,19 +1785,19 @@
"google": null,
"image": "1f1e8-1f1ed.png",
"sheet_x": 1,
- "sheet_y": 21,
+ "sheet_y": 13,
"short_name": "flag-ch",
"short_names": ["flag-ch"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 51,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1658,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "C\u00f4te d\u2019Ivoire Flag",
@@ -1809,19 +1809,19 @@
"google": null,
"image": "1f1e8-1f1ee.png",
"sheet_x": 1,
- "sheet_y": 22,
+ "sheet_y": 14,
"short_name": "flag-ci",
"short_names": ["flag-ci"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 52,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1659,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Cook Islands Flag",
@@ -1833,19 +1833,19 @@
"google": null,
"image": "1f1e8-1f1f0.png",
"sheet_x": 1,
- "sheet_y": 23,
+ "sheet_y": 15,
"short_name": "flag-ck",
"short_names": ["flag-ck"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 53,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1660,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Chile Flag",
@@ -1857,19 +1857,19 @@
"google": null,
"image": "1f1e8-1f1f1.png",
"sheet_x": 1,
- "sheet_y": 24,
+ "sheet_y": 16,
"short_name": "flag-cl",
"short_names": ["flag-cl"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 54,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1661,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Cameroon Flag",
@@ -1881,19 +1881,19 @@
"google": null,
"image": "1f1e8-1f1f2.png",
"sheet_x": 1,
- "sheet_y": 25,
+ "sheet_y": 17,
"short_name": "flag-cm",
"short_names": ["flag-cm"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 55,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1662,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "China Flag",
@@ -1905,19 +1905,19 @@
"google": "FE4ED",
"image": "1f1e8-1f1f3.png",
"sheet_x": 1,
- "sheet_y": 26,
+ "sheet_y": 18,
"short_name": "cn",
"short_names": ["cn", "flag-cn"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 56,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1663,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Colombia Flag",
@@ -1929,19 +1929,19 @@
"google": null,
"image": "1f1e8-1f1f4.png",
"sheet_x": 1,
- "sheet_y": 27,
+ "sheet_y": 19,
"short_name": "flag-co",
"short_names": ["flag-co"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 57,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1664,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Clipperton Island Flag",
@@ -1953,19 +1953,19 @@
"google": null,
"image": "1f1e8-1f1f5.png",
"sheet_x": 1,
- "sheet_y": 28,
+ "sheet_y": 20,
"short_name": "flag-cp",
"short_names": ["flag-cp"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 58,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1665,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
"name": "Costa Rica Flag",
@@ -1977,19 +1977,19 @@
"google": null,
"image": "1f1e8-1f1f7.png",
"sheet_x": 1,
- "sheet_y": 29,
+ "sheet_y": 21,
"short_name": "flag-cr",
"short_names": ["flag-cr"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 59,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1666,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Cuba Flag",
@@ -2001,19 +2001,19 @@
"google": null,
"image": "1f1e8-1f1fa.png",
"sheet_x": 1,
- "sheet_y": 30,
+ "sheet_y": 22,
"short_name": "flag-cu",
"short_names": ["flag-cu"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 60,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1667,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Cape Verde Flag",
@@ -2025,19 +2025,19 @@
"google": null,
"image": "1f1e8-1f1fb.png",
"sheet_x": 1,
- "sheet_y": 31,
+ "sheet_y": 23,
"short_name": "flag-cv",
"short_names": ["flag-cv"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 61,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1668,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Cura\u00e7ao Flag",
@@ -2049,19 +2049,19 @@
"google": null,
"image": "1f1e8-1f1fc.png",
"sheet_x": 1,
- "sheet_y": 32,
+ "sheet_y": 24,
"short_name": "flag-cw",
"short_names": ["flag-cw"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 62,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1669,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Christmas Island Flag",
@@ -2073,19 +2073,19 @@
"google": null,
"image": "1f1e8-1f1fd.png",
"sheet_x": 1,
- "sheet_y": 33,
+ "sheet_y": 25,
"short_name": "flag-cx",
"short_names": ["flag-cx"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 63,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1670,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Cyprus Flag",
@@ -2097,19 +2097,19 @@
"google": null,
"image": "1f1e8-1f1fe.png",
"sheet_x": 1,
- "sheet_y": 34,
+ "sheet_y": 26,
"short_name": "flag-cy",
"short_names": ["flag-cy"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 64,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1671,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Czechia Flag",
@@ -2121,19 +2121,19 @@
"google": null,
"image": "1f1e8-1f1ff.png",
"sheet_x": 1,
- "sheet_y": 35,
+ "sheet_y": 27,
"short_name": "flag-cz",
"short_names": ["flag-cz"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 65,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1672,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Germany Flag",
@@ -2145,19 +2145,19 @@
"google": "FE4E8",
"image": "1f1e9-1f1ea.png",
"sheet_x": 1,
- "sheet_y": 36,
+ "sheet_y": 28,
"short_name": "de",
"short_names": ["de", "flag-de"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 66,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1673,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Diego Garcia Flag",
@@ -2169,19 +2169,19 @@
"google": null,
"image": "1f1e9-1f1ec.png",
"sheet_x": 1,
- "sheet_y": 37,
+ "sheet_y": 29,
"short_name": "flag-dg",
"short_names": ["flag-dg"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 67,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1674,
+ "added_in": "2.0",
"has_img_apple": true,
- "has_img_google": false,
+ "has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Djibouti Flag",
@@ -2193,19 +2193,19 @@
"google": null,
"image": "1f1e9-1f1ef.png",
"sheet_x": 1,
- "sheet_y": 38,
+ "sheet_y": 30,
"short_name": "flag-dj",
"short_names": ["flag-dj"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 68,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1675,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Denmark Flag",
@@ -2217,19 +2217,19 @@
"google": null,
"image": "1f1e9-1f1f0.png",
"sheet_x": 1,
- "sheet_y": 39,
+ "sheet_y": 31,
"short_name": "flag-dk",
"short_names": ["flag-dk"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 69,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1676,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Dominica Flag",
@@ -2241,19 +2241,19 @@
"google": null,
"image": "1f1e9-1f1f2.png",
"sheet_x": 1,
- "sheet_y": 40,
+ "sheet_y": 32,
"short_name": "flag-dm",
"short_names": ["flag-dm"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 70,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1677,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Dominican Republic Flag",
@@ -2265,19 +2265,19 @@
"google": null,
"image": "1f1e9-1f1f4.png",
"sheet_x": 1,
- "sheet_y": 41,
+ "sheet_y": 33,
"short_name": "flag-do",
"short_names": ["flag-do"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 71,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1678,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Algeria Flag",
@@ -2289,19 +2289,19 @@
"google": null,
"image": "1f1e9-1f1ff.png",
"sheet_x": 1,
- "sheet_y": 42,
+ "sheet_y": 34,
"short_name": "flag-dz",
"short_names": ["flag-dz"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 72,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1679,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Ceuta & Melilla Flag",
@@ -2313,19 +2313,19 @@
"google": null,
"image": "1f1ea-1f1e6.png",
"sheet_x": 1,
- "sheet_y": 43,
+ "sheet_y": 35,
"short_name": "flag-ea",
"short_names": ["flag-ea"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 73,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1680,
+ "added_in": "2.0",
"has_img_apple": true,
- "has_img_google": false,
+ "has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Ecuador Flag",
@@ -2337,19 +2337,19 @@
"google": null,
"image": "1f1ea-1f1e8.png",
"sheet_x": 1,
- "sheet_y": 44,
+ "sheet_y": 36,
"short_name": "flag-ec",
"short_names": ["flag-ec"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 74,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1681,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Estonia Flag",
@@ -2361,19 +2361,19 @@
"google": null,
"image": "1f1ea-1f1ea.png",
"sheet_x": 1,
- "sheet_y": 45,
+ "sheet_y": 37,
"short_name": "flag-ee",
"short_names": ["flag-ee"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 75,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1682,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Egypt Flag",
@@ -2385,19 +2385,19 @@
"google": null,
"image": "1f1ea-1f1ec.png",
"sheet_x": 1,
- "sheet_y": 46,
+ "sheet_y": 38,
"short_name": "flag-eg",
"short_names": ["flag-eg"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 76,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1683,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Western Sahara Flag",
@@ -2409,19 +2409,19 @@
"google": null,
"image": "1f1ea-1f1ed.png",
"sheet_x": 1,
- "sheet_y": 47,
+ "sheet_y": 39,
"short_name": "flag-eh",
"short_names": ["flag-eh"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 77,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1684,
+ "added_in": "2.0",
"has_img_apple": true,
- "has_img_google": false,
+ "has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Eritrea Flag",
@@ -2433,19 +2433,19 @@
"google": null,
"image": "1f1ea-1f1f7.png",
"sheet_x": 1,
- "sheet_y": 48,
+ "sheet_y": 40,
"short_name": "flag-er",
"short_names": ["flag-er"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 78,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1685,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Spain Flag",
@@ -2457,19 +2457,19 @@
"google": "FE4EB",
"image": "1f1ea-1f1f8.png",
"sheet_x": 1,
- "sheet_y": 49,
+ "sheet_y": 41,
"short_name": "es",
"short_names": ["es", "flag-es"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 79,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1686,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Ethiopia Flag",
@@ -2481,19 +2481,19 @@
"google": null,
"image": "1f1ea-1f1f9.png",
"sheet_x": 1,
- "sheet_y": 50,
+ "sheet_y": 42,
"short_name": "flag-et",
"short_names": ["flag-et"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 80,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1687,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "European Union Flag",
@@ -2505,19 +2505,19 @@
"google": null,
"image": "1f1ea-1f1fa.png",
"sheet_x": 1,
- "sheet_y": 51,
+ "sheet_y": 43,
"short_name": "flag-eu",
"short_names": ["flag-eu"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 81,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1688,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Finland Flag",
@@ -2529,19 +2529,19 @@
"google": null,
"image": "1f1eb-1f1ee.png",
"sheet_x": 1,
- "sheet_y": 52,
+ "sheet_y": 44,
"short_name": "flag-fi",
"short_names": ["flag-fi"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 82,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1689,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Fiji Flag",
@@ -2552,20 +2552,20 @@
"softbank": null,
"google": null,
"image": "1f1eb-1f1ef.png",
- "sheet_x": 2,
- "sheet_y": 0,
+ "sheet_x": 1,
+ "sheet_y": 45,
"short_name": "flag-fj",
"short_names": ["flag-fj"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 83,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1690,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Falkland Islands Flag",
@@ -2576,20 +2576,20 @@
"softbank": null,
"google": null,
"image": "1f1eb-1f1f0.png",
- "sheet_x": 2,
- "sheet_y": 1,
+ "sheet_x": 1,
+ "sheet_y": 46,
"short_name": "flag-fk",
"short_names": ["flag-fk"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 84,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1691,
+ "added_in": "2.0",
"has_img_apple": true,
- "has_img_google": false,
+ "has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Micronesia Flag",
@@ -2600,20 +2600,20 @@
"softbank": null,
"google": null,
"image": "1f1eb-1f1f2.png",
- "sheet_x": 2,
- "sheet_y": 2,
+ "sheet_x": 1,
+ "sheet_y": 47,
"short_name": "flag-fm",
"short_names": ["flag-fm"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 85,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1692,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Faroe Islands Flag",
@@ -2624,20 +2624,20 @@
"softbank": null,
"google": null,
"image": "1f1eb-1f1f4.png",
- "sheet_x": 2,
- "sheet_y": 3,
+ "sheet_x": 1,
+ "sheet_y": 48,
"short_name": "flag-fo",
"short_names": ["flag-fo"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 86,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1693,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "France Flag",
@@ -2648,20 +2648,20 @@
"softbank": "E50D",
"google": "FE4E7",
"image": "1f1eb-1f1f7.png",
- "sheet_x": 2,
- "sheet_y": 4,
+ "sheet_x": 1,
+ "sheet_y": 49,
"short_name": "fr",
"short_names": ["fr", "flag-fr"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 87,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1694,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Gabon Flag",
@@ -2672,20 +2672,20 @@
"softbank": null,
"google": null,
"image": "1f1ec-1f1e6.png",
- "sheet_x": 2,
- "sheet_y": 5,
+ "sheet_x": 1,
+ "sheet_y": 50,
"short_name": "flag-ga",
"short_names": ["flag-ga"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 88,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1695,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "United Kingdom Flag",
@@ -2696,20 +2696,20 @@
"softbank": "E510",
"google": "FE4EA",
"image": "1f1ec-1f1e7.png",
- "sheet_x": 2,
- "sheet_y": 6,
+ "sheet_x": 1,
+ "sheet_y": 51,
"short_name": "gb",
"short_names": ["gb", "uk", "flag-gb"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 89,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1696,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Grenada Flag",
@@ -2720,20 +2720,20 @@
"softbank": null,
"google": null,
"image": "1f1ec-1f1e9.png",
- "sheet_x": 2,
- "sheet_y": 7,
+ "sheet_x": 1,
+ "sheet_y": 52,
"short_name": "flag-gd",
"short_names": ["flag-gd"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 90,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1697,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Georgia Flag",
@@ -2744,20 +2744,20 @@
"softbank": null,
"google": null,
"image": "1f1ec-1f1ea.png",
- "sheet_x": 2,
- "sheet_y": 8,
+ "sheet_x": 1,
+ "sheet_y": 53,
"short_name": "flag-ge",
"short_names": ["flag-ge"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 91,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1698,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "French Guiana Flag",
@@ -2768,20 +2768,20 @@
"softbank": null,
"google": null,
"image": "1f1ec-1f1eb.png",
- "sheet_x": 2,
- "sheet_y": 9,
+ "sheet_x": 1,
+ "sheet_y": 54,
"short_name": "flag-gf",
"short_names": ["flag-gf"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 92,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1699,
+ "added_in": "2.0",
"has_img_apple": true,
- "has_img_google": false,
+ "has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Guernsey Flag",
@@ -2792,20 +2792,20 @@
"softbank": null,
"google": null,
"image": "1f1ec-1f1ec.png",
- "sheet_x": 2,
- "sheet_y": 10,
+ "sheet_x": 1,
+ "sheet_y": 55,
"short_name": "flag-gg",
"short_names": ["flag-gg"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 93,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1700,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Ghana Flag",
@@ -2816,20 +2816,20 @@
"softbank": null,
"google": null,
"image": "1f1ec-1f1ed.png",
- "sheet_x": 2,
- "sheet_y": 11,
+ "sheet_x": 1,
+ "sheet_y": 56,
"short_name": "flag-gh",
"short_names": ["flag-gh"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 94,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1701,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Gibraltar Flag",
@@ -2840,20 +2840,20 @@
"softbank": null,
"google": null,
"image": "1f1ec-1f1ee.png",
- "sheet_x": 2,
- "sheet_y": 12,
+ "sheet_x": 1,
+ "sheet_y": 57,
"short_name": "flag-gi",
"short_names": ["flag-gi"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 95,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1702,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Greenland Flag",
@@ -2864,20 +2864,20 @@
"softbank": null,
"google": null,
"image": "1f1ec-1f1f1.png",
- "sheet_x": 2,
- "sheet_y": 13,
+ "sheet_x": 1,
+ "sheet_y": 58,
"short_name": "flag-gl",
"short_names": ["flag-gl"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 96,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1703,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Gambia Flag",
@@ -2888,20 +2888,20 @@
"softbank": null,
"google": null,
"image": "1f1ec-1f1f2.png",
- "sheet_x": 2,
- "sheet_y": 14,
+ "sheet_x": 1,
+ "sheet_y": 59,
"short_name": "flag-gm",
"short_names": ["flag-gm"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 97,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1704,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Guinea Flag",
@@ -2912,20 +2912,20 @@
"softbank": null,
"google": null,
"image": "1f1ec-1f1f3.png",
- "sheet_x": 2,
- "sheet_y": 15,
+ "sheet_x": 1,
+ "sheet_y": 60,
"short_name": "flag-gn",
"short_names": ["flag-gn"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 98,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1705,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Guadeloupe Flag",
@@ -2937,19 +2937,19 @@
"google": null,
"image": "1f1ec-1f1f5.png",
"sheet_x": 2,
- "sheet_y": 16,
+ "sheet_y": 0,
"short_name": "flag-gp",
"short_names": ["flag-gp"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 99,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1706,
+ "added_in": "2.0",
"has_img_apple": true,
- "has_img_google": false,
+ "has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Equatorial Guinea Flag",
@@ -2961,19 +2961,19 @@
"google": null,
"image": "1f1ec-1f1f6.png",
"sheet_x": 2,
- "sheet_y": 17,
+ "sheet_y": 1,
"short_name": "flag-gq",
"short_names": ["flag-gq"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 100,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1707,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Greece Flag",
@@ -2985,19 +2985,19 @@
"google": null,
"image": "1f1ec-1f1f7.png",
"sheet_x": 2,
- "sheet_y": 18,
+ "sheet_y": 2,
"short_name": "flag-gr",
"short_names": ["flag-gr"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 101,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1708,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "South Georgia & South Sandwich Islands Flag",
@@ -3009,19 +3009,19 @@
"google": null,
"image": "1f1ec-1f1f8.png",
"sheet_x": 2,
- "sheet_y": 19,
+ "sheet_y": 3,
"short_name": "flag-gs",
"short_names": ["flag-gs"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 102,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1709,
+ "added_in": "2.0",
"has_img_apple": true,
- "has_img_google": false,
+ "has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Guatemala Flag",
@@ -3033,19 +3033,19 @@
"google": null,
"image": "1f1ec-1f1f9.png",
"sheet_x": 2,
- "sheet_y": 20,
+ "sheet_y": 4,
"short_name": "flag-gt",
"short_names": ["flag-gt"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 103,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1710,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Guam Flag",
@@ -3057,19 +3057,19 @@
"google": null,
"image": "1f1ec-1f1fa.png",
"sheet_x": 2,
- "sheet_y": 21,
+ "sheet_y": 5,
"short_name": "flag-gu",
"short_names": ["flag-gu"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 104,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1711,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Guinea-Bissau Flag",
@@ -3081,19 +3081,19 @@
"google": null,
"image": "1f1ec-1f1fc.png",
"sheet_x": 2,
- "sheet_y": 22,
+ "sheet_y": 6,
"short_name": "flag-gw",
"short_names": ["flag-gw"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 105,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1712,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Guyana Flag",
@@ -3105,19 +3105,19 @@
"google": null,
"image": "1f1ec-1f1fe.png",
"sheet_x": 2,
- "sheet_y": 23,
+ "sheet_y": 7,
"short_name": "flag-gy",
"short_names": ["flag-gy"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 106,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1713,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Hong Kong SAR China Flag",
@@ -3129,19 +3129,19 @@
"google": null,
"image": "1f1ed-1f1f0.png",
"sheet_x": 2,
- "sheet_y": 24,
+ "sheet_y": 8,
"short_name": "flag-hk",
"short_names": ["flag-hk"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 107,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1714,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Heard & McDonald Islands Flag",
@@ -3153,19 +3153,19 @@
"google": null,
"image": "1f1ed-1f1f2.png",
"sheet_x": 2,
- "sheet_y": 25,
+ "sheet_y": 9,
"short_name": "flag-hm",
"short_names": ["flag-hm"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 108,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1715,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Honduras Flag",
@@ -3177,19 +3177,19 @@
"google": null,
"image": "1f1ed-1f1f3.png",
"sheet_x": 2,
- "sheet_y": 26,
+ "sheet_y": 10,
"short_name": "flag-hn",
"short_names": ["flag-hn"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 109,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1716,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Croatia Flag",
@@ -3201,19 +3201,19 @@
"google": null,
"image": "1f1ed-1f1f7.png",
"sheet_x": 2,
- "sheet_y": 27,
+ "sheet_y": 11,
"short_name": "flag-hr",
"short_names": ["flag-hr"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 110,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1717,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Haiti Flag",
@@ -3225,19 +3225,19 @@
"google": null,
"image": "1f1ed-1f1f9.png",
"sheet_x": 2,
- "sheet_y": 28,
+ "sheet_y": 12,
"short_name": "flag-ht",
"short_names": ["flag-ht"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 111,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1718,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Hungary Flag",
@@ -3249,19 +3249,19 @@
"google": null,
"image": "1f1ed-1f1fa.png",
"sheet_x": 2,
- "sheet_y": 29,
+ "sheet_y": 13,
"short_name": "flag-hu",
"short_names": ["flag-hu"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 112,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1719,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Canary Islands Flag",
@@ -3273,19 +3273,19 @@
"google": null,
"image": "1f1ee-1f1e8.png",
"sheet_x": 2,
- "sheet_y": 30,
+ "sheet_y": 14,
"short_name": "flag-ic",
"short_names": ["flag-ic"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 113,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1720,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Indonesia Flag",
@@ -3297,19 +3297,19 @@
"google": null,
"image": "1f1ee-1f1e9.png",
"sheet_x": 2,
- "sheet_y": 31,
+ "sheet_y": 15,
"short_name": "flag-id",
"short_names": ["flag-id"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 114,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1721,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Ireland Flag",
@@ -3321,19 +3321,19 @@
"google": null,
"image": "1f1ee-1f1ea.png",
"sheet_x": 2,
- "sheet_y": 32,
+ "sheet_y": 16,
"short_name": "flag-ie",
"short_names": ["flag-ie"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 115,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1722,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Israel Flag",
@@ -3345,19 +3345,19 @@
"google": null,
"image": "1f1ee-1f1f1.png",
"sheet_x": 2,
- "sheet_y": 33,
+ "sheet_y": 17,
"short_name": "flag-il",
"short_names": ["flag-il"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 116,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1723,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Isle of Man Flag",
@@ -3369,19 +3369,19 @@
"google": null,
"image": "1f1ee-1f1f2.png",
"sheet_x": 2,
- "sheet_y": 34,
+ "sheet_y": 18,
"short_name": "flag-im",
"short_names": ["flag-im"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 117,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1724,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "India Flag",
@@ -3393,19 +3393,19 @@
"google": null,
"image": "1f1ee-1f1f3.png",
"sheet_x": 2,
- "sheet_y": 35,
+ "sheet_y": 19,
"short_name": "flag-in",
"short_names": ["flag-in"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 118,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1725,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "British Indian Ocean Territory Flag",
@@ -3417,19 +3417,19 @@
"google": null,
"image": "1f1ee-1f1f4.png",
"sheet_x": 2,
- "sheet_y": 36,
+ "sheet_y": 20,
"short_name": "flag-io",
"short_names": ["flag-io"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 119,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1726,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Iraq Flag",
@@ -3441,19 +3441,19 @@
"google": null,
"image": "1f1ee-1f1f6.png",
"sheet_x": 2,
- "sheet_y": 37,
+ "sheet_y": 21,
"short_name": "flag-iq",
"short_names": ["flag-iq"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 120,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1727,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Iran Flag",
@@ -3465,19 +3465,19 @@
"google": null,
"image": "1f1ee-1f1f7.png",
"sheet_x": 2,
- "sheet_y": 38,
+ "sheet_y": 22,
"short_name": "flag-ir",
"short_names": ["flag-ir"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 121,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1728,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Iceland Flag",
@@ -3489,19 +3489,19 @@
"google": null,
"image": "1f1ee-1f1f8.png",
"sheet_x": 2,
- "sheet_y": 39,
+ "sheet_y": 23,
"short_name": "flag-is",
"short_names": ["flag-is"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 122,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1729,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Italy Flag",
@@ -3513,19 +3513,19 @@
"google": "FE4E9",
"image": "1f1ee-1f1f9.png",
"sheet_x": 2,
- "sheet_y": 40,
+ "sheet_y": 24,
"short_name": "it",
"short_names": ["it", "flag-it"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 123,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1730,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Jersey Flag",
@@ -3537,19 +3537,19 @@
"google": null,
"image": "1f1ef-1f1ea.png",
"sheet_x": 2,
- "sheet_y": 41,
+ "sheet_y": 25,
"short_name": "flag-je",
"short_names": ["flag-je"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 124,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1731,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Jamaica Flag",
@@ -3561,19 +3561,19 @@
"google": null,
"image": "1f1ef-1f1f2.png",
"sheet_x": 2,
- "sheet_y": 42,
+ "sheet_y": 26,
"short_name": "flag-jm",
"short_names": ["flag-jm"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 125,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1732,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Jordan Flag",
@@ -3585,19 +3585,19 @@
"google": null,
"image": "1f1ef-1f1f4.png",
"sheet_x": 2,
- "sheet_y": 43,
+ "sheet_y": 27,
"short_name": "flag-jo",
"short_names": ["flag-jo"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 126,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1733,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Japan Flag",
@@ -3609,19 +3609,19 @@
"google": "FE4E5",
"image": "1f1ef-1f1f5.png",
"sheet_x": 2,
- "sheet_y": 44,
+ "sheet_y": 28,
"short_name": "jp",
"short_names": ["jp", "flag-jp"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 127,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1734,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Kenya Flag",
@@ -3633,19 +3633,19 @@
"google": null,
"image": "1f1f0-1f1ea.png",
"sheet_x": 2,
- "sheet_y": 45,
+ "sheet_y": 29,
"short_name": "flag-ke",
"short_names": ["flag-ke"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 128,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1735,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Kyrgyzstan Flag",
@@ -3657,19 +3657,19 @@
"google": null,
"image": "1f1f0-1f1ec.png",
"sheet_x": 2,
- "sheet_y": 46,
+ "sheet_y": 30,
"short_name": "flag-kg",
"short_names": ["flag-kg"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 129,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1736,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Cambodia Flag",
@@ -3681,19 +3681,19 @@
"google": null,
"image": "1f1f0-1f1ed.png",
"sheet_x": 2,
- "sheet_y": 47,
+ "sheet_y": 31,
"short_name": "flag-kh",
"short_names": ["flag-kh"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 130,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1737,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Kiribati Flag",
@@ -3705,19 +3705,19 @@
"google": null,
"image": "1f1f0-1f1ee.png",
"sheet_x": 2,
- "sheet_y": 48,
+ "sheet_y": 32,
"short_name": "flag-ki",
"short_names": ["flag-ki"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 131,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1738,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Comoros Flag",
@@ -3729,19 +3729,19 @@
"google": null,
"image": "1f1f0-1f1f2.png",
"sheet_x": 2,
- "sheet_y": 49,
+ "sheet_y": 33,
"short_name": "flag-km",
"short_names": ["flag-km"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 132,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1739,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "St. Kitts & Nevis Flag",
@@ -3753,19 +3753,19 @@
"google": null,
"image": "1f1f0-1f1f3.png",
"sheet_x": 2,
- "sheet_y": 50,
+ "sheet_y": 34,
"short_name": "flag-kn",
"short_names": ["flag-kn"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 133,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1740,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "North Korea Flag",
@@ -3777,19 +3777,19 @@
"google": null,
"image": "1f1f0-1f1f5.png",
"sheet_x": 2,
- "sheet_y": 51,
+ "sheet_y": 35,
"short_name": "flag-kp",
"short_names": ["flag-kp"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 134,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1741,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "South Korea Flag",
@@ -3801,19 +3801,19 @@
"google": "FE4EE",
"image": "1f1f0-1f1f7.png",
"sheet_x": 2,
- "sheet_y": 52,
+ "sheet_y": 36,
"short_name": "kr",
"short_names": ["kr", "flag-kr"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 135,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1742,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Kuwait Flag",
@@ -3824,20 +3824,20 @@
"softbank": null,
"google": null,
"image": "1f1f0-1f1fc.png",
- "sheet_x": 3,
- "sheet_y": 0,
+ "sheet_x": 2,
+ "sheet_y": 37,
"short_name": "flag-kw",
"short_names": ["flag-kw"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 136,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1743,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Cayman Islands Flag",
@@ -3848,20 +3848,20 @@
"softbank": null,
"google": null,
"image": "1f1f0-1f1fe.png",
- "sheet_x": 3,
- "sheet_y": 1,
+ "sheet_x": 2,
+ "sheet_y": 38,
"short_name": "flag-ky",
"short_names": ["flag-ky"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 137,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1744,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Kazakhstan Flag",
@@ -3872,20 +3872,20 @@
"softbank": null,
"google": null,
"image": "1f1f0-1f1ff.png",
- "sheet_x": 3,
- "sheet_y": 2,
+ "sheet_x": 2,
+ "sheet_y": 39,
"short_name": "flag-kz",
"short_names": ["flag-kz"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 138,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1745,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Laos Flag",
@@ -3896,20 +3896,20 @@
"softbank": null,
"google": null,
"image": "1f1f1-1f1e6.png",
- "sheet_x": 3,
- "sheet_y": 3,
+ "sheet_x": 2,
+ "sheet_y": 40,
"short_name": "flag-la",
"short_names": ["flag-la"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 139,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1746,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Lebanon Flag",
@@ -3920,20 +3920,20 @@
"softbank": null,
"google": null,
"image": "1f1f1-1f1e7.png",
- "sheet_x": 3,
- "sheet_y": 4,
+ "sheet_x": 2,
+ "sheet_y": 41,
"short_name": "flag-lb",
"short_names": ["flag-lb"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 140,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1747,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "St. Lucia Flag",
@@ -3944,20 +3944,20 @@
"softbank": null,
"google": null,
"image": "1f1f1-1f1e8.png",
- "sheet_x": 3,
- "sheet_y": 5,
+ "sheet_x": 2,
+ "sheet_y": 42,
"short_name": "flag-lc",
"short_names": ["flag-lc"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 141,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1748,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Liechtenstein Flag",
@@ -3968,20 +3968,20 @@
"softbank": null,
"google": null,
"image": "1f1f1-1f1ee.png",
- "sheet_x": 3,
- "sheet_y": 6,
+ "sheet_x": 2,
+ "sheet_y": 43,
"short_name": "flag-li",
"short_names": ["flag-li"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 142,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1749,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Sri Lanka Flag",
@@ -3992,20 +3992,20 @@
"softbank": null,
"google": null,
"image": "1f1f1-1f1f0.png",
- "sheet_x": 3,
- "sheet_y": 7,
+ "sheet_x": 2,
+ "sheet_y": 44,
"short_name": "flag-lk",
"short_names": ["flag-lk"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 143,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1750,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Liberia Flag",
@@ -4016,20 +4016,20 @@
"softbank": null,
"google": null,
"image": "1f1f1-1f1f7.png",
- "sheet_x": 3,
- "sheet_y": 8,
+ "sheet_x": 2,
+ "sheet_y": 45,
"short_name": "flag-lr",
"short_names": ["flag-lr"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 144,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1751,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Lesotho Flag",
@@ -4040,20 +4040,20 @@
"softbank": null,
"google": null,
"image": "1f1f1-1f1f8.png",
- "sheet_x": 3,
- "sheet_y": 9,
+ "sheet_x": 2,
+ "sheet_y": 46,
"short_name": "flag-ls",
"short_names": ["flag-ls"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 145,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1752,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Lithuania Flag",
@@ -4064,20 +4064,20 @@
"softbank": null,
"google": null,
"image": "1f1f1-1f1f9.png",
- "sheet_x": 3,
- "sheet_y": 10,
+ "sheet_x": 2,
+ "sheet_y": 47,
"short_name": "flag-lt",
"short_names": ["flag-lt"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 146,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1753,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Luxembourg Flag",
@@ -4088,20 +4088,20 @@
"softbank": null,
"google": null,
"image": "1f1f1-1f1fa.png",
- "sheet_x": 3,
- "sheet_y": 11,
+ "sheet_x": 2,
+ "sheet_y": 48,
"short_name": "flag-lu",
"short_names": ["flag-lu"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 147,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1754,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Latvia Flag",
@@ -4112,20 +4112,20 @@
"softbank": null,
"google": null,
"image": "1f1f1-1f1fb.png",
- "sheet_x": 3,
- "sheet_y": 12,
+ "sheet_x": 2,
+ "sheet_y": 49,
"short_name": "flag-lv",
"short_names": ["flag-lv"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 148,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1755,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Libya Flag",
@@ -4136,20 +4136,20 @@
"softbank": null,
"google": null,
"image": "1f1f1-1f1fe.png",
- "sheet_x": 3,
- "sheet_y": 13,
+ "sheet_x": 2,
+ "sheet_y": 50,
"short_name": "flag-ly",
"short_names": ["flag-ly"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 149,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1756,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Morocco Flag",
@@ -4160,20 +4160,20 @@
"softbank": null,
"google": null,
"image": "1f1f2-1f1e6.png",
- "sheet_x": 3,
- "sheet_y": 14,
+ "sheet_x": 2,
+ "sheet_y": 51,
"short_name": "flag-ma",
"short_names": ["flag-ma"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 150,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1757,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Monaco Flag",
@@ -4184,20 +4184,20 @@
"softbank": null,
"google": null,
"image": "1f1f2-1f1e8.png",
- "sheet_x": 3,
- "sheet_y": 15,
+ "sheet_x": 2,
+ "sheet_y": 52,
"short_name": "flag-mc",
"short_names": ["flag-mc"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 151,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1758,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Moldova Flag",
@@ -4208,20 +4208,20 @@
"softbank": null,
"google": null,
"image": "1f1f2-1f1e9.png",
- "sheet_x": 3,
- "sheet_y": 16,
+ "sheet_x": 2,
+ "sheet_y": 53,
"short_name": "flag-md",
"short_names": ["flag-md"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 152,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1759,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Montenegro Flag",
@@ -4232,20 +4232,20 @@
"softbank": null,
"google": null,
"image": "1f1f2-1f1ea.png",
- "sheet_x": 3,
- "sheet_y": 17,
+ "sheet_x": 2,
+ "sheet_y": 54,
"short_name": "flag-me",
"short_names": ["flag-me"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 153,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1760,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "St. Martin Flag",
@@ -4256,20 +4256,20 @@
"softbank": null,
"google": null,
"image": "1f1f2-1f1eb.png",
- "sheet_x": 3,
- "sheet_y": 18,
+ "sheet_x": 2,
+ "sheet_y": 55,
"short_name": "flag-mf",
"short_names": ["flag-mf"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 154,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1761,
+ "added_in": "2.0",
"has_img_apple": true,
- "has_img_google": false,
+ "has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Madagascar Flag",
@@ -4280,20 +4280,20 @@
"softbank": null,
"google": null,
"image": "1f1f2-1f1ec.png",
- "sheet_x": 3,
- "sheet_y": 19,
+ "sheet_x": 2,
+ "sheet_y": 56,
"short_name": "flag-mg",
"short_names": ["flag-mg"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 155,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1762,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Marshall Islands Flag",
@@ -4304,23 +4304,23 @@
"softbank": null,
"google": null,
"image": "1f1f2-1f1ed.png",
- "sheet_x": 3,
- "sheet_y": 20,
+ "sheet_x": 2,
+ "sheet_y": 57,
"short_name": "flag-mh",
"short_names": ["flag-mh"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 156,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1763,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "Macedonia Flag",
+ "name": "North Macedonia Flag",
"unified": "1F1F2-1F1F0",
"non_qualified": null,
"docomo": null,
@@ -4328,20 +4328,20 @@
"softbank": null,
"google": null,
"image": "1f1f2-1f1f0.png",
- "sheet_x": 3,
- "sheet_y": 21,
+ "sheet_x": 2,
+ "sheet_y": 58,
"short_name": "flag-mk",
"short_names": ["flag-mk"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 157,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1764,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Mali Flag",
@@ -4352,20 +4352,20 @@
"softbank": null,
"google": null,
"image": "1f1f2-1f1f1.png",
- "sheet_x": 3,
- "sheet_y": 22,
+ "sheet_x": 2,
+ "sheet_y": 59,
"short_name": "flag-ml",
"short_names": ["flag-ml"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 158,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1765,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Myanmar (Burma) Flag",
@@ -4376,20 +4376,20 @@
"softbank": null,
"google": null,
"image": "1f1f2-1f1f2.png",
- "sheet_x": 3,
- "sheet_y": 23,
+ "sheet_x": 2,
+ "sheet_y": 60,
"short_name": "flag-mm",
"short_names": ["flag-mm"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 159,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1766,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Mongolia Flag",
@@ -4401,22 +4401,22 @@
"google": null,
"image": "1f1f2-1f1f3.png",
"sheet_x": 3,
- "sheet_y": 24,
+ "sheet_y": 0,
"short_name": "flag-mn",
"short_names": ["flag-mn"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 160,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1767,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "Macau SAR China Flag",
+ "name": "Macao SAR China Flag",
"unified": "1F1F2-1F1F4",
"non_qualified": null,
"docomo": null,
@@ -4425,19 +4425,19 @@
"google": null,
"image": "1f1f2-1f1f4.png",
"sheet_x": 3,
- "sheet_y": 25,
+ "sheet_y": 1,
"short_name": "flag-mo",
"short_names": ["flag-mo"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 161,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1768,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Northern Mariana Islands Flag",
@@ -4449,19 +4449,19 @@
"google": null,
"image": "1f1f2-1f1f5.png",
"sheet_x": 3,
- "sheet_y": 26,
+ "sheet_y": 2,
"short_name": "flag-mp",
"short_names": ["flag-mp"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 162,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1769,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Martinique Flag",
@@ -4473,19 +4473,19 @@
"google": null,
"image": "1f1f2-1f1f6.png",
"sheet_x": 3,
- "sheet_y": 27,
+ "sheet_y": 3,
"short_name": "flag-mq",
"short_names": ["flag-mq"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 163,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1770,
+ "added_in": "2.0",
"has_img_apple": true,
- "has_img_google": false,
+ "has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Mauritania Flag",
@@ -4497,19 +4497,19 @@
"google": null,
"image": "1f1f2-1f1f7.png",
"sheet_x": 3,
- "sheet_y": 28,
+ "sheet_y": 4,
"short_name": "flag-mr",
"short_names": ["flag-mr"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 164,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1771,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Montserrat Flag",
@@ -4521,19 +4521,19 @@
"google": null,
"image": "1f1f2-1f1f8.png",
"sheet_x": 3,
- "sheet_y": 29,
+ "sheet_y": 5,
"short_name": "flag-ms",
"short_names": ["flag-ms"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 165,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1772,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Malta Flag",
@@ -4545,19 +4545,19 @@
"google": null,
"image": "1f1f2-1f1f9.png",
"sheet_x": 3,
- "sheet_y": 30,
+ "sheet_y": 6,
"short_name": "flag-mt",
"short_names": ["flag-mt"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 166,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1773,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Mauritius Flag",
@@ -4569,19 +4569,19 @@
"google": null,
"image": "1f1f2-1f1fa.png",
"sheet_x": 3,
- "sheet_y": 31,
+ "sheet_y": 7,
"short_name": "flag-mu",
"short_names": ["flag-mu"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 167,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1774,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Maldives Flag",
@@ -4593,19 +4593,19 @@
"google": null,
"image": "1f1f2-1f1fb.png",
"sheet_x": 3,
- "sheet_y": 32,
+ "sheet_y": 8,
"short_name": "flag-mv",
"short_names": ["flag-mv"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 168,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1775,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Malawi Flag",
@@ -4617,19 +4617,19 @@
"google": null,
"image": "1f1f2-1f1fc.png",
"sheet_x": 3,
- "sheet_y": 33,
+ "sheet_y": 9,
"short_name": "flag-mw",
"short_names": ["flag-mw"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 169,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1776,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Mexico Flag",
@@ -4641,19 +4641,19 @@
"google": null,
"image": "1f1f2-1f1fd.png",
"sheet_x": 3,
- "sheet_y": 34,
+ "sheet_y": 10,
"short_name": "flag-mx",
"short_names": ["flag-mx"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 170,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1777,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Malaysia Flag",
@@ -4665,19 +4665,19 @@
"google": null,
"image": "1f1f2-1f1fe.png",
"sheet_x": 3,
- "sheet_y": 35,
+ "sheet_y": 11,
"short_name": "flag-my",
"short_names": ["flag-my"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 171,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1778,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Mozambique Flag",
@@ -4689,19 +4689,19 @@
"google": null,
"image": "1f1f2-1f1ff.png",
"sheet_x": 3,
- "sheet_y": 36,
+ "sheet_y": 12,
"short_name": "flag-mz",
"short_names": ["flag-mz"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 172,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1779,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Namibia Flag",
@@ -4713,19 +4713,19 @@
"google": null,
"image": "1f1f3-1f1e6.png",
"sheet_x": 3,
- "sheet_y": 37,
+ "sheet_y": 13,
"short_name": "flag-na",
"short_names": ["flag-na"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 173,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1780,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "New Caledonia Flag",
@@ -4737,19 +4737,19 @@
"google": null,
"image": "1f1f3-1f1e8.png",
"sheet_x": 3,
- "sheet_y": 38,
+ "sheet_y": 14,
"short_name": "flag-nc",
"short_names": ["flag-nc"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 174,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1781,
+ "added_in": "2.0",
"has_img_apple": true,
- "has_img_google": false,
+ "has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Niger Flag",
@@ -4761,19 +4761,19 @@
"google": null,
"image": "1f1f3-1f1ea.png",
"sheet_x": 3,
- "sheet_y": 39,
+ "sheet_y": 15,
"short_name": "flag-ne",
"short_names": ["flag-ne"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 175,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1782,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Norfolk Island Flag",
@@ -4785,19 +4785,19 @@
"google": null,
"image": "1f1f3-1f1eb.png",
"sheet_x": 3,
- "sheet_y": 40,
+ "sheet_y": 16,
"short_name": "flag-nf",
"short_names": ["flag-nf"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 176,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1783,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Nigeria Flag",
@@ -4809,19 +4809,19 @@
"google": null,
"image": "1f1f3-1f1ec.png",
"sheet_x": 3,
- "sheet_y": 41,
+ "sheet_y": 17,
"short_name": "flag-ng",
"short_names": ["flag-ng"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 177,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1784,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Nicaragua Flag",
@@ -4833,19 +4833,19 @@
"google": null,
"image": "1f1f3-1f1ee.png",
"sheet_x": 3,
- "sheet_y": 42,
+ "sheet_y": 18,
"short_name": "flag-ni",
"short_names": ["flag-ni"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 178,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1785,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Netherlands Flag",
@@ -4857,19 +4857,19 @@
"google": null,
"image": "1f1f3-1f1f1.png",
"sheet_x": 3,
- "sheet_y": 43,
+ "sheet_y": 19,
"short_name": "flag-nl",
"short_names": ["flag-nl"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 179,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1786,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Norway Flag",
@@ -4881,19 +4881,19 @@
"google": null,
"image": "1f1f3-1f1f4.png",
"sheet_x": 3,
- "sheet_y": 44,
+ "sheet_y": 20,
"short_name": "flag-no",
"short_names": ["flag-no"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 180,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1787,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Nepal Flag",
@@ -4905,19 +4905,19 @@
"google": null,
"image": "1f1f3-1f1f5.png",
"sheet_x": 3,
- "sheet_y": 45,
+ "sheet_y": 21,
"short_name": "flag-np",
"short_names": ["flag-np"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 181,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1788,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Nauru Flag",
@@ -4929,19 +4929,19 @@
"google": null,
"image": "1f1f3-1f1f7.png",
"sheet_x": 3,
- "sheet_y": 46,
+ "sheet_y": 22,
"short_name": "flag-nr",
"short_names": ["flag-nr"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 182,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1789,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Niue Flag",
@@ -4953,19 +4953,19 @@
"google": null,
"image": "1f1f3-1f1fa.png",
"sheet_x": 3,
- "sheet_y": 47,
+ "sheet_y": 23,
"short_name": "flag-nu",
"short_names": ["flag-nu"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 183,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1790,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "New Zealand Flag",
@@ -4977,19 +4977,19 @@
"google": null,
"image": "1f1f3-1f1ff.png",
"sheet_x": 3,
- "sheet_y": 48,
+ "sheet_y": 24,
"short_name": "flag-nz",
"short_names": ["flag-nz"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 184,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1791,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Oman Flag",
@@ -5001,19 +5001,19 @@
"google": null,
"image": "1f1f4-1f1f2.png",
"sheet_x": 3,
- "sheet_y": 49,
+ "sheet_y": 25,
"short_name": "flag-om",
"short_names": ["flag-om"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 185,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1792,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Panama Flag",
@@ -5025,19 +5025,19 @@
"google": null,
"image": "1f1f5-1f1e6.png",
"sheet_x": 3,
- "sheet_y": 50,
+ "sheet_y": 26,
"short_name": "flag-pa",
"short_names": ["flag-pa"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 186,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1793,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Peru Flag",
@@ -5049,19 +5049,19 @@
"google": null,
"image": "1f1f5-1f1ea.png",
"sheet_x": 3,
- "sheet_y": 51,
+ "sheet_y": 27,
"short_name": "flag-pe",
"short_names": ["flag-pe"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 187,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1794,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "French Polynesia Flag",
@@ -5073,19 +5073,19 @@
"google": null,
"image": "1f1f5-1f1eb.png",
"sheet_x": 3,
- "sheet_y": 52,
+ "sheet_y": 28,
"short_name": "flag-pf",
"short_names": ["flag-pf"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 188,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1795,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Papua New Guinea Flag",
@@ -5096,20 +5096,20 @@
"softbank": null,
"google": null,
"image": "1f1f5-1f1ec.png",
- "sheet_x": 4,
- "sheet_y": 0,
+ "sheet_x": 3,
+ "sheet_y": 29,
"short_name": "flag-pg",
"short_names": ["flag-pg"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 189,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1796,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Philippines Flag",
@@ -5120,20 +5120,20 @@
"softbank": null,
"google": null,
"image": "1f1f5-1f1ed.png",
- "sheet_x": 4,
- "sheet_y": 1,
+ "sheet_x": 3,
+ "sheet_y": 30,
"short_name": "flag-ph",
"short_names": ["flag-ph"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 190,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1797,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Pakistan Flag",
@@ -5144,20 +5144,20 @@
"softbank": null,
"google": null,
"image": "1f1f5-1f1f0.png",
- "sheet_x": 4,
- "sheet_y": 2,
+ "sheet_x": 3,
+ "sheet_y": 31,
"short_name": "flag-pk",
"short_names": ["flag-pk"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 191,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1798,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Poland Flag",
@@ -5168,20 +5168,20 @@
"softbank": null,
"google": null,
"image": "1f1f5-1f1f1.png",
- "sheet_x": 4,
- "sheet_y": 3,
+ "sheet_x": 3,
+ "sheet_y": 32,
"short_name": "flag-pl",
"short_names": ["flag-pl"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 192,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1799,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "St. Pierre & Miquelon Flag",
@@ -5192,20 +5192,20 @@
"softbank": null,
"google": null,
"image": "1f1f5-1f1f2.png",
- "sheet_x": 4,
- "sheet_y": 4,
+ "sheet_x": 3,
+ "sheet_y": 33,
"short_name": "flag-pm",
"short_names": ["flag-pm"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 193,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1800,
+ "added_in": "2.0",
"has_img_apple": true,
- "has_img_google": false,
+ "has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Pitcairn Islands Flag",
@@ -5216,20 +5216,20 @@
"softbank": null,
"google": null,
"image": "1f1f5-1f1f3.png",
- "sheet_x": 4,
- "sheet_y": 5,
+ "sheet_x": 3,
+ "sheet_y": 34,
"short_name": "flag-pn",
"short_names": ["flag-pn"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 194,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1801,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Puerto Rico Flag",
@@ -5240,20 +5240,20 @@
"softbank": null,
"google": null,
"image": "1f1f5-1f1f7.png",
- "sheet_x": 4,
- "sheet_y": 6,
+ "sheet_x": 3,
+ "sheet_y": 35,
"short_name": "flag-pr",
"short_names": ["flag-pr"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 195,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1802,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Palestinian Territories Flag",
@@ -5264,20 +5264,20 @@
"softbank": null,
"google": null,
"image": "1f1f5-1f1f8.png",
- "sheet_x": 4,
- "sheet_y": 7,
+ "sheet_x": 3,
+ "sheet_y": 36,
"short_name": "flag-ps",
"short_names": ["flag-ps"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 196,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1803,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Portugal Flag",
@@ -5288,20 +5288,20 @@
"softbank": null,
"google": null,
"image": "1f1f5-1f1f9.png",
- "sheet_x": 4,
- "sheet_y": 8,
+ "sheet_x": 3,
+ "sheet_y": 37,
"short_name": "flag-pt",
"short_names": ["flag-pt"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 197,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1804,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Palau Flag",
@@ -5312,20 +5312,20 @@
"softbank": null,
"google": null,
"image": "1f1f5-1f1fc.png",
- "sheet_x": 4,
- "sheet_y": 9,
+ "sheet_x": 3,
+ "sheet_y": 38,
"short_name": "flag-pw",
"short_names": ["flag-pw"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 198,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1805,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Paraguay Flag",
@@ -5336,20 +5336,20 @@
"softbank": null,
"google": null,
"image": "1f1f5-1f1fe.png",
- "sheet_x": 4,
- "sheet_y": 10,
+ "sheet_x": 3,
+ "sheet_y": 39,
"short_name": "flag-py",
"short_names": ["flag-py"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 199,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1806,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Qatar Flag",
@@ -5360,20 +5360,20 @@
"softbank": null,
"google": null,
"image": "1f1f6-1f1e6.png",
- "sheet_x": 4,
- "sheet_y": 11,
+ "sheet_x": 3,
+ "sheet_y": 40,
"short_name": "flag-qa",
"short_names": ["flag-qa"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 200,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1807,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "R\u00e9union Flag",
@@ -5384,20 +5384,20 @@
"softbank": null,
"google": null,
"image": "1f1f7-1f1ea.png",
- "sheet_x": 4,
- "sheet_y": 12,
+ "sheet_x": 3,
+ "sheet_y": 41,
"short_name": "flag-re",
"short_names": ["flag-re"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 201,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1808,
+ "added_in": "2.0",
"has_img_apple": true,
- "has_img_google": false,
+ "has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Romania Flag",
@@ -5408,20 +5408,20 @@
"softbank": null,
"google": null,
"image": "1f1f7-1f1f4.png",
- "sheet_x": 4,
- "sheet_y": 13,
+ "sheet_x": 3,
+ "sheet_y": 42,
"short_name": "flag-ro",
"short_names": ["flag-ro"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 202,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1809,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Serbia Flag",
@@ -5432,20 +5432,20 @@
"softbank": null,
"google": null,
"image": "1f1f7-1f1f8.png",
- "sheet_x": 4,
- "sheet_y": 14,
+ "sheet_x": 3,
+ "sheet_y": 43,
"short_name": "flag-rs",
"short_names": ["flag-rs"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 203,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1810,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Russia Flag",
@@ -5456,20 +5456,20 @@
"softbank": "E512",
"google": "FE4EC",
"image": "1f1f7-1f1fa.png",
- "sheet_x": 4,
- "sheet_y": 15,
+ "sheet_x": 3,
+ "sheet_y": 44,
"short_name": "ru",
"short_names": ["ru", "flag-ru"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 204,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1811,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Rwanda Flag",
@@ -5480,20 +5480,20 @@
"softbank": null,
"google": null,
"image": "1f1f7-1f1fc.png",
- "sheet_x": 4,
- "sheet_y": 16,
+ "sheet_x": 3,
+ "sheet_y": 45,
"short_name": "flag-rw",
"short_names": ["flag-rw"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 205,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1812,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Saudi Arabia Flag",
@@ -5504,20 +5504,20 @@
"softbank": null,
"google": null,
"image": "1f1f8-1f1e6.png",
- "sheet_x": 4,
- "sheet_y": 17,
+ "sheet_x": 3,
+ "sheet_y": 46,
"short_name": "flag-sa",
"short_names": ["flag-sa"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 206,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1813,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Solomon Islands Flag",
@@ -5528,20 +5528,20 @@
"softbank": null,
"google": null,
"image": "1f1f8-1f1e7.png",
- "sheet_x": 4,
- "sheet_y": 18,
+ "sheet_x": 3,
+ "sheet_y": 47,
"short_name": "flag-sb",
"short_names": ["flag-sb"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 207,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1814,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Seychelles Flag",
@@ -5552,20 +5552,20 @@
"softbank": null,
"google": null,
"image": "1f1f8-1f1e8.png",
- "sheet_x": 4,
- "sheet_y": 19,
+ "sheet_x": 3,
+ "sheet_y": 48,
"short_name": "flag-sc",
"short_names": ["flag-sc"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 208,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1815,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Sudan Flag",
@@ -5576,20 +5576,20 @@
"softbank": null,
"google": null,
"image": "1f1f8-1f1e9.png",
- "sheet_x": 4,
- "sheet_y": 20,
+ "sheet_x": 3,
+ "sheet_y": 49,
"short_name": "flag-sd",
"short_names": ["flag-sd"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 209,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1816,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Sweden Flag",
@@ -5600,20 +5600,20 @@
"softbank": null,
"google": null,
"image": "1f1f8-1f1ea.png",
- "sheet_x": 4,
- "sheet_y": 21,
+ "sheet_x": 3,
+ "sheet_y": 50,
"short_name": "flag-se",
"short_names": ["flag-se"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 210,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1817,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Singapore Flag",
@@ -5624,20 +5624,20 @@
"softbank": null,
"google": null,
"image": "1f1f8-1f1ec.png",
- "sheet_x": 4,
- "sheet_y": 22,
+ "sheet_x": 3,
+ "sheet_y": 51,
"short_name": "flag-sg",
"short_names": ["flag-sg"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 211,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1818,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "St. Helena Flag",
@@ -5648,20 +5648,20 @@
"softbank": null,
"google": null,
"image": "1f1f8-1f1ed.png",
- "sheet_x": 4,
- "sheet_y": 23,
+ "sheet_x": 3,
+ "sheet_y": 52,
"short_name": "flag-sh",
"short_names": ["flag-sh"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 212,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1819,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Slovenia Flag",
@@ -5672,20 +5672,20 @@
"softbank": null,
"google": null,
"image": "1f1f8-1f1ee.png",
- "sheet_x": 4,
- "sheet_y": 24,
+ "sheet_x": 3,
+ "sheet_y": 53,
"short_name": "flag-si",
"short_names": ["flag-si"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 213,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1820,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Svalbard & Jan Mayen Flag",
@@ -5696,20 +5696,20 @@
"softbank": null,
"google": null,
"image": "1f1f8-1f1ef.png",
- "sheet_x": 4,
- "sheet_y": 25,
+ "sheet_x": 3,
+ "sheet_y": 54,
"short_name": "flag-sj",
"short_names": ["flag-sj"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 214,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1821,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Slovakia Flag",
@@ -5720,20 +5720,20 @@
"softbank": null,
"google": null,
"image": "1f1f8-1f1f0.png",
- "sheet_x": 4,
- "sheet_y": 26,
+ "sheet_x": 3,
+ "sheet_y": 55,
"short_name": "flag-sk",
"short_names": ["flag-sk"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 215,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1822,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Sierra Leone Flag",
@@ -5744,20 +5744,20 @@
"softbank": null,
"google": null,
"image": "1f1f8-1f1f1.png",
- "sheet_x": 4,
- "sheet_y": 27,
+ "sheet_x": 3,
+ "sheet_y": 56,
"short_name": "flag-sl",
"short_names": ["flag-sl"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 216,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1823,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "San Marino Flag",
@@ -5768,20 +5768,20 @@
"softbank": null,
"google": null,
"image": "1f1f8-1f1f2.png",
- "sheet_x": 4,
- "sheet_y": 28,
+ "sheet_x": 3,
+ "sheet_y": 57,
"short_name": "flag-sm",
"short_names": ["flag-sm"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 217,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1824,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Senegal Flag",
@@ -5792,20 +5792,20 @@
"softbank": null,
"google": null,
"image": "1f1f8-1f1f3.png",
- "sheet_x": 4,
- "sheet_y": 29,
+ "sheet_x": 3,
+ "sheet_y": 58,
"short_name": "flag-sn",
"short_names": ["flag-sn"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 218,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1825,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Somalia Flag",
@@ -5816,20 +5816,20 @@
"softbank": null,
"google": null,
"image": "1f1f8-1f1f4.png",
- "sheet_x": 4,
- "sheet_y": 30,
+ "sheet_x": 3,
+ "sheet_y": 59,
"short_name": "flag-so",
"short_names": ["flag-so"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 219,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1826,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Suriname Flag",
@@ -5840,20 +5840,20 @@
"softbank": null,
"google": null,
"image": "1f1f8-1f1f7.png",
- "sheet_x": 4,
- "sheet_y": 31,
+ "sheet_x": 3,
+ "sheet_y": 60,
"short_name": "flag-sr",
"short_names": ["flag-sr"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 220,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1827,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "South Sudan Flag",
@@ -5865,19 +5865,19 @@
"google": null,
"image": "1f1f8-1f1f8.png",
"sheet_x": 4,
- "sheet_y": 32,
+ "sheet_y": 0,
"short_name": "flag-ss",
"short_names": ["flag-ss"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 221,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1828,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "S\u00e3o Tom\u00e9 & Pr\u00edncipe Flag",
@@ -5889,19 +5889,19 @@
"google": null,
"image": "1f1f8-1f1f9.png",
"sheet_x": 4,
- "sheet_y": 33,
+ "sheet_y": 1,
"short_name": "flag-st",
"short_names": ["flag-st"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 222,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1829,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "El Salvador Flag",
@@ -5913,19 +5913,19 @@
"google": null,
"image": "1f1f8-1f1fb.png",
"sheet_x": 4,
- "sheet_y": 34,
+ "sheet_y": 2,
"short_name": "flag-sv",
"short_names": ["flag-sv"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 223,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1830,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Sint Maarten Flag",
@@ -5937,19 +5937,19 @@
"google": null,
"image": "1f1f8-1f1fd.png",
"sheet_x": 4,
- "sheet_y": 35,
+ "sheet_y": 3,
"short_name": "flag-sx",
"short_names": ["flag-sx"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 224,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1831,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Syria Flag",
@@ -5961,22 +5961,22 @@
"google": null,
"image": "1f1f8-1f1fe.png",
"sheet_x": 4,
- "sheet_y": 36,
+ "sheet_y": 4,
"short_name": "flag-sy",
"short_names": ["flag-sy"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 225,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1832,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "Swaziland Flag",
+ "name": "Eswatini Flag",
"unified": "1F1F8-1F1FF",
"non_qualified": null,
"docomo": null,
@@ -5985,19 +5985,19 @@
"google": null,
"image": "1f1f8-1f1ff.png",
"sheet_x": 4,
- "sheet_y": 37,
+ "sheet_y": 5,
"short_name": "flag-sz",
"short_names": ["flag-sz"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 226,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1833,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Tristan da Cunha Flag",
@@ -6009,19 +6009,19 @@
"google": null,
"image": "1f1f9-1f1e6.png",
"sheet_x": 4,
- "sheet_y": 38,
+ "sheet_y": 6,
"short_name": "flag-ta",
"short_names": ["flag-ta"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 227,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1834,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Turks & Caicos Islands Flag",
@@ -6033,19 +6033,19 @@
"google": null,
"image": "1f1f9-1f1e8.png",
"sheet_x": 4,
- "sheet_y": 39,
+ "sheet_y": 7,
"short_name": "flag-tc",
"short_names": ["flag-tc"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 228,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1835,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Chad Flag",
@@ -6057,19 +6057,19 @@
"google": null,
"image": "1f1f9-1f1e9.png",
"sheet_x": 4,
- "sheet_y": 40,
+ "sheet_y": 8,
"short_name": "flag-td",
"short_names": ["flag-td"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 229,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1836,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "French Southern Territories Flag",
@@ -6081,19 +6081,19 @@
"google": null,
"image": "1f1f9-1f1eb.png",
"sheet_x": 4,
- "sheet_y": 41,
+ "sheet_y": 9,
"short_name": "flag-tf",
"short_names": ["flag-tf"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 230,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1837,
+ "added_in": "2.0",
"has_img_apple": true,
- "has_img_google": false,
+ "has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Togo Flag",
@@ -6105,19 +6105,19 @@
"google": null,
"image": "1f1f9-1f1ec.png",
"sheet_x": 4,
- "sheet_y": 42,
+ "sheet_y": 10,
"short_name": "flag-tg",
"short_names": ["flag-tg"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 231,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1838,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Thailand Flag",
@@ -6129,19 +6129,19 @@
"google": null,
"image": "1f1f9-1f1ed.png",
"sheet_x": 4,
- "sheet_y": 43,
+ "sheet_y": 11,
"short_name": "flag-th",
"short_names": ["flag-th"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 232,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1839,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Tajikistan Flag",
@@ -6153,19 +6153,19 @@
"google": null,
"image": "1f1f9-1f1ef.png",
"sheet_x": 4,
- "sheet_y": 44,
+ "sheet_y": 12,
"short_name": "flag-tj",
"short_names": ["flag-tj"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 233,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1840,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Tokelau Flag",
@@ -6177,19 +6177,19 @@
"google": null,
"image": "1f1f9-1f1f0.png",
"sheet_x": 4,
- "sheet_y": 45,
+ "sheet_y": 13,
"short_name": "flag-tk",
"short_names": ["flag-tk"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 234,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1841,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Timor-Leste Flag",
@@ -6201,19 +6201,19 @@
"google": null,
"image": "1f1f9-1f1f1.png",
"sheet_x": 4,
- "sheet_y": 46,
+ "sheet_y": 14,
"short_name": "flag-tl",
"short_names": ["flag-tl"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 235,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1842,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Turkmenistan Flag",
@@ -6225,19 +6225,19 @@
"google": null,
"image": "1f1f9-1f1f2.png",
"sheet_x": 4,
- "sheet_y": 47,
+ "sheet_y": 15,
"short_name": "flag-tm",
"short_names": ["flag-tm"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 236,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1843,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Tunisia Flag",
@@ -6249,19 +6249,19 @@
"google": null,
"image": "1f1f9-1f1f3.png",
"sheet_x": 4,
- "sheet_y": 48,
+ "sheet_y": 16,
"short_name": "flag-tn",
"short_names": ["flag-tn"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 237,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1844,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Tonga Flag",
@@ -6273,19 +6273,19 @@
"google": null,
"image": "1f1f9-1f1f4.png",
"sheet_x": 4,
- "sheet_y": 49,
+ "sheet_y": 17,
"short_name": "flag-to",
"short_names": ["flag-to"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 238,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1845,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Turkey Flag",
@@ -6297,19 +6297,19 @@
"google": null,
"image": "1f1f9-1f1f7.png",
"sheet_x": 4,
- "sheet_y": 50,
+ "sheet_y": 18,
"short_name": "flag-tr",
"short_names": ["flag-tr"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 239,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1846,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Trinidad & Tobago Flag",
@@ -6321,19 +6321,19 @@
"google": null,
"image": "1f1f9-1f1f9.png",
"sheet_x": 4,
- "sheet_y": 51,
+ "sheet_y": 19,
"short_name": "flag-tt",
"short_names": ["flag-tt"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 240,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1847,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Tuvalu Flag",
@@ -6345,19 +6345,19 @@
"google": null,
"image": "1f1f9-1f1fb.png",
"sheet_x": 4,
- "sheet_y": 52,
+ "sheet_y": 20,
"short_name": "flag-tv",
"short_names": ["flag-tv"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 241,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1848,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Taiwan Flag",
@@ -6368,20 +6368,20 @@
"softbank": null,
"google": null,
"image": "1f1f9-1f1fc.png",
- "sheet_x": 5,
- "sheet_y": 0,
+ "sheet_x": 4,
+ "sheet_y": 21,
"short_name": "flag-tw",
"short_names": ["flag-tw"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 242,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1849,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Tanzania Flag",
@@ -6392,20 +6392,20 @@
"softbank": null,
"google": null,
"image": "1f1f9-1f1ff.png",
- "sheet_x": 5,
- "sheet_y": 1,
+ "sheet_x": 4,
+ "sheet_y": 22,
"short_name": "flag-tz",
"short_names": ["flag-tz"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 243,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1850,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Ukraine Flag",
@@ -6416,20 +6416,20 @@
"softbank": null,
"google": null,
"image": "1f1fa-1f1e6.png",
- "sheet_x": 5,
- "sheet_y": 2,
+ "sheet_x": 4,
+ "sheet_y": 23,
"short_name": "flag-ua",
"short_names": ["flag-ua"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 244,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1851,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Uganda Flag",
@@ -6440,20 +6440,20 @@
"softbank": null,
"google": null,
"image": "1f1fa-1f1ec.png",
- "sheet_x": 5,
- "sheet_y": 3,
+ "sheet_x": 4,
+ "sheet_y": 24,
"short_name": "flag-ug",
"short_names": ["flag-ug"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 245,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1852,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "U.S. Outlying Islands Flag",
@@ -6464,20 +6464,20 @@
"softbank": null,
"google": null,
"image": "1f1fa-1f1f2.png",
- "sheet_x": 5,
- "sheet_y": 4,
+ "sheet_x": 4,
+ "sheet_y": 25,
"short_name": "flag-um",
"short_names": ["flag-um"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 246,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1853,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "United Nations Flag",
@@ -6488,20 +6488,20 @@
"softbank": null,
"google": null,
"image": "1f1fa-1f1f3.png",
- "sheet_x": 5,
- "sheet_y": 5,
+ "sheet_x": 4,
+ "sheet_y": 26,
"short_name": "flag-un",
"short_names": ["flag-un"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 247,
- "added_in": "6.0",
- "has_img_apple": false,
+ "subcategory": "country-flag",
+ "sort_order": 1854,
+ "added_in": "4.0",
+ "has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
"name": "United States Flag",
@@ -6512,20 +6512,20 @@
"softbank": "E50C",
"google": "FE4E6",
"image": "1f1fa-1f1f8.png",
- "sheet_x": 5,
- "sheet_y": 6,
+ "sheet_x": 4,
+ "sheet_y": 27,
"short_name": "us",
"short_names": ["us", "flag-us"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 248,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1855,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Uruguay Flag",
@@ -6536,20 +6536,20 @@
"softbank": null,
"google": null,
"image": "1f1fa-1f1fe.png",
- "sheet_x": 5,
- "sheet_y": 7,
+ "sheet_x": 4,
+ "sheet_y": 28,
"short_name": "flag-uy",
"short_names": ["flag-uy"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 249,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1856,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Uzbekistan Flag",
@@ -6560,20 +6560,20 @@
"softbank": null,
"google": null,
"image": "1f1fa-1f1ff.png",
- "sheet_x": 5,
- "sheet_y": 8,
+ "sheet_x": 4,
+ "sheet_y": 29,
"short_name": "flag-uz",
"short_names": ["flag-uz"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 250,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1857,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Vatican City Flag",
@@ -6584,20 +6584,20 @@
"softbank": null,
"google": null,
"image": "1f1fb-1f1e6.png",
- "sheet_x": 5,
- "sheet_y": 9,
+ "sheet_x": 4,
+ "sheet_y": 30,
"short_name": "flag-va",
"short_names": ["flag-va"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 251,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1858,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "St. Vincent & Grenadines Flag",
@@ -6608,20 +6608,20 @@
"softbank": null,
"google": null,
"image": "1f1fb-1f1e8.png",
- "sheet_x": 5,
- "sheet_y": 10,
+ "sheet_x": 4,
+ "sheet_y": 31,
"short_name": "flag-vc",
"short_names": ["flag-vc"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 252,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1859,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Venezuela Flag",
@@ -6632,20 +6632,20 @@
"softbank": null,
"google": null,
"image": "1f1fb-1f1ea.png",
- "sheet_x": 5,
- "sheet_y": 11,
+ "sheet_x": 4,
+ "sheet_y": 32,
"short_name": "flag-ve",
"short_names": ["flag-ve"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 253,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1860,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "British Virgin Islands Flag",
@@ -6656,20 +6656,20 @@
"softbank": null,
"google": null,
"image": "1f1fb-1f1ec.png",
- "sheet_x": 5,
- "sheet_y": 12,
+ "sheet_x": 4,
+ "sheet_y": 33,
"short_name": "flag-vg",
"short_names": ["flag-vg"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 254,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1861,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "U.S. Virgin Islands Flag",
@@ -6680,20 +6680,20 @@
"softbank": null,
"google": null,
"image": "1f1fb-1f1ee.png",
- "sheet_x": 5,
- "sheet_y": 13,
+ "sheet_x": 4,
+ "sheet_y": 34,
"short_name": "flag-vi",
"short_names": ["flag-vi"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 255,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1862,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Vietnam Flag",
@@ -6704,20 +6704,20 @@
"softbank": null,
"google": null,
"image": "1f1fb-1f1f3.png",
- "sheet_x": 5,
- "sheet_y": 14,
+ "sheet_x": 4,
+ "sheet_y": 35,
"short_name": "flag-vn",
"short_names": ["flag-vn"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 256,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1863,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Vanuatu Flag",
@@ -6728,20 +6728,20 @@
"softbank": null,
"google": null,
"image": "1f1fb-1f1fa.png",
- "sheet_x": 5,
- "sheet_y": 15,
+ "sheet_x": 4,
+ "sheet_y": 36,
"short_name": "flag-vu",
"short_names": ["flag-vu"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 257,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1864,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Wallis & Futuna Flag",
@@ -6752,20 +6752,20 @@
"softbank": null,
"google": null,
"image": "1f1fc-1f1eb.png",
- "sheet_x": 5,
- "sheet_y": 16,
+ "sheet_x": 4,
+ "sheet_y": 37,
"short_name": "flag-wf",
"short_names": ["flag-wf"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 258,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1865,
+ "added_in": "2.0",
"has_img_apple": true,
- "has_img_google": false,
+ "has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Samoa Flag",
@@ -6776,20 +6776,20 @@
"softbank": null,
"google": null,
"image": "1f1fc-1f1f8.png",
- "sheet_x": 5,
- "sheet_y": 17,
+ "sheet_x": 4,
+ "sheet_y": 38,
"short_name": "flag-ws",
"short_names": ["flag-ws"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 259,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1866,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Kosovo Flag",
@@ -6800,20 +6800,20 @@
"softbank": null,
"google": null,
"image": "1f1fd-1f1f0.png",
- "sheet_x": 5,
- "sheet_y": 18,
+ "sheet_x": 4,
+ "sheet_y": 39,
"short_name": "flag-xk",
"short_names": ["flag-xk"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 260,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1867,
+ "added_in": "2.0",
"has_img_apple": true,
- "has_img_google": false,
+ "has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Yemen Flag",
@@ -6824,20 +6824,20 @@
"softbank": null,
"google": null,
"image": "1f1fe-1f1ea.png",
- "sheet_x": 5,
- "sheet_y": 19,
+ "sheet_x": 4,
+ "sheet_y": 40,
"short_name": "flag-ye",
"short_names": ["flag-ye"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 261,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1868,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Mayotte Flag",
@@ -6848,20 +6848,20 @@
"softbank": null,
"google": null,
"image": "1f1fe-1f1f9.png",
- "sheet_x": 5,
- "sheet_y": 20,
+ "sheet_x": 4,
+ "sheet_y": 41,
"short_name": "flag-yt",
"short_names": ["flag-yt"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 262,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1869,
+ "added_in": "2.0",
"has_img_apple": true,
- "has_img_google": false,
+ "has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "South Africa Flag",
@@ -6872,20 +6872,20 @@
"softbank": null,
"google": null,
"image": "1f1ff-1f1e6.png",
- "sheet_x": 5,
- "sheet_y": 21,
+ "sheet_x": 4,
+ "sheet_y": 42,
"short_name": "flag-za",
"short_names": ["flag-za"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 263,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1870,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Zambia Flag",
@@ -6896,20 +6896,20 @@
"softbank": null,
"google": null,
"image": "1f1ff-1f1f2.png",
- "sheet_x": 5,
- "sheet_y": 22,
+ "sheet_x": 4,
+ "sheet_y": 43,
"short_name": "flag-zm",
"short_names": ["flag-zm"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 264,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1871,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "Zimbabwe Flag",
@@ -6920,20 +6920,20 @@
"softbank": null,
"google": null,
"image": "1f1ff-1f1fc.png",
- "sheet_x": 5,
- "sheet_y": 23,
+ "sheet_x": 4,
+ "sheet_y": 44,
"short_name": "flag-zw",
"short_names": ["flag-zw"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 265,
- "added_in": "6.0",
+ "subcategory": "country-flag",
+ "sort_order": 1872,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "SQUARED KATAKANA KOKO",
@@ -6944,20 +6944,20 @@
"softbank": "E203",
"google": "FEB24",
"image": "1f201.png",
- "sheet_x": 5,
- "sheet_y": 24,
+ "sheet_x": 4,
+ "sheet_y": 45,
"short_name": "koko",
"short_names": ["koko"],
"text": null,
"texts": null,
"category": "Symbols",
- "sort_order": 168,
- "added_in": "6.0",
+ "subcategory": "alphanum",
+ "sort_order": 1556,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "SQUARED KATAKANA SA",
@@ -6968,20 +6968,20 @@
"softbank": "E228",
"google": "FEB3F",
"image": "1f202-fe0f.png",
- "sheet_x": 5,
- "sheet_y": 25,
+ "sheet_x": 4,
+ "sheet_y": 46,
"short_name": "sa",
"short_names": ["sa"],
"text": null,
"texts": null,
"category": "Symbols",
- "sort_order": 169,
- "added_in": "6.0",
+ "subcategory": "alphanum",
+ "sort_order": 1557,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "SQUARED CJK UNIFIED IDEOGRAPH-7121",
@@ -6992,20 +6992,20 @@
"softbank": "E216",
"google": "FEB3A",
"image": "1f21a.png",
- "sheet_x": 5,
- "sheet_y": 26,
+ "sheet_x": 4,
+ "sheet_y": 47,
"short_name": "u7121",
"short_names": ["u7121"],
"text": null,
"texts": null,
"category": "Symbols",
- "sort_order": 175,
- "added_in": "5.2",
+ "subcategory": "alphanum",
+ "sort_order": 1563,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "SQUARED CJK UNIFIED IDEOGRAPH-6307",
@@ -7016,20 +7016,20 @@
"softbank": "E22C",
"google": "FEB40",
"image": "1f22f.png",
- "sheet_x": 5,
- "sheet_y": 27,
+ "sheet_x": 4,
+ "sheet_y": 48,
"short_name": "u6307",
"short_names": ["u6307"],
"text": null,
"texts": null,
"category": "Symbols",
- "sort_order": 172,
- "added_in": "5.2",
+ "subcategory": "alphanum",
+ "sort_order": 1560,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "SQUARED CJK UNIFIED IDEOGRAPH-7981",
@@ -7040,20 +7040,20 @@
"softbank": null,
"google": "FEB2E",
"image": "1f232.png",
- "sheet_x": 5,
- "sheet_y": 28,
+ "sheet_x": 4,
+ "sheet_y": 49,
"short_name": "u7981",
"short_names": ["u7981"],
"text": null,
"texts": null,
"category": "Symbols",
- "sort_order": 176,
- "added_in": "6.0",
+ "subcategory": "alphanum",
+ "sort_order": 1564,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "SQUARED CJK UNIFIED IDEOGRAPH-7A7A",
@@ -7064,20 +7064,20 @@
"softbank": "E22B",
"google": "FEB2F",
"image": "1f233.png",
- "sheet_x": 5,
- "sheet_y": 29,
+ "sheet_x": 4,
+ "sheet_y": 50,
"short_name": "u7a7a",
"short_names": ["u7a7a"],
"text": null,
"texts": null,
"category": "Symbols",
- "sort_order": 180,
- "added_in": "6.0",
+ "subcategory": "alphanum",
+ "sort_order": 1568,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "SQUARED CJK UNIFIED IDEOGRAPH-5408",
@@ -7088,20 +7088,20 @@
"softbank": null,
"google": "FEB30",
"image": "1f234.png",
- "sheet_x": 5,
- "sheet_y": 30,
+ "sheet_x": 4,
+ "sheet_y": 51,
"short_name": "u5408",
"short_names": ["u5408"],
"text": null,
"texts": null,
"category": "Symbols",
- "sort_order": 179,
- "added_in": "6.0",
+ "subcategory": "alphanum",
+ "sort_order": 1567,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "SQUARED CJK UNIFIED IDEOGRAPH-6E80",
@@ -7112,20 +7112,20 @@
"softbank": "E22A",
"google": "FEB31",
"image": "1f235.png",
- "sheet_x": 5,
- "sheet_y": 31,
+ "sheet_x": 4,
+ "sheet_y": 52,
"short_name": "u6e80",
"short_names": ["u6e80"],
"text": null,
"texts": null,
"category": "Symbols",
- "sort_order": 184,
- "added_in": "6.0",
+ "subcategory": "alphanum",
+ "sort_order": 1572,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "SQUARED CJK UNIFIED IDEOGRAPH-6709",
@@ -7136,20 +7136,20 @@
"softbank": "E215",
"google": "FEB39",
"image": "1f236.png",
- "sheet_x": 5,
- "sheet_y": 32,
+ "sheet_x": 4,
+ "sheet_y": 53,
"short_name": "u6709",
"short_names": ["u6709"],
"text": null,
"texts": null,
"category": "Symbols",
- "sort_order": 171,
- "added_in": "6.0",
+ "subcategory": "alphanum",
+ "sort_order": 1559,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "SQUARED CJK UNIFIED IDEOGRAPH-6708",
@@ -7160,20 +7160,20 @@
"softbank": "E217",
"google": "FEB3B",
"image": "1f237-fe0f.png",
- "sheet_x": 5,
- "sheet_y": 33,
+ "sheet_x": 4,
+ "sheet_y": 54,
"short_name": "u6708",
"short_names": ["u6708"],
"text": null,
"texts": null,
"category": "Symbols",
- "sort_order": 170,
- "added_in": "6.0",
+ "subcategory": "alphanum",
+ "sort_order": 1558,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "SQUARED CJK UNIFIED IDEOGRAPH-7533",
@@ -7184,20 +7184,20 @@
"softbank": "E218",
"google": "FEB3C",
"image": "1f238.png",
- "sheet_x": 5,
- "sheet_y": 34,
+ "sheet_x": 4,
+ "sheet_y": 55,
"short_name": "u7533",
"short_names": ["u7533"],
"text": null,
"texts": null,
"category": "Symbols",
- "sort_order": 178,
- "added_in": "6.0",
+ "subcategory": "alphanum",
+ "sort_order": 1566,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "SQUARED CJK UNIFIED IDEOGRAPH-5272",
@@ -7208,20 +7208,20 @@
"softbank": "E227",
"google": "FEB3E",
"image": "1f239.png",
- "sheet_x": 5,
- "sheet_y": 35,
+ "sheet_x": 4,
+ "sheet_y": 56,
"short_name": "u5272",
"short_names": ["u5272"],
"text": null,
"texts": null,
"category": "Symbols",
- "sort_order": 174,
- "added_in": "6.0",
+ "subcategory": "alphanum",
+ "sort_order": 1562,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "SQUARED CJK UNIFIED IDEOGRAPH-55B6",
@@ -7232,20 +7232,20 @@
"softbank": "E22D",
"google": "FEB41",
"image": "1f23a.png",
- "sheet_x": 5,
- "sheet_y": 36,
+ "sheet_x": 4,
+ "sheet_y": 57,
"short_name": "u55b6",
"short_names": ["u55b6"],
"text": null,
"texts": null,
"category": "Symbols",
- "sort_order": 183,
- "added_in": "6.0",
+ "subcategory": "alphanum",
+ "sort_order": 1571,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "CIRCLED IDEOGRAPH ADVANTAGE",
@@ -7256,20 +7256,20 @@
"softbank": "E226",
"google": "FEB3D",
"image": "1f250.png",
- "sheet_x": 5,
- "sheet_y": 37,
+ "sheet_x": 4,
+ "sheet_y": 58,
"short_name": "ideograph_advantage",
"short_names": ["ideograph_advantage"],
"text": null,
"texts": null,
"category": "Symbols",
- "sort_order": 173,
- "added_in": "6.0",
+ "subcategory": "alphanum",
+ "sort_order": 1561,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "CIRCLED IDEOGRAPH ACCEPT",
@@ -7280,20 +7280,20 @@
"softbank": null,
"google": "FEB50",
"image": "1f251.png",
- "sheet_x": 5,
- "sheet_y": 38,
+ "sheet_x": 4,
+ "sheet_y": 59,
"short_name": "accept",
"short_names": ["accept"],
"text": null,
"texts": null,
"category": "Symbols",
- "sort_order": 177,
- "added_in": "6.0",
+ "subcategory": "alphanum",
+ "sort_order": 1565,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "CYCLONE",
@@ -7304,20 +7304,20 @@
"softbank": "E443",
"google": "FE005",
"image": "1f300.png",
- "sheet_x": 5,
- "sheet_y": 39,
+ "sheet_x": 4,
+ "sheet_y": 60,
"short_name": "cyclone",
"short_names": ["cyclone"],
"text": null,
"texts": null,
"category": "Travel & Places",
- "sort_order": 189,
- "added_in": "6.0",
+ "subcategory": "sky & weather",
+ "sort_order": 1024,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "FOGGY",
@@ -7329,19 +7329,19 @@
"google": "FE006",
"image": "1f301.png",
"sheet_x": 5,
- "sheet_y": 40,
+ "sheet_y": 0,
"short_name": "foggy",
"short_names": ["foggy"],
"text": null,
"texts": null,
"category": "Travel & Places",
- "sort_order": 48,
- "added_in": "6.0",
+ "subcategory": "place-other",
+ "sort_order": 871,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "CLOSED UMBRELLA",
@@ -7353,19 +7353,19 @@
"google": "FE007",
"image": "1f302.png",
"sheet_x": 5,
- "sheet_y": 41,
+ "sheet_y": 1,
"short_name": "closed_umbrella",
"short_names": ["closed_umbrella"],
"text": null,
"texts": null,
"category": "Travel & Places",
- "sort_order": 191,
- "added_in": "6.0",
+ "subcategory": "sky & weather",
+ "sort_order": 1026,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "NIGHT WITH STARS",
@@ -7377,19 +7377,19 @@
"google": "FE008",
"image": "1f303.png",
"sheet_x": 5,
- "sheet_y": 42,
+ "sheet_y": 2,
"short_name": "night_with_stars",
"short_names": ["night_with_stars"],
"text": null,
"texts": null,
"category": "Travel & Places",
- "sort_order": 49,
- "added_in": "6.0",
+ "subcategory": "place-other",
+ "sort_order": 872,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "SUNRISE OVER MOUNTAINS",
@@ -7401,19 +7401,19 @@
"google": "FE009",
"image": "1f304.png",
"sheet_x": 5,
- "sheet_y": 43,
+ "sheet_y": 3,
"short_name": "sunrise_over_mountains",
"short_names": ["sunrise_over_mountains"],
"text": null,
"texts": null,
"category": "Travel & Places",
- "sort_order": 51,
- "added_in": "6.0",
+ "subcategory": "place-other",
+ "sort_order": 874,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "SUNRISE",
@@ -7425,19 +7425,19 @@
"google": "FE00A",
"image": "1f305.png",
"sheet_x": 5,
- "sheet_y": 44,
+ "sheet_y": 4,
"short_name": "sunrise",
"short_names": ["sunrise"],
"text": null,
"texts": null,
"category": "Travel & Places",
- "sort_order": 52,
- "added_in": "6.0",
+ "subcategory": "place-other",
+ "sort_order": 875,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "CITYSCAPE AT DUSK",
@@ -7449,19 +7449,19 @@
"google": "FE00B",
"image": "1f306.png",
"sheet_x": 5,
- "sheet_y": 45,
+ "sheet_y": 5,
"short_name": "city_sunset",
"short_names": ["city_sunset"],
"text": null,
"texts": null,
"category": "Travel & Places",
- "sort_order": 53,
- "added_in": "6.0",
+ "subcategory": "place-other",
+ "sort_order": 876,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "SUNSET OVER BUILDINGS",
@@ -7473,19 +7473,19 @@
"google": "FE00C",
"image": "1f307.png",
"sheet_x": 5,
- "sheet_y": 46,
+ "sheet_y": 6,
"short_name": "city_sunrise",
"short_names": ["city_sunrise"],
"text": null,
"texts": null,
"category": "Travel & Places",
- "sort_order": 54,
- "added_in": "6.0",
+ "subcategory": "place-other",
+ "sort_order": 877,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "RAINBOW",
@@ -7497,19 +7497,19 @@
"google": "FE00D",
"image": "1f308.png",
"sheet_x": 5,
- "sheet_y": 47,
+ "sheet_y": 7,
"short_name": "rainbow",
"short_names": ["rainbow"],
"text": null,
"texts": null,
"category": "Travel & Places",
- "sort_order": 190,
- "added_in": "6.0",
+ "subcategory": "sky & weather",
+ "sort_order": 1025,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "BRIDGE AT NIGHT",
@@ -7521,19 +7521,19 @@
"google": "FE010",
"image": "1f309.png",
"sheet_x": 5,
- "sheet_y": 48,
+ "sheet_y": 8,
"short_name": "bridge_at_night",
"short_names": ["bridge_at_night"],
"text": null,
"texts": null,
"category": "Travel & Places",
- "sort_order": 55,
- "added_in": "6.0",
+ "subcategory": "place-other",
+ "sort_order": 878,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "WATER WAVE",
@@ -7545,19 +7545,19 @@
"google": "FE038",
"image": "1f30a.png",
"sheet_x": 5,
- "sheet_y": 49,
+ "sheet_y": 9,
"short_name": "ocean",
"short_names": ["ocean"],
"text": null,
"texts": null,
"category": "Travel & Places",
- "sort_order": 202,
- "added_in": "6.0",
+ "subcategory": "sky & weather",
+ "sort_order": 1037,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "VOLCANO",
@@ -7569,19 +7569,19 @@
"google": "FE03A",
"image": "1f30b.png",
"sheet_x": 5,
- "sheet_y": 50,
+ "sheet_y": 10,
"short_name": "volcano",
"short_names": ["volcano"],
"text": null,
"texts": null,
"category": "Travel & Places",
- "sort_order": 10,
- "added_in": "6.0",
+ "subcategory": "place-geographic",
+ "sort_order": 829,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "MILKY WAY",
@@ -7593,19 +7593,19 @@
"google": "FE03B",
"image": "1f30c.png",
"sheet_x": 5,
- "sheet_y": 51,
+ "sheet_y": 11,
"short_name": "milky_way",
"short_names": ["milky_way"],
"text": null,
"texts": null,
"category": "Travel & Places",
- "sort_order": 57,
- "added_in": "6.0",
+ "subcategory": "sky & weather",
+ "sort_order": 1011,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "EARTH GLOBE EUROPE-AFRICA",
@@ -7617,19 +7617,19 @@
"google": null,
"image": "1f30d.png",
"sheet_x": 5,
- "sheet_y": 52,
+ "sheet_y": 12,
"short_name": "earth_africa",
"short_names": ["earth_africa"],
"text": null,
"texts": null,
"category": "Travel & Places",
- "sort_order": 1,
- "added_in": "6.0",
+ "subcategory": "place-map",
+ "sort_order": 820,
+ "added_in": "0.7",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "EARTH GLOBE AMERICAS",
@@ -7640,20 +7640,20 @@
"softbank": null,
"google": null,
"image": "1f30e.png",
- "sheet_x": 6,
- "sheet_y": 0,
+ "sheet_x": 5,
+ "sheet_y": 13,
"short_name": "earth_americas",
"short_names": ["earth_americas"],
"text": null,
"texts": null,
"category": "Travel & Places",
- "sort_order": 2,
- "added_in": "6.0",
+ "subcategory": "place-map",
+ "sort_order": 821,
+ "added_in": "0.7",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "EARTH GLOBE ASIA-AUSTRALIA",
@@ -7664,20 +7664,20 @@
"softbank": null,
"google": "FE039",
"image": "1f30f.png",
- "sheet_x": 6,
- "sheet_y": 1,
+ "sheet_x": 5,
+ "sheet_y": 14,
"short_name": "earth_asia",
"short_names": ["earth_asia"],
"text": null,
"texts": null,
"category": "Travel & Places",
- "sort_order": 3,
- "added_in": "6.0",
+ "subcategory": "place-map",
+ "sort_order": 822,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "GLOBE WITH MERIDIANS",
@@ -7688,20 +7688,20 @@
"softbank": null,
"google": null,
"image": "1f310.png",
- "sheet_x": 6,
- "sheet_y": 2,
+ "sheet_x": 5,
+ "sheet_y": 15,
"short_name": "globe_with_meridians",
"short_names": ["globe_with_meridians"],
"text": null,
"texts": null,
"category": "Travel & Places",
- "sort_order": 4,
- "added_in": "6.0",
+ "subcategory": "place-map",
+ "sort_order": 823,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "NEW MOON SYMBOL",
@@ -7712,20 +7712,20 @@
"softbank": null,
"google": "FE011",
"image": "1f311.png",
- "sheet_x": 6,
- "sheet_y": 3,
+ "sheet_x": 5,
+ "sheet_y": 16,
"short_name": "new_moon",
"short_names": ["new_moon"],
"text": null,
"texts": null,
"category": "Travel & Places",
- "sort_order": 158,
- "added_in": "6.0",
+ "subcategory": "sky & weather",
+ "sort_order": 991,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "WAXING CRESCENT MOON SYMBOL",
@@ -7736,20 +7736,20 @@
"softbank": null,
"google": null,
"image": "1f312.png",
- "sheet_x": 6,
- "sheet_y": 4,
+ "sheet_x": 5,
+ "sheet_y": 17,
"short_name": "waxing_crescent_moon",
"short_names": ["waxing_crescent_moon"],
"text": null,
"texts": null,
"category": "Travel & Places",
- "sort_order": 159,
- "added_in": "6.0",
+ "subcategory": "sky & weather",
+ "sort_order": 992,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "FIRST QUARTER MOON SYMBOL",
@@ -7760,20 +7760,20 @@
"softbank": null,
"google": "FE013",
"image": "1f313.png",
- "sheet_x": 6,
- "sheet_y": 5,
+ "sheet_x": 5,
+ "sheet_y": 18,
"short_name": "first_quarter_moon",
"short_names": ["first_quarter_moon"],
"text": null,
"texts": null,
"category": "Travel & Places",
- "sort_order": 160,
- "added_in": "6.0",
+ "subcategory": "sky & weather",
+ "sort_order": 993,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "WAXING GIBBOUS MOON SYMBOL",
@@ -7784,20 +7784,20 @@
"softbank": null,
"google": "FE012",
"image": "1f314.png",
- "sheet_x": 6,
- "sheet_y": 6,
+ "sheet_x": 5,
+ "sheet_y": 19,
"short_name": "moon",
"short_names": ["moon", "waxing_gibbous_moon"],
"text": null,
"texts": null,
"category": "Travel & Places",
- "sort_order": 161,
- "added_in": "6.0",
+ "subcategory": "sky & weather",
+ "sort_order": 994,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "FULL MOON SYMBOL",
@@ -7808,20 +7808,20 @@
"softbank": null,
"google": "FE015",
"image": "1f315.png",
- "sheet_x": 6,
- "sheet_y": 7,
+ "sheet_x": 5,
+ "sheet_y": 20,
"short_name": "full_moon",
"short_names": ["full_moon"],
"text": null,
"texts": null,
"category": "Travel & Places",
- "sort_order": 162,
- "added_in": "6.0",
+ "subcategory": "sky & weather",
+ "sort_order": 995,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "WANING GIBBOUS MOON SYMBOL",
@@ -7832,20 +7832,20 @@
"softbank": null,
"google": null,
"image": "1f316.png",
- "sheet_x": 6,
- "sheet_y": 8,
+ "sheet_x": 5,
+ "sheet_y": 21,
"short_name": "waning_gibbous_moon",
"short_names": ["waning_gibbous_moon"],
"text": null,
"texts": null,
"category": "Travel & Places",
- "sort_order": 163,
- "added_in": "6.0",
+ "subcategory": "sky & weather",
+ "sort_order": 996,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "LAST QUARTER MOON SYMBOL",
@@ -7856,20 +7856,20 @@
"softbank": null,
"google": null,
"image": "1f317.png",
- "sheet_x": 6,
- "sheet_y": 9,
+ "sheet_x": 5,
+ "sheet_y": 22,
"short_name": "last_quarter_moon",
"short_names": ["last_quarter_moon"],
"text": null,
"texts": null,
"category": "Travel & Places",
- "sort_order": 164,
- "added_in": "6.0",
+ "subcategory": "sky & weather",
+ "sort_order": 997,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "WANING CRESCENT MOON SYMBOL",
@@ -7880,20 +7880,20 @@
"softbank": null,
"google": null,
"image": "1f318.png",
- "sheet_x": 6,
- "sheet_y": 10,
+ "sheet_x": 5,
+ "sheet_y": 23,
"short_name": "waning_crescent_moon",
"short_names": ["waning_crescent_moon"],
"text": null,
"texts": null,
"category": "Travel & Places",
- "sort_order": 165,
- "added_in": "6.0",
+ "subcategory": "sky & weather",
+ "sort_order": 998,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "CRESCENT MOON",
@@ -7904,20 +7904,20 @@
"softbank": "E04C",
"google": "FE014",
"image": "1f319.png",
- "sheet_x": 6,
- "sheet_y": 11,
+ "sheet_x": 5,
+ "sheet_y": 24,
"short_name": "crescent_moon",
"short_names": ["crescent_moon"],
"text": null,
"texts": null,
"category": "Travel & Places",
- "sort_order": 166,
- "added_in": "6.0",
+ "subcategory": "sky & weather",
+ "sort_order": 999,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "NEW MOON WITH FACE",
@@ -7928,20 +7928,20 @@
"softbank": null,
"google": null,
"image": "1f31a.png",
- "sheet_x": 6,
- "sheet_y": 12,
+ "sheet_x": 5,
+ "sheet_y": 25,
"short_name": "new_moon_with_face",
"short_names": ["new_moon_with_face"],
"text": null,
"texts": null,
"category": "Travel & Places",
- "sort_order": 167,
- "added_in": "6.0",
+ "subcategory": "sky & weather",
+ "sort_order": 1000,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "FIRST QUARTER MOON WITH FACE",
@@ -7952,20 +7952,20 @@
"softbank": null,
"google": "FE016",
"image": "1f31b.png",
- "sheet_x": 6,
- "sheet_y": 13,
+ "sheet_x": 5,
+ "sheet_y": 26,
"short_name": "first_quarter_moon_with_face",
"short_names": ["first_quarter_moon_with_face"],
"text": null,
"texts": null,
"category": "Travel & Places",
- "sort_order": 168,
- "added_in": "6.0",
+ "subcategory": "sky & weather",
+ "sort_order": 1001,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "LAST QUARTER MOON WITH FACE",
@@ -7976,20 +7976,20 @@
"softbank": null,
"google": null,
"image": "1f31c.png",
- "sheet_x": 6,
- "sheet_y": 14,
+ "sheet_x": 5,
+ "sheet_y": 27,
"short_name": "last_quarter_moon_with_face",
"short_names": ["last_quarter_moon_with_face"],
"text": null,
"texts": null,
"category": "Travel & Places",
- "sort_order": 169,
- "added_in": "6.0",
+ "subcategory": "sky & weather",
+ "sort_order": 1002,
+ "added_in": "0.7",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "FULL MOON WITH FACE",
@@ -8000,20 +8000,20 @@
"softbank": null,
"google": null,
"image": "1f31d.png",
- "sheet_x": 6,
- "sheet_y": 15,
+ "sheet_x": 5,
+ "sheet_y": 28,
"short_name": "full_moon_with_face",
"short_names": ["full_moon_with_face"],
"text": null,
"texts": null,
"category": "Travel & Places",
- "sort_order": 172,
- "added_in": "6.0",
+ "subcategory": "sky & weather",
+ "sort_order": 1005,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "SUN WITH FACE",
@@ -8024,20 +8024,20 @@
"softbank": null,
"google": null,
"image": "1f31e.png",
- "sheet_x": 6,
- "sheet_y": 16,
+ "sheet_x": 5,
+ "sheet_y": 29,
"short_name": "sun_with_face",
"short_names": ["sun_with_face"],
"text": null,
"texts": null,
"category": "Travel & Places",
- "sort_order": 173,
- "added_in": "6.0",
+ "subcategory": "sky & weather",
+ "sort_order": 1006,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "GLOWING STAR",
@@ -8048,20 +8048,20 @@
"softbank": "E335",
"google": "FEB69",
"image": "1f31f.png",
- "sheet_x": 6,
- "sheet_y": 17,
+ "sheet_x": 5,
+ "sheet_y": 30,
"short_name": "star2",
"short_names": ["star2"],
"text": null,
"texts": null,
"category": "Travel & Places",
- "sort_order": 175,
- "added_in": "6.0",
+ "subcategory": "sky & weather",
+ "sort_order": 1009,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "SHOOTING STAR",
@@ -8072,23 +8072,23 @@
"softbank": null,
"google": "FEB6A",
"image": "1f320.png",
- "sheet_x": 6,
- "sheet_y": 18,
+ "sheet_x": 5,
+ "sheet_y": 31,
"short_name": "stars",
"short_names": ["stars"],
"text": null,
"texts": null,
"category": "Travel & Places",
- "sort_order": 176,
- "added_in": "6.0",
+ "subcategory": "sky & weather",
+ "sort_order": 1010,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": null,
+ "name": "THERMOMETER",
"unified": "1F321-FE0F",
"non_qualified": "1F321",
"docomo": null,
@@ -8096,23 +8096,23 @@
"softbank": null,
"google": null,
"image": "1f321-fe0f.png",
- "sheet_x": 6,
- "sheet_y": 19,
+ "sheet_x": 5,
+ "sheet_y": 32,
"short_name": "thermometer",
"short_names": ["thermometer"],
"text": null,
"texts": null,
"category": "Travel & Places",
- "sort_order": 170,
- "added_in": "7.0",
+ "subcategory": "sky & weather",
+ "sort_order": 1003,
+ "added_in": "0.7",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
- "name": null,
+ "name": "SUN BEHIND SMALL CLOUD",
"unified": "1F324-FE0F",
"non_qualified": "1F324",
"docomo": null,
@@ -8120,23 +8120,23 @@
"softbank": null,
"google": null,
"image": "1f324-fe0f.png",
- "sheet_x": 6,
- "sheet_y": 20,
+ "sheet_x": 5,
+ "sheet_y": 33,
"short_name": "mostly_sunny",
"short_names": ["mostly_sunny", "sun_small_cloud"],
"text": null,
"texts": null,
"category": "Travel & Places",
- "sort_order": 180,
- "added_in": "7.0",
+ "subcategory": "sky & weather",
+ "sort_order": 1015,
+ "added_in": "0.7",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
- "name": null,
+ "name": "SUN BEHIND LARGE CLOUD",
"unified": "1F325-FE0F",
"non_qualified": "1F325",
"docomo": null,
@@ -8144,23 +8144,23 @@
"softbank": null,
"google": null,
"image": "1f325-fe0f.png",
- "sheet_x": 6,
- "sheet_y": 21,
+ "sheet_x": 5,
+ "sheet_y": 34,
"short_name": "barely_sunny",
"short_names": ["barely_sunny", "sun_behind_cloud"],
"text": null,
"texts": null,
"category": "Travel & Places",
- "sort_order": 181,
- "added_in": "7.0",
+ "subcategory": "sky & weather",
+ "sort_order": 1016,
+ "added_in": "0.7",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
- "name": null,
+ "name": "SUN BEHIND RAIN CLOUD",
"unified": "1F326-FE0F",
"non_qualified": "1F326",
"docomo": null,
@@ -8168,23 +8168,23 @@
"softbank": null,
"google": null,
"image": "1f326-fe0f.png",
- "sheet_x": 6,
- "sheet_y": 22,
+ "sheet_x": 5,
+ "sheet_y": 35,
"short_name": "partly_sunny_rain",
"short_names": ["partly_sunny_rain", "sun_behind_rain_cloud"],
"text": null,
"texts": null,
"category": "Travel & Places",
- "sort_order": 182,
- "added_in": "7.0",
+ "subcategory": "sky & weather",
+ "sort_order": 1017,
+ "added_in": "0.7",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
- "name": null,
+ "name": "CLOUD WITH RAIN",
"unified": "1F327-FE0F",
"non_qualified": "1F327",
"docomo": null,
@@ -8192,23 +8192,23 @@
"softbank": null,
"google": null,
"image": "1f327-fe0f.png",
- "sheet_x": 6,
- "sheet_y": 23,
+ "sheet_x": 5,
+ "sheet_y": 36,
"short_name": "rain_cloud",
"short_names": ["rain_cloud"],
"text": null,
"texts": null,
"category": "Travel & Places",
- "sort_order": 183,
- "added_in": "7.0",
+ "subcategory": "sky & weather",
+ "sort_order": 1018,
+ "added_in": "0.7",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
- "name": null,
+ "name": "CLOUD WITH SNOW",
"unified": "1F328-FE0F",
"non_qualified": "1F328",
"docomo": null,
@@ -8216,23 +8216,23 @@
"softbank": null,
"google": null,
"image": "1f328-fe0f.png",
- "sheet_x": 6,
- "sheet_y": 24,
+ "sheet_x": 5,
+ "sheet_y": 37,
"short_name": "snow_cloud",
"short_names": ["snow_cloud"],
"text": null,
"texts": null,
"category": "Travel & Places",
- "sort_order": 184,
- "added_in": "7.0",
+ "subcategory": "sky & weather",
+ "sort_order": 1019,
+ "added_in": "0.7",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
- "name": null,
+ "name": "CLOUD WITH LIGHTNING",
"unified": "1F329-FE0F",
"non_qualified": "1F329",
"docomo": null,
@@ -8240,23 +8240,23 @@
"softbank": null,
"google": null,
"image": "1f329-fe0f.png",
- "sheet_x": 6,
- "sheet_y": 25,
+ "sheet_x": 5,
+ "sheet_y": 38,
"short_name": "lightning",
"short_names": ["lightning", "lightning_cloud"],
"text": null,
"texts": null,
"category": "Travel & Places",
- "sort_order": 185,
- "added_in": "7.0",
+ "subcategory": "sky & weather",
+ "sort_order": 1020,
+ "added_in": "0.7",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
- "name": null,
+ "name": "TORNADO",
"unified": "1F32A-FE0F",
"non_qualified": "1F32A",
"docomo": null,
@@ -8264,23 +8264,23 @@
"softbank": null,
"google": null,
"image": "1f32a-fe0f.png",
- "sheet_x": 6,
- "sheet_y": 26,
+ "sheet_x": 5,
+ "sheet_y": 39,
"short_name": "tornado",
"short_names": ["tornado", "tornado_cloud"],
"text": null,
"texts": null,
"category": "Travel & Places",
- "sort_order": 186,
- "added_in": "7.0",
+ "subcategory": "sky & weather",
+ "sort_order": 1021,
+ "added_in": "0.7",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
- "name": null,
+ "name": "FOG",
"unified": "1F32B-FE0F",
"non_qualified": "1F32B",
"docomo": null,
@@ -8288,23 +8288,23 @@
"softbank": null,
"google": null,
"image": "1f32b-fe0f.png",
- "sheet_x": 6,
- "sheet_y": 27,
+ "sheet_x": 5,
+ "sheet_y": 40,
"short_name": "fog",
"short_names": ["fog"],
"text": null,
"texts": null,
"category": "Travel & Places",
- "sort_order": 187,
- "added_in": "7.0",
+ "subcategory": "sky & weather",
+ "sort_order": 1022,
+ "added_in": "0.7",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
- "name": null,
+ "name": "WIND FACE",
"unified": "1F32C-FE0F",
"non_qualified": "1F32C",
"docomo": null,
@@ -8312,20 +8312,20 @@
"softbank": null,
"google": null,
"image": "1f32c-fe0f.png",
- "sheet_x": 6,
- "sheet_y": 28,
+ "sheet_x": 5,
+ "sheet_y": 41,
"short_name": "wind_blowing_face",
"short_names": ["wind_blowing_face"],
"text": null,
"texts": null,
"category": "Travel & Places",
- "sort_order": 188,
- "added_in": "7.0",
+ "subcategory": "sky & weather",
+ "sort_order": 1023,
+ "added_in": "0.7",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
"name": "HOT DOG",
@@ -8336,20 +8336,20 @@
"softbank": null,
"google": null,
"image": "1f32d.png",
- "sheet_x": 6,
- "sheet_y": 29,
+ "sheet_x": 5,
+ "sheet_y": 42,
"short_name": "hotdog",
"short_names": ["hotdog"],
"text": null,
"texts": null,
"category": "Food & Drink",
- "sort_order": 44,
- "added_in": "8.0",
+ "subcategory": "food-prepared",
+ "sort_order": 739,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
"name": "TACO",
@@ -8360,20 +8360,20 @@
"softbank": null,
"google": null,
"image": "1f32e.png",
- "sheet_x": 6,
- "sheet_y": 30,
+ "sheet_x": 5,
+ "sheet_y": 43,
"short_name": "taco",
"short_names": ["taco"],
"text": null,
"texts": null,
"category": "Food & Drink",
- "sort_order": 46,
- "added_in": "8.0",
+ "subcategory": "food-prepared",
+ "sort_order": 741,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
"name": "BURRITO",
@@ -8384,20 +8384,20 @@
"softbank": null,
"google": null,
"image": "1f32f.png",
- "sheet_x": 6,
- "sheet_y": 31,
+ "sheet_x": 5,
+ "sheet_y": 44,
"short_name": "burrito",
"short_names": ["burrito"],
"text": null,
"texts": null,
"category": "Food & Drink",
- "sort_order": 47,
- "added_in": "8.0",
+ "subcategory": "food-prepared",
+ "sort_order": 742,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
"name": "CHESTNUT",
@@ -8408,20 +8408,20 @@
"softbank": null,
"google": "FE04C",
"image": "1f330.png",
- "sheet_x": 6,
- "sheet_y": 32,
+ "sheet_x": 5,
+ "sheet_y": 45,
"short_name": "chestnut",
"short_names": ["chestnut"],
"text": null,
"texts": null,
"category": "Food & Drink",
- "sort_order": 29,
- "added_in": "6.0",
+ "subcategory": "food-vegetable",
+ "sort_order": 720,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "SEEDLING",
@@ -8432,20 +8432,20 @@
"softbank": null,
"google": "FE03E",
"image": "1f331.png",
- "sheet_x": 6,
- "sheet_y": 33,
+ "sheet_x": 5,
+ "sheet_y": 46,
"short_name": "seedling",
"short_names": ["seedling"],
"text": null,
"texts": null,
"category": "Animals & Nature",
- "sort_order": 113,
- "added_in": "6.0",
+ "subcategory": "plant-other",
+ "sort_order": 671,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "EVERGREEN TREE",
@@ -8456,20 +8456,20 @@
"softbank": null,
"google": null,
"image": "1f332.png",
- "sheet_x": 6,
- "sheet_y": 34,
+ "sheet_x": 5,
+ "sheet_y": 47,
"short_name": "evergreen_tree",
"short_names": ["evergreen_tree"],
"text": null,
"texts": null,
"category": "Animals & Nature",
- "sort_order": 114,
- "added_in": "6.0",
+ "subcategory": "plant-other",
+ "sort_order": 673,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "DECIDUOUS TREE",
@@ -8480,20 +8480,20 @@
"softbank": null,
"google": null,
"image": "1f333.png",
- "sheet_x": 6,
- "sheet_y": 35,
+ "sheet_x": 5,
+ "sheet_y": 48,
"short_name": "deciduous_tree",
"short_names": ["deciduous_tree"],
"text": null,
"texts": null,
"category": "Animals & Nature",
- "sort_order": 115,
- "added_in": "6.0",
+ "subcategory": "plant-other",
+ "sort_order": 674,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "PALM TREE",
@@ -8504,20 +8504,20 @@
"softbank": "E307",
"google": "FE047",
"image": "1f334.png",
- "sheet_x": 6,
- "sheet_y": 36,
+ "sheet_x": 5,
+ "sheet_y": 49,
"short_name": "palm_tree",
"short_names": ["palm_tree"],
"text": null,
"texts": null,
"category": "Animals & Nature",
- "sort_order": 116,
- "added_in": "6.0",
+ "subcategory": "plant-other",
+ "sort_order": 675,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "CACTUS",
@@ -8528,23 +8528,23 @@
"softbank": "E308",
"google": "FE048",
"image": "1f335.png",
- "sheet_x": 6,
- "sheet_y": 37,
+ "sheet_x": 5,
+ "sheet_y": 50,
"short_name": "cactus",
"short_names": ["cactus"],
"text": null,
"texts": null,
"category": "Animals & Nature",
- "sort_order": 117,
- "added_in": "6.0",
+ "subcategory": "plant-other",
+ "sort_order": 676,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": null,
+ "name": "HOT PEPPER",
"unified": "1F336-FE0F",
"non_qualified": "1F336",
"docomo": null,
@@ -8552,20 +8552,20 @@
"softbank": null,
"google": null,
"image": "1f336-fe0f.png",
- "sheet_x": 6,
- "sheet_y": 38,
+ "sheet_x": 5,
+ "sheet_y": 51,
"short_name": "hot_pepper",
"short_names": ["hot_pepper"],
"text": null,
"texts": null,
"category": "Food & Drink",
- "sort_order": 23,
- "added_in": "7.0",
+ "subcategory": "food-vegetable",
+ "sort_order": 711,
+ "added_in": "0.7",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
"name": "TULIP",
@@ -8576,20 +8576,20 @@
"softbank": "E304",
"google": "FE03D",
"image": "1f337.png",
- "sheet_x": 6,
- "sheet_y": 39,
+ "sheet_x": 5,
+ "sheet_y": 52,
"short_name": "tulip",
"short_names": ["tulip"],
"text": null,
"texts": null,
"category": "Animals & Nature",
- "sort_order": 112,
- "added_in": "6.0",
+ "subcategory": "plant-flower",
+ "sort_order": 669,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "CHERRY BLOSSOM",
@@ -8600,20 +8600,20 @@
"softbank": "E030",
"google": "FE040",
"image": "1f338.png",
- "sheet_x": 6,
- "sheet_y": 40,
+ "sheet_x": 5,
+ "sheet_y": 53,
"short_name": "cherry_blossom",
"short_names": ["cherry_blossom"],
"text": null,
"texts": null,
"category": "Animals & Nature",
- "sort_order": 104,
- "added_in": "6.0",
+ "subcategory": "plant-flower",
+ "sort_order": 660,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "ROSE",
@@ -8624,20 +8624,20 @@
"softbank": "E032",
"google": "FE041",
"image": "1f339.png",
- "sheet_x": 6,
- "sheet_y": 41,
+ "sheet_x": 5,
+ "sheet_y": 54,
"short_name": "rose",
"short_names": ["rose"],
"text": null,
"texts": null,
"category": "Animals & Nature",
- "sort_order": 107,
- "added_in": "6.0",
+ "subcategory": "plant-flower",
+ "sort_order": 664,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "HIBISCUS",
@@ -8648,20 +8648,20 @@
"softbank": "E303",
"google": "FE045",
"image": "1f33a.png",
- "sheet_x": 6,
- "sheet_y": 42,
+ "sheet_x": 5,
+ "sheet_y": 55,
"short_name": "hibiscus",
"short_names": ["hibiscus"],
"text": null,
"texts": null,
"category": "Animals & Nature",
- "sort_order": 109,
- "added_in": "6.0",
+ "subcategory": "plant-flower",
+ "sort_order": 666,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "SUNFLOWER",
@@ -8672,20 +8672,20 @@
"softbank": "E305",
"google": "FE046",
"image": "1f33b.png",
- "sheet_x": 6,
- "sheet_y": 43,
+ "sheet_x": 5,
+ "sheet_y": 56,
"short_name": "sunflower",
"short_names": ["sunflower"],
"text": null,
"texts": null,
"category": "Animals & Nature",
- "sort_order": 110,
- "added_in": "6.0",
+ "subcategory": "plant-flower",
+ "sort_order": 667,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "BLOSSOM",
@@ -8696,20 +8696,20 @@
"softbank": null,
"google": "FE04D",
"image": "1f33c.png",
- "sheet_x": 6,
- "sheet_y": 44,
+ "sheet_x": 5,
+ "sheet_y": 57,
"short_name": "blossom",
"short_names": ["blossom"],
"text": null,
"texts": null,
"category": "Animals & Nature",
- "sort_order": 111,
- "added_in": "6.0",
+ "subcategory": "plant-flower",
+ "sort_order": 668,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "EAR OF MAIZE",
@@ -8720,20 +8720,20 @@
"softbank": null,
"google": "FE04A",
"image": "1f33d.png",
- "sheet_x": 6,
- "sheet_y": 45,
+ "sheet_x": 5,
+ "sheet_y": 58,
"short_name": "corn",
"short_names": ["corn"],
"text": null,
"texts": null,
"category": "Food & Drink",
- "sort_order": 22,
- "added_in": "6.0",
+ "subcategory": "food-vegetable",
+ "sort_order": 710,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "EAR OF RICE",
@@ -8744,20 +8744,20 @@
"softbank": "E444",
"google": "FE049",
"image": "1f33e.png",
- "sheet_x": 6,
- "sheet_y": 46,
+ "sheet_x": 5,
+ "sheet_y": 59,
"short_name": "ear_of_rice",
"short_names": ["ear_of_rice"],
"text": null,
"texts": null,
"category": "Animals & Nature",
- "sort_order": 118,
- "added_in": "6.0",
+ "subcategory": "plant-other",
+ "sort_order": 677,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "HERB",
@@ -8768,20 +8768,20 @@
"softbank": null,
"google": "FE04E",
"image": "1f33f.png",
- "sheet_x": 6,
- "sheet_y": 47,
+ "sheet_x": 5,
+ "sheet_y": 60,
"short_name": "herb",
"short_names": ["herb"],
"text": null,
"texts": null,
"category": "Animals & Nature",
- "sort_order": 119,
- "added_in": "6.0",
+ "subcategory": "plant-other",
+ "sort_order": 678,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "FOUR LEAF CLOVER",
@@ -8793,19 +8793,19 @@
"google": "FE03C",
"image": "1f340.png",
"sheet_x": 6,
- "sheet_y": 48,
+ "sheet_y": 0,
"short_name": "four_leaf_clover",
"short_names": ["four_leaf_clover"],
"text": null,
"texts": null,
"category": "Animals & Nature",
- "sort_order": 121,
- "added_in": "6.0",
+ "subcategory": "plant-other",
+ "sort_order": 680,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "MAPLE LEAF",
@@ -8817,19 +8817,19 @@
"google": "FE03F",
"image": "1f341.png",
"sheet_x": 6,
- "sheet_y": 49,
+ "sheet_y": 1,
"short_name": "maple_leaf",
"short_names": ["maple_leaf"],
"text": null,
"texts": null,
"category": "Animals & Nature",
- "sort_order": 122,
- "added_in": "6.0",
+ "subcategory": "plant-other",
+ "sort_order": 681,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "FALLEN LEAF",
@@ -8841,19 +8841,19 @@
"google": "FE042",
"image": "1f342.png",
"sheet_x": 6,
- "sheet_y": 50,
+ "sheet_y": 2,
"short_name": "fallen_leaf",
"short_names": ["fallen_leaf"],
"text": null,
"texts": null,
"category": "Animals & Nature",
- "sort_order": 123,
- "added_in": "6.0",
+ "subcategory": "plant-other",
+ "sort_order": 682,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "LEAF FLUTTERING IN WIND",
@@ -8865,19 +8865,19 @@
"google": "FE043",
"image": "1f343.png",
"sheet_x": 6,
- "sheet_y": 51,
+ "sheet_y": 3,
"short_name": "leaves",
"short_names": ["leaves"],
"text": null,
"texts": null,
"category": "Animals & Nature",
- "sort_order": 124,
- "added_in": "6.0",
+ "subcategory": "plant-other",
+ "sort_order": 683,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "MUSHROOM",
@@ -8889,19 +8889,19 @@
"google": "FE04B",
"image": "1f344.png",
"sheet_x": 6,
- "sheet_y": 52,
+ "sheet_y": 4,
"short_name": "mushroom",
"short_names": ["mushroom"],
"text": null,
"texts": null,
- "category": "Food & Drink",
- "sort_order": 27,
- "added_in": "6.0",
+ "category": "Animals & Nature",
+ "subcategory": "plant-other",
+ "sort_order": 686,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "TOMATO",
@@ -8912,20 +8912,20 @@
"softbank": "E349",
"google": "FE055",
"image": "1f345.png",
- "sheet_x": 7,
- "sheet_y": 0,
+ "sheet_x": 6,
+ "sheet_y": 5,
"short_name": "tomato",
"short_names": ["tomato"],
"text": null,
"texts": null,
"category": "Food & Drink",
- "sort_order": 16,
- "added_in": "6.0",
+ "subcategory": "food-fruit",
+ "sort_order": 703,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "AUBERGINE",
@@ -8936,20 +8936,20 @@
"softbank": "E34A",
"google": "FE056",
"image": "1f346.png",
- "sheet_x": 7,
- "sheet_y": 1,
+ "sheet_x": 6,
+ "sheet_y": 6,
"short_name": "eggplant",
"short_names": ["eggplant"],
"text": null,
"texts": null,
"category": "Food & Drink",
- "sort_order": 19,
- "added_in": "6.0",
+ "subcategory": "food-vegetable",
+ "sort_order": 707,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "GRAPES",
@@ -8960,20 +8960,20 @@
"softbank": null,
"google": "FE059",
"image": "1f347.png",
- "sheet_x": 7,
- "sheet_y": 2,
+ "sheet_x": 6,
+ "sheet_y": 7,
"short_name": "grapes",
"short_names": ["grapes"],
"text": null,
"texts": null,
"category": "Food & Drink",
- "sort_order": 1,
- "added_in": "6.0",
+ "subcategory": "food-fruit",
+ "sort_order": 687,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "MELON",
@@ -8984,20 +8984,20 @@
"softbank": null,
"google": "FE057",
"image": "1f348.png",
- "sheet_x": 7,
- "sheet_y": 3,
+ "sheet_x": 6,
+ "sheet_y": 8,
"short_name": "melon",
"short_names": ["melon"],
"text": null,
"texts": null,
"category": "Food & Drink",
- "sort_order": 2,
- "added_in": "6.0",
+ "subcategory": "food-fruit",
+ "sort_order": 688,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "WATERMELON",
@@ -9008,20 +9008,20 @@
"softbank": "E348",
"google": "FE054",
"image": "1f349.png",
- "sheet_x": 7,
- "sheet_y": 4,
+ "sheet_x": 6,
+ "sheet_y": 9,
"short_name": "watermelon",
"short_names": ["watermelon"],
"text": null,
"texts": null,
"category": "Food & Drink",
- "sort_order": 3,
- "added_in": "6.0",
+ "subcategory": "food-fruit",
+ "sort_order": 689,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "TANGERINE",
@@ -9032,20 +9032,20 @@
"softbank": "E346",
"google": "FE052",
"image": "1f34a.png",
- "sheet_x": 7,
- "sheet_y": 5,
+ "sheet_x": 6,
+ "sheet_y": 10,
"short_name": "tangerine",
"short_names": ["tangerine"],
"text": null,
"texts": null,
"category": "Food & Drink",
- "sort_order": 4,
- "added_in": "6.0",
+ "subcategory": "food-fruit",
+ "sort_order": 690,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "LEMON",
@@ -9056,20 +9056,20 @@
"softbank": null,
"google": null,
"image": "1f34b.png",
- "sheet_x": 7,
- "sheet_y": 6,
+ "sheet_x": 6,
+ "sheet_y": 11,
"short_name": "lemon",
"short_names": ["lemon"],
"text": null,
"texts": null,
"category": "Food & Drink",
- "sort_order": 5,
- "added_in": "6.0",
+ "subcategory": "food-fruit",
+ "sort_order": 691,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "BANANA",
@@ -9080,20 +9080,20 @@
"softbank": null,
"google": "FE050",
"image": "1f34c.png",
- "sheet_x": 7,
- "sheet_y": 7,
+ "sheet_x": 6,
+ "sheet_y": 12,
"short_name": "banana",
"short_names": ["banana"],
"text": null,
"texts": null,
"category": "Food & Drink",
- "sort_order": 6,
- "added_in": "6.0",
+ "subcategory": "food-fruit",
+ "sort_order": 692,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "PINEAPPLE",
@@ -9104,20 +9104,20 @@
"softbank": null,
"google": "FE058",
"image": "1f34d.png",
- "sheet_x": 7,
- "sheet_y": 8,
+ "sheet_x": 6,
+ "sheet_y": 13,
"short_name": "pineapple",
"short_names": ["pineapple"],
"text": null,
"texts": null,
"category": "Food & Drink",
- "sort_order": 7,
- "added_in": "6.0",
+ "subcategory": "food-fruit",
+ "sort_order": 693,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "RED APPLE",
@@ -9128,20 +9128,20 @@
"softbank": "E345",
"google": "FE051",
"image": "1f34e.png",
- "sheet_x": 7,
- "sheet_y": 9,
+ "sheet_x": 6,
+ "sheet_y": 14,
"short_name": "apple",
"short_names": ["apple"],
"text": null,
"texts": null,
"category": "Food & Drink",
- "sort_order": 9,
- "added_in": "6.0",
+ "subcategory": "food-fruit",
+ "sort_order": 695,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "GREEN APPLE",
@@ -9152,20 +9152,20 @@
"softbank": null,
"google": "FE05B",
"image": "1f34f.png",
- "sheet_x": 7,
- "sheet_y": 10,
+ "sheet_x": 6,
+ "sheet_y": 15,
"short_name": "green_apple",
"short_names": ["green_apple"],
"text": null,
"texts": null,
"category": "Food & Drink",
- "sort_order": 10,
- "added_in": "6.0",
+ "subcategory": "food-fruit",
+ "sort_order": 696,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "PEAR",
@@ -9176,20 +9176,20 @@
"softbank": null,
"google": null,
"image": "1f350.png",
- "sheet_x": 7,
- "sheet_y": 11,
+ "sheet_x": 6,
+ "sheet_y": 16,
"short_name": "pear",
"short_names": ["pear"],
"text": null,
"texts": null,
"category": "Food & Drink",
- "sort_order": 11,
- "added_in": "6.0",
+ "subcategory": "food-fruit",
+ "sort_order": 697,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "PEACH",
@@ -9200,20 +9200,20 @@
"softbank": null,
"google": "FE05A",
"image": "1f351.png",
- "sheet_x": 7,
- "sheet_y": 12,
+ "sheet_x": 6,
+ "sheet_y": 17,
"short_name": "peach",
"short_names": ["peach"],
"text": null,
"texts": null,
"category": "Food & Drink",
- "sort_order": 12,
- "added_in": "6.0",
+ "subcategory": "food-fruit",
+ "sort_order": 698,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "CHERRIES",
@@ -9224,20 +9224,20 @@
"softbank": null,
"google": "FE04F",
"image": "1f352.png",
- "sheet_x": 7,
- "sheet_y": 13,
+ "sheet_x": 6,
+ "sheet_y": 18,
"short_name": "cherries",
"short_names": ["cherries"],
"text": null,
"texts": null,
"category": "Food & Drink",
- "sort_order": 13,
- "added_in": "6.0",
+ "subcategory": "food-fruit",
+ "sort_order": 699,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "STRAWBERRY",
@@ -9248,20 +9248,20 @@
"softbank": "E347",
"google": "FE053",
"image": "1f353.png",
- "sheet_x": 7,
- "sheet_y": 14,
+ "sheet_x": 6,
+ "sheet_y": 19,
"short_name": "strawberry",
"short_names": ["strawberry"],
"text": null,
"texts": null,
"category": "Food & Drink",
- "sort_order": 14,
- "added_in": "6.0",
+ "subcategory": "food-fruit",
+ "sort_order": 700,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "HAMBURGER",
@@ -9272,20 +9272,20 @@
"softbank": "E120",
"google": "FE960",
"image": "1f354.png",
- "sheet_x": 7,
- "sheet_y": 15,
+ "sheet_x": 6,
+ "sheet_y": 20,
"short_name": "hamburger",
"short_names": ["hamburger"],
"text": null,
"texts": null,
"category": "Food & Drink",
- "sort_order": 41,
- "added_in": "6.0",
+ "subcategory": "food-prepared",
+ "sort_order": 736,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "SLICE OF PIZZA",
@@ -9296,20 +9296,20 @@
"softbank": null,
"google": "FE975",
"image": "1f355.png",
- "sheet_x": 7,
- "sheet_y": 16,
+ "sheet_x": 6,
+ "sheet_y": 21,
"short_name": "pizza",
"short_names": ["pizza"],
"text": null,
"texts": null,
"category": "Food & Drink",
- "sort_order": 43,
- "added_in": "6.0",
+ "subcategory": "food-prepared",
+ "sort_order": 738,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "MEAT ON BONE",
@@ -9320,20 +9320,20 @@
"softbank": null,
"google": "FE972",
"image": "1f356.png",
- "sheet_x": 7,
- "sheet_y": 17,
+ "sheet_x": 6,
+ "sheet_y": 22,
"short_name": "meat_on_bone",
"short_names": ["meat_on_bone"],
"text": null,
"texts": null,
"category": "Food & Drink",
- "sort_order": 37,
- "added_in": "6.0",
+ "subcategory": "food-prepared",
+ "sort_order": 732,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "POULTRY LEG",
@@ -9344,20 +9344,20 @@
"softbank": null,
"google": "FE976",
"image": "1f357.png",
- "sheet_x": 7,
- "sheet_y": 18,
+ "sheet_x": 6,
+ "sheet_y": 23,
"short_name": "poultry_leg",
"short_names": ["poultry_leg"],
"text": null,
"texts": null,
"category": "Food & Drink",
- "sort_order": 38,
- "added_in": "6.0",
+ "subcategory": "food-prepared",
+ "sort_order": 733,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "RICE CRACKER",
@@ -9368,20 +9368,20 @@
"softbank": "E33D",
"google": "FE969",
"image": "1f358.png",
- "sheet_x": 7,
- "sheet_y": 19,
+ "sheet_x": 6,
+ "sheet_y": 24,
"short_name": "rice_cracker",
"short_names": ["rice_cracker"],
"text": null,
"texts": null,
"category": "Food & Drink",
- "sort_order": 59,
- "added_in": "6.0",
+ "subcategory": "food-asian",
+ "sort_order": 758,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "RICE BALL",
@@ -9392,20 +9392,20 @@
"softbank": "E342",
"google": "FE961",
"image": "1f359.png",
- "sheet_x": 7,
- "sheet_y": 20,
+ "sheet_x": 6,
+ "sheet_y": 25,
"short_name": "rice_ball",
"short_names": ["rice_ball"],
"text": null,
"texts": null,
"category": "Food & Drink",
- "sort_order": 60,
- "added_in": "6.0",
+ "subcategory": "food-asian",
+ "sort_order": 759,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "COOKED RICE",
@@ -9416,20 +9416,20 @@
"softbank": "E33E",
"google": "FE96A",
"image": "1f35a.png",
- "sheet_x": 7,
- "sheet_y": 21,
+ "sheet_x": 6,
+ "sheet_y": 26,
"short_name": "rice",
"short_names": ["rice"],
"text": null,
"texts": null,
"category": "Food & Drink",
- "sort_order": 61,
- "added_in": "6.0",
+ "subcategory": "food-asian",
+ "sort_order": 760,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "CURRY AND RICE",
@@ -9440,20 +9440,20 @@
"softbank": "E341",
"google": "FE96C",
"image": "1f35b.png",
- "sheet_x": 7,
- "sheet_y": 22,
+ "sheet_x": 6,
+ "sheet_y": 27,
"short_name": "curry",
"short_names": ["curry"],
"text": null,
"texts": null,
"category": "Food & Drink",
- "sort_order": 62,
- "added_in": "6.0",
+ "subcategory": "food-asian",
+ "sort_order": 761,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "STEAMING BOWL",
@@ -9464,20 +9464,20 @@
"softbank": "E340",
"google": "FE963",
"image": "1f35c.png",
- "sheet_x": 7,
- "sheet_y": 23,
+ "sheet_x": 6,
+ "sheet_y": 28,
"short_name": "ramen",
"short_names": ["ramen"],
"text": null,
"texts": null,
"category": "Food & Drink",
- "sort_order": 63,
- "added_in": "6.0",
+ "subcategory": "food-asian",
+ "sort_order": 762,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "SPAGHETTI",
@@ -9488,20 +9488,20 @@
"softbank": "E33F",
"google": "FE96B",
"image": "1f35d.png",
- "sheet_x": 7,
- "sheet_y": 24,
+ "sheet_x": 6,
+ "sheet_y": 29,
"short_name": "spaghetti",
"short_names": ["spaghetti"],
"text": null,
"texts": null,
"category": "Food & Drink",
- "sort_order": 64,
- "added_in": "6.0",
+ "subcategory": "food-asian",
+ "sort_order": 763,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "BREAD",
@@ -9512,20 +9512,20 @@
"softbank": "E339",
"google": "FE964",
"image": "1f35e.png",
- "sheet_x": 7,
- "sheet_y": 25,
+ "sheet_x": 6,
+ "sheet_y": 30,
"short_name": "bread",
"short_names": ["bread"],
"text": null,
"texts": null,
"category": "Food & Drink",
- "sort_order": 30,
- "added_in": "6.0",
+ "subcategory": "food-prepared",
+ "sort_order": 723,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "FRENCH FRIES",
@@ -9536,20 +9536,20 @@
"softbank": "E33B",
"google": "FE967",
"image": "1f35f.png",
- "sheet_x": 7,
- "sheet_y": 26,
+ "sheet_x": 6,
+ "sheet_y": 31,
"short_name": "fries",
"short_names": ["fries"],
"text": null,
"texts": null,
"category": "Food & Drink",
- "sort_order": 42,
- "added_in": "6.0",
+ "subcategory": "food-prepared",
+ "sort_order": 737,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "ROASTED SWEET POTATO",
@@ -9560,20 +9560,20 @@
"softbank": null,
"google": "FE974",
"image": "1f360.png",
- "sheet_x": 7,
- "sheet_y": 27,
+ "sheet_x": 6,
+ "sheet_y": 32,
"short_name": "sweet_potato",
"short_names": ["sweet_potato"],
"text": null,
"texts": null,
"category": "Food & Drink",
- "sort_order": 65,
- "added_in": "6.0",
+ "subcategory": "food-asian",
+ "sort_order": 764,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "DANGO",
@@ -9584,20 +9584,20 @@
"softbank": "E33C",
"google": "FE968",
"image": "1f361.png",
- "sheet_x": 7,
- "sheet_y": 28,
+ "sheet_x": 6,
+ "sheet_y": 33,
"short_name": "dango",
"short_names": ["dango"],
"text": null,
"texts": null,
"category": "Food & Drink",
- "sort_order": 71,
- "added_in": "6.0",
+ "subcategory": "food-asian",
+ "sort_order": 770,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "ODEN",
@@ -9608,20 +9608,20 @@
"softbank": "E343",
"google": "FE96D",
"image": "1f362.png",
- "sheet_x": 7,
- "sheet_y": 29,
+ "sheet_x": 6,
+ "sheet_y": 34,
"short_name": "oden",
"short_names": ["oden"],
"text": null,
"texts": null,
"category": "Food & Drink",
- "sort_order": 66,
- "added_in": "6.0",
+ "subcategory": "food-asian",
+ "sort_order": 765,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "SUSHI",
@@ -9632,20 +9632,20 @@
"softbank": "E344",
"google": "FE96E",
"image": "1f363.png",
- "sheet_x": 7,
- "sheet_y": 30,
+ "sheet_x": 6,
+ "sheet_y": 35,
"short_name": "sushi",
"short_names": ["sushi"],
"text": null,
"texts": null,
"category": "Food & Drink",
- "sort_order": 67,
- "added_in": "6.0",
+ "subcategory": "food-asian",
+ "sort_order": 766,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "FRIED SHRIMP",
@@ -9656,20 +9656,20 @@
"softbank": null,
"google": "FE97F",
"image": "1f364.png",
- "sheet_x": 7,
- "sheet_y": 31,
+ "sheet_x": 6,
+ "sheet_y": 36,
"short_name": "fried_shrimp",
"short_names": ["fried_shrimp"],
"text": null,
"texts": null,
"category": "Food & Drink",
- "sort_order": 68,
- "added_in": "6.0",
+ "subcategory": "food-asian",
+ "sort_order": 767,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "FISH CAKE WITH SWIRL DESIGN",
@@ -9680,20 +9680,20 @@
"softbank": null,
"google": "FE973",
"image": "1f365.png",
- "sheet_x": 7,
- "sheet_y": 32,
+ "sheet_x": 6,
+ "sheet_y": 37,
"short_name": "fish_cake",
"short_names": ["fish_cake"],
"text": null,
"texts": null,
"category": "Food & Drink",
- "sort_order": 69,
- "added_in": "6.0",
+ "subcategory": "food-asian",
+ "sort_order": 768,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "SOFT ICE CREAM",
@@ -9704,20 +9704,20 @@
"softbank": "E33A",
"google": "FE966",
"image": "1f366.png",
- "sheet_x": 7,
- "sheet_y": 33,
+ "sheet_x": 6,
+ "sheet_y": 38,
"short_name": "icecream",
"short_names": ["icecream"],
"text": null,
"texts": null,
"category": "Food & Drink",
- "sort_order": 75,
- "added_in": "6.0",
+ "subcategory": "food-sweet",
+ "sort_order": 779,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "SHAVED ICE",
@@ -9728,20 +9728,20 @@
"softbank": "E43F",
"google": "FE971",
"image": "1f367.png",
- "sheet_x": 7,
- "sheet_y": 34,
+ "sheet_x": 6,
+ "sheet_y": 39,
"short_name": "shaved_ice",
"short_names": ["shaved_ice"],
"text": null,
"texts": null,
"category": "Food & Drink",
- "sort_order": 76,
- "added_in": "6.0",
+ "subcategory": "food-sweet",
+ "sort_order": 780,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "ICE CREAM",
@@ -9752,20 +9752,20 @@
"softbank": null,
"google": "FE977",
"image": "1f368.png",
- "sheet_x": 7,
- "sheet_y": 35,
+ "sheet_x": 6,
+ "sheet_y": 40,
"short_name": "ice_cream",
"short_names": ["ice_cream"],
"text": null,
"texts": null,
"category": "Food & Drink",
- "sort_order": 77,
- "added_in": "6.0",
+ "subcategory": "food-sweet",
+ "sort_order": 781,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "DOUGHNUT",
@@ -9776,20 +9776,20 @@
"softbank": null,
"google": "FE978",
"image": "1f369.png",
- "sheet_x": 7,
- "sheet_y": 36,
+ "sheet_x": 6,
+ "sheet_y": 41,
"short_name": "doughnut",
"short_names": ["doughnut"],
"text": null,
"texts": null,
"category": "Food & Drink",
- "sort_order": 78,
- "added_in": "6.0",
+ "subcategory": "food-sweet",
+ "sort_order": 782,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "COOKIE",
@@ -9800,20 +9800,20 @@
"softbank": null,
"google": "FE979",
"image": "1f36a.png",
- "sheet_x": 7,
- "sheet_y": 37,
+ "sheet_x": 6,
+ "sheet_y": 42,
"short_name": "cookie",
"short_names": ["cookie"],
"text": null,
"texts": null,
"category": "Food & Drink",
- "sort_order": 79,
- "added_in": "6.0",
+ "subcategory": "food-sweet",
+ "sort_order": 783,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "CHOCOLATE BAR",
@@ -9824,20 +9824,20 @@
"softbank": null,
"google": "FE97A",
"image": "1f36b.png",
- "sheet_x": 7,
- "sheet_y": 38,
+ "sheet_x": 6,
+ "sheet_y": 43,
"short_name": "chocolate_bar",
"short_names": ["chocolate_bar"],
"text": null,
"texts": null,
"category": "Food & Drink",
- "sort_order": 84,
- "added_in": "6.0",
+ "subcategory": "food-sweet",
+ "sort_order": 788,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "CANDY",
@@ -9848,20 +9848,20 @@
"softbank": null,
"google": "FE97B",
"image": "1f36c.png",
- "sheet_x": 7,
- "sheet_y": 39,
+ "sheet_x": 6,
+ "sheet_y": 44,
"short_name": "candy",
"short_names": ["candy"],
"text": null,
"texts": null,
"category": "Food & Drink",
- "sort_order": 85,
- "added_in": "6.0",
+ "subcategory": "food-sweet",
+ "sort_order": 789,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "LOLLIPOP",
@@ -9872,20 +9872,20 @@
"softbank": null,
"google": "FE97C",
"image": "1f36d.png",
- "sheet_x": 7,
- "sheet_y": 40,
+ "sheet_x": 6,
+ "sheet_y": 45,
"short_name": "lollipop",
"short_names": ["lollipop"],
"text": null,
"texts": null,
"category": "Food & Drink",
- "sort_order": 86,
- "added_in": "6.0",
+ "subcategory": "food-sweet",
+ "sort_order": 790,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "CUSTARD",
@@ -9896,20 +9896,20 @@
"softbank": null,
"google": "FE97D",
"image": "1f36e.png",
- "sheet_x": 7,
- "sheet_y": 41,
+ "sheet_x": 6,
+ "sheet_y": 46,
"short_name": "custard",
"short_names": ["custard"],
"text": null,
"texts": null,
"category": "Food & Drink",
- "sort_order": 87,
- "added_in": "6.0",
+ "subcategory": "food-sweet",
+ "sort_order": 791,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "HONEY POT",
@@ -9920,20 +9920,20 @@
"softbank": null,
"google": "FE97E",
"image": "1f36f.png",
- "sheet_x": 7,
- "sheet_y": 42,
+ "sheet_x": 6,
+ "sheet_y": 47,
"short_name": "honey_pot",
"short_names": ["honey_pot"],
"text": null,
"texts": null,
"category": "Food & Drink",
- "sort_order": 88,
- "added_in": "6.0",
+ "subcategory": "food-sweet",
+ "sort_order": 792,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "SHORTCAKE",
@@ -9944,20 +9944,20 @@
"softbank": "E046",
"google": "FE962",
"image": "1f370.png",
- "sheet_x": 7,
- "sheet_y": 43,
+ "sheet_x": 6,
+ "sheet_y": 48,
"short_name": "cake",
"short_names": ["cake"],
"text": null,
"texts": null,
"category": "Food & Drink",
- "sort_order": 81,
- "added_in": "6.0",
+ "subcategory": "food-sweet",
+ "sort_order": 785,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "BENTO BOX",
@@ -9968,20 +9968,20 @@
"softbank": "E34C",
"google": "FE96F",
"image": "1f371.png",
- "sheet_x": 7,
- "sheet_y": 44,
+ "sheet_x": 6,
+ "sheet_y": 49,
"short_name": "bento",
"short_names": ["bento"],
"text": null,
"texts": null,
"category": "Food & Drink",
- "sort_order": 58,
- "added_in": "6.0",
+ "subcategory": "food-asian",
+ "sort_order": 757,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "POT OF FOOD",
@@ -9992,20 +9992,20 @@
"softbank": "E34D",
"google": "FE970",
"image": "1f372.png",
- "sheet_x": 7,
- "sheet_y": 45,
+ "sheet_x": 6,
+ "sheet_y": 50,
"short_name": "stew",
"short_names": ["stew"],
"text": null,
"texts": null,
"category": "Food & Drink",
- "sort_order": 52,
- "added_in": "6.0",
+ "subcategory": "food-prepared",
+ "sort_order": 749,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "COOKING",
@@ -10016,20 +10016,20 @@
"softbank": "E147",
"google": "FE965",
"image": "1f373.png",
- "sheet_x": 7,
- "sheet_y": 46,
+ "sheet_x": 6,
+ "sheet_y": 51,
"short_name": "fried_egg",
"short_names": ["fried_egg", "cooking"],
"text": null,
"texts": null,
"category": "Food & Drink",
- "sort_order": 50,
- "added_in": "6.0",
+ "subcategory": "food-prepared",
+ "sort_order": 747,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "FORK AND KNIFE",
@@ -10040,20 +10040,20 @@
"softbank": "E043",
"google": "FE980",
"image": "1f374.png",
- "sheet_x": 7,
- "sheet_y": 47,
+ "sheet_x": 6,
+ "sheet_y": 52,
"short_name": "fork_and_knife",
"short_names": ["fork_and_knife"],
"text": null,
"texts": null,
"category": "Food & Drink",
- "sort_order": 105,
- "added_in": "6.0",
+ "subcategory": "dishware",
+ "sort_order": 815,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "TEACUP WITHOUT HANDLE",
@@ -10064,20 +10064,20 @@
"softbank": "E338",
"google": "FE984",
"image": "1f375.png",
- "sheet_x": 7,
- "sheet_y": 48,
+ "sheet_x": 6,
+ "sheet_y": 53,
"short_name": "tea",
"short_names": ["tea"],
"text": null,
"texts": null,
"category": "Food & Drink",
- "sort_order": 92,
- "added_in": "6.0",
+ "subcategory": "drink",
+ "sort_order": 797,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "SAKE BOTTLE AND CUP",
@@ -10088,20 +10088,20 @@
"softbank": "E30B",
"google": "FE985",
"image": "1f376.png",
- "sheet_x": 7,
- "sheet_y": 49,
+ "sheet_x": 6,
+ "sheet_y": 54,
"short_name": "sake",
"short_names": ["sake"],
"text": null,
"texts": null,
"category": "Food & Drink",
- "sort_order": 93,
- "added_in": "6.0",
+ "subcategory": "drink",
+ "sort_order": 798,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "WINE GLASS",
@@ -10112,20 +10112,20 @@
"softbank": null,
"google": "FE986",
"image": "1f377.png",
- "sheet_x": 7,
- "sheet_y": 50,
+ "sheet_x": 6,
+ "sheet_y": 55,
"short_name": "wine_glass",
"short_names": ["wine_glass"],
"text": null,
"texts": null,
"category": "Food & Drink",
- "sort_order": 95,
- "added_in": "6.0",
+ "subcategory": "drink",
+ "sort_order": 800,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "COCKTAIL GLASS",
@@ -10136,20 +10136,20 @@
"softbank": "E044",
"google": "FE982",
"image": "1f378.png",
- "sheet_x": 7,
- "sheet_y": 51,
+ "sheet_x": 6,
+ "sheet_y": 56,
"short_name": "cocktail",
"short_names": ["cocktail"],
"text": null,
"texts": null,
"category": "Food & Drink",
- "sort_order": 96,
- "added_in": "6.0",
+ "subcategory": "drink",
+ "sort_order": 801,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "TROPICAL DRINK",
@@ -10160,20 +10160,20 @@
"softbank": null,
"google": "FE988",
"image": "1f379.png",
- "sheet_x": 7,
- "sheet_y": 52,
+ "sheet_x": 6,
+ "sheet_y": 57,
"short_name": "tropical_drink",
"short_names": ["tropical_drink"],
"text": null,
"texts": null,
"category": "Food & Drink",
- "sort_order": 97,
- "added_in": "6.0",
+ "subcategory": "drink",
+ "sort_order": 802,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "BEER MUG",
@@ -10184,20 +10184,20 @@
"softbank": "E047",
"google": "FE983",
"image": "1f37a.png",
- "sheet_x": 8,
- "sheet_y": 0,
+ "sheet_x": 6,
+ "sheet_y": 58,
"short_name": "beer",
"short_names": ["beer"],
"text": null,
"texts": null,
"category": "Food & Drink",
- "sort_order": 98,
- "added_in": "6.0",
+ "subcategory": "drink",
+ "sort_order": 803,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "CLINKING BEER MUGS",
@@ -10208,20 +10208,20 @@
"softbank": "E30C",
"google": "FE987",
"image": "1f37b.png",
- "sheet_x": 8,
- "sheet_y": 1,
+ "sheet_x": 6,
+ "sheet_y": 59,
"short_name": "beers",
"short_names": ["beers"],
"text": null,
"texts": null,
"category": "Food & Drink",
- "sort_order": 99,
- "added_in": "6.0",
+ "subcategory": "drink",
+ "sort_order": 804,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "BABY BOTTLE",
@@ -10232,23 +10232,23 @@
"softbank": null,
"google": null,
"image": "1f37c.png",
- "sheet_x": 8,
- "sheet_y": 2,
+ "sheet_x": 6,
+ "sheet_y": 60,
"short_name": "baby_bottle",
"short_names": ["baby_bottle"],
"text": null,
"texts": null,
"category": "Food & Drink",
- "sort_order": 89,
- "added_in": "6.0",
+ "subcategory": "drink",
+ "sort_order": 793,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": null,
+ "name": "FORK AND KNIFE WITH PLATE",
"unified": "1F37D-FE0F",
"non_qualified": "1F37D",
"docomo": null,
@@ -10256,20 +10256,20 @@
"softbank": null,
"google": null,
"image": "1f37d-fe0f.png",
- "sheet_x": 8,
- "sheet_y": 3,
+ "sheet_x": 7,
+ "sheet_y": 0,
"short_name": "knife_fork_plate",
"short_names": ["knife_fork_plate"],
"text": null,
"texts": null,
"category": "Food & Drink",
- "sort_order": 104,
- "added_in": "7.0",
+ "subcategory": "dishware",
+ "sort_order": 814,
+ "added_in": "0.7",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
"name": "BOTTLE WITH POPPING CORK",
@@ -10280,20 +10280,20 @@
"softbank": null,
"google": null,
"image": "1f37e.png",
- "sheet_x": 8,
- "sheet_y": 4,
+ "sheet_x": 7,
+ "sheet_y": 1,
"short_name": "champagne",
"short_names": ["champagne"],
"text": null,
"texts": null,
"category": "Food & Drink",
- "sort_order": 94,
- "added_in": "8.0",
+ "subcategory": "drink",
+ "sort_order": 799,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
"name": "POPCORN",
@@ -10304,20 +10304,20 @@
"softbank": null,
"google": null,
"image": "1f37f.png",
- "sheet_x": 8,
- "sheet_y": 5,
- "short_name": "popcorn",
+ "sheet_x": 7,
+ "sheet_y": 2,
+ "short_name": "popcorn",
"short_names": ["popcorn"],
"text": null,
"texts": null,
"category": "Food & Drink",
- "sort_order": 55,
- "added_in": "8.0",
+ "subcategory": "food-prepared",
+ "sort_order": 753,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
"name": "RIBBON",
@@ -10328,20 +10328,20 @@
"softbank": "E314",
"google": "FE50F",
"image": "1f380.png",
- "sheet_x": 8,
- "sheet_y": 6,
+ "sheet_x": 7,
+ "sheet_y": 3,
"short_name": "ribbon",
"short_names": ["ribbon"],
"text": null,
"texts": null,
"category": "Activities",
- "sort_order": 17,
- "added_in": "6.0",
+ "subcategory": "event",
+ "sort_order": 1054,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "WRAPPED PRESENT",
@@ -10352,20 +10352,20 @@
"softbank": "E112",
"google": "FE510",
"image": "1f381.png",
- "sheet_x": 8,
- "sheet_y": 7,
+ "sheet_x": 7,
+ "sheet_y": 4,
"short_name": "gift",
"short_names": ["gift"],
"text": null,
"texts": null,
"category": "Activities",
- "sort_order": 18,
- "added_in": "6.0",
+ "subcategory": "event",
+ "sort_order": 1055,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "BIRTHDAY CAKE",
@@ -10376,20 +10376,20 @@
"softbank": "E34B",
"google": "FE511",
"image": "1f382.png",
- "sheet_x": 8,
- "sheet_y": 8,
+ "sheet_x": 7,
+ "sheet_y": 5,
"short_name": "birthday",
"short_names": ["birthday"],
"text": null,
"texts": null,
"category": "Food & Drink",
- "sort_order": 80,
- "added_in": "6.0",
+ "subcategory": "food-sweet",
+ "sort_order": 784,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "JACK-O-LANTERN",
@@ -10400,20 +10400,20 @@
"softbank": "E445",
"google": "FE51F",
"image": "1f383.png",
- "sheet_x": 8,
- "sheet_y": 9,
+ "sheet_x": 7,
+ "sheet_y": 6,
"short_name": "jack_o_lantern",
"short_names": ["jack_o_lantern"],
"text": null,
"texts": null,
"category": "Activities",
- "sort_order": 1,
- "added_in": "6.0",
+ "subcategory": "event",
+ "sort_order": 1038,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "CHRISTMAS TREE",
@@ -10424,20 +10424,20 @@
"softbank": "E033",
"google": "FE512",
"image": "1f384.png",
- "sheet_x": 8,
- "sheet_y": 10,
+ "sheet_x": 7,
+ "sheet_y": 7,
"short_name": "christmas_tree",
"short_names": ["christmas_tree"],
"text": null,
"texts": null,
"category": "Activities",
- "sort_order": 2,
- "added_in": "6.0",
+ "subcategory": "event",
+ "sort_order": 1039,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "FATHER CHRISTMAS",
@@ -10448,85 +10448,80 @@
"softbank": "E448",
"google": "FE513",
"image": "1f385.png",
- "sheet_x": 8,
- "sheet_y": 11,
+ "sheet_x": 7,
+ "sheet_y": 8,
"short_name": "santa",
"short_names": ["santa"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 192,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "person-fantasy",
+ "sort_order": 369,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": true,
"skin_variations": {
"1F3FB": {
"unified": "1F385-1F3FB",
"non_qualified": null,
"image": "1f385-1f3fb.png",
- "sheet_x": 8,
- "sheet_y": 12,
- "added_in": "8.0",
+ "sheet_x": 7,
+ "sheet_y": 9,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
"1F3FC": {
"unified": "1F385-1F3FC",
"non_qualified": null,
"image": "1f385-1f3fc.png",
- "sheet_x": 8,
- "sheet_y": 13,
- "added_in": "8.0",
+ "sheet_x": 7,
+ "sheet_y": 10,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
"1F3FD": {
"unified": "1F385-1F3FD",
"non_qualified": null,
"image": "1f385-1f3fd.png",
- "sheet_x": 8,
- "sheet_y": 14,
- "added_in": "8.0",
+ "sheet_x": 7,
+ "sheet_y": 11,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
"1F3FE": {
"unified": "1F385-1F3FE",
"non_qualified": null,
"image": "1f385-1f3fe.png",
- "sheet_x": 8,
- "sheet_y": 15,
- "added_in": "8.0",
+ "sheet_x": 7,
+ "sheet_y": 12,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
"1F3FF": {
"unified": "1F385-1F3FF",
"non_qualified": null,
"image": "1f385-1f3ff.png",
- "sheet_x": 8,
- "sheet_y": 16,
- "added_in": "8.0",
+ "sheet_x": 7,
+ "sheet_y": 13,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
}
}
},
@@ -10539,20 +10534,20 @@
"softbank": "E117",
"google": "FE515",
"image": "1f386.png",
- "sheet_x": 8,
- "sheet_y": 17,
+ "sheet_x": 7,
+ "sheet_y": 14,
"short_name": "fireworks",
"short_names": ["fireworks"],
"text": null,
"texts": null,
"category": "Activities",
- "sort_order": 3,
- "added_in": "6.0",
+ "subcategory": "event",
+ "sort_order": 1040,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "FIREWORK SPARKLER",
@@ -10563,20 +10558,20 @@
"softbank": "E440",
"google": "FE51D",
"image": "1f387.png",
- "sheet_x": 8,
- "sheet_y": 18,
+ "sheet_x": 7,
+ "sheet_y": 15,
"short_name": "sparkler",
"short_names": ["sparkler"],
"text": null,
"texts": null,
"category": "Activities",
- "sort_order": 4,
- "added_in": "6.0",
+ "subcategory": "event",
+ "sort_order": 1041,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "BALLOON",
@@ -10587,20 +10582,20 @@
"softbank": "E310",
"google": "FE516",
"image": "1f388.png",
- "sheet_x": 8,
- "sheet_y": 19,
+ "sheet_x": 7,
+ "sheet_y": 16,
"short_name": "balloon",
"short_names": ["balloon"],
"text": null,
"texts": null,
"category": "Activities",
- "sort_order": 7,
- "added_in": "6.0",
+ "subcategory": "event",
+ "sort_order": 1044,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "PARTY POPPER",
@@ -10611,20 +10606,20 @@
"softbank": "E312",
"google": "FE517",
"image": "1f389.png",
- "sheet_x": 8,
- "sheet_y": 20,
+ "sheet_x": 7,
+ "sheet_y": 17,
"short_name": "tada",
"short_names": ["tada"],
"text": null,
"texts": null,
"category": "Activities",
- "sort_order": 8,
- "added_in": "6.0",
+ "subcategory": "event",
+ "sort_order": 1045,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "CONFETTI BALL",
@@ -10635,20 +10630,20 @@
"softbank": null,
"google": "FE520",
"image": "1f38a.png",
- "sheet_x": 8,
- "sheet_y": 21,
+ "sheet_x": 7,
+ "sheet_y": 18,
"short_name": "confetti_ball",
"short_names": ["confetti_ball"],
"text": null,
"texts": null,
"category": "Activities",
- "sort_order": 9,
- "added_in": "6.0",
+ "subcategory": "event",
+ "sort_order": 1046,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "TANABATA TREE",
@@ -10659,20 +10654,20 @@
"softbank": null,
"google": "FE521",
"image": "1f38b.png",
- "sheet_x": 8,
- "sheet_y": 22,
+ "sheet_x": 7,
+ "sheet_y": 19,
"short_name": "tanabata_tree",
"short_names": ["tanabata_tree"],
"text": null,
"texts": null,
"category": "Activities",
- "sort_order": 10,
- "added_in": "6.0",
+ "subcategory": "event",
+ "sort_order": 1047,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "CROSSED FLAGS",
@@ -10683,20 +10678,20 @@
"softbank": "E143",
"google": "FE514",
"image": "1f38c.png",
- "sheet_x": 8,
- "sheet_y": 23,
+ "sheet_x": 7,
+ "sheet_y": 20,
"short_name": "crossed_flags",
"short_names": ["crossed_flags"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 3,
- "added_in": "6.0",
+ "subcategory": "flag",
+ "sort_order": 1609,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "PINE DECORATION",
@@ -10707,20 +10702,20 @@
"softbank": "E436",
"google": "FE518",
"image": "1f38d.png",
- "sheet_x": 8,
- "sheet_y": 24,
+ "sheet_x": 7,
+ "sheet_y": 21,
"short_name": "bamboo",
"short_names": ["bamboo"],
"text": null,
"texts": null,
"category": "Activities",
- "sort_order": 11,
- "added_in": "6.0",
+ "subcategory": "event",
+ "sort_order": 1048,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "JAPANESE DOLLS",
@@ -10731,20 +10726,20 @@
"softbank": "E438",
"google": "FE519",
"image": "1f38e.png",
- "sheet_x": 8,
- "sheet_y": 25,
+ "sheet_x": 7,
+ "sheet_y": 22,
"short_name": "dolls",
"short_names": ["dolls"],
"text": null,
"texts": null,
"category": "Activities",
- "sort_order": 12,
- "added_in": "6.0",
+ "subcategory": "event",
+ "sort_order": 1049,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "CARP STREAMER",
@@ -10755,20 +10750,20 @@
"softbank": "E43B",
"google": "FE51C",
"image": "1f38f.png",
- "sheet_x": 8,
- "sheet_y": 26,
+ "sheet_x": 7,
+ "sheet_y": 23,
"short_name": "flags",
"short_names": ["flags"],
"text": null,
"texts": null,
"category": "Activities",
- "sort_order": 13,
- "added_in": "6.0",
+ "subcategory": "event",
+ "sort_order": 1050,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "WIND CHIME",
@@ -10779,20 +10774,20 @@
"softbank": "E442",
"google": "FE51E",
"image": "1f390.png",
- "sheet_x": 8,
- "sheet_y": 27,
+ "sheet_x": 7,
+ "sheet_y": 24,
"short_name": "wind_chime",
"short_names": ["wind_chime"],
"text": null,
"texts": null,
"category": "Activities",
- "sort_order": 14,
- "added_in": "6.0",
+ "subcategory": "event",
+ "sort_order": 1051,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "MOON VIEWING CEREMONY",
@@ -10803,20 +10798,20 @@
"softbank": "E446",
"google": "FE017",
"image": "1f391.png",
- "sheet_x": 8,
- "sheet_y": 28,
+ "sheet_x": 7,
+ "sheet_y": 25,
"short_name": "rice_scene",
"short_names": ["rice_scene"],
"text": null,
"texts": null,
"category": "Activities",
- "sort_order": 15,
- "added_in": "6.0",
+ "subcategory": "event",
+ "sort_order": 1052,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "SCHOOL SATCHEL",
@@ -10827,20 +10822,20 @@
"softbank": "E43A",
"google": "FE51B",
"image": "1f392.png",
- "sheet_x": 8,
- "sheet_y": 29,
+ "sheet_x": 7,
+ "sheet_y": 26,
"short_name": "school_satchel",
"short_names": ["school_satchel"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 452,
- "added_in": "6.0",
+ "category": "Objects",
+ "subcategory": "clothing",
+ "sort_order": 1148,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "GRADUATION CAP",
@@ -10851,23 +10846,23 @@
"softbank": "E439",
"google": "FE51A",
"image": "1f393.png",
- "sheet_x": 8,
- "sheet_y": 30,
+ "sheet_x": 7,
+ "sheet_y": 27,
"short_name": "mortar_board",
"short_names": ["mortar_board"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 463,
- "added_in": "6.0",
+ "category": "Objects",
+ "subcategory": "clothing",
+ "sort_order": 1162,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": null,
+ "name": "MILITARY MEDAL",
"unified": "1F396-FE0F",
"non_qualified": "1F396",
"docomo": null,
@@ -10875,23 +10870,23 @@
"softbank": null,
"google": null,
"image": "1f396-fe0f.png",
- "sheet_x": 8,
- "sheet_y": 31,
+ "sheet_x": 7,
+ "sheet_y": 28,
"short_name": "medal",
"short_names": ["medal"],
"text": null,
"texts": null,
"category": "Activities",
- "sort_order": 22,
- "added_in": "7.0",
+ "subcategory": "award-medal",
+ "sort_order": 1059,
+ "added_in": "0.7",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
- "name": null,
+ "name": "REMINDER RIBBON",
"unified": "1F397-FE0F",
"non_qualified": "1F397",
"docomo": null,
@@ -10899,23 +10894,23 @@
"softbank": null,
"google": null,
"image": "1f397-fe0f.png",
- "sheet_x": 8,
- "sheet_y": 32,
+ "sheet_x": 7,
+ "sheet_y": 29,
"short_name": "reminder_ribbon",
"short_names": ["reminder_ribbon"],
"text": null,
"texts": null,
"category": "Activities",
- "sort_order": 19,
- "added_in": "7.0",
+ "subcategory": "event",
+ "sort_order": 1056,
+ "added_in": "0.7",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
- "name": null,
+ "name": "STUDIO MICROPHONE",
"unified": "1F399-FE0F",
"non_qualified": "1F399",
"docomo": null,
@@ -10923,23 +10918,23 @@
"softbank": null,
"google": null,
"image": "1f399-fe0f.png",
- "sheet_x": 8,
- "sheet_y": 33,
+ "sheet_x": 7,
+ "sheet_y": 30,
"short_name": "studio_microphone",
"short_names": ["studio_microphone"],
"text": null,
"texts": null,
"category": "Objects",
- "sort_order": 13,
- "added_in": "7.0",
+ "subcategory": "music",
+ "sort_order": 1182,
+ "added_in": "0.7",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
- "name": null,
+ "name": "LEVEL SLIDER",
"unified": "1F39A-FE0F",
"non_qualified": "1F39A",
"docomo": null,
@@ -10947,23 +10942,23 @@
"softbank": null,
"google": null,
"image": "1f39a-fe0f.png",
- "sheet_x": 8,
- "sheet_y": 34,
+ "sheet_x": 7,
+ "sheet_y": 31,
"short_name": "level_slider",
"short_names": ["level_slider"],
"text": null,
"texts": null,
"category": "Objects",
- "sort_order": 14,
- "added_in": "7.0",
+ "subcategory": "music",
+ "sort_order": 1183,
+ "added_in": "0.7",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
- "name": null,
+ "name": "CONTROL KNOBS",
"unified": "1F39B-FE0F",
"non_qualified": "1F39B",
"docomo": null,
@@ -10971,23 +10966,23 @@
"softbank": null,
"google": null,
"image": "1f39b-fe0f.png",
- "sheet_x": 8,
- "sheet_y": 35,
+ "sheet_x": 7,
+ "sheet_y": 32,
"short_name": "control_knobs",
"short_names": ["control_knobs"],
"text": null,
"texts": null,
"category": "Objects",
- "sort_order": 15,
- "added_in": "7.0",
+ "subcategory": "music",
+ "sort_order": 1184,
+ "added_in": "0.7",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
- "name": null,
+ "name": "FILM FRAMES",
"unified": "1F39E-FE0F",
"non_qualified": "1F39E",
"docomo": null,
@@ -10995,23 +10990,23 @@
"softbank": null,
"google": null,
"image": "1f39e-fe0f.png",
- "sheet_x": 8,
- "sheet_y": 36,
+ "sheet_x": 7,
+ "sheet_y": 33,
"short_name": "film_frames",
"short_names": ["film_frames"],
"text": null,
"texts": null,
"category": "Objects",
- "sort_order": 45,
- "added_in": "7.0",
+ "subcategory": "light & video",
+ "sort_order": 1220,
+ "added_in": "0.7",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
- "name": null,
+ "name": "ADMISSION TICKETS",
"unified": "1F39F-FE0F",
"non_qualified": "1F39F",
"docomo": null,
@@ -11019,20 +11014,20 @@
"softbank": null,
"google": null,
"image": "1f39f-fe0f.png",
- "sheet_x": 8,
- "sheet_y": 37,
+ "sheet_x": 7,
+ "sheet_y": 34,
"short_name": "admission_tickets",
"short_names": ["admission_tickets"],
"text": null,
"texts": null,
"category": "Activities",
- "sort_order": 20,
- "added_in": "7.0",
+ "subcategory": "event",
+ "sort_order": 1057,
+ "added_in": "0.7",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
"name": "CAROUSEL HORSE",
@@ -11043,20 +11038,20 @@
"softbank": null,
"google": "FE7FC",
"image": "1f3a0.png",
- "sheet_x": 8,
- "sheet_y": 38,
+ "sheet_x": 7,
+ "sheet_y": 35,
"short_name": "carousel_horse",
"short_names": ["carousel_horse"],
"text": null,
"texts": null,
"category": "Travel & Places",
- "sort_order": 58,
- "added_in": "6.0",
+ "subcategory": "place-other",
+ "sort_order": 880,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "FERRIS WHEEL",
@@ -11067,20 +11062,20 @@
"softbank": "E124",
"google": "FE7FD",
"image": "1f3a1.png",
- "sheet_x": 8,
- "sheet_y": 39,
+ "sheet_x": 7,
+ "sheet_y": 36,
"short_name": "ferris_wheel",
"short_names": ["ferris_wheel"],
"text": null,
"texts": null,
"category": "Travel & Places",
- "sort_order": 59,
- "added_in": "6.0",
+ "subcategory": "place-other",
+ "sort_order": 882,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "ROLLER COASTER",
@@ -11091,20 +11086,20 @@
"softbank": "E433",
"google": "FE7FE",
"image": "1f3a2.png",
- "sheet_x": 8,
- "sheet_y": 40,
+ "sheet_x": 7,
+ "sheet_y": 37,
"short_name": "roller_coaster",
"short_names": ["roller_coaster"],
"text": null,
"texts": null,
"category": "Travel & Places",
- "sort_order": 60,
- "added_in": "6.0",
+ "subcategory": "place-other",
+ "sort_order": 883,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "FISHING POLE AND FISH",
@@ -11115,20 +11110,20 @@
"softbank": null,
"google": "FE7FF",
"image": "1f3a3.png",
- "sheet_x": 8,
- "sheet_y": 41,
+ "sheet_x": 7,
+ "sheet_y": 38,
"short_name": "fishing_pole_and_fish",
"short_names": ["fishing_pole_and_fish"],
"text": null,
"texts": null,
"category": "Activities",
- "sort_order": 49,
- "added_in": "6.0",
+ "subcategory": "sport",
+ "sort_order": 1086,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "MICROPHONE",
@@ -11139,20 +11134,20 @@
"softbank": "E03C",
"google": "FE800",
"image": "1f3a4.png",
- "sheet_x": 8,
- "sheet_y": 42,
+ "sheet_x": 7,
+ "sheet_y": 39,
"short_name": "microphone",
"short_names": ["microphone"],
"text": null,
"texts": null,
"category": "Objects",
- "sort_order": 16,
- "added_in": "6.0",
+ "subcategory": "music",
+ "sort_order": 1185,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "MOVIE CAMERA",
@@ -11163,20 +11158,20 @@
"softbank": "E03D",
"google": "FE801",
"image": "1f3a5.png",
- "sheet_x": 8,
- "sheet_y": 43,
+ "sheet_x": 7,
+ "sheet_y": 40,
"short_name": "movie_camera",
"short_names": ["movie_camera"],
"text": null,
"texts": null,
"category": "Objects",
- "sort_order": 44,
- "added_in": "6.0",
+ "subcategory": "light & video",
+ "sort_order": 1219,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "CINEMA",
@@ -11187,20 +11182,20 @@
"softbank": "E507",
"google": "FE802",
"image": "1f3a6.png",
- "sheet_x": 8,
- "sheet_y": 44,
+ "sheet_x": 7,
+ "sheet_y": 41,
"short_name": "cinema",
"short_names": ["cinema"],
"text": null,
"texts": null,
"category": "Symbols",
- "sort_order": 91,
- "added_in": "6.0",
+ "subcategory": "av-symbol",
+ "sort_order": 1475,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "HEADPHONE",
@@ -11211,20 +11206,20 @@
"softbank": "E30A",
"google": "FE803",
"image": "1f3a7.png",
- "sheet_x": 8,
- "sheet_y": 45,
+ "sheet_x": 7,
+ "sheet_y": 42,
"short_name": "headphones",
"short_names": ["headphones"],
"text": null,
"texts": null,
"category": "Objects",
- "sort_order": 17,
- "added_in": "6.0",
+ "subcategory": "music",
+ "sort_order": 1186,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "ARTIST PALETTE",
@@ -11235,20 +11230,20 @@
"softbank": "E502",
"google": "FE804",
"image": "1f3a8.png",
- "sheet_x": 8,
- "sheet_y": 46,
+ "sheet_x": 7,
+ "sheet_y": 43,
"short_name": "art",
"short_names": ["art"],
"text": null,
"texts": null,
"category": "Activities",
- "sort_order": 74,
- "added_in": "6.0",
+ "subcategory": "arts & crafts",
+ "sort_order": 1118,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "TOP HAT",
@@ -11259,20 +11254,20 @@
"softbank": "E503",
"google": "FE805",
"image": "1f3a9.png",
- "sheet_x": 8,
- "sheet_y": 47,
+ "sheet_x": 7,
+ "sheet_y": 44,
"short_name": "tophat",
"short_names": ["tophat"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 462,
- "added_in": "6.0",
+ "category": "Objects",
+ "subcategory": "clothing",
+ "sort_order": 1161,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "CIRCUS TENT",
@@ -11283,20 +11278,20 @@
"softbank": null,
"google": "FE806",
"image": "1f3aa.png",
- "sheet_x": 8,
- "sheet_y": 48,
+ "sheet_x": 7,
+ "sheet_y": 45,
"short_name": "circus_tent",
"short_names": ["circus_tent"],
"text": null,
"texts": null,
"category": "Travel & Places",
- "sort_order": 62,
- "added_in": "6.0",
+ "subcategory": "place-other",
+ "sort_order": 885,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "TICKET",
@@ -11307,20 +11302,20 @@
"softbank": "E125",
"google": "FE807",
"image": "1f3ab.png",
- "sheet_x": 8,
- "sheet_y": 49,
+ "sheet_x": 7,
+ "sheet_y": 46,
"short_name": "ticket",
"short_names": ["ticket"],
"text": null,
"texts": null,
"category": "Activities",
- "sort_order": 21,
- "added_in": "6.0",
+ "subcategory": "event",
+ "sort_order": 1058,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "CLAPPER BOARD",
@@ -11331,20 +11326,20 @@
"softbank": "E324",
"google": "FE808",
"image": "1f3ac.png",
- "sheet_x": 8,
- "sheet_y": 50,
+ "sheet_x": 7,
+ "sheet_y": 47,
"short_name": "clapper",
"short_names": ["clapper"],
"text": null,
"texts": null,
"category": "Objects",
- "sort_order": 47,
- "added_in": "6.0",
+ "subcategory": "light & video",
+ "sort_order": 1222,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "PERFORMING ARTS",
@@ -11355,20 +11350,20 @@
"softbank": null,
"google": "FE809",
"image": "1f3ad.png",
- "sheet_x": 8,
- "sheet_y": 51,
+ "sheet_x": 7,
+ "sheet_y": 48,
"short_name": "performing_arts",
"short_names": ["performing_arts"],
"text": null,
"texts": null,
"category": "Activities",
- "sort_order": 72,
- "added_in": "6.0",
+ "subcategory": "arts & crafts",
+ "sort_order": 1116,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "VIDEO GAME",
@@ -11379,20 +11374,20 @@
"softbank": null,
"google": "FE80A",
"image": "1f3ae.png",
- "sheet_x": 8,
- "sheet_y": 52,
+ "sheet_x": 7,
+ "sheet_y": 49,
"short_name": "video_game",
"short_names": ["video_game"],
"text": null,
"texts": null,
"category": "Activities",
- "sort_order": 58,
- "added_in": "6.0",
+ "subcategory": "game",
+ "sort_order": 1099,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "DIRECT HIT",
@@ -11403,20 +11398,20 @@
"softbank": "E130",
"google": "FE80C",
"image": "1f3af.png",
- "sheet_x": 9,
- "sheet_y": 0,
+ "sheet_x": 7,
+ "sheet_y": 50,
"short_name": "dart",
"short_names": ["dart"],
"text": null,
"texts": null,
"category": "Activities",
- "sort_order": 54,
- "added_in": "6.0",
+ "subcategory": "game",
+ "sort_order": 1092,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "SLOT MACHINE",
@@ -11427,20 +11422,20 @@
"softbank": "E133",
"google": "FE80D",
"image": "1f3b0.png",
- "sheet_x": 9,
- "sheet_y": 1,
+ "sheet_x": 7,
+ "sheet_y": 51,
"short_name": "slot_machine",
"short_names": ["slot_machine"],
"text": null,
"texts": null,
"category": "Activities",
- "sort_order": 60,
- "added_in": "6.0",
+ "subcategory": "game",
+ "sort_order": 1101,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "BILLIARDS",
@@ -11451,20 +11446,20 @@
"softbank": "E42C",
"google": "FE80E",
"image": "1f3b1.png",
- "sheet_x": 9,
- "sheet_y": 2,
+ "sheet_x": 7,
+ "sheet_y": 52,
"short_name": "8ball",
"short_names": ["8ball"],
"text": null,
"texts": null,
"category": "Activities",
- "sort_order": 55,
- "added_in": "6.0",
+ "subcategory": "game",
+ "sort_order": 1096,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "GAME DIE",
@@ -11475,20 +11470,20 @@
"softbank": null,
"google": "FE80F",
"image": "1f3b2.png",
- "sheet_x": 9,
- "sheet_y": 3,
+ "sheet_x": 7,
+ "sheet_y": 53,
"short_name": "game_die",
"short_names": ["game_die"],
"text": null,
"texts": null,
"category": "Activities",
- "sort_order": 61,
- "added_in": "6.0",
+ "subcategory": "game",
+ "sort_order": 1102,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "BOWLING",
@@ -11499,20 +11494,20 @@
"softbank": null,
"google": "FE810",
"image": "1f3b3.png",
- "sheet_x": 9,
- "sheet_y": 4,
+ "sheet_x": 7,
+ "sheet_y": 54,
"short_name": "bowling",
"short_names": ["bowling"],
"text": null,
"texts": null,
"category": "Activities",
- "sort_order": 37,
- "added_in": "6.0",
+ "subcategory": "sport",
+ "sort_order": 1074,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "FLOWER PLAYING CARDS",
@@ -11523,20 +11518,20 @@
"softbank": null,
"google": "FE811",
"image": "1f3b4.png",
- "sheet_x": 9,
- "sheet_y": 5,
+ "sheet_x": 7,
+ "sheet_y": 55,
"short_name": "flower_playing_cards",
"short_names": ["flower_playing_cards"],
"text": null,
"texts": null,
"category": "Activities",
- "sort_order": 71,
- "added_in": "6.0",
+ "subcategory": "game",
+ "sort_order": 1115,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "MUSICAL NOTE",
@@ -11547,20 +11542,20 @@
"softbank": "E03E",
"google": "FE813",
"image": "1f3b5.png",
- "sheet_x": 9,
- "sheet_y": 6,
+ "sheet_x": 7,
+ "sheet_y": 56,
"short_name": "musical_note",
"short_names": ["musical_note"],
"text": null,
"texts": null,
"category": "Objects",
- "sort_order": 11,
- "added_in": "6.0",
+ "subcategory": "music",
+ "sort_order": 1180,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "MULTIPLE MUSICAL NOTES",
@@ -11571,20 +11566,20 @@
"softbank": "E326",
"google": "FE814",
"image": "1f3b6.png",
- "sheet_x": 9,
- "sheet_y": 7,
+ "sheet_x": 7,
+ "sheet_y": 57,
"short_name": "notes",
"short_names": ["notes"],
"text": null,
"texts": null,
"category": "Objects",
- "sort_order": 12,
- "added_in": "6.0",
+ "subcategory": "music",
+ "sort_order": 1181,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "SAXOPHONE",
@@ -11595,20 +11590,20 @@
"softbank": "E040",
"google": "FE815",
"image": "1f3b7.png",
- "sheet_x": 9,
- "sheet_y": 8,
+ "sheet_x": 7,
+ "sheet_y": 58,
"short_name": "saxophone",
"short_names": ["saxophone"],
"text": null,
"texts": null,
"category": "Objects",
- "sort_order": 19,
- "added_in": "6.0",
+ "subcategory": "musical-instrument",
+ "sort_order": 1188,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "GUITAR",
@@ -11619,20 +11614,20 @@
"softbank": "E041",
"google": "FE816",
"image": "1f3b8.png",
- "sheet_x": 9,
- "sheet_y": 9,
+ "sheet_x": 7,
+ "sheet_y": 59,
"short_name": "guitar",
"short_names": ["guitar"],
"text": null,
"texts": null,
"category": "Objects",
- "sort_order": 20,
- "added_in": "6.0",
+ "subcategory": "musical-instrument",
+ "sort_order": 1190,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "MUSICAL KEYBOARD",
@@ -11643,20 +11638,20 @@
"softbank": null,
"google": "FE817",
"image": "1f3b9.png",
- "sheet_x": 9,
- "sheet_y": 10,
+ "sheet_x": 7,
+ "sheet_y": 60,
"short_name": "musical_keyboard",
"short_names": ["musical_keyboard"],
"text": null,
"texts": null,
"category": "Objects",
- "sort_order": 21,
- "added_in": "6.0",
+ "subcategory": "musical-instrument",
+ "sort_order": 1191,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "TRUMPET",
@@ -11667,20 +11662,20 @@
"softbank": "E042",
"google": "FE818",
"image": "1f3ba.png",
- "sheet_x": 9,
- "sheet_y": 11,
+ "sheet_x": 8,
+ "sheet_y": 0,
"short_name": "trumpet",
"short_names": ["trumpet"],
"text": null,
"texts": null,
"category": "Objects",
- "sort_order": 22,
- "added_in": "6.0",
+ "subcategory": "musical-instrument",
+ "sort_order": 1192,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "VIOLIN",
@@ -11691,20 +11686,20 @@
"softbank": null,
"google": "FE819",
"image": "1f3bb.png",
- "sheet_x": 9,
- "sheet_y": 12,
+ "sheet_x": 8,
+ "sheet_y": 1,
"short_name": "violin",
"short_names": ["violin"],
"text": null,
"texts": null,
"category": "Objects",
- "sort_order": 23,
- "added_in": "6.0",
+ "subcategory": "musical-instrument",
+ "sort_order": 1193,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "MUSICAL SCORE",
@@ -11715,20 +11710,20 @@
"softbank": null,
"google": "FE81A",
"image": "1f3bc.png",
- "sheet_x": 9,
- "sheet_y": 13,
+ "sheet_x": 8,
+ "sheet_y": 2,
"short_name": "musical_score",
"short_names": ["musical_score"],
"text": null,
"texts": null,
"category": "Objects",
- "sort_order": 10,
- "added_in": "6.0",
+ "subcategory": "music",
+ "sort_order": 1179,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "RUNNING SHIRT WITH SASH",
@@ -11739,20 +11734,20 @@
"softbank": null,
"google": "FE7D0",
"image": "1f3bd.png",
- "sheet_x": 9,
- "sheet_y": 14,
+ "sheet_x": 8,
+ "sheet_y": 3,
"short_name": "running_shirt_with_sash",
"short_names": ["running_shirt_with_sash"],
"text": null,
"texts": null,
"category": "Activities",
- "sort_order": 50,
- "added_in": "6.0",
+ "subcategory": "sport",
+ "sort_order": 1088,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "TENNIS RACQUET AND BALL",
@@ -11763,20 +11758,20 @@
"softbank": "E015",
"google": "FE7D3",
"image": "1f3be.png",
- "sheet_x": 9,
- "sheet_y": 15,
+ "sheet_x": 8,
+ "sheet_y": 4,
"short_name": "tennis",
"short_names": ["tennis"],
"text": null,
"texts": null,
"category": "Activities",
- "sort_order": 35,
- "added_in": "6.0",
+ "subcategory": "sport",
+ "sort_order": 1072,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "SKI AND SKI BOOT",
@@ -11787,20 +11782,20 @@
"softbank": "E013",
"google": "FE7D5",
"image": "1f3bf.png",
- "sheet_x": 9,
- "sheet_y": 16,
+ "sheet_x": 8,
+ "sheet_y": 5,
"short_name": "ski",
"short_names": ["ski"],
"text": null,
"texts": null,
"category": "Activities",
- "sort_order": 51,
- "added_in": "6.0",
+ "subcategory": "sport",
+ "sort_order": 1089,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "BASKETBALL AND HOOP",
@@ -11811,20 +11806,20 @@
"softbank": "E42A",
"google": "FE7D6",
"image": "1f3c0.png",
- "sheet_x": 9,
- "sheet_y": 17,
+ "sheet_x": 8,
+ "sheet_y": 6,
"short_name": "basketball",
"short_names": ["basketball"],
"text": null,
"texts": null,
"category": "Activities",
- "sort_order": 31,
- "added_in": "6.0",
+ "subcategory": "sport",
+ "sort_order": 1068,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "CHEQUERED FLAG",
@@ -11835,20 +11830,20 @@
"softbank": "E132",
"google": "FE7D7",
"image": "1f3c1.png",
- "sheet_x": 9,
- "sheet_y": 18,
+ "sheet_x": 8,
+ "sheet_y": 7,
"short_name": "checkered_flag",
"short_names": ["checkered_flag"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 1,
- "added_in": "6.0",
+ "subcategory": "flag",
+ "sort_order": 1607,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "SNOWBOARDER",
@@ -11859,90 +11854,85 @@
"softbank": null,
"google": "FE7D8",
"image": "1f3c2.png",
- "sheet_x": 9,
- "sheet_y": 19,
+ "sheet_x": 8,
+ "sheet_y": 8,
"short_name": "snowboarder",
"short_names": ["snowboarder"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 277,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "person-sport",
+ "sort_order": 442,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": true,
"skin_variations": {
"1F3FB": {
"unified": "1F3C2-1F3FB",
"non_qualified": null,
"image": "1f3c2-1f3fb.png",
- "sheet_x": 9,
- "sheet_y": 20,
- "added_in": "8.0",
+ "sheet_x": 8,
+ "sheet_y": 9,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
"1F3FC": {
"unified": "1F3C2-1F3FC",
"non_qualified": null,
"image": "1f3c2-1f3fc.png",
- "sheet_x": 9,
- "sheet_y": 21,
- "added_in": "8.0",
+ "sheet_x": 8,
+ "sheet_y": 10,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
"1F3FD": {
"unified": "1F3C2-1F3FD",
"non_qualified": null,
"image": "1f3c2-1f3fd.png",
- "sheet_x": 9,
- "sheet_y": 22,
- "added_in": "8.0",
+ "sheet_x": 8,
+ "sheet_y": 11,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
"1F3FE": {
"unified": "1F3C2-1F3FE",
"non_qualified": null,
"image": "1f3c2-1f3fe.png",
- "sheet_x": 9,
- "sheet_y": 23,
- "added_in": "8.0",
+ "sheet_x": 8,
+ "sheet_y": 12,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
"1F3FF": {
"unified": "1F3C2-1F3FF",
"non_qualified": null,
"image": "1f3c2-1f3ff.png",
- "sheet_x": 9,
- "sheet_y": 24,
- "added_in": "8.0",
+ "sheet_x": 8,
+ "sheet_y": 13,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
}
}
},
{
- "name": null,
+ "name": "WOMAN RUNNING",
"unified": "1F3C3-200D-2640-FE0F",
"non_qualified": "1F3C3-200D-2640",
"docomo": null,
@@ -11950,90 +11940,85 @@
"softbank": null,
"google": null,
"image": "1f3c3-200d-2640-fe0f.png",
- "sheet_x": 9,
- "sheet_y": 25,
+ "sheet_x": 8,
+ "sheet_y": 14,
"short_name": "woman-running",
"short_names": ["woman-running"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 253,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "person-activity",
+ "sort_order": 426,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": false,
"skin_variations": {
"1F3FB": {
"unified": "1F3C3-1F3FB-200D-2640-FE0F",
"non_qualified": "1F3C3-1F3FB-200D-2640",
"image": "1f3c3-1f3fb-200d-2640-fe0f.png",
- "sheet_x": 9,
- "sheet_y": 26,
- "added_in": "8.0",
+ "sheet_x": 8,
+ "sheet_y": 15,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FC": {
"unified": "1F3C3-1F3FC-200D-2640-FE0F",
"non_qualified": "1F3C3-1F3FC-200D-2640",
"image": "1f3c3-1f3fc-200d-2640-fe0f.png",
- "sheet_x": 9,
- "sheet_y": 27,
- "added_in": "8.0",
+ "sheet_x": 8,
+ "sheet_y": 16,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FD": {
"unified": "1F3C3-1F3FD-200D-2640-FE0F",
"non_qualified": "1F3C3-1F3FD-200D-2640",
"image": "1f3c3-1f3fd-200d-2640-fe0f.png",
- "sheet_x": 9,
- "sheet_y": 28,
- "added_in": "8.0",
+ "sheet_x": 8,
+ "sheet_y": 17,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FE": {
"unified": "1F3C3-1F3FE-200D-2640-FE0F",
"non_qualified": "1F3C3-1F3FE-200D-2640",
"image": "1f3c3-1f3fe-200d-2640-fe0f.png",
- "sheet_x": 9,
- "sheet_y": 29,
- "added_in": "8.0",
+ "sheet_x": 8,
+ "sheet_y": 18,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FF": {
"unified": "1F3C3-1F3FF-200D-2640-FE0F",
"non_qualified": "1F3C3-1F3FF-200D-2640",
"image": "1f3c3-1f3ff-200d-2640-fe0f.png",
- "sheet_x": 9,
- "sheet_y": 30,
- "added_in": "8.0",
+ "sheet_x": 8,
+ "sheet_y": 19,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
}
}
},
{
- "name": null,
+ "name": "MAN RUNNING",
"unified": "1F3C3-200D-2642-FE0F",
"non_qualified": "1F3C3-200D-2642",
"docomo": null,
@@ -12041,85 +12026,80 @@
"softbank": null,
"google": null,
"image": "1f3c3-200d-2642-fe0f.png",
- "sheet_x": 9,
- "sheet_y": 31,
+ "sheet_x": 8,
+ "sheet_y": 20,
"short_name": "man-running",
"short_names": ["man-running"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 252,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "person-activity",
+ "sort_order": 425,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": false,
"skin_variations": {
"1F3FB": {
"unified": "1F3C3-1F3FB-200D-2642-FE0F",
"non_qualified": "1F3C3-1F3FB-200D-2642",
"image": "1f3c3-1f3fb-200d-2642-fe0f.png",
- "sheet_x": 9,
- "sheet_y": 32,
- "added_in": "8.0",
+ "sheet_x": 8,
+ "sheet_y": 21,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FC": {
"unified": "1F3C3-1F3FC-200D-2642-FE0F",
"non_qualified": "1F3C3-1F3FC-200D-2642",
"image": "1f3c3-1f3fc-200d-2642-fe0f.png",
- "sheet_x": 9,
- "sheet_y": 33,
- "added_in": "8.0",
+ "sheet_x": 8,
+ "sheet_y": 22,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FD": {
"unified": "1F3C3-1F3FD-200D-2642-FE0F",
"non_qualified": "1F3C3-1F3FD-200D-2642",
"image": "1f3c3-1f3fd-200d-2642-fe0f.png",
- "sheet_x": 9,
- "sheet_y": 34,
- "added_in": "8.0",
+ "sheet_x": 8,
+ "sheet_y": 23,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FE": {
"unified": "1F3C3-1F3FE-200D-2642-FE0F",
"non_qualified": "1F3C3-1F3FE-200D-2642",
"image": "1f3c3-1f3fe-200d-2642-fe0f.png",
- "sheet_x": 9,
- "sheet_y": 35,
- "added_in": "8.0",
+ "sheet_x": 8,
+ "sheet_y": 24,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FF": {
"unified": "1F3C3-1F3FF-200D-2642-FE0F",
"non_qualified": "1F3C3-1F3FF-200D-2642",
"image": "1f3c3-1f3ff-200d-2642-fe0f.png",
- "sheet_x": 9,
- "sheet_y": 36,
- "added_in": "8.0",
+ "sheet_x": 8,
+ "sheet_y": 25,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
}
},
"obsoletes": "1F3C3"
@@ -12133,91 +12113,86 @@
"softbank": "E115",
"google": "FE7D9",
"image": "1f3c3.png",
- "sheet_x": 9,
- "sheet_y": 37,
+ "sheet_x": 8,
+ "sheet_y": 26,
"short_name": "runner",
"short_names": ["runner", "running"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 251,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "person-activity",
+ "sort_order": 424,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": true,
+ "has_img_facebook": true,
"skin_variations": {
"1F3FB": {
"unified": "1F3C3-1F3FB",
"non_qualified": null,
"image": "1f3c3-1f3fb.png",
- "sheet_x": 9,
- "sheet_y": 38,
- "added_in": "8.0",
+ "sheet_x": 8,
+ "sheet_y": 27,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": true
+ "has_img_facebook": true
},
"1F3FC": {
"unified": "1F3C3-1F3FC",
"non_qualified": null,
"image": "1f3c3-1f3fc.png",
- "sheet_x": 9,
- "sheet_y": 39,
- "added_in": "8.0",
+ "sheet_x": 8,
+ "sheet_y": 28,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": true
+ "has_img_facebook": true
},
"1F3FD": {
"unified": "1F3C3-1F3FD",
"non_qualified": null,
"image": "1f3c3-1f3fd.png",
- "sheet_x": 9,
- "sheet_y": 40,
- "added_in": "8.0",
+ "sheet_x": 8,
+ "sheet_y": 29,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": true
+ "has_img_facebook": true
},
"1F3FE": {
"unified": "1F3C3-1F3FE",
"non_qualified": null,
"image": "1f3c3-1f3fe.png",
- "sheet_x": 9,
- "sheet_y": 41,
- "added_in": "8.0",
+ "sheet_x": 8,
+ "sheet_y": 30,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": true
+ "has_img_facebook": true
},
"1F3FF": {
"unified": "1F3C3-1F3FF",
"non_qualified": null,
"image": "1f3c3-1f3ff.png",
- "sheet_x": 9,
- "sheet_y": 42,
- "added_in": "8.0",
+ "sheet_x": 8,
+ "sheet_y": 31,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": true
+ "has_img_facebook": true
}
},
"obsoleted_by": "1F3C3-200D-2642-FE0F"
},
{
- "name": null,
+ "name": "WOMAN SURFING",
"unified": "1F3C4-200D-2640-FE0F",
"non_qualified": "1F3C4-200D-2640",
"docomo": null,
@@ -12225,90 +12200,85 @@
"softbank": null,
"google": null,
"image": "1f3c4-200d-2640-fe0f.png",
- "sheet_x": 9,
- "sheet_y": 43,
+ "sheet_x": 8,
+ "sheet_y": 32,
"short_name": "woman-surfing",
"short_names": ["woman-surfing"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 283,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "person-sport",
+ "sort_order": 448,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": false,
"skin_variations": {
"1F3FB": {
"unified": "1F3C4-1F3FB-200D-2640-FE0F",
"non_qualified": "1F3C4-1F3FB-200D-2640",
"image": "1f3c4-1f3fb-200d-2640-fe0f.png",
- "sheet_x": 9,
- "sheet_y": 44,
- "added_in": "8.0",
+ "sheet_x": 8,
+ "sheet_y": 33,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FC": {
"unified": "1F3C4-1F3FC-200D-2640-FE0F",
"non_qualified": "1F3C4-1F3FC-200D-2640",
"image": "1f3c4-1f3fc-200d-2640-fe0f.png",
- "sheet_x": 9,
- "sheet_y": 45,
- "added_in": "8.0",
+ "sheet_x": 8,
+ "sheet_y": 34,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FD": {
"unified": "1F3C4-1F3FD-200D-2640-FE0F",
"non_qualified": "1F3C4-1F3FD-200D-2640",
"image": "1f3c4-1f3fd-200d-2640-fe0f.png",
- "sheet_x": 9,
- "sheet_y": 46,
- "added_in": "8.0",
+ "sheet_x": 8,
+ "sheet_y": 35,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FE": {
"unified": "1F3C4-1F3FE-200D-2640-FE0F",
"non_qualified": "1F3C4-1F3FE-200D-2640",
"image": "1f3c4-1f3fe-200d-2640-fe0f.png",
- "sheet_x": 9,
- "sheet_y": 47,
- "added_in": "8.0",
+ "sheet_x": 8,
+ "sheet_y": 36,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FF": {
"unified": "1F3C4-1F3FF-200D-2640-FE0F",
"non_qualified": "1F3C4-1F3FF-200D-2640",
"image": "1f3c4-1f3ff-200d-2640-fe0f.png",
- "sheet_x": 9,
- "sheet_y": 48,
- "added_in": "8.0",
+ "sheet_x": 8,
+ "sheet_y": 37,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
}
}
},
{
- "name": null,
+ "name": "MAN SURFING",
"unified": "1F3C4-200D-2642-FE0F",
"non_qualified": "1F3C4-200D-2642",
"docomo": null,
@@ -12316,85 +12286,80 @@
"softbank": null,
"google": null,
"image": "1f3c4-200d-2642-fe0f.png",
- "sheet_x": 9,
- "sheet_y": 49,
+ "sheet_x": 8,
+ "sheet_y": 38,
"short_name": "man-surfing",
"short_names": ["man-surfing"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 282,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "person-sport",
+ "sort_order": 447,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": false,
"skin_variations": {
"1F3FB": {
"unified": "1F3C4-1F3FB-200D-2642-FE0F",
"non_qualified": "1F3C4-1F3FB-200D-2642",
"image": "1f3c4-1f3fb-200d-2642-fe0f.png",
- "sheet_x": 9,
- "sheet_y": 50,
- "added_in": "8.0",
+ "sheet_x": 8,
+ "sheet_y": 39,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FC": {
"unified": "1F3C4-1F3FC-200D-2642-FE0F",
"non_qualified": "1F3C4-1F3FC-200D-2642",
"image": "1f3c4-1f3fc-200d-2642-fe0f.png",
- "sheet_x": 9,
- "sheet_y": 51,
- "added_in": "8.0",
+ "sheet_x": 8,
+ "sheet_y": 40,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FD": {
"unified": "1F3C4-1F3FD-200D-2642-FE0F",
"non_qualified": "1F3C4-1F3FD-200D-2642",
"image": "1f3c4-1f3fd-200d-2642-fe0f.png",
- "sheet_x": 9,
- "sheet_y": 52,
- "added_in": "8.0",
+ "sheet_x": 8,
+ "sheet_y": 41,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FE": {
"unified": "1F3C4-1F3FE-200D-2642-FE0F",
"non_qualified": "1F3C4-1F3FE-200D-2642",
"image": "1f3c4-1f3fe-200d-2642-fe0f.png",
- "sheet_x": 10,
- "sheet_y": 0,
- "added_in": "8.0",
+ "sheet_x": 8,
+ "sheet_y": 42,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FF": {
"unified": "1F3C4-1F3FF-200D-2642-FE0F",
"non_qualified": "1F3C4-1F3FF-200D-2642",
"image": "1f3c4-1f3ff-200d-2642-fe0f.png",
- "sheet_x": 10,
- "sheet_y": 1,
- "added_in": "8.0",
+ "sheet_x": 8,
+ "sheet_y": 43,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
}
},
"obsoletes": "1F3C4"
@@ -12408,85 +12373,80 @@
"softbank": "E017",
"google": "FE7DA",
"image": "1f3c4.png",
- "sheet_x": 10,
- "sheet_y": 2,
+ "sheet_x": 8,
+ "sheet_y": 44,
"short_name": "surfer",
"short_names": ["surfer"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 281,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "person-sport",
+ "sort_order": 446,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": true,
+ "has_img_facebook": true,
"skin_variations": {
"1F3FB": {
"unified": "1F3C4-1F3FB",
"non_qualified": null,
"image": "1f3c4-1f3fb.png",
- "sheet_x": 10,
- "sheet_y": 3,
- "added_in": "8.0",
+ "sheet_x": 8,
+ "sheet_y": 45,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": true
+ "has_img_facebook": true
},
"1F3FC": {
"unified": "1F3C4-1F3FC",
"non_qualified": null,
"image": "1f3c4-1f3fc.png",
- "sheet_x": 10,
- "sheet_y": 4,
- "added_in": "8.0",
+ "sheet_x": 8,
+ "sheet_y": 46,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": true
+ "has_img_facebook": true
},
"1F3FD": {
"unified": "1F3C4-1F3FD",
"non_qualified": null,
"image": "1f3c4-1f3fd.png",
- "sheet_x": 10,
- "sheet_y": 5,
- "added_in": "8.0",
+ "sheet_x": 8,
+ "sheet_y": 47,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": true
+ "has_img_facebook": true
},
"1F3FE": {
"unified": "1F3C4-1F3FE",
"non_qualified": null,
"image": "1f3c4-1f3fe.png",
- "sheet_x": 10,
- "sheet_y": 6,
- "added_in": "8.0",
+ "sheet_x": 8,
+ "sheet_y": 48,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": true
+ "has_img_facebook": true
},
"1F3FF": {
"unified": "1F3C4-1F3FF",
"non_qualified": null,
"image": "1f3c4-1f3ff.png",
- "sheet_x": 10,
- "sheet_y": 7,
- "added_in": "8.0",
+ "sheet_x": 8,
+ "sheet_y": 49,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": true
+ "has_img_facebook": true
}
},
"obsoleted_by": "1F3C4-200D-2642-FE0F"
@@ -12500,20 +12460,20 @@
"softbank": null,
"google": null,
"image": "1f3c5.png",
- "sheet_x": 10,
- "sheet_y": 8,
+ "sheet_x": 8,
+ "sheet_y": 50,
"short_name": "sports_medal",
"short_names": ["sports_medal"],
"text": null,
"texts": null,
"category": "Activities",
- "sort_order": 24,
- "added_in": "7.0",
+ "subcategory": "award-medal",
+ "sort_order": 1061,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
"name": "TROPHY",
@@ -12524,20 +12484,20 @@
"softbank": "E131",
"google": "FE7DB",
"image": "1f3c6.png",
- "sheet_x": 10,
- "sheet_y": 9,
+ "sheet_x": 8,
+ "sheet_y": 51,
"short_name": "trophy",
"short_names": ["trophy"],
"text": null,
"texts": null,
"category": "Activities",
- "sort_order": 23,
- "added_in": "6.0",
+ "subcategory": "award-medal",
+ "sort_order": 1060,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "HORSE RACING",
@@ -12548,85 +12508,80 @@
"softbank": null,
"google": null,
"image": "1f3c7.png",
- "sheet_x": 10,
- "sheet_y": 10,
+ "sheet_x": 8,
+ "sheet_y": 52,
"short_name": "horse_racing",
"short_names": ["horse_racing"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 275,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "person-sport",
+ "sort_order": 440,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": true,
"skin_variations": {
"1F3FB": {
"unified": "1F3C7-1F3FB",
"non_qualified": null,
"image": "1f3c7-1f3fb.png",
- "sheet_x": 10,
- "sheet_y": 11,
- "added_in": "8.0",
+ "sheet_x": 8,
+ "sheet_y": 53,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
"1F3FC": {
"unified": "1F3C7-1F3FC",
"non_qualified": null,
"image": "1f3c7-1f3fc.png",
- "sheet_x": 10,
- "sheet_y": 12,
- "added_in": "8.0",
+ "sheet_x": 8,
+ "sheet_y": 54,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
"1F3FD": {
"unified": "1F3C7-1F3FD",
"non_qualified": null,
"image": "1f3c7-1f3fd.png",
- "sheet_x": 10,
- "sheet_y": 13,
- "added_in": "8.0",
+ "sheet_x": 8,
+ "sheet_y": 55,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
"1F3FE": {
"unified": "1F3C7-1F3FE",
"non_qualified": null,
"image": "1f3c7-1f3fe.png",
- "sheet_x": 10,
- "sheet_y": 14,
- "added_in": "8.0",
+ "sheet_x": 8,
+ "sheet_y": 56,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
"1F3FF": {
"unified": "1F3C7-1F3FF",
"non_qualified": null,
"image": "1f3c7-1f3ff.png",
- "sheet_x": 10,
- "sheet_y": 15,
- "added_in": "8.0",
+ "sheet_x": 8,
+ "sheet_y": 57,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
}
}
},
@@ -12639,20 +12594,20 @@
"softbank": "E42B",
"google": "FE7DD",
"image": "1f3c8.png",
- "sheet_x": 10,
- "sheet_y": 16,
+ "sheet_x": 8,
+ "sheet_y": 58,
"short_name": "football",
"short_names": ["football"],
"text": null,
"texts": null,
"category": "Activities",
- "sort_order": 33,
- "added_in": "6.0",
+ "subcategory": "sport",
+ "sort_order": 1070,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "RUGBY FOOTBALL",
@@ -12663,23 +12618,23 @@
"softbank": null,
"google": null,
"image": "1f3c9.png",
- "sheet_x": 10,
- "sheet_y": 17,
+ "sheet_x": 8,
+ "sheet_y": 59,
"short_name": "rugby_football",
"short_names": ["rugby_football"],
"text": null,
"texts": null,
"category": "Activities",
- "sort_order": 34,
- "added_in": "6.0",
+ "subcategory": "sport",
+ "sort_order": 1071,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": null,
+ "name": "WOMAN SWIMMING",
"unified": "1F3CA-200D-2640-FE0F",
"non_qualified": "1F3CA-200D-2640",
"docomo": null,
@@ -12687,90 +12642,85 @@
"softbank": null,
"google": null,
"image": "1f3ca-200d-2640-fe0f.png",
- "sheet_x": 10,
- "sheet_y": 18,
+ "sheet_x": 8,
+ "sheet_y": 60,
"short_name": "woman-swimming",
"short_names": ["woman-swimming"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 289,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "person-sport",
+ "sort_order": 454,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": false,
"skin_variations": {
"1F3FB": {
"unified": "1F3CA-1F3FB-200D-2640-FE0F",
"non_qualified": "1F3CA-1F3FB-200D-2640",
"image": "1f3ca-1f3fb-200d-2640-fe0f.png",
- "sheet_x": 10,
- "sheet_y": 19,
- "added_in": "8.0",
+ "sheet_x": 9,
+ "sheet_y": 0,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FC": {
"unified": "1F3CA-1F3FC-200D-2640-FE0F",
"non_qualified": "1F3CA-1F3FC-200D-2640",
"image": "1f3ca-1f3fc-200d-2640-fe0f.png",
- "sheet_x": 10,
- "sheet_y": 20,
- "added_in": "8.0",
+ "sheet_x": 9,
+ "sheet_y": 1,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FD": {
"unified": "1F3CA-1F3FD-200D-2640-FE0F",
"non_qualified": "1F3CA-1F3FD-200D-2640",
"image": "1f3ca-1f3fd-200d-2640-fe0f.png",
- "sheet_x": 10,
- "sheet_y": 21,
- "added_in": "8.0",
+ "sheet_x": 9,
+ "sheet_y": 2,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FE": {
"unified": "1F3CA-1F3FE-200D-2640-FE0F",
"non_qualified": "1F3CA-1F3FE-200D-2640",
"image": "1f3ca-1f3fe-200d-2640-fe0f.png",
- "sheet_x": 10,
- "sheet_y": 22,
- "added_in": "8.0",
+ "sheet_x": 9,
+ "sheet_y": 3,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FF": {
"unified": "1F3CA-1F3FF-200D-2640-FE0F",
"non_qualified": "1F3CA-1F3FF-200D-2640",
"image": "1f3ca-1f3ff-200d-2640-fe0f.png",
- "sheet_x": 10,
- "sheet_y": 23,
- "added_in": "8.0",
+ "sheet_x": 9,
+ "sheet_y": 4,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
}
}
},
{
- "name": null,
+ "name": "MAN SWIMMING",
"unified": "1F3CA-200D-2642-FE0F",
"non_qualified": "1F3CA-200D-2642",
"docomo": null,
@@ -12778,85 +12728,80 @@
"softbank": null,
"google": null,
"image": "1f3ca-200d-2642-fe0f.png",
- "sheet_x": 10,
- "sheet_y": 24,
+ "sheet_x": 9,
+ "sheet_y": 5,
"short_name": "man-swimming",
"short_names": ["man-swimming"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 288,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "person-sport",
+ "sort_order": 453,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": false,
"skin_variations": {
"1F3FB": {
"unified": "1F3CA-1F3FB-200D-2642-FE0F",
"non_qualified": "1F3CA-1F3FB-200D-2642",
"image": "1f3ca-1f3fb-200d-2642-fe0f.png",
- "sheet_x": 10,
- "sheet_y": 25,
- "added_in": "8.0",
+ "sheet_x": 9,
+ "sheet_y": 6,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FC": {
"unified": "1F3CA-1F3FC-200D-2642-FE0F",
"non_qualified": "1F3CA-1F3FC-200D-2642",
"image": "1f3ca-1f3fc-200d-2642-fe0f.png",
- "sheet_x": 10,
- "sheet_y": 26,
- "added_in": "8.0",
+ "sheet_x": 9,
+ "sheet_y": 7,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FD": {
"unified": "1F3CA-1F3FD-200D-2642-FE0F",
"non_qualified": "1F3CA-1F3FD-200D-2642",
"image": "1f3ca-1f3fd-200d-2642-fe0f.png",
- "sheet_x": 10,
- "sheet_y": 27,
- "added_in": "8.0",
+ "sheet_x": 9,
+ "sheet_y": 8,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FE": {
"unified": "1F3CA-1F3FE-200D-2642-FE0F",
"non_qualified": "1F3CA-1F3FE-200D-2642",
"image": "1f3ca-1f3fe-200d-2642-fe0f.png",
- "sheet_x": 10,
- "sheet_y": 28,
- "added_in": "8.0",
+ "sheet_x": 9,
+ "sheet_y": 9,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FF": {
"unified": "1F3CA-1F3FF-200D-2642-FE0F",
"non_qualified": "1F3CA-1F3FF-200D-2642",
"image": "1f3ca-1f3ff-200d-2642-fe0f.png",
- "sheet_x": 10,
- "sheet_y": 29,
- "added_in": "8.0",
+ "sheet_x": 9,
+ "sheet_y": 10,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
}
},
"obsoletes": "1F3CA"
@@ -12870,91 +12815,86 @@
"softbank": "E42D",
"google": "FE7DE",
"image": "1f3ca.png",
- "sheet_x": 10,
- "sheet_y": 30,
+ "sheet_x": 9,
+ "sheet_y": 11,
"short_name": "swimmer",
"short_names": ["swimmer"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 287,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "person-sport",
+ "sort_order": 452,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": true,
+ "has_img_facebook": true,
"skin_variations": {
"1F3FB": {
"unified": "1F3CA-1F3FB",
"non_qualified": null,
"image": "1f3ca-1f3fb.png",
- "sheet_x": 10,
- "sheet_y": 31,
- "added_in": "8.0",
+ "sheet_x": 9,
+ "sheet_y": 12,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": true
+ "has_img_facebook": true
},
"1F3FC": {
"unified": "1F3CA-1F3FC",
"non_qualified": null,
"image": "1f3ca-1f3fc.png",
- "sheet_x": 10,
- "sheet_y": 32,
- "added_in": "8.0",
+ "sheet_x": 9,
+ "sheet_y": 13,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": true
+ "has_img_facebook": true
},
"1F3FD": {
"unified": "1F3CA-1F3FD",
"non_qualified": null,
"image": "1f3ca-1f3fd.png",
- "sheet_x": 10,
- "sheet_y": 33,
- "added_in": "8.0",
+ "sheet_x": 9,
+ "sheet_y": 14,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": true
+ "has_img_facebook": true
},
"1F3FE": {
"unified": "1F3CA-1F3FE",
"non_qualified": null,
"image": "1f3ca-1f3fe.png",
- "sheet_x": 10,
- "sheet_y": 34,
- "added_in": "8.0",
+ "sheet_x": 9,
+ "sheet_y": 15,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": true
+ "has_img_facebook": true
},
"1F3FF": {
"unified": "1F3CA-1F3FF",
"non_qualified": null,
"image": "1f3ca-1f3ff.png",
- "sheet_x": 10,
- "sheet_y": 35,
- "added_in": "8.0",
+ "sheet_x": 9,
+ "sheet_y": 16,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": true
+ "has_img_facebook": true
}
},
"obsoleted_by": "1F3CA-200D-2642-FE0F"
},
{
- "name": null,
+ "name": "WOMAN LIFTING WEIGHTS",
"unified": "1F3CB-FE0F-200D-2640-FE0F",
"non_qualified": null,
"docomo": null,
@@ -12962,90 +12902,85 @@
"softbank": null,
"google": null,
"image": "1f3cb-fe0f-200d-2640-fe0f.png",
- "sheet_x": 10,
- "sheet_y": 36,
+ "sheet_x": 9,
+ "sheet_y": 17,
"short_name": "woman-lifting-weights",
"short_names": ["woman-lifting-weights"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 295,
- "added_in": "7.0",
+ "category": "People & Body",
+ "subcategory": "person-sport",
+ "sort_order": 460,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": false,
- "has_img_messenger": false,
"skin_variations": {
"1F3FB": {
"unified": "1F3CB-1F3FB-200D-2640-FE0F",
"non_qualified": "1F3CB-1F3FB-200D-2640",
"image": "1f3cb-1f3fb-200d-2640-fe0f.png",
- "sheet_x": 10,
- "sheet_y": 37,
- "added_in": "8.0",
+ "sheet_x": 9,
+ "sheet_y": 18,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FC": {
"unified": "1F3CB-1F3FC-200D-2640-FE0F",
"non_qualified": "1F3CB-1F3FC-200D-2640",
"image": "1f3cb-1f3fc-200d-2640-fe0f.png",
- "sheet_x": 10,
- "sheet_y": 38,
- "added_in": "8.0",
+ "sheet_x": 9,
+ "sheet_y": 19,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FD": {
"unified": "1F3CB-1F3FD-200D-2640-FE0F",
"non_qualified": "1F3CB-1F3FD-200D-2640",
"image": "1f3cb-1f3fd-200d-2640-fe0f.png",
- "sheet_x": 10,
- "sheet_y": 39,
- "added_in": "8.0",
+ "sheet_x": 9,
+ "sheet_y": 20,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FE": {
"unified": "1F3CB-1F3FE-200D-2640-FE0F",
"non_qualified": "1F3CB-1F3FE-200D-2640",
"image": "1f3cb-1f3fe-200d-2640-fe0f.png",
- "sheet_x": 10,
- "sheet_y": 40,
- "added_in": "8.0",
+ "sheet_x": 9,
+ "sheet_y": 21,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FF": {
"unified": "1F3CB-1F3FF-200D-2640-FE0F",
"non_qualified": "1F3CB-1F3FF-200D-2640",
"image": "1f3cb-1f3ff-200d-2640-fe0f.png",
- "sheet_x": 10,
- "sheet_y": 41,
- "added_in": "8.0",
+ "sheet_x": 9,
+ "sheet_y": 22,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
}
}
},
{
- "name": null,
+ "name": "MAN LIFTING WEIGHTS",
"unified": "1F3CB-FE0F-200D-2642-FE0F",
"non_qualified": null,
"docomo": null,
@@ -13053,91 +12988,86 @@
"softbank": null,
"google": null,
"image": "1f3cb-fe0f-200d-2642-fe0f.png",
- "sheet_x": 10,
- "sheet_y": 42,
+ "sheet_x": 9,
+ "sheet_y": 23,
"short_name": "man-lifting-weights",
"short_names": ["man-lifting-weights"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 294,
- "added_in": "7.0",
+ "category": "People & Body",
+ "subcategory": "person-sport",
+ "sort_order": 459,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": false,
- "has_img_messenger": false,
"skin_variations": {
"1F3FB": {
"unified": "1F3CB-1F3FB-200D-2642-FE0F",
"non_qualified": "1F3CB-1F3FB-200D-2642",
"image": "1f3cb-1f3fb-200d-2642-fe0f.png",
- "sheet_x": 10,
- "sheet_y": 43,
- "added_in": "8.0",
+ "sheet_x": 9,
+ "sheet_y": 24,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FC": {
"unified": "1F3CB-1F3FC-200D-2642-FE0F",
"non_qualified": "1F3CB-1F3FC-200D-2642",
"image": "1f3cb-1f3fc-200d-2642-fe0f.png",
- "sheet_x": 10,
- "sheet_y": 44,
- "added_in": "8.0",
+ "sheet_x": 9,
+ "sheet_y": 25,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FD": {
"unified": "1F3CB-1F3FD-200D-2642-FE0F",
"non_qualified": "1F3CB-1F3FD-200D-2642",
"image": "1f3cb-1f3fd-200d-2642-fe0f.png",
- "sheet_x": 10,
- "sheet_y": 45,
- "added_in": "8.0",
+ "sheet_x": 9,
+ "sheet_y": 26,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FE": {
"unified": "1F3CB-1F3FE-200D-2642-FE0F",
"non_qualified": "1F3CB-1F3FE-200D-2642",
"image": "1f3cb-1f3fe-200d-2642-fe0f.png",
- "sheet_x": 10,
- "sheet_y": 46,
- "added_in": "8.0",
+ "sheet_x": 9,
+ "sheet_y": 27,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FF": {
"unified": "1F3CB-1F3FF-200D-2642-FE0F",
"non_qualified": "1F3CB-1F3FF-200D-2642",
"image": "1f3cb-1f3ff-200d-2642-fe0f.png",
- "sheet_x": 10,
- "sheet_y": 47,
- "added_in": "8.0",
+ "sheet_x": 9,
+ "sheet_y": 28,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
}
},
"obsoletes": "1F3CB-FE0F"
},
{
- "name": null,
+ "name": "PERSON LIFTING WEIGHTS",
"unified": "1F3CB-FE0F",
"non_qualified": "1F3CB",
"docomo": null,
@@ -13145,91 +13075,86 @@
"softbank": null,
"google": null,
"image": "1f3cb-fe0f.png",
- "sheet_x": 10,
- "sheet_y": 48,
+ "sheet_x": 9,
+ "sheet_y": 29,
"short_name": "weight_lifter",
"short_names": ["weight_lifter"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 293,
- "added_in": "7.0",
+ "category": "People & Body",
+ "subcategory": "person-sport",
+ "sort_order": 458,
+ "added_in": "0.7",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false,
+ "has_img_facebook": true,
"skin_variations": {
"1F3FB": {
"unified": "1F3CB-1F3FB",
"non_qualified": null,
"image": "1f3cb-1f3fb.png",
- "sheet_x": 10,
- "sheet_y": 49,
- "added_in": "8.0",
+ "sheet_x": 9,
+ "sheet_y": 30,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FC": {
"unified": "1F3CB-1F3FC",
"non_qualified": null,
"image": "1f3cb-1f3fc.png",
- "sheet_x": 10,
- "sheet_y": 50,
- "added_in": "8.0",
+ "sheet_x": 9,
+ "sheet_y": 31,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FD": {
"unified": "1F3CB-1F3FD",
"non_qualified": null,
"image": "1f3cb-1f3fd.png",
- "sheet_x": 10,
- "sheet_y": 51,
- "added_in": "8.0",
+ "sheet_x": 9,
+ "sheet_y": 32,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FE": {
"unified": "1F3CB-1F3FE",
"non_qualified": null,
"image": "1f3cb-1f3fe.png",
- "sheet_x": 10,
- "sheet_y": 52,
- "added_in": "8.0",
+ "sheet_x": 9,
+ "sheet_y": 33,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FF": {
"unified": "1F3CB-1F3FF",
"non_qualified": null,
"image": "1f3cb-1f3ff.png",
- "sheet_x": 11,
- "sheet_y": 0,
- "added_in": "8.0",
+ "sheet_x": 9,
+ "sheet_y": 34,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
}
},
"obsoleted_by": "1F3CB-FE0F-200D-2642-FE0F"
},
{
- "name": null,
+ "name": "WOMAN GOLFING",
"unified": "1F3CC-FE0F-200D-2640-FE0F",
"non_qualified": null,
"docomo": null,
@@ -13237,90 +13162,85 @@
"softbank": null,
"google": null,
"image": "1f3cc-fe0f-200d-2640-fe0f.png",
- "sheet_x": 11,
- "sheet_y": 1,
+ "sheet_x": 9,
+ "sheet_y": 35,
"short_name": "woman-golfing",
"short_names": ["woman-golfing"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 280,
- "added_in": "7.0",
+ "category": "People & Body",
+ "subcategory": "person-sport",
+ "sort_order": 445,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": false,
- "has_img_messenger": false,
"skin_variations": {
"1F3FB": {
"unified": "1F3CC-1F3FB-200D-2640-FE0F",
"non_qualified": "1F3CC-1F3FB-200D-2640",
"image": "1f3cc-1f3fb-200d-2640-fe0f.png",
- "sheet_x": 11,
- "sheet_y": 2,
- "added_in": "8.0",
+ "sheet_x": 9,
+ "sheet_y": 36,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FC": {
"unified": "1F3CC-1F3FC-200D-2640-FE0F",
"non_qualified": "1F3CC-1F3FC-200D-2640",
"image": "1f3cc-1f3fc-200d-2640-fe0f.png",
- "sheet_x": 11,
- "sheet_y": 3,
- "added_in": "8.0",
+ "sheet_x": 9,
+ "sheet_y": 37,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FD": {
"unified": "1F3CC-1F3FD-200D-2640-FE0F",
"non_qualified": "1F3CC-1F3FD-200D-2640",
"image": "1f3cc-1f3fd-200d-2640-fe0f.png",
- "sheet_x": 11,
- "sheet_y": 4,
- "added_in": "8.0",
+ "sheet_x": 9,
+ "sheet_y": 38,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FE": {
"unified": "1F3CC-1F3FE-200D-2640-FE0F",
"non_qualified": "1F3CC-1F3FE-200D-2640",
"image": "1f3cc-1f3fe-200d-2640-fe0f.png",
- "sheet_x": 11,
- "sheet_y": 5,
- "added_in": "8.0",
+ "sheet_x": 9,
+ "sheet_y": 39,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FF": {
"unified": "1F3CC-1F3FF-200D-2640-FE0F",
"non_qualified": "1F3CC-1F3FF-200D-2640",
"image": "1f3cc-1f3ff-200d-2640-fe0f.png",
- "sheet_x": 11,
- "sheet_y": 6,
- "added_in": "8.0",
+ "sheet_x": 9,
+ "sheet_y": 40,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
}
}
},
{
- "name": null,
+ "name": "MAN GOLFING",
"unified": "1F3CC-FE0F-200D-2642-FE0F",
"non_qualified": null,
"docomo": null,
@@ -13328,91 +13248,86 @@
"softbank": null,
"google": null,
"image": "1f3cc-fe0f-200d-2642-fe0f.png",
- "sheet_x": 11,
- "sheet_y": 7,
+ "sheet_x": 9,
+ "sheet_y": 41,
"short_name": "man-golfing",
"short_names": ["man-golfing"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 279,
- "added_in": "7.0",
+ "category": "People & Body",
+ "subcategory": "person-sport",
+ "sort_order": 444,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": false,
- "has_img_messenger": false,
"skin_variations": {
"1F3FB": {
"unified": "1F3CC-1F3FB-200D-2642-FE0F",
"non_qualified": "1F3CC-1F3FB-200D-2642",
"image": "1f3cc-1f3fb-200d-2642-fe0f.png",
- "sheet_x": 11,
- "sheet_y": 8,
- "added_in": "8.0",
+ "sheet_x": 9,
+ "sheet_y": 42,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FC": {
"unified": "1F3CC-1F3FC-200D-2642-FE0F",
"non_qualified": "1F3CC-1F3FC-200D-2642",
"image": "1f3cc-1f3fc-200d-2642-fe0f.png",
- "sheet_x": 11,
- "sheet_y": 9,
- "added_in": "8.0",
+ "sheet_x": 9,
+ "sheet_y": 43,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FD": {
"unified": "1F3CC-1F3FD-200D-2642-FE0F",
"non_qualified": "1F3CC-1F3FD-200D-2642",
"image": "1f3cc-1f3fd-200d-2642-fe0f.png",
- "sheet_x": 11,
- "sheet_y": 10,
- "added_in": "8.0",
+ "sheet_x": 9,
+ "sheet_y": 44,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FE": {
"unified": "1F3CC-1F3FE-200D-2642-FE0F",
"non_qualified": "1F3CC-1F3FE-200D-2642",
"image": "1f3cc-1f3fe-200d-2642-fe0f.png",
- "sheet_x": 11,
- "sheet_y": 11,
- "added_in": "8.0",
+ "sheet_x": 9,
+ "sheet_y": 45,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FF": {
"unified": "1F3CC-1F3FF-200D-2642-FE0F",
"non_qualified": "1F3CC-1F3FF-200D-2642",
"image": "1f3cc-1f3ff-200d-2642-fe0f.png",
- "sheet_x": 11,
- "sheet_y": 12,
- "added_in": "8.0",
+ "sheet_x": 9,
+ "sheet_y": 46,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
}
},
"obsoletes": "1F3CC-FE0F"
},
{
- "name": null,
+ "name": "PERSON GOLFING",
"unified": "1F3CC-FE0F",
"non_qualified": "1F3CC",
"docomo": null,
@@ -13420,91 +13335,86 @@
"softbank": null,
"google": null,
"image": "1f3cc-fe0f.png",
- "sheet_x": 11,
- "sheet_y": 13,
+ "sheet_x": 9,
+ "sheet_y": 47,
"short_name": "golfer",
"short_names": ["golfer"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 278,
- "added_in": "7.0",
+ "category": "People & Body",
+ "subcategory": "person-sport",
+ "sort_order": 443,
+ "added_in": "0.7",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false,
+ "has_img_facebook": true,
"skin_variations": {
"1F3FB": {
"unified": "1F3CC-1F3FB",
"non_qualified": null,
"image": "1f3cc-1f3fb.png",
- "sheet_x": 11,
- "sheet_y": 14,
- "added_in": "8.0",
+ "sheet_x": 9,
+ "sheet_y": 48,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FC": {
"unified": "1F3CC-1F3FC",
"non_qualified": null,
"image": "1f3cc-1f3fc.png",
- "sheet_x": 11,
- "sheet_y": 15,
- "added_in": "8.0",
+ "sheet_x": 9,
+ "sheet_y": 49,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FD": {
"unified": "1F3CC-1F3FD",
"non_qualified": null,
"image": "1f3cc-1f3fd.png",
- "sheet_x": 11,
- "sheet_y": 16,
- "added_in": "8.0",
+ "sheet_x": 9,
+ "sheet_y": 50,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FE": {
"unified": "1F3CC-1F3FE",
"non_qualified": null,
"image": "1f3cc-1f3fe.png",
- "sheet_x": 11,
- "sheet_y": 17,
- "added_in": "8.0",
+ "sheet_x": 9,
+ "sheet_y": 51,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FF": {
"unified": "1F3CC-1F3FF",
"non_qualified": null,
"image": "1f3cc-1f3ff.png",
- "sheet_x": 11,
- "sheet_y": 18,
- "added_in": "8.0",
+ "sheet_x": 9,
+ "sheet_y": 52,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
}
},
"obsoleted_by": "1F3CC-FE0F-200D-2642-FE0F"
},
{
- "name": null,
+ "name": "MOTORCYCLE",
"unified": "1F3CD-FE0F",
"non_qualified": "1F3CD",
"docomo": null,
@@ -13512,23 +13422,23 @@
"softbank": null,
"google": null,
"image": "1f3cd-fe0f.png",
- "sheet_x": 11,
- "sheet_y": 19,
+ "sheet_x": 9,
+ "sheet_y": 53,
"short_name": "racing_motorcycle",
"short_names": ["racing_motorcycle"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 303,
- "added_in": "7.0",
+ "category": "Travel & Places",
+ "subcategory": "transport-ground",
+ "sort_order": 916,
+ "added_in": "0.7",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
- "name": null,
+ "name": "RACING CAR",
"unified": "1F3CE-FE0F",
"non_qualified": "1F3CE",
"docomo": null,
@@ -13536,20 +13446,20 @@
"softbank": null,
"google": null,
"image": "1f3ce-fe0f.png",
- "sheet_x": 11,
- "sheet_y": 20,
+ "sheet_x": 9,
+ "sheet_y": 54,
"short_name": "racing_car",
"short_names": ["racing_car"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 302,
- "added_in": "7.0",
+ "category": "Travel & Places",
+ "subcategory": "transport-ground",
+ "sort_order": 915,
+ "added_in": "0.7",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
"name": "CRICKET BAT AND BALL",
@@ -13560,20 +13470,20 @@
"softbank": null,
"google": null,
"image": "1f3cf.png",
- "sheet_x": 11,
- "sheet_y": 21,
+ "sheet_x": 9,
+ "sheet_y": 55,
"short_name": "cricket_bat_and_ball",
"short_names": ["cricket_bat_and_ball"],
"text": null,
"texts": null,
"category": "Activities",
- "sort_order": 38,
- "added_in": "8.0",
+ "subcategory": "sport",
+ "sort_order": 1075,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
"name": "VOLLEYBALL",
@@ -13584,20 +13494,20 @@
"softbank": null,
"google": null,
"image": "1f3d0.png",
- "sheet_x": 11,
- "sheet_y": 22,
+ "sheet_x": 9,
+ "sheet_y": 56,
"short_name": "volleyball",
"short_names": ["volleyball"],
"text": null,
"texts": null,
"category": "Activities",
- "sort_order": 32,
- "added_in": "8.0",
+ "subcategory": "sport",
+ "sort_order": 1069,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
"name": "FIELD HOCKEY STICK AND BALL",
@@ -13608,20 +13518,20 @@
"softbank": null,
"google": null,
"image": "1f3d1.png",
- "sheet_x": 11,
- "sheet_y": 23,
+ "sheet_x": 9,
+ "sheet_y": 57,
"short_name": "field_hockey_stick_and_ball",
"short_names": ["field_hockey_stick_and_ball"],
"text": null,
"texts": null,
"category": "Activities",
- "sort_order": 39,
- "added_in": "8.0",
+ "subcategory": "sport",
+ "sort_order": 1076,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
"name": "ICE HOCKEY STICK AND PUCK",
@@ -13632,20 +13542,20 @@
"softbank": null,
"google": null,
"image": "1f3d2.png",
- "sheet_x": 11,
- "sheet_y": 24,
+ "sheet_x": 9,
+ "sheet_y": 58,
"short_name": "ice_hockey_stick_and_puck",
"short_names": ["ice_hockey_stick_and_puck"],
"text": null,
"texts": null,
"category": "Activities",
- "sort_order": 40,
- "added_in": "8.0",
+ "subcategory": "sport",
+ "sort_order": 1077,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
"name": "TABLE TENNIS PADDLE AND BALL",
@@ -13656,23 +13566,23 @@
"softbank": null,
"google": null,
"image": "1f3d3.png",
- "sheet_x": 11,
- "sheet_y": 25,
+ "sheet_x": 9,
+ "sheet_y": 59,
"short_name": "table_tennis_paddle_and_ball",
"short_names": ["table_tennis_paddle_and_ball"],
"text": null,
"texts": null,
"category": "Activities",
- "sort_order": 42,
- "added_in": "8.0",
+ "subcategory": "sport",
+ "sort_order": 1079,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
- "name": null,
+ "name": "SNOW-CAPPED MOUNTAIN",
"unified": "1F3D4-FE0F",
"non_qualified": "1F3D4",
"docomo": null,
@@ -13680,23 +13590,23 @@
"softbank": null,
"google": null,
"image": "1f3d4-fe0f.png",
- "sheet_x": 11,
- "sheet_y": 26,
+ "sheet_x": 9,
+ "sheet_y": 60,
"short_name": "snow_capped_mountain",
"short_names": ["snow_capped_mountain"],
"text": null,
"texts": null,
"category": "Travel & Places",
- "sort_order": 8,
- "added_in": "7.0",
+ "subcategory": "place-geographic",
+ "sort_order": 827,
+ "added_in": "0.7",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
- "name": null,
+ "name": "CAMPING",
"unified": "1F3D5-FE0F",
"non_qualified": "1F3D5",
"docomo": null,
@@ -13704,23 +13614,23 @@
"softbank": null,
"google": null,
"image": "1f3d5-fe0f.png",
- "sheet_x": 11,
- "sheet_y": 27,
+ "sheet_x": 10,
+ "sheet_y": 0,
"short_name": "camping",
"short_names": ["camping"],
"text": null,
"texts": null,
"category": "Travel & Places",
- "sort_order": 12,
- "added_in": "7.0",
+ "subcategory": "place-geographic",
+ "sort_order": 831,
+ "added_in": "0.7",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
- "name": null,
+ "name": "BEACH WITH UMBRELLA",
"unified": "1F3D6-FE0F",
"non_qualified": "1F3D6",
"docomo": null,
@@ -13728,23 +13638,23 @@
"softbank": null,
"google": null,
"image": "1f3d6-fe0f.png",
- "sheet_x": 11,
- "sheet_y": 28,
+ "sheet_x": 10,
+ "sheet_y": 1,
"short_name": "beach_with_umbrella",
"short_names": ["beach_with_umbrella"],
"text": null,
"texts": null,
"category": "Travel & Places",
- "sort_order": 13,
- "added_in": "7.0",
+ "subcategory": "place-geographic",
+ "sort_order": 832,
+ "added_in": "0.7",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
- "name": null,
+ "name": "BUILDING CONSTRUCTION",
"unified": "1F3D7-FE0F",
"non_qualified": "1F3D7",
"docomo": null,
@@ -13752,23 +13662,23 @@
"softbank": null,
"google": null,
"image": "1f3d7-fe0f.png",
- "sheet_x": 11,
- "sheet_y": 29,
+ "sheet_x": 10,
+ "sheet_y": 2,
"short_name": "building_construction",
"short_names": ["building_construction"],
"text": null,
"texts": null,
"category": "Travel & Places",
- "sort_order": 19,
- "added_in": "7.0",
+ "subcategory": "place-building",
+ "sort_order": 838,
+ "added_in": "0.7",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
- "name": null,
+ "name": "HOUSES",
"unified": "1F3D8-FE0F",
"non_qualified": "1F3D8",
"docomo": null,
@@ -13776,23 +13686,23 @@
"softbank": null,
"google": null,
"image": "1f3d8-fe0f.png",
- "sheet_x": 11,
- "sheet_y": 30,
+ "sheet_x": 10,
+ "sheet_y": 3,
"short_name": "house_buildings",
"short_names": ["house_buildings"],
"text": null,
"texts": null,
"category": "Travel & Places",
- "sort_order": 21,
- "added_in": "7.0",
+ "subcategory": "place-building",
+ "sort_order": 843,
+ "added_in": "0.7",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
- "name": null,
+ "name": "CITYSCAPE",
"unified": "1F3D9-FE0F",
"non_qualified": "1F3D9",
"docomo": null,
@@ -13800,23 +13710,23 @@
"softbank": null,
"google": null,
"image": "1f3d9-fe0f.png",
- "sheet_x": 11,
- "sheet_y": 31,
+ "sheet_x": 10,
+ "sheet_y": 4,
"short_name": "cityscape",
"short_names": ["cityscape"],
"text": null,
"texts": null,
"category": "Travel & Places",
- "sort_order": 50,
- "added_in": "7.0",
+ "subcategory": "place-other",
+ "sort_order": 873,
+ "added_in": "0.7",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
- "name": null,
+ "name": "DERELICT HOUSE",
"unified": "1F3DA-FE0F",
"non_qualified": "1F3DA",
"docomo": null,
@@ -13824,23 +13734,23 @@
"softbank": null,
"google": null,
"image": "1f3da-fe0f.png",
- "sheet_x": 11,
- "sheet_y": 32,
+ "sheet_x": 10,
+ "sheet_y": 5,
"short_name": "derelict_house_building",
"short_names": ["derelict_house_building"],
"text": null,
"texts": null,
"category": "Travel & Places",
- "sort_order": 22,
- "added_in": "7.0",
+ "subcategory": "place-building",
+ "sort_order": 844,
+ "added_in": "0.7",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
- "name": null,
+ "name": "CLASSICAL BUILDING",
"unified": "1F3DB-FE0F",
"non_qualified": "1F3DB",
"docomo": null,
@@ -13848,23 +13758,23 @@
"softbank": null,
"google": null,
"image": "1f3db-fe0f.png",
- "sheet_x": 11,
- "sheet_y": 33,
+ "sheet_x": 10,
+ "sheet_y": 6,
"short_name": "classical_building",
"short_names": ["classical_building"],
"text": null,
"texts": null,
"category": "Travel & Places",
- "sort_order": 18,
- "added_in": "7.0",
+ "subcategory": "place-building",
+ "sort_order": 837,
+ "added_in": "0.7",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
- "name": null,
+ "name": "DESERT",
"unified": "1F3DC-FE0F",
"non_qualified": "1F3DC",
"docomo": null,
@@ -13872,23 +13782,23 @@
"softbank": null,
"google": null,
"image": "1f3dc-fe0f.png",
- "sheet_x": 11,
- "sheet_y": 34,
+ "sheet_x": 10,
+ "sheet_y": 7,
"short_name": "desert",
"short_names": ["desert"],
"text": null,
"texts": null,
"category": "Travel & Places",
- "sort_order": 14,
- "added_in": "7.0",
+ "subcategory": "place-geographic",
+ "sort_order": 833,
+ "added_in": "0.7",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
- "name": null,
+ "name": "DESERT ISLAND",
"unified": "1F3DD-FE0F",
"non_qualified": "1F3DD",
"docomo": null,
@@ -13896,23 +13806,23 @@
"softbank": null,
"google": null,
"image": "1f3dd-fe0f.png",
- "sheet_x": 11,
- "sheet_y": 35,
+ "sheet_x": 10,
+ "sheet_y": 8,
"short_name": "desert_island",
"short_names": ["desert_island"],
"text": null,
"texts": null,
"category": "Travel & Places",
- "sort_order": 15,
- "added_in": "7.0",
+ "subcategory": "place-geographic",
+ "sort_order": 834,
+ "added_in": "0.7",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
- "name": null,
+ "name": "NATIONAL PARK",
"unified": "1F3DE-FE0F",
"non_qualified": "1F3DE",
"docomo": null,
@@ -13920,23 +13830,23 @@
"softbank": null,
"google": null,
"image": "1f3de-fe0f.png",
- "sheet_x": 11,
- "sheet_y": 36,
+ "sheet_x": 10,
+ "sheet_y": 9,
"short_name": "national_park",
"short_names": ["national_park"],
"text": null,
"texts": null,
"category": "Travel & Places",
- "sort_order": 16,
- "added_in": "7.0",
+ "subcategory": "place-geographic",
+ "sort_order": 835,
+ "added_in": "0.7",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
- "name": null,
+ "name": "STADIUM",
"unified": "1F3DF-FE0F",
"non_qualified": "1F3DF",
"docomo": null,
@@ -13944,20 +13854,20 @@
"softbank": null,
"google": null,
"image": "1f3df-fe0f.png",
- "sheet_x": 11,
- "sheet_y": 37,
+ "sheet_x": 10,
+ "sheet_y": 10,
"short_name": "stadium",
"short_names": ["stadium"],
"text": null,
"texts": null,
"category": "Travel & Places",
- "sort_order": 17,
- "added_in": "7.0",
+ "subcategory": "place-building",
+ "sort_order": 836,
+ "added_in": "0.7",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
"name": "HOUSE BUILDING",
@@ -13968,20 +13878,20 @@
"softbank": "E036",
"google": "FE4B0",
"image": "1f3e0.png",
- "sheet_x": 11,
- "sheet_y": 38,
+ "sheet_x": 10,
+ "sheet_y": 11,
"short_name": "house",
"short_names": ["house"],
"text": null,
"texts": null,
"category": "Travel & Places",
- "sort_order": 23,
- "added_in": "6.0",
+ "subcategory": "place-building",
+ "sort_order": 845,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "HOUSE WITH GARDEN",
@@ -13992,20 +13902,20 @@
"softbank": null,
"google": "FE4B1",
"image": "1f3e1.png",
- "sheet_x": 11,
- "sheet_y": 39,
+ "sheet_x": 10,
+ "sheet_y": 12,
"short_name": "house_with_garden",
"short_names": ["house_with_garden"],
"text": null,
"texts": null,
"category": "Travel & Places",
- "sort_order": 24,
- "added_in": "6.0",
+ "subcategory": "place-building",
+ "sort_order": 846,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "OFFICE BUILDING",
@@ -14016,20 +13926,20 @@
"softbank": "E038",
"google": "FE4B2",
"image": "1f3e2.png",
- "sheet_x": 11,
- "sheet_y": 40,
+ "sheet_x": 10,
+ "sheet_y": 13,
"short_name": "office",
"short_names": ["office"],
"text": null,
"texts": null,
"category": "Travel & Places",
- "sort_order": 25,
- "added_in": "6.0",
+ "subcategory": "place-building",
+ "sort_order": 847,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "JAPANESE POST OFFICE",
@@ -14040,20 +13950,20 @@
"softbank": "E153",
"google": "FE4B3",
"image": "1f3e3.png",
- "sheet_x": 11,
- "sheet_y": 41,
+ "sheet_x": 10,
+ "sheet_y": 14,
"short_name": "post_office",
"short_names": ["post_office"],
"text": null,
"texts": null,
"category": "Travel & Places",
- "sort_order": 26,
- "added_in": "6.0",
+ "subcategory": "place-building",
+ "sort_order": 848,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "EUROPEAN POST OFFICE",
@@ -14064,20 +13974,20 @@
"softbank": null,
"google": null,
"image": "1f3e4.png",
- "sheet_x": 11,
- "sheet_y": 42,
+ "sheet_x": 10,
+ "sheet_y": 15,
"short_name": "european_post_office",
"short_names": ["european_post_office"],
"text": null,
"texts": null,
"category": "Travel & Places",
- "sort_order": 27,
- "added_in": "6.0",
+ "subcategory": "place-building",
+ "sort_order": 849,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "HOSPITAL",
@@ -14088,20 +13998,20 @@
"softbank": "E155",
"google": "FE4B4",
"image": "1f3e5.png",
- "sheet_x": 11,
- "sheet_y": 43,
+ "sheet_x": 10,
+ "sheet_y": 16,
"short_name": "hospital",
"short_names": ["hospital"],
"text": null,
"texts": null,
"category": "Travel & Places",
- "sort_order": 28,
- "added_in": "6.0",
+ "subcategory": "place-building",
+ "sort_order": 850,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "BANK",
@@ -14112,20 +14022,20 @@
"softbank": "E14D",
"google": "FE4B5",
"image": "1f3e6.png",
- "sheet_x": 11,
- "sheet_y": 44,
+ "sheet_x": 10,
+ "sheet_y": 17,
"short_name": "bank",
"short_names": ["bank"],
"text": null,
"texts": null,
"category": "Travel & Places",
- "sort_order": 29,
- "added_in": "6.0",
+ "subcategory": "place-building",
+ "sort_order": 851,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "AUTOMATED TELLER MACHINE",
@@ -14136,20 +14046,20 @@
"softbank": "E154",
"google": "FE4B6",
"image": "1f3e7.png",
- "sheet_x": 11,
- "sheet_y": 45,
+ "sheet_x": 10,
+ "sheet_y": 18,
"short_name": "atm",
"short_names": ["atm"],
"text": null,
"texts": null,
"category": "Symbols",
- "sort_order": 1,
- "added_in": "6.0",
+ "subcategory": "transport-sign",
+ "sort_order": 1384,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "HOTEL",
@@ -14160,20 +14070,20 @@
"softbank": "E158",
"google": "FE4B7",
"image": "1f3e8.png",
- "sheet_x": 11,
- "sheet_y": 46,
+ "sheet_x": 10,
+ "sheet_y": 19,
"short_name": "hotel",
"short_names": ["hotel"],
"text": null,
"texts": null,
"category": "Travel & Places",
- "sort_order": 30,
- "added_in": "6.0",
+ "subcategory": "place-building",
+ "sort_order": 852,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "LOVE HOTEL",
@@ -14184,20 +14094,20 @@
"softbank": "E501",
"google": "FE4B8",
"image": "1f3e9.png",
- "sheet_x": 11,
- "sheet_y": 47,
+ "sheet_x": 10,
+ "sheet_y": 20,
"short_name": "love_hotel",
"short_names": ["love_hotel"],
"text": null,
"texts": null,
"category": "Travel & Places",
- "sort_order": 31,
- "added_in": "6.0",
+ "subcategory": "place-building",
+ "sort_order": 853,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "CONVENIENCE STORE",
@@ -14208,20 +14118,20 @@
"softbank": "E156",
"google": "FE4B9",
"image": "1f3ea.png",
- "sheet_x": 11,
- "sheet_y": 48,
+ "sheet_x": 10,
+ "sheet_y": 21,
"short_name": "convenience_store",
"short_names": ["convenience_store"],
"text": null,
"texts": null,
"category": "Travel & Places",
- "sort_order": 32,
- "added_in": "6.0",
+ "subcategory": "place-building",
+ "sort_order": 854,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "SCHOOL",
@@ -14232,20 +14142,20 @@
"softbank": "E157",
"google": "FE4BA",
"image": "1f3eb.png",
- "sheet_x": 11,
- "sheet_y": 49,
+ "sheet_x": 10,
+ "sheet_y": 22,
"short_name": "school",
"short_names": ["school"],
"text": null,
"texts": null,
"category": "Travel & Places",
- "sort_order": 33,
- "added_in": "6.0",
+ "subcategory": "place-building",
+ "sort_order": 855,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "DEPARTMENT STORE",
@@ -14256,20 +14166,20 @@
"softbank": "E504",
"google": "FE4BD",
"image": "1f3ec.png",
- "sheet_x": 11,
- "sheet_y": 50,
+ "sheet_x": 10,
+ "sheet_y": 23,
"short_name": "department_store",
"short_names": ["department_store"],
"text": null,
"texts": null,
"category": "Travel & Places",
- "sort_order": 34,
- "added_in": "6.0",
+ "subcategory": "place-building",
+ "sort_order": 856,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "FACTORY",
@@ -14280,20 +14190,20 @@
"softbank": "E508",
"google": "FE4C0",
"image": "1f3ed.png",
- "sheet_x": 11,
- "sheet_y": 51,
+ "sheet_x": 10,
+ "sheet_y": 24,
"short_name": "factory",
"short_names": ["factory"],
"text": null,
"texts": null,
"category": "Travel & Places",
- "sort_order": 35,
- "added_in": "6.0",
+ "subcategory": "place-building",
+ "sort_order": 857,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "IZAKAYA LANTERN",
@@ -14304,20 +14214,20 @@
"softbank": null,
"google": "FE4C2",
"image": "1f3ee.png",
- "sheet_x": 11,
- "sheet_y": 52,
+ "sheet_x": 10,
+ "sheet_y": 25,
"short_name": "izakaya_lantern",
"short_names": ["izakaya_lantern", "lantern"],
"text": null,
"texts": null,
"category": "Objects",
- "sort_order": 58,
- "added_in": "6.0",
+ "subcategory": "light & video",
+ "sort_order": 1233,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "JAPANESE CASTLE",
@@ -14328,20 +14238,20 @@
"softbank": "E505",
"google": "FE4BE",
"image": "1f3ef.png",
- "sheet_x": 12,
- "sheet_y": 0,
+ "sheet_x": 10,
+ "sheet_y": 26,
"short_name": "japanese_castle",
"short_names": ["japanese_castle"],
"text": null,
"texts": null,
"category": "Travel & Places",
- "sort_order": 36,
- "added_in": "6.0",
+ "subcategory": "place-building",
+ "sort_order": 858,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "EUROPEAN CASTLE",
@@ -14352,23 +14262,23 @@
"softbank": "E506",
"google": "FE4BF",
"image": "1f3f0.png",
- "sheet_x": 12,
- "sheet_y": 1,
+ "sheet_x": 10,
+ "sheet_y": 27,
"short_name": "european_castle",
"short_names": ["european_castle"],
"text": null,
"texts": null,
"category": "Travel & Places",
- "sort_order": 37,
- "added_in": "6.0",
+ "subcategory": "place-building",
+ "sort_order": 859,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": null,
+ "name": "RAINBOW FLAG",
"unified": "1F3F3-FE0F-200D-1F308",
"non_qualified": "1F3F3-200D-1F308",
"docomo": null,
@@ -14376,23 +14286,47 @@
"softbank": null,
"google": null,
"image": "1f3f3-fe0f-200d-1f308.png",
- "sheet_x": 12,
- "sheet_y": 2,
+ "sheet_x": 10,
+ "sheet_y": 28,
"short_name": "rainbow-flag",
"short_names": ["rainbow-flag"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 6,
- "added_in": "7.0",
+ "subcategory": "flag",
+ "sort_order": 1612,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
+ },
+ {
+ "name": "TRANSGENDER FLAG",
+ "unified": "1F3F3-FE0F-200D-26A7-FE0F",
+ "non_qualified": null,
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f3f3-fe0f-200d-26a7-fe0f.png",
+ "sheet_x": 10,
+ "sheet_y": 29,
+ "short_name": "transgender_flag",
+ "short_names": ["transgender_flag"],
+ "text": null,
+ "texts": null,
+ "category": "Flags",
+ "subcategory": "flag",
+ "sort_order": 1613,
+ "added_in": "13.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": false
},
{
- "name": null,
+ "name": "WHITE FLAG",
"unified": "1F3F3-FE0F",
"non_qualified": "1F3F3",
"docomo": null,
@@ -14400,23 +14334,23 @@
"softbank": null,
"google": null,
"image": "1f3f3-fe0f.png",
- "sheet_x": 12,
- "sheet_y": 3,
+ "sheet_x": 10,
+ "sheet_y": 30,
"short_name": "waving_white_flag",
"short_names": ["waving_white_flag"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 5,
- "added_in": "7.0",
+ "subcategory": "flag",
+ "sort_order": 1611,
+ "added_in": "0.7",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
- "name": null,
+ "name": "PIRATE FLAG",
"unified": "1F3F4-200D-2620-FE0F",
"non_qualified": "1F3F4-200D-2620",
"docomo": null,
@@ -14424,20 +14358,20 @@
"softbank": null,
"google": null,
"image": "1f3f4-200d-2620-fe0f.png",
- "sheet_x": 12,
- "sheet_y": 4,
+ "sheet_x": 10,
+ "sheet_y": 31,
"short_name": "pirate_flag",
"short_names": ["pirate_flag"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 7,
- "added_in": "7.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "subcategory": "flag",
+ "sort_order": 1614,
+ "added_in": "11.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
},
{
"name": "England Flag",
@@ -14448,20 +14382,20 @@
"softbank": null,
"google": null,
"image": "1f3f4-e0067-e0062-e0065-e006e-e0067-e007f.png",
- "sheet_x": 12,
- "sheet_y": 5,
+ "sheet_x": 10,
+ "sheet_y": 32,
"short_name": "flag-england",
"short_names": ["flag-england"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 266,
- "added_in": "7.0",
+ "subcategory": "subdivision-flag",
+ "sort_order": 1873,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
"name": "Scotland Flag",
@@ -14472,20 +14406,20 @@
"softbank": null,
"google": null,
"image": "1f3f4-e0067-e0062-e0073-e0063-e0074-e007f.png",
- "sheet_x": 12,
- "sheet_y": 6,
+ "sheet_x": 10,
+ "sheet_y": 33,
"short_name": "flag-scotland",
"short_names": ["flag-scotland"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 267,
- "added_in": "7.0",
+ "subcategory": "subdivision-flag",
+ "sort_order": 1874,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
"name": "Wales Flag",
@@ -14496,20 +14430,20 @@
"softbank": null,
"google": null,
"image": "1f3f4-e0067-e0062-e0077-e006c-e0073-e007f.png",
- "sheet_x": 12,
- "sheet_y": 7,
+ "sheet_x": 10,
+ "sheet_y": 34,
"short_name": "flag-wales",
"short_names": ["flag-wales"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 268,
- "added_in": "7.0",
+ "subcategory": "subdivision-flag",
+ "sort_order": 1875,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
"name": "WAVING BLACK FLAG",
@@ -14520,23 +14454,23 @@
"softbank": null,
"google": null,
"image": "1f3f4.png",
- "sheet_x": 12,
- "sheet_y": 8,
+ "sheet_x": 10,
+ "sheet_y": 35,
"short_name": "waving_black_flag",
"short_names": ["waving_black_flag"],
"text": null,
"texts": null,
"category": "Flags",
- "sort_order": 4,
- "added_in": "7.0",
+ "subcategory": "flag",
+ "sort_order": 1610,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
- "name": null,
+ "name": "ROSETTE",
"unified": "1F3F5-FE0F",
"non_qualified": "1F3F5",
"docomo": null,
@@ -14544,23 +14478,23 @@
"softbank": null,
"google": null,
"image": "1f3f5-fe0f.png",
- "sheet_x": 12,
- "sheet_y": 9,
+ "sheet_x": 10,
+ "sheet_y": 36,
"short_name": "rosette",
"short_names": ["rosette"],
"text": null,
"texts": null,
"category": "Animals & Nature",
- "sort_order": 106,
- "added_in": "7.0",
+ "subcategory": "plant-flower",
+ "sort_order": 663,
+ "added_in": "0.7",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
- "name": null,
+ "name": "LABEL",
"unified": "1F3F7-FE0F",
"non_qualified": "1F3F7",
"docomo": null,
@@ -14568,20 +14502,20 @@
"softbank": null,
"google": null,
"image": "1f3f7-fe0f.png",
- "sheet_x": 12,
- "sheet_y": 10,
+ "sheet_x": 10,
+ "sheet_y": 37,
"short_name": "label",
"short_names": ["label"],
"text": null,
"texts": null,
"category": "Objects",
- "sort_order": 75,
- "added_in": "7.0",
+ "subcategory": "book-paper",
+ "sort_order": 1251,
+ "added_in": "0.7",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
"name": "BADMINTON RACQUET AND SHUTTLECOCK",
@@ -14592,20 +14526,20 @@
"softbank": null,
"google": null,
"image": "1f3f8.png",
- "sheet_x": 12,
- "sheet_y": 11,
+ "sheet_x": 10,
+ "sheet_y": 38,
"short_name": "badminton_racquet_and_shuttlecock",
"short_names": ["badminton_racquet_and_shuttlecock"],
"text": null,
"texts": null,
"category": "Activities",
- "sort_order": 43,
- "added_in": "8.0",
+ "subcategory": "sport",
+ "sort_order": 1080,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
"name": "BOW AND ARROW",
@@ -14616,20 +14550,20 @@
"softbank": null,
"google": null,
"image": "1f3f9.png",
- "sheet_x": 12,
- "sheet_y": 12,
+ "sheet_x": 10,
+ "sheet_y": 39,
"short_name": "bow_and_arrow",
"short_names": ["bow_and_arrow"],
"text": null,
"texts": null,
"category": "Objects",
- "sort_order": 143,
- "added_in": "8.0",
+ "subcategory": "tool",
+ "sort_order": 1320,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
"name": "AMPHORA",
@@ -14640,20 +14574,20 @@
"softbank": null,
"google": null,
"image": "1f3fa.png",
- "sheet_x": 12,
- "sheet_y": 13,
+ "sheet_x": 10,
+ "sheet_y": 40,
"short_name": "amphora",
"short_names": ["amphora"],
"text": null,
"texts": null,
"category": "Food & Drink",
- "sort_order": 108,
- "added_in": "8.0",
+ "subcategory": "dishware",
+ "sort_order": 819,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
"name": "EMOJI MODIFIER FITZPATRICK TYPE-1-2",
@@ -14664,20 +14598,20 @@
"softbank": null,
"google": null,
"image": "1f3fb.png",
- "sheet_x": 12,
- "sheet_y": 14,
+ "sheet_x": 10,
+ "sheet_y": 41,
"short_name": "skin-tone-2",
"short_names": ["skin-tone-2"],
"text": null,
"texts": null,
- "category": "Skin Tones",
- "sort_order": 1,
- "added_in": "8.0",
+ "category": "Component",
+ "subcategory": "skin-tone",
+ "sort_order": 530,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
"name": "EMOJI MODIFIER FITZPATRICK TYPE-3",
@@ -14688,20 +14622,20 @@
"softbank": null,
"google": null,
"image": "1f3fc.png",
- "sheet_x": 12,
- "sheet_y": 15,
+ "sheet_x": 10,
+ "sheet_y": 42,
"short_name": "skin-tone-3",
"short_names": ["skin-tone-3"],
"text": null,
"texts": null,
- "category": "Skin Tones",
- "sort_order": 2,
- "added_in": "8.0",
+ "category": "Component",
+ "subcategory": "skin-tone",
+ "sort_order": 531,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
"name": "EMOJI MODIFIER FITZPATRICK TYPE-4",
@@ -14712,20 +14646,20 @@
"softbank": null,
"google": null,
"image": "1f3fd.png",
- "sheet_x": 12,
- "sheet_y": 16,
+ "sheet_x": 10,
+ "sheet_y": 43,
"short_name": "skin-tone-4",
"short_names": ["skin-tone-4"],
"text": null,
"texts": null,
- "category": "Skin Tones",
- "sort_order": 3,
- "added_in": "8.0",
+ "category": "Component",
+ "subcategory": "skin-tone",
+ "sort_order": 532,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
"name": "EMOJI MODIFIER FITZPATRICK TYPE-5",
@@ -14736,20 +14670,20 @@
"softbank": null,
"google": null,
"image": "1f3fe.png",
- "sheet_x": 12,
- "sheet_y": 17,
+ "sheet_x": 10,
+ "sheet_y": 44,
"short_name": "skin-tone-5",
"short_names": ["skin-tone-5"],
"text": null,
"texts": null,
- "category": "Skin Tones",
- "sort_order": 4,
- "added_in": "8.0",
+ "category": "Component",
+ "subcategory": "skin-tone",
+ "sort_order": 533,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
"name": "EMOJI MODIFIER FITZPATRICK TYPE-6",
@@ -14760,20 +14694,20 @@
"softbank": null,
"google": null,
"image": "1f3ff.png",
- "sheet_x": 12,
- "sheet_y": 18,
+ "sheet_x": 10,
+ "sheet_y": 45,
"short_name": "skin-tone-6",
"short_names": ["skin-tone-6"],
"text": null,
"texts": null,
- "category": "Skin Tones",
- "sort_order": 5,
- "added_in": "8.0",
+ "category": "Component",
+ "subcategory": "skin-tone",
+ "sort_order": 534,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
"name": "RAT",
@@ -14784,20 +14718,20 @@
"softbank": null,
"google": null,
"image": "1f400.png",
- "sheet_x": 12,
- "sheet_y": 19,
+ "sheet_x": 10,
+ "sheet_y": 46,
"short_name": "rat",
"short_names": ["rat"],
"text": null,
"texts": null,
"category": "Animals & Nature",
- "sort_order": 41,
- "added_in": "6.0",
+ "subcategory": "animal-mammal",
+ "sort_order": 583,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "MOUSE",
@@ -14808,20 +14742,20 @@
"softbank": null,
"google": null,
"image": "1f401.png",
- "sheet_x": 12,
- "sheet_y": 20,
+ "sheet_x": 10,
+ "sheet_y": 47,
"short_name": "mouse2",
"short_names": ["mouse2"],
"text": null,
"texts": null,
"category": "Animals & Nature",
- "sort_order": 40,
- "added_in": "6.0",
+ "subcategory": "animal-mammal",
+ "sort_order": 582,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "OX",
@@ -14832,20 +14766,20 @@
"softbank": null,
"google": null,
"image": "1f402.png",
- "sheet_x": 12,
- "sheet_y": 21,
+ "sheet_x": 10,
+ "sheet_y": 48,
"short_name": "ox",
"short_names": ["ox"],
"text": null,
"texts": null,
"category": "Animals & Nature",
- "sort_order": 22,
- "added_in": "6.0",
+ "subcategory": "animal-mammal",
+ "sort_order": 563,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "WATER BUFFALO",
@@ -14856,20 +14790,20 @@
"softbank": null,
"google": null,
"image": "1f403.png",
- "sheet_x": 12,
- "sheet_y": 22,
+ "sheet_x": 10,
+ "sheet_y": 49,
"short_name": "water_buffalo",
"short_names": ["water_buffalo"],
"text": null,
"texts": null,
"category": "Animals & Nature",
- "sort_order": 23,
- "added_in": "6.0",
+ "subcategory": "animal-mammal",
+ "sort_order": 564,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "COW",
@@ -14880,20 +14814,20 @@
"softbank": null,
"google": null,
"image": "1f404.png",
- "sheet_x": 12,
- "sheet_y": 23,
+ "sheet_x": 10,
+ "sheet_y": 50,
"short_name": "cow2",
"short_names": ["cow2"],
"text": null,
"texts": null,
"category": "Animals & Nature",
- "sort_order": 24,
- "added_in": "6.0",
+ "subcategory": "animal-mammal",
+ "sort_order": 565,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "TIGER",
@@ -14904,20 +14838,20 @@
"softbank": null,
"google": null,
"image": "1f405.png",
- "sheet_x": 12,
- "sheet_y": 24,
+ "sheet_x": 10,
+ "sheet_y": 51,
"short_name": "tiger2",
"short_names": ["tiger2"],
"text": null,
"texts": null,
"category": "Animals & Nature",
- "sort_order": 14,
- "added_in": "6.0",
+ "subcategory": "animal-mammal",
+ "sort_order": 552,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "LEOPARD",
@@ -14928,20 +14862,20 @@
"softbank": null,
"google": null,
"image": "1f406.png",
- "sheet_x": 12,
- "sheet_y": 25,
+ "sheet_x": 10,
+ "sheet_y": 52,
"short_name": "leopard",
"short_names": ["leopard"],
"text": null,
"texts": null,
"category": "Animals & Nature",
- "sort_order": 15,
- "added_in": "6.0",
+ "subcategory": "animal-mammal",
+ "sort_order": 553,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "RABBIT",
@@ -14952,20 +14886,44 @@
"softbank": null,
"google": null,
"image": "1f407.png",
- "sheet_x": 12,
- "sheet_y": 26,
+ "sheet_x": 10,
+ "sheet_y": 53,
"short_name": "rabbit2",
"short_names": ["rabbit2"],
"text": null,
"texts": null,
"category": "Animals & Nature",
- "sort_order": 44,
- "added_in": "6.0",
+ "subcategory": "animal-mammal",
+ "sort_order": 586,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
+ },
+ {
+ "name": "BLACK CAT",
+ "unified": "1F408-200D-2B1B",
+ "non_qualified": null,
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f408-200d-2b1b.png",
+ "sheet_x": 10,
+ "sheet_y": 54,
+ "short_name": "black_cat",
+ "short_names": ["black_cat"],
+ "text": null,
+ "texts": null,
+ "category": "Animals & Nature",
+ "subcategory": "animal-mammal",
+ "sort_order": 549,
+ "added_in": "13.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
},
{
"name": "CAT",
@@ -14976,20 +14934,20 @@
"softbank": null,
"google": null,
"image": "1f408.png",
- "sheet_x": 12,
- "sheet_y": 27,
+ "sheet_x": 10,
+ "sheet_y": 55,
"short_name": "cat2",
"short_names": ["cat2"],
"text": null,
"texts": null,
"category": "Animals & Nature",
- "sort_order": 11,
- "added_in": "6.0",
+ "subcategory": "animal-mammal",
+ "sort_order": 548,
+ "added_in": "0.7",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "DRAGON",
@@ -15000,20 +14958,20 @@
"softbank": null,
"google": null,
"image": "1f409.png",
- "sheet_x": 12,
- "sheet_y": 28,
+ "sheet_x": 10,
+ "sheet_y": 56,
"short_name": "dragon",
"short_names": ["dragon"],
"text": null,
"texts": null,
"category": "Animals & Nature",
- "sort_order": 75,
- "added_in": "6.0",
+ "subcategory": "animal-reptile",
+ "sort_order": 628,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "CROCODILE",
@@ -15024,20 +14982,20 @@
"softbank": null,
"google": null,
"image": "1f40a.png",
- "sheet_x": 12,
- "sheet_y": 29,
+ "sheet_x": 10,
+ "sheet_y": 57,
"short_name": "crocodile",
"short_names": ["crocodile"],
"text": null,
"texts": null,
"category": "Animals & Nature",
- "sort_order": 70,
- "added_in": "6.0",
+ "subcategory": "animal-reptile",
+ "sort_order": 623,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "WHALE",
@@ -15048,20 +15006,20 @@
"softbank": null,
"google": null,
"image": "1f40b.png",
- "sheet_x": 12,
- "sheet_y": 30,
+ "sheet_x": 10,
+ "sheet_y": 58,
"short_name": "whale2",
"short_names": ["whale2"],
"text": null,
"texts": null,
"category": "Animals & Nature",
- "sort_order": 79,
- "added_in": "6.0",
+ "subcategory": "animal-marine",
+ "sort_order": 632,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "SNAIL",
@@ -15072,20 +15030,20 @@
"softbank": null,
"google": "FE1B9",
"image": "1f40c.png",
- "sheet_x": 12,
- "sheet_y": 31,
+ "sheet_x": 10,
+ "sheet_y": 59,
"short_name": "snail",
"short_names": ["snail"],
"text": null,
"texts": null,
"category": "Animals & Nature",
- "sort_order": 91,
- "added_in": "6.0",
+ "subcategory": "animal-bug",
+ "sort_order": 643,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "SNAKE",
@@ -15096,20 +15054,20 @@
"softbank": "E52D",
"google": "FE1D3",
"image": "1f40d.png",
- "sheet_x": 12,
- "sheet_y": 32,
+ "sheet_x": 10,
+ "sheet_y": 60,
"short_name": "snake",
"short_names": ["snake"],
"text": null,
"texts": null,
"category": "Animals & Nature",
- "sort_order": 73,
- "added_in": "6.0",
+ "subcategory": "animal-reptile",
+ "sort_order": 626,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "HORSE",
@@ -15120,20 +15078,20 @@
"softbank": "E134",
"google": "FE7DC",
"image": "1f40e.png",
- "sheet_x": 12,
- "sheet_y": 33,
+ "sheet_x": 11,
+ "sheet_y": 0,
"short_name": "racehorse",
"short_names": ["racehorse"],
"text": null,
"texts": null,
"category": "Animals & Nature",
- "sort_order": 17,
- "added_in": "6.0",
+ "subcategory": "animal-mammal",
+ "sort_order": 557,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "RAM",
@@ -15144,20 +15102,20 @@
"softbank": null,
"google": null,
"image": "1f40f.png",
- "sheet_x": 12,
- "sheet_y": 34,
+ "sheet_x": 11,
+ "sheet_y": 1,
"short_name": "ram",
"short_names": ["ram"],
"text": null,
"texts": null,
"category": "Animals & Nature",
- "sort_order": 29,
- "added_in": "6.0",
+ "subcategory": "animal-mammal",
+ "sort_order": 570,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "GOAT",
@@ -15168,20 +15126,20 @@
"softbank": null,
"google": null,
"image": "1f410.png",
- "sheet_x": 12,
- "sheet_y": 35,
+ "sheet_x": 11,
+ "sheet_y": 2,
"short_name": "goat",
"short_names": ["goat"],
"text": null,
"texts": null,
"category": "Animals & Nature",
- "sort_order": 31,
- "added_in": "6.0",
+ "subcategory": "animal-mammal",
+ "sort_order": 572,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "SHEEP",
@@ -15192,20 +15150,20 @@
"softbank": "E529",
"google": "FE1CF",
"image": "1f411.png",
- "sheet_x": 12,
- "sheet_y": 36,
+ "sheet_x": 11,
+ "sheet_y": 3,
"short_name": "sheep",
"short_names": ["sheep"],
"text": null,
"texts": null,
"category": "Animals & Nature",
- "sort_order": 30,
- "added_in": "6.0",
+ "subcategory": "animal-mammal",
+ "sort_order": 571,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "MONKEY",
@@ -15216,20 +15174,20 @@
"softbank": "E528",
"google": "FE1CE",
"image": "1f412.png",
- "sheet_x": 12,
- "sheet_y": 37,
+ "sheet_x": 11,
+ "sheet_y": 4,
"short_name": "monkey",
"short_names": ["monkey"],
"text": null,
"texts": null,
"category": "Animals & Nature",
- "sort_order": 2,
- "added_in": "6.0",
+ "subcategory": "animal-mammal",
+ "sort_order": 536,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "ROOSTER",
@@ -15240,20 +15198,20 @@
"softbank": null,
"google": null,
"image": "1f413.png",
- "sheet_x": 12,
- "sheet_y": 38,
+ "sheet_x": 11,
+ "sheet_y": 5,
"short_name": "rooster",
"short_names": ["rooster"],
"text": null,
"texts": null,
"category": "Animals & Nature",
- "sort_order": 56,
- "added_in": "6.0",
+ "subcategory": "animal-bird",
+ "sort_order": 603,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "CHICKEN",
@@ -15264,20 +15222,44 @@
"softbank": "E52E",
"google": "FE1D4",
"image": "1f414.png",
- "sheet_x": 12,
- "sheet_y": 39,
+ "sheet_x": 11,
+ "sheet_y": 6,
"short_name": "chicken",
"short_names": ["chicken"],
"text": null,
"texts": null,
"category": "Animals & Nature",
- "sort_order": 55,
- "added_in": "6.0",
+ "subcategory": "animal-bird",
+ "sort_order": 602,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
+ },
+ {
+ "name": "SERVICE DOG",
+ "unified": "1F415-200D-1F9BA",
+ "non_qualified": null,
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f415-200d-1f9ba.png",
+ "sheet_x": 11,
+ "sheet_y": 7,
+ "short_name": "service_dog",
+ "short_names": ["service_dog"],
+ "text": null,
+ "texts": null,
+ "category": "Animals & Nature",
+ "subcategory": "animal-mammal",
+ "sort_order": 542,
+ "added_in": "12.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
},
{
"name": "DOG",
@@ -15288,20 +15270,20 @@
"softbank": null,
"google": null,
"image": "1f415.png",
- "sheet_x": 12,
- "sheet_y": 40,
+ "sheet_x": 11,
+ "sheet_y": 8,
"short_name": "dog2",
"short_names": ["dog2"],
"text": null,
"texts": null,
"category": "Animals & Nature",
- "sort_order": 5,
- "added_in": "6.0",
+ "subcategory": "animal-mammal",
+ "sort_order": 540,
+ "added_in": "0.7",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "PIG",
@@ -15312,20 +15294,20 @@
"softbank": null,
"google": null,
"image": "1f416.png",
- "sheet_x": 12,
- "sheet_y": 41,
+ "sheet_x": 11,
+ "sheet_y": 9,
"short_name": "pig2",
"short_names": ["pig2"],
"text": null,
"texts": null,
"category": "Animals & Nature",
- "sort_order": 26,
- "added_in": "6.0",
+ "subcategory": "animal-mammal",
+ "sort_order": 567,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "BOAR",
@@ -15336,20 +15318,20 @@
"softbank": "E52F",
"google": "FE1D5",
"image": "1f417.png",
- "sheet_x": 12,
- "sheet_y": 42,
+ "sheet_x": 11,
+ "sheet_y": 10,
"short_name": "boar",
"short_names": ["boar"],
"text": null,
"texts": null,
"category": "Animals & Nature",
- "sort_order": 27,
- "added_in": "6.0",
+ "subcategory": "animal-mammal",
+ "sort_order": 568,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "ELEPHANT",
@@ -15360,20 +15342,20 @@
"softbank": "E526",
"google": "FE1CC",
"image": "1f418.png",
- "sheet_x": 12,
- "sheet_y": 43,
+ "sheet_x": 11,
+ "sheet_y": 11,
"short_name": "elephant",
"short_names": ["elephant"],
"text": null,
"texts": null,
"category": "Animals & Nature",
- "sort_order": 36,
- "added_in": "6.0",
+ "subcategory": "animal-mammal",
+ "sort_order": 577,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "OCTOPUS",
@@ -15384,20 +15366,20 @@
"softbank": "E10A",
"google": "FE1C5",
"image": "1f419.png",
- "sheet_x": 12,
- "sheet_y": 44,
+ "sheet_x": 11,
+ "sheet_y": 12,
"short_name": "octopus",
"short_names": ["octopus"],
"text": null,
"texts": null,
"category": "Animals & Nature",
- "sort_order": 85,
- "added_in": "6.0",
+ "subcategory": "animal-marine",
+ "sort_order": 639,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "SPIRAL SHELL",
@@ -15408,20 +15390,20 @@
"softbank": "E441",
"google": "FE1C6",
"image": "1f41a.png",
- "sheet_x": 12,
- "sheet_y": 45,
+ "sheet_x": 11,
+ "sheet_y": 13,
"short_name": "shell",
"short_names": ["shell"],
"text": null,
"texts": null,
"category": "Animals & Nature",
- "sort_order": 86,
- "added_in": "6.0",
+ "subcategory": "animal-marine",
+ "sort_order": 640,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "BUG",
@@ -15432,20 +15414,20 @@
"softbank": "E525",
"google": "FE1CB",
"image": "1f41b.png",
- "sheet_x": 12,
- "sheet_y": 46,
+ "sheet_x": 11,
+ "sheet_y": 14,
"short_name": "bug",
"short_names": ["bug"],
"text": null,
"texts": null,
"category": "Animals & Nature",
- "sort_order": 93,
- "added_in": "6.0",
+ "subcategory": "animal-bug",
+ "sort_order": 645,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "ANT",
@@ -15456,20 +15438,20 @@
"softbank": null,
"google": "FE1DA",
"image": "1f41c.png",
- "sheet_x": 12,
- "sheet_y": 47,
+ "sheet_x": 11,
+ "sheet_y": 15,
"short_name": "ant",
"short_names": ["ant"],
"text": null,
"texts": null,
"category": "Animals & Nature",
- "sort_order": 94,
- "added_in": "6.0",
+ "subcategory": "animal-bug",
+ "sort_order": 646,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "HONEYBEE",
@@ -15480,20 +15462,20 @@
"softbank": null,
"google": "FE1E1",
"image": "1f41d.png",
- "sheet_x": 12,
- "sheet_y": 48,
+ "sheet_x": 11,
+ "sheet_y": 16,
"short_name": "bee",
"short_names": ["bee", "honeybee"],
"text": null,
"texts": null,
"category": "Animals & Nature",
- "sort_order": 95,
- "added_in": "6.0",
+ "subcategory": "animal-bug",
+ "sort_order": 647,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "LADY BEETLE",
@@ -15504,20 +15486,20 @@
"softbank": null,
"google": "FE1E2",
"image": "1f41e.png",
- "sheet_x": 12,
- "sheet_y": 49,
- "short_name": "beetle",
- "short_names": ["beetle"],
+ "sheet_x": 11,
+ "sheet_y": 17,
+ "short_name": "ladybug",
+ "short_names": ["ladybug", "lady_beetle"],
"text": null,
"texts": null,
"category": "Animals & Nature",
- "sort_order": 96,
- "added_in": "6.0",
+ "subcategory": "animal-bug",
+ "sort_order": 649,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "FISH",
@@ -15528,20 +15510,20 @@
"softbank": "E019",
"google": "FE1BD",
"image": "1f41f.png",
- "sheet_x": 12,
- "sheet_y": 50,
+ "sheet_x": 11,
+ "sheet_y": 18,
"short_name": "fish",
"short_names": ["fish"],
"text": null,
"texts": null,
"category": "Animals & Nature",
- "sort_order": 81,
- "added_in": "6.0",
+ "subcategory": "animal-marine",
+ "sort_order": 635,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "TROPICAL FISH",
@@ -15552,20 +15534,20 @@
"softbank": "E522",
"google": "FE1C9",
"image": "1f420.png",
- "sheet_x": 12,
- "sheet_y": 51,
+ "sheet_x": 11,
+ "sheet_y": 19,
"short_name": "tropical_fish",
"short_names": ["tropical_fish"],
"text": null,
"texts": null,
"category": "Animals & Nature",
- "sort_order": 82,
- "added_in": "6.0",
+ "subcategory": "animal-marine",
+ "sort_order": 636,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "BLOWFISH",
@@ -15576,20 +15558,20 @@
"softbank": null,
"google": "FE1D9",
"image": "1f421.png",
- "sheet_x": 12,
- "sheet_y": 52,
+ "sheet_x": 11,
+ "sheet_y": 20,
"short_name": "blowfish",
"short_names": ["blowfish"],
"text": null,
"texts": null,
"category": "Animals & Nature",
- "sort_order": 83,
- "added_in": "6.0",
+ "subcategory": "animal-marine",
+ "sort_order": 637,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "TURTLE",
@@ -15600,20 +15582,20 @@
"softbank": null,
"google": "FE1DC",
"image": "1f422.png",
- "sheet_x": 13,
- "sheet_y": 0,
+ "sheet_x": 11,
+ "sheet_y": 21,
"short_name": "turtle",
"short_names": ["turtle"],
"text": null,
"texts": null,
"category": "Animals & Nature",
- "sort_order": 71,
- "added_in": "6.0",
+ "subcategory": "animal-reptile",
+ "sort_order": 624,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "HATCHING CHICK",
@@ -15624,20 +15606,20 @@
"softbank": null,
"google": "FE1DD",
"image": "1f423.png",
- "sheet_x": 13,
- "sheet_y": 1,
+ "sheet_x": 11,
+ "sheet_y": 22,
"short_name": "hatching_chick",
"short_names": ["hatching_chick"],
"text": null,
"texts": null,
"category": "Animals & Nature",
- "sort_order": 57,
- "added_in": "6.0",
+ "subcategory": "animal-bird",
+ "sort_order": 604,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "BABY CHICK",
@@ -15648,20 +15630,20 @@
"softbank": "E523",
"google": "FE1BA",
"image": "1f424.png",
- "sheet_x": 13,
- "sheet_y": 2,
+ "sheet_x": 11,
+ "sheet_y": 23,
"short_name": "baby_chick",
"short_names": ["baby_chick"],
"text": null,
"texts": null,
"category": "Animals & Nature",
- "sort_order": 58,
- "added_in": "6.0",
+ "subcategory": "animal-bird",
+ "sort_order": 605,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "FRONT-FACING BABY CHICK",
@@ -15672,20 +15654,44 @@
"softbank": null,
"google": "FE1BB",
"image": "1f425.png",
- "sheet_x": 13,
- "sheet_y": 3,
+ "sheet_x": 11,
+ "sheet_y": 24,
"short_name": "hatched_chick",
"short_names": ["hatched_chick"],
"text": null,
"texts": null,
"category": "Animals & Nature",
- "sort_order": 59,
- "added_in": "6.0",
+ "subcategory": "animal-bird",
+ "sort_order": 606,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
+ },
+ {
+ "name": "BLACK BIRD",
+ "unified": "1F426-200D-2B1B",
+ "non_qualified": null,
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f426-200d-2b1b.png",
+ "sheet_x": 11,
+ "sheet_y": 25,
+ "short_name": "black_bird",
+ "short_names": ["black_bird"],
+ "text": null,
+ "texts": null,
+ "category": "Animals & Nature",
+ "subcategory": "animal-bird",
+ "sort_order": 620,
+ "added_in": "15.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": false,
+ "has_img_facebook": false
},
{
"name": "BIRD",
@@ -15696,20 +15702,20 @@
"softbank": "E521",
"google": "FE1C8",
"image": "1f426.png",
- "sheet_x": 13,
- "sheet_y": 4,
+ "sheet_x": 11,
+ "sheet_y": 26,
"short_name": "bird",
"short_names": ["bird"],
"text": null,
"texts": null,
"category": "Animals & Nature",
- "sort_order": 60,
- "added_in": "6.0",
+ "subcategory": "animal-bird",
+ "sort_order": 607,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "PENGUIN",
@@ -15720,20 +15726,20 @@
"softbank": "E055",
"google": "FE1BC",
"image": "1f427.png",
- "sheet_x": 13,
- "sheet_y": 5,
+ "sheet_x": 11,
+ "sheet_y": 27,
"short_name": "penguin",
"short_names": ["penguin"],
"text": null,
"texts": null,
"category": "Animals & Nature",
- "sort_order": 61,
- "added_in": "6.0",
+ "subcategory": "animal-bird",
+ "sort_order": 608,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "KOALA",
@@ -15744,20 +15750,20 @@
"softbank": "E527",
"google": "FE1CD",
"image": "1f428.png",
- "sheet_x": 13,
- "sheet_y": 6,
+ "sheet_x": 11,
+ "sheet_y": 28,
"short_name": "koala",
"short_names": ["koala"],
"text": null,
"texts": null,
"category": "Animals & Nature",
- "sort_order": 49,
- "added_in": "6.0",
+ "subcategory": "animal-mammal",
+ "sort_order": 593,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "POODLE",
@@ -15768,20 +15774,20 @@
"softbank": null,
"google": "FE1D8",
"image": "1f429.png",
- "sheet_x": 13,
- "sheet_y": 7,
+ "sheet_x": 11,
+ "sheet_y": 29,
"short_name": "poodle",
"short_names": ["poodle"],
"text": null,
"texts": null,
"category": "Animals & Nature",
- "sort_order": 6,
- "added_in": "6.0",
+ "subcategory": "animal-mammal",
+ "sort_order": 543,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "DROMEDARY CAMEL",
@@ -15792,20 +15798,20 @@
"softbank": null,
"google": null,
"image": "1f42a.png",
- "sheet_x": 13,
- "sheet_y": 8,
+ "sheet_x": 11,
+ "sheet_y": 30,
"short_name": "dromedary_camel",
"short_names": ["dromedary_camel"],
"text": null,
"texts": null,
"category": "Animals & Nature",
- "sort_order": 32,
- "added_in": "6.0",
+ "subcategory": "animal-mammal",
+ "sort_order": 573,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "BACTRIAN CAMEL",
@@ -15816,20 +15822,20 @@
"softbank": "E530",
"google": "FE1D6",
"image": "1f42b.png",
- "sheet_x": 13,
- "sheet_y": 9,
+ "sheet_x": 11,
+ "sheet_y": 31,
"short_name": "camel",
"short_names": ["camel"],
"text": null,
"texts": null,
"category": "Animals & Nature",
- "sort_order": 33,
- "added_in": "6.0",
+ "subcategory": "animal-mammal",
+ "sort_order": 574,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "DOLPHIN",
@@ -15840,20 +15846,20 @@
"softbank": "E520",
"google": "FE1C7",
"image": "1f42c.png",
- "sheet_x": 13,
- "sheet_y": 10,
+ "sheet_x": 11,
+ "sheet_y": 32,
"short_name": "dolphin",
"short_names": ["dolphin", "flipper"],
"text": null,
"texts": null,
"category": "Animals & Nature",
- "sort_order": 80,
- "added_in": "6.0",
+ "subcategory": "animal-marine",
+ "sort_order": 633,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "MOUSE FACE",
@@ -15864,20 +15870,20 @@
"softbank": "E053",
"google": "FE1C2",
"image": "1f42d.png",
- "sheet_x": 13,
- "sheet_y": 11,
+ "sheet_x": 11,
+ "sheet_y": 33,
"short_name": "mouse",
"short_names": ["mouse"],
"text": null,
"texts": null,
"category": "Animals & Nature",
- "sort_order": 39,
- "added_in": "6.0",
+ "subcategory": "animal-mammal",
+ "sort_order": 581,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "COW FACE",
@@ -15888,20 +15894,20 @@
"softbank": "E52B",
"google": "FE1D1",
"image": "1f42e.png",
- "sheet_x": 13,
- "sheet_y": 12,
+ "sheet_x": 11,
+ "sheet_y": 34,
"short_name": "cow",
"short_names": ["cow"],
"text": null,
"texts": null,
"category": "Animals & Nature",
- "sort_order": 21,
- "added_in": "6.0",
+ "subcategory": "animal-mammal",
+ "sort_order": 562,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "TIGER FACE",
@@ -15912,20 +15918,20 @@
"softbank": "E050",
"google": "FE1C0",
"image": "1f42f.png",
- "sheet_x": 13,
- "sheet_y": 13,
+ "sheet_x": 11,
+ "sheet_y": 35,
"short_name": "tiger",
"short_names": ["tiger"],
"text": null,
"texts": null,
"category": "Animals & Nature",
- "sort_order": 13,
- "added_in": "6.0",
+ "subcategory": "animal-mammal",
+ "sort_order": 551,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "RABBIT FACE",
@@ -15936,20 +15942,20 @@
"softbank": "E52C",
"google": "FE1D2",
"image": "1f430.png",
- "sheet_x": 13,
- "sheet_y": 14,
+ "sheet_x": 11,
+ "sheet_y": 36,
"short_name": "rabbit",
"short_names": ["rabbit"],
"text": null,
"texts": null,
"category": "Animals & Nature",
- "sort_order": 43,
- "added_in": "6.0",
+ "subcategory": "animal-mammal",
+ "sort_order": 585,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "CAT FACE",
@@ -15960,20 +15966,20 @@
"softbank": "E04F",
"google": "FE1B8",
"image": "1f431.png",
- "sheet_x": 13,
- "sheet_y": 15,
+ "sheet_x": 11,
+ "sheet_y": 37,
"short_name": "cat",
"short_names": ["cat"],
"text": null,
"texts": null,
"category": "Animals & Nature",
- "sort_order": 10,
- "added_in": "6.0",
+ "subcategory": "animal-mammal",
+ "sort_order": 547,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "DRAGON FACE",
@@ -15984,20 +15990,20 @@
"softbank": null,
"google": "FE1DE",
"image": "1f432.png",
- "sheet_x": 13,
- "sheet_y": 16,
+ "sheet_x": 11,
+ "sheet_y": 38,
"short_name": "dragon_face",
"short_names": ["dragon_face"],
"text": null,
"texts": null,
"category": "Animals & Nature",
- "sort_order": 74,
- "added_in": "6.0",
+ "subcategory": "animal-reptile",
+ "sort_order": 627,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "SPOUTING WHALE",
@@ -16008,20 +16014,20 @@
"softbank": "E054",
"google": "FE1C3",
"image": "1f433.png",
- "sheet_x": 13,
- "sheet_y": 17,
+ "sheet_x": 11,
+ "sheet_y": 39,
"short_name": "whale",
"short_names": ["whale"],
"text": null,
"texts": null,
"category": "Animals & Nature",
- "sort_order": 78,
- "added_in": "6.0",
+ "subcategory": "animal-marine",
+ "sort_order": 631,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "HORSE FACE",
@@ -16032,20 +16038,20 @@
"softbank": "E01A",
"google": "FE1BE",
"image": "1f434.png",
- "sheet_x": 13,
- "sheet_y": 18,
+ "sheet_x": 11,
+ "sheet_y": 40,
"short_name": "horse",
"short_names": ["horse"],
"text": null,
"texts": null,
"category": "Animals & Nature",
- "sort_order": 16,
- "added_in": "6.0",
+ "subcategory": "animal-mammal",
+ "sort_order": 554,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "MONKEY FACE",
@@ -16056,20 +16062,20 @@
"softbank": "E109",
"google": "FE1C4",
"image": "1f435.png",
- "sheet_x": 13,
- "sheet_y": 19,
+ "sheet_x": 11,
+ "sheet_y": 41,
"short_name": "monkey_face",
"short_names": ["monkey_face"],
"text": null,
"texts": [":o)"],
"category": "Animals & Nature",
- "sort_order": 1,
- "added_in": "6.0",
+ "subcategory": "animal-mammal",
+ "sort_order": 535,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "DOG FACE",
@@ -16080,20 +16086,20 @@
"softbank": "E052",
"google": "FE1B7",
"image": "1f436.png",
- "sheet_x": 13,
- "sheet_y": 20,
+ "sheet_x": 11,
+ "sheet_y": 42,
"short_name": "dog",
"short_names": ["dog"],
"text": null,
"texts": null,
"category": "Animals & Nature",
- "sort_order": 4,
- "added_in": "6.0",
+ "subcategory": "animal-mammal",
+ "sort_order": 539,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "PIG FACE",
@@ -16104,20 +16110,20 @@
"softbank": "E10B",
"google": "FE1BF",
"image": "1f437.png",
- "sheet_x": 13,
- "sheet_y": 21,
+ "sheet_x": 11,
+ "sheet_y": 43,
"short_name": "pig",
"short_names": ["pig"],
"text": null,
"texts": null,
"category": "Animals & Nature",
- "sort_order": 25,
- "added_in": "6.0",
+ "subcategory": "animal-mammal",
+ "sort_order": 566,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "FROG FACE",
@@ -16128,20 +16134,20 @@
"softbank": "E531",
"google": "FE1D7",
"image": "1f438.png",
- "sheet_x": 13,
- "sheet_y": 22,
+ "sheet_x": 11,
+ "sheet_y": 44,
"short_name": "frog",
"short_names": ["frog"],
"text": null,
"texts": null,
"category": "Animals & Nature",
- "sort_order": 69,
- "added_in": "6.0",
+ "subcategory": "animal-amphibian",
+ "sort_order": 622,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "HAMSTER FACE",
@@ -16152,20 +16158,20 @@
"softbank": "E524",
"google": "FE1CA",
"image": "1f439.png",
- "sheet_x": 13,
- "sheet_y": 23,
+ "sheet_x": 11,
+ "sheet_y": 45,
"short_name": "hamster",
"short_names": ["hamster"],
"text": null,
"texts": null,
"category": "Animals & Nature",
- "sort_order": 42,
- "added_in": "6.0",
+ "subcategory": "animal-mammal",
+ "sort_order": 584,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "WOLF FACE",
@@ -16176,20 +16182,44 @@
"softbank": "E52A",
"google": "FE1D0",
"image": "1f43a.png",
- "sheet_x": 13,
- "sheet_y": 24,
+ "sheet_x": 11,
+ "sheet_y": 46,
"short_name": "wolf",
"short_names": ["wolf"],
"text": null,
"texts": null,
"category": "Animals & Nature",
- "sort_order": 7,
- "added_in": "6.0",
+ "subcategory": "animal-mammal",
+ "sort_order": 544,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
+ },
+ {
+ "name": "POLAR BEAR",
+ "unified": "1F43B-200D-2744-FE0F",
+ "non_qualified": "1F43B-200D-2744",
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f43b-200d-2744-fe0f.png",
+ "sheet_x": 11,
+ "sheet_y": 47,
+ "short_name": "polar_bear",
+ "short_names": ["polar_bear"],
+ "text": null,
+ "texts": null,
+ "category": "Animals & Nature",
+ "subcategory": "animal-mammal",
+ "sort_order": 592,
+ "added_in": "13.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
},
{
"name": "BEAR FACE",
@@ -16200,20 +16230,20 @@
"softbank": "E051",
"google": "FE1C1",
"image": "1f43b.png",
- "sheet_x": 13,
- "sheet_y": 25,
+ "sheet_x": 11,
+ "sheet_y": 48,
"short_name": "bear",
"short_names": ["bear"],
"text": null,
"texts": null,
"category": "Animals & Nature",
- "sort_order": 48,
- "added_in": "6.0",
+ "subcategory": "animal-mammal",
+ "sort_order": 591,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "PANDA FACE",
@@ -16224,20 +16254,20 @@
"softbank": null,
"google": "FE1DF",
"image": "1f43c.png",
- "sheet_x": 13,
- "sheet_y": 26,
+ "sheet_x": 11,
+ "sheet_y": 49,
"short_name": "panda_face",
"short_names": ["panda_face"],
"text": null,
"texts": null,
"category": "Animals & Nature",
- "sort_order": 50,
- "added_in": "6.0",
+ "subcategory": "animal-mammal",
+ "sort_order": 594,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "PIG NOSE",
@@ -16248,20 +16278,20 @@
"softbank": null,
"google": "FE1E0",
"image": "1f43d.png",
- "sheet_x": 13,
- "sheet_y": 27,
+ "sheet_x": 11,
+ "sheet_y": 50,
"short_name": "pig_nose",
"short_names": ["pig_nose"],
"text": null,
"texts": null,
"category": "Animals & Nature",
- "sort_order": 28,
- "added_in": "6.0",
+ "subcategory": "animal-mammal",
+ "sort_order": 569,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "PAW PRINTS",
@@ -16272,23 +16302,23 @@
"softbank": null,
"google": "FE1DB",
"image": "1f43e.png",
- "sheet_x": 13,
- "sheet_y": 28,
+ "sheet_x": 11,
+ "sheet_y": 51,
"short_name": "feet",
"short_names": ["feet", "paw_prints"],
"text": null,
"texts": null,
"category": "Animals & Nature",
- "sort_order": 53,
- "added_in": "6.0",
+ "subcategory": "animal-mammal",
+ "sort_order": 600,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": null,
+ "name": "CHIPMUNK",
"unified": "1F43F-FE0F",
"non_qualified": "1F43F",
"docomo": null,
@@ -16296,20 +16326,20 @@
"softbank": null,
"google": null,
"image": "1f43f-fe0f.png",
- "sheet_x": 13,
- "sheet_y": 29,
+ "sheet_x": 11,
+ "sheet_y": 52,
"short_name": "chipmunk",
"short_names": ["chipmunk"],
"text": null,
"texts": null,
"category": "Animals & Nature",
- "sort_order": 45,
- "added_in": "7.0",
+ "subcategory": "animal-mammal",
+ "sort_order": 587,
+ "added_in": "0.7",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
"name": "EYES",
@@ -16320,23 +16350,23 @@
"softbank": "E419",
"google": "FE190",
"image": "1f440.png",
- "sheet_x": 13,
- "sheet_y": 30,
+ "sheet_x": 11,
+ "sheet_y": 53,
"short_name": "eyes",
"short_names": ["eyes"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 394,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "body-parts",
+ "sort_order": 223,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": null,
+ "name": "EYE IN SPEECH BUBBLE",
"unified": "1F441-FE0F-200D-1F5E8-FE0F",
"non_qualified": null,
"docomo": null,
@@ -16344,23 +16374,23 @@
"softbank": null,
"google": null,
"image": "1f441-fe0f-200d-1f5e8-fe0f.png",
- "sheet_x": 13,
- "sheet_y": 31,
+ "sheet_x": 11,
+ "sheet_y": 54,
"short_name": "eye-in-speech-bubble",
"short_names": ["eye-in-speech-bubble"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 396,
- "added_in": "7.0",
+ "category": "Smileys & Emotion",
+ "subcategory": "emotion",
+ "sort_order": 162,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_twitter": true,
+ "has_img_facebook": false
},
{
- "name": null,
+ "name": "EYE",
"unified": "1F441-FE0F",
"non_qualified": "1F441",
"docomo": null,
@@ -16368,20 +16398,20 @@
"softbank": null,
"google": null,
"image": "1f441-fe0f.png",
- "sheet_x": 13,
- "sheet_y": 32,
+ "sheet_x": 11,
+ "sheet_y": 55,
"short_name": "eye",
"short_names": ["eye"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 395,
- "added_in": "7.0",
+ "category": "People & Body",
+ "subcategory": "body-parts",
+ "sort_order": 224,
+ "added_in": "0.7",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
"name": "EAR",
@@ -16392,85 +16422,80 @@
"softbank": "E41B",
"google": "FE191",
"image": "1f442.png",
- "sheet_x": 13,
- "sheet_y": 33,
+ "sheet_x": 11,
+ "sheet_y": 56,
"short_name": "ear",
"short_names": ["ear"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 391,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "body-parts",
+ "sort_order": 215,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": true,
"skin_variations": {
"1F3FB": {
"unified": "1F442-1F3FB",
"non_qualified": null,
"image": "1f442-1f3fb.png",
- "sheet_x": 13,
- "sheet_y": 34,
- "added_in": "8.0",
+ "sheet_x": 11,
+ "sheet_y": 57,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
"1F3FC": {
"unified": "1F442-1F3FC",
"non_qualified": null,
"image": "1f442-1f3fc.png",
- "sheet_x": 13,
- "sheet_y": 35,
- "added_in": "8.0",
+ "sheet_x": 11,
+ "sheet_y": 58,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
"1F3FD": {
"unified": "1F442-1F3FD",
"non_qualified": null,
"image": "1f442-1f3fd.png",
- "sheet_x": 13,
- "sheet_y": 36,
- "added_in": "8.0",
+ "sheet_x": 11,
+ "sheet_y": 59,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
"1F3FE": {
"unified": "1F442-1F3FE",
"non_qualified": null,
"image": "1f442-1f3fe.png",
- "sheet_x": 13,
- "sheet_y": 37,
- "added_in": "8.0",
+ "sheet_x": 11,
+ "sheet_y": 60,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
"1F3FF": {
"unified": "1F442-1F3FF",
"non_qualified": null,
"image": "1f442-1f3ff.png",
- "sheet_x": 13,
- "sheet_y": 38,
- "added_in": "8.0",
+ "sheet_x": 12,
+ "sheet_y": 0,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
}
}
},
@@ -16483,85 +16508,80 @@
"softbank": "E41A",
"google": "FE192",
"image": "1f443.png",
- "sheet_x": 13,
- "sheet_y": 39,
+ "sheet_x": 12,
+ "sheet_y": 1,
"short_name": "nose",
"short_names": ["nose"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 392,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "body-parts",
+ "sort_order": 217,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": true,
"skin_variations": {
"1F3FB": {
"unified": "1F443-1F3FB",
"non_qualified": null,
"image": "1f443-1f3fb.png",
- "sheet_x": 13,
- "sheet_y": 40,
- "added_in": "8.0",
+ "sheet_x": 12,
+ "sheet_y": 2,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
"1F3FC": {
"unified": "1F443-1F3FC",
"non_qualified": null,
"image": "1f443-1f3fc.png",
- "sheet_x": 13,
- "sheet_y": 41,
- "added_in": "8.0",
+ "sheet_x": 12,
+ "sheet_y": 3,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
"1F3FD": {
"unified": "1F443-1F3FD",
"non_qualified": null,
"image": "1f443-1f3fd.png",
- "sheet_x": 13,
- "sheet_y": 42,
- "added_in": "8.0",
+ "sheet_x": 12,
+ "sheet_y": 4,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
"1F3FE": {
"unified": "1F443-1F3FE",
"non_qualified": null,
"image": "1f443-1f3fe.png",
- "sheet_x": 13,
- "sheet_y": 43,
- "added_in": "8.0",
+ "sheet_x": 12,
+ "sheet_y": 5,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
"1F3FF": {
"unified": "1F443-1F3FF",
"non_qualified": null,
"image": "1f443-1f3ff.png",
- "sheet_x": 13,
- "sheet_y": 44,
- "added_in": "8.0",
+ "sheet_x": 12,
+ "sheet_y": 6,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
}
}
},
@@ -16574,20 +16594,20 @@
"softbank": "E41C",
"google": "FE193",
"image": "1f444.png",
- "sheet_x": 13,
- "sheet_y": 45,
+ "sheet_x": 12,
+ "sheet_y": 7,
"short_name": "lips",
"short_names": ["lips"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 401,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "body-parts",
+ "sort_order": 226,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "TONGUE",
@@ -16598,20 +16618,20 @@
"softbank": null,
"google": "FE194",
"image": "1f445.png",
- "sheet_x": 13,
- "sheet_y": 46,
+ "sheet_x": 12,
+ "sheet_y": 8,
"short_name": "tongue",
"short_names": ["tongue"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 400,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "body-parts",
+ "sort_order": 225,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "WHITE UP POINTING BACKHAND INDEX",
@@ -16622,85 +16642,80 @@
"softbank": "E22E",
"google": "FEB99",
"image": "1f446.png",
- "sheet_x": 13,
- "sheet_y": 47,
+ "sheet_x": 12,
+ "sheet_y": 9,
"short_name": "point_up_2",
"short_names": ["point_up_2"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 363,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "hand-single-finger",
+ "sort_order": 189,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": true,
"skin_variations": {
"1F3FB": {
"unified": "1F446-1F3FB",
"non_qualified": null,
"image": "1f446-1f3fb.png",
- "sheet_x": 13,
- "sheet_y": 48,
- "added_in": "8.0",
+ "sheet_x": 12,
+ "sheet_y": 10,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
"1F3FC": {
"unified": "1F446-1F3FC",
"non_qualified": null,
"image": "1f446-1f3fc.png",
- "sheet_x": 13,
- "sheet_y": 49,
- "added_in": "8.0",
+ "sheet_x": 12,
+ "sheet_y": 11,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
"1F3FD": {
"unified": "1F446-1F3FD",
"non_qualified": null,
"image": "1f446-1f3fd.png",
- "sheet_x": 13,
- "sheet_y": 50,
- "added_in": "8.0",
+ "sheet_x": 12,
+ "sheet_y": 12,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
"1F3FE": {
"unified": "1F446-1F3FE",
"non_qualified": null,
"image": "1f446-1f3fe.png",
- "sheet_x": 13,
- "sheet_y": 51,
- "added_in": "8.0",
+ "sheet_x": 12,
+ "sheet_y": 13,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
"1F3FF": {
"unified": "1F446-1F3FF",
"non_qualified": null,
"image": "1f446-1f3ff.png",
- "sheet_x": 13,
- "sheet_y": 52,
- "added_in": "8.0",
+ "sheet_x": 12,
+ "sheet_y": 14,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
}
}
},
@@ -16713,85 +16728,80 @@
"softbank": "E22F",
"google": "FEB9A",
"image": "1f447.png",
- "sheet_x": 14,
- "sheet_y": 0,
+ "sheet_x": 12,
+ "sheet_y": 15,
"short_name": "point_down",
"short_names": ["point_down"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 365,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "hand-single-finger",
+ "sort_order": 191,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": true,
"skin_variations": {
"1F3FB": {
"unified": "1F447-1F3FB",
"non_qualified": null,
"image": "1f447-1f3fb.png",
- "sheet_x": 14,
- "sheet_y": 1,
- "added_in": "8.0",
+ "sheet_x": 12,
+ "sheet_y": 16,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
"1F3FC": {
"unified": "1F447-1F3FC",
"non_qualified": null,
"image": "1f447-1f3fc.png",
- "sheet_x": 14,
- "sheet_y": 2,
- "added_in": "8.0",
+ "sheet_x": 12,
+ "sheet_y": 17,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
"1F3FD": {
"unified": "1F447-1F3FD",
"non_qualified": null,
"image": "1f447-1f3fd.png",
- "sheet_x": 14,
- "sheet_y": 3,
- "added_in": "8.0",
+ "sheet_x": 12,
+ "sheet_y": 18,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
"1F3FE": {
"unified": "1F447-1F3FE",
"non_qualified": null,
"image": "1f447-1f3fe.png",
- "sheet_x": 14,
- "sheet_y": 4,
- "added_in": "8.0",
+ "sheet_x": 12,
+ "sheet_y": 19,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
"1F3FF": {
"unified": "1F447-1F3FF",
"non_qualified": null,
"image": "1f447-1f3ff.png",
- "sheet_x": 14,
- "sheet_y": 5,
- "added_in": "8.0",
+ "sheet_x": 12,
+ "sheet_y": 20,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
}
}
},
@@ -16804,85 +16814,80 @@
"softbank": "E230",
"google": "FEB9B",
"image": "1f448.png",
- "sheet_x": 14,
- "sheet_y": 6,
+ "sheet_x": 12,
+ "sheet_y": 21,
"short_name": "point_left",
"short_names": ["point_left"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 360,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "hand-single-finger",
+ "sort_order": 187,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": true,
"skin_variations": {
"1F3FB": {
"unified": "1F448-1F3FB",
"non_qualified": null,
"image": "1f448-1f3fb.png",
- "sheet_x": 14,
- "sheet_y": 7,
- "added_in": "8.0",
+ "sheet_x": 12,
+ "sheet_y": 22,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
"1F3FC": {
"unified": "1F448-1F3FC",
"non_qualified": null,
"image": "1f448-1f3fc.png",
- "sheet_x": 14,
- "sheet_y": 8,
- "added_in": "8.0",
+ "sheet_x": 12,
+ "sheet_y": 23,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
"1F3FD": {
"unified": "1F448-1F3FD",
"non_qualified": null,
"image": "1f448-1f3fd.png",
- "sheet_x": 14,
- "sheet_y": 9,
- "added_in": "8.0",
+ "sheet_x": 12,
+ "sheet_y": 24,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
"1F3FE": {
"unified": "1F448-1F3FE",
"non_qualified": null,
"image": "1f448-1f3fe.png",
- "sheet_x": 14,
- "sheet_y": 10,
- "added_in": "8.0",
+ "sheet_x": 12,
+ "sheet_y": 25,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
"1F3FF": {
"unified": "1F448-1F3FF",
"non_qualified": null,
"image": "1f448-1f3ff.png",
- "sheet_x": 14,
- "sheet_y": 11,
- "added_in": "8.0",
+ "sheet_x": 12,
+ "sheet_y": 26,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
}
}
},
@@ -16895,85 +16900,80 @@
"softbank": "E231",
"google": "FEB9C",
"image": "1f449.png",
- "sheet_x": 14,
- "sheet_y": 12,
+ "sheet_x": 12,
+ "sheet_y": 27,
"short_name": "point_right",
"short_names": ["point_right"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 361,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "hand-single-finger",
+ "sort_order": 188,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": true,
"skin_variations": {
"1F3FB": {
"unified": "1F449-1F3FB",
"non_qualified": null,
"image": "1f449-1f3fb.png",
- "sheet_x": 14,
- "sheet_y": 13,
- "added_in": "8.0",
+ "sheet_x": 12,
+ "sheet_y": 28,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
"1F3FC": {
"unified": "1F449-1F3FC",
"non_qualified": null,
"image": "1f449-1f3fc.png",
- "sheet_x": 14,
- "sheet_y": 14,
- "added_in": "8.0",
+ "sheet_x": 12,
+ "sheet_y": 29,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
"1F3FD": {
"unified": "1F449-1F3FD",
"non_qualified": null,
"image": "1f449-1f3fd.png",
- "sheet_x": 14,
- "sheet_y": 15,
- "added_in": "8.0",
+ "sheet_x": 12,
+ "sheet_y": 30,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
"1F3FE": {
"unified": "1F449-1F3FE",
"non_qualified": null,
"image": "1f449-1f3fe.png",
- "sheet_x": 14,
- "sheet_y": 16,
- "added_in": "8.0",
+ "sheet_x": 12,
+ "sheet_y": 31,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
"1F3FF": {
"unified": "1F449-1F3FF",
"non_qualified": null,
"image": "1f449-1f3ff.png",
- "sheet_x": 14,
- "sheet_y": 17,
- "added_in": "8.0",
+ "sheet_x": 12,
+ "sheet_y": 32,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
}
}
},
@@ -16986,85 +16986,80 @@
"softbank": "E00D",
"google": "FEB96",
"image": "1f44a.png",
- "sheet_x": 14,
- "sheet_y": 18,
+ "sheet_x": 12,
+ "sheet_y": 33,
"short_name": "facepunch",
"short_names": ["facepunch", "punch"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 377,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "hand-fingers-closed",
+ "sort_order": 197,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": true,
"skin_variations": {
"1F3FB": {
"unified": "1F44A-1F3FB",
"non_qualified": null,
"image": "1f44a-1f3fb.png",
- "sheet_x": 14,
- "sheet_y": 19,
- "added_in": "8.0",
+ "sheet_x": 12,
+ "sheet_y": 34,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
"1F3FC": {
"unified": "1F44A-1F3FC",
"non_qualified": null,
"image": "1f44a-1f3fc.png",
- "sheet_x": 14,
- "sheet_y": 20,
- "added_in": "8.0",
+ "sheet_x": 12,
+ "sheet_y": 35,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
"1F3FD": {
"unified": "1F44A-1F3FD",
"non_qualified": null,
"image": "1f44a-1f3fd.png",
- "sheet_x": 14,
- "sheet_y": 21,
- "added_in": "8.0",
+ "sheet_x": 12,
+ "sheet_y": 36,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
"1F3FE": {
"unified": "1F44A-1F3FE",
"non_qualified": null,
"image": "1f44a-1f3fe.png",
- "sheet_x": 14,
- "sheet_y": 22,
- "added_in": "8.0",
+ "sheet_x": 12,
+ "sheet_y": 37,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
"1F3FF": {
"unified": "1F44A-1F3FF",
"non_qualified": null,
"image": "1f44a-1f3ff.png",
- "sheet_x": 14,
- "sheet_y": 23,
- "added_in": "8.0",
+ "sheet_x": 12,
+ "sheet_y": 38,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
}
}
},
@@ -17077,85 +17072,80 @@
"softbank": "E41E",
"google": "FEB9D",
"image": "1f44b.png",
- "sheet_x": 14,
- "sheet_y": 24,
+ "sheet_x": 12,
+ "sheet_y": 39,
"short_name": "wave",
"short_names": ["wave"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 381,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "hand-fingers-open",
+ "sort_order": 167,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": true,
"skin_variations": {
"1F3FB": {
"unified": "1F44B-1F3FB",
"non_qualified": null,
"image": "1f44b-1f3fb.png",
- "sheet_x": 14,
- "sheet_y": 25,
- "added_in": "8.0",
+ "sheet_x": 12,
+ "sheet_y": 40,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
"1F3FC": {
"unified": "1F44B-1F3FC",
"non_qualified": null,
"image": "1f44b-1f3fc.png",
- "sheet_x": 14,
- "sheet_y": 26,
- "added_in": "8.0",
+ "sheet_x": 12,
+ "sheet_y": 41,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
"1F3FD": {
"unified": "1F44B-1F3FD",
"non_qualified": null,
"image": "1f44b-1f3fd.png",
- "sheet_x": 14,
- "sheet_y": 27,
- "added_in": "8.0",
+ "sheet_x": 12,
+ "sheet_y": 42,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
"1F3FE": {
"unified": "1F44B-1F3FE",
"non_qualified": null,
"image": "1f44b-1f3fe.png",
- "sheet_x": 14,
- "sheet_y": 28,
- "added_in": "8.0",
+ "sheet_x": 12,
+ "sheet_y": 43,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
"1F3FF": {
"unified": "1F44B-1F3FF",
"non_qualified": null,
"image": "1f44b-1f3ff.png",
- "sheet_x": 14,
- "sheet_y": 29,
- "added_in": "8.0",
+ "sheet_x": 12,
+ "sheet_y": 44,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
}
}
},
@@ -17168,85 +17158,80 @@
"softbank": "E420",
"google": "FEB9F",
"image": "1f44c.png",
- "sheet_x": 14,
- "sheet_y": 30,
+ "sheet_x": 12,
+ "sheet_y": 45,
"short_name": "ok_hand",
"short_names": ["ok_hand"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 373,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "hand-fingers-partial",
+ "sort_order": 178,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": true,
"skin_variations": {
"1F3FB": {
"unified": "1F44C-1F3FB",
"non_qualified": null,
"image": "1f44c-1f3fb.png",
- "sheet_x": 14,
- "sheet_y": 31,
- "added_in": "8.0",
+ "sheet_x": 12,
+ "sheet_y": 46,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
"1F3FC": {
"unified": "1F44C-1F3FC",
"non_qualified": null,
"image": "1f44c-1f3fc.png",
- "sheet_x": 14,
- "sheet_y": 32,
- "added_in": "8.0",
+ "sheet_x": 12,
+ "sheet_y": 47,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
"1F3FD": {
"unified": "1F44C-1F3FD",
"non_qualified": null,
"image": "1f44c-1f3fd.png",
- "sheet_x": 14,
- "sheet_y": 33,
- "added_in": "8.0",
+ "sheet_x": 12,
+ "sheet_y": 48,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
"1F3FE": {
"unified": "1F44C-1F3FE",
"non_qualified": null,
"image": "1f44c-1f3fe.png",
- "sheet_x": 14,
- "sheet_y": 34,
- "added_in": "8.0",
+ "sheet_x": 12,
+ "sheet_y": 49,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
"1F3FF": {
"unified": "1F44C-1F3FF",
"non_qualified": null,
"image": "1f44c-1f3ff.png",
- "sheet_x": 14,
- "sheet_y": 35,
- "added_in": "8.0",
+ "sheet_x": 12,
+ "sheet_y": 50,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
}
}
},
@@ -17259,85 +17244,80 @@
"softbank": "E00E",
"google": "FEB97",
"image": "1f44d.png",
- "sheet_x": 14,
- "sheet_y": 36,
+ "sheet_x": 12,
+ "sheet_y": 51,
"short_name": "+1",
"short_names": ["+1", "thumbsup"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 374,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "hand-fingers-closed",
+ "sort_order": 194,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": true,
"skin_variations": {
"1F3FB": {
"unified": "1F44D-1F3FB",
"non_qualified": null,
"image": "1f44d-1f3fb.png",
- "sheet_x": 14,
- "sheet_y": 37,
- "added_in": "8.0",
+ "sheet_x": 12,
+ "sheet_y": 52,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
"1F3FC": {
"unified": "1F44D-1F3FC",
"non_qualified": null,
"image": "1f44d-1f3fc.png",
- "sheet_x": 14,
- "sheet_y": 38,
- "added_in": "8.0",
+ "sheet_x": 12,
+ "sheet_y": 53,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
"1F3FD": {
"unified": "1F44D-1F3FD",
"non_qualified": null,
"image": "1f44d-1f3fd.png",
- "sheet_x": 14,
- "sheet_y": 39,
- "added_in": "8.0",
+ "sheet_x": 12,
+ "sheet_y": 54,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
"1F3FE": {
"unified": "1F44D-1F3FE",
"non_qualified": null,
"image": "1f44d-1f3fe.png",
- "sheet_x": 14,
- "sheet_y": 40,
- "added_in": "8.0",
+ "sheet_x": 12,
+ "sheet_y": 55,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
"1F3FF": {
"unified": "1F44D-1F3FF",
"non_qualified": null,
"image": "1f44d-1f3ff.png",
- "sheet_x": 14,
- "sheet_y": 41,
- "added_in": "8.0",
+ "sheet_x": 12,
+ "sheet_y": 56,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
}
}
},
@@ -17350,85 +17330,80 @@
"softbank": "E421",
"google": "FEBA0",
"image": "1f44e.png",
- "sheet_x": 14,
- "sheet_y": 42,
+ "sheet_x": 12,
+ "sheet_y": 57,
"short_name": "-1",
"short_names": ["-1", "thumbsdown"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 375,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "hand-fingers-closed",
+ "sort_order": 195,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": true,
"skin_variations": {
"1F3FB": {
"unified": "1F44E-1F3FB",
"non_qualified": null,
"image": "1f44e-1f3fb.png",
- "sheet_x": 14,
- "sheet_y": 43,
- "added_in": "8.0",
+ "sheet_x": 12,
+ "sheet_y": 58,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
"1F3FC": {
"unified": "1F44E-1F3FC",
"non_qualified": null,
"image": "1f44e-1f3fc.png",
- "sheet_x": 14,
- "sheet_y": 44,
- "added_in": "8.0",
+ "sheet_x": 12,
+ "sheet_y": 59,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
"1F3FD": {
"unified": "1F44E-1F3FD",
"non_qualified": null,
"image": "1f44e-1f3fd.png",
- "sheet_x": 14,
- "sheet_y": 45,
- "added_in": "8.0",
+ "sheet_x": 12,
+ "sheet_y": 60,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
"1F3FE": {
"unified": "1F44E-1F3FE",
"non_qualified": null,
"image": "1f44e-1f3fe.png",
- "sheet_x": 14,
- "sheet_y": 46,
- "added_in": "8.0",
+ "sheet_x": 13,
+ "sheet_y": 0,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
"1F3FF": {
"unified": "1F44E-1F3FF",
"non_qualified": null,
"image": "1f44e-1f3ff.png",
- "sheet_x": 14,
- "sheet_y": 47,
- "added_in": "8.0",
+ "sheet_x": 13,
+ "sheet_y": 1,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
}
}
},
@@ -17441,85 +17416,80 @@
"softbank": "E41F",
"google": "FEB9E",
"image": "1f44f.png",
- "sheet_x": 14,
- "sheet_y": 48,
+ "sheet_x": 13,
+ "sheet_y": 2,
"short_name": "clap",
"short_names": ["clap"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 384,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "hands",
+ "sort_order": 200,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": true,
"skin_variations": {
"1F3FB": {
"unified": "1F44F-1F3FB",
"non_qualified": null,
"image": "1f44f-1f3fb.png",
- "sheet_x": 14,
- "sheet_y": 49,
- "added_in": "8.0",
+ "sheet_x": 13,
+ "sheet_y": 3,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
"1F3FC": {
"unified": "1F44F-1F3FC",
"non_qualified": null,
"image": "1f44f-1f3fc.png",
- "sheet_x": 14,
- "sheet_y": 50,
- "added_in": "8.0",
+ "sheet_x": 13,
+ "sheet_y": 4,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
"1F3FD": {
"unified": "1F44F-1F3FD",
"non_qualified": null,
"image": "1f44f-1f3fd.png",
- "sheet_x": 14,
- "sheet_y": 51,
- "added_in": "8.0",
+ "sheet_x": 13,
+ "sheet_y": 5,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
"1F3FE": {
"unified": "1F44F-1F3FE",
"non_qualified": null,
"image": "1f44f-1f3fe.png",
- "sheet_x": 14,
- "sheet_y": 52,
- "added_in": "8.0",
+ "sheet_x": 13,
+ "sheet_y": 6,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
"1F3FF": {
"unified": "1F44F-1F3FF",
"non_qualified": null,
"image": "1f44f-1f3ff.png",
- "sheet_x": 15,
- "sheet_y": 0,
- "added_in": "8.0",
+ "sheet_x": 13,
+ "sheet_y": 7,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
}
}
},
@@ -17532,85 +17502,80 @@
"softbank": "E422",
"google": "FEBA1",
"image": "1f450.png",
- "sheet_x": 15,
- "sheet_y": 1,
+ "sheet_x": 13,
+ "sheet_y": 8,
"short_name": "open_hands",
"short_names": ["open_hands"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 385,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "hands",
+ "sort_order": 203,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": true,
"skin_variations": {
"1F3FB": {
"unified": "1F450-1F3FB",
"non_qualified": null,
"image": "1f450-1f3fb.png",
- "sheet_x": 15,
- "sheet_y": 2,
- "added_in": "8.0",
+ "sheet_x": 13,
+ "sheet_y": 9,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
"1F3FC": {
"unified": "1F450-1F3FC",
"non_qualified": null,
"image": "1f450-1f3fc.png",
- "sheet_x": 15,
- "sheet_y": 3,
- "added_in": "8.0",
+ "sheet_x": 13,
+ "sheet_y": 10,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
"1F3FD": {
"unified": "1F450-1F3FD",
"non_qualified": null,
"image": "1f450-1f3fd.png",
- "sheet_x": 15,
- "sheet_y": 4,
- "added_in": "8.0",
+ "sheet_x": 13,
+ "sheet_y": 11,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
"1F3FE": {
"unified": "1F450-1F3FE",
"non_qualified": null,
"image": "1f450-1f3fe.png",
- "sheet_x": 15,
- "sheet_y": 5,
- "added_in": "8.0",
+ "sheet_x": 13,
+ "sheet_y": 12,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
"1F3FF": {
"unified": "1F450-1F3FF",
"non_qualified": null,
"image": "1f450-1f3ff.png",
- "sheet_x": 15,
- "sheet_y": 6,
- "added_in": "8.0",
+ "sheet_x": 13,
+ "sheet_y": 13,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
}
}
},
@@ -17623,20 +17588,20 @@
"softbank": "E10E",
"google": "FE4D1",
"image": "1f451.png",
- "sheet_x": 15,
- "sheet_y": 7,
+ "sheet_x": 13,
+ "sheet_y": 14,
"short_name": "crown",
"short_names": ["crown"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 460,
- "added_in": "6.0",
+ "category": "Objects",
+ "subcategory": "clothing",
+ "sort_order": 1159,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "WOMANS HAT",
@@ -17647,20 +17612,20 @@
"softbank": "E318",
"google": "FE4D4",
"image": "1f452.png",
- "sheet_x": 15,
- "sheet_y": 8,
+ "sheet_x": 13,
+ "sheet_y": 15,
"short_name": "womans_hat",
"short_names": ["womans_hat"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 461,
- "added_in": "6.0",
+ "category": "Objects",
+ "subcategory": "clothing",
+ "sort_order": 1160,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "EYEGLASSES",
@@ -17671,20 +17636,20 @@
"softbank": null,
"google": "FE4CE",
"image": "1f453.png",
- "sheet_x": 15,
- "sheet_y": 9,
+ "sheet_x": 13,
+ "sheet_y": 16,
"short_name": "eyeglasses",
"short_names": ["eyeglasses"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 433,
- "added_in": "6.0",
+ "category": "Objects",
+ "subcategory": "clothing",
+ "sort_order": 1123,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "NECKTIE",
@@ -17695,20 +17660,20 @@
"softbank": "E302",
"google": "FE4D3",
"image": "1f454.png",
- "sheet_x": 15,
- "sheet_y": 10,
+ "sheet_x": 13,
+ "sheet_y": 17,
"short_name": "necktie",
"short_names": ["necktie"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 437,
- "added_in": "6.0",
+ "category": "Objects",
+ "subcategory": "clothing",
+ "sort_order": 1128,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "T-SHIRT",
@@ -17719,20 +17684,20 @@
"softbank": "E006",
"google": "FE4CF",
"image": "1f455.png",
- "sheet_x": 15,
- "sheet_y": 11,
+ "sheet_x": 13,
+ "sheet_y": 18,
"short_name": "shirt",
"short_names": ["shirt", "tshirt"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 438,
- "added_in": "6.0",
+ "category": "Objects",
+ "subcategory": "clothing",
+ "sort_order": 1129,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "JEANS",
@@ -17743,20 +17708,20 @@
"softbank": null,
"google": "FE4D0",
"image": "1f456.png",
- "sheet_x": 15,
- "sheet_y": 12,
+ "sheet_x": 13,
+ "sheet_y": 19,
"short_name": "jeans",
"short_names": ["jeans"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 439,
- "added_in": "6.0",
+ "category": "Objects",
+ "subcategory": "clothing",
+ "sort_order": 1130,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "DRESS",
@@ -17767,20 +17732,20 @@
"softbank": "E319",
"google": "FE4D5",
"image": "1f457.png",
- "sheet_x": 15,
- "sheet_y": 13,
+ "sheet_x": 13,
+ "sheet_y": 20,
"short_name": "dress",
"short_names": ["dress"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 444,
- "added_in": "6.0",
+ "category": "Objects",
+ "subcategory": "clothing",
+ "sort_order": 1135,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "KIMONO",
@@ -17791,20 +17756,20 @@
"softbank": "E321",
"google": "FE4D9",
"image": "1f458.png",
- "sheet_x": 15,
- "sheet_y": 14,
+ "sheet_x": 13,
+ "sheet_y": 21,
"short_name": "kimono",
"short_names": ["kimono"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 445,
- "added_in": "6.0",
+ "category": "Objects",
+ "subcategory": "clothing",
+ "sort_order": 1136,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "BIKINI",
@@ -17815,20 +17780,20 @@
"softbank": "E322",
"google": "FE4DA",
"image": "1f459.png",
- "sheet_x": 15,
- "sheet_y": 15,
+ "sheet_x": 13,
+ "sheet_y": 22,
"short_name": "bikini",
"short_names": ["bikini"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 446,
- "added_in": "6.0",
+ "category": "Objects",
+ "subcategory": "clothing",
+ "sort_order": 1141,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "WOMANS CLOTHES",
@@ -17839,20 +17804,20 @@
"softbank": null,
"google": "FE4DB",
"image": "1f45a.png",
- "sheet_x": 15,
- "sheet_y": 16,
+ "sheet_x": 13,
+ "sheet_y": 23,
"short_name": "womans_clothes",
"short_names": ["womans_clothes"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 447,
- "added_in": "6.0",
+ "category": "Objects",
+ "subcategory": "clothing",
+ "sort_order": 1142,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "PURSE",
@@ -17863,20 +17828,20 @@
"softbank": null,
"google": "FE4DC",
"image": "1f45b.png",
- "sheet_x": 15,
- "sheet_y": 17,
+ "sheet_x": 13,
+ "sheet_y": 24,
"short_name": "purse",
"short_names": ["purse"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 448,
- "added_in": "6.0",
+ "category": "Objects",
+ "subcategory": "clothing",
+ "sort_order": 1144,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "HANDBAG",
@@ -17887,20 +17852,20 @@
"softbank": "E323",
"google": "FE4F0",
"image": "1f45c.png",
- "sheet_x": 15,
- "sheet_y": 18,
+ "sheet_x": 13,
+ "sheet_y": 25,
"short_name": "handbag",
"short_names": ["handbag"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 449,
- "added_in": "6.0",
+ "category": "Objects",
+ "subcategory": "clothing",
+ "sort_order": 1145,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "POUCH",
@@ -17911,20 +17876,20 @@
"softbank": null,
"google": "FE4F1",
"image": "1f45d.png",
- "sheet_x": 15,
- "sheet_y": 19,
+ "sheet_x": 13,
+ "sheet_y": 26,
"short_name": "pouch",
"short_names": ["pouch"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 450,
- "added_in": "6.0",
+ "category": "Objects",
+ "subcategory": "clothing",
+ "sort_order": 1146,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "MANS SHOE",
@@ -17935,20 +17900,20 @@
"softbank": null,
"google": "FE4CC",
"image": "1f45e.png",
- "sheet_x": 15,
- "sheet_y": 20,
+ "sheet_x": 13,
+ "sheet_y": 27,
"short_name": "mans_shoe",
"short_names": ["mans_shoe", "shoe"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 453,
- "added_in": "6.0",
+ "category": "Objects",
+ "subcategory": "clothing",
+ "sort_order": 1150,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "ATHLETIC SHOE",
@@ -17959,20 +17924,20 @@
"softbank": "E007",
"google": "FE4CD",
"image": "1f45f.png",
- "sheet_x": 15,
- "sheet_y": 21,
+ "sheet_x": 13,
+ "sheet_y": 28,
"short_name": "athletic_shoe",
"short_names": ["athletic_shoe"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 454,
- "added_in": "6.0",
+ "category": "Objects",
+ "subcategory": "clothing",
+ "sort_order": 1151,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "HIGH-HEELED SHOE",
@@ -17983,20 +17948,20 @@
"softbank": "E13E",
"google": "FE4D6",
"image": "1f460.png",
- "sheet_x": 15,
- "sheet_y": 22,
+ "sheet_x": 13,
+ "sheet_y": 29,
"short_name": "high_heel",
"short_names": ["high_heel"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 457,
- "added_in": "6.0",
+ "category": "Objects",
+ "subcategory": "clothing",
+ "sort_order": 1154,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "WOMANS SANDAL",
@@ -18007,20 +17972,20 @@
"softbank": "E31A",
"google": "FE4D7",
"image": "1f461.png",
- "sheet_x": 15,
- "sheet_y": 23,
+ "sheet_x": 13,
+ "sheet_y": 30,
"short_name": "sandal",
"short_names": ["sandal"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 458,
- "added_in": "6.0",
+ "category": "Objects",
+ "subcategory": "clothing",
+ "sort_order": 1155,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "WOMANS BOOTS",
@@ -18031,20 +17996,20 @@
"softbank": "E31B",
"google": "FE4D8",
"image": "1f462.png",
- "sheet_x": 15,
- "sheet_y": 24,
+ "sheet_x": 13,
+ "sheet_y": 31,
"short_name": "boot",
"short_names": ["boot"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 459,
- "added_in": "6.0",
+ "category": "Objects",
+ "subcategory": "clothing",
+ "sort_order": 1157,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "FOOTPRINTS",
@@ -18055,20 +18020,20 @@
"softbank": "E536",
"google": "FE553",
"image": "1f463.png",
- "sheet_x": 15,
- "sheet_y": 25,
+ "sheet_x": 13,
+ "sheet_y": 32,
"short_name": "footprints",
"short_names": ["footprints"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 393,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "person-symbol",
+ "sort_order": 529,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "BUST IN SILHOUETTE",
@@ -18079,20 +18044,20 @@
"softbank": null,
"google": "FE19A",
"image": "1f464.png",
- "sheet_x": 15,
- "sheet_y": 26,
+ "sheet_x": 13,
+ "sheet_y": 33,
"short_name": "bust_in_silhouette",
"short_names": ["bust_in_silhouette"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 272,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "person-symbol",
+ "sort_order": 526,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "BUSTS IN SILHOUETTE",
@@ -18103,20 +18068,20 @@
"softbank": null,
"google": null,
"image": "1f465.png",
- "sheet_x": 15,
- "sheet_y": 27,
+ "sheet_x": 13,
+ "sheet_y": 34,
"short_name": "busts_in_silhouette",
"short_names": ["busts_in_silhouette"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 273,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "person-symbol",
+ "sort_order": 527,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "BOY",
@@ -18127,85 +18092,80 @@
"softbank": "E001",
"google": "FE19B",
"image": "1f466.png",
- "sheet_x": 15,
- "sheet_y": 28,
+ "sheet_x": 13,
+ "sheet_y": 35,
"short_name": "boy",
"short_names": ["boy"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 116,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "person",
+ "sort_order": 230,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": true,
"skin_variations": {
"1F3FB": {
"unified": "1F466-1F3FB",
"non_qualified": null,
"image": "1f466-1f3fb.png",
- "sheet_x": 15,
- "sheet_y": 29,
- "added_in": "8.0",
+ "sheet_x": 13,
+ "sheet_y": 36,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
"1F3FC": {
"unified": "1F466-1F3FC",
"non_qualified": null,
"image": "1f466-1f3fc.png",
- "sheet_x": 15,
- "sheet_y": 30,
- "added_in": "8.0",
+ "sheet_x": 13,
+ "sheet_y": 37,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
"1F3FD": {
"unified": "1F466-1F3FD",
"non_qualified": null,
"image": "1f466-1f3fd.png",
- "sheet_x": 15,
- "sheet_y": 31,
- "added_in": "8.0",
+ "sheet_x": 13,
+ "sheet_y": 38,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
"1F3FE": {
"unified": "1F466-1F3FE",
"non_qualified": null,
"image": "1f466-1f3fe.png",
- "sheet_x": 15,
- "sheet_y": 32,
- "added_in": "8.0",
+ "sheet_x": 13,
+ "sheet_y": 39,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
"1F3FF": {
"unified": "1F466-1F3FF",
"non_qualified": null,
"image": "1f466-1f3ff.png",
- "sheet_x": 15,
- "sheet_y": 33,
- "added_in": "8.0",
+ "sheet_x": 13,
+ "sheet_y": 40,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
}
}
},
@@ -18218,90 +18178,85 @@
"softbank": "E002",
"google": "FE19C",
"image": "1f467.png",
- "sheet_x": 15,
- "sheet_y": 34,
+ "sheet_x": 13,
+ "sheet_y": 41,
"short_name": "girl",
"short_names": ["girl"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 117,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "person",
+ "sort_order": 231,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": true,
"skin_variations": {
"1F3FB": {
"unified": "1F467-1F3FB",
"non_qualified": null,
"image": "1f467-1f3fb.png",
- "sheet_x": 15,
- "sheet_y": 35,
- "added_in": "8.0",
+ "sheet_x": 13,
+ "sheet_y": 42,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
"1F3FC": {
"unified": "1F467-1F3FC",
"non_qualified": null,
"image": "1f467-1f3fc.png",
- "sheet_x": 15,
- "sheet_y": 36,
- "added_in": "8.0",
+ "sheet_x": 13,
+ "sheet_y": 43,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
"1F3FD": {
"unified": "1F467-1F3FD",
"non_qualified": null,
"image": "1f467-1f3fd.png",
- "sheet_x": 15,
- "sheet_y": 37,
- "added_in": "8.0",
+ "sheet_x": 13,
+ "sheet_y": 44,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
"1F3FE": {
"unified": "1F467-1F3FE",
"non_qualified": null,
"image": "1f467-1f3fe.png",
- "sheet_x": 15,
- "sheet_y": 38,
- "added_in": "8.0",
+ "sheet_x": 13,
+ "sheet_y": 45,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
"1F3FF": {
"unified": "1F467-1F3FF",
"non_qualified": null,
"image": "1f467-1f3ff.png",
- "sheet_x": 15,
- "sheet_y": 39,
- "added_in": "8.0",
+ "sheet_x": 13,
+ "sheet_y": 46,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
}
}
},
{
- "name": null,
+ "name": "MAN FARMER",
"unified": "1F468-200D-1F33E",
"non_qualified": null,
"docomo": null,
@@ -18309,90 +18264,85 @@
"softbank": null,
"google": null,
"image": "1f468-200d-1f33e.png",
- "sheet_x": 15,
- "sheet_y": 40,
+ "sheet_x": 13,
+ "sheet_y": 47,
"short_name": "male-farmer",
"short_names": ["male-farmer"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 132,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "person-role",
+ "sort_order": 299,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": false,
"skin_variations": {
"1F3FB": {
"unified": "1F468-1F3FB-200D-1F33E",
"non_qualified": null,
"image": "1f468-1f3fb-200d-1f33e.png",
- "sheet_x": 15,
- "sheet_y": 41,
- "added_in": "8.0",
+ "sheet_x": 13,
+ "sheet_y": 48,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FC": {
"unified": "1F468-1F3FC-200D-1F33E",
"non_qualified": null,
"image": "1f468-1f3fc-200d-1f33e.png",
- "sheet_x": 15,
- "sheet_y": 42,
- "added_in": "8.0",
+ "sheet_x": 13,
+ "sheet_y": 49,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FD": {
"unified": "1F468-1F3FD-200D-1F33E",
"non_qualified": null,
"image": "1f468-1f3fd-200d-1f33e.png",
- "sheet_x": 15,
- "sheet_y": 43,
- "added_in": "8.0",
+ "sheet_x": 13,
+ "sheet_y": 50,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FE": {
"unified": "1F468-1F3FE-200D-1F33E",
"non_qualified": null,
"image": "1f468-1f3fe-200d-1f33e.png",
- "sheet_x": 15,
- "sheet_y": 44,
- "added_in": "8.0",
+ "sheet_x": 13,
+ "sheet_y": 51,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FF": {
"unified": "1F468-1F3FF-200D-1F33E",
"non_qualified": null,
"image": "1f468-1f3ff-200d-1f33e.png",
- "sheet_x": 15,
- "sheet_y": 45,
- "added_in": "8.0",
+ "sheet_x": 13,
+ "sheet_y": 52,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
}
}
},
{
- "name": null,
+ "name": "MAN COOK",
"unified": "1F468-200D-1F373",
"non_qualified": null,
"docomo": null,
@@ -18400,90 +18350,171 @@
"softbank": null,
"google": null,
"image": "1f468-200d-1f373.png",
- "sheet_x": 15,
- "sheet_y": 46,
+ "sheet_x": 13,
+ "sheet_y": 53,
"short_name": "male-cook",
"short_names": ["male-cook"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 134,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "person-role",
+ "sort_order": 302,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": false,
"skin_variations": {
"1F3FB": {
"unified": "1F468-1F3FB-200D-1F373",
"non_qualified": null,
"image": "1f468-1f3fb-200d-1f373.png",
- "sheet_x": 15,
- "sheet_y": 47,
- "added_in": "8.0",
+ "sheet_x": 13,
+ "sheet_y": 54,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FC": {
"unified": "1F468-1F3FC-200D-1F373",
"non_qualified": null,
"image": "1f468-1f3fc-200d-1f373.png",
- "sheet_x": 15,
- "sheet_y": 48,
- "added_in": "8.0",
+ "sheet_x": 13,
+ "sheet_y": 55,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FD": {
"unified": "1F468-1F3FD-200D-1F373",
"non_qualified": null,
"image": "1f468-1f3fd-200d-1f373.png",
- "sheet_x": 15,
- "sheet_y": 49,
- "added_in": "8.0",
+ "sheet_x": 13,
+ "sheet_y": 56,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FE": {
"unified": "1F468-1F3FE-200D-1F373",
"non_qualified": null,
"image": "1f468-1f3fe-200d-1f373.png",
- "sheet_x": 15,
- "sheet_y": 50,
- "added_in": "8.0",
+ "sheet_x": 13,
+ "sheet_y": 57,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FF": {
"unified": "1F468-1F3FF-200D-1F373",
"non_qualified": null,
"image": "1f468-1f3ff-200d-1f373.png",
- "sheet_x": 15,
- "sheet_y": 51,
- "added_in": "8.0",
+ "sheet_x": 13,
+ "sheet_y": 58,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
+ }
+ }
+ },
+ {
+ "name": "MAN FEEDING BABY",
+ "unified": "1F468-200D-1F37C",
+ "non_qualified": null,
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f468-200d-1f37c.png",
+ "sheet_x": 13,
+ "sheet_y": 59,
+ "short_name": "man_feeding_baby",
+ "short_names": ["man_feeding_baby"],
+ "text": null,
+ "texts": null,
+ "category": "People & Body",
+ "subcategory": "person-role",
+ "sort_order": 366,
+ "added_in": "13.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true,
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F468-1F3FB-200D-1F37C",
+ "non_qualified": null,
+ "image": "1f468-1f3fb-200d-1f37c.png",
+ "sheet_x": 13,
+ "sheet_y": 60,
+ "added_in": "13.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1F468-1F3FC-200D-1F37C",
+ "non_qualified": null,
+ "image": "1f468-1f3fc-200d-1f37c.png",
+ "sheet_x": 14,
+ "sheet_y": 0,
+ "added_in": "13.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1F468-1F3FD-200D-1F37C",
+ "non_qualified": null,
+ "image": "1f468-1f3fd-200d-1f37c.png",
+ "sheet_x": 14,
+ "sheet_y": 1,
+ "added_in": "13.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1F468-1F3FE-200D-1F37C",
+ "non_qualified": null,
+ "image": "1f468-1f3fe-200d-1f37c.png",
+ "sheet_x": 14,
+ "sheet_y": 2,
+ "added_in": "13.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1F468-1F3FF-200D-1F37C",
+ "non_qualified": null,
+ "image": "1f468-1f3ff-200d-1f37c.png",
+ "sheet_x": 14,
+ "sheet_y": 3,
+ "added_in": "13.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
}
}
},
{
- "name": null,
+ "name": "MAN STUDENT",
"unified": "1F468-200D-1F393",
"non_qualified": null,
"docomo": null,
@@ -18491,90 +18522,85 @@
"softbank": null,
"google": null,
"image": "1f468-200d-1f393.png",
- "sheet_x": 15,
- "sheet_y": 52,
+ "sheet_x": 14,
+ "sheet_y": 4,
"short_name": "male-student",
"short_names": ["male-student"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 126,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "person-role",
+ "sort_order": 290,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": false,
"skin_variations": {
"1F3FB": {
"unified": "1F468-1F3FB-200D-1F393",
"non_qualified": null,
"image": "1f468-1f3fb-200d-1f393.png",
- "sheet_x": 16,
- "sheet_y": 0,
- "added_in": "8.0",
+ "sheet_x": 14,
+ "sheet_y": 5,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FC": {
"unified": "1F468-1F3FC-200D-1F393",
"non_qualified": null,
"image": "1f468-1f3fc-200d-1f393.png",
- "sheet_x": 16,
- "sheet_y": 1,
- "added_in": "8.0",
+ "sheet_x": 14,
+ "sheet_y": 6,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FD": {
"unified": "1F468-1F3FD-200D-1F393",
"non_qualified": null,
"image": "1f468-1f3fd-200d-1f393.png",
- "sheet_x": 16,
- "sheet_y": 2,
- "added_in": "8.0",
+ "sheet_x": 14,
+ "sheet_y": 7,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FE": {
"unified": "1F468-1F3FE-200D-1F393",
"non_qualified": null,
"image": "1f468-1f3fe-200d-1f393.png",
- "sheet_x": 16,
- "sheet_y": 3,
- "added_in": "8.0",
+ "sheet_x": 14,
+ "sheet_y": 8,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FF": {
"unified": "1F468-1F3FF-200D-1F393",
"non_qualified": null,
"image": "1f468-1f3ff-200d-1f393.png",
- "sheet_x": 16,
- "sheet_y": 4,
- "added_in": "8.0",
+ "sheet_x": 14,
+ "sheet_y": 9,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
}
}
},
{
- "name": null,
+ "name": "MAN SINGER",
"unified": "1F468-200D-1F3A4",
"non_qualified": null,
"docomo": null,
@@ -18582,90 +18608,85 @@
"softbank": null,
"google": null,
"image": "1f468-200d-1f3a4.png",
- "sheet_x": 16,
- "sheet_y": 5,
+ "sheet_x": 14,
+ "sheet_y": 10,
"short_name": "male-singer",
"short_names": ["male-singer"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 146,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "person-role",
+ "sort_order": 320,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": false,
"skin_variations": {
"1F3FB": {
"unified": "1F468-1F3FB-200D-1F3A4",
"non_qualified": null,
"image": "1f468-1f3fb-200d-1f3a4.png",
- "sheet_x": 16,
- "sheet_y": 6,
- "added_in": "8.0",
+ "sheet_x": 14,
+ "sheet_y": 11,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FC": {
"unified": "1F468-1F3FC-200D-1F3A4",
"non_qualified": null,
"image": "1f468-1f3fc-200d-1f3a4.png",
- "sheet_x": 16,
- "sheet_y": 7,
- "added_in": "8.0",
+ "sheet_x": 14,
+ "sheet_y": 12,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FD": {
"unified": "1F468-1F3FD-200D-1F3A4",
"non_qualified": null,
"image": "1f468-1f3fd-200d-1f3a4.png",
- "sheet_x": 16,
- "sheet_y": 8,
- "added_in": "8.0",
+ "sheet_x": 14,
+ "sheet_y": 13,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FE": {
"unified": "1F468-1F3FE-200D-1F3A4",
"non_qualified": null,
"image": "1f468-1f3fe-200d-1f3a4.png",
- "sheet_x": 16,
- "sheet_y": 9,
- "added_in": "8.0",
+ "sheet_x": 14,
+ "sheet_y": 14,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FF": {
"unified": "1F468-1F3FF-200D-1F3A4",
"non_qualified": null,
"image": "1f468-1f3ff-200d-1f3a4.png",
- "sheet_x": 16,
- "sheet_y": 10,
- "added_in": "8.0",
+ "sheet_x": 14,
+ "sheet_y": 15,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
}
}
},
{
- "name": null,
+ "name": "MAN ARTIST",
"unified": "1F468-200D-1F3A8",
"non_qualified": null,
"docomo": null,
@@ -18673,90 +18694,85 @@
"softbank": null,
"google": null,
"image": "1f468-200d-1f3a8.png",
- "sheet_x": 16,
- "sheet_y": 11,
+ "sheet_x": 14,
+ "sheet_y": 16,
"short_name": "male-artist",
"short_names": ["male-artist"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 148,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "person-role",
+ "sort_order": 323,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": false,
"skin_variations": {
"1F3FB": {
"unified": "1F468-1F3FB-200D-1F3A8",
"non_qualified": null,
"image": "1f468-1f3fb-200d-1f3a8.png",
- "sheet_x": 16,
- "sheet_y": 12,
- "added_in": "8.0",
+ "sheet_x": 14,
+ "sheet_y": 17,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FC": {
"unified": "1F468-1F3FC-200D-1F3A8",
"non_qualified": null,
"image": "1f468-1f3fc-200d-1f3a8.png",
- "sheet_x": 16,
- "sheet_y": 13,
- "added_in": "8.0",
+ "sheet_x": 14,
+ "sheet_y": 18,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FD": {
"unified": "1F468-1F3FD-200D-1F3A8",
"non_qualified": null,
"image": "1f468-1f3fd-200d-1f3a8.png",
- "sheet_x": 16,
- "sheet_y": 14,
- "added_in": "8.0",
+ "sheet_x": 14,
+ "sheet_y": 19,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FE": {
"unified": "1F468-1F3FE-200D-1F3A8",
"non_qualified": null,
"image": "1f468-1f3fe-200d-1f3a8.png",
- "sheet_x": 16,
- "sheet_y": 15,
- "added_in": "8.0",
+ "sheet_x": 14,
+ "sheet_y": 20,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FF": {
"unified": "1F468-1F3FF-200D-1F3A8",
"non_qualified": null,
"image": "1f468-1f3ff-200d-1f3a8.png",
- "sheet_x": 16,
- "sheet_y": 16,
- "added_in": "8.0",
+ "sheet_x": 14,
+ "sheet_y": 21,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
}
}
},
{
- "name": null,
+ "name": "MAN TEACHER",
"unified": "1F468-200D-1F3EB",
"non_qualified": null,
"docomo": null,
@@ -18764,90 +18780,85 @@
"softbank": null,
"google": null,
"image": "1f468-200d-1f3eb.png",
- "sheet_x": 16,
- "sheet_y": 17,
+ "sheet_x": 14,
+ "sheet_y": 22,
"short_name": "male-teacher",
"short_names": ["male-teacher"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 128,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "person-role",
+ "sort_order": 293,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": false,
"skin_variations": {
"1F3FB": {
"unified": "1F468-1F3FB-200D-1F3EB",
"non_qualified": null,
"image": "1f468-1f3fb-200d-1f3eb.png",
- "sheet_x": 16,
- "sheet_y": 18,
- "added_in": "8.0",
+ "sheet_x": 14,
+ "sheet_y": 23,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FC": {
"unified": "1F468-1F3FC-200D-1F3EB",
"non_qualified": null,
"image": "1f468-1f3fc-200d-1f3eb.png",
- "sheet_x": 16,
- "sheet_y": 19,
- "added_in": "8.0",
+ "sheet_x": 14,
+ "sheet_y": 24,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FD": {
"unified": "1F468-1F3FD-200D-1F3EB",
"non_qualified": null,
"image": "1f468-1f3fd-200d-1f3eb.png",
- "sheet_x": 16,
- "sheet_y": 20,
- "added_in": "8.0",
+ "sheet_x": 14,
+ "sheet_y": 25,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FE": {
"unified": "1F468-1F3FE-200D-1F3EB",
"non_qualified": null,
"image": "1f468-1f3fe-200d-1f3eb.png",
- "sheet_x": 16,
- "sheet_y": 21,
- "added_in": "8.0",
+ "sheet_x": 14,
+ "sheet_y": 26,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FF": {
"unified": "1F468-1F3FF-200D-1F3EB",
"non_qualified": null,
"image": "1f468-1f3ff-200d-1f3eb.png",
- "sheet_x": 16,
- "sheet_y": 22,
- "added_in": "8.0",
+ "sheet_x": 14,
+ "sheet_y": 27,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
}
}
},
{
- "name": null,
+ "name": "MAN FACTORY WORKER",
"unified": "1F468-200D-1F3ED",
"non_qualified": null,
"docomo": null,
@@ -18855,90 +18866,85 @@
"softbank": null,
"google": null,
"image": "1f468-200d-1f3ed.png",
- "sheet_x": 16,
- "sheet_y": 23,
+ "sheet_x": 14,
+ "sheet_y": 28,
"short_name": "male-factory-worker",
"short_names": ["male-factory-worker"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 138,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "person-role",
+ "sort_order": 308,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": false,
"skin_variations": {
"1F3FB": {
"unified": "1F468-1F3FB-200D-1F3ED",
"non_qualified": null,
"image": "1f468-1f3fb-200d-1f3ed.png",
- "sheet_x": 16,
- "sheet_y": 24,
- "added_in": "8.0",
+ "sheet_x": 14,
+ "sheet_y": 29,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FC": {
"unified": "1F468-1F3FC-200D-1F3ED",
"non_qualified": null,
"image": "1f468-1f3fc-200d-1f3ed.png",
- "sheet_x": 16,
- "sheet_y": 25,
- "added_in": "8.0",
+ "sheet_x": 14,
+ "sheet_y": 30,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FD": {
"unified": "1F468-1F3FD-200D-1F3ED",
"non_qualified": null,
"image": "1f468-1f3fd-200d-1f3ed.png",
- "sheet_x": 16,
- "sheet_y": 26,
- "added_in": "8.0",
+ "sheet_x": 14,
+ "sheet_y": 31,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FE": {
"unified": "1F468-1F3FE-200D-1F3ED",
"non_qualified": null,
"image": "1f468-1f3fe-200d-1f3ed.png",
- "sheet_x": 16,
- "sheet_y": 27,
- "added_in": "8.0",
+ "sheet_x": 14,
+ "sheet_y": 32,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FF": {
"unified": "1F468-1F3FF-200D-1F3ED",
"non_qualified": null,
"image": "1f468-1f3ff-200d-1f3ed.png",
- "sheet_x": 16,
- "sheet_y": 28,
- "added_in": "8.0",
+ "sheet_x": 14,
+ "sheet_y": 33,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
}
}
},
{
- "name": null,
+ "name": "FAMILY: MAN, BOY, BOY",
"unified": "1F468-200D-1F466-200D-1F466",
"non_qualified": null,
"docomo": null,
@@ -18946,23 +18952,23 @@
"softbank": null,
"google": null,
"image": "1f468-200d-1f466-200d-1f466.png",
- "sheet_x": 16,
- "sheet_y": 29,
+ "sheet_x": 14,
+ "sheet_y": 34,
"short_name": "man-boy-boy",
"short_names": ["man-boy-boy"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 347,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "family",
+ "sort_order": 516,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
- "name": null,
+ "name": "FAMILY: MAN, BOY",
"unified": "1F468-200D-1F466",
"non_qualified": null,
"docomo": null,
@@ -18970,23 +18976,23 @@
"softbank": null,
"google": null,
"image": "1f468-200d-1f466.png",
- "sheet_x": 16,
- "sheet_y": 30,
+ "sheet_x": 14,
+ "sheet_y": 35,
"short_name": "man-boy",
"short_names": ["man-boy"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 346,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "family",
+ "sort_order": 515,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
- "name": null,
+ "name": "FAMILY: MAN, GIRL, BOY",
"unified": "1F468-200D-1F467-200D-1F466",
"non_qualified": null,
"docomo": null,
@@ -18994,23 +19000,23 @@
"softbank": null,
"google": null,
"image": "1f468-200d-1f467-200d-1f466.png",
- "sheet_x": 16,
- "sheet_y": 31,
+ "sheet_x": 14,
+ "sheet_y": 36,
"short_name": "man-girl-boy",
"short_names": ["man-girl-boy"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 349,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "family",
+ "sort_order": 518,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
- "name": null,
+ "name": "FAMILY: MAN, GIRL, GIRL",
"unified": "1F468-200D-1F467-200D-1F467",
"non_qualified": null,
"docomo": null,
@@ -19018,23 +19024,23 @@
"softbank": null,
"google": null,
"image": "1f468-200d-1f467-200d-1f467.png",
- "sheet_x": 16,
- "sheet_y": 32,
+ "sheet_x": 14,
+ "sheet_y": 37,
"short_name": "man-girl-girl",
"short_names": ["man-girl-girl"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 350,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "family",
+ "sort_order": 519,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
- "name": null,
+ "name": "FAMILY: MAN, GIRL",
"unified": "1F468-200D-1F467",
"non_qualified": null,
"docomo": null,
@@ -19042,23 +19048,23 @@
"softbank": null,
"google": null,
"image": "1f468-200d-1f467.png",
- "sheet_x": 16,
- "sheet_y": 33,
+ "sheet_x": 14,
+ "sheet_y": 38,
"short_name": "man-girl",
"short_names": ["man-girl"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 348,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "family",
+ "sort_order": 517,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
- "name": null,
+ "name": "FAMILY: MAN, MAN, BOY",
"unified": "1F468-200D-1F468-200D-1F466",
"non_qualified": null,
"docomo": null,
@@ -19066,23 +19072,23 @@
"softbank": null,
"google": null,
"image": "1f468-200d-1f468-200d-1f466.png",
- "sheet_x": 16,
- "sheet_y": 34,
+ "sheet_x": 14,
+ "sheet_y": 39,
"short_name": "man-man-boy",
"short_names": ["man-man-boy"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 336,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "family",
+ "sort_order": 505,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": null,
+ "name": "FAMILY: MAN, MAN, BOY, BOY",
"unified": "1F468-200D-1F468-200D-1F466-200D-1F466",
"non_qualified": null,
"docomo": null,
@@ -19090,23 +19096,23 @@
"softbank": null,
"google": null,
"image": "1f468-200d-1f468-200d-1f466-200d-1f466.png",
- "sheet_x": 16,
- "sheet_y": 35,
+ "sheet_x": 14,
+ "sheet_y": 40,
"short_name": "man-man-boy-boy",
"short_names": ["man-man-boy-boy"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 339,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "family",
+ "sort_order": 508,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": null,
+ "name": "FAMILY: MAN, MAN, GIRL",
"unified": "1F468-200D-1F468-200D-1F467",
"non_qualified": null,
"docomo": null,
@@ -19114,23 +19120,23 @@
"softbank": null,
"google": null,
"image": "1f468-200d-1f468-200d-1f467.png",
- "sheet_x": 16,
- "sheet_y": 36,
+ "sheet_x": 14,
+ "sheet_y": 41,
"short_name": "man-man-girl",
"short_names": ["man-man-girl"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 337,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "family",
+ "sort_order": 506,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": null,
+ "name": "FAMILY: MAN, MAN, GIRL, BOY",
"unified": "1F468-200D-1F468-200D-1F467-200D-1F466",
"non_qualified": null,
"docomo": null,
@@ -19138,23 +19144,23 @@
"softbank": null,
"google": null,
"image": "1f468-200d-1f468-200d-1f467-200d-1f466.png",
- "sheet_x": 16,
- "sheet_y": 37,
+ "sheet_x": 14,
+ "sheet_y": 42,
"short_name": "man-man-girl-boy",
"short_names": ["man-man-girl-boy"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 338,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "family",
+ "sort_order": 507,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": null,
+ "name": "FAMILY: MAN, MAN, GIRL, GIRL",
"unified": "1F468-200D-1F468-200D-1F467-200D-1F467",
"non_qualified": null,
"docomo": null,
@@ -19162,23 +19168,23 @@
"softbank": null,
"google": null,
"image": "1f468-200d-1f468-200d-1f467-200d-1f467.png",
- "sheet_x": 16,
- "sheet_y": 38,
+ "sheet_x": 14,
+ "sheet_y": 43,
"short_name": "man-man-girl-girl",
"short_names": ["man-man-girl-girl"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 340,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "family",
+ "sort_order": 509,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": null,
+ "name": "FAMILY: MAN, WOMAN, BOY",
"unified": "1F468-200D-1F469-200D-1F466",
"non_qualified": null,
"docomo": null,
@@ -19186,24 +19192,24 @@
"softbank": null,
"google": null,
"image": "1f468-200d-1f469-200d-1f466.png",
- "sheet_x": 16,
- "sheet_y": 39,
+ "sheet_x": 14,
+ "sheet_y": 44,
"short_name": "man-woman-boy",
- "short_names": ["man-woman-boy", "family"],
+ "short_names": ["man-woman-boy"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 331,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "family",
+ "sort_order": 500,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": true,
"obsoletes": "1F46A"
},
{
- "name": null,
+ "name": "FAMILY: MAN, WOMAN, BOY, BOY",
"unified": "1F468-200D-1F469-200D-1F466-200D-1F466",
"non_qualified": null,
"docomo": null,
@@ -19211,23 +19217,23 @@
"softbank": null,
"google": null,
"image": "1f468-200d-1f469-200d-1f466-200d-1f466.png",
- "sheet_x": 16,
- "sheet_y": 40,
+ "sheet_x": 14,
+ "sheet_y": 45,
"short_name": "man-woman-boy-boy",
"short_names": ["man-woman-boy-boy"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 334,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "family",
+ "sort_order": 503,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": null,
+ "name": "FAMILY: MAN, WOMAN, GIRL",
"unified": "1F468-200D-1F469-200D-1F467",
"non_qualified": null,
"docomo": null,
@@ -19235,23 +19241,23 @@
"softbank": null,
"google": null,
"image": "1f468-200d-1f469-200d-1f467.png",
- "sheet_x": 16,
- "sheet_y": 41,
+ "sheet_x": 14,
+ "sheet_y": 46,
"short_name": "man-woman-girl",
"short_names": ["man-woman-girl"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 332,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "family",
+ "sort_order": 501,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": null,
+ "name": "FAMILY: MAN, WOMAN, GIRL, BOY",
"unified": "1F468-200D-1F469-200D-1F467-200D-1F466",
"non_qualified": null,
"docomo": null,
@@ -19259,23 +19265,23 @@
"softbank": null,
"google": null,
"image": "1f468-200d-1f469-200d-1f467-200d-1f466.png",
- "sheet_x": 16,
- "sheet_y": 42,
+ "sheet_x": 14,
+ "sheet_y": 47,
"short_name": "man-woman-girl-boy",
"short_names": ["man-woman-girl-boy"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 333,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "family",
+ "sort_order": 502,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": null,
+ "name": "FAMILY: MAN, WOMAN, GIRL, GIRL",
"unified": "1F468-200D-1F469-200D-1F467-200D-1F467",
"non_qualified": null,
"docomo": null,
@@ -19283,23 +19289,23 @@
"softbank": null,
"google": null,
"image": "1f468-200d-1f469-200d-1f467-200d-1f467.png",
- "sheet_x": 16,
- "sheet_y": 43,
+ "sheet_x": 14,
+ "sheet_y": 48,
"short_name": "man-woman-girl-girl",
"short_names": ["man-woman-girl-girl"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 335,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "family",
+ "sort_order": 504,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": null,
+ "name": "MAN TECHNOLOGIST",
"unified": "1F468-200D-1F4BB",
"non_qualified": null,
"docomo": null,
@@ -19307,90 +19313,85 @@
"softbank": null,
"google": null,
"image": "1f468-200d-1f4bb.png",
- "sheet_x": 16,
- "sheet_y": 44,
+ "sheet_x": 14,
+ "sheet_y": 49,
"short_name": "male-technologist",
"short_names": ["male-technologist"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 144,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "person-role",
+ "sort_order": 317,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": false,
"skin_variations": {
"1F3FB": {
"unified": "1F468-1F3FB-200D-1F4BB",
"non_qualified": null,
"image": "1f468-1f3fb-200d-1f4bb.png",
- "sheet_x": 16,
- "sheet_y": 45,
- "added_in": "8.0",
+ "sheet_x": 14,
+ "sheet_y": 50,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FC": {
"unified": "1F468-1F3FC-200D-1F4BB",
"non_qualified": null,
"image": "1f468-1f3fc-200d-1f4bb.png",
- "sheet_x": 16,
- "sheet_y": 46,
- "added_in": "8.0",
+ "sheet_x": 14,
+ "sheet_y": 51,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FD": {
"unified": "1F468-1F3FD-200D-1F4BB",
"non_qualified": null,
"image": "1f468-1f3fd-200d-1f4bb.png",
- "sheet_x": 16,
- "sheet_y": 47,
- "added_in": "8.0",
+ "sheet_x": 14,
+ "sheet_y": 52,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FE": {
"unified": "1F468-1F3FE-200D-1F4BB",
"non_qualified": null,
"image": "1f468-1f3fe-200d-1f4bb.png",
- "sheet_x": 16,
- "sheet_y": 48,
- "added_in": "8.0",
+ "sheet_x": 14,
+ "sheet_y": 53,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FF": {
"unified": "1F468-1F3FF-200D-1F4BB",
"non_qualified": null,
"image": "1f468-1f3ff-200d-1f4bb.png",
- "sheet_x": 16,
- "sheet_y": 49,
- "added_in": "8.0",
+ "sheet_x": 14,
+ "sheet_y": 54,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
}
}
},
{
- "name": null,
+ "name": "MAN OFFICE WORKER",
"unified": "1F468-200D-1F4BC",
"non_qualified": null,
"docomo": null,
@@ -19398,90 +19399,85 @@
"softbank": null,
"google": null,
"image": "1f468-200d-1f4bc.png",
- "sheet_x": 16,
- "sheet_y": 50,
+ "sheet_x": 14,
+ "sheet_y": 55,
"short_name": "male-office-worker",
"short_names": ["male-office-worker"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 140,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "person-role",
+ "sort_order": 311,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": false,
"skin_variations": {
"1F3FB": {
"unified": "1F468-1F3FB-200D-1F4BC",
"non_qualified": null,
"image": "1f468-1f3fb-200d-1f4bc.png",
- "sheet_x": 16,
- "sheet_y": 51,
- "added_in": "8.0",
+ "sheet_x": 14,
+ "sheet_y": 56,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FC": {
"unified": "1F468-1F3FC-200D-1F4BC",
"non_qualified": null,
"image": "1f468-1f3fc-200d-1f4bc.png",
- "sheet_x": 16,
- "sheet_y": 52,
- "added_in": "8.0",
+ "sheet_x": 14,
+ "sheet_y": 57,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FD": {
"unified": "1F468-1F3FD-200D-1F4BC",
"non_qualified": null,
"image": "1f468-1f3fd-200d-1f4bc.png",
- "sheet_x": 17,
- "sheet_y": 0,
- "added_in": "8.0",
+ "sheet_x": 14,
+ "sheet_y": 58,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FE": {
"unified": "1F468-1F3FE-200D-1F4BC",
"non_qualified": null,
"image": "1f468-1f3fe-200d-1f4bc.png",
- "sheet_x": 17,
- "sheet_y": 1,
- "added_in": "8.0",
+ "sheet_x": 14,
+ "sheet_y": 59,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FF": {
"unified": "1F468-1F3FF-200D-1F4BC",
"non_qualified": null,
"image": "1f468-1f3ff-200d-1f4bc.png",
- "sheet_x": 17,
- "sheet_y": 2,
- "added_in": "8.0",
+ "sheet_x": 14,
+ "sheet_y": 60,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
}
}
},
{
- "name": null,
+ "name": "MAN MECHANIC",
"unified": "1F468-200D-1F527",
"non_qualified": null,
"docomo": null,
@@ -19489,90 +19485,85 @@
"softbank": null,
"google": null,
"image": "1f468-200d-1f527.png",
- "sheet_x": 17,
- "sheet_y": 3,
+ "sheet_x": 15,
+ "sheet_y": 0,
"short_name": "male-mechanic",
"short_names": ["male-mechanic"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 136,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "person-role",
+ "sort_order": 305,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": false,
"skin_variations": {
"1F3FB": {
"unified": "1F468-1F3FB-200D-1F527",
"non_qualified": null,
"image": "1f468-1f3fb-200d-1f527.png",
- "sheet_x": 17,
- "sheet_y": 4,
- "added_in": "8.0",
+ "sheet_x": 15,
+ "sheet_y": 1,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FC": {
"unified": "1F468-1F3FC-200D-1F527",
"non_qualified": null,
"image": "1f468-1f3fc-200d-1f527.png",
- "sheet_x": 17,
- "sheet_y": 5,
- "added_in": "8.0",
+ "sheet_x": 15,
+ "sheet_y": 2,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FD": {
"unified": "1F468-1F3FD-200D-1F527",
"non_qualified": null,
"image": "1f468-1f3fd-200d-1f527.png",
- "sheet_x": 17,
- "sheet_y": 6,
- "added_in": "8.0",
+ "sheet_x": 15,
+ "sheet_y": 3,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FE": {
"unified": "1F468-1F3FE-200D-1F527",
"non_qualified": null,
"image": "1f468-1f3fe-200d-1f527.png",
- "sheet_x": 17,
- "sheet_y": 7,
- "added_in": "8.0",
+ "sheet_x": 15,
+ "sheet_y": 4,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FF": {
"unified": "1F468-1F3FF-200D-1F527",
"non_qualified": null,
"image": "1f468-1f3ff-200d-1f527.png",
- "sheet_x": 17,
- "sheet_y": 8,
- "added_in": "8.0",
+ "sheet_x": 15,
+ "sheet_y": 5,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
}
}
},
{
- "name": null,
+ "name": "MAN SCIENTIST",
"unified": "1F468-200D-1F52C",
"non_qualified": null,
"docomo": null,
@@ -19580,90 +19571,85 @@
"softbank": null,
"google": null,
"image": "1f468-200d-1f52c.png",
- "sheet_x": 17,
- "sheet_y": 9,
+ "sheet_x": 15,
+ "sheet_y": 6,
"short_name": "male-scientist",
"short_names": ["male-scientist"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 142,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "person-role",
+ "sort_order": 314,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": false,
"skin_variations": {
"1F3FB": {
"unified": "1F468-1F3FB-200D-1F52C",
"non_qualified": null,
"image": "1f468-1f3fb-200d-1f52c.png",
- "sheet_x": 17,
- "sheet_y": 10,
- "added_in": "8.0",
+ "sheet_x": 15,
+ "sheet_y": 7,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FC": {
"unified": "1F468-1F3FC-200D-1F52C",
"non_qualified": null,
"image": "1f468-1f3fc-200d-1f52c.png",
- "sheet_x": 17,
- "sheet_y": 11,
- "added_in": "8.0",
+ "sheet_x": 15,
+ "sheet_y": 8,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FD": {
"unified": "1F468-1F3FD-200D-1F52C",
"non_qualified": null,
"image": "1f468-1f3fd-200d-1f52c.png",
- "sheet_x": 17,
- "sheet_y": 12,
- "added_in": "8.0",
+ "sheet_x": 15,
+ "sheet_y": 9,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FE": {
"unified": "1F468-1F3FE-200D-1F52C",
"non_qualified": null,
"image": "1f468-1f3fe-200d-1f52c.png",
- "sheet_x": 17,
- "sheet_y": 13,
- "added_in": "8.0",
+ "sheet_x": 15,
+ "sheet_y": 10,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FF": {
"unified": "1F468-1F3FF-200D-1F52C",
"non_qualified": null,
"image": "1f468-1f3ff-200d-1f52c.png",
- "sheet_x": 17,
- "sheet_y": 14,
- "added_in": "8.0",
+ "sheet_x": 15,
+ "sheet_y": 11,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
}
}
},
{
- "name": null,
+ "name": "MAN ASTRONAUT",
"unified": "1F468-200D-1F680",
"non_qualified": null,
"docomo": null,
@@ -19671,90 +19657,85 @@
"softbank": null,
"google": null,
"image": "1f468-200d-1f680.png",
- "sheet_x": 17,
- "sheet_y": 15,
+ "sheet_x": 15,
+ "sheet_y": 12,
"short_name": "male-astronaut",
"short_names": ["male-astronaut"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 152,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "person-role",
+ "sort_order": 329,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": false,
"skin_variations": {
"1F3FB": {
"unified": "1F468-1F3FB-200D-1F680",
"non_qualified": null,
"image": "1f468-1f3fb-200d-1f680.png",
- "sheet_x": 17,
- "sheet_y": 16,
- "added_in": "8.0",
+ "sheet_x": 15,
+ "sheet_y": 13,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FC": {
"unified": "1F468-1F3FC-200D-1F680",
"non_qualified": null,
"image": "1f468-1f3fc-200d-1f680.png",
- "sheet_x": 17,
- "sheet_y": 17,
- "added_in": "8.0",
+ "sheet_x": 15,
+ "sheet_y": 14,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FD": {
"unified": "1F468-1F3FD-200D-1F680",
"non_qualified": null,
"image": "1f468-1f3fd-200d-1f680.png",
- "sheet_x": 17,
- "sheet_y": 18,
- "added_in": "8.0",
+ "sheet_x": 15,
+ "sheet_y": 15,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FE": {
"unified": "1F468-1F3FE-200D-1F680",
"non_qualified": null,
"image": "1f468-1f3fe-200d-1f680.png",
- "sheet_x": 17,
- "sheet_y": 19,
- "added_in": "8.0",
+ "sheet_x": 15,
+ "sheet_y": 16,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FF": {
"unified": "1F468-1F3FF-200D-1F680",
"non_qualified": null,
"image": "1f468-1f3ff-200d-1f680.png",
- "sheet_x": 17,
- "sheet_y": 20,
- "added_in": "8.0",
+ "sheet_x": 15,
+ "sheet_y": 17,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
}
}
},
{
- "name": null,
+ "name": "MAN FIREFIGHTER",
"unified": "1F468-200D-1F692",
"non_qualified": null,
"docomo": null,
@@ -19762,90 +19743,171 @@
"softbank": null,
"google": null,
"image": "1f468-200d-1f692.png",
- "sheet_x": 17,
- "sheet_y": 21,
+ "sheet_x": 15,
+ "sheet_y": 18,
"short_name": "male-firefighter",
"short_names": ["male-firefighter"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 154,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "person-role",
+ "sort_order": 332,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": false,
"skin_variations": {
"1F3FB": {
"unified": "1F468-1F3FB-200D-1F692",
"non_qualified": null,
"image": "1f468-1f3fb-200d-1f692.png",
- "sheet_x": 17,
- "sheet_y": 22,
- "added_in": "8.0",
+ "sheet_x": 15,
+ "sheet_y": 19,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FC": {
"unified": "1F468-1F3FC-200D-1F692",
"non_qualified": null,
"image": "1f468-1f3fc-200d-1f692.png",
- "sheet_x": 17,
- "sheet_y": 23,
- "added_in": "8.0",
+ "sheet_x": 15,
+ "sheet_y": 20,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FD": {
"unified": "1F468-1F3FD-200D-1F692",
"non_qualified": null,
"image": "1f468-1f3fd-200d-1f692.png",
- "sheet_x": 17,
- "sheet_y": 24,
- "added_in": "8.0",
+ "sheet_x": 15,
+ "sheet_y": 21,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FE": {
"unified": "1F468-1F3FE-200D-1F692",
"non_qualified": null,
"image": "1f468-1f3fe-200d-1f692.png",
- "sheet_x": 17,
- "sheet_y": 25,
- "added_in": "8.0",
+ "sheet_x": 15,
+ "sheet_y": 22,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FF": {
"unified": "1F468-1F3FF-200D-1F692",
"non_qualified": null,
"image": "1f468-1f3ff-200d-1f692.png",
- "sheet_x": 17,
+ "sheet_x": 15,
+ "sheet_y": 23,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ }
+ },
+ {
+ "name": "MAN WITH WHITE CANE",
+ "unified": "1F468-200D-1F9AF",
+ "non_qualified": null,
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f468-200d-1f9af.png",
+ "sheet_x": 15,
+ "sheet_y": 24,
+ "short_name": "man_with_probing_cane",
+ "short_names": ["man_with_probing_cane"],
+ "text": null,
+ "texts": null,
+ "category": "People & Body",
+ "subcategory": "person-activity",
+ "sort_order": 416,
+ "added_in": "12.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true,
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F468-1F3FB-200D-1F9AF",
+ "non_qualified": null,
+ "image": "1f468-1f3fb-200d-1f9af.png",
+ "sheet_x": 15,
+ "sheet_y": 25,
+ "added_in": "12.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1F468-1F3FC-200D-1F9AF",
+ "non_qualified": null,
+ "image": "1f468-1f3fc-200d-1f9af.png",
+ "sheet_x": 15,
"sheet_y": 26,
- "added_in": "8.0",
+ "added_in": "12.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1F468-1F3FD-200D-1F9AF",
+ "non_qualified": null,
+ "image": "1f468-1f3fd-200d-1f9af.png",
+ "sheet_x": 15,
+ "sheet_y": 27,
+ "added_in": "12.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1F468-1F3FE-200D-1F9AF",
+ "non_qualified": null,
+ "image": "1f468-1f3fe-200d-1f9af.png",
+ "sheet_x": 15,
+ "sheet_y": 28,
+ "added_in": "12.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1F468-1F3FF-200D-1F9AF",
+ "non_qualified": null,
+ "image": "1f468-1f3ff-200d-1f9af.png",
+ "sheet_x": 15,
+ "sheet_y": 29,
+ "added_in": "12.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
}
}
},
{
- "name": null,
+ "name": "MAN: RED HAIR",
"unified": "1F468-200D-1F9B0",
"non_qualified": null,
"docomo": null,
@@ -19853,90 +19915,85 @@
"softbank": null,
"google": null,
"image": "1f468-200d-1f9b0.png",
- "sheet_x": 17,
- "sheet_y": 27,
- "short_name": "male_red_haired",
- "short_names": ["male_red_haired"],
+ "sheet_x": 15,
+ "sheet_y": 30,
+ "short_name": "red_haired_man",
+ "short_names": ["red_haired_man"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 179,
+ "category": "People & Body",
+ "subcategory": "person",
+ "sort_order": 238,
"added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false,
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true,
"skin_variations": {
"1F3FB": {
"unified": "1F468-1F3FB-200D-1F9B0",
"non_qualified": null,
"image": "1f468-1f3fb-200d-1f9b0.png",
- "sheet_x": 17,
- "sheet_y": 28,
+ "sheet_x": 15,
+ "sheet_y": 31,
"added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
},
"1F3FC": {
"unified": "1F468-1F3FC-200D-1F9B0",
"non_qualified": null,
"image": "1f468-1f3fc-200d-1f9b0.png",
- "sheet_x": 17,
- "sheet_y": 29,
+ "sheet_x": 15,
+ "sheet_y": 32,
"added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
},
"1F3FD": {
"unified": "1F468-1F3FD-200D-1F9B0",
"non_qualified": null,
"image": "1f468-1f3fd-200d-1f9b0.png",
- "sheet_x": 17,
- "sheet_y": 30,
+ "sheet_x": 15,
+ "sheet_y": 33,
"added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
},
"1F3FE": {
"unified": "1F468-1F3FE-200D-1F9B0",
"non_qualified": null,
"image": "1f468-1f3fe-200d-1f9b0.png",
- "sheet_x": 17,
- "sheet_y": 31,
+ "sheet_x": 15,
+ "sheet_y": 34,
"added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
},
"1F3FF": {
"unified": "1F468-1F3FF-200D-1F9B0",
"non_qualified": null,
"image": "1f468-1f3ff-200d-1f9b0.png",
- "sheet_x": 17,
- "sheet_y": 32,
+ "sheet_x": 15,
+ "sheet_y": 35,
"added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
}
}
},
{
- "name": null,
+ "name": "MAN: CURLY HAIR",
"unified": "1F468-200D-1F9B1",
"non_qualified": null,
"docomo": null,
@@ -19944,90 +20001,85 @@
"softbank": null,
"google": null,
"image": "1f468-200d-1f9b1.png",
- "sheet_x": 17,
- "sheet_y": 33,
- "short_name": "male_curly_haired",
- "short_names": ["male_curly_haired"],
+ "sheet_x": 15,
+ "sheet_y": 36,
+ "short_name": "curly_haired_man",
+ "short_names": ["curly_haired_man"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 181,
+ "category": "People & Body",
+ "subcategory": "person",
+ "sort_order": 239,
"added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false,
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true,
"skin_variations": {
"1F3FB": {
"unified": "1F468-1F3FB-200D-1F9B1",
"non_qualified": null,
"image": "1f468-1f3fb-200d-1f9b1.png",
- "sheet_x": 17,
- "sheet_y": 34,
+ "sheet_x": 15,
+ "sheet_y": 37,
"added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
},
"1F3FC": {
"unified": "1F468-1F3FC-200D-1F9B1",
"non_qualified": null,
"image": "1f468-1f3fc-200d-1f9b1.png",
- "sheet_x": 17,
- "sheet_y": 35,
+ "sheet_x": 15,
+ "sheet_y": 38,
"added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
},
"1F3FD": {
"unified": "1F468-1F3FD-200D-1F9B1",
"non_qualified": null,
"image": "1f468-1f3fd-200d-1f9b1.png",
- "sheet_x": 17,
- "sheet_y": 36,
+ "sheet_x": 15,
+ "sheet_y": 39,
"added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
},
"1F3FE": {
"unified": "1F468-1F3FE-200D-1F9B1",
"non_qualified": null,
"image": "1f468-1f3fe-200d-1f9b1.png",
- "sheet_x": 17,
- "sheet_y": 37,
+ "sheet_x": 15,
+ "sheet_y": 40,
"added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
},
"1F3FF": {
"unified": "1F468-1F3FF-200D-1F9B1",
"non_qualified": null,
"image": "1f468-1f3ff-200d-1f9b1.png",
- "sheet_x": 17,
- "sheet_y": 38,
+ "sheet_x": 15,
+ "sheet_y": 41,
"added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
}
}
},
{
- "name": null,
+ "name": "MAN: BALD",
"unified": "1F468-200D-1F9B2",
"non_qualified": null,
"docomo": null,
@@ -20035,90 +20087,85 @@
"softbank": null,
"google": null,
"image": "1f468-200d-1f9b2.png",
- "sheet_x": 17,
- "sheet_y": 39,
- "short_name": "male_bald",
- "short_names": ["male_bald"],
+ "sheet_x": 15,
+ "sheet_y": 42,
+ "short_name": "bald_man",
+ "short_names": ["bald_man"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 183,
+ "category": "People & Body",
+ "subcategory": "person",
+ "sort_order": 241,
"added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false,
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true,
"skin_variations": {
"1F3FB": {
"unified": "1F468-1F3FB-200D-1F9B2",
"non_qualified": null,
"image": "1f468-1f3fb-200d-1f9b2.png",
- "sheet_x": 17,
- "sheet_y": 40,
+ "sheet_x": 15,
+ "sheet_y": 43,
"added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
},
"1F3FC": {
"unified": "1F468-1F3FC-200D-1F9B2",
"non_qualified": null,
"image": "1f468-1f3fc-200d-1f9b2.png",
- "sheet_x": 17,
- "sheet_y": 41,
+ "sheet_x": 15,
+ "sheet_y": 44,
"added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
},
"1F3FD": {
"unified": "1F468-1F3FD-200D-1F9B2",
"non_qualified": null,
"image": "1f468-1f3fd-200d-1f9b2.png",
- "sheet_x": 17,
- "sheet_y": 42,
+ "sheet_x": 15,
+ "sheet_y": 45,
"added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
},
"1F3FE": {
"unified": "1F468-1F3FE-200D-1F9B2",
"non_qualified": null,
"image": "1f468-1f3fe-200d-1f9b2.png",
- "sheet_x": 17,
- "sheet_y": 43,
+ "sheet_x": 15,
+ "sheet_y": 46,
"added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
},
"1F3FF": {
"unified": "1F468-1F3FF-200D-1F9B2",
"non_qualified": null,
"image": "1f468-1f3ff-200d-1f9b2.png",
- "sheet_x": 17,
- "sheet_y": 44,
+ "sheet_x": 15,
+ "sheet_y": 47,
"added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
}
}
},
{
- "name": null,
+ "name": "MAN: WHITE HAIR",
"unified": "1F468-200D-1F9B3",
"non_qualified": null,
"docomo": null,
@@ -20126,1259 +20173,2061 @@
"softbank": null,
"google": null,
"image": "1f468-200d-1f9b3.png",
- "sheet_x": 17,
- "sheet_y": 45,
- "short_name": "male_white_haired",
- "short_names": ["male_white_haired"],
+ "sheet_x": 15,
+ "sheet_y": 48,
+ "short_name": "white_haired_man",
+ "short_names": ["white_haired_man"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 185,
+ "category": "People & Body",
+ "subcategory": "person",
+ "sort_order": 240,
"added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false,
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true,
"skin_variations": {
"1F3FB": {
"unified": "1F468-1F3FB-200D-1F9B3",
"non_qualified": null,
"image": "1f468-1f3fb-200d-1f9b3.png",
- "sheet_x": 17,
- "sheet_y": 46,
+ "sheet_x": 15,
+ "sheet_y": 49,
"added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
},
"1F3FC": {
"unified": "1F468-1F3FC-200D-1F9B3",
"non_qualified": null,
"image": "1f468-1f3fc-200d-1f9b3.png",
- "sheet_x": 17,
- "sheet_y": 47,
+ "sheet_x": 15,
+ "sheet_y": 50,
"added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
},
"1F3FD": {
"unified": "1F468-1F3FD-200D-1F9B3",
"non_qualified": null,
"image": "1f468-1f3fd-200d-1f9b3.png",
- "sheet_x": 17,
- "sheet_y": 48,
+ "sheet_x": 15,
+ "sheet_y": 51,
"added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
},
"1F3FE": {
"unified": "1F468-1F3FE-200D-1F9B3",
"non_qualified": null,
"image": "1f468-1f3fe-200d-1f9b3.png",
- "sheet_x": 17,
- "sheet_y": 49,
+ "sheet_x": 15,
+ "sheet_y": 52,
"added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
},
"1F3FF": {
"unified": "1F468-1F3FF-200D-1F9B3",
"non_qualified": null,
"image": "1f468-1f3ff-200d-1f9b3.png",
- "sheet_x": 17,
- "sheet_y": 50,
+ "sheet_x": 15,
+ "sheet_y": 53,
"added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
}
}
},
{
- "name": null,
- "unified": "1F468-200D-2695-FE0F",
- "non_qualified": "1F468-200D-2695",
+ "name": "MAN IN MOTORIZED WHEELCHAIR",
+ "unified": "1F468-200D-1F9BC",
+ "non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f468-200d-2695-fe0f.png",
- "sheet_x": 17,
- "sheet_y": 51,
- "short_name": "male-doctor",
- "short_names": ["male-doctor"],
+ "image": "1f468-200d-1f9bc.png",
+ "sheet_x": 15,
+ "sheet_y": 54,
+ "short_name": "man_in_motorized_wheelchair",
+ "short_names": ["man_in_motorized_wheelchair"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 124,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "person-activity",
+ "sort_order": 419,
+ "added_in": "12.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": false,
"skin_variations": {
"1F3FB": {
- "unified": "1F468-1F3FB-200D-2695-FE0F",
- "non_qualified": "1F468-1F3FB-200D-2695",
- "image": "1f468-1f3fb-200d-2695-fe0f.png",
- "sheet_x": 17,
- "sheet_y": 52,
- "added_in": "8.0",
+ "unified": "1F468-1F3FB-200D-1F9BC",
+ "non_qualified": null,
+ "image": "1f468-1f3fb-200d-1f9bc.png",
+ "sheet_x": 15,
+ "sheet_y": 55,
+ "added_in": "12.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FC": {
- "unified": "1F468-1F3FC-200D-2695-FE0F",
- "non_qualified": "1F468-1F3FC-200D-2695",
- "image": "1f468-1f3fc-200d-2695-fe0f.png",
- "sheet_x": 18,
- "sheet_y": 0,
- "added_in": "8.0",
+ "unified": "1F468-1F3FC-200D-1F9BC",
+ "non_qualified": null,
+ "image": "1f468-1f3fc-200d-1f9bc.png",
+ "sheet_x": 15,
+ "sheet_y": 56,
+ "added_in": "12.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FD": {
- "unified": "1F468-1F3FD-200D-2695-FE0F",
- "non_qualified": "1F468-1F3FD-200D-2695",
- "image": "1f468-1f3fd-200d-2695-fe0f.png",
- "sheet_x": 18,
- "sheet_y": 1,
- "added_in": "8.0",
+ "unified": "1F468-1F3FD-200D-1F9BC",
+ "non_qualified": null,
+ "image": "1f468-1f3fd-200d-1f9bc.png",
+ "sheet_x": 15,
+ "sheet_y": 57,
+ "added_in": "12.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FE": {
- "unified": "1F468-1F3FE-200D-2695-FE0F",
- "non_qualified": "1F468-1F3FE-200D-2695",
- "image": "1f468-1f3fe-200d-2695-fe0f.png",
- "sheet_x": 18,
- "sheet_y": 2,
- "added_in": "8.0",
+ "unified": "1F468-1F3FE-200D-1F9BC",
+ "non_qualified": null,
+ "image": "1f468-1f3fe-200d-1f9bc.png",
+ "sheet_x": 15,
+ "sheet_y": 58,
+ "added_in": "12.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FF": {
- "unified": "1F468-1F3FF-200D-2695-FE0F",
- "non_qualified": "1F468-1F3FF-200D-2695",
- "image": "1f468-1f3ff-200d-2695-fe0f.png",
- "sheet_x": 18,
- "sheet_y": 3,
- "added_in": "8.0",
+ "unified": "1F468-1F3FF-200D-1F9BC",
+ "non_qualified": null,
+ "image": "1f468-1f3ff-200d-1f9bc.png",
+ "sheet_x": 15,
+ "sheet_y": 59,
+ "added_in": "12.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
}
}
},
{
- "name": null,
- "unified": "1F468-200D-2696-FE0F",
- "non_qualified": "1F468-200D-2696",
+ "name": "MAN IN MANUAL WHEELCHAIR",
+ "unified": "1F468-200D-1F9BD",
+ "non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f468-200d-2696-fe0f.png",
- "sheet_x": 18,
- "sheet_y": 4,
- "short_name": "male-judge",
- "short_names": ["male-judge"],
+ "image": "1f468-200d-1f9bd.png",
+ "sheet_x": 15,
+ "sheet_y": 60,
+ "short_name": "man_in_manual_wheelchair",
+ "short_names": ["man_in_manual_wheelchair"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 130,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "person-activity",
+ "sort_order": 422,
+ "added_in": "12.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": false,
"skin_variations": {
"1F3FB": {
- "unified": "1F468-1F3FB-200D-2696-FE0F",
- "non_qualified": "1F468-1F3FB-200D-2696",
- "image": "1f468-1f3fb-200d-2696-fe0f.png",
- "sheet_x": 18,
- "sheet_y": 5,
- "added_in": "8.0",
+ "unified": "1F468-1F3FB-200D-1F9BD",
+ "non_qualified": null,
+ "image": "1f468-1f3fb-200d-1f9bd.png",
+ "sheet_x": 16,
+ "sheet_y": 0,
+ "added_in": "12.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FC": {
- "unified": "1F468-1F3FC-200D-2696-FE0F",
- "non_qualified": "1F468-1F3FC-200D-2696",
- "image": "1f468-1f3fc-200d-2696-fe0f.png",
- "sheet_x": 18,
- "sheet_y": 6,
- "added_in": "8.0",
+ "unified": "1F468-1F3FC-200D-1F9BD",
+ "non_qualified": null,
+ "image": "1f468-1f3fc-200d-1f9bd.png",
+ "sheet_x": 16,
+ "sheet_y": 1,
+ "added_in": "12.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FD": {
- "unified": "1F468-1F3FD-200D-2696-FE0F",
- "non_qualified": "1F468-1F3FD-200D-2696",
- "image": "1f468-1f3fd-200d-2696-fe0f.png",
- "sheet_x": 18,
- "sheet_y": 7,
- "added_in": "8.0",
+ "unified": "1F468-1F3FD-200D-1F9BD",
+ "non_qualified": null,
+ "image": "1f468-1f3fd-200d-1f9bd.png",
+ "sheet_x": 16,
+ "sheet_y": 2,
+ "added_in": "12.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FE": {
- "unified": "1F468-1F3FE-200D-2696-FE0F",
- "non_qualified": "1F468-1F3FE-200D-2696",
- "image": "1f468-1f3fe-200d-2696-fe0f.png",
- "sheet_x": 18,
- "sheet_y": 8,
- "added_in": "8.0",
+ "unified": "1F468-1F3FE-200D-1F9BD",
+ "non_qualified": null,
+ "image": "1f468-1f3fe-200d-1f9bd.png",
+ "sheet_x": 16,
+ "sheet_y": 3,
+ "added_in": "12.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FF": {
- "unified": "1F468-1F3FF-200D-2696-FE0F",
- "non_qualified": "1F468-1F3FF-200D-2696",
- "image": "1f468-1f3ff-200d-2696-fe0f.png",
- "sheet_x": 18,
- "sheet_y": 9,
- "added_in": "8.0",
+ "unified": "1F468-1F3FF-200D-1F9BD",
+ "non_qualified": null,
+ "image": "1f468-1f3ff-200d-1f9bd.png",
+ "sheet_x": 16,
+ "sheet_y": 4,
+ "added_in": "12.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
}
}
},
{
- "name": null,
- "unified": "1F468-200D-2708-FE0F",
- "non_qualified": "1F468-200D-2708",
+ "name": "MAN HEALTH WORKER",
+ "unified": "1F468-200D-2695-FE0F",
+ "non_qualified": "1F468-200D-2695",
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f468-200d-2708-fe0f.png",
- "sheet_x": 18,
- "sheet_y": 10,
- "short_name": "male-pilot",
- "short_names": ["male-pilot"],
+ "image": "1f468-200d-2695-fe0f.png",
+ "sheet_x": 16,
+ "sheet_y": 5,
+ "short_name": "male-doctor",
+ "short_names": ["male-doctor"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 150,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "person-role",
+ "sort_order": 287,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": false,
"skin_variations": {
"1F3FB": {
- "unified": "1F468-1F3FB-200D-2708-FE0F",
- "non_qualified": "1F468-1F3FB-200D-2708",
- "image": "1f468-1f3fb-200d-2708-fe0f.png",
- "sheet_x": 18,
- "sheet_y": 11,
- "added_in": "8.0",
+ "unified": "1F468-1F3FB-200D-2695-FE0F",
+ "non_qualified": "1F468-1F3FB-200D-2695",
+ "image": "1f468-1f3fb-200d-2695-fe0f.png",
+ "sheet_x": 16,
+ "sheet_y": 6,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FC": {
- "unified": "1F468-1F3FC-200D-2708-FE0F",
- "non_qualified": "1F468-1F3FC-200D-2708",
- "image": "1f468-1f3fc-200d-2708-fe0f.png",
- "sheet_x": 18,
- "sheet_y": 12,
- "added_in": "8.0",
+ "unified": "1F468-1F3FC-200D-2695-FE0F",
+ "non_qualified": "1F468-1F3FC-200D-2695",
+ "image": "1f468-1f3fc-200d-2695-fe0f.png",
+ "sheet_x": 16,
+ "sheet_y": 7,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FD": {
- "unified": "1F468-1F3FD-200D-2708-FE0F",
- "non_qualified": "1F468-1F3FD-200D-2708",
- "image": "1f468-1f3fd-200d-2708-fe0f.png",
- "sheet_x": 18,
- "sheet_y": 13,
- "added_in": "8.0",
+ "unified": "1F468-1F3FD-200D-2695-FE0F",
+ "non_qualified": "1F468-1F3FD-200D-2695",
+ "image": "1f468-1f3fd-200d-2695-fe0f.png",
+ "sheet_x": 16,
+ "sheet_y": 8,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FE": {
- "unified": "1F468-1F3FE-200D-2708-FE0F",
- "non_qualified": "1F468-1F3FE-200D-2708",
- "image": "1f468-1f3fe-200d-2708-fe0f.png",
- "sheet_x": 18,
- "sheet_y": 14,
- "added_in": "8.0",
+ "unified": "1F468-1F3FE-200D-2695-FE0F",
+ "non_qualified": "1F468-1F3FE-200D-2695",
+ "image": "1f468-1f3fe-200d-2695-fe0f.png",
+ "sheet_x": 16,
+ "sheet_y": 9,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FF": {
- "unified": "1F468-1F3FF-200D-2708-FE0F",
- "non_qualified": "1F468-1F3FF-200D-2708",
- "image": "1f468-1f3ff-200d-2708-fe0f.png",
- "sheet_x": 18,
- "sheet_y": 15,
- "added_in": "8.0",
+ "unified": "1F468-1F3FF-200D-2695-FE0F",
+ "non_qualified": "1F468-1F3FF-200D-2695",
+ "image": "1f468-1f3ff-200d-2695-fe0f.png",
+ "sheet_x": 16,
+ "sheet_y": 10,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
}
}
},
{
- "name": null,
- "unified": "1F468-200D-2764-FE0F-200D-1F468",
- "non_qualified": "1F468-200D-2764-200D-1F468",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f468-200d-2764-fe0f-200d-1f468.png",
- "sheet_x": 18,
- "sheet_y": 16,
- "short_name": "man-heart-man",
- "short_names": ["man-heart-man"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 328,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- {
- "name": null,
- "unified": "1F468-200D-2764-FE0F-200D-1F48B-200D-1F468",
- "non_qualified": "1F468-200D-2764-200D-1F48B-200D-1F468",
+ "name": "MAN JUDGE",
+ "unified": "1F468-200D-2696-FE0F",
+ "non_qualified": "1F468-200D-2696",
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f468-200d-2764-fe0f-200d-1f48b-200d-1f468.png",
- "sheet_x": 18,
- "sheet_y": 17,
- "short_name": "man-kiss-man",
- "short_names": ["man-kiss-man"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 324,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- {
- "name": "MAN",
- "unified": "1F468",
- "non_qualified": null,
- "docomo": "E6F0",
- "au": "E4FC",
- "softbank": "E004",
- "google": "FE19D",
- "image": "1f468.png",
- "sheet_x": 18,
- "sheet_y": 18,
- "short_name": "man",
- "short_names": ["man"],
+ "image": "1f468-200d-2696-fe0f.png",
+ "sheet_x": 16,
+ "sheet_y": 11,
+ "short_name": "male-judge",
+ "short_names": ["male-judge"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 119,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "person-role",
+ "sort_order": 296,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": true,
"skin_variations": {
"1F3FB": {
- "unified": "1F468-1F3FB",
- "non_qualified": null,
- "image": "1f468-1f3fb.png",
- "sheet_x": 18,
- "sheet_y": 19,
- "added_in": "8.0",
+ "unified": "1F468-1F3FB-200D-2696-FE0F",
+ "non_qualified": "1F468-1F3FB-200D-2696",
+ "image": "1f468-1f3fb-200d-2696-fe0f.png",
+ "sheet_x": 16,
+ "sheet_y": 12,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
"1F3FC": {
- "unified": "1F468-1F3FC",
- "non_qualified": null,
- "image": "1f468-1f3fc.png",
- "sheet_x": 18,
- "sheet_y": 20,
- "added_in": "8.0",
+ "unified": "1F468-1F3FC-200D-2696-FE0F",
+ "non_qualified": "1F468-1F3FC-200D-2696",
+ "image": "1f468-1f3fc-200d-2696-fe0f.png",
+ "sheet_x": 16,
+ "sheet_y": 13,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
"1F3FD": {
- "unified": "1F468-1F3FD",
- "non_qualified": null,
- "image": "1f468-1f3fd.png",
- "sheet_x": 18,
- "sheet_y": 21,
- "added_in": "8.0",
+ "unified": "1F468-1F3FD-200D-2696-FE0F",
+ "non_qualified": "1F468-1F3FD-200D-2696",
+ "image": "1f468-1f3fd-200d-2696-fe0f.png",
+ "sheet_x": 16,
+ "sheet_y": 14,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
"1F3FE": {
- "unified": "1F468-1F3FE",
- "non_qualified": null,
- "image": "1f468-1f3fe.png",
- "sheet_x": 18,
- "sheet_y": 22,
- "added_in": "8.0",
+ "unified": "1F468-1F3FE-200D-2696-FE0F",
+ "non_qualified": "1F468-1F3FE-200D-2696",
+ "image": "1f468-1f3fe-200d-2696-fe0f.png",
+ "sheet_x": 16,
+ "sheet_y": 15,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
"1F3FF": {
- "unified": "1F468-1F3FF",
- "non_qualified": null,
- "image": "1f468-1f3ff.png",
- "sheet_x": 18,
- "sheet_y": 23,
- "added_in": "8.0",
+ "unified": "1F468-1F3FF-200D-2696-FE0F",
+ "non_qualified": "1F468-1F3FF-200D-2696",
+ "image": "1f468-1f3ff-200d-2696-fe0f.png",
+ "sheet_x": 16,
+ "sheet_y": 16,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
}
}
},
{
- "name": null,
- "unified": "1F469-200D-1F33E",
- "non_qualified": null,
+ "name": "MAN PILOT",
+ "unified": "1F468-200D-2708-FE0F",
+ "non_qualified": "1F468-200D-2708",
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f469-200d-1f33e.png",
- "sheet_x": 18,
- "sheet_y": 24,
- "short_name": "female-farmer",
- "short_names": ["female-farmer"],
+ "image": "1f468-200d-2708-fe0f.png",
+ "sheet_x": 16,
+ "sheet_y": 17,
+ "short_name": "male-pilot",
+ "short_names": ["male-pilot"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 133,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "person-role",
+ "sort_order": 326,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": false,
"skin_variations": {
"1F3FB": {
- "unified": "1F469-1F3FB-200D-1F33E",
- "non_qualified": null,
- "image": "1f469-1f3fb-200d-1f33e.png",
- "sheet_x": 18,
- "sheet_y": 25,
- "added_in": "8.0",
+ "unified": "1F468-1F3FB-200D-2708-FE0F",
+ "non_qualified": "1F468-1F3FB-200D-2708",
+ "image": "1f468-1f3fb-200d-2708-fe0f.png",
+ "sheet_x": 16,
+ "sheet_y": 18,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FC": {
- "unified": "1F469-1F3FC-200D-1F33E",
- "non_qualified": null,
- "image": "1f469-1f3fc-200d-1f33e.png",
- "sheet_x": 18,
- "sheet_y": 26,
- "added_in": "8.0",
+ "unified": "1F468-1F3FC-200D-2708-FE0F",
+ "non_qualified": "1F468-1F3FC-200D-2708",
+ "image": "1f468-1f3fc-200d-2708-fe0f.png",
+ "sheet_x": 16,
+ "sheet_y": 19,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FD": {
- "unified": "1F469-1F3FD-200D-1F33E",
- "non_qualified": null,
- "image": "1f469-1f3fd-200d-1f33e.png",
- "sheet_x": 18,
- "sheet_y": 27,
- "added_in": "8.0",
+ "unified": "1F468-1F3FD-200D-2708-FE0F",
+ "non_qualified": "1F468-1F3FD-200D-2708",
+ "image": "1f468-1f3fd-200d-2708-fe0f.png",
+ "sheet_x": 16,
+ "sheet_y": 20,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FE": {
- "unified": "1F469-1F3FE-200D-1F33E",
- "non_qualified": null,
- "image": "1f469-1f3fe-200d-1f33e.png",
- "sheet_x": 18,
- "sheet_y": 28,
- "added_in": "8.0",
+ "unified": "1F468-1F3FE-200D-2708-FE0F",
+ "non_qualified": "1F468-1F3FE-200D-2708",
+ "image": "1f468-1f3fe-200d-2708-fe0f.png",
+ "sheet_x": 16,
+ "sheet_y": 21,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FF": {
- "unified": "1F469-1F3FF-200D-1F33E",
- "non_qualified": null,
- "image": "1f469-1f3ff-200d-1f33e.png",
- "sheet_x": 18,
- "sheet_y": 29,
- "added_in": "8.0",
+ "unified": "1F468-1F3FF-200D-2708-FE0F",
+ "non_qualified": "1F468-1F3FF-200D-2708",
+ "image": "1f468-1f3ff-200d-2708-fe0f.png",
+ "sheet_x": 16,
+ "sheet_y": 22,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
}
}
},
{
- "name": null,
- "unified": "1F469-200D-1F373",
- "non_qualified": null,
+ "name": "COUPLE WITH HEART: MAN, MAN",
+ "unified": "1F468-200D-2764-FE0F-200D-1F468",
+ "non_qualified": "1F468-200D-2764-200D-1F468",
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f469-200d-1f373.png",
- "sheet_x": 18,
- "sheet_y": 30,
- "short_name": "female-cook",
- "short_names": ["female-cook"],
+ "image": "1f468-200d-2764-fe0f-200d-1f468.png",
+ "sheet_x": 16,
+ "sheet_y": 23,
+ "short_name": "man-heart-man",
+ "short_names": ["man-heart-man"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 135,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "family",
+ "sort_order": 497,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": false,
"skin_variations": {
- "1F3FB": {
- "unified": "1F469-1F3FB-200D-1F373",
- "non_qualified": null,
- "image": "1f469-1f3fb-200d-1f373.png",
- "sheet_x": 18,
+ "1F3FB-1F3FB": {
+ "unified": "1F468-1F3FB-200D-2764-FE0F-200D-1F468-1F3FB",
+ "non_qualified": "1F468-1F3FB-200D-2764-200D-1F468-1F3FB",
+ "image": "1f468-1f3fb-200d-2764-fe0f-200d-1f468-1f3fb.png",
+ "sheet_x": 16,
+ "sheet_y": 24,
+ "added_in": "13.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FB-1F3FC": {
+ "unified": "1F468-1F3FB-200D-2764-FE0F-200D-1F468-1F3FC",
+ "non_qualified": "1F468-1F3FB-200D-2764-200D-1F468-1F3FC",
+ "image": "1f468-1f3fb-200d-2764-fe0f-200d-1f468-1f3fc.png",
+ "sheet_x": 16,
+ "sheet_y": 25,
+ "added_in": "13.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FB-1F3FD": {
+ "unified": "1F468-1F3FB-200D-2764-FE0F-200D-1F468-1F3FD",
+ "non_qualified": "1F468-1F3FB-200D-2764-200D-1F468-1F3FD",
+ "image": "1f468-1f3fb-200d-2764-fe0f-200d-1f468-1f3fd.png",
+ "sheet_x": 16,
+ "sheet_y": 26,
+ "added_in": "13.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FB-1F3FE": {
+ "unified": "1F468-1F3FB-200D-2764-FE0F-200D-1F468-1F3FE",
+ "non_qualified": "1F468-1F3FB-200D-2764-200D-1F468-1F3FE",
+ "image": "1f468-1f3fb-200d-2764-fe0f-200d-1f468-1f3fe.png",
+ "sheet_x": 16,
+ "sheet_y": 27,
+ "added_in": "13.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FB-1F3FF": {
+ "unified": "1F468-1F3FB-200D-2764-FE0F-200D-1F468-1F3FF",
+ "non_qualified": "1F468-1F3FB-200D-2764-200D-1F468-1F3FF",
+ "image": "1f468-1f3fb-200d-2764-fe0f-200d-1f468-1f3ff.png",
+ "sheet_x": 16,
+ "sheet_y": 28,
+ "added_in": "13.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC-1F3FB": {
+ "unified": "1F468-1F3FC-200D-2764-FE0F-200D-1F468-1F3FB",
+ "non_qualified": "1F468-1F3FC-200D-2764-200D-1F468-1F3FB",
+ "image": "1f468-1f3fc-200d-2764-fe0f-200d-1f468-1f3fb.png",
+ "sheet_x": 16,
+ "sheet_y": 29,
+ "added_in": "13.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC-1F3FC": {
+ "unified": "1F468-1F3FC-200D-2764-FE0F-200D-1F468-1F3FC",
+ "non_qualified": "1F468-1F3FC-200D-2764-200D-1F468-1F3FC",
+ "image": "1f468-1f3fc-200d-2764-fe0f-200d-1f468-1f3fc.png",
+ "sheet_x": 16,
+ "sheet_y": 30,
+ "added_in": "13.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC-1F3FD": {
+ "unified": "1F468-1F3FC-200D-2764-FE0F-200D-1F468-1F3FD",
+ "non_qualified": "1F468-1F3FC-200D-2764-200D-1F468-1F3FD",
+ "image": "1f468-1f3fc-200d-2764-fe0f-200d-1f468-1f3fd.png",
+ "sheet_x": 16,
"sheet_y": 31,
- "added_in": "8.0",
+ "added_in": "13.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
- "1F3FC": {
- "unified": "1F469-1F3FC-200D-1F373",
- "non_qualified": null,
- "image": "1f469-1f3fc-200d-1f373.png",
- "sheet_x": 18,
+ "1F3FC-1F3FE": {
+ "unified": "1F468-1F3FC-200D-2764-FE0F-200D-1F468-1F3FE",
+ "non_qualified": "1F468-1F3FC-200D-2764-200D-1F468-1F3FE",
+ "image": "1f468-1f3fc-200d-2764-fe0f-200d-1f468-1f3fe.png",
+ "sheet_x": 16,
"sheet_y": 32,
- "added_in": "8.0",
+ "added_in": "13.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
- "1F3FD": {
- "unified": "1F469-1F3FD-200D-1F373",
- "non_qualified": null,
- "image": "1f469-1f3fd-200d-1f373.png",
- "sheet_x": 18,
+ "1F3FC-1F3FF": {
+ "unified": "1F468-1F3FC-200D-2764-FE0F-200D-1F468-1F3FF",
+ "non_qualified": "1F468-1F3FC-200D-2764-200D-1F468-1F3FF",
+ "image": "1f468-1f3fc-200d-2764-fe0f-200d-1f468-1f3ff.png",
+ "sheet_x": 16,
"sheet_y": 33,
- "added_in": "8.0",
+ "added_in": "13.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
- "1F3FE": {
- "unified": "1F469-1F3FE-200D-1F373",
- "non_qualified": null,
- "image": "1f469-1f3fe-200d-1f373.png",
- "sheet_x": 18,
+ "1F3FD-1F3FB": {
+ "unified": "1F468-1F3FD-200D-2764-FE0F-200D-1F468-1F3FB",
+ "non_qualified": "1F468-1F3FD-200D-2764-200D-1F468-1F3FB",
+ "image": "1f468-1f3fd-200d-2764-fe0f-200d-1f468-1f3fb.png",
+ "sheet_x": 16,
"sheet_y": 34,
- "added_in": "8.0",
+ "added_in": "13.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
- "1F3FF": {
- "unified": "1F469-1F3FF-200D-1F373",
- "non_qualified": null,
- "image": "1f469-1f3ff-200d-1f373.png",
- "sheet_x": 18,
+ "1F3FD-1F3FC": {
+ "unified": "1F468-1F3FD-200D-2764-FE0F-200D-1F468-1F3FC",
+ "non_qualified": "1F468-1F3FD-200D-2764-200D-1F468-1F3FC",
+ "image": "1f468-1f3fd-200d-2764-fe0f-200d-1f468-1f3fc.png",
+ "sheet_x": 16,
"sheet_y": 35,
- "added_in": "8.0",
+ "added_in": "13.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- }
- },
- {
- "name": null,
- "unified": "1F469-200D-1F393",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f469-200d-1f393.png",
- "sheet_x": 18,
- "sheet_y": 36,
- "short_name": "female-student",
- "short_names": ["female-student"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 127,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F469-1F3FB-200D-1F393",
- "non_qualified": null,
- "image": "1f469-1f3fb-200d-1f393.png",
- "sheet_x": 18,
+ "has_img_facebook": true
+ },
+ "1F3FD-1F3FD": {
+ "unified": "1F468-1F3FD-200D-2764-FE0F-200D-1F468-1F3FD",
+ "non_qualified": "1F468-1F3FD-200D-2764-200D-1F468-1F3FD",
+ "image": "1f468-1f3fd-200d-2764-fe0f-200d-1f468-1f3fd.png",
+ "sheet_x": 16,
+ "sheet_y": 36,
+ "added_in": "13.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD-1F3FE": {
+ "unified": "1F468-1F3FD-200D-2764-FE0F-200D-1F468-1F3FE",
+ "non_qualified": "1F468-1F3FD-200D-2764-200D-1F468-1F3FE",
+ "image": "1f468-1f3fd-200d-2764-fe0f-200d-1f468-1f3fe.png",
+ "sheet_x": 16,
"sheet_y": 37,
- "added_in": "8.0",
+ "added_in": "13.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
- "1F3FC": {
- "unified": "1F469-1F3FC-200D-1F393",
- "non_qualified": null,
- "image": "1f469-1f3fc-200d-1f393.png",
- "sheet_x": 18,
+ "1F3FD-1F3FF": {
+ "unified": "1F468-1F3FD-200D-2764-FE0F-200D-1F468-1F3FF",
+ "non_qualified": "1F468-1F3FD-200D-2764-200D-1F468-1F3FF",
+ "image": "1f468-1f3fd-200d-2764-fe0f-200d-1f468-1f3ff.png",
+ "sheet_x": 16,
"sheet_y": 38,
- "added_in": "8.0",
+ "added_in": "13.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
- "1F3FD": {
- "unified": "1F469-1F3FD-200D-1F393",
- "non_qualified": null,
- "image": "1f469-1f3fd-200d-1f393.png",
- "sheet_x": 18,
+ "1F3FE-1F3FB": {
+ "unified": "1F468-1F3FE-200D-2764-FE0F-200D-1F468-1F3FB",
+ "non_qualified": "1F468-1F3FE-200D-2764-200D-1F468-1F3FB",
+ "image": "1f468-1f3fe-200d-2764-fe0f-200d-1f468-1f3fb.png",
+ "sheet_x": 16,
"sheet_y": 39,
- "added_in": "8.0",
+ "added_in": "13.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
- "1F3FE": {
- "unified": "1F469-1F3FE-200D-1F393",
- "non_qualified": null,
- "image": "1f469-1f3fe-200d-1f393.png",
- "sheet_x": 18,
+ "1F3FE-1F3FC": {
+ "unified": "1F468-1F3FE-200D-2764-FE0F-200D-1F468-1F3FC",
+ "non_qualified": "1F468-1F3FE-200D-2764-200D-1F468-1F3FC",
+ "image": "1f468-1f3fe-200d-2764-fe0f-200d-1f468-1f3fc.png",
+ "sheet_x": 16,
"sheet_y": 40,
- "added_in": "8.0",
+ "added_in": "13.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
- "1F3FF": {
- "unified": "1F469-1F3FF-200D-1F393",
- "non_qualified": null,
- "image": "1f469-1f3ff-200d-1f393.png",
- "sheet_x": 18,
+ "1F3FE-1F3FD": {
+ "unified": "1F468-1F3FE-200D-2764-FE0F-200D-1F468-1F3FD",
+ "non_qualified": "1F468-1F3FE-200D-2764-200D-1F468-1F3FD",
+ "image": "1f468-1f3fe-200d-2764-fe0f-200d-1f468-1f3fd.png",
+ "sheet_x": 16,
"sheet_y": 41,
- "added_in": "8.0",
+ "added_in": "13.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- }
- },
- {
- "name": null,
- "unified": "1F469-200D-1F3A4",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f469-200d-1f3a4.png",
- "sheet_x": 18,
- "sheet_y": 42,
- "short_name": "female-singer",
- "short_names": ["female-singer"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 147,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F469-1F3FB-200D-1F3A4",
- "non_qualified": null,
- "image": "1f469-1f3fb-200d-1f3a4.png",
- "sheet_x": 18,
+ "has_img_facebook": true
+ },
+ "1F3FE-1F3FE": {
+ "unified": "1F468-1F3FE-200D-2764-FE0F-200D-1F468-1F3FE",
+ "non_qualified": "1F468-1F3FE-200D-2764-200D-1F468-1F3FE",
+ "image": "1f468-1f3fe-200d-2764-fe0f-200d-1f468-1f3fe.png",
+ "sheet_x": 16,
+ "sheet_y": 42,
+ "added_in": "13.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE-1F3FF": {
+ "unified": "1F468-1F3FE-200D-2764-FE0F-200D-1F468-1F3FF",
+ "non_qualified": "1F468-1F3FE-200D-2764-200D-1F468-1F3FF",
+ "image": "1f468-1f3fe-200d-2764-fe0f-200d-1f468-1f3ff.png",
+ "sheet_x": 16,
"sheet_y": 43,
- "added_in": "8.0",
+ "added_in": "13.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
- "1F3FC": {
- "unified": "1F469-1F3FC-200D-1F3A4",
- "non_qualified": null,
- "image": "1f469-1f3fc-200d-1f3a4.png",
- "sheet_x": 18,
+ "1F3FF-1F3FB": {
+ "unified": "1F468-1F3FF-200D-2764-FE0F-200D-1F468-1F3FB",
+ "non_qualified": "1F468-1F3FF-200D-2764-200D-1F468-1F3FB",
+ "image": "1f468-1f3ff-200d-2764-fe0f-200d-1f468-1f3fb.png",
+ "sheet_x": 16,
"sheet_y": 44,
- "added_in": "8.0",
+ "added_in": "13.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
- "1F3FD": {
- "unified": "1F469-1F3FD-200D-1F3A4",
- "non_qualified": null,
- "image": "1f469-1f3fd-200d-1f3a4.png",
- "sheet_x": 18,
+ "1F3FF-1F3FC": {
+ "unified": "1F468-1F3FF-200D-2764-FE0F-200D-1F468-1F3FC",
+ "non_qualified": "1F468-1F3FF-200D-2764-200D-1F468-1F3FC",
+ "image": "1f468-1f3ff-200d-2764-fe0f-200d-1f468-1f3fc.png",
+ "sheet_x": 16,
"sheet_y": 45,
- "added_in": "8.0",
+ "added_in": "13.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
- "1F3FE": {
- "unified": "1F469-1F3FE-200D-1F3A4",
- "non_qualified": null,
- "image": "1f469-1f3fe-200d-1f3a4.png",
- "sheet_x": 18,
+ "1F3FF-1F3FD": {
+ "unified": "1F468-1F3FF-200D-2764-FE0F-200D-1F468-1F3FD",
+ "non_qualified": "1F468-1F3FF-200D-2764-200D-1F468-1F3FD",
+ "image": "1f468-1f3ff-200d-2764-fe0f-200d-1f468-1f3fd.png",
+ "sheet_x": 16,
"sheet_y": 46,
- "added_in": "8.0",
+ "added_in": "13.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
- "1F3FF": {
- "unified": "1F469-1F3FF-200D-1F3A4",
- "non_qualified": null,
- "image": "1f469-1f3ff-200d-1f3a4.png",
- "sheet_x": 18,
+ "1F3FF-1F3FE": {
+ "unified": "1F468-1F3FF-200D-2764-FE0F-200D-1F468-1F3FE",
+ "non_qualified": "1F468-1F3FF-200D-2764-200D-1F468-1F3FE",
+ "image": "1f468-1f3ff-200d-2764-fe0f-200d-1f468-1f3fe.png",
+ "sheet_x": 16,
"sheet_y": 47,
- "added_in": "8.0",
+ "added_in": "13.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
+ },
+ "1F3FF-1F3FF": {
+ "unified": "1F468-1F3FF-200D-2764-FE0F-200D-1F468-1F3FF",
+ "non_qualified": "1F468-1F3FF-200D-2764-200D-1F468-1F3FF",
+ "image": "1f468-1f3ff-200d-2764-fe0f-200d-1f468-1f3ff.png",
+ "sheet_x": 16,
+ "sheet_y": 48,
+ "added_in": "13.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
}
}
},
{
- "name": null,
- "unified": "1F469-200D-1F3A8",
- "non_qualified": null,
- "docomo": null,
+ "name": "KISS: MAN, MAN",
+ "unified": "1F468-200D-2764-FE0F-200D-1F48B-200D-1F468",
+ "non_qualified": "1F468-200D-2764-200D-1F48B-200D-1F468",
+ "docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f469-200d-1f3a8.png",
- "sheet_x": 18,
- "sheet_y": 48,
- "short_name": "female-artist",
- "short_names": ["female-artist"],
+ "image": "1f468-200d-2764-fe0f-200d-1f48b-200d-1f468.png",
+ "sheet_x": 16,
+ "sheet_y": 49,
+ "short_name": "man-kiss-man",
+ "short_names": ["man-kiss-man"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 149,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "family",
+ "sort_order": 493,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": false,
"skin_variations": {
- "1F3FB": {
- "unified": "1F469-1F3FB-200D-1F3A8",
- "non_qualified": null,
- "image": "1f469-1f3fb-200d-1f3a8.png",
- "sheet_x": 18,
- "sheet_y": 49,
- "added_in": "8.0",
+ "1F3FB-1F3FB": {
+ "unified": "1F468-1F3FB-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FB",
+ "non_qualified": "1F468-1F3FB-200D-2764-200D-1F48B-200D-1F468-1F3FB",
+ "image": "1f468-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fb.png",
+ "sheet_x": 16,
+ "sheet_y": 50,
+ "added_in": "13.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
- "1F3FC": {
- "unified": "1F469-1F3FC-200D-1F3A8",
- "non_qualified": null,
- "image": "1f469-1f3fc-200d-1f3a8.png",
- "sheet_x": 18,
- "sheet_y": 50,
- "added_in": "8.0",
+ "1F3FB-1F3FC": {
+ "unified": "1F468-1F3FB-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FC",
+ "non_qualified": "1F468-1F3FB-200D-2764-200D-1F48B-200D-1F468-1F3FC",
+ "image": "1f468-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fc.png",
+ "sheet_x": 16,
+ "sheet_y": 51,
+ "added_in": "13.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
- "1F3FD": {
- "unified": "1F469-1F3FD-200D-1F3A8",
- "non_qualified": null,
- "image": "1f469-1f3fd-200d-1f3a8.png",
- "sheet_x": 18,
- "sheet_y": 51,
- "added_in": "8.0",
+ "1F3FB-1F3FD": {
+ "unified": "1F468-1F3FB-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FD",
+ "non_qualified": "1F468-1F3FB-200D-2764-200D-1F48B-200D-1F468-1F3FD",
+ "image": "1f468-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fd.png",
+ "sheet_x": 16,
+ "sheet_y": 52,
+ "added_in": "13.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
- "1F3FE": {
- "unified": "1F469-1F3FE-200D-1F3A8",
- "non_qualified": null,
- "image": "1f469-1f3fe-200d-1f3a8.png",
- "sheet_x": 18,
- "sheet_y": 52,
- "added_in": "8.0",
+ "1F3FB-1F3FE": {
+ "unified": "1F468-1F3FB-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FE",
+ "non_qualified": "1F468-1F3FB-200D-2764-200D-1F48B-200D-1F468-1F3FE",
+ "image": "1f468-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fe.png",
+ "sheet_x": 16,
+ "sheet_y": 53,
+ "added_in": "13.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
- "1F3FF": {
- "unified": "1F469-1F3FF-200D-1F3A8",
- "non_qualified": null,
- "image": "1f469-1f3ff-200d-1f3a8.png",
- "sheet_x": 19,
+ "1F3FB-1F3FF": {
+ "unified": "1F468-1F3FB-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FF",
+ "non_qualified": "1F468-1F3FB-200D-2764-200D-1F48B-200D-1F468-1F3FF",
+ "image": "1f468-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3ff.png",
+ "sheet_x": 16,
+ "sheet_y": 54,
+ "added_in": "13.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC-1F3FB": {
+ "unified": "1F468-1F3FC-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FB",
+ "non_qualified": "1F468-1F3FC-200D-2764-200D-1F48B-200D-1F468-1F3FB",
+ "image": "1f468-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fb.png",
+ "sheet_x": 16,
+ "sheet_y": 55,
+ "added_in": "13.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC-1F3FC": {
+ "unified": "1F468-1F3FC-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FC",
+ "non_qualified": "1F468-1F3FC-200D-2764-200D-1F48B-200D-1F468-1F3FC",
+ "image": "1f468-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fc.png",
+ "sheet_x": 16,
+ "sheet_y": 56,
+ "added_in": "13.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC-1F3FD": {
+ "unified": "1F468-1F3FC-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FD",
+ "non_qualified": "1F468-1F3FC-200D-2764-200D-1F48B-200D-1F468-1F3FD",
+ "image": "1f468-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fd.png",
+ "sheet_x": 16,
+ "sheet_y": 57,
+ "added_in": "13.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC-1F3FE": {
+ "unified": "1F468-1F3FC-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FE",
+ "non_qualified": "1F468-1F3FC-200D-2764-200D-1F48B-200D-1F468-1F3FE",
+ "image": "1f468-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fe.png",
+ "sheet_x": 16,
+ "sheet_y": 58,
+ "added_in": "13.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC-1F3FF": {
+ "unified": "1F468-1F3FC-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FF",
+ "non_qualified": "1F468-1F3FC-200D-2764-200D-1F48B-200D-1F468-1F3FF",
+ "image": "1f468-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3ff.png",
+ "sheet_x": 16,
+ "sheet_y": 59,
+ "added_in": "13.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD-1F3FB": {
+ "unified": "1F468-1F3FD-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FB",
+ "non_qualified": "1F468-1F3FD-200D-2764-200D-1F48B-200D-1F468-1F3FB",
+ "image": "1f468-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fb.png",
+ "sheet_x": 16,
+ "sheet_y": 60,
+ "added_in": "13.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD-1F3FC": {
+ "unified": "1F468-1F3FD-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FC",
+ "non_qualified": "1F468-1F3FD-200D-2764-200D-1F48B-200D-1F468-1F3FC",
+ "image": "1f468-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fc.png",
+ "sheet_x": 17,
"sheet_y": 0,
- "added_in": "8.0",
+ "added_in": "13.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
+ },
+ "1F3FD-1F3FD": {
+ "unified": "1F468-1F3FD-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FD",
+ "non_qualified": "1F468-1F3FD-200D-2764-200D-1F48B-200D-1F468-1F3FD",
+ "image": "1f468-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fd.png",
+ "sheet_x": 17,
+ "sheet_y": 1,
+ "added_in": "13.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD-1F3FE": {
+ "unified": "1F468-1F3FD-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FE",
+ "non_qualified": "1F468-1F3FD-200D-2764-200D-1F48B-200D-1F468-1F3FE",
+ "image": "1f468-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fe.png",
+ "sheet_x": 17,
+ "sheet_y": 2,
+ "added_in": "13.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD-1F3FF": {
+ "unified": "1F468-1F3FD-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FF",
+ "non_qualified": "1F468-1F3FD-200D-2764-200D-1F48B-200D-1F468-1F3FF",
+ "image": "1f468-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3ff.png",
+ "sheet_x": 17,
+ "sheet_y": 3,
+ "added_in": "13.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE-1F3FB": {
+ "unified": "1F468-1F3FE-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FB",
+ "non_qualified": "1F468-1F3FE-200D-2764-200D-1F48B-200D-1F468-1F3FB",
+ "image": "1f468-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fb.png",
+ "sheet_x": 17,
+ "sheet_y": 4,
+ "added_in": "13.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE-1F3FC": {
+ "unified": "1F468-1F3FE-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FC",
+ "non_qualified": "1F468-1F3FE-200D-2764-200D-1F48B-200D-1F468-1F3FC",
+ "image": "1f468-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fc.png",
+ "sheet_x": 17,
+ "sheet_y": 5,
+ "added_in": "13.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE-1F3FD": {
+ "unified": "1F468-1F3FE-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FD",
+ "non_qualified": "1F468-1F3FE-200D-2764-200D-1F48B-200D-1F468-1F3FD",
+ "image": "1f468-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fd.png",
+ "sheet_x": 17,
+ "sheet_y": 6,
+ "added_in": "13.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE-1F3FE": {
+ "unified": "1F468-1F3FE-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FE",
+ "non_qualified": "1F468-1F3FE-200D-2764-200D-1F48B-200D-1F468-1F3FE",
+ "image": "1f468-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fe.png",
+ "sheet_x": 17,
+ "sheet_y": 7,
+ "added_in": "13.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE-1F3FF": {
+ "unified": "1F468-1F3FE-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FF",
+ "non_qualified": "1F468-1F3FE-200D-2764-200D-1F48B-200D-1F468-1F3FF",
+ "image": "1f468-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3ff.png",
+ "sheet_x": 17,
+ "sheet_y": 8,
+ "added_in": "13.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF-1F3FB": {
+ "unified": "1F468-1F3FF-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FB",
+ "non_qualified": "1F468-1F3FF-200D-2764-200D-1F48B-200D-1F468-1F3FB",
+ "image": "1f468-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fb.png",
+ "sheet_x": 17,
+ "sheet_y": 9,
+ "added_in": "13.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF-1F3FC": {
+ "unified": "1F468-1F3FF-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FC",
+ "non_qualified": "1F468-1F3FF-200D-2764-200D-1F48B-200D-1F468-1F3FC",
+ "image": "1f468-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fc.png",
+ "sheet_x": 17,
+ "sheet_y": 10,
+ "added_in": "13.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF-1F3FD": {
+ "unified": "1F468-1F3FF-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FD",
+ "non_qualified": "1F468-1F3FF-200D-2764-200D-1F48B-200D-1F468-1F3FD",
+ "image": "1f468-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fd.png",
+ "sheet_x": 17,
+ "sheet_y": 11,
+ "added_in": "13.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF-1F3FE": {
+ "unified": "1F468-1F3FF-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FE",
+ "non_qualified": "1F468-1F3FF-200D-2764-200D-1F48B-200D-1F468-1F3FE",
+ "image": "1f468-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fe.png",
+ "sheet_x": 17,
+ "sheet_y": 12,
+ "added_in": "13.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF-1F3FF": {
+ "unified": "1F468-1F3FF-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FF",
+ "non_qualified": "1F468-1F3FF-200D-2764-200D-1F48B-200D-1F468-1F3FF",
+ "image": "1f468-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3ff.png",
+ "sheet_x": 17,
+ "sheet_y": 13,
+ "added_in": "13.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
}
}
},
{
- "name": null,
- "unified": "1F469-200D-1F3EB",
+ "name": "MAN",
+ "unified": "1F468",
"non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f469-200d-1f3eb.png",
- "sheet_x": 19,
- "sheet_y": 1,
- "short_name": "female-teacher",
- "short_names": ["female-teacher"],
+ "docomo": "E6F0",
+ "au": "E4FC",
+ "softbank": "E004",
+ "google": "FE19D",
+ "image": "1f468.png",
+ "sheet_x": 17,
+ "sheet_y": 14,
+ "short_name": "man",
+ "short_names": ["man"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 129,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "person",
+ "sort_order": 234,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": false,
"skin_variations": {
"1F3FB": {
- "unified": "1F469-1F3FB-200D-1F3EB",
+ "unified": "1F468-1F3FB",
"non_qualified": null,
- "image": "1f469-1f3fb-200d-1f3eb.png",
- "sheet_x": 19,
- "sheet_y": 2,
- "added_in": "8.0",
+ "image": "1f468-1f3fb.png",
+ "sheet_x": 17,
+ "sheet_y": 15,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FC": {
- "unified": "1F469-1F3FC-200D-1F3EB",
+ "unified": "1F468-1F3FC",
"non_qualified": null,
- "image": "1f469-1f3fc-200d-1f3eb.png",
- "sheet_x": 19,
- "sheet_y": 3,
- "added_in": "8.0",
+ "image": "1f468-1f3fc.png",
+ "sheet_x": 17,
+ "sheet_y": 16,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FD": {
- "unified": "1F469-1F3FD-200D-1F3EB",
+ "unified": "1F468-1F3FD",
"non_qualified": null,
- "image": "1f469-1f3fd-200d-1f3eb.png",
- "sheet_x": 19,
- "sheet_y": 4,
- "added_in": "8.0",
+ "image": "1f468-1f3fd.png",
+ "sheet_x": 17,
+ "sheet_y": 17,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FE": {
- "unified": "1F469-1F3FE-200D-1F3EB",
+ "unified": "1F468-1F3FE",
"non_qualified": null,
- "image": "1f469-1f3fe-200d-1f3eb.png",
- "sheet_x": 19,
- "sheet_y": 5,
- "added_in": "8.0",
+ "image": "1f468-1f3fe.png",
+ "sheet_x": 17,
+ "sheet_y": 18,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FF": {
- "unified": "1F469-1F3FF-200D-1F3EB",
+ "unified": "1F468-1F3FF",
"non_qualified": null,
- "image": "1f469-1f3ff-200d-1f3eb.png",
- "sheet_x": 19,
- "sheet_y": 6,
- "added_in": "8.0",
+ "image": "1f468-1f3ff.png",
+ "sheet_x": 17,
+ "sheet_y": 19,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
}
}
},
{
- "name": null,
- "unified": "1F469-200D-1F3ED",
+ "name": "WOMAN FARMER",
+ "unified": "1F469-200D-1F33E",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f469-200d-1f3ed.png",
- "sheet_x": 19,
- "sheet_y": 7,
- "short_name": "female-factory-worker",
- "short_names": ["female-factory-worker"],
+ "image": "1f469-200d-1f33e.png",
+ "sheet_x": 17,
+ "sheet_y": 20,
+ "short_name": "female-farmer",
+ "short_names": ["female-farmer"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 139,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "person-role",
+ "sort_order": 300,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": false,
"skin_variations": {
"1F3FB": {
- "unified": "1F469-1F3FB-200D-1F3ED",
+ "unified": "1F469-1F3FB-200D-1F33E",
"non_qualified": null,
- "image": "1f469-1f3fb-200d-1f3ed.png",
- "sheet_x": 19,
- "sheet_y": 8,
- "added_in": "8.0",
+ "image": "1f469-1f3fb-200d-1f33e.png",
+ "sheet_x": 17,
+ "sheet_y": 21,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FC": {
- "unified": "1F469-1F3FC-200D-1F3ED",
+ "unified": "1F469-1F3FC-200D-1F33E",
"non_qualified": null,
- "image": "1f469-1f3fc-200d-1f3ed.png",
- "sheet_x": 19,
- "sheet_y": 9,
- "added_in": "8.0",
+ "image": "1f469-1f3fc-200d-1f33e.png",
+ "sheet_x": 17,
+ "sheet_y": 22,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FD": {
- "unified": "1F469-1F3FD-200D-1F3ED",
+ "unified": "1F469-1F3FD-200D-1F33E",
"non_qualified": null,
- "image": "1f469-1f3fd-200d-1f3ed.png",
- "sheet_x": 19,
- "sheet_y": 10,
- "added_in": "8.0",
+ "image": "1f469-1f3fd-200d-1f33e.png",
+ "sheet_x": 17,
+ "sheet_y": 23,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FE": {
- "unified": "1F469-1F3FE-200D-1F3ED",
+ "unified": "1F469-1F3FE-200D-1F33E",
"non_qualified": null,
- "image": "1f469-1f3fe-200d-1f3ed.png",
- "sheet_x": 19,
- "sheet_y": 11,
- "added_in": "8.0",
+ "image": "1f469-1f3fe-200d-1f33e.png",
+ "sheet_x": 17,
+ "sheet_y": 24,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FF": {
- "unified": "1F469-1F3FF-200D-1F3ED",
+ "unified": "1F469-1F3FF-200D-1F33E",
"non_qualified": null,
- "image": "1f469-1f3ff-200d-1f3ed.png",
- "sheet_x": 19,
- "sheet_y": 12,
- "added_in": "8.0",
+ "image": "1f469-1f3ff-200d-1f33e.png",
+ "sheet_x": 17,
+ "sheet_y": 25,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
}
}
},
{
- "name": null,
- "unified": "1F469-200D-1F466-200D-1F466",
+ "name": "WOMAN COOK",
+ "unified": "1F469-200D-1F373",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f469-200d-1f466-200d-1f466.png",
- "sheet_x": 19,
- "sheet_y": 13,
- "short_name": "woman-boy-boy",
- "short_names": ["woman-boy-boy"],
+ "image": "1f469-200d-1f373.png",
+ "sheet_x": 17,
+ "sheet_y": 26,
+ "short_name": "female-cook",
+ "short_names": ["female-cook"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 352,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "person-role",
+ "sort_order": 303,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": false
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F469-1F3FB-200D-1F373",
+ "non_qualified": null,
+ "image": "1f469-1f3fb-200d-1f373.png",
+ "sheet_x": 17,
+ "sheet_y": 27,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1F469-1F3FC-200D-1F373",
+ "non_qualified": null,
+ "image": "1f469-1f3fc-200d-1f373.png",
+ "sheet_x": 17,
+ "sheet_y": 28,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1F469-1F3FD-200D-1F373",
+ "non_qualified": null,
+ "image": "1f469-1f3fd-200d-1f373.png",
+ "sheet_x": 17,
+ "sheet_y": 29,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1F469-1F3FE-200D-1F373",
+ "non_qualified": null,
+ "image": "1f469-1f3fe-200d-1f373.png",
+ "sheet_x": 17,
+ "sheet_y": 30,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1F469-1F3FF-200D-1F373",
+ "non_qualified": null,
+ "image": "1f469-1f3ff-200d-1f373.png",
+ "sheet_x": 17,
+ "sheet_y": 31,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ }
},
{
- "name": null,
- "unified": "1F469-200D-1F466",
+ "name": "WOMAN FEEDING BABY",
+ "unified": "1F469-200D-1F37C",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f469-200d-1f466.png",
- "sheet_x": 19,
- "sheet_y": 14,
- "short_name": "woman-boy",
- "short_names": ["woman-boy"],
+ "image": "1f469-200d-1f37c.png",
+ "sheet_x": 17,
+ "sheet_y": 32,
+ "short_name": "woman_feeding_baby",
+ "short_names": ["woman_feeding_baby"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 351,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "person-role",
+ "sort_order": 365,
+ "added_in": "13.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": false
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F469-1F3FB-200D-1F37C",
+ "non_qualified": null,
+ "image": "1f469-1f3fb-200d-1f37c.png",
+ "sheet_x": 17,
+ "sheet_y": 33,
+ "added_in": "13.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1F469-1F3FC-200D-1F37C",
+ "non_qualified": null,
+ "image": "1f469-1f3fc-200d-1f37c.png",
+ "sheet_x": 17,
+ "sheet_y": 34,
+ "added_in": "13.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1F469-1F3FD-200D-1F37C",
+ "non_qualified": null,
+ "image": "1f469-1f3fd-200d-1f37c.png",
+ "sheet_x": 17,
+ "sheet_y": 35,
+ "added_in": "13.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1F469-1F3FE-200D-1F37C",
+ "non_qualified": null,
+ "image": "1f469-1f3fe-200d-1f37c.png",
+ "sheet_x": 17,
+ "sheet_y": 36,
+ "added_in": "13.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1F469-1F3FF-200D-1F37C",
+ "non_qualified": null,
+ "image": "1f469-1f3ff-200d-1f37c.png",
+ "sheet_x": 17,
+ "sheet_y": 37,
+ "added_in": "13.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ }
},
{
- "name": null,
- "unified": "1F469-200D-1F467-200D-1F466",
+ "name": "WOMAN STUDENT",
+ "unified": "1F469-200D-1F393",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f469-200d-1f467-200d-1f466.png",
- "sheet_x": 19,
- "sheet_y": 15,
- "short_name": "woman-girl-boy",
- "short_names": ["woman-girl-boy"],
+ "image": "1f469-200d-1f393.png",
+ "sheet_x": 17,
+ "sheet_y": 38,
+ "short_name": "female-student",
+ "short_names": ["female-student"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 354,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "person-role",
+ "sort_order": 291,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": false
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F469-1F3FB-200D-1F393",
+ "non_qualified": null,
+ "image": "1f469-1f3fb-200d-1f393.png",
+ "sheet_x": 17,
+ "sheet_y": 39,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1F469-1F3FC-200D-1F393",
+ "non_qualified": null,
+ "image": "1f469-1f3fc-200d-1f393.png",
+ "sheet_x": 17,
+ "sheet_y": 40,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1F469-1F3FD-200D-1F393",
+ "non_qualified": null,
+ "image": "1f469-1f3fd-200d-1f393.png",
+ "sheet_x": 17,
+ "sheet_y": 41,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1F469-1F3FE-200D-1F393",
+ "non_qualified": null,
+ "image": "1f469-1f3fe-200d-1f393.png",
+ "sheet_x": 17,
+ "sheet_y": 42,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1F469-1F3FF-200D-1F393",
+ "non_qualified": null,
+ "image": "1f469-1f3ff-200d-1f393.png",
+ "sheet_x": 17,
+ "sheet_y": 43,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ }
},
{
- "name": null,
- "unified": "1F469-200D-1F467-200D-1F467",
+ "name": "WOMAN SINGER",
+ "unified": "1F469-200D-1F3A4",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f469-200d-1f467-200d-1f467.png",
- "sheet_x": 19,
- "sheet_y": 16,
- "short_name": "woman-girl-girl",
- "short_names": ["woman-girl-girl"],
+ "image": "1f469-200d-1f3a4.png",
+ "sheet_x": 17,
+ "sheet_y": 44,
+ "short_name": "female-singer",
+ "short_names": ["female-singer"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 355,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "person-role",
+ "sort_order": 321,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": false
- },
- {
- "name": null,
- "unified": "1F469-200D-1F467",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f469-200d-1f467.png",
- "sheet_x": 19,
- "sheet_y": 17,
- "short_name": "woman-girl",
- "short_names": ["woman-girl"],
- "text": null,
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F469-1F3FB-200D-1F3A4",
+ "non_qualified": null,
+ "image": "1f469-1f3fb-200d-1f3a4.png",
+ "sheet_x": 17,
+ "sheet_y": 45,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1F469-1F3FC-200D-1F3A4",
+ "non_qualified": null,
+ "image": "1f469-1f3fc-200d-1f3a4.png",
+ "sheet_x": 17,
+ "sheet_y": 46,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1F469-1F3FD-200D-1F3A4",
+ "non_qualified": null,
+ "image": "1f469-1f3fd-200d-1f3a4.png",
+ "sheet_x": 17,
+ "sheet_y": 47,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1F469-1F3FE-200D-1F3A4",
+ "non_qualified": null,
+ "image": "1f469-1f3fe-200d-1f3a4.png",
+ "sheet_x": 17,
+ "sheet_y": 48,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1F469-1F3FF-200D-1F3A4",
+ "non_qualified": null,
+ "image": "1f469-1f3ff-200d-1f3a4.png",
+ "sheet_x": 17,
+ "sheet_y": 49,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ }
+ },
+ {
+ "name": "WOMAN ARTIST",
+ "unified": "1F469-200D-1F3A8",
+ "non_qualified": null,
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f469-200d-1f3a8.png",
+ "sheet_x": 17,
+ "sheet_y": 50,
+ "short_name": "female-artist",
+ "short_names": ["female-artist"],
+ "text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 353,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "person-role",
+ "sort_order": 324,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true,
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F469-1F3FB-200D-1F3A8",
+ "non_qualified": null,
+ "image": "1f469-1f3fb-200d-1f3a8.png",
+ "sheet_x": 17,
+ "sheet_y": 51,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1F469-1F3FC-200D-1F3A8",
+ "non_qualified": null,
+ "image": "1f469-1f3fc-200d-1f3a8.png",
+ "sheet_x": 17,
+ "sheet_y": 52,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1F469-1F3FD-200D-1F3A8",
+ "non_qualified": null,
+ "image": "1f469-1f3fd-200d-1f3a8.png",
+ "sheet_x": 17,
+ "sheet_y": 53,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1F469-1F3FE-200D-1F3A8",
+ "non_qualified": null,
+ "image": "1f469-1f3fe-200d-1f3a8.png",
+ "sheet_x": 17,
+ "sheet_y": 54,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1F469-1F3FF-200D-1F3A8",
+ "non_qualified": null,
+ "image": "1f469-1f3ff-200d-1f3a8.png",
+ "sheet_x": 17,
+ "sheet_y": 55,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ }
+ },
+ {
+ "name": "WOMAN TEACHER",
+ "unified": "1F469-200D-1F3EB",
+ "non_qualified": null,
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f469-200d-1f3eb.png",
+ "sheet_x": 17,
+ "sheet_y": 56,
+ "short_name": "female-teacher",
+ "short_names": ["female-teacher"],
+ "text": null,
+ "texts": null,
+ "category": "People & Body",
+ "subcategory": "person-role",
+ "sort_order": 294,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true,
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F469-1F3FB-200D-1F3EB",
+ "non_qualified": null,
+ "image": "1f469-1f3fb-200d-1f3eb.png",
+ "sheet_x": 17,
+ "sheet_y": 57,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1F469-1F3FC-200D-1F3EB",
+ "non_qualified": null,
+ "image": "1f469-1f3fc-200d-1f3eb.png",
+ "sheet_x": 17,
+ "sheet_y": 58,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1F469-1F3FD-200D-1F3EB",
+ "non_qualified": null,
+ "image": "1f469-1f3fd-200d-1f3eb.png",
+ "sheet_x": 17,
+ "sheet_y": 59,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1F469-1F3FE-200D-1F3EB",
+ "non_qualified": null,
+ "image": "1f469-1f3fe-200d-1f3eb.png",
+ "sheet_x": 17,
+ "sheet_y": 60,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1F469-1F3FF-200D-1F3EB",
+ "non_qualified": null,
+ "image": "1f469-1f3ff-200d-1f3eb.png",
+ "sheet_x": 18,
+ "sheet_y": 0,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ }
+ },
+ {
+ "name": "WOMAN FACTORY WORKER",
+ "unified": "1F469-200D-1F3ED",
+ "non_qualified": null,
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f469-200d-1f3ed.png",
+ "sheet_x": 18,
+ "sheet_y": 1,
+ "short_name": "female-factory-worker",
+ "short_names": ["female-factory-worker"],
+ "text": null,
+ "texts": null,
+ "category": "People & Body",
+ "subcategory": "person-role",
+ "sort_order": 309,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": false
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F469-1F3FB-200D-1F3ED",
+ "non_qualified": null,
+ "image": "1f469-1f3fb-200d-1f3ed.png",
+ "sheet_x": 18,
+ "sheet_y": 2,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1F469-1F3FC-200D-1F3ED",
+ "non_qualified": null,
+ "image": "1f469-1f3fc-200d-1f3ed.png",
+ "sheet_x": 18,
+ "sheet_y": 3,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1F469-1F3FD-200D-1F3ED",
+ "non_qualified": null,
+ "image": "1f469-1f3fd-200d-1f3ed.png",
+ "sheet_x": 18,
+ "sheet_y": 4,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1F469-1F3FE-200D-1F3ED",
+ "non_qualified": null,
+ "image": "1f469-1f3fe-200d-1f3ed.png",
+ "sheet_x": 18,
+ "sheet_y": 5,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1F469-1F3FF-200D-1F3ED",
+ "non_qualified": null,
+ "image": "1f469-1f3ff-200d-1f3ed.png",
+ "sheet_x": 18,
+ "sheet_y": 6,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ }
+ },
+ {
+ "name": "FAMILY: WOMAN, BOY, BOY",
+ "unified": "1F469-200D-1F466-200D-1F466",
+ "non_qualified": null,
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f469-200d-1f466-200d-1f466.png",
+ "sheet_x": 18,
+ "sheet_y": 7,
+ "short_name": "woman-boy-boy",
+ "short_names": ["woman-boy-boy"],
+ "text": null,
+ "texts": null,
+ "category": "People & Body",
+ "subcategory": "family",
+ "sort_order": 521,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "FAMILY: WOMAN, BOY",
+ "unified": "1F469-200D-1F466",
+ "non_qualified": null,
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f469-200d-1f466.png",
+ "sheet_x": 18,
+ "sheet_y": 8,
+ "short_name": "woman-boy",
+ "short_names": ["woman-boy"],
+ "text": null,
+ "texts": null,
+ "category": "People & Body",
+ "subcategory": "family",
+ "sort_order": 520,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "FAMILY: WOMAN, GIRL, BOY",
+ "unified": "1F469-200D-1F467-200D-1F466",
+ "non_qualified": null,
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f469-200d-1f467-200d-1f466.png",
+ "sheet_x": 18,
+ "sheet_y": 9,
+ "short_name": "woman-girl-boy",
+ "short_names": ["woman-girl-boy"],
+ "text": null,
+ "texts": null,
+ "category": "People & Body",
+ "subcategory": "family",
+ "sort_order": 523,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "FAMILY: WOMAN, GIRL, GIRL",
+ "unified": "1F469-200D-1F467-200D-1F467",
+ "non_qualified": null,
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f469-200d-1f467-200d-1f467.png",
+ "sheet_x": 18,
+ "sheet_y": 10,
+ "short_name": "woman-girl-girl",
+ "short_names": ["woman-girl-girl"],
+ "text": null,
+ "texts": null,
+ "category": "People & Body",
+ "subcategory": "family",
+ "sort_order": 524,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "FAMILY: WOMAN, GIRL",
+ "unified": "1F469-200D-1F467",
+ "non_qualified": null,
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f469-200d-1f467.png",
+ "sheet_x": 18,
+ "sheet_y": 11,
+ "short_name": "woman-girl",
+ "short_names": ["woman-girl"],
+ "text": null,
+ "texts": null,
+ "category": "People & Body",
+ "subcategory": "family",
+ "sort_order": 522,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
},
{
- "name": null,
+ "name": "FAMILY: WOMAN, WOMAN, BOY",
"unified": "1F469-200D-1F469-200D-1F466",
"non_qualified": null,
"docomo": null,
@@ -21386,23 +22235,23 @@
"softbank": null,
"google": null,
"image": "1f469-200d-1f469-200d-1f466.png",
- "sheet_x": 19,
- "sheet_y": 18,
+ "sheet_x": 18,
+ "sheet_y": 12,
"short_name": "woman-woman-boy",
"short_names": ["woman-woman-boy"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 341,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "family",
+ "sort_order": 510,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": null,
+ "name": "FAMILY: WOMAN, WOMAN, BOY, BOY",
"unified": "1F469-200D-1F469-200D-1F466-200D-1F466",
"non_qualified": null,
"docomo": null,
@@ -21410,23 +22259,23 @@
"softbank": null,
"google": null,
"image": "1f469-200d-1f469-200d-1f466-200d-1f466.png",
- "sheet_x": 19,
- "sheet_y": 19,
+ "sheet_x": 18,
+ "sheet_y": 13,
"short_name": "woman-woman-boy-boy",
"short_names": ["woman-woman-boy-boy"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 344,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "family",
+ "sort_order": 513,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": null,
+ "name": "FAMILY: WOMAN, WOMAN, GIRL",
"unified": "1F469-200D-1F469-200D-1F467",
"non_qualified": null,
"docomo": null,
@@ -21434,23 +22283,23 @@
"softbank": null,
"google": null,
"image": "1f469-200d-1f469-200d-1f467.png",
- "sheet_x": 19,
- "sheet_y": 20,
+ "sheet_x": 18,
+ "sheet_y": 14,
"short_name": "woman-woman-girl",
"short_names": ["woman-woman-girl"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 342,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "family",
+ "sort_order": 511,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": null,
+ "name": "FAMILY: WOMAN, WOMAN, GIRL, BOY",
"unified": "1F469-200D-1F469-200D-1F467-200D-1F466",
"non_qualified": null,
"docomo": null,
@@ -21458,23 +22307,23 @@
"softbank": null,
"google": null,
"image": "1f469-200d-1f469-200d-1f467-200d-1f466.png",
- "sheet_x": 19,
- "sheet_y": 21,
+ "sheet_x": 18,
+ "sheet_y": 15,
"short_name": "woman-woman-girl-boy",
"short_names": ["woman-woman-girl-boy"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 343,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "family",
+ "sort_order": 512,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": null,
+ "name": "FAMILY: WOMAN, WOMAN, GIRL, GIRL",
"unified": "1F469-200D-1F469-200D-1F467-200D-1F467",
"non_qualified": null,
"docomo": null,
@@ -21482,23 +22331,23 @@
"softbank": null,
"google": null,
"image": "1f469-200d-1f469-200d-1f467-200d-1f467.png",
- "sheet_x": 19,
- "sheet_y": 22,
+ "sheet_x": 18,
+ "sheet_y": 16,
"short_name": "woman-woman-girl-girl",
"short_names": ["woman-woman-girl-girl"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 345,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "family",
+ "sort_order": 514,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": null,
+ "name": "WOMAN TECHNOLOGIST",
"unified": "1F469-200D-1F4BB",
"non_qualified": null,
"docomo": null,
@@ -21506,90 +22355,85 @@
"softbank": null,
"google": null,
"image": "1f469-200d-1f4bb.png",
- "sheet_x": 19,
- "sheet_y": 23,
+ "sheet_x": 18,
+ "sheet_y": 17,
"short_name": "female-technologist",
"short_names": ["female-technologist"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 145,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "person-role",
+ "sort_order": 318,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": false,
"skin_variations": {
"1F3FB": {
"unified": "1F469-1F3FB-200D-1F4BB",
"non_qualified": null,
"image": "1f469-1f3fb-200d-1f4bb.png",
- "sheet_x": 19,
- "sheet_y": 24,
- "added_in": "8.0",
+ "sheet_x": 18,
+ "sheet_y": 18,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FC": {
"unified": "1F469-1F3FC-200D-1F4BB",
"non_qualified": null,
"image": "1f469-1f3fc-200d-1f4bb.png",
- "sheet_x": 19,
- "sheet_y": 25,
- "added_in": "8.0",
+ "sheet_x": 18,
+ "sheet_y": 19,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FD": {
"unified": "1F469-1F3FD-200D-1F4BB",
"non_qualified": null,
"image": "1f469-1f3fd-200d-1f4bb.png",
- "sheet_x": 19,
- "sheet_y": 26,
- "added_in": "8.0",
+ "sheet_x": 18,
+ "sheet_y": 20,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FE": {
"unified": "1F469-1F3FE-200D-1F4BB",
"non_qualified": null,
"image": "1f469-1f3fe-200d-1f4bb.png",
- "sheet_x": 19,
- "sheet_y": 27,
- "added_in": "8.0",
+ "sheet_x": 18,
+ "sheet_y": 21,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FF": {
"unified": "1F469-1F3FF-200D-1F4BB",
"non_qualified": null,
"image": "1f469-1f3ff-200d-1f4bb.png",
- "sheet_x": 19,
- "sheet_y": 28,
- "added_in": "8.0",
+ "sheet_x": 18,
+ "sheet_y": 22,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
}
}
},
{
- "name": null,
+ "name": "WOMAN OFFICE WORKER",
"unified": "1F469-200D-1F4BC",
"non_qualified": null,
"docomo": null,
@@ -21597,90 +22441,85 @@
"softbank": null,
"google": null,
"image": "1f469-200d-1f4bc.png",
- "sheet_x": 19,
- "sheet_y": 29,
+ "sheet_x": 18,
+ "sheet_y": 23,
"short_name": "female-office-worker",
"short_names": ["female-office-worker"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 141,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "person-role",
+ "sort_order": 312,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": false,
"skin_variations": {
"1F3FB": {
"unified": "1F469-1F3FB-200D-1F4BC",
"non_qualified": null,
"image": "1f469-1f3fb-200d-1f4bc.png",
- "sheet_x": 19,
- "sheet_y": 30,
- "added_in": "8.0",
+ "sheet_x": 18,
+ "sheet_y": 24,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FC": {
"unified": "1F469-1F3FC-200D-1F4BC",
"non_qualified": null,
"image": "1f469-1f3fc-200d-1f4bc.png",
- "sheet_x": 19,
- "sheet_y": 31,
- "added_in": "8.0",
+ "sheet_x": 18,
+ "sheet_y": 25,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FD": {
"unified": "1F469-1F3FD-200D-1F4BC",
"non_qualified": null,
"image": "1f469-1f3fd-200d-1f4bc.png",
- "sheet_x": 19,
- "sheet_y": 32,
- "added_in": "8.0",
+ "sheet_x": 18,
+ "sheet_y": 26,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FE": {
"unified": "1F469-1F3FE-200D-1F4BC",
"non_qualified": null,
"image": "1f469-1f3fe-200d-1f4bc.png",
- "sheet_x": 19,
- "sheet_y": 33,
- "added_in": "8.0",
+ "sheet_x": 18,
+ "sheet_y": 27,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FF": {
"unified": "1F469-1F3FF-200D-1F4BC",
"non_qualified": null,
"image": "1f469-1f3ff-200d-1f4bc.png",
- "sheet_x": 19,
- "sheet_y": 34,
- "added_in": "8.0",
+ "sheet_x": 18,
+ "sheet_y": 28,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
}
}
},
{
- "name": null,
+ "name": "WOMAN MECHANIC",
"unified": "1F469-200D-1F527",
"non_qualified": null,
"docomo": null,
@@ -21688,90 +22527,85 @@
"softbank": null,
"google": null,
"image": "1f469-200d-1f527.png",
- "sheet_x": 19,
- "sheet_y": 35,
+ "sheet_x": 18,
+ "sheet_y": 29,
"short_name": "female-mechanic",
"short_names": ["female-mechanic"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 137,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "person-role",
+ "sort_order": 306,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": false,
"skin_variations": {
"1F3FB": {
"unified": "1F469-1F3FB-200D-1F527",
"non_qualified": null,
"image": "1f469-1f3fb-200d-1f527.png",
- "sheet_x": 19,
- "sheet_y": 36,
- "added_in": "8.0",
+ "sheet_x": 18,
+ "sheet_y": 30,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FC": {
"unified": "1F469-1F3FC-200D-1F527",
"non_qualified": null,
"image": "1f469-1f3fc-200d-1f527.png",
- "sheet_x": 19,
- "sheet_y": 37,
- "added_in": "8.0",
+ "sheet_x": 18,
+ "sheet_y": 31,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FD": {
"unified": "1F469-1F3FD-200D-1F527",
"non_qualified": null,
"image": "1f469-1f3fd-200d-1f527.png",
- "sheet_x": 19,
- "sheet_y": 38,
- "added_in": "8.0",
+ "sheet_x": 18,
+ "sheet_y": 32,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FE": {
"unified": "1F469-1F3FE-200D-1F527",
"non_qualified": null,
"image": "1f469-1f3fe-200d-1f527.png",
- "sheet_x": 19,
- "sheet_y": 39,
- "added_in": "8.0",
+ "sheet_x": 18,
+ "sheet_y": 33,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FF": {
"unified": "1F469-1F3FF-200D-1F527",
"non_qualified": null,
"image": "1f469-1f3ff-200d-1f527.png",
- "sheet_x": 19,
- "sheet_y": 40,
- "added_in": "8.0",
+ "sheet_x": 18,
+ "sheet_y": 34,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
}
}
},
{
- "name": null,
+ "name": "WOMAN SCIENTIST",
"unified": "1F469-200D-1F52C",
"non_qualified": null,
"docomo": null,
@@ -21779,90 +22613,85 @@
"softbank": null,
"google": null,
"image": "1f469-200d-1f52c.png",
- "sheet_x": 19,
- "sheet_y": 41,
+ "sheet_x": 18,
+ "sheet_y": 35,
"short_name": "female-scientist",
"short_names": ["female-scientist"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 143,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "person-role",
+ "sort_order": 315,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": false,
"skin_variations": {
"1F3FB": {
"unified": "1F469-1F3FB-200D-1F52C",
"non_qualified": null,
"image": "1f469-1f3fb-200d-1f52c.png",
- "sheet_x": 19,
- "sheet_y": 42,
- "added_in": "8.0",
+ "sheet_x": 18,
+ "sheet_y": 36,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FC": {
"unified": "1F469-1F3FC-200D-1F52C",
"non_qualified": null,
"image": "1f469-1f3fc-200d-1f52c.png",
- "sheet_x": 19,
- "sheet_y": 43,
- "added_in": "8.0",
+ "sheet_x": 18,
+ "sheet_y": 37,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FD": {
"unified": "1F469-1F3FD-200D-1F52C",
"non_qualified": null,
"image": "1f469-1f3fd-200d-1f52c.png",
- "sheet_x": 19,
- "sheet_y": 44,
- "added_in": "8.0",
+ "sheet_x": 18,
+ "sheet_y": 38,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FE": {
"unified": "1F469-1F3FE-200D-1F52C",
"non_qualified": null,
"image": "1f469-1f3fe-200d-1f52c.png",
- "sheet_x": 19,
- "sheet_y": 45,
- "added_in": "8.0",
+ "sheet_x": 18,
+ "sheet_y": 39,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FF": {
"unified": "1F469-1F3FF-200D-1F52C",
"non_qualified": null,
"image": "1f469-1f3ff-200d-1f52c.png",
- "sheet_x": 19,
- "sheet_y": 46,
- "added_in": "8.0",
+ "sheet_x": 18,
+ "sheet_y": 40,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
}
}
},
{
- "name": null,
+ "name": "WOMAN ASTRONAUT",
"unified": "1F469-200D-1F680",
"non_qualified": null,
"docomo": null,
@@ -21870,90 +22699,85 @@
"softbank": null,
"google": null,
"image": "1f469-200d-1f680.png",
- "sheet_x": 19,
- "sheet_y": 47,
+ "sheet_x": 18,
+ "sheet_y": 41,
"short_name": "female-astronaut",
"short_names": ["female-astronaut"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 153,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "person-role",
+ "sort_order": 330,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": false,
"skin_variations": {
"1F3FB": {
"unified": "1F469-1F3FB-200D-1F680",
"non_qualified": null,
"image": "1f469-1f3fb-200d-1f680.png",
- "sheet_x": 19,
- "sheet_y": 48,
- "added_in": "8.0",
+ "sheet_x": 18,
+ "sheet_y": 42,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FC": {
"unified": "1F469-1F3FC-200D-1F680",
"non_qualified": null,
"image": "1f469-1f3fc-200d-1f680.png",
- "sheet_x": 19,
- "sheet_y": 49,
- "added_in": "8.0",
+ "sheet_x": 18,
+ "sheet_y": 43,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FD": {
"unified": "1F469-1F3FD-200D-1F680",
"non_qualified": null,
"image": "1f469-1f3fd-200d-1f680.png",
- "sheet_x": 19,
- "sheet_y": 50,
- "added_in": "8.0",
+ "sheet_x": 18,
+ "sheet_y": 44,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FE": {
"unified": "1F469-1F3FE-200D-1F680",
"non_qualified": null,
"image": "1f469-1f3fe-200d-1f680.png",
- "sheet_x": 19,
- "sheet_y": 51,
- "added_in": "8.0",
+ "sheet_x": 18,
+ "sheet_y": 45,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FF": {
"unified": "1F469-1F3FF-200D-1F680",
"non_qualified": null,
"image": "1f469-1f3ff-200d-1f680.png",
- "sheet_x": 19,
- "sheet_y": 52,
- "added_in": "8.0",
+ "sheet_x": 18,
+ "sheet_y": 46,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
}
}
},
{
- "name": null,
+ "name": "WOMAN FIREFIGHTER",
"unified": "1F469-200D-1F692",
"non_qualified": null,
"docomo": null,
@@ -21961,90 +22785,171 @@
"softbank": null,
"google": null,
"image": "1f469-200d-1f692.png",
- "sheet_x": 20,
- "sheet_y": 0,
+ "sheet_x": 18,
+ "sheet_y": 47,
"short_name": "female-firefighter",
"short_names": ["female-firefighter"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 155,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "person-role",
+ "sort_order": 333,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": false,
"skin_variations": {
"1F3FB": {
"unified": "1F469-1F3FB-200D-1F692",
"non_qualified": null,
"image": "1f469-1f3fb-200d-1f692.png",
- "sheet_x": 20,
- "sheet_y": 1,
- "added_in": "8.0",
+ "sheet_x": 18,
+ "sheet_y": 48,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FC": {
"unified": "1F469-1F3FC-200D-1F692",
"non_qualified": null,
"image": "1f469-1f3fc-200d-1f692.png",
- "sheet_x": 20,
- "sheet_y": 2,
- "added_in": "8.0",
+ "sheet_x": 18,
+ "sheet_y": 49,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FD": {
"unified": "1F469-1F3FD-200D-1F692",
"non_qualified": null,
"image": "1f469-1f3fd-200d-1f692.png",
- "sheet_x": 20,
- "sheet_y": 3,
- "added_in": "8.0",
+ "sheet_x": 18,
+ "sheet_y": 50,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FE": {
"unified": "1F469-1F3FE-200D-1F692",
"non_qualified": null,
"image": "1f469-1f3fe-200d-1f692.png",
- "sheet_x": 20,
- "sheet_y": 4,
- "added_in": "8.0",
+ "sheet_x": 18,
+ "sheet_y": 51,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FF": {
"unified": "1F469-1F3FF-200D-1F692",
"non_qualified": null,
"image": "1f469-1f3ff-200d-1f692.png",
- "sheet_x": 20,
- "sheet_y": 5,
- "added_in": "8.0",
+ "sheet_x": 18,
+ "sheet_y": 52,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
}
}
},
{
- "name": null,
+ "name": "WOMAN WITH WHITE CANE",
+ "unified": "1F469-200D-1F9AF",
+ "non_qualified": null,
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f469-200d-1f9af.png",
+ "sheet_x": 18,
+ "sheet_y": 53,
+ "short_name": "woman_with_probing_cane",
+ "short_names": ["woman_with_probing_cane"],
+ "text": null,
+ "texts": null,
+ "category": "People & Body",
+ "subcategory": "person-activity",
+ "sort_order": 417,
+ "added_in": "12.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true,
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F469-1F3FB-200D-1F9AF",
+ "non_qualified": null,
+ "image": "1f469-1f3fb-200d-1f9af.png",
+ "sheet_x": 18,
+ "sheet_y": 54,
+ "added_in": "12.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1F469-1F3FC-200D-1F9AF",
+ "non_qualified": null,
+ "image": "1f469-1f3fc-200d-1f9af.png",
+ "sheet_x": 18,
+ "sheet_y": 55,
+ "added_in": "12.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1F469-1F3FD-200D-1F9AF",
+ "non_qualified": null,
+ "image": "1f469-1f3fd-200d-1f9af.png",
+ "sheet_x": 18,
+ "sheet_y": 56,
+ "added_in": "12.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1F469-1F3FE-200D-1F9AF",
+ "non_qualified": null,
+ "image": "1f469-1f3fe-200d-1f9af.png",
+ "sheet_x": 18,
+ "sheet_y": 57,
+ "added_in": "12.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1F469-1F3FF-200D-1F9AF",
+ "non_qualified": null,
+ "image": "1f469-1f3ff-200d-1f9af.png",
+ "sheet_x": 18,
+ "sheet_y": 58,
+ "added_in": "12.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ }
+ },
+ {
+ "name": "WOMAN: RED HAIR",
"unified": "1F469-200D-1F9B0",
"non_qualified": null,
"docomo": null,
@@ -22052,90 +22957,85 @@
"softbank": null,
"google": null,
"image": "1f469-200d-1f9b0.png",
- "sheet_x": 20,
- "sheet_y": 6,
- "short_name": "female_red_haired",
- "short_names": ["female_red_haired"],
+ "sheet_x": 18,
+ "sheet_y": 59,
+ "short_name": "red_haired_woman",
+ "short_names": ["red_haired_woman"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 180,
+ "category": "People & Body",
+ "subcategory": "person",
+ "sort_order": 243,
"added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false,
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true,
"skin_variations": {
"1F3FB": {
"unified": "1F469-1F3FB-200D-1F9B0",
"non_qualified": null,
"image": "1f469-1f3fb-200d-1f9b0.png",
- "sheet_x": 20,
- "sheet_y": 7,
+ "sheet_x": 18,
+ "sheet_y": 60,
"added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
},
"1F3FC": {
"unified": "1F469-1F3FC-200D-1F9B0",
"non_qualified": null,
"image": "1f469-1f3fc-200d-1f9b0.png",
- "sheet_x": 20,
- "sheet_y": 8,
+ "sheet_x": 19,
+ "sheet_y": 0,
"added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
},
"1F3FD": {
"unified": "1F469-1F3FD-200D-1F9B0",
"non_qualified": null,
"image": "1f469-1f3fd-200d-1f9b0.png",
- "sheet_x": 20,
- "sheet_y": 9,
+ "sheet_x": 19,
+ "sheet_y": 1,
"added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
},
"1F3FE": {
"unified": "1F469-1F3FE-200D-1F9B0",
"non_qualified": null,
"image": "1f469-1f3fe-200d-1f9b0.png",
- "sheet_x": 20,
- "sheet_y": 10,
+ "sheet_x": 19,
+ "sheet_y": 2,
"added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
},
"1F3FF": {
"unified": "1F469-1F3FF-200D-1F9B0",
"non_qualified": null,
"image": "1f469-1f3ff-200d-1f9b0.png",
- "sheet_x": 20,
- "sheet_y": 11,
+ "sheet_x": 19,
+ "sheet_y": 3,
"added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
}
}
},
{
- "name": null,
+ "name": "WOMAN: CURLY HAIR",
"unified": "1F469-200D-1F9B1",
"non_qualified": null,
"docomo": null,
@@ -22143,90 +23043,85 @@
"softbank": null,
"google": null,
"image": "1f469-200d-1f9b1.png",
- "sheet_x": 20,
- "sheet_y": 12,
- "short_name": "female_curly_haired",
- "short_names": ["female_curly_haired"],
+ "sheet_x": 19,
+ "sheet_y": 4,
+ "short_name": "curly_haired_woman",
+ "short_names": ["curly_haired_woman"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 182,
+ "category": "People & Body",
+ "subcategory": "person",
+ "sort_order": 245,
"added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false,
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true,
"skin_variations": {
"1F3FB": {
"unified": "1F469-1F3FB-200D-1F9B1",
"non_qualified": null,
"image": "1f469-1f3fb-200d-1f9b1.png",
- "sheet_x": 20,
- "sheet_y": 13,
+ "sheet_x": 19,
+ "sheet_y": 5,
"added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
},
"1F3FC": {
"unified": "1F469-1F3FC-200D-1F9B1",
"non_qualified": null,
"image": "1f469-1f3fc-200d-1f9b1.png",
- "sheet_x": 20,
- "sheet_y": 14,
+ "sheet_x": 19,
+ "sheet_y": 6,
"added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
},
"1F3FD": {
"unified": "1F469-1F3FD-200D-1F9B1",
"non_qualified": null,
"image": "1f469-1f3fd-200d-1f9b1.png",
- "sheet_x": 20,
- "sheet_y": 15,
+ "sheet_x": 19,
+ "sheet_y": 7,
"added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
},
"1F3FE": {
"unified": "1F469-1F3FE-200D-1F9B1",
"non_qualified": null,
"image": "1f469-1f3fe-200d-1f9b1.png",
- "sheet_x": 20,
- "sheet_y": 16,
+ "sheet_x": 19,
+ "sheet_y": 8,
"added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
},
"1F3FF": {
"unified": "1F469-1F3FF-200D-1F9B1",
"non_qualified": null,
"image": "1f469-1f3ff-200d-1f9b1.png",
- "sheet_x": 20,
- "sheet_y": 17,
+ "sheet_x": 19,
+ "sheet_y": 9,
"added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
}
}
},
{
- "name": null,
+ "name": "WOMAN: BALD",
"unified": "1F469-200D-1F9B2",
"non_qualified": null,
"docomo": null,
@@ -22234,90 +23129,85 @@
"softbank": null,
"google": null,
"image": "1f469-200d-1f9b2.png",
- "sheet_x": 20,
- "sheet_y": 18,
- "short_name": "female_bald",
- "short_names": ["female_bald"],
+ "sheet_x": 19,
+ "sheet_y": 10,
+ "short_name": "bald_woman",
+ "short_names": ["bald_woman"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 184,
+ "category": "People & Body",
+ "subcategory": "person",
+ "sort_order": 249,
"added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false,
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true,
"skin_variations": {
"1F3FB": {
"unified": "1F469-1F3FB-200D-1F9B2",
"non_qualified": null,
"image": "1f469-1f3fb-200d-1f9b2.png",
- "sheet_x": 20,
- "sheet_y": 19,
+ "sheet_x": 19,
+ "sheet_y": 11,
"added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
},
"1F3FC": {
"unified": "1F469-1F3FC-200D-1F9B2",
"non_qualified": null,
"image": "1f469-1f3fc-200d-1f9b2.png",
- "sheet_x": 20,
- "sheet_y": 20,
+ "sheet_x": 19,
+ "sheet_y": 12,
"added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
},
"1F3FD": {
"unified": "1F469-1F3FD-200D-1F9B2",
"non_qualified": null,
"image": "1f469-1f3fd-200d-1f9b2.png",
- "sheet_x": 20,
- "sheet_y": 21,
+ "sheet_x": 19,
+ "sheet_y": 13,
"added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
},
"1F3FE": {
"unified": "1F469-1F3FE-200D-1F9B2",
"non_qualified": null,
"image": "1f469-1f3fe-200d-1f9b2.png",
- "sheet_x": 20,
- "sheet_y": 22,
+ "sheet_x": 19,
+ "sheet_y": 14,
"added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
},
"1F3FF": {
"unified": "1F469-1F3FF-200D-1F9B2",
"non_qualified": null,
"image": "1f469-1f3ff-200d-1f9b2.png",
- "sheet_x": 20,
- "sheet_y": 23,
+ "sheet_x": 19,
+ "sheet_y": 15,
"added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
}
}
},
{
- "name": null,
+ "name": "WOMAN: WHITE HAIR",
"unified": "1F469-200D-1F9B3",
"non_qualified": null,
"docomo": null,
@@ -22325,90 +23215,257 @@
"softbank": null,
"google": null,
"image": "1f469-200d-1f9b3.png",
- "sheet_x": 20,
- "sheet_y": 24,
- "short_name": "female_white_haired",
- "short_names": ["female_white_haired"],
+ "sheet_x": 19,
+ "sheet_y": 16,
+ "short_name": "white_haired_woman",
+ "short_names": ["white_haired_woman"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 186,
+ "category": "People & Body",
+ "subcategory": "person",
+ "sort_order": 247,
"added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false,
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true,
"skin_variations": {
"1F3FB": {
"unified": "1F469-1F3FB-200D-1F9B3",
"non_qualified": null,
"image": "1f469-1f3fb-200d-1f9b3.png",
- "sheet_x": 20,
- "sheet_y": 25,
+ "sheet_x": 19,
+ "sheet_y": 17,
"added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
},
"1F3FC": {
"unified": "1F469-1F3FC-200D-1F9B3",
"non_qualified": null,
"image": "1f469-1f3fc-200d-1f9b3.png",
- "sheet_x": 20,
- "sheet_y": 26,
+ "sheet_x": 19,
+ "sheet_y": 18,
"added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
},
"1F3FD": {
"unified": "1F469-1F3FD-200D-1F9B3",
"non_qualified": null,
"image": "1f469-1f3fd-200d-1f9b3.png",
- "sheet_x": 20,
- "sheet_y": 27,
+ "sheet_x": 19,
+ "sheet_y": 19,
"added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
},
"1F3FE": {
"unified": "1F469-1F3FE-200D-1F9B3",
"non_qualified": null,
"image": "1f469-1f3fe-200d-1f9b3.png",
- "sheet_x": 20,
- "sheet_y": 28,
+ "sheet_x": 19,
+ "sheet_y": 20,
"added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
},
"1F3FF": {
"unified": "1F469-1F3FF-200D-1F9B3",
"non_qualified": null,
"image": "1f469-1f3ff-200d-1f9b3.png",
- "sheet_x": 20,
- "sheet_y": 29,
+ "sheet_x": 19,
+ "sheet_y": 21,
"added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ }
+ },
+ {
+ "name": "WOMAN IN MOTORIZED WHEELCHAIR",
+ "unified": "1F469-200D-1F9BC",
+ "non_qualified": null,
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f469-200d-1f9bc.png",
+ "sheet_x": 19,
+ "sheet_y": 22,
+ "short_name": "woman_in_motorized_wheelchair",
+ "short_names": ["woman_in_motorized_wheelchair"],
+ "text": null,
+ "texts": null,
+ "category": "People & Body",
+ "subcategory": "person-activity",
+ "sort_order": 420,
+ "added_in": "12.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true,
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F469-1F3FB-200D-1F9BC",
+ "non_qualified": null,
+ "image": "1f469-1f3fb-200d-1f9bc.png",
+ "sheet_x": 19,
+ "sheet_y": 23,
+ "added_in": "12.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1F469-1F3FC-200D-1F9BC",
+ "non_qualified": null,
+ "image": "1f469-1f3fc-200d-1f9bc.png",
+ "sheet_x": 19,
+ "sheet_y": 24,
+ "added_in": "12.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1F469-1F3FD-200D-1F9BC",
+ "non_qualified": null,
+ "image": "1f469-1f3fd-200d-1f9bc.png",
+ "sheet_x": 19,
+ "sheet_y": 25,
+ "added_in": "12.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1F469-1F3FE-200D-1F9BC",
+ "non_qualified": null,
+ "image": "1f469-1f3fe-200d-1f9bc.png",
+ "sheet_x": 19,
+ "sheet_y": 26,
+ "added_in": "12.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1F469-1F3FF-200D-1F9BC",
+ "non_qualified": null,
+ "image": "1f469-1f3ff-200d-1f9bc.png",
+ "sheet_x": 19,
+ "sheet_y": 27,
+ "added_in": "12.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
}
}
},
{
- "name": null,
+ "name": "WOMAN IN MANUAL WHEELCHAIR",
+ "unified": "1F469-200D-1F9BD",
+ "non_qualified": null,
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f469-200d-1f9bd.png",
+ "sheet_x": 19,
+ "sheet_y": 28,
+ "short_name": "woman_in_manual_wheelchair",
+ "short_names": ["woman_in_manual_wheelchair"],
+ "text": null,
+ "texts": null,
+ "category": "People & Body",
+ "subcategory": "person-activity",
+ "sort_order": 423,
+ "added_in": "12.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true,
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F469-1F3FB-200D-1F9BD",
+ "non_qualified": null,
+ "image": "1f469-1f3fb-200d-1f9bd.png",
+ "sheet_x": 19,
+ "sheet_y": 29,
+ "added_in": "12.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1F469-1F3FC-200D-1F9BD",
+ "non_qualified": null,
+ "image": "1f469-1f3fc-200d-1f9bd.png",
+ "sheet_x": 19,
+ "sheet_y": 30,
+ "added_in": "12.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1F469-1F3FD-200D-1F9BD",
+ "non_qualified": null,
+ "image": "1f469-1f3fd-200d-1f9bd.png",
+ "sheet_x": 19,
+ "sheet_y": 31,
+ "added_in": "12.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1F469-1F3FE-200D-1F9BD",
+ "non_qualified": null,
+ "image": "1f469-1f3fe-200d-1f9bd.png",
+ "sheet_x": 19,
+ "sheet_y": 32,
+ "added_in": "12.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1F469-1F3FF-200D-1F9BD",
+ "non_qualified": null,
+ "image": "1f469-1f3ff-200d-1f9bd.png",
+ "sheet_x": 19,
+ "sheet_y": 33,
+ "added_in": "12.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ }
+ },
+ {
+ "name": "WOMAN HEALTH WORKER",
"unified": "1F469-200D-2695-FE0F",
"non_qualified": "1F469-200D-2695",
"docomo": null,
@@ -22416,90 +23473,85 @@
"softbank": null,
"google": null,
"image": "1f469-200d-2695-fe0f.png",
- "sheet_x": 20,
- "sheet_y": 30,
+ "sheet_x": 19,
+ "sheet_y": 34,
"short_name": "female-doctor",
"short_names": ["female-doctor"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 125,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "person-role",
+ "sort_order": 288,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": false,
"skin_variations": {
"1F3FB": {
"unified": "1F469-1F3FB-200D-2695-FE0F",
"non_qualified": "1F469-1F3FB-200D-2695",
"image": "1f469-1f3fb-200d-2695-fe0f.png",
- "sheet_x": 20,
- "sheet_y": 31,
- "added_in": "8.0",
+ "sheet_x": 19,
+ "sheet_y": 35,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FC": {
"unified": "1F469-1F3FC-200D-2695-FE0F",
"non_qualified": "1F469-1F3FC-200D-2695",
"image": "1f469-1f3fc-200d-2695-fe0f.png",
- "sheet_x": 20,
- "sheet_y": 32,
- "added_in": "8.0",
+ "sheet_x": 19,
+ "sheet_y": 36,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FD": {
"unified": "1F469-1F3FD-200D-2695-FE0F",
"non_qualified": "1F469-1F3FD-200D-2695",
"image": "1f469-1f3fd-200d-2695-fe0f.png",
- "sheet_x": 20,
- "sheet_y": 33,
- "added_in": "8.0",
+ "sheet_x": 19,
+ "sheet_y": 37,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FE": {
"unified": "1F469-1F3FE-200D-2695-FE0F",
"non_qualified": "1F469-1F3FE-200D-2695",
"image": "1f469-1f3fe-200d-2695-fe0f.png",
- "sheet_x": 20,
- "sheet_y": 34,
- "added_in": "8.0",
+ "sheet_x": 19,
+ "sheet_y": 38,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FF": {
"unified": "1F469-1F3FF-200D-2695-FE0F",
"non_qualified": "1F469-1F3FF-200D-2695",
"image": "1f469-1f3ff-200d-2695-fe0f.png",
- "sheet_x": 20,
- "sheet_y": 35,
- "added_in": "8.0",
+ "sheet_x": 19,
+ "sheet_y": 39,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
}
}
},
{
- "name": null,
+ "name": "WOMAN JUDGE",
"unified": "1F469-200D-2696-FE0F",
"non_qualified": "1F469-200D-2696",
"docomo": null,
@@ -22507,90 +23559,85 @@
"softbank": null,
"google": null,
"image": "1f469-200d-2696-fe0f.png",
- "sheet_x": 20,
- "sheet_y": 36,
+ "sheet_x": 19,
+ "sheet_y": 40,
"short_name": "female-judge",
"short_names": ["female-judge"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 131,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "person-role",
+ "sort_order": 297,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": false,
"skin_variations": {
"1F3FB": {
"unified": "1F469-1F3FB-200D-2696-FE0F",
"non_qualified": "1F469-1F3FB-200D-2696",
"image": "1f469-1f3fb-200d-2696-fe0f.png",
- "sheet_x": 20,
- "sheet_y": 37,
- "added_in": "8.0",
+ "sheet_x": 19,
+ "sheet_y": 41,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FC": {
"unified": "1F469-1F3FC-200D-2696-FE0F",
"non_qualified": "1F469-1F3FC-200D-2696",
"image": "1f469-1f3fc-200d-2696-fe0f.png",
- "sheet_x": 20,
- "sheet_y": 38,
- "added_in": "8.0",
+ "sheet_x": 19,
+ "sheet_y": 42,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FD": {
"unified": "1F469-1F3FD-200D-2696-FE0F",
"non_qualified": "1F469-1F3FD-200D-2696",
"image": "1f469-1f3fd-200d-2696-fe0f.png",
- "sheet_x": 20,
- "sheet_y": 39,
- "added_in": "8.0",
+ "sheet_x": 19,
+ "sheet_y": 43,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FE": {
"unified": "1F469-1F3FE-200D-2696-FE0F",
"non_qualified": "1F469-1F3FE-200D-2696",
"image": "1f469-1f3fe-200d-2696-fe0f.png",
- "sheet_x": 20,
- "sheet_y": 40,
- "added_in": "8.0",
+ "sheet_x": 19,
+ "sheet_y": 44,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FF": {
"unified": "1F469-1F3FF-200D-2696-FE0F",
"non_qualified": "1F469-1F3FF-200D-2696",
"image": "1f469-1f3ff-200d-2696-fe0f.png",
- "sheet_x": 20,
- "sheet_y": 41,
- "added_in": "8.0",
+ "sheet_x": 19,
+ "sheet_y": 45,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
}
}
},
{
- "name": null,
+ "name": "WOMAN PILOT",
"unified": "1F469-200D-2708-FE0F",
"non_qualified": "1F469-200D-2708",
"docomo": null,
@@ -22598,90 +23645,85 @@
"softbank": null,
"google": null,
"image": "1f469-200d-2708-fe0f.png",
- "sheet_x": 20,
- "sheet_y": 42,
+ "sheet_x": 19,
+ "sheet_y": 46,
"short_name": "female-pilot",
"short_names": ["female-pilot"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 151,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "person-role",
+ "sort_order": 327,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": false,
"skin_variations": {
"1F3FB": {
"unified": "1F469-1F3FB-200D-2708-FE0F",
"non_qualified": "1F469-1F3FB-200D-2708",
"image": "1f469-1f3fb-200d-2708-fe0f.png",
- "sheet_x": 20,
- "sheet_y": 43,
- "added_in": "8.0",
+ "sheet_x": 19,
+ "sheet_y": 47,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FC": {
"unified": "1F469-1F3FC-200D-2708-FE0F",
"non_qualified": "1F469-1F3FC-200D-2708",
"image": "1f469-1f3fc-200d-2708-fe0f.png",
- "sheet_x": 20,
- "sheet_y": 44,
- "added_in": "8.0",
+ "sheet_x": 19,
+ "sheet_y": 48,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FD": {
"unified": "1F469-1F3FD-200D-2708-FE0F",
"non_qualified": "1F469-1F3FD-200D-2708",
"image": "1f469-1f3fd-200d-2708-fe0f.png",
- "sheet_x": 20,
- "sheet_y": 45,
- "added_in": "8.0",
+ "sheet_x": 19,
+ "sheet_y": 49,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FE": {
"unified": "1F469-1F3FE-200D-2708-FE0F",
"non_qualified": "1F469-1F3FE-200D-2708",
"image": "1f469-1f3fe-200d-2708-fe0f.png",
- "sheet_x": 20,
- "sheet_y": 46,
- "added_in": "8.0",
+ "sheet_x": 19,
+ "sheet_y": 50,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FF": {
"unified": "1F469-1F3FF-200D-2708-FE0F",
"non_qualified": "1F469-1F3FF-200D-2708",
"image": "1f469-1f3ff-200d-2708-fe0f.png",
- "sheet_x": 20,
- "sheet_y": 47,
- "added_in": "8.0",
+ "sheet_x": 19,
+ "sheet_y": 51,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
}
}
},
{
- "name": null,
+ "name": "COUPLE WITH HEART: WOMAN, MAN",
"unified": "1F469-200D-2764-FE0F-200D-1F468",
"non_qualified": "1F469-200D-2764-200D-1F468",
"docomo": null,
@@ -22689,27468 +23731,38854 @@
"softbank": null,
"google": null,
"image": "1f469-200d-2764-fe0f-200d-1f468.png",
- "sheet_x": 20,
- "sheet_y": 48,
+ "sheet_x": 19,
+ "sheet_y": 52,
"short_name": "woman-heart-man",
"short_names": ["woman-heart-man"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 327,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "obsoletes": "1F491"
- },
- {
- "name": null,
- "unified": "1F469-200D-2764-FE0F-200D-1F469",
- "non_qualified": "1F469-200D-2764-200D-1F469",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f469-200d-2764-fe0f-200d-1f469.png",
- "sheet_x": 20,
- "sheet_y": 49,
- "short_name": "woman-heart-woman",
- "short_names": ["woman-heart-woman"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 329,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- {
- "name": null,
- "unified": "1F469-200D-2764-FE0F-200D-1F48B-200D-1F468",
- "non_qualified": "1F469-200D-2764-200D-1F48B-200D-1F468",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f469-200d-2764-fe0f-200d-1f48b-200d-1f468.png",
- "sheet_x": 20,
- "sheet_y": 50,
- "short_name": "woman-kiss-man",
- "short_names": ["woman-kiss-man"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 323,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "obsoletes": "1F48F"
- },
- {
- "name": null,
- "unified": "1F469-200D-2764-FE0F-200D-1F48B-200D-1F469",
- "non_qualified": "1F469-200D-2764-200D-1F48B-200D-1F469",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f469-200d-2764-fe0f-200d-1f48b-200d-1f469.png",
- "sheet_x": 20,
- "sheet_y": 51,
- "short_name": "woman-kiss-woman",
- "short_names": ["woman-kiss-woman"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 325,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- {
- "name": "WOMAN",
- "unified": "1F469",
- "non_qualified": null,
- "docomo": "E6F0",
- "au": "E4FA",
- "softbank": "E005",
- "google": "FE19E",
- "image": "1f469.png",
- "sheet_x": 20,
- "sheet_y": 52,
- "short_name": "woman",
- "short_names": ["woman"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 120,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "family",
+ "sort_order": 496,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": true,
"skin_variations": {
- "1F3FB": {
- "unified": "1F469-1F3FB",
- "non_qualified": null,
- "image": "1f469-1f3fb.png",
- "sheet_x": 21,
+ "1F3FB-1F3FB": {
+ "unified": "1F469-1F3FB-200D-2764-FE0F-200D-1F468-1F3FB",
+ "non_qualified": "1F469-1F3FB-200D-2764-200D-1F468-1F3FB",
+ "image": "1f469-1f3fb-200d-2764-fe0f-200d-1f468-1f3fb.png",
+ "sheet_x": 19,
+ "sheet_y": 53,
+ "added_in": "13.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FB-1F3FC": {
+ "unified": "1F469-1F3FB-200D-2764-FE0F-200D-1F468-1F3FC",
+ "non_qualified": "1F469-1F3FB-200D-2764-200D-1F468-1F3FC",
+ "image": "1f469-1f3fb-200d-2764-fe0f-200d-1f468-1f3fc.png",
+ "sheet_x": 19,
+ "sheet_y": 54,
+ "added_in": "13.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FB-1F3FD": {
+ "unified": "1F469-1F3FB-200D-2764-FE0F-200D-1F468-1F3FD",
+ "non_qualified": "1F469-1F3FB-200D-2764-200D-1F468-1F3FD",
+ "image": "1f469-1f3fb-200d-2764-fe0f-200d-1f468-1f3fd.png",
+ "sheet_x": 19,
+ "sheet_y": 55,
+ "added_in": "13.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FB-1F3FE": {
+ "unified": "1F469-1F3FB-200D-2764-FE0F-200D-1F468-1F3FE",
+ "non_qualified": "1F469-1F3FB-200D-2764-200D-1F468-1F3FE",
+ "image": "1f469-1f3fb-200d-2764-fe0f-200d-1f468-1f3fe.png",
+ "sheet_x": 19,
+ "sheet_y": 56,
+ "added_in": "13.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FB-1F3FF": {
+ "unified": "1F469-1F3FB-200D-2764-FE0F-200D-1F468-1F3FF",
+ "non_qualified": "1F469-1F3FB-200D-2764-200D-1F468-1F3FF",
+ "image": "1f469-1f3fb-200d-2764-fe0f-200d-1f468-1f3ff.png",
+ "sheet_x": 19,
+ "sheet_y": 57,
+ "added_in": "13.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC-1F3FB": {
+ "unified": "1F469-1F3FC-200D-2764-FE0F-200D-1F468-1F3FB",
+ "non_qualified": "1F469-1F3FC-200D-2764-200D-1F468-1F3FB",
+ "image": "1f469-1f3fc-200d-2764-fe0f-200d-1f468-1f3fb.png",
+ "sheet_x": 19,
+ "sheet_y": 58,
+ "added_in": "13.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC-1F3FC": {
+ "unified": "1F469-1F3FC-200D-2764-FE0F-200D-1F468-1F3FC",
+ "non_qualified": "1F469-1F3FC-200D-2764-200D-1F468-1F3FC",
+ "image": "1f469-1f3fc-200d-2764-fe0f-200d-1f468-1f3fc.png",
+ "sheet_x": 19,
+ "sheet_y": 59,
+ "added_in": "13.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC-1F3FD": {
+ "unified": "1F469-1F3FC-200D-2764-FE0F-200D-1F468-1F3FD",
+ "non_qualified": "1F469-1F3FC-200D-2764-200D-1F468-1F3FD",
+ "image": "1f469-1f3fc-200d-2764-fe0f-200d-1f468-1f3fd.png",
+ "sheet_x": 19,
+ "sheet_y": 60,
+ "added_in": "13.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC-1F3FE": {
+ "unified": "1F469-1F3FC-200D-2764-FE0F-200D-1F468-1F3FE",
+ "non_qualified": "1F469-1F3FC-200D-2764-200D-1F468-1F3FE",
+ "image": "1f469-1f3fc-200d-2764-fe0f-200d-1f468-1f3fe.png",
+ "sheet_x": 20,
"sheet_y": 0,
- "added_in": "8.0",
+ "added_in": "13.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
- "1F3FC": {
- "unified": "1F469-1F3FC",
- "non_qualified": null,
- "image": "1f469-1f3fc.png",
- "sheet_x": 21,
+ "1F3FC-1F3FF": {
+ "unified": "1F469-1F3FC-200D-2764-FE0F-200D-1F468-1F3FF",
+ "non_qualified": "1F469-1F3FC-200D-2764-200D-1F468-1F3FF",
+ "image": "1f469-1f3fc-200d-2764-fe0f-200d-1f468-1f3ff.png",
+ "sheet_x": 20,
"sheet_y": 1,
- "added_in": "8.0",
+ "added_in": "13.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
- "1F3FD": {
- "unified": "1F469-1F3FD",
- "non_qualified": null,
- "image": "1f469-1f3fd.png",
- "sheet_x": 21,
+ "1F3FD-1F3FB": {
+ "unified": "1F469-1F3FD-200D-2764-FE0F-200D-1F468-1F3FB",
+ "non_qualified": "1F469-1F3FD-200D-2764-200D-1F468-1F3FB",
+ "image": "1f469-1f3fd-200d-2764-fe0f-200d-1f468-1f3fb.png",
+ "sheet_x": 20,
"sheet_y": 2,
- "added_in": "8.0",
+ "added_in": "13.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
- "1F3FE": {
- "unified": "1F469-1F3FE",
- "non_qualified": null,
- "image": "1f469-1f3fe.png",
- "sheet_x": 21,
+ "1F3FD-1F3FC": {
+ "unified": "1F469-1F3FD-200D-2764-FE0F-200D-1F468-1F3FC",
+ "non_qualified": "1F469-1F3FD-200D-2764-200D-1F468-1F3FC",
+ "image": "1f469-1f3fd-200d-2764-fe0f-200d-1f468-1f3fc.png",
+ "sheet_x": 20,
"sheet_y": 3,
- "added_in": "8.0",
+ "added_in": "13.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
- "1F3FF": {
- "unified": "1F469-1F3FF",
- "non_qualified": null,
- "image": "1f469-1f3ff.png",
- "sheet_x": 21,
+ "1F3FD-1F3FD": {
+ "unified": "1F469-1F3FD-200D-2764-FE0F-200D-1F468-1F3FD",
+ "non_qualified": "1F469-1F3FD-200D-2764-200D-1F468-1F3FD",
+ "image": "1f469-1f3fd-200d-2764-fe0f-200d-1f468-1f3fd.png",
+ "sheet_x": 20,
"sheet_y": 4,
- "added_in": "8.0",
+ "added_in": "13.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- }
- },
- {
- "name": "FAMILY",
- "unified": "1F46A",
- "non_qualified": null,
- "docomo": null,
- "au": "E501",
- "softbank": null,
- "google": "FE19F",
- "image": "1f46a.png",
- "sheet_x": 21,
- "sheet_y": 5,
- "short_name": "family",
- "short_names": ["family", "man-woman-boy"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 330,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": true,
- "obsoleted_by": "1F468-200D-1F469-200D-1F466"
- },
- {
- "name": "MAN AND WOMAN HOLDING HANDS",
- "unified": "1F46B",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": "E428",
- "google": "FE1A0",
- "image": "1f46b.png",
- "sheet_x": 21,
- "sheet_y": 6,
- "short_name": "couple",
- "short_names": ["couple", "man_and_woman_holding_hands"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 319,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- {
- "name": "TWO MEN HOLDING HANDS",
- "unified": "1F46C",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f46c.png",
- "sheet_x": 21,
- "sheet_y": 7,
- "short_name": "two_men_holding_hands",
- "short_names": ["two_men_holding_hands"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 320,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- {
- "name": "TWO WOMEN HOLDING HANDS",
- "unified": "1F46D",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f46d.png",
- "sheet_x": 21,
- "sheet_y": 8,
- "short_name": "two_women_holding_hands",
- "short_names": ["two_women_holding_hands"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 321,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- {
- "name": null,
- "unified": "1F46E-200D-2640-FE0F",
- "non_qualified": "1F46E-200D-2640",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f46e-200d-2640-fe0f.png",
- "sheet_x": 21,
- "sheet_y": 9,
- "short_name": "female-police-officer",
- "short_names": ["female-police-officer"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 158,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F46E-1F3FB-200D-2640-FE0F",
- "non_qualified": "1F46E-1F3FB-200D-2640",
- "image": "1f46e-1f3fb-200d-2640-fe0f.png",
- "sheet_x": 21,
+ "has_img_facebook": true
+ },
+ "1F3FD-1F3FE": {
+ "unified": "1F469-1F3FD-200D-2764-FE0F-200D-1F468-1F3FE",
+ "non_qualified": "1F469-1F3FD-200D-2764-200D-1F468-1F3FE",
+ "image": "1f469-1f3fd-200d-2764-fe0f-200d-1f468-1f3fe.png",
+ "sheet_x": 20,
+ "sheet_y": 5,
+ "added_in": "13.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD-1F3FF": {
+ "unified": "1F469-1F3FD-200D-2764-FE0F-200D-1F468-1F3FF",
+ "non_qualified": "1F469-1F3FD-200D-2764-200D-1F468-1F3FF",
+ "image": "1f469-1f3fd-200d-2764-fe0f-200d-1f468-1f3ff.png",
+ "sheet_x": 20,
+ "sheet_y": 6,
+ "added_in": "13.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE-1F3FB": {
+ "unified": "1F469-1F3FE-200D-2764-FE0F-200D-1F468-1F3FB",
+ "non_qualified": "1F469-1F3FE-200D-2764-200D-1F468-1F3FB",
+ "image": "1f469-1f3fe-200d-2764-fe0f-200d-1f468-1f3fb.png",
+ "sheet_x": 20,
+ "sheet_y": 7,
+ "added_in": "13.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE-1F3FC": {
+ "unified": "1F469-1F3FE-200D-2764-FE0F-200D-1F468-1F3FC",
+ "non_qualified": "1F469-1F3FE-200D-2764-200D-1F468-1F3FC",
+ "image": "1f469-1f3fe-200d-2764-fe0f-200d-1f468-1f3fc.png",
+ "sheet_x": 20,
+ "sheet_y": 8,
+ "added_in": "13.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE-1F3FD": {
+ "unified": "1F469-1F3FE-200D-2764-FE0F-200D-1F468-1F3FD",
+ "non_qualified": "1F469-1F3FE-200D-2764-200D-1F468-1F3FD",
+ "image": "1f469-1f3fe-200d-2764-fe0f-200d-1f468-1f3fd.png",
+ "sheet_x": 20,
+ "sheet_y": 9,
+ "added_in": "13.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE-1F3FE": {
+ "unified": "1F469-1F3FE-200D-2764-FE0F-200D-1F468-1F3FE",
+ "non_qualified": "1F469-1F3FE-200D-2764-200D-1F468-1F3FE",
+ "image": "1f469-1f3fe-200d-2764-fe0f-200d-1f468-1f3fe.png",
+ "sheet_x": 20,
"sheet_y": 10,
- "added_in": "8.0",
+ "added_in": "13.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
- "1F3FC": {
- "unified": "1F46E-1F3FC-200D-2640-FE0F",
- "non_qualified": "1F46E-1F3FC-200D-2640",
- "image": "1f46e-1f3fc-200d-2640-fe0f.png",
- "sheet_x": 21,
+ "1F3FE-1F3FF": {
+ "unified": "1F469-1F3FE-200D-2764-FE0F-200D-1F468-1F3FF",
+ "non_qualified": "1F469-1F3FE-200D-2764-200D-1F468-1F3FF",
+ "image": "1f469-1f3fe-200d-2764-fe0f-200d-1f468-1f3ff.png",
+ "sheet_x": 20,
"sheet_y": 11,
- "added_in": "8.0",
+ "added_in": "13.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
- "1F3FD": {
- "unified": "1F46E-1F3FD-200D-2640-FE0F",
- "non_qualified": "1F46E-1F3FD-200D-2640",
- "image": "1f46e-1f3fd-200d-2640-fe0f.png",
- "sheet_x": 21,
+ "1F3FF-1F3FB": {
+ "unified": "1F469-1F3FF-200D-2764-FE0F-200D-1F468-1F3FB",
+ "non_qualified": "1F469-1F3FF-200D-2764-200D-1F468-1F3FB",
+ "image": "1f469-1f3ff-200d-2764-fe0f-200d-1f468-1f3fb.png",
+ "sheet_x": 20,
"sheet_y": 12,
- "added_in": "8.0",
+ "added_in": "13.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
- "1F3FE": {
- "unified": "1F46E-1F3FE-200D-2640-FE0F",
- "non_qualified": "1F46E-1F3FE-200D-2640",
- "image": "1f46e-1f3fe-200d-2640-fe0f.png",
- "sheet_x": 21,
+ "1F3FF-1F3FC": {
+ "unified": "1F469-1F3FF-200D-2764-FE0F-200D-1F468-1F3FC",
+ "non_qualified": "1F469-1F3FF-200D-2764-200D-1F468-1F3FC",
+ "image": "1f469-1f3ff-200d-2764-fe0f-200d-1f468-1f3fc.png",
+ "sheet_x": 20,
"sheet_y": 13,
- "added_in": "8.0",
+ "added_in": "13.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
- "1F3FF": {
- "unified": "1F46E-1F3FF-200D-2640-FE0F",
- "non_qualified": "1F46E-1F3FF-200D-2640",
- "image": "1f46e-1f3ff-200d-2640-fe0f.png",
- "sheet_x": 21,
+ "1F3FF-1F3FD": {
+ "unified": "1F469-1F3FF-200D-2764-FE0F-200D-1F468-1F3FD",
+ "non_qualified": "1F469-1F3FF-200D-2764-200D-1F468-1F3FD",
+ "image": "1f469-1f3ff-200d-2764-fe0f-200d-1f468-1f3fd.png",
+ "sheet_x": 20,
"sheet_y": 14,
- "added_in": "8.0",
+ "added_in": "13.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
+ },
+ "1F3FF-1F3FE": {
+ "unified": "1F469-1F3FF-200D-2764-FE0F-200D-1F468-1F3FE",
+ "non_qualified": "1F469-1F3FF-200D-2764-200D-1F468-1F3FE",
+ "image": "1f469-1f3ff-200d-2764-fe0f-200d-1f468-1f3fe.png",
+ "sheet_x": 20,
+ "sheet_y": 15,
+ "added_in": "13.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF-1F3FF": {
+ "unified": "1F469-1F3FF-200D-2764-FE0F-200D-1F468-1F3FF",
+ "non_qualified": "1F469-1F3FF-200D-2764-200D-1F468-1F3FF",
+ "image": "1f469-1f3ff-200d-2764-fe0f-200d-1f468-1f3ff.png",
+ "sheet_x": 20,
+ "sheet_y": 16,
+ "added_in": "13.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
}
}
},
{
- "name": null,
- "unified": "1F46E-200D-2642-FE0F",
- "non_qualified": "1F46E-200D-2642",
+ "name": "COUPLE WITH HEART: WOMAN, WOMAN",
+ "unified": "1F469-200D-2764-FE0F-200D-1F469",
+ "non_qualified": "1F469-200D-2764-200D-1F469",
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f46e-200d-2642-fe0f.png",
- "sheet_x": 21,
- "sheet_y": 15,
- "short_name": "male-police-officer",
- "short_names": ["male-police-officer"],
+ "image": "1f469-200d-2764-fe0f-200d-1f469.png",
+ "sheet_x": 20,
+ "sheet_y": 17,
+ "short_name": "woman-heart-woman",
+ "short_names": ["woman-heart-woman"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 157,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "family",
+ "sort_order": 498,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": false,
"skin_variations": {
- "1F3FB": {
- "unified": "1F46E-1F3FB-200D-2642-FE0F",
- "non_qualified": "1F46E-1F3FB-200D-2642",
- "image": "1f46e-1f3fb-200d-2642-fe0f.png",
- "sheet_x": 21,
- "sheet_y": 16,
- "added_in": "8.0",
+ "1F3FB-1F3FB": {
+ "unified": "1F469-1F3FB-200D-2764-FE0F-200D-1F469-1F3FB",
+ "non_qualified": "1F469-1F3FB-200D-2764-200D-1F469-1F3FB",
+ "image": "1f469-1f3fb-200d-2764-fe0f-200d-1f469-1f3fb.png",
+ "sheet_x": 20,
+ "sheet_y": 18,
+ "added_in": "13.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
- "1F3FC": {
- "unified": "1F46E-1F3FC-200D-2642-FE0F",
- "non_qualified": "1F46E-1F3FC-200D-2642",
- "image": "1f46e-1f3fc-200d-2642-fe0f.png",
- "sheet_x": 21,
- "sheet_y": 17,
- "added_in": "8.0",
+ "1F3FB-1F3FC": {
+ "unified": "1F469-1F3FB-200D-2764-FE0F-200D-1F469-1F3FC",
+ "non_qualified": "1F469-1F3FB-200D-2764-200D-1F469-1F3FC",
+ "image": "1f469-1f3fb-200d-2764-fe0f-200d-1f469-1f3fc.png",
+ "sheet_x": 20,
+ "sheet_y": 19,
+ "added_in": "13.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
- "1F3FD": {
- "unified": "1F46E-1F3FD-200D-2642-FE0F",
- "non_qualified": "1F46E-1F3FD-200D-2642",
- "image": "1f46e-1f3fd-200d-2642-fe0f.png",
- "sheet_x": 21,
- "sheet_y": 18,
- "added_in": "8.0",
+ "1F3FB-1F3FD": {
+ "unified": "1F469-1F3FB-200D-2764-FE0F-200D-1F469-1F3FD",
+ "non_qualified": "1F469-1F3FB-200D-2764-200D-1F469-1F3FD",
+ "image": "1f469-1f3fb-200d-2764-fe0f-200d-1f469-1f3fd.png",
+ "sheet_x": 20,
+ "sheet_y": 20,
+ "added_in": "13.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
- "1F3FE": {
- "unified": "1F46E-1F3FE-200D-2642-FE0F",
- "non_qualified": "1F46E-1F3FE-200D-2642",
- "image": "1f46e-1f3fe-200d-2642-fe0f.png",
- "sheet_x": 21,
- "sheet_y": 19,
- "added_in": "8.0",
+ "1F3FB-1F3FE": {
+ "unified": "1F469-1F3FB-200D-2764-FE0F-200D-1F469-1F3FE",
+ "non_qualified": "1F469-1F3FB-200D-2764-200D-1F469-1F3FE",
+ "image": "1f469-1f3fb-200d-2764-fe0f-200d-1f469-1f3fe.png",
+ "sheet_x": 20,
+ "sheet_y": 21,
+ "added_in": "13.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
- "1F3FF": {
- "unified": "1F46E-1F3FF-200D-2642-FE0F",
- "non_qualified": "1F46E-1F3FF-200D-2642",
- "image": "1f46e-1f3ff-200d-2642-fe0f.png",
- "sheet_x": 21,
- "sheet_y": 20,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- },
- "obsoletes": "1F46E"
- },
- {
- "name": "POLICE OFFICER",
- "unified": "1F46E",
- "non_qualified": null,
- "docomo": null,
- "au": "E5DD",
- "softbank": "E152",
- "google": "FE1A1",
- "image": "1f46e.png",
- "sheet_x": 21,
- "sheet_y": 21,
- "short_name": "cop",
- "short_names": ["cop"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 156,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": true,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F46E-1F3FB",
- "non_qualified": null,
- "image": "1f46e-1f3fb.png",
- "sheet_x": 21,
+ "1F3FB-1F3FF": {
+ "unified": "1F469-1F3FB-200D-2764-FE0F-200D-1F469-1F3FF",
+ "non_qualified": "1F469-1F3FB-200D-2764-200D-1F469-1F3FF",
+ "image": "1f469-1f3fb-200d-2764-fe0f-200d-1f469-1f3ff.png",
+ "sheet_x": 20,
"sheet_y": 22,
- "added_in": "8.0",
+ "added_in": "13.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": true
+ "has_img_facebook": true
},
- "1F3FC": {
- "unified": "1F46E-1F3FC",
- "non_qualified": null,
- "image": "1f46e-1f3fc.png",
- "sheet_x": 21,
+ "1F3FC-1F3FB": {
+ "unified": "1F469-1F3FC-200D-2764-FE0F-200D-1F469-1F3FB",
+ "non_qualified": "1F469-1F3FC-200D-2764-200D-1F469-1F3FB",
+ "image": "1f469-1f3fc-200d-2764-fe0f-200d-1f469-1f3fb.png",
+ "sheet_x": 20,
"sheet_y": 23,
- "added_in": "8.0",
+ "added_in": "13.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": true
+ "has_img_facebook": true
},
- "1F3FD": {
- "unified": "1F46E-1F3FD",
- "non_qualified": null,
- "image": "1f46e-1f3fd.png",
- "sheet_x": 21,
+ "1F3FC-1F3FC": {
+ "unified": "1F469-1F3FC-200D-2764-FE0F-200D-1F469-1F3FC",
+ "non_qualified": "1F469-1F3FC-200D-2764-200D-1F469-1F3FC",
+ "image": "1f469-1f3fc-200d-2764-fe0f-200d-1f469-1f3fc.png",
+ "sheet_x": 20,
"sheet_y": 24,
- "added_in": "8.0",
+ "added_in": "13.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": true
+ "has_img_facebook": true
},
- "1F3FE": {
- "unified": "1F46E-1F3FE",
- "non_qualified": null,
- "image": "1f46e-1f3fe.png",
- "sheet_x": 21,
+ "1F3FC-1F3FD": {
+ "unified": "1F469-1F3FC-200D-2764-FE0F-200D-1F469-1F3FD",
+ "non_qualified": "1F469-1F3FC-200D-2764-200D-1F469-1F3FD",
+ "image": "1f469-1f3fc-200d-2764-fe0f-200d-1f469-1f3fd.png",
+ "sheet_x": 20,
"sheet_y": 25,
- "added_in": "8.0",
+ "added_in": "13.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": true
+ "has_img_facebook": true
},
- "1F3FF": {
- "unified": "1F46E-1F3FF",
- "non_qualified": null,
- "image": "1f46e-1f3ff.png",
- "sheet_x": 21,
+ "1F3FC-1F3FE": {
+ "unified": "1F469-1F3FC-200D-2764-FE0F-200D-1F469-1F3FE",
+ "non_qualified": "1F469-1F3FC-200D-2764-200D-1F469-1F3FE",
+ "image": "1f469-1f3fc-200d-2764-fe0f-200d-1f469-1f3fe.png",
+ "sheet_x": 20,
"sheet_y": 26,
- "added_in": "8.0",
+ "added_in": "13.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": true
- }
- },
- "obsoleted_by": "1F46E-200D-2642-FE0F"
- },
- {
- "name": null,
- "unified": "1F46F-200D-2640-FE0F",
- "non_qualified": "1F46F-200D-2640",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f46f-200d-2640-fe0f.png",
- "sheet_x": 21,
- "sheet_y": 27,
- "short_name": "woman-with-bunny-ears-partying",
- "short_names": ["woman-with-bunny-ears-partying"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 258,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "obsoletes": "1F46F"
- },
- {
- "name": null,
- "unified": "1F46F-200D-2642-FE0F",
- "non_qualified": "1F46F-200D-2642",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f46f-200d-2642-fe0f.png",
- "sheet_x": 21,
- "sheet_y": 28,
- "short_name": "man-with-bunny-ears-partying",
- "short_names": ["man-with-bunny-ears-partying"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 257,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- {
- "name": "WOMAN WITH BUNNY EARS",
- "unified": "1F46F",
- "non_qualified": null,
- "docomo": null,
- "au": "EADB",
- "softbank": "E429",
- "google": "FE1A2",
- "image": "1f46f.png",
- "sheet_x": 21,
- "sheet_y": 29,
- "short_name": "dancers",
- "short_names": ["dancers"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 256,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": true,
- "obsoleted_by": "1F46F-200D-2640-FE0F"
- },
- {
- "name": "BRIDE WITH VEIL",
- "unified": "1F470",
- "non_qualified": null,
- "docomo": null,
- "au": "EAE9",
- "softbank": null,
- "google": "FE1A3",
- "image": "1f470.png",
- "sheet_x": 21,
- "sheet_y": 30,
- "short_name": "bride_with_veil",
- "short_names": ["bride_with_veil"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 188,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F470-1F3FB",
- "non_qualified": null,
- "image": "1f470-1f3fb.png",
- "sheet_x": 21,
+ "has_img_facebook": true
+ },
+ "1F3FC-1F3FF": {
+ "unified": "1F469-1F3FC-200D-2764-FE0F-200D-1F469-1F3FF",
+ "non_qualified": "1F469-1F3FC-200D-2764-200D-1F469-1F3FF",
+ "image": "1f469-1f3fc-200d-2764-fe0f-200d-1f469-1f3ff.png",
+ "sheet_x": 20,
+ "sheet_y": 27,
+ "added_in": "13.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD-1F3FB": {
+ "unified": "1F469-1F3FD-200D-2764-FE0F-200D-1F469-1F3FB",
+ "non_qualified": "1F469-1F3FD-200D-2764-200D-1F469-1F3FB",
+ "image": "1f469-1f3fd-200d-2764-fe0f-200d-1f469-1f3fb.png",
+ "sheet_x": 20,
+ "sheet_y": 28,
+ "added_in": "13.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD-1F3FC": {
+ "unified": "1F469-1F3FD-200D-2764-FE0F-200D-1F469-1F3FC",
+ "non_qualified": "1F469-1F3FD-200D-2764-200D-1F469-1F3FC",
+ "image": "1f469-1f3fd-200d-2764-fe0f-200d-1f469-1f3fc.png",
+ "sheet_x": 20,
+ "sheet_y": 29,
+ "added_in": "13.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD-1F3FD": {
+ "unified": "1F469-1F3FD-200D-2764-FE0F-200D-1F469-1F3FD",
+ "non_qualified": "1F469-1F3FD-200D-2764-200D-1F469-1F3FD",
+ "image": "1f469-1f3fd-200d-2764-fe0f-200d-1f469-1f3fd.png",
+ "sheet_x": 20,
+ "sheet_y": 30,
+ "added_in": "13.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD-1F3FE": {
+ "unified": "1F469-1F3FD-200D-2764-FE0F-200D-1F469-1F3FE",
+ "non_qualified": "1F469-1F3FD-200D-2764-200D-1F469-1F3FE",
+ "image": "1f469-1f3fd-200d-2764-fe0f-200d-1f469-1f3fe.png",
+ "sheet_x": 20,
"sheet_y": 31,
- "added_in": "8.0",
+ "added_in": "13.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
- "1F3FC": {
- "unified": "1F470-1F3FC",
- "non_qualified": null,
- "image": "1f470-1f3fc.png",
- "sheet_x": 21,
+ "1F3FD-1F3FF": {
+ "unified": "1F469-1F3FD-200D-2764-FE0F-200D-1F469-1F3FF",
+ "non_qualified": "1F469-1F3FD-200D-2764-200D-1F469-1F3FF",
+ "image": "1f469-1f3fd-200d-2764-fe0f-200d-1f469-1f3ff.png",
+ "sheet_x": 20,
"sheet_y": 32,
- "added_in": "8.0",
+ "added_in": "13.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
- "1F3FD": {
- "unified": "1F470-1F3FD",
- "non_qualified": null,
- "image": "1f470-1f3fd.png",
- "sheet_x": 21,
+ "1F3FE-1F3FB": {
+ "unified": "1F469-1F3FE-200D-2764-FE0F-200D-1F469-1F3FB",
+ "non_qualified": "1F469-1F3FE-200D-2764-200D-1F469-1F3FB",
+ "image": "1f469-1f3fe-200d-2764-fe0f-200d-1f469-1f3fb.png",
+ "sheet_x": 20,
"sheet_y": 33,
- "added_in": "8.0",
+ "added_in": "13.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
- "1F3FE": {
- "unified": "1F470-1F3FE",
- "non_qualified": null,
- "image": "1f470-1f3fe.png",
- "sheet_x": 21,
+ "1F3FE-1F3FC": {
+ "unified": "1F469-1F3FE-200D-2764-FE0F-200D-1F469-1F3FC",
+ "non_qualified": "1F469-1F3FE-200D-2764-200D-1F469-1F3FC",
+ "image": "1f469-1f3fe-200d-2764-fe0f-200d-1f469-1f3fc.png",
+ "sheet_x": 20,
"sheet_y": 34,
- "added_in": "8.0",
+ "added_in": "13.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
- "1F3FF": {
- "unified": "1F470-1F3FF",
- "non_qualified": null,
- "image": "1f470-1f3ff.png",
- "sheet_x": 21,
+ "1F3FE-1F3FD": {
+ "unified": "1F469-1F3FE-200D-2764-FE0F-200D-1F469-1F3FD",
+ "non_qualified": "1F469-1F3FE-200D-2764-200D-1F469-1F3FD",
+ "image": "1f469-1f3fe-200d-2764-fe0f-200d-1f469-1f3fd.png",
+ "sheet_x": 20,
"sheet_y": 35,
- "added_in": "8.0",
+ "added_in": "13.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- }
- },
- {
- "name": null,
- "unified": "1F471-200D-2640-FE0F",
- "non_qualified": "1F471-200D-2640",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f471-200d-2640-fe0f.png",
- "sheet_x": 21,
- "sheet_y": 36,
- "short_name": "blond-haired-woman",
- "short_names": ["blond-haired-woman"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 178,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F471-1F3FB-200D-2640-FE0F",
- "non_qualified": "1F471-1F3FB-200D-2640",
- "image": "1f471-1f3fb-200d-2640-fe0f.png",
- "sheet_x": 21,
+ "has_img_facebook": true
+ },
+ "1F3FE-1F3FE": {
+ "unified": "1F469-1F3FE-200D-2764-FE0F-200D-1F469-1F3FE",
+ "non_qualified": "1F469-1F3FE-200D-2764-200D-1F469-1F3FE",
+ "image": "1f469-1f3fe-200d-2764-fe0f-200d-1f469-1f3fe.png",
+ "sheet_x": 20,
+ "sheet_y": 36,
+ "added_in": "13.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE-1F3FF": {
+ "unified": "1F469-1F3FE-200D-2764-FE0F-200D-1F469-1F3FF",
+ "non_qualified": "1F469-1F3FE-200D-2764-200D-1F469-1F3FF",
+ "image": "1f469-1f3fe-200d-2764-fe0f-200d-1f469-1f3ff.png",
+ "sheet_x": 20,
"sheet_y": 37,
- "added_in": "8.0",
+ "added_in": "13.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
- "1F3FC": {
- "unified": "1F471-1F3FC-200D-2640-FE0F",
- "non_qualified": "1F471-1F3FC-200D-2640",
- "image": "1f471-1f3fc-200d-2640-fe0f.png",
- "sheet_x": 21,
+ "1F3FF-1F3FB": {
+ "unified": "1F469-1F3FF-200D-2764-FE0F-200D-1F469-1F3FB",
+ "non_qualified": "1F469-1F3FF-200D-2764-200D-1F469-1F3FB",
+ "image": "1f469-1f3ff-200d-2764-fe0f-200d-1f469-1f3fb.png",
+ "sheet_x": 20,
"sheet_y": 38,
- "added_in": "8.0",
+ "added_in": "13.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
- "1F3FD": {
- "unified": "1F471-1F3FD-200D-2640-FE0F",
- "non_qualified": "1F471-1F3FD-200D-2640",
- "image": "1f471-1f3fd-200d-2640-fe0f.png",
- "sheet_x": 21,
+ "1F3FF-1F3FC": {
+ "unified": "1F469-1F3FF-200D-2764-FE0F-200D-1F469-1F3FC",
+ "non_qualified": "1F469-1F3FF-200D-2764-200D-1F469-1F3FC",
+ "image": "1f469-1f3ff-200d-2764-fe0f-200d-1f469-1f3fc.png",
+ "sheet_x": 20,
"sheet_y": 39,
- "added_in": "8.0",
+ "added_in": "13.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
- "1F3FE": {
- "unified": "1F471-1F3FE-200D-2640-FE0F",
- "non_qualified": "1F471-1F3FE-200D-2640",
- "image": "1f471-1f3fe-200d-2640-fe0f.png",
- "sheet_x": 21,
+ "1F3FF-1F3FD": {
+ "unified": "1F469-1F3FF-200D-2764-FE0F-200D-1F469-1F3FD",
+ "non_qualified": "1F469-1F3FF-200D-2764-200D-1F469-1F3FD",
+ "image": "1f469-1f3ff-200d-2764-fe0f-200d-1f469-1f3fd.png",
+ "sheet_x": 20,
"sheet_y": 40,
- "added_in": "8.0",
+ "added_in": "13.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
- "1F3FF": {
- "unified": "1F471-1F3FF-200D-2640-FE0F",
- "non_qualified": "1F471-1F3FF-200D-2640",
- "image": "1f471-1f3ff-200d-2640-fe0f.png",
- "sheet_x": 21,
+ "1F3FF-1F3FE": {
+ "unified": "1F469-1F3FF-200D-2764-FE0F-200D-1F469-1F3FE",
+ "non_qualified": "1F469-1F3FF-200D-2764-200D-1F469-1F3FE",
+ "image": "1f469-1f3ff-200d-2764-fe0f-200d-1f469-1f3fe.png",
+ "sheet_x": 20,
"sheet_y": 41,
- "added_in": "8.0",
+ "added_in": "13.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF-1F3FF": {
+ "unified": "1F469-1F3FF-200D-2764-FE0F-200D-1F469-1F3FF",
+ "non_qualified": "1F469-1F3FF-200D-2764-200D-1F469-1F3FF",
+ "image": "1f469-1f3ff-200d-2764-fe0f-200d-1f469-1f3ff.png",
+ "sheet_x": 20,
+ "sheet_y": 42,
+ "added_in": "13.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
}
}
},
{
- "name": null,
- "unified": "1F471-200D-2642-FE0F",
- "non_qualified": "1F471-200D-2642",
+ "name": "KISS: WOMAN, MAN",
+ "unified": "1F469-200D-2764-FE0F-200D-1F48B-200D-1F468",
+ "non_qualified": "1F469-200D-2764-200D-1F48B-200D-1F468",
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f471-200d-2642-fe0f.png",
- "sheet_x": 21,
- "sheet_y": 42,
- "short_name": "blond-haired-man",
- "short_names": ["blond-haired-man"],
+ "image": "1f469-200d-2764-fe0f-200d-1f48b-200d-1f468.png",
+ "sheet_x": 20,
+ "sheet_y": 43,
+ "short_name": "woman-kiss-man",
+ "short_names": ["woman-kiss-man"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 177,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "family",
+ "sort_order": 492,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": false,
"skin_variations": {
- "1F3FB": {
- "unified": "1F471-1F3FB-200D-2642-FE0F",
- "non_qualified": "1F471-1F3FB-200D-2642",
- "image": "1f471-1f3fb-200d-2642-fe0f.png",
- "sheet_x": 21,
- "sheet_y": 43,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F471-1F3FC-200D-2642-FE0F",
- "non_qualified": "1F471-1F3FC-200D-2642",
- "image": "1f471-1f3fc-200d-2642-fe0f.png",
- "sheet_x": 21,
+ "1F3FB-1F3FB": {
+ "unified": "1F469-1F3FB-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FB",
+ "non_qualified": "1F469-1F3FB-200D-2764-200D-1F48B-200D-1F468-1F3FB",
+ "image": "1f469-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fb.png",
+ "sheet_x": 20,
"sheet_y": 44,
- "added_in": "8.0",
+ "added_in": "13.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
- "1F3FD": {
- "unified": "1F471-1F3FD-200D-2642-FE0F",
- "non_qualified": "1F471-1F3FD-200D-2642",
- "image": "1f471-1f3fd-200d-2642-fe0f.png",
- "sheet_x": 21,
+ "1F3FB-1F3FC": {
+ "unified": "1F469-1F3FB-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FC",
+ "non_qualified": "1F469-1F3FB-200D-2764-200D-1F48B-200D-1F468-1F3FC",
+ "image": "1f469-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fc.png",
+ "sheet_x": 20,
"sheet_y": 45,
- "added_in": "8.0",
+ "added_in": "13.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
- "1F3FE": {
- "unified": "1F471-1F3FE-200D-2642-FE0F",
- "non_qualified": "1F471-1F3FE-200D-2642",
- "image": "1f471-1f3fe-200d-2642-fe0f.png",
- "sheet_x": 21,
+ "1F3FB-1F3FD": {
+ "unified": "1F469-1F3FB-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FD",
+ "non_qualified": "1F469-1F3FB-200D-2764-200D-1F48B-200D-1F468-1F3FD",
+ "image": "1f469-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fd.png",
+ "sheet_x": 20,
"sheet_y": 46,
- "added_in": "8.0",
+ "added_in": "13.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
- "1F3FF": {
- "unified": "1F471-1F3FF-200D-2642-FE0F",
- "non_qualified": "1F471-1F3FF-200D-2642",
- "image": "1f471-1f3ff-200d-2642-fe0f.png",
- "sheet_x": 21,
+ "1F3FB-1F3FE": {
+ "unified": "1F469-1F3FB-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FE",
+ "non_qualified": "1F469-1F3FB-200D-2764-200D-1F48B-200D-1F468-1F3FE",
+ "image": "1f469-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fe.png",
+ "sheet_x": 20,
"sheet_y": 47,
- "added_in": "8.0",
+ "added_in": "13.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- },
- "obsoletes": "1F471"
- },
- {
- "name": "PERSON WITH BLOND HAIR",
- "unified": "1F471",
- "non_qualified": null,
- "docomo": null,
- "au": "EB13",
- "softbank": "E515",
- "google": "FE1A4",
- "image": "1f471.png",
- "sheet_x": 21,
- "sheet_y": 48,
- "short_name": "person_with_blond_hair",
- "short_names": ["person_with_blond_hair"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 176,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": true,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F471-1F3FB",
- "non_qualified": null,
- "image": "1f471-1f3fb.png",
- "sheet_x": 21,
+ "has_img_facebook": true
+ },
+ "1F3FB-1F3FF": {
+ "unified": "1F469-1F3FB-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FF",
+ "non_qualified": "1F469-1F3FB-200D-2764-200D-1F48B-200D-1F468-1F3FF",
+ "image": "1f469-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3ff.png",
+ "sheet_x": 20,
+ "sheet_y": 48,
+ "added_in": "13.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC-1F3FB": {
+ "unified": "1F469-1F3FC-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FB",
+ "non_qualified": "1F469-1F3FC-200D-2764-200D-1F48B-200D-1F468-1F3FB",
+ "image": "1f469-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fb.png",
+ "sheet_x": 20,
"sheet_y": 49,
- "added_in": "8.0",
+ "added_in": "13.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": true
+ "has_img_facebook": true
},
- "1F3FC": {
- "unified": "1F471-1F3FC",
- "non_qualified": null,
- "image": "1f471-1f3fc.png",
- "sheet_x": 21,
+ "1F3FC-1F3FC": {
+ "unified": "1F469-1F3FC-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FC",
+ "non_qualified": "1F469-1F3FC-200D-2764-200D-1F48B-200D-1F468-1F3FC",
+ "image": "1f469-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fc.png",
+ "sheet_x": 20,
"sheet_y": 50,
- "added_in": "8.0",
+ "added_in": "13.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": true
+ "has_img_facebook": true
},
- "1F3FD": {
- "unified": "1F471-1F3FD",
- "non_qualified": null,
- "image": "1f471-1f3fd.png",
- "sheet_x": 21,
+ "1F3FC-1F3FD": {
+ "unified": "1F469-1F3FC-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FD",
+ "non_qualified": "1F469-1F3FC-200D-2764-200D-1F48B-200D-1F468-1F3FD",
+ "image": "1f469-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fd.png",
+ "sheet_x": 20,
"sheet_y": 51,
- "added_in": "8.0",
+ "added_in": "13.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": true
+ "has_img_facebook": true
},
- "1F3FE": {
- "unified": "1F471-1F3FE",
- "non_qualified": null,
- "image": "1f471-1f3fe.png",
- "sheet_x": 21,
+ "1F3FC-1F3FE": {
+ "unified": "1F469-1F3FC-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FE",
+ "non_qualified": "1F469-1F3FC-200D-2764-200D-1F48B-200D-1F468-1F3FE",
+ "image": "1f469-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fe.png",
+ "sheet_x": 20,
"sheet_y": 52,
- "added_in": "8.0",
+ "added_in": "13.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": true
+ "has_img_facebook": true
},
- "1F3FF": {
- "unified": "1F471-1F3FF",
- "non_qualified": null,
- "image": "1f471-1f3ff.png",
- "sheet_x": 22,
+ "1F3FC-1F3FF": {
+ "unified": "1F469-1F3FC-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FF",
+ "non_qualified": "1F469-1F3FC-200D-2764-200D-1F48B-200D-1F468-1F3FF",
+ "image": "1f469-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3ff.png",
+ "sheet_x": 20,
+ "sheet_y": 53,
+ "added_in": "13.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD-1F3FB": {
+ "unified": "1F469-1F3FD-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FB",
+ "non_qualified": "1F469-1F3FD-200D-2764-200D-1F48B-200D-1F468-1F3FB",
+ "image": "1f469-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fb.png",
+ "sheet_x": 20,
+ "sheet_y": 54,
+ "added_in": "13.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD-1F3FC": {
+ "unified": "1F469-1F3FD-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FC",
+ "non_qualified": "1F469-1F3FD-200D-2764-200D-1F48B-200D-1F468-1F3FC",
+ "image": "1f469-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fc.png",
+ "sheet_x": 20,
+ "sheet_y": 55,
+ "added_in": "13.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD-1F3FD": {
+ "unified": "1F469-1F3FD-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FD",
+ "non_qualified": "1F469-1F3FD-200D-2764-200D-1F48B-200D-1F468-1F3FD",
+ "image": "1f469-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fd.png",
+ "sheet_x": 20,
+ "sheet_y": 56,
+ "added_in": "13.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD-1F3FE": {
+ "unified": "1F469-1F3FD-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FE",
+ "non_qualified": "1F469-1F3FD-200D-2764-200D-1F48B-200D-1F468-1F3FE",
+ "image": "1f469-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fe.png",
+ "sheet_x": 20,
+ "sheet_y": 57,
+ "added_in": "13.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD-1F3FF": {
+ "unified": "1F469-1F3FD-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FF",
+ "non_qualified": "1F469-1F3FD-200D-2764-200D-1F48B-200D-1F468-1F3FF",
+ "image": "1f469-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3ff.png",
+ "sheet_x": 20,
+ "sheet_y": 58,
+ "added_in": "13.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE-1F3FB": {
+ "unified": "1F469-1F3FE-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FB",
+ "non_qualified": "1F469-1F3FE-200D-2764-200D-1F48B-200D-1F468-1F3FB",
+ "image": "1f469-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fb.png",
+ "sheet_x": 20,
+ "sheet_y": 59,
+ "added_in": "13.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE-1F3FC": {
+ "unified": "1F469-1F3FE-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FC",
+ "non_qualified": "1F469-1F3FE-200D-2764-200D-1F48B-200D-1F468-1F3FC",
+ "image": "1f469-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fc.png",
+ "sheet_x": 20,
+ "sheet_y": 60,
+ "added_in": "13.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE-1F3FD": {
+ "unified": "1F469-1F3FE-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FD",
+ "non_qualified": "1F469-1F3FE-200D-2764-200D-1F48B-200D-1F468-1F3FD",
+ "image": "1f469-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fd.png",
+ "sheet_x": 21,
"sheet_y": 0,
- "added_in": "8.0",
+ "added_in": "13.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": true
- }
- },
- "obsoleted_by": "1F471-200D-2642-FE0F"
- },
- {
- "name": "MAN WITH GUA PI MAO",
- "unified": "1F472",
- "non_qualified": null,
- "docomo": null,
- "au": "EB14",
- "softbank": "E516",
- "google": "FE1A5",
- "image": "1f472.png",
- "sheet_x": 22,
- "sheet_y": 1,
- "short_name": "man_with_gua_pi_mao",
- "short_names": ["man_with_gua_pi_mao"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 173,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F472-1F3FB",
- "non_qualified": null,
- "image": "1f472-1f3fb.png",
- "sheet_x": 22,
+ "has_img_facebook": true
+ },
+ "1F3FE-1F3FE": {
+ "unified": "1F469-1F3FE-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FE",
+ "non_qualified": "1F469-1F3FE-200D-2764-200D-1F48B-200D-1F468-1F3FE",
+ "image": "1f469-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fe.png",
+ "sheet_x": 21,
+ "sheet_y": 1,
+ "added_in": "13.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE-1F3FF": {
+ "unified": "1F469-1F3FE-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FF",
+ "non_qualified": "1F469-1F3FE-200D-2764-200D-1F48B-200D-1F468-1F3FF",
+ "image": "1f469-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3ff.png",
+ "sheet_x": 21,
"sheet_y": 2,
- "added_in": "8.0",
+ "added_in": "13.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
- "1F3FC": {
- "unified": "1F472-1F3FC",
- "non_qualified": null,
- "image": "1f472-1f3fc.png",
- "sheet_x": 22,
+ "1F3FF-1F3FB": {
+ "unified": "1F469-1F3FF-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FB",
+ "non_qualified": "1F469-1F3FF-200D-2764-200D-1F48B-200D-1F468-1F3FB",
+ "image": "1f469-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fb.png",
+ "sheet_x": 21,
"sheet_y": 3,
- "added_in": "8.0",
+ "added_in": "13.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
- "1F3FD": {
- "unified": "1F472-1F3FD",
- "non_qualified": null,
- "image": "1f472-1f3fd.png",
- "sheet_x": 22,
+ "1F3FF-1F3FC": {
+ "unified": "1F469-1F3FF-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FC",
+ "non_qualified": "1F469-1F3FF-200D-2764-200D-1F48B-200D-1F468-1F3FC",
+ "image": "1f469-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fc.png",
+ "sheet_x": 21,
"sheet_y": 4,
- "added_in": "8.0",
+ "added_in": "13.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
- "1F3FE": {
- "unified": "1F472-1F3FE",
- "non_qualified": null,
- "image": "1f472-1f3fe.png",
- "sheet_x": 22,
+ "1F3FF-1F3FD": {
+ "unified": "1F469-1F3FF-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FD",
+ "non_qualified": "1F469-1F3FF-200D-2764-200D-1F48B-200D-1F468-1F3FD",
+ "image": "1f469-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fd.png",
+ "sheet_x": 21,
"sheet_y": 5,
- "added_in": "8.0",
+ "added_in": "13.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
- "1F3FF": {
- "unified": "1F472-1F3FF",
- "non_qualified": null,
- "image": "1f472-1f3ff.png",
- "sheet_x": 22,
+ "1F3FF-1F3FE": {
+ "unified": "1F469-1F3FF-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FE",
+ "non_qualified": "1F469-1F3FF-200D-2764-200D-1F48B-200D-1F468-1F3FE",
+ "image": "1f469-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3fe.png",
+ "sheet_x": 21,
"sheet_y": 6,
- "added_in": "8.0",
+ "added_in": "13.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
+ },
+ "1F3FF-1F3FF": {
+ "unified": "1F469-1F3FF-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FF",
+ "non_qualified": "1F469-1F3FF-200D-2764-200D-1F48B-200D-1F468-1F3FF",
+ "image": "1f469-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f468-1f3ff.png",
+ "sheet_x": 21,
+ "sheet_y": 7,
+ "added_in": "13.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
}
}
},
{
- "name": null,
- "unified": "1F473-200D-2640-FE0F",
- "non_qualified": "1F473-200D-2640",
+ "name": "KISS: WOMAN, WOMAN",
+ "unified": "1F469-200D-2764-FE0F-200D-1F48B-200D-1F469",
+ "non_qualified": "1F469-200D-2764-200D-1F48B-200D-1F469",
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f473-200d-2640-fe0f.png",
- "sheet_x": 22,
- "sheet_y": 7,
- "short_name": "woman-wearing-turban",
- "short_names": ["woman-wearing-turban"],
+ "image": "1f469-200d-2764-fe0f-200d-1f48b-200d-1f469.png",
+ "sheet_x": 21,
+ "sheet_y": 8,
+ "short_name": "woman-kiss-woman",
+ "short_names": ["woman-kiss-woman"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 172,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "family",
+ "sort_order": 494,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": false,
"skin_variations": {
- "1F3FB": {
- "unified": "1F473-1F3FB-200D-2640-FE0F",
- "non_qualified": "1F473-1F3FB-200D-2640",
- "image": "1f473-1f3fb-200d-2640-fe0f.png",
- "sheet_x": 22,
- "sheet_y": 8,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F473-1F3FC-200D-2640-FE0F",
- "non_qualified": "1F473-1F3FC-200D-2640",
- "image": "1f473-1f3fc-200d-2640-fe0f.png",
- "sheet_x": 22,
+ "1F3FB-1F3FB": {
+ "unified": "1F469-1F3FB-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FB",
+ "non_qualified": "1F469-1F3FB-200D-2764-200D-1F48B-200D-1F469-1F3FB",
+ "image": "1f469-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fb.png",
+ "sheet_x": 21,
"sheet_y": 9,
- "added_in": "8.0",
+ "added_in": "13.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
- "1F3FD": {
- "unified": "1F473-1F3FD-200D-2640-FE0F",
- "non_qualified": "1F473-1F3FD-200D-2640",
- "image": "1f473-1f3fd-200d-2640-fe0f.png",
- "sheet_x": 22,
+ "1F3FB-1F3FC": {
+ "unified": "1F469-1F3FB-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FC",
+ "non_qualified": "1F469-1F3FB-200D-2764-200D-1F48B-200D-1F469-1F3FC",
+ "image": "1f469-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fc.png",
+ "sheet_x": 21,
"sheet_y": 10,
- "added_in": "8.0",
+ "added_in": "13.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
- "1F3FE": {
- "unified": "1F473-1F3FE-200D-2640-FE0F",
- "non_qualified": "1F473-1F3FE-200D-2640",
- "image": "1f473-1f3fe-200d-2640-fe0f.png",
- "sheet_x": 22,
+ "1F3FB-1F3FD": {
+ "unified": "1F469-1F3FB-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FD",
+ "non_qualified": "1F469-1F3FB-200D-2764-200D-1F48B-200D-1F469-1F3FD",
+ "image": "1f469-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fd.png",
+ "sheet_x": 21,
"sheet_y": 11,
- "added_in": "8.0",
+ "added_in": "13.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
- "1F3FF": {
- "unified": "1F473-1F3FF-200D-2640-FE0F",
- "non_qualified": "1F473-1F3FF-200D-2640",
- "image": "1f473-1f3ff-200d-2640-fe0f.png",
- "sheet_x": 22,
+ "1F3FB-1F3FE": {
+ "unified": "1F469-1F3FB-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FE",
+ "non_qualified": "1F469-1F3FB-200D-2764-200D-1F48B-200D-1F469-1F3FE",
+ "image": "1f469-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fe.png",
+ "sheet_x": 21,
"sheet_y": 12,
- "added_in": "8.0",
+ "added_in": "13.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- }
- },
- {
- "name": null,
- "unified": "1F473-200D-2642-FE0F",
- "non_qualified": "1F473-200D-2642",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f473-200d-2642-fe0f.png",
- "sheet_x": 22,
- "sheet_y": 13,
- "short_name": "man-wearing-turban",
- "short_names": ["man-wearing-turban"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 171,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F473-1F3FB-200D-2642-FE0F",
- "non_qualified": "1F473-1F3FB-200D-2642",
- "image": "1f473-1f3fb-200d-2642-fe0f.png",
- "sheet_x": 22,
+ "has_img_facebook": true
+ },
+ "1F3FB-1F3FF": {
+ "unified": "1F469-1F3FB-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FF",
+ "non_qualified": "1F469-1F3FB-200D-2764-200D-1F48B-200D-1F469-1F3FF",
+ "image": "1f469-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3ff.png",
+ "sheet_x": 21,
+ "sheet_y": 13,
+ "added_in": "13.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC-1F3FB": {
+ "unified": "1F469-1F3FC-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FB",
+ "non_qualified": "1F469-1F3FC-200D-2764-200D-1F48B-200D-1F469-1F3FB",
+ "image": "1f469-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fb.png",
+ "sheet_x": 21,
"sheet_y": 14,
- "added_in": "8.0",
+ "added_in": "13.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
- "1F3FC": {
- "unified": "1F473-1F3FC-200D-2642-FE0F",
- "non_qualified": "1F473-1F3FC-200D-2642",
- "image": "1f473-1f3fc-200d-2642-fe0f.png",
- "sheet_x": 22,
+ "1F3FC-1F3FC": {
+ "unified": "1F469-1F3FC-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FC",
+ "non_qualified": "1F469-1F3FC-200D-2764-200D-1F48B-200D-1F469-1F3FC",
+ "image": "1f469-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fc.png",
+ "sheet_x": 21,
"sheet_y": 15,
- "added_in": "8.0",
+ "added_in": "13.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
- "1F3FD": {
- "unified": "1F473-1F3FD-200D-2642-FE0F",
- "non_qualified": "1F473-1F3FD-200D-2642",
- "image": "1f473-1f3fd-200d-2642-fe0f.png",
- "sheet_x": 22,
+ "1F3FC-1F3FD": {
+ "unified": "1F469-1F3FC-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FD",
+ "non_qualified": "1F469-1F3FC-200D-2764-200D-1F48B-200D-1F469-1F3FD",
+ "image": "1f469-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fd.png",
+ "sheet_x": 21,
"sheet_y": 16,
- "added_in": "8.0",
+ "added_in": "13.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
- "1F3FE": {
- "unified": "1F473-1F3FE-200D-2642-FE0F",
- "non_qualified": "1F473-1F3FE-200D-2642",
- "image": "1f473-1f3fe-200d-2642-fe0f.png",
- "sheet_x": 22,
+ "1F3FC-1F3FE": {
+ "unified": "1F469-1F3FC-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FE",
+ "non_qualified": "1F469-1F3FC-200D-2764-200D-1F48B-200D-1F469-1F3FE",
+ "image": "1f469-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fe.png",
+ "sheet_x": 21,
"sheet_y": 17,
- "added_in": "8.0",
+ "added_in": "13.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
- "1F3FF": {
- "unified": "1F473-1F3FF-200D-2642-FE0F",
- "non_qualified": "1F473-1F3FF-200D-2642",
- "image": "1f473-1f3ff-200d-2642-fe0f.png",
- "sheet_x": 22,
+ "1F3FC-1F3FF": {
+ "unified": "1F469-1F3FC-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FF",
+ "non_qualified": "1F469-1F3FC-200D-2764-200D-1F48B-200D-1F469-1F3FF",
+ "image": "1f469-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3ff.png",
+ "sheet_x": 21,
"sheet_y": 18,
- "added_in": "8.0",
+ "added_in": "13.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- },
- "obsoletes": "1F473"
- },
- {
- "name": "MAN WITH TURBAN",
- "unified": "1F473",
- "non_qualified": null,
- "docomo": null,
- "au": "EB15",
- "softbank": "E517",
- "google": "FE1A6",
- "image": "1f473.png",
- "sheet_x": 22,
- "sheet_y": 19,
- "short_name": "man_with_turban",
- "short_names": ["man_with_turban"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 170,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": true,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F473-1F3FB",
- "non_qualified": null,
- "image": "1f473-1f3fb.png",
- "sheet_x": 22,
+ "has_img_facebook": true
+ },
+ "1F3FD-1F3FB": {
+ "unified": "1F469-1F3FD-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FB",
+ "non_qualified": "1F469-1F3FD-200D-2764-200D-1F48B-200D-1F469-1F3FB",
+ "image": "1f469-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fb.png",
+ "sheet_x": 21,
+ "sheet_y": 19,
+ "added_in": "13.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD-1F3FC": {
+ "unified": "1F469-1F3FD-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FC",
+ "non_qualified": "1F469-1F3FD-200D-2764-200D-1F48B-200D-1F469-1F3FC",
+ "image": "1f469-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fc.png",
+ "sheet_x": 21,
"sheet_y": 20,
- "added_in": "8.0",
+ "added_in": "13.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": true
+ "has_img_facebook": true
},
- "1F3FC": {
- "unified": "1F473-1F3FC",
- "non_qualified": null,
- "image": "1f473-1f3fc.png",
- "sheet_x": 22,
+ "1F3FD-1F3FD": {
+ "unified": "1F469-1F3FD-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FD",
+ "non_qualified": "1F469-1F3FD-200D-2764-200D-1F48B-200D-1F469-1F3FD",
+ "image": "1f469-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fd.png",
+ "sheet_x": 21,
"sheet_y": 21,
- "added_in": "8.0",
+ "added_in": "13.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": true
+ "has_img_facebook": true
},
- "1F3FD": {
- "unified": "1F473-1F3FD",
- "non_qualified": null,
- "image": "1f473-1f3fd.png",
- "sheet_x": 22,
+ "1F3FD-1F3FE": {
+ "unified": "1F469-1F3FD-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FE",
+ "non_qualified": "1F469-1F3FD-200D-2764-200D-1F48B-200D-1F469-1F3FE",
+ "image": "1f469-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fe.png",
+ "sheet_x": 21,
"sheet_y": 22,
- "added_in": "8.0",
+ "added_in": "13.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": true
+ "has_img_facebook": true
},
- "1F3FE": {
- "unified": "1F473-1F3FE",
- "non_qualified": null,
- "image": "1f473-1f3fe.png",
- "sheet_x": 22,
+ "1F3FD-1F3FF": {
+ "unified": "1F469-1F3FD-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FF",
+ "non_qualified": "1F469-1F3FD-200D-2764-200D-1F48B-200D-1F469-1F3FF",
+ "image": "1f469-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3ff.png",
+ "sheet_x": 21,
"sheet_y": 23,
- "added_in": "8.0",
+ "added_in": "13.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": true
+ "has_img_facebook": true
},
- "1F3FF": {
- "unified": "1F473-1F3FF",
- "non_qualified": null,
- "image": "1f473-1f3ff.png",
- "sheet_x": 22,
+ "1F3FE-1F3FB": {
+ "unified": "1F469-1F3FE-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FB",
+ "non_qualified": "1F469-1F3FE-200D-2764-200D-1F48B-200D-1F469-1F3FB",
+ "image": "1f469-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fb.png",
+ "sheet_x": 21,
"sheet_y": 24,
- "added_in": "8.0",
+ "added_in": "13.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": true
- }
- },
- "obsoleted_by": "1F473-200D-2642-FE0F"
- },
- {
- "name": "OLDER MAN",
- "unified": "1F474",
- "non_qualified": null,
- "docomo": null,
- "au": "EB16",
- "softbank": "E518",
- "google": "FE1A7",
- "image": "1f474.png",
- "sheet_x": 22,
- "sheet_y": 25,
- "short_name": "older_man",
- "short_names": ["older_man"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 122,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F474-1F3FB",
- "non_qualified": null,
- "image": "1f474-1f3fb.png",
- "sheet_x": 22,
+ "has_img_facebook": true
+ },
+ "1F3FE-1F3FC": {
+ "unified": "1F469-1F3FE-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FC",
+ "non_qualified": "1F469-1F3FE-200D-2764-200D-1F48B-200D-1F469-1F3FC",
+ "image": "1f469-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fc.png",
+ "sheet_x": 21,
+ "sheet_y": 25,
+ "added_in": "13.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE-1F3FD": {
+ "unified": "1F469-1F3FE-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FD",
+ "non_qualified": "1F469-1F3FE-200D-2764-200D-1F48B-200D-1F469-1F3FD",
+ "image": "1f469-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fd.png",
+ "sheet_x": 21,
"sheet_y": 26,
- "added_in": "8.0",
+ "added_in": "13.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
- "1F3FC": {
- "unified": "1F474-1F3FC",
- "non_qualified": null,
- "image": "1f474-1f3fc.png",
- "sheet_x": 22,
+ "1F3FE-1F3FE": {
+ "unified": "1F469-1F3FE-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FE",
+ "non_qualified": "1F469-1F3FE-200D-2764-200D-1F48B-200D-1F469-1F3FE",
+ "image": "1f469-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fe.png",
+ "sheet_x": 21,
"sheet_y": 27,
- "added_in": "8.0",
+ "added_in": "13.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
- "1F3FD": {
- "unified": "1F474-1F3FD",
- "non_qualified": null,
- "image": "1f474-1f3fd.png",
- "sheet_x": 22,
+ "1F3FE-1F3FF": {
+ "unified": "1F469-1F3FE-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FF",
+ "non_qualified": "1F469-1F3FE-200D-2764-200D-1F48B-200D-1F469-1F3FF",
+ "image": "1f469-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3ff.png",
+ "sheet_x": 21,
"sheet_y": 28,
- "added_in": "8.0",
+ "added_in": "13.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
- "1F3FE": {
- "unified": "1F474-1F3FE",
- "non_qualified": null,
- "image": "1f474-1f3fe.png",
- "sheet_x": 22,
+ "1F3FF-1F3FB": {
+ "unified": "1F469-1F3FF-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FB",
+ "non_qualified": "1F469-1F3FF-200D-2764-200D-1F48B-200D-1F469-1F3FB",
+ "image": "1f469-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fb.png",
+ "sheet_x": 21,
"sheet_y": 29,
- "added_in": "8.0",
+ "added_in": "13.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
- "1F3FF": {
- "unified": "1F474-1F3FF",
- "non_qualified": null,
- "image": "1f474-1f3ff.png",
- "sheet_x": 22,
+ "1F3FF-1F3FC": {
+ "unified": "1F469-1F3FF-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FC",
+ "non_qualified": "1F469-1F3FF-200D-2764-200D-1F48B-200D-1F469-1F3FC",
+ "image": "1f469-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fc.png",
+ "sheet_x": 21,
"sheet_y": 30,
- "added_in": "8.0",
+ "added_in": "13.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
+ },
+ "1F3FF-1F3FD": {
+ "unified": "1F469-1F3FF-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FD",
+ "non_qualified": "1F469-1F3FF-200D-2764-200D-1F48B-200D-1F469-1F3FD",
+ "image": "1f469-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fd.png",
+ "sheet_x": 21,
+ "sheet_y": 31,
+ "added_in": "13.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF-1F3FE": {
+ "unified": "1F469-1F3FF-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FE",
+ "non_qualified": "1F469-1F3FF-200D-2764-200D-1F48B-200D-1F469-1F3FE",
+ "image": "1f469-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3fe.png",
+ "sheet_x": 21,
+ "sheet_y": 32,
+ "added_in": "13.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF-1F3FF": {
+ "unified": "1F469-1F3FF-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FF",
+ "non_qualified": "1F469-1F3FF-200D-2764-200D-1F48B-200D-1F469-1F3FF",
+ "image": "1f469-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f469-1f3ff.png",
+ "sheet_x": 21,
+ "sheet_y": 33,
+ "added_in": "13.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
}
}
},
{
- "name": "OLDER WOMAN",
- "unified": "1F475",
+ "name": "WOMAN",
+ "unified": "1F469",
"non_qualified": null,
- "docomo": null,
- "au": "EB17",
- "softbank": "E519",
- "google": "FE1A8",
- "image": "1f475.png",
- "sheet_x": 22,
- "sheet_y": 31,
- "short_name": "older_woman",
- "short_names": ["older_woman"],
+ "docomo": "E6F0",
+ "au": "E4FA",
+ "softbank": "E005",
+ "google": "FE19E",
+ "image": "1f469.png",
+ "sheet_x": 21,
+ "sheet_y": 34,
+ "short_name": "woman",
+ "short_names": ["woman"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 123,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "person",
+ "sort_order": 242,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": true,
"skin_variations": {
"1F3FB": {
- "unified": "1F475-1F3FB",
+ "unified": "1F469-1F3FB",
"non_qualified": null,
- "image": "1f475-1f3fb.png",
- "sheet_x": 22,
- "sheet_y": 32,
- "added_in": "8.0",
+ "image": "1f469-1f3fb.png",
+ "sheet_x": 21,
+ "sheet_y": 35,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
"1F3FC": {
- "unified": "1F475-1F3FC",
+ "unified": "1F469-1F3FC",
"non_qualified": null,
- "image": "1f475-1f3fc.png",
- "sheet_x": 22,
- "sheet_y": 33,
- "added_in": "8.0",
+ "image": "1f469-1f3fc.png",
+ "sheet_x": 21,
+ "sheet_y": 36,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
"1F3FD": {
- "unified": "1F475-1F3FD",
+ "unified": "1F469-1F3FD",
"non_qualified": null,
- "image": "1f475-1f3fd.png",
- "sheet_x": 22,
- "sheet_y": 34,
- "added_in": "8.0",
+ "image": "1f469-1f3fd.png",
+ "sheet_x": 21,
+ "sheet_y": 37,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
"1F3FE": {
- "unified": "1F475-1F3FE",
+ "unified": "1F469-1F3FE",
"non_qualified": null,
- "image": "1f475-1f3fe.png",
- "sheet_x": 22,
- "sheet_y": 35,
- "added_in": "8.0",
+ "image": "1f469-1f3fe.png",
+ "sheet_x": 21,
+ "sheet_y": 38,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
"1F3FF": {
- "unified": "1F475-1F3FF",
+ "unified": "1F469-1F3FF",
"non_qualified": null,
- "image": "1f475-1f3ff.png",
- "sheet_x": 22,
- "sheet_y": 36,
- "added_in": "8.0",
+ "image": "1f469-1f3ff.png",
+ "sheet_x": 21,
+ "sheet_y": 39,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
}
}
},
{
- "name": "BABY",
- "unified": "1F476",
+ "name": "FAMILY",
+ "unified": "1F46A",
"non_qualified": null,
"docomo": null,
- "au": "EB18",
- "softbank": "E51A",
- "google": "FE1A9",
- "image": "1f476.png",
- "sheet_x": 22,
- "sheet_y": 37,
- "short_name": "baby",
- "short_names": ["baby"],
+ "au": "E501",
+ "softbank": null,
+ "google": "FE19F",
+ "image": "1f46a.png",
+ "sheet_x": 21,
+ "sheet_y": 40,
+ "short_name": "family",
+ "short_names": ["family"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 114,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "family",
+ "sort_order": 499,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true,
+ "obsoleted_by": "1F468-200D-1F469-200D-1F466"
+ },
+ {
+ "name": "MAN AND WOMAN HOLDING HANDS",
+ "unified": "1F46B",
+ "non_qualified": null,
+ "docomo": null,
+ "au": null,
+ "softbank": "E428",
+ "google": "FE1A0",
+ "image": "1f46b.png",
+ "sheet_x": 21,
+ "sheet_y": 41,
+ "short_name": "man_and_woman_holding_hands",
+ "short_names": [
+ "man_and_woman_holding_hands",
+ "woman_and_man_holding_hands",
+ "couple"
+ ],
+ "text": null,
+ "texts": null,
+ "category": "People & Body",
+ "subcategory": "family",
+ "sort_order": 489,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": true,
"skin_variations": {
"1F3FB": {
- "unified": "1F476-1F3FB",
+ "unified": "1F46B-1F3FB",
"non_qualified": null,
- "image": "1f476-1f3fb.png",
- "sheet_x": 22,
- "sheet_y": 38,
- "added_in": "8.0",
+ "image": "1f46b-1f3fb.png",
+ "sheet_x": 21,
+ "sheet_y": 42,
+ "added_in": "12.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
"1F3FC": {
- "unified": "1F476-1F3FC",
+ "unified": "1F46B-1F3FC",
"non_qualified": null,
- "image": "1f476-1f3fc.png",
- "sheet_x": 22,
- "sheet_y": 39,
- "added_in": "8.0",
+ "image": "1f46b-1f3fc.png",
+ "sheet_x": 21,
+ "sheet_y": 43,
+ "added_in": "12.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
"1F3FD": {
- "unified": "1F476-1F3FD",
+ "unified": "1F46B-1F3FD",
"non_qualified": null,
- "image": "1f476-1f3fd.png",
- "sheet_x": 22,
- "sheet_y": 40,
- "added_in": "8.0",
+ "image": "1f46b-1f3fd.png",
+ "sheet_x": 21,
+ "sheet_y": 44,
+ "added_in": "12.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
"1F3FE": {
- "unified": "1F476-1F3FE",
+ "unified": "1F46B-1F3FE",
"non_qualified": null,
- "image": "1f476-1f3fe.png",
- "sheet_x": 22,
- "sheet_y": 41,
- "added_in": "8.0",
+ "image": "1f46b-1f3fe.png",
+ "sheet_x": 21,
+ "sheet_y": 45,
+ "added_in": "12.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
"1F3FF": {
- "unified": "1F476-1F3FF",
+ "unified": "1F46B-1F3FF",
"non_qualified": null,
- "image": "1f476-1f3ff.png",
- "sheet_x": 22,
- "sheet_y": 42,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- }
- },
- {
- "name": null,
- "unified": "1F477-200D-2640-FE0F",
- "non_qualified": "1F477-200D-2640",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f477-200d-2640-fe0f.png",
- "sheet_x": 22,
- "sheet_y": 43,
- "short_name": "female-construction-worker",
- "short_names": ["female-construction-worker"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 167,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F477-1F3FB-200D-2640-FE0F",
- "non_qualified": "1F477-1F3FB-200D-2640",
- "image": "1f477-1f3fb-200d-2640-fe0f.png",
- "sheet_x": 22,
- "sheet_y": 44,
- "added_in": "8.0",
+ "image": "1f46b-1f3ff.png",
+ "sheet_x": 21,
+ "sheet_y": 46,
+ "added_in": "12.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
- "1F3FC": {
- "unified": "1F477-1F3FC-200D-2640-FE0F",
- "non_qualified": "1F477-1F3FC-200D-2640",
- "image": "1f477-1f3fc-200d-2640-fe0f.png",
- "sheet_x": 22,
- "sheet_y": 45,
- "added_in": "8.0",
+ "1F3FB-1F3FC": {
+ "unified": "1F469-1F3FB-200D-1F91D-200D-1F468-1F3FC",
+ "non_qualified": null,
+ "image": "1f469-1f3fb-200d-1f91d-200d-1f468-1f3fc.png",
+ "sheet_x": 21,
+ "sheet_y": 47,
+ "added_in": "12.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
- "1F3FD": {
- "unified": "1F477-1F3FD-200D-2640-FE0F",
- "non_qualified": "1F477-1F3FD-200D-2640",
- "image": "1f477-1f3fd-200d-2640-fe0f.png",
- "sheet_x": 22,
- "sheet_y": 46,
- "added_in": "8.0",
+ "1F3FB-1F3FD": {
+ "unified": "1F469-1F3FB-200D-1F91D-200D-1F468-1F3FD",
+ "non_qualified": null,
+ "image": "1f469-1f3fb-200d-1f91d-200d-1f468-1f3fd.png",
+ "sheet_x": 21,
+ "sheet_y": 48,
+ "added_in": "12.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
- "1F3FE": {
- "unified": "1F477-1F3FE-200D-2640-FE0F",
- "non_qualified": "1F477-1F3FE-200D-2640",
- "image": "1f477-1f3fe-200d-2640-fe0f.png",
- "sheet_x": 22,
- "sheet_y": 47,
- "added_in": "8.0",
+ "1F3FB-1F3FE": {
+ "unified": "1F469-1F3FB-200D-1F91D-200D-1F468-1F3FE",
+ "non_qualified": null,
+ "image": "1f469-1f3fb-200d-1f91d-200d-1f468-1f3fe.png",
+ "sheet_x": 21,
+ "sheet_y": 49,
+ "added_in": "12.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
- "1F3FF": {
- "unified": "1F477-1F3FF-200D-2640-FE0F",
- "non_qualified": "1F477-1F3FF-200D-2640",
- "image": "1f477-1f3ff-200d-2640-fe0f.png",
- "sheet_x": 22,
- "sheet_y": 48,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- }
- },
- {
- "name": null,
- "unified": "1F477-200D-2642-FE0F",
- "non_qualified": "1F477-200D-2642",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f477-200d-2642-fe0f.png",
- "sheet_x": 22,
- "sheet_y": 49,
- "short_name": "male-construction-worker",
- "short_names": ["male-construction-worker"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 166,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F477-1F3FB-200D-2642-FE0F",
- "non_qualified": "1F477-1F3FB-200D-2642",
- "image": "1f477-1f3fb-200d-2642-fe0f.png",
- "sheet_x": 22,
+ "1F3FB-1F3FF": {
+ "unified": "1F469-1F3FB-200D-1F91D-200D-1F468-1F3FF",
+ "non_qualified": null,
+ "image": "1f469-1f3fb-200d-1f91d-200d-1f468-1f3ff.png",
+ "sheet_x": 21,
"sheet_y": 50,
- "added_in": "8.0",
+ "added_in": "12.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
- "1F3FC": {
- "unified": "1F477-1F3FC-200D-2642-FE0F",
- "non_qualified": "1F477-1F3FC-200D-2642",
- "image": "1f477-1f3fc-200d-2642-fe0f.png",
- "sheet_x": 22,
+ "1F3FC-1F3FB": {
+ "unified": "1F469-1F3FC-200D-1F91D-200D-1F468-1F3FB",
+ "non_qualified": null,
+ "image": "1f469-1f3fc-200d-1f91d-200d-1f468-1f3fb.png",
+ "sheet_x": 21,
"sheet_y": 51,
- "added_in": "8.0",
+ "added_in": "12.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
- "1F3FD": {
- "unified": "1F477-1F3FD-200D-2642-FE0F",
- "non_qualified": "1F477-1F3FD-200D-2642",
- "image": "1f477-1f3fd-200d-2642-fe0f.png",
- "sheet_x": 22,
+ "1F3FC-1F3FD": {
+ "unified": "1F469-1F3FC-200D-1F91D-200D-1F468-1F3FD",
+ "non_qualified": null,
+ "image": "1f469-1f3fc-200d-1f91d-200d-1f468-1f3fd.png",
+ "sheet_x": 21,
"sheet_y": 52,
- "added_in": "8.0",
+ "added_in": "12.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
- "1F3FE": {
- "unified": "1F477-1F3FE-200D-2642-FE0F",
- "non_qualified": "1F477-1F3FE-200D-2642",
- "image": "1f477-1f3fe-200d-2642-fe0f.png",
- "sheet_x": 23,
- "sheet_y": 0,
- "added_in": "8.0",
+ "1F3FC-1F3FE": {
+ "unified": "1F469-1F3FC-200D-1F91D-200D-1F468-1F3FE",
+ "non_qualified": null,
+ "image": "1f469-1f3fc-200d-1f91d-200d-1f468-1f3fe.png",
+ "sheet_x": 21,
+ "sheet_y": 53,
+ "added_in": "12.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
- "1F3FF": {
- "unified": "1F477-1F3FF-200D-2642-FE0F",
- "non_qualified": "1F477-1F3FF-200D-2642",
- "image": "1f477-1f3ff-200d-2642-fe0f.png",
- "sheet_x": 23,
- "sheet_y": 1,
- "added_in": "8.0",
+ "1F3FC-1F3FF": {
+ "unified": "1F469-1F3FC-200D-1F91D-200D-1F468-1F3FF",
+ "non_qualified": null,
+ "image": "1f469-1f3fc-200d-1f91d-200d-1f468-1f3ff.png",
+ "sheet_x": 21,
+ "sheet_y": 54,
+ "added_in": "12.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- },
- "obsoletes": "1F477"
- },
- {
- "name": "CONSTRUCTION WORKER",
- "unified": "1F477",
- "non_qualified": null,
- "docomo": null,
- "au": "EB19",
- "softbank": "E51B",
- "google": "FE1AA",
- "image": "1f477.png",
- "sheet_x": 23,
- "sheet_y": 2,
- "short_name": "construction_worker",
- "short_names": ["construction_worker"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 165,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": true,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F477-1F3FB",
+ "has_img_facebook": true
+ },
+ "1F3FD-1F3FB": {
+ "unified": "1F469-1F3FD-200D-1F91D-200D-1F468-1F3FB",
"non_qualified": null,
- "image": "1f477-1f3fb.png",
- "sheet_x": 23,
- "sheet_y": 3,
- "added_in": "8.0",
+ "image": "1f469-1f3fd-200d-1f91d-200d-1f468-1f3fb.png",
+ "sheet_x": 21,
+ "sheet_y": 55,
+ "added_in": "12.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": true
+ "has_img_facebook": true
},
- "1F3FC": {
- "unified": "1F477-1F3FC",
+ "1F3FD-1F3FC": {
+ "unified": "1F469-1F3FD-200D-1F91D-200D-1F468-1F3FC",
"non_qualified": null,
- "image": "1f477-1f3fc.png",
- "sheet_x": 23,
- "sheet_y": 4,
- "added_in": "8.0",
+ "image": "1f469-1f3fd-200d-1f91d-200d-1f468-1f3fc.png",
+ "sheet_x": 21,
+ "sheet_y": 56,
+ "added_in": "12.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": true
+ "has_img_facebook": true
},
- "1F3FD": {
- "unified": "1F477-1F3FD",
+ "1F3FD-1F3FE": {
+ "unified": "1F469-1F3FD-200D-1F91D-200D-1F468-1F3FE",
"non_qualified": null,
- "image": "1f477-1f3fd.png",
- "sheet_x": 23,
- "sheet_y": 5,
- "added_in": "8.0",
+ "image": "1f469-1f3fd-200d-1f91d-200d-1f468-1f3fe.png",
+ "sheet_x": 21,
+ "sheet_y": 57,
+ "added_in": "12.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": true
+ "has_img_facebook": true
},
- "1F3FE": {
- "unified": "1F477-1F3FE",
+ "1F3FD-1F3FF": {
+ "unified": "1F469-1F3FD-200D-1F91D-200D-1F468-1F3FF",
"non_qualified": null,
- "image": "1f477-1f3fe.png",
- "sheet_x": 23,
- "sheet_y": 6,
- "added_in": "8.0",
+ "image": "1f469-1f3fd-200d-1f91d-200d-1f468-1f3ff.png",
+ "sheet_x": 21,
+ "sheet_y": 58,
+ "added_in": "12.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": true
+ "has_img_facebook": true
},
- "1F3FF": {
- "unified": "1F477-1F3FF",
+ "1F3FE-1F3FB": {
+ "unified": "1F469-1F3FE-200D-1F91D-200D-1F468-1F3FB",
"non_qualified": null,
- "image": "1f477-1f3ff.png",
- "sheet_x": 23,
- "sheet_y": 7,
- "added_in": "8.0",
+ "image": "1f469-1f3fe-200d-1f91d-200d-1f468-1f3fb.png",
+ "sheet_x": 21,
+ "sheet_y": 59,
+ "added_in": "12.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": true
- }
- },
- "obsoleted_by": "1F477-200D-2642-FE0F"
- },
- {
- "name": "PRINCESS",
- "unified": "1F478",
- "non_qualified": null,
- "docomo": null,
- "au": "EB1A",
- "softbank": "E51C",
- "google": "FE1AB",
- "image": "1f478.png",
- "sheet_x": 23,
- "sheet_y": 8,
- "short_name": "princess",
- "short_names": ["princess"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 169,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F478-1F3FB",
+ "has_img_facebook": true
+ },
+ "1F3FE-1F3FC": {
+ "unified": "1F469-1F3FE-200D-1F91D-200D-1F468-1F3FC",
"non_qualified": null,
- "image": "1f478-1f3fb.png",
- "sheet_x": 23,
- "sheet_y": 9,
- "added_in": "8.0",
+ "image": "1f469-1f3fe-200d-1f91d-200d-1f468-1f3fc.png",
+ "sheet_x": 21,
+ "sheet_y": 60,
+ "added_in": "12.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
- "1F3FC": {
- "unified": "1F478-1F3FC",
+ "1F3FE-1F3FD": {
+ "unified": "1F469-1F3FE-200D-1F91D-200D-1F468-1F3FD",
"non_qualified": null,
- "image": "1f478-1f3fc.png",
- "sheet_x": 23,
- "sheet_y": 10,
- "added_in": "8.0",
+ "image": "1f469-1f3fe-200d-1f91d-200d-1f468-1f3fd.png",
+ "sheet_x": 22,
+ "sheet_y": 0,
+ "added_in": "12.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
- "1F3FD": {
- "unified": "1F478-1F3FD",
+ "1F3FE-1F3FF": {
+ "unified": "1F469-1F3FE-200D-1F91D-200D-1F468-1F3FF",
"non_qualified": null,
- "image": "1f478-1f3fd.png",
- "sheet_x": 23,
- "sheet_y": 11,
- "added_in": "8.0",
+ "image": "1f469-1f3fe-200d-1f91d-200d-1f468-1f3ff.png",
+ "sheet_x": 22,
+ "sheet_y": 1,
+ "added_in": "12.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
- "1F3FE": {
- "unified": "1F478-1F3FE",
+ "1F3FF-1F3FB": {
+ "unified": "1F469-1F3FF-200D-1F91D-200D-1F468-1F3FB",
"non_qualified": null,
- "image": "1f478-1f3fe.png",
- "sheet_x": 23,
- "sheet_y": 12,
- "added_in": "8.0",
+ "image": "1f469-1f3ff-200d-1f91d-200d-1f468-1f3fb.png",
+ "sheet_x": 22,
+ "sheet_y": 2,
+ "added_in": "12.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
- "1F3FF": {
- "unified": "1F478-1F3FF",
+ "1F3FF-1F3FC": {
+ "unified": "1F469-1F3FF-200D-1F91D-200D-1F468-1F3FC",
"non_qualified": null,
- "image": "1f478-1f3ff.png",
- "sheet_x": 23,
- "sheet_y": 13,
- "added_in": "8.0",
+ "image": "1f469-1f3ff-200d-1f91d-200d-1f468-1f3fc.png",
+ "sheet_x": 22,
+ "sheet_y": 3,
+ "added_in": "12.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
+ },
+ "1F3FF-1F3FD": {
+ "unified": "1F469-1F3FF-200D-1F91D-200D-1F468-1F3FD",
+ "non_qualified": null,
+ "image": "1f469-1f3ff-200d-1f91d-200d-1f468-1f3fd.png",
+ "sheet_x": 22,
+ "sheet_y": 4,
+ "added_in": "12.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF-1F3FE": {
+ "unified": "1F469-1F3FF-200D-1F91D-200D-1F468-1F3FE",
+ "non_qualified": null,
+ "image": "1f469-1f3ff-200d-1f91d-200d-1f468-1f3fe.png",
+ "sheet_x": 22,
+ "sheet_y": 5,
+ "added_in": "12.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
}
}
},
{
- "name": "JAPANESE OGRE",
- "unified": "1F479",
- "non_qualified": null,
- "docomo": null,
- "au": "EB44",
- "softbank": null,
- "google": "FE1AC",
- "image": "1f479.png",
- "sheet_x": 23,
- "sheet_y": 14,
- "short_name": "japanese_ogre",
- "short_names": ["japanese_ogre"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 93,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- {
- "name": "JAPANESE GOBLIN",
- "unified": "1F47A",
+ "name": "TWO MEN HOLDING HANDS",
+ "unified": "1F46C",
"non_qualified": null,
"docomo": null,
- "au": "EB45",
+ "au": null,
"softbank": null,
- "google": "FE1AD",
- "image": "1f47a.png",
- "sheet_x": 23,
- "sheet_y": 15,
- "short_name": "japanese_goblin",
- "short_names": ["japanese_goblin"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 94,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- {
- "name": "GHOST",
- "unified": "1F47B",
- "non_qualified": null,
- "docomo": null,
- "au": "E4CB",
- "softbank": "E11B",
- "google": "FE1AE",
- "image": "1f47b.png",
- "sheet_x": 23,
- "sheet_y": 16,
- "short_name": "ghost",
- "short_names": ["ghost"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 97,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- {
- "name": "BABY ANGEL",
- "unified": "1F47C",
- "non_qualified": null,
- "docomo": null,
- "au": "E5BF",
- "softbank": "E04E",
- "google": "FE1AF",
- "image": "1f47c.png",
- "sheet_x": 23,
- "sheet_y": 17,
- "short_name": "angel",
- "short_names": ["angel"],
+ "google": null,
+ "image": "1f46c.png",
+ "sheet_x": 22,
+ "sheet_y": 6,
+ "short_name": "two_men_holding_hands",
+ "short_names": ["two_men_holding_hands", "men_holding_hands"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 191,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "family",
+ "sort_order": 490,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": true,
"skin_variations": {
"1F3FB": {
- "unified": "1F47C-1F3FB",
+ "unified": "1F46C-1F3FB",
"non_qualified": null,
- "image": "1f47c-1f3fb.png",
- "sheet_x": 23,
- "sheet_y": 18,
- "added_in": "8.0",
+ "image": "1f46c-1f3fb.png",
+ "sheet_x": 22,
+ "sheet_y": 7,
+ "added_in": "12.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
"1F3FC": {
- "unified": "1F47C-1F3FC",
+ "unified": "1F46C-1F3FC",
"non_qualified": null,
- "image": "1f47c-1f3fc.png",
- "sheet_x": 23,
- "sheet_y": 19,
- "added_in": "8.0",
+ "image": "1f46c-1f3fc.png",
+ "sheet_x": 22,
+ "sheet_y": 8,
+ "added_in": "12.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
"1F3FD": {
- "unified": "1F47C-1F3FD",
+ "unified": "1F46C-1F3FD",
"non_qualified": null,
- "image": "1f47c-1f3fd.png",
- "sheet_x": 23,
- "sheet_y": 20,
- "added_in": "8.0",
+ "image": "1f46c-1f3fd.png",
+ "sheet_x": 22,
+ "sheet_y": 9,
+ "added_in": "12.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
"1F3FE": {
- "unified": "1F47C-1F3FE",
+ "unified": "1F46C-1F3FE",
"non_qualified": null,
- "image": "1f47c-1f3fe.png",
- "sheet_x": 23,
- "sheet_y": 21,
- "added_in": "8.0",
+ "image": "1f46c-1f3fe.png",
+ "sheet_x": 22,
+ "sheet_y": 10,
+ "added_in": "12.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
"1F3FF": {
- "unified": "1F47C-1F3FF",
+ "unified": "1F46C-1F3FF",
"non_qualified": null,
- "image": "1f47c-1f3ff.png",
- "sheet_x": 23,
- "sheet_y": 22,
- "added_in": "8.0",
+ "image": "1f46c-1f3ff.png",
+ "sheet_x": 22,
+ "sheet_y": 11,
+ "added_in": "12.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- }
- },
- {
- "name": "EXTRATERRESTRIAL ALIEN",
- "unified": "1F47D",
- "non_qualified": null,
- "docomo": null,
- "au": "E50E",
- "softbank": "E10C",
- "google": "FE1B0",
- "image": "1f47d.png",
- "sheet_x": 23,
- "sheet_y": 23,
- "short_name": "alien",
- "short_names": ["alien"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 98,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- {
- "name": "ALIEN MONSTER",
- "unified": "1F47E",
- "non_qualified": null,
- "docomo": null,
- "au": "E4EC",
- "softbank": "E12B",
- "google": "FE1B1",
- "image": "1f47e.png",
- "sheet_x": 23,
- "sheet_y": 24,
- "short_name": "space_invader",
- "short_names": ["space_invader"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 99,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- {
- "name": "IMP",
- "unified": "1F47F",
- "non_qualified": null,
- "docomo": null,
- "au": "E4EF",
- "softbank": "E11A",
- "google": "FE1B2",
- "image": "1f47f.png",
- "sheet_x": 23,
- "sheet_y": 25,
- "short_name": "imp",
- "short_names": ["imp"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 91,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- {
- "name": "SKULL",
- "unified": "1F480",
- "non_qualified": null,
- "docomo": null,
- "au": "E4F8",
- "softbank": "E11C",
- "google": "FE1B3",
- "image": "1f480.png",
- "sheet_x": 23,
- "sheet_y": 26,
- "short_name": "skull",
- "short_names": ["skull"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 95,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- {
- "name": null,
- "unified": "1F481-200D-2640-FE0F",
- "non_qualified": "1F481-200D-2640",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f481-200d-2640-fe0f.png",
- "sheet_x": 23,
- "sheet_y": 27,
- "short_name": "woman-tipping-hand",
- "short_names": ["woman-tipping-hand"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 229,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F481-1F3FB-200D-2640-FE0F",
- "non_qualified": "1F481-1F3FB-200D-2640",
- "image": "1f481-1f3fb-200d-2640-fe0f.png",
- "sheet_x": 23,
- "sheet_y": 28,
- "added_in": "8.0",
+ "has_img_facebook": true
+ },
+ "1F3FB-1F3FC": {
+ "unified": "1F468-1F3FB-200D-1F91D-200D-1F468-1F3FC",
+ "non_qualified": null,
+ "image": "1f468-1f3fb-200d-1f91d-200d-1f468-1f3fc.png",
+ "sheet_x": 22,
+ "sheet_y": 12,
+ "added_in": "12.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
- "1F3FC": {
- "unified": "1F481-1F3FC-200D-2640-FE0F",
- "non_qualified": "1F481-1F3FC-200D-2640",
- "image": "1f481-1f3fc-200d-2640-fe0f.png",
- "sheet_x": 23,
- "sheet_y": 29,
- "added_in": "8.0",
+ "1F3FB-1F3FD": {
+ "unified": "1F468-1F3FB-200D-1F91D-200D-1F468-1F3FD",
+ "non_qualified": null,
+ "image": "1f468-1f3fb-200d-1f91d-200d-1f468-1f3fd.png",
+ "sheet_x": 22,
+ "sheet_y": 13,
+ "added_in": "12.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
- "1F3FD": {
- "unified": "1F481-1F3FD-200D-2640-FE0F",
- "non_qualified": "1F481-1F3FD-200D-2640",
- "image": "1f481-1f3fd-200d-2640-fe0f.png",
- "sheet_x": 23,
- "sheet_y": 30,
- "added_in": "8.0",
+ "1F3FB-1F3FE": {
+ "unified": "1F468-1F3FB-200D-1F91D-200D-1F468-1F3FE",
+ "non_qualified": null,
+ "image": "1f468-1f3fb-200d-1f91d-200d-1f468-1f3fe.png",
+ "sheet_x": 22,
+ "sheet_y": 14,
+ "added_in": "12.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
- "1F3FE": {
- "unified": "1F481-1F3FE-200D-2640-FE0F",
- "non_qualified": "1F481-1F3FE-200D-2640",
- "image": "1f481-1f3fe-200d-2640-fe0f.png",
- "sheet_x": 23,
- "sheet_y": 31,
- "added_in": "8.0",
+ "1F3FB-1F3FF": {
+ "unified": "1F468-1F3FB-200D-1F91D-200D-1F468-1F3FF",
+ "non_qualified": null,
+ "image": "1f468-1f3fb-200d-1f91d-200d-1f468-1f3ff.png",
+ "sheet_x": 22,
+ "sheet_y": 15,
+ "added_in": "12.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
- "1F3FF": {
- "unified": "1F481-1F3FF-200D-2640-FE0F",
- "non_qualified": "1F481-1F3FF-200D-2640",
- "image": "1f481-1f3ff-200d-2640-fe0f.png",
- "sheet_x": 23,
- "sheet_y": 32,
- "added_in": "8.0",
+ "1F3FC-1F3FB": {
+ "unified": "1F468-1F3FC-200D-1F91D-200D-1F468-1F3FB",
+ "non_qualified": null,
+ "image": "1f468-1f3fc-200d-1f91d-200d-1f468-1f3fb.png",
+ "sheet_x": 22,
+ "sheet_y": 16,
+ "added_in": "12.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- },
- "obsoletes": "1F481"
- },
- {
- "name": null,
- "unified": "1F481-200D-2642-FE0F",
- "non_qualified": "1F481-200D-2642",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f481-200d-2642-fe0f.png",
- "sheet_x": 23,
- "sheet_y": 33,
- "short_name": "man-tipping-hand",
- "short_names": ["man-tipping-hand"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 228,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F481-1F3FB-200D-2642-FE0F",
- "non_qualified": "1F481-1F3FB-200D-2642",
- "image": "1f481-1f3fb-200d-2642-fe0f.png",
- "sheet_x": 23,
- "sheet_y": 34,
- "added_in": "8.0",
+ "has_img_facebook": true
+ },
+ "1F3FC-1F3FD": {
+ "unified": "1F468-1F3FC-200D-1F91D-200D-1F468-1F3FD",
+ "non_qualified": null,
+ "image": "1f468-1f3fc-200d-1f91d-200d-1f468-1f3fd.png",
+ "sheet_x": 22,
+ "sheet_y": 17,
+ "added_in": "12.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
- "1F3FC": {
- "unified": "1F481-1F3FC-200D-2642-FE0F",
- "non_qualified": "1F481-1F3FC-200D-2642",
- "image": "1f481-1f3fc-200d-2642-fe0f.png",
- "sheet_x": 23,
- "sheet_y": 35,
- "added_in": "8.0",
+ "1F3FC-1F3FE": {
+ "unified": "1F468-1F3FC-200D-1F91D-200D-1F468-1F3FE",
+ "non_qualified": null,
+ "image": "1f468-1f3fc-200d-1f91d-200d-1f468-1f3fe.png",
+ "sheet_x": 22,
+ "sheet_y": 18,
+ "added_in": "12.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
- "1F3FD": {
- "unified": "1F481-1F3FD-200D-2642-FE0F",
- "non_qualified": "1F481-1F3FD-200D-2642",
- "image": "1f481-1f3fd-200d-2642-fe0f.png",
- "sheet_x": 23,
- "sheet_y": 36,
- "added_in": "8.0",
+ "1F3FC-1F3FF": {
+ "unified": "1F468-1F3FC-200D-1F91D-200D-1F468-1F3FF",
+ "non_qualified": null,
+ "image": "1f468-1f3fc-200d-1f91d-200d-1f468-1f3ff.png",
+ "sheet_x": 22,
+ "sheet_y": 19,
+ "added_in": "12.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
- "1F3FE": {
- "unified": "1F481-1F3FE-200D-2642-FE0F",
- "non_qualified": "1F481-1F3FE-200D-2642",
- "image": "1f481-1f3fe-200d-2642-fe0f.png",
- "sheet_x": 23,
- "sheet_y": 37,
- "added_in": "8.0",
+ "1F3FD-1F3FB": {
+ "unified": "1F468-1F3FD-200D-1F91D-200D-1F468-1F3FB",
+ "non_qualified": null,
+ "image": "1f468-1f3fd-200d-1f91d-200d-1f468-1f3fb.png",
+ "sheet_x": 22,
+ "sheet_y": 20,
+ "added_in": "12.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
- "1F3FF": {
- "unified": "1F481-1F3FF-200D-2642-FE0F",
- "non_qualified": "1F481-1F3FF-200D-2642",
- "image": "1f481-1f3ff-200d-2642-fe0f.png",
- "sheet_x": 23,
- "sheet_y": 38,
- "added_in": "8.0",
+ "1F3FD-1F3FC": {
+ "unified": "1F468-1F3FD-200D-1F91D-200D-1F468-1F3FC",
+ "non_qualified": null,
+ "image": "1f468-1f3fd-200d-1f91d-200d-1f468-1f3fc.png",
+ "sheet_x": 22,
+ "sheet_y": 21,
+ "added_in": "12.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- }
- },
- {
- "name": "INFORMATION DESK PERSON",
- "unified": "1F481",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": "E253",
- "google": "FE1B4",
- "image": "1f481.png",
- "sheet_x": 23,
- "sheet_y": 39,
- "short_name": "information_desk_person",
- "short_names": ["information_desk_person"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 227,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": true,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F481-1F3FB",
+ "has_img_facebook": true
+ },
+ "1F3FD-1F3FE": {
+ "unified": "1F468-1F3FD-200D-1F91D-200D-1F468-1F3FE",
"non_qualified": null,
- "image": "1f481-1f3fb.png",
- "sheet_x": 23,
- "sheet_y": 40,
- "added_in": "8.0",
+ "image": "1f468-1f3fd-200d-1f91d-200d-1f468-1f3fe.png",
+ "sheet_x": 22,
+ "sheet_y": 22,
+ "added_in": "12.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": true
+ "has_img_facebook": true
},
- "1F3FC": {
- "unified": "1F481-1F3FC",
+ "1F3FD-1F3FF": {
+ "unified": "1F468-1F3FD-200D-1F91D-200D-1F468-1F3FF",
"non_qualified": null,
- "image": "1f481-1f3fc.png",
- "sheet_x": 23,
- "sheet_y": 41,
- "added_in": "8.0",
+ "image": "1f468-1f3fd-200d-1f91d-200d-1f468-1f3ff.png",
+ "sheet_x": 22,
+ "sheet_y": 23,
+ "added_in": "12.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": true
+ "has_img_facebook": true
},
- "1F3FD": {
- "unified": "1F481-1F3FD",
+ "1F3FE-1F3FB": {
+ "unified": "1F468-1F3FE-200D-1F91D-200D-1F468-1F3FB",
"non_qualified": null,
- "image": "1f481-1f3fd.png",
- "sheet_x": 23,
- "sheet_y": 42,
- "added_in": "8.0",
+ "image": "1f468-1f3fe-200d-1f91d-200d-1f468-1f3fb.png",
+ "sheet_x": 22,
+ "sheet_y": 24,
+ "added_in": "12.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": true
+ "has_img_facebook": true
},
- "1F3FE": {
- "unified": "1F481-1F3FE",
+ "1F3FE-1F3FC": {
+ "unified": "1F468-1F3FE-200D-1F91D-200D-1F468-1F3FC",
"non_qualified": null,
- "image": "1f481-1f3fe.png",
- "sheet_x": 23,
- "sheet_y": 43,
- "added_in": "8.0",
+ "image": "1f468-1f3fe-200d-1f91d-200d-1f468-1f3fc.png",
+ "sheet_x": 22,
+ "sheet_y": 25,
+ "added_in": "12.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": true
+ "has_img_facebook": true
},
- "1F3FF": {
- "unified": "1F481-1F3FF",
+ "1F3FE-1F3FD": {
+ "unified": "1F468-1F3FE-200D-1F91D-200D-1F468-1F3FD",
"non_qualified": null,
- "image": "1f481-1f3ff.png",
- "sheet_x": 23,
- "sheet_y": 44,
- "added_in": "8.0",
+ "image": "1f468-1f3fe-200d-1f91d-200d-1f468-1f3fd.png",
+ "sheet_x": 22,
+ "sheet_y": 26,
+ "added_in": "12.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": true
- }
- },
- "obsoleted_by": "1F481-200D-2640-FE0F"
- },
- {
- "name": null,
- "unified": "1F482-200D-2640-FE0F",
- "non_qualified": "1F482-200D-2640",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f482-200d-2640-fe0f.png",
- "sheet_x": 23,
- "sheet_y": 45,
- "short_name": "female-guard",
- "short_names": ["female-guard"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 164,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F482-1F3FB-200D-2640-FE0F",
- "non_qualified": "1F482-1F3FB-200D-2640",
- "image": "1f482-1f3fb-200d-2640-fe0f.png",
- "sheet_x": 23,
- "sheet_y": 46,
- "added_in": "8.0",
+ "has_img_facebook": true
+ },
+ "1F3FE-1F3FF": {
+ "unified": "1F468-1F3FE-200D-1F91D-200D-1F468-1F3FF",
+ "non_qualified": null,
+ "image": "1f468-1f3fe-200d-1f91d-200d-1f468-1f3ff.png",
+ "sheet_x": 22,
+ "sheet_y": 27,
+ "added_in": "12.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
- "1F3FC": {
- "unified": "1F482-1F3FC-200D-2640-FE0F",
- "non_qualified": "1F482-1F3FC-200D-2640",
- "image": "1f482-1f3fc-200d-2640-fe0f.png",
- "sheet_x": 23,
- "sheet_y": 47,
- "added_in": "8.0",
+ "1F3FF-1F3FB": {
+ "unified": "1F468-1F3FF-200D-1F91D-200D-1F468-1F3FB",
+ "non_qualified": null,
+ "image": "1f468-1f3ff-200d-1f91d-200d-1f468-1f3fb.png",
+ "sheet_x": 22,
+ "sheet_y": 28,
+ "added_in": "12.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
- "1F3FD": {
- "unified": "1F482-1F3FD-200D-2640-FE0F",
- "non_qualified": "1F482-1F3FD-200D-2640",
- "image": "1f482-1f3fd-200d-2640-fe0f.png",
- "sheet_x": 23,
- "sheet_y": 48,
- "added_in": "8.0",
+ "1F3FF-1F3FC": {
+ "unified": "1F468-1F3FF-200D-1F91D-200D-1F468-1F3FC",
+ "non_qualified": null,
+ "image": "1f468-1f3ff-200d-1f91d-200d-1f468-1f3fc.png",
+ "sheet_x": 22,
+ "sheet_y": 29,
+ "added_in": "12.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
- "1F3FE": {
- "unified": "1F482-1F3FE-200D-2640-FE0F",
- "non_qualified": "1F482-1F3FE-200D-2640",
- "image": "1f482-1f3fe-200d-2640-fe0f.png",
- "sheet_x": 23,
- "sheet_y": 49,
- "added_in": "8.0",
+ "1F3FF-1F3FD": {
+ "unified": "1F468-1F3FF-200D-1F91D-200D-1F468-1F3FD",
+ "non_qualified": null,
+ "image": "1f468-1f3ff-200d-1f91d-200d-1f468-1f3fd.png",
+ "sheet_x": 22,
+ "sheet_y": 30,
+ "added_in": "12.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
- "1F3FF": {
- "unified": "1F482-1F3FF-200D-2640-FE0F",
- "non_qualified": "1F482-1F3FF-200D-2640",
- "image": "1f482-1f3ff-200d-2640-fe0f.png",
- "sheet_x": 23,
- "sheet_y": 50,
- "added_in": "8.0",
+ "1F3FF-1F3FE": {
+ "unified": "1F468-1F3FF-200D-1F91D-200D-1F468-1F3FE",
+ "non_qualified": null,
+ "image": "1f468-1f3ff-200d-1f91d-200d-1f468-1f3fe.png",
+ "sheet_x": 22,
+ "sheet_y": 31,
+ "added_in": "12.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
}
}
},
{
- "name": null,
- "unified": "1F482-200D-2642-FE0F",
- "non_qualified": "1F482-200D-2642",
+ "name": "TWO WOMEN HOLDING HANDS",
+ "unified": "1F46D",
+ "non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f482-200d-2642-fe0f.png",
- "sheet_x": 23,
- "sheet_y": 51,
- "short_name": "male-guard",
- "short_names": ["male-guard"],
+ "image": "1f46d.png",
+ "sheet_x": 22,
+ "sheet_y": 32,
+ "short_name": "two_women_holding_hands",
+ "short_names": ["two_women_holding_hands", "women_holding_hands"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 163,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "family",
+ "sort_order": 488,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": false,
"skin_variations": {
"1F3FB": {
- "unified": "1F482-1F3FB-200D-2642-FE0F",
- "non_qualified": "1F482-1F3FB-200D-2642",
- "image": "1f482-1f3fb-200d-2642-fe0f.png",
- "sheet_x": 23,
- "sheet_y": 52,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
+ "unified": "1F46D-1F3FB",
+ "non_qualified": null,
+ "image": "1f46d-1f3fb.png",
+ "sheet_x": 22,
+ "sheet_y": 33,
+ "added_in": "12.0",
+ "has_img_apple": true,
+ "has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FC": {
- "unified": "1F482-1F3FC-200D-2642-FE0F",
- "non_qualified": "1F482-1F3FC-200D-2642",
- "image": "1f482-1f3fc-200d-2642-fe0f.png",
- "sheet_x": 24,
- "sheet_y": 0,
- "added_in": "8.0",
+ "unified": "1F46D-1F3FC",
+ "non_qualified": null,
+ "image": "1f46d-1f3fc.png",
+ "sheet_x": 22,
+ "sheet_y": 34,
+ "added_in": "12.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FD": {
- "unified": "1F482-1F3FD-200D-2642-FE0F",
- "non_qualified": "1F482-1F3FD-200D-2642",
- "image": "1f482-1f3fd-200d-2642-fe0f.png",
- "sheet_x": 24,
- "sheet_y": 1,
- "added_in": "8.0",
+ "unified": "1F46D-1F3FD",
+ "non_qualified": null,
+ "image": "1f46d-1f3fd.png",
+ "sheet_x": 22,
+ "sheet_y": 35,
+ "added_in": "12.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FE": {
- "unified": "1F482-1F3FE-200D-2642-FE0F",
- "non_qualified": "1F482-1F3FE-200D-2642",
- "image": "1f482-1f3fe-200d-2642-fe0f.png",
- "sheet_x": 24,
- "sheet_y": 2,
- "added_in": "8.0",
+ "unified": "1F46D-1F3FE",
+ "non_qualified": null,
+ "image": "1f46d-1f3fe.png",
+ "sheet_x": 22,
+ "sheet_y": 36,
+ "added_in": "12.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FF": {
- "unified": "1F482-1F3FF-200D-2642-FE0F",
- "non_qualified": "1F482-1F3FF-200D-2642",
- "image": "1f482-1f3ff-200d-2642-fe0f.png",
- "sheet_x": 24,
- "sheet_y": 3,
- "added_in": "8.0",
+ "unified": "1F46D-1F3FF",
+ "non_qualified": null,
+ "image": "1f46d-1f3ff.png",
+ "sheet_x": 22,
+ "sheet_y": 37,
+ "added_in": "12.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- },
- "obsoletes": "1F482"
- },
- {
- "name": "GUARDSMAN",
- "unified": "1F482",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": "E51E",
- "google": "FE1B5",
- "image": "1f482.png",
- "sheet_x": 24,
- "sheet_y": 4,
- "short_name": "guardsman",
- "short_names": ["guardsman"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 162,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": true,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F482-1F3FB",
+ "has_img_facebook": true
+ },
+ "1F3FB-1F3FC": {
+ "unified": "1F469-1F3FB-200D-1F91D-200D-1F469-1F3FC",
"non_qualified": null,
- "image": "1f482-1f3fb.png",
- "sheet_x": 24,
- "sheet_y": 5,
- "added_in": "8.0",
+ "image": "1f469-1f3fb-200d-1f91d-200d-1f469-1f3fc.png",
+ "sheet_x": 22,
+ "sheet_y": 38,
+ "added_in": "12.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": true
+ "has_img_facebook": true
},
- "1F3FC": {
- "unified": "1F482-1F3FC",
+ "1F3FB-1F3FD": {
+ "unified": "1F469-1F3FB-200D-1F91D-200D-1F469-1F3FD",
"non_qualified": null,
- "image": "1f482-1f3fc.png",
- "sheet_x": 24,
- "sheet_y": 6,
- "added_in": "8.0",
+ "image": "1f469-1f3fb-200d-1f91d-200d-1f469-1f3fd.png",
+ "sheet_x": 22,
+ "sheet_y": 39,
+ "added_in": "12.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": true
+ "has_img_facebook": true
},
- "1F3FD": {
- "unified": "1F482-1F3FD",
+ "1F3FB-1F3FE": {
+ "unified": "1F469-1F3FB-200D-1F91D-200D-1F469-1F3FE",
"non_qualified": null,
- "image": "1f482-1f3fd.png",
- "sheet_x": 24,
- "sheet_y": 7,
- "added_in": "8.0",
+ "image": "1f469-1f3fb-200d-1f91d-200d-1f469-1f3fe.png",
+ "sheet_x": 22,
+ "sheet_y": 40,
+ "added_in": "12.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": true
+ "has_img_facebook": true
},
- "1F3FE": {
- "unified": "1F482-1F3FE",
+ "1F3FB-1F3FF": {
+ "unified": "1F469-1F3FB-200D-1F91D-200D-1F469-1F3FF",
"non_qualified": null,
- "image": "1f482-1f3fe.png",
- "sheet_x": 24,
- "sheet_y": 8,
- "added_in": "8.0",
+ "image": "1f469-1f3fb-200d-1f91d-200d-1f469-1f3ff.png",
+ "sheet_x": 22,
+ "sheet_y": 41,
+ "added_in": "12.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": true
+ "has_img_facebook": true
},
- "1F3FF": {
- "unified": "1F482-1F3FF",
+ "1F3FC-1F3FB": {
+ "unified": "1F469-1F3FC-200D-1F91D-200D-1F469-1F3FB",
"non_qualified": null,
- "image": "1f482-1f3ff.png",
- "sheet_x": 24,
- "sheet_y": 9,
- "added_in": "8.0",
+ "image": "1f469-1f3fc-200d-1f91d-200d-1f469-1f3fb.png",
+ "sheet_x": 22,
+ "sheet_y": 42,
+ "added_in": "12.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": true
- }
- },
- "obsoleted_by": "1F482-200D-2642-FE0F"
- },
- {
- "name": "DANCER",
- "unified": "1F483",
- "non_qualified": null,
- "docomo": null,
- "au": "EB1C",
- "softbank": "E51F",
- "google": "FE1B6",
- "image": "1f483.png",
- "sheet_x": 24,
- "sheet_y": 10,
- "short_name": "dancer",
- "short_names": ["dancer"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 254,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F483-1F3FB",
+ "has_img_facebook": true
+ },
+ "1F3FC-1F3FD": {
+ "unified": "1F469-1F3FC-200D-1F91D-200D-1F469-1F3FD",
"non_qualified": null,
- "image": "1f483-1f3fb.png",
- "sheet_x": 24,
- "sheet_y": 11,
- "added_in": "8.0",
+ "image": "1f469-1f3fc-200d-1f91d-200d-1f469-1f3fd.png",
+ "sheet_x": 22,
+ "sheet_y": 43,
+ "added_in": "12.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
- "1F3FC": {
- "unified": "1F483-1F3FC",
+ "1F3FC-1F3FE": {
+ "unified": "1F469-1F3FC-200D-1F91D-200D-1F469-1F3FE",
"non_qualified": null,
- "image": "1f483-1f3fc.png",
- "sheet_x": 24,
- "sheet_y": 12,
- "added_in": "8.0",
+ "image": "1f469-1f3fc-200d-1f91d-200d-1f469-1f3fe.png",
+ "sheet_x": 22,
+ "sheet_y": 44,
+ "added_in": "12.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
- "1F3FD": {
- "unified": "1F483-1F3FD",
+ "1F3FC-1F3FF": {
+ "unified": "1F469-1F3FC-200D-1F91D-200D-1F469-1F3FF",
"non_qualified": null,
- "image": "1f483-1f3fd.png",
- "sheet_x": 24,
- "sheet_y": 13,
- "added_in": "8.0",
+ "image": "1f469-1f3fc-200d-1f91d-200d-1f469-1f3ff.png",
+ "sheet_x": 22,
+ "sheet_y": 45,
+ "added_in": "12.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
- "1F3FE": {
- "unified": "1F483-1F3FE",
+ "1F3FD-1F3FB": {
+ "unified": "1F469-1F3FD-200D-1F91D-200D-1F469-1F3FB",
"non_qualified": null,
- "image": "1f483-1f3fe.png",
- "sheet_x": 24,
- "sheet_y": 14,
- "added_in": "8.0",
+ "image": "1f469-1f3fd-200d-1f91d-200d-1f469-1f3fb.png",
+ "sheet_x": 22,
+ "sheet_y": 46,
+ "added_in": "12.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
- "1F3FF": {
- "unified": "1F483-1F3FF",
+ "1F3FD-1F3FC": {
+ "unified": "1F469-1F3FD-200D-1F91D-200D-1F469-1F3FC",
"non_qualified": null,
- "image": "1f483-1f3ff.png",
- "sheet_x": 24,
- "sheet_y": 15,
- "added_in": "8.0",
+ "image": "1f469-1f3fd-200d-1f91d-200d-1f469-1f3fc.png",
+ "sheet_x": 22,
+ "sheet_y": 47,
+ "added_in": "12.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- }
- },
- {
- "name": "LIPSTICK",
- "unified": "1F484",
- "non_qualified": null,
- "docomo": "E710",
- "au": "E509",
- "softbank": "E31C",
- "google": "FE195",
- "image": "1f484.png",
- "sheet_x": 24,
- "sheet_y": 16,
- "short_name": "lipstick",
- "short_names": ["lipstick"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 467,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- {
- "name": "NAIL POLISH",
- "unified": "1F485",
- "non_qualified": null,
- "docomo": null,
- "au": "EAA0",
- "softbank": "E31D",
- "google": "FE196",
- "image": "1f485.png",
- "sheet_x": 24,
- "sheet_y": 17,
- "short_name": "nail_care",
- "short_names": ["nail_care"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 390,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F485-1F3FB",
+ "has_img_facebook": true
+ },
+ "1F3FD-1F3FE": {
+ "unified": "1F469-1F3FD-200D-1F91D-200D-1F469-1F3FE",
"non_qualified": null,
- "image": "1f485-1f3fb.png",
- "sheet_x": 24,
- "sheet_y": 18,
- "added_in": "8.0",
+ "image": "1f469-1f3fd-200d-1f91d-200d-1f469-1f3fe.png",
+ "sheet_x": 22,
+ "sheet_y": 48,
+ "added_in": "12.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
- "1F3FC": {
- "unified": "1F485-1F3FC",
+ "1F3FD-1F3FF": {
+ "unified": "1F469-1F3FD-200D-1F91D-200D-1F469-1F3FF",
"non_qualified": null,
- "image": "1f485-1f3fc.png",
- "sheet_x": 24,
- "sheet_y": 19,
- "added_in": "8.0",
+ "image": "1f469-1f3fd-200d-1f91d-200d-1f469-1f3ff.png",
+ "sheet_x": 22,
+ "sheet_y": 49,
+ "added_in": "12.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
- "1F3FD": {
- "unified": "1F485-1F3FD",
+ "1F3FE-1F3FB": {
+ "unified": "1F469-1F3FE-200D-1F91D-200D-1F469-1F3FB",
"non_qualified": null,
- "image": "1f485-1f3fd.png",
- "sheet_x": 24,
- "sheet_y": 20,
- "added_in": "8.0",
+ "image": "1f469-1f3fe-200d-1f91d-200d-1f469-1f3fb.png",
+ "sheet_x": 22,
+ "sheet_y": 50,
+ "added_in": "12.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
- "1F3FE": {
- "unified": "1F485-1F3FE",
+ "1F3FE-1F3FC": {
+ "unified": "1F469-1F3FE-200D-1F91D-200D-1F469-1F3FC",
"non_qualified": null,
- "image": "1f485-1f3fe.png",
- "sheet_x": 24,
- "sheet_y": 21,
- "added_in": "8.0",
+ "image": "1f469-1f3fe-200d-1f91d-200d-1f469-1f3fc.png",
+ "sheet_x": 22,
+ "sheet_y": 51,
+ "added_in": "12.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
- "1F3FF": {
- "unified": "1F485-1F3FF",
+ "1F3FE-1F3FD": {
+ "unified": "1F469-1F3FE-200D-1F91D-200D-1F469-1F3FD",
"non_qualified": null,
- "image": "1f485-1f3ff.png",
- "sheet_x": 24,
- "sheet_y": 22,
- "added_in": "8.0",
+ "image": "1f469-1f3fe-200d-1f91d-200d-1f469-1f3fd.png",
+ "sheet_x": 22,
+ "sheet_y": 52,
+ "added_in": "12.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
+ },
+ "1F3FE-1F3FF": {
+ "unified": "1F469-1F3FE-200D-1F91D-200D-1F469-1F3FF",
+ "non_qualified": null,
+ "image": "1f469-1f3fe-200d-1f91d-200d-1f469-1f3ff.png",
+ "sheet_x": 22,
+ "sheet_y": 53,
+ "added_in": "12.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF-1F3FB": {
+ "unified": "1F469-1F3FF-200D-1F91D-200D-1F469-1F3FB",
+ "non_qualified": null,
+ "image": "1f469-1f3ff-200d-1f91d-200d-1f469-1f3fb.png",
+ "sheet_x": 22,
+ "sheet_y": 54,
+ "added_in": "12.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF-1F3FC": {
+ "unified": "1F469-1F3FF-200D-1F91D-200D-1F469-1F3FC",
+ "non_qualified": null,
+ "image": "1f469-1f3ff-200d-1f91d-200d-1f469-1f3fc.png",
+ "sheet_x": 22,
+ "sheet_y": 55,
+ "added_in": "12.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF-1F3FD": {
+ "unified": "1F469-1F3FF-200D-1F91D-200D-1F469-1F3FD",
+ "non_qualified": null,
+ "image": "1f469-1f3ff-200d-1f91d-200d-1f469-1f3fd.png",
+ "sheet_x": 22,
+ "sheet_y": 56,
+ "added_in": "12.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF-1F3FE": {
+ "unified": "1F469-1F3FF-200D-1F91D-200D-1F469-1F3FE",
+ "non_qualified": null,
+ "image": "1f469-1f3ff-200d-1f91d-200d-1f469-1f3fe.png",
+ "sheet_x": 22,
+ "sheet_y": 57,
+ "added_in": "12.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
}
}
},
{
- "name": null,
- "unified": "1F486-200D-2640-FE0F",
- "non_qualified": "1F486-200D-2640",
+ "name": "WOMAN POLICE OFFICER",
+ "unified": "1F46E-200D-2640-FE0F",
+ "non_qualified": "1F46E-200D-2640",
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f486-200d-2640-fe0f.png",
- "sheet_x": 24,
- "sheet_y": 23,
- "short_name": "woman-getting-massage",
- "short_names": ["woman-getting-massage"],
+ "image": "1f46e-200d-2640-fe0f.png",
+ "sheet_x": 22,
+ "sheet_y": 58,
+ "short_name": "female-police-officer",
+ "short_names": ["female-police-officer"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 244,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "person-role",
+ "sort_order": 336,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": false,
"skin_variations": {
"1F3FB": {
- "unified": "1F486-1F3FB-200D-2640-FE0F",
- "non_qualified": "1F486-1F3FB-200D-2640",
- "image": "1f486-1f3fb-200d-2640-fe0f.png",
- "sheet_x": 24,
- "sheet_y": 24,
- "added_in": "8.0",
+ "unified": "1F46E-1F3FB-200D-2640-FE0F",
+ "non_qualified": "1F46E-1F3FB-200D-2640",
+ "image": "1f46e-1f3fb-200d-2640-fe0f.png",
+ "sheet_x": 22,
+ "sheet_y": 59,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FC": {
- "unified": "1F486-1F3FC-200D-2640-FE0F",
- "non_qualified": "1F486-1F3FC-200D-2640",
- "image": "1f486-1f3fc-200d-2640-fe0f.png",
- "sheet_x": 24,
- "sheet_y": 25,
- "added_in": "8.0",
+ "unified": "1F46E-1F3FC-200D-2640-FE0F",
+ "non_qualified": "1F46E-1F3FC-200D-2640",
+ "image": "1f46e-1f3fc-200d-2640-fe0f.png",
+ "sheet_x": 22,
+ "sheet_y": 60,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FD": {
- "unified": "1F486-1F3FD-200D-2640-FE0F",
- "non_qualified": "1F486-1F3FD-200D-2640",
- "image": "1f486-1f3fd-200d-2640-fe0f.png",
- "sheet_x": 24,
- "sheet_y": 26,
- "added_in": "8.0",
+ "unified": "1F46E-1F3FD-200D-2640-FE0F",
+ "non_qualified": "1F46E-1F3FD-200D-2640",
+ "image": "1f46e-1f3fd-200d-2640-fe0f.png",
+ "sheet_x": 23,
+ "sheet_y": 0,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FE": {
- "unified": "1F486-1F3FE-200D-2640-FE0F",
- "non_qualified": "1F486-1F3FE-200D-2640",
- "image": "1f486-1f3fe-200d-2640-fe0f.png",
- "sheet_x": 24,
- "sheet_y": 27,
- "added_in": "8.0",
+ "unified": "1F46E-1F3FE-200D-2640-FE0F",
+ "non_qualified": "1F46E-1F3FE-200D-2640",
+ "image": "1f46e-1f3fe-200d-2640-fe0f.png",
+ "sheet_x": 23,
+ "sheet_y": 1,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FF": {
- "unified": "1F486-1F3FF-200D-2640-FE0F",
- "non_qualified": "1F486-1F3FF-200D-2640",
- "image": "1f486-1f3ff-200d-2640-fe0f.png",
- "sheet_x": 24,
- "sheet_y": 28,
- "added_in": "8.0",
+ "unified": "1F46E-1F3FF-200D-2640-FE0F",
+ "non_qualified": "1F46E-1F3FF-200D-2640",
+ "image": "1f46e-1f3ff-200d-2640-fe0f.png",
+ "sheet_x": 23,
+ "sheet_y": 2,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
}
- },
- "obsoletes": "1F486"
+ }
},
{
- "name": null,
- "unified": "1F486-200D-2642-FE0F",
- "non_qualified": "1F486-200D-2642",
+ "name": "MAN POLICE OFFICER",
+ "unified": "1F46E-200D-2642-FE0F",
+ "non_qualified": "1F46E-200D-2642",
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f486-200d-2642-fe0f.png",
- "sheet_x": 24,
- "sheet_y": 29,
- "short_name": "man-getting-massage",
- "short_names": ["man-getting-massage"],
+ "image": "1f46e-200d-2642-fe0f.png",
+ "sheet_x": 23,
+ "sheet_y": 3,
+ "short_name": "male-police-officer",
+ "short_names": ["male-police-officer"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 243,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "person-role",
+ "sort_order": 335,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": false,
"skin_variations": {
"1F3FB": {
- "unified": "1F486-1F3FB-200D-2642-FE0F",
- "non_qualified": "1F486-1F3FB-200D-2642",
- "image": "1f486-1f3fb-200d-2642-fe0f.png",
- "sheet_x": 24,
- "sheet_y": 30,
- "added_in": "8.0",
+ "unified": "1F46E-1F3FB-200D-2642-FE0F",
+ "non_qualified": "1F46E-1F3FB-200D-2642",
+ "image": "1f46e-1f3fb-200d-2642-fe0f.png",
+ "sheet_x": 23,
+ "sheet_y": 4,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FC": {
- "unified": "1F486-1F3FC-200D-2642-FE0F",
- "non_qualified": "1F486-1F3FC-200D-2642",
- "image": "1f486-1f3fc-200d-2642-fe0f.png",
- "sheet_x": 24,
- "sheet_y": 31,
- "added_in": "8.0",
+ "unified": "1F46E-1F3FC-200D-2642-FE0F",
+ "non_qualified": "1F46E-1F3FC-200D-2642",
+ "image": "1f46e-1f3fc-200d-2642-fe0f.png",
+ "sheet_x": 23,
+ "sheet_y": 5,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FD": {
- "unified": "1F486-1F3FD-200D-2642-FE0F",
- "non_qualified": "1F486-1F3FD-200D-2642",
- "image": "1f486-1f3fd-200d-2642-fe0f.png",
- "sheet_x": 24,
- "sheet_y": 32,
- "added_in": "8.0",
+ "unified": "1F46E-1F3FD-200D-2642-FE0F",
+ "non_qualified": "1F46E-1F3FD-200D-2642",
+ "image": "1f46e-1f3fd-200d-2642-fe0f.png",
+ "sheet_x": 23,
+ "sheet_y": 6,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FE": {
- "unified": "1F486-1F3FE-200D-2642-FE0F",
- "non_qualified": "1F486-1F3FE-200D-2642",
- "image": "1f486-1f3fe-200d-2642-fe0f.png",
- "sheet_x": 24,
- "sheet_y": 33,
- "added_in": "8.0",
+ "unified": "1F46E-1F3FE-200D-2642-FE0F",
+ "non_qualified": "1F46E-1F3FE-200D-2642",
+ "image": "1f46e-1f3fe-200d-2642-fe0f.png",
+ "sheet_x": 23,
+ "sheet_y": 7,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FF": {
- "unified": "1F486-1F3FF-200D-2642-FE0F",
- "non_qualified": "1F486-1F3FF-200D-2642",
- "image": "1f486-1f3ff-200d-2642-fe0f.png",
- "sheet_x": 24,
- "sheet_y": 34,
- "added_in": "8.0",
+ "unified": "1F46E-1F3FF-200D-2642-FE0F",
+ "non_qualified": "1F46E-1F3FF-200D-2642",
+ "image": "1f46e-1f3ff-200d-2642-fe0f.png",
+ "sheet_x": 23,
+ "sheet_y": 8,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
}
- }
+ },
+ "obsoletes": "1F46E"
},
{
- "name": "FACE MASSAGE",
- "unified": "1F486",
+ "name": "POLICE OFFICER",
+ "unified": "1F46E",
"non_qualified": null,
"docomo": null,
- "au": "E50B",
- "softbank": "E31E",
- "google": "FE197",
- "image": "1f486.png",
- "sheet_x": 24,
- "sheet_y": 35,
- "short_name": "massage",
- "short_names": ["massage"],
+ "au": "E5DD",
+ "softbank": "E152",
+ "google": "FE1A1",
+ "image": "1f46e.png",
+ "sheet_x": 23,
+ "sheet_y": 9,
+ "short_name": "cop",
+ "short_names": ["cop"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 242,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "person-role",
+ "sort_order": 334,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": true,
+ "has_img_facebook": true,
"skin_variations": {
"1F3FB": {
- "unified": "1F486-1F3FB",
+ "unified": "1F46E-1F3FB",
"non_qualified": null,
- "image": "1f486-1f3fb.png",
- "sheet_x": 24,
- "sheet_y": 36,
- "added_in": "8.0",
+ "image": "1f46e-1f3fb.png",
+ "sheet_x": 23,
+ "sheet_y": 10,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": true
+ "has_img_facebook": true
},
"1F3FC": {
- "unified": "1F486-1F3FC",
+ "unified": "1F46E-1F3FC",
"non_qualified": null,
- "image": "1f486-1f3fc.png",
- "sheet_x": 24,
- "sheet_y": 37,
- "added_in": "8.0",
+ "image": "1f46e-1f3fc.png",
+ "sheet_x": 23,
+ "sheet_y": 11,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": true
+ "has_img_facebook": true
},
"1F3FD": {
- "unified": "1F486-1F3FD",
+ "unified": "1F46E-1F3FD",
"non_qualified": null,
- "image": "1f486-1f3fd.png",
- "sheet_x": 24,
- "sheet_y": 38,
- "added_in": "8.0",
+ "image": "1f46e-1f3fd.png",
+ "sheet_x": 23,
+ "sheet_y": 12,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": true
+ "has_img_facebook": true
},
"1F3FE": {
- "unified": "1F486-1F3FE",
+ "unified": "1F46E-1F3FE",
"non_qualified": null,
- "image": "1f486-1f3fe.png",
- "sheet_x": 24,
- "sheet_y": 39,
- "added_in": "8.0",
+ "image": "1f46e-1f3fe.png",
+ "sheet_x": 23,
+ "sheet_y": 13,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": true
+ "has_img_facebook": true
},
"1F3FF": {
- "unified": "1F486-1F3FF",
+ "unified": "1F46E-1F3FF",
"non_qualified": null,
- "image": "1f486-1f3ff.png",
- "sheet_x": 24,
- "sheet_y": 40,
- "added_in": "8.0",
+ "image": "1f46e-1f3ff.png",
+ "sheet_x": 23,
+ "sheet_y": 14,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": true
+ "has_img_facebook": true
}
},
- "obsoleted_by": "1F486-200D-2640-FE0F"
+ "obsoleted_by": "1F46E-200D-2642-FE0F"
},
{
- "name": null,
- "unified": "1F487-200D-2640-FE0F",
- "non_qualified": "1F487-200D-2640",
+ "name": "WOMEN WITH BUNNY EARS",
+ "unified": "1F46F-200D-2640-FE0F",
+ "non_qualified": "1F46F-200D-2640",
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f487-200d-2640-fe0f.png",
- "sheet_x": 24,
- "sheet_y": 41,
- "short_name": "woman-getting-haircut",
- "short_names": ["woman-getting-haircut"],
+ "image": "1f46f-200d-2640-fe0f.png",
+ "sheet_x": 23,
+ "sheet_y": 15,
+ "short_name": "women-with-bunny-ears-partying",
+ "short_names": [
+ "women-with-bunny-ears-partying",
+ "woman-with-bunny-ears-partying"
+ ],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 247,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "person-activity",
+ "sort_order": 432,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F487-1F3FB-200D-2640-FE0F",
- "non_qualified": "1F487-1F3FB-200D-2640",
- "image": "1f487-1f3fb-200d-2640-fe0f.png",
- "sheet_x": 24,
- "sheet_y": 42,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F487-1F3FC-200D-2640-FE0F",
- "non_qualified": "1F487-1F3FC-200D-2640",
- "image": "1f487-1f3fc-200d-2640-fe0f.png",
- "sheet_x": 24,
- "sheet_y": 43,
- "added_in": "8.0",
+ "obsoletes": "1F46F"
+ },
+ {
+ "name": "MEN WITH BUNNY EARS",
+ "unified": "1F46F-200D-2642-FE0F",
+ "non_qualified": "1F46F-200D-2642",
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f46f-200d-2642-fe0f.png",
+ "sheet_x": 23,
+ "sheet_y": 16,
+ "short_name": "men-with-bunny-ears-partying",
+ "short_names": [
+ "men-with-bunny-ears-partying",
+ "man-with-bunny-ears-partying"
+ ],
+ "text": null,
+ "texts": null,
+ "category": "People & Body",
+ "subcategory": "person-activity",
+ "sort_order": 431,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "WOMAN WITH BUNNY EARS",
+ "unified": "1F46F",
+ "non_qualified": null,
+ "docomo": null,
+ "au": "EADB",
+ "softbank": "E429",
+ "google": "FE1A2",
+ "image": "1f46f.png",
+ "sheet_x": 23,
+ "sheet_y": 17,
+ "short_name": "dancers",
+ "short_names": ["dancers"],
+ "text": null,
+ "texts": null,
+ "category": "People & Body",
+ "subcategory": "person-activity",
+ "sort_order": 430,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true,
+ "obsoleted_by": "1F46F-200D-2640-FE0F"
+ },
+ {
+ "name": "WOMAN WITH VEIL",
+ "unified": "1F470-200D-2640-FE0F",
+ "non_qualified": "1F470-200D-2640",
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f470-200d-2640-fe0f.png",
+ "sheet_x": 23,
+ "sheet_y": 18,
+ "short_name": "woman_with_veil",
+ "short_names": ["woman_with_veil"],
+ "text": null,
+ "texts": null,
+ "category": "People & Body",
+ "subcategory": "person-role",
+ "sort_order": 360,
+ "added_in": "13.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true,
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F470-1F3FB-200D-2640-FE0F",
+ "non_qualified": "1F470-1F3FB-200D-2640",
+ "image": "1f470-1f3fb-200d-2640-fe0f.png",
+ "sheet_x": 23,
+ "sheet_y": 19,
+ "added_in": "13.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1F470-1F3FC-200D-2640-FE0F",
+ "non_qualified": "1F470-1F3FC-200D-2640",
+ "image": "1f470-1f3fc-200d-2640-fe0f.png",
+ "sheet_x": 23,
+ "sheet_y": 20,
+ "added_in": "13.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FD": {
- "unified": "1F487-1F3FD-200D-2640-FE0F",
- "non_qualified": "1F487-1F3FD-200D-2640",
- "image": "1f487-1f3fd-200d-2640-fe0f.png",
- "sheet_x": 24,
- "sheet_y": 44,
- "added_in": "8.0",
+ "unified": "1F470-1F3FD-200D-2640-FE0F",
+ "non_qualified": "1F470-1F3FD-200D-2640",
+ "image": "1f470-1f3fd-200d-2640-fe0f.png",
+ "sheet_x": 23,
+ "sheet_y": 21,
+ "added_in": "13.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FE": {
- "unified": "1F487-1F3FE-200D-2640-FE0F",
- "non_qualified": "1F487-1F3FE-200D-2640",
- "image": "1f487-1f3fe-200d-2640-fe0f.png",
- "sheet_x": 24,
- "sheet_y": 45,
- "added_in": "8.0",
+ "unified": "1F470-1F3FE-200D-2640-FE0F",
+ "non_qualified": "1F470-1F3FE-200D-2640",
+ "image": "1f470-1f3fe-200d-2640-fe0f.png",
+ "sheet_x": 23,
+ "sheet_y": 22,
+ "added_in": "13.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FF": {
- "unified": "1F487-1F3FF-200D-2640-FE0F",
- "non_qualified": "1F487-1F3FF-200D-2640",
- "image": "1f487-1f3ff-200d-2640-fe0f.png",
- "sheet_x": 24,
- "sheet_y": 46,
- "added_in": "8.0",
+ "unified": "1F470-1F3FF-200D-2640-FE0F",
+ "non_qualified": "1F470-1F3FF-200D-2640",
+ "image": "1f470-1f3ff-200d-2640-fe0f.png",
+ "sheet_x": 23,
+ "sheet_y": 23,
+ "added_in": "13.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
}
- },
- "obsoletes": "1F487"
+ }
},
{
- "name": null,
- "unified": "1F487-200D-2642-FE0F",
- "non_qualified": "1F487-200D-2642",
+ "name": "MAN WITH VEIL",
+ "unified": "1F470-200D-2642-FE0F",
+ "non_qualified": "1F470-200D-2642",
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f487-200d-2642-fe0f.png",
- "sheet_x": 24,
- "sheet_y": 47,
- "short_name": "man-getting-haircut",
- "short_names": ["man-getting-haircut"],
+ "image": "1f470-200d-2642-fe0f.png",
+ "sheet_x": 23,
+ "sheet_y": 24,
+ "short_name": "man_with_veil",
+ "short_names": ["man_with_veil"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 246,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "person-role",
+ "sort_order": 359,
+ "added_in": "13.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": false,
"skin_variations": {
"1F3FB": {
- "unified": "1F487-1F3FB-200D-2642-FE0F",
- "non_qualified": "1F487-1F3FB-200D-2642",
- "image": "1f487-1f3fb-200d-2642-fe0f.png",
- "sheet_x": 24,
- "sheet_y": 48,
- "added_in": "8.0",
+ "unified": "1F470-1F3FB-200D-2642-FE0F",
+ "non_qualified": "1F470-1F3FB-200D-2642",
+ "image": "1f470-1f3fb-200d-2642-fe0f.png",
+ "sheet_x": 23,
+ "sheet_y": 25,
+ "added_in": "13.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FC": {
- "unified": "1F487-1F3FC-200D-2642-FE0F",
- "non_qualified": "1F487-1F3FC-200D-2642",
- "image": "1f487-1f3fc-200d-2642-fe0f.png",
- "sheet_x": 24,
- "sheet_y": 49,
- "added_in": "8.0",
+ "unified": "1F470-1F3FC-200D-2642-FE0F",
+ "non_qualified": "1F470-1F3FC-200D-2642",
+ "image": "1f470-1f3fc-200d-2642-fe0f.png",
+ "sheet_x": 23,
+ "sheet_y": 26,
+ "added_in": "13.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FD": {
- "unified": "1F487-1F3FD-200D-2642-FE0F",
- "non_qualified": "1F487-1F3FD-200D-2642",
- "image": "1f487-1f3fd-200d-2642-fe0f.png",
- "sheet_x": 24,
- "sheet_y": 50,
- "added_in": "8.0",
+ "unified": "1F470-1F3FD-200D-2642-FE0F",
+ "non_qualified": "1F470-1F3FD-200D-2642",
+ "image": "1f470-1f3fd-200d-2642-fe0f.png",
+ "sheet_x": 23,
+ "sheet_y": 27,
+ "added_in": "13.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FE": {
- "unified": "1F487-1F3FE-200D-2642-FE0F",
- "non_qualified": "1F487-1F3FE-200D-2642",
- "image": "1f487-1f3fe-200d-2642-fe0f.png",
- "sheet_x": 24,
- "sheet_y": 51,
- "added_in": "8.0",
+ "unified": "1F470-1F3FE-200D-2642-FE0F",
+ "non_qualified": "1F470-1F3FE-200D-2642",
+ "image": "1f470-1f3fe-200d-2642-fe0f.png",
+ "sheet_x": 23,
+ "sheet_y": 28,
+ "added_in": "13.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FF": {
- "unified": "1F487-1F3FF-200D-2642-FE0F",
- "non_qualified": "1F487-1F3FF-200D-2642",
- "image": "1f487-1f3ff-200d-2642-fe0f.png",
- "sheet_x": 24,
- "sheet_y": 52,
- "added_in": "8.0",
+ "unified": "1F470-1F3FF-200D-2642-FE0F",
+ "non_qualified": "1F470-1F3FF-200D-2642",
+ "image": "1f470-1f3ff-200d-2642-fe0f.png",
+ "sheet_x": 23,
+ "sheet_y": 29,
+ "added_in": "13.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
}
}
},
{
- "name": "HAIRCUT",
- "unified": "1F487",
+ "name": "BRIDE WITH VEIL",
+ "unified": "1F470",
"non_qualified": null,
- "docomo": "E675",
- "au": "EAA1",
- "softbank": "E31F",
- "google": "FE198",
- "image": "1f487.png",
- "sheet_x": 25,
- "sheet_y": 0,
- "short_name": "haircut",
- "short_names": ["haircut"],
+ "docomo": null,
+ "au": "EAE9",
+ "softbank": null,
+ "google": "FE1A3",
+ "image": "1f470.png",
+ "sheet_x": 23,
+ "sheet_y": 30,
+ "short_name": "bride_with_veil",
+ "short_names": ["bride_with_veil"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 245,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "person-role",
+ "sort_order": 358,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": true,
+ "has_img_facebook": true,
"skin_variations": {
"1F3FB": {
- "unified": "1F487-1F3FB",
+ "unified": "1F470-1F3FB",
"non_qualified": null,
- "image": "1f487-1f3fb.png",
- "sheet_x": 25,
- "sheet_y": 1,
- "added_in": "8.0",
+ "image": "1f470-1f3fb.png",
+ "sheet_x": 23,
+ "sheet_y": 31,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": true
+ "has_img_facebook": true
},
"1F3FC": {
- "unified": "1F487-1F3FC",
+ "unified": "1F470-1F3FC",
"non_qualified": null,
- "image": "1f487-1f3fc.png",
- "sheet_x": 25,
- "sheet_y": 2,
- "added_in": "8.0",
+ "image": "1f470-1f3fc.png",
+ "sheet_x": 23,
+ "sheet_y": 32,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": true
+ "has_img_facebook": true
},
"1F3FD": {
- "unified": "1F487-1F3FD",
+ "unified": "1F470-1F3FD",
"non_qualified": null,
- "image": "1f487-1f3fd.png",
- "sheet_x": 25,
- "sheet_y": 3,
- "added_in": "8.0",
+ "image": "1f470-1f3fd.png",
+ "sheet_x": 23,
+ "sheet_y": 33,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": true
+ "has_img_facebook": true
},
"1F3FE": {
- "unified": "1F487-1F3FE",
+ "unified": "1F470-1F3FE",
"non_qualified": null,
- "image": "1f487-1f3fe.png",
- "sheet_x": 25,
- "sheet_y": 4,
- "added_in": "8.0",
+ "image": "1f470-1f3fe.png",
+ "sheet_x": 23,
+ "sheet_y": 34,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": true
+ "has_img_facebook": true
},
"1F3FF": {
- "unified": "1F487-1F3FF",
+ "unified": "1F470-1F3FF",
"non_qualified": null,
- "image": "1f487-1f3ff.png",
- "sheet_x": 25,
- "sheet_y": 5,
- "added_in": "8.0",
+ "image": "1f470-1f3ff.png",
+ "sheet_x": 23,
+ "sheet_y": 35,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": true
+ "has_img_facebook": true
}
- },
- "obsoleted_by": "1F487-200D-2640-FE0F"
+ }
},
{
- "name": "BARBER POLE",
- "unified": "1F488",
- "non_qualified": null,
+ "name": "WOMAN: BLOND HAIR",
+ "unified": "1F471-200D-2640-FE0F",
+ "non_qualified": "1F471-200D-2640",
"docomo": null,
- "au": "EAA2",
- "softbank": "E320",
- "google": "FE199",
- "image": "1f488.png",
- "sheet_x": 25,
- "sheet_y": 6,
- "short_name": "barber",
- "short_names": ["barber"],
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f471-200d-2640-fe0f.png",
+ "sheet_x": 23,
+ "sheet_y": 36,
+ "short_name": "blond-haired-woman",
+ "short_names": ["blond-haired-woman"],
"text": null,
"texts": null,
- "category": "Travel & Places",
- "sort_order": 61,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "person",
+ "sort_order": 251,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": true
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F471-1F3FB-200D-2640-FE0F",
+ "non_qualified": "1F471-1F3FB-200D-2640",
+ "image": "1f471-1f3fb-200d-2640-fe0f.png",
+ "sheet_x": 23,
+ "sheet_y": 37,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1F471-1F3FC-200D-2640-FE0F",
+ "non_qualified": "1F471-1F3FC-200D-2640",
+ "image": "1f471-1f3fc-200d-2640-fe0f.png",
+ "sheet_x": 23,
+ "sheet_y": 38,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1F471-1F3FD-200D-2640-FE0F",
+ "non_qualified": "1F471-1F3FD-200D-2640",
+ "image": "1f471-1f3fd-200d-2640-fe0f.png",
+ "sheet_x": 23,
+ "sheet_y": 39,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1F471-1F3FE-200D-2640-FE0F",
+ "non_qualified": "1F471-1F3FE-200D-2640",
+ "image": "1f471-1f3fe-200d-2640-fe0f.png",
+ "sheet_x": 23,
+ "sheet_y": 40,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1F471-1F3FF-200D-2640-FE0F",
+ "non_qualified": "1F471-1F3FF-200D-2640",
+ "image": "1f471-1f3ff-200d-2640-fe0f.png",
+ "sheet_x": 23,
+ "sheet_y": 41,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ }
},
{
- "name": "SYRINGE",
- "unified": "1F489",
- "non_qualified": null,
+ "name": "MAN: BLOND HAIR",
+ "unified": "1F471-200D-2642-FE0F",
+ "non_qualified": "1F471-200D-2642",
"docomo": null,
- "au": "E510",
- "softbank": "E13B",
- "google": "FE509",
- "image": "1f489.png",
- "sheet_x": 25,
- "sheet_y": 7,
- "short_name": "syringe",
- "short_names": ["syringe"],
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f471-200d-2642-fe0f.png",
+ "sheet_x": 23,
+ "sheet_y": 42,
+ "short_name": "blond-haired-man",
+ "short_names": ["blond-haired-man"],
"text": null,
"texts": null,
- "category": "Objects",
- "sort_order": 161,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "person",
+ "sort_order": 252,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": true
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F471-1F3FB-200D-2642-FE0F",
+ "non_qualified": "1F471-1F3FB-200D-2642",
+ "image": "1f471-1f3fb-200d-2642-fe0f.png",
+ "sheet_x": 23,
+ "sheet_y": 43,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1F471-1F3FC-200D-2642-FE0F",
+ "non_qualified": "1F471-1F3FC-200D-2642",
+ "image": "1f471-1f3fc-200d-2642-fe0f.png",
+ "sheet_x": 23,
+ "sheet_y": 44,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1F471-1F3FD-200D-2642-FE0F",
+ "non_qualified": "1F471-1F3FD-200D-2642",
+ "image": "1f471-1f3fd-200d-2642-fe0f.png",
+ "sheet_x": 23,
+ "sheet_y": 45,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1F471-1F3FE-200D-2642-FE0F",
+ "non_qualified": "1F471-1F3FE-200D-2642",
+ "image": "1f471-1f3fe-200d-2642-fe0f.png",
+ "sheet_x": 23,
+ "sheet_y": 46,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1F471-1F3FF-200D-2642-FE0F",
+ "non_qualified": "1F471-1F3FF-200D-2642",
+ "image": "1f471-1f3ff-200d-2642-fe0f.png",
+ "sheet_x": 23,
+ "sheet_y": 47,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ },
+ "obsoletes": "1F471"
},
{
- "name": "PILL",
- "unified": "1F48A",
+ "name": "PERSON WITH BLOND HAIR",
+ "unified": "1F471",
"non_qualified": null,
"docomo": null,
- "au": "EA9A",
- "softbank": "E30F",
- "google": "FE50A",
- "image": "1f48a.png",
- "sheet_x": 25,
- "sheet_y": 8,
- "short_name": "pill",
- "short_names": ["pill"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 162,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- {
- "name": "KISS MARK",
- "unified": "1F48B",
- "non_qualified": null,
- "docomo": "E6F9",
- "au": "E4EB",
- "softbank": "E003",
- "google": "FE823",
- "image": "1f48b.png",
- "sheet_x": 25,
- "sheet_y": 9,
- "short_name": "kiss",
- "short_names": ["kiss"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 402,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- {
- "name": "LOVE LETTER",
- "unified": "1F48C",
- "non_qualified": null,
- "docomo": "E717",
- "au": "EB78",
- "softbank": null,
- "google": "FE824",
- "image": "1f48c.png",
- "sheet_x": 25,
- "sheet_y": 10,
- "short_name": "love_letter",
- "short_names": ["love_letter"],
+ "au": "EB13",
+ "softbank": "E515",
+ "google": "FE1A4",
+ "image": "1f471.png",
+ "sheet_x": 23,
+ "sheet_y": 48,
+ "short_name": "person_with_blond_hair",
+ "short_names": ["person_with_blond_hair"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 420,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "person",
+ "sort_order": 233,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": true
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F471-1F3FB",
+ "non_qualified": null,
+ "image": "1f471-1f3fb.png",
+ "sheet_x": 23,
+ "sheet_y": 49,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1F471-1F3FC",
+ "non_qualified": null,
+ "image": "1f471-1f3fc.png",
+ "sheet_x": 23,
+ "sheet_y": 50,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1F471-1F3FD",
+ "non_qualified": null,
+ "image": "1f471-1f3fd.png",
+ "sheet_x": 23,
+ "sheet_y": 51,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1F471-1F3FE",
+ "non_qualified": null,
+ "image": "1f471-1f3fe.png",
+ "sheet_x": 23,
+ "sheet_y": 52,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1F471-1F3FF",
+ "non_qualified": null,
+ "image": "1f471-1f3ff.png",
+ "sheet_x": 23,
+ "sheet_y": 53,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ },
+ "obsoleted_by": "1F471-200D-2642-FE0F"
},
{
- "name": "RING",
- "unified": "1F48D",
+ "name": "MAN WITH GUA PI MAO",
+ "unified": "1F472",
"non_qualified": null,
- "docomo": "E71B",
- "au": "E514",
- "softbank": "E034",
- "google": "FE825",
- "image": "1f48d.png",
- "sheet_x": 25,
- "sheet_y": 11,
- "short_name": "ring",
- "short_names": ["ring"],
+ "docomo": null,
+ "au": "EB14",
+ "softbank": "E516",
+ "google": "FE1A5",
+ "image": "1f472.png",
+ "sheet_x": 23,
+ "sheet_y": 54,
+ "short_name": "man_with_gua_pi_mao",
+ "short_names": ["man_with_gua_pi_mao"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 468,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "person-role",
+ "sort_order": 353,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": true
- },
- {
- "name": "GEM STONE",
- "unified": "1F48E",
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F472-1F3FB",
+ "non_qualified": null,
+ "image": "1f472-1f3fb.png",
+ "sheet_x": 23,
+ "sheet_y": 55,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1F472-1F3FC",
+ "non_qualified": null,
+ "image": "1f472-1f3fc.png",
+ "sheet_x": 23,
+ "sheet_y": 56,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1F472-1F3FD",
+ "non_qualified": null,
+ "image": "1f472-1f3fd.png",
+ "sheet_x": 23,
+ "sheet_y": 57,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1F472-1F3FE",
+ "non_qualified": null,
+ "image": "1f472-1f3fe.png",
+ "sheet_x": 23,
+ "sheet_y": 58,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1F472-1F3FF",
+ "non_qualified": null,
+ "image": "1f472-1f3ff.png",
+ "sheet_x": 23,
+ "sheet_y": 59,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ }
+ },
+ {
+ "name": "WOMAN WEARING TURBAN",
+ "unified": "1F473-200D-2640-FE0F",
+ "non_qualified": "1F473-200D-2640",
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f473-200d-2640-fe0f.png",
+ "sheet_x": 23,
+ "sheet_y": 60,
+ "short_name": "woman-wearing-turban",
+ "short_names": ["woman-wearing-turban"],
+ "text": null,
+ "texts": null,
+ "category": "People & Body",
+ "subcategory": "person-role",
+ "sort_order": 352,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true,
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F473-1F3FB-200D-2640-FE0F",
+ "non_qualified": "1F473-1F3FB-200D-2640",
+ "image": "1f473-1f3fb-200d-2640-fe0f.png",
+ "sheet_x": 24,
+ "sheet_y": 0,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1F473-1F3FC-200D-2640-FE0F",
+ "non_qualified": "1F473-1F3FC-200D-2640",
+ "image": "1f473-1f3fc-200d-2640-fe0f.png",
+ "sheet_x": 24,
+ "sheet_y": 1,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1F473-1F3FD-200D-2640-FE0F",
+ "non_qualified": "1F473-1F3FD-200D-2640",
+ "image": "1f473-1f3fd-200d-2640-fe0f.png",
+ "sheet_x": 24,
+ "sheet_y": 2,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1F473-1F3FE-200D-2640-FE0F",
+ "non_qualified": "1F473-1F3FE-200D-2640",
+ "image": "1f473-1f3fe-200d-2640-fe0f.png",
+ "sheet_x": 24,
+ "sheet_y": 3,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1F473-1F3FF-200D-2640-FE0F",
+ "non_qualified": "1F473-1F3FF-200D-2640",
+ "image": "1f473-1f3ff-200d-2640-fe0f.png",
+ "sheet_x": 24,
+ "sheet_y": 4,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ }
+ },
+ {
+ "name": "MAN WEARING TURBAN",
+ "unified": "1F473-200D-2642-FE0F",
+ "non_qualified": "1F473-200D-2642",
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f473-200d-2642-fe0f.png",
+ "sheet_x": 24,
+ "sheet_y": 5,
+ "short_name": "man-wearing-turban",
+ "short_names": ["man-wearing-turban"],
+ "text": null,
+ "texts": null,
+ "category": "People & Body",
+ "subcategory": "person-role",
+ "sort_order": 351,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true,
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F473-1F3FB-200D-2642-FE0F",
+ "non_qualified": "1F473-1F3FB-200D-2642",
+ "image": "1f473-1f3fb-200d-2642-fe0f.png",
+ "sheet_x": 24,
+ "sheet_y": 6,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1F473-1F3FC-200D-2642-FE0F",
+ "non_qualified": "1F473-1F3FC-200D-2642",
+ "image": "1f473-1f3fc-200d-2642-fe0f.png",
+ "sheet_x": 24,
+ "sheet_y": 7,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1F473-1F3FD-200D-2642-FE0F",
+ "non_qualified": "1F473-1F3FD-200D-2642",
+ "image": "1f473-1f3fd-200d-2642-fe0f.png",
+ "sheet_x": 24,
+ "sheet_y": 8,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1F473-1F3FE-200D-2642-FE0F",
+ "non_qualified": "1F473-1F3FE-200D-2642",
+ "image": "1f473-1f3fe-200d-2642-fe0f.png",
+ "sheet_x": 24,
+ "sheet_y": 9,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1F473-1F3FF-200D-2642-FE0F",
+ "non_qualified": "1F473-1F3FF-200D-2642",
+ "image": "1f473-1f3ff-200d-2642-fe0f.png",
+ "sheet_x": 24,
+ "sheet_y": 10,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ },
+ "obsoletes": "1F473"
+ },
+ {
+ "name": "MAN WITH TURBAN",
+ "unified": "1F473",
+ "non_qualified": null,
+ "docomo": null,
+ "au": "EB15",
+ "softbank": "E517",
+ "google": "FE1A6",
+ "image": "1f473.png",
+ "sheet_x": 24,
+ "sheet_y": 11,
+ "short_name": "man_with_turban",
+ "short_names": ["man_with_turban"],
+ "text": null,
+ "texts": null,
+ "category": "People & Body",
+ "subcategory": "person-role",
+ "sort_order": 350,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true,
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F473-1F3FB",
+ "non_qualified": null,
+ "image": "1f473-1f3fb.png",
+ "sheet_x": 24,
+ "sheet_y": 12,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1F473-1F3FC",
+ "non_qualified": null,
+ "image": "1f473-1f3fc.png",
+ "sheet_x": 24,
+ "sheet_y": 13,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1F473-1F3FD",
+ "non_qualified": null,
+ "image": "1f473-1f3fd.png",
+ "sheet_x": 24,
+ "sheet_y": 14,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1F473-1F3FE",
+ "non_qualified": null,
+ "image": "1f473-1f3fe.png",
+ "sheet_x": 24,
+ "sheet_y": 15,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1F473-1F3FF",
+ "non_qualified": null,
+ "image": "1f473-1f3ff.png",
+ "sheet_x": 24,
+ "sheet_y": 16,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ },
+ "obsoleted_by": "1F473-200D-2642-FE0F"
+ },
+ {
+ "name": "OLDER MAN",
+ "unified": "1F474",
+ "non_qualified": null,
+ "docomo": null,
+ "au": "EB16",
+ "softbank": "E518",
+ "google": "FE1A7",
+ "image": "1f474.png",
+ "sheet_x": 24,
+ "sheet_y": 17,
+ "short_name": "older_man",
+ "short_names": ["older_man"],
+ "text": null,
+ "texts": null,
+ "category": "People & Body",
+ "subcategory": "person",
+ "sort_order": 254,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true,
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F474-1F3FB",
+ "non_qualified": null,
+ "image": "1f474-1f3fb.png",
+ "sheet_x": 24,
+ "sheet_y": 18,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1F474-1F3FC",
+ "non_qualified": null,
+ "image": "1f474-1f3fc.png",
+ "sheet_x": 24,
+ "sheet_y": 19,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1F474-1F3FD",
+ "non_qualified": null,
+ "image": "1f474-1f3fd.png",
+ "sheet_x": 24,
+ "sheet_y": 20,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1F474-1F3FE",
+ "non_qualified": null,
+ "image": "1f474-1f3fe.png",
+ "sheet_x": 24,
+ "sheet_y": 21,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1F474-1F3FF",
+ "non_qualified": null,
+ "image": "1f474-1f3ff.png",
+ "sheet_x": 24,
+ "sheet_y": 22,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ }
+ },
+ {
+ "name": "OLDER WOMAN",
+ "unified": "1F475",
+ "non_qualified": null,
+ "docomo": null,
+ "au": "EB17",
+ "softbank": "E519",
+ "google": "FE1A8",
+ "image": "1f475.png",
+ "sheet_x": 24,
+ "sheet_y": 23,
+ "short_name": "older_woman",
+ "short_names": ["older_woman"],
+ "text": null,
+ "texts": null,
+ "category": "People & Body",
+ "subcategory": "person",
+ "sort_order": 255,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true,
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F475-1F3FB",
+ "non_qualified": null,
+ "image": "1f475-1f3fb.png",
+ "sheet_x": 24,
+ "sheet_y": 24,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1F475-1F3FC",
+ "non_qualified": null,
+ "image": "1f475-1f3fc.png",
+ "sheet_x": 24,
+ "sheet_y": 25,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1F475-1F3FD",
+ "non_qualified": null,
+ "image": "1f475-1f3fd.png",
+ "sheet_x": 24,
+ "sheet_y": 26,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1F475-1F3FE",
+ "non_qualified": null,
+ "image": "1f475-1f3fe.png",
+ "sheet_x": 24,
+ "sheet_y": 27,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1F475-1F3FF",
+ "non_qualified": null,
+ "image": "1f475-1f3ff.png",
+ "sheet_x": 24,
+ "sheet_y": 28,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ }
+ },
+ {
+ "name": "BABY",
+ "unified": "1F476",
+ "non_qualified": null,
+ "docomo": null,
+ "au": "EB18",
+ "softbank": "E51A",
+ "google": "FE1A9",
+ "image": "1f476.png",
+ "sheet_x": 24,
+ "sheet_y": 29,
+ "short_name": "baby",
+ "short_names": ["baby"],
+ "text": null,
+ "texts": null,
+ "category": "People & Body",
+ "subcategory": "person",
+ "sort_order": 228,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true,
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F476-1F3FB",
+ "non_qualified": null,
+ "image": "1f476-1f3fb.png",
+ "sheet_x": 24,
+ "sheet_y": 30,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1F476-1F3FC",
+ "non_qualified": null,
+ "image": "1f476-1f3fc.png",
+ "sheet_x": 24,
+ "sheet_y": 31,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1F476-1F3FD",
+ "non_qualified": null,
+ "image": "1f476-1f3fd.png",
+ "sheet_x": 24,
+ "sheet_y": 32,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1F476-1F3FE",
+ "non_qualified": null,
+ "image": "1f476-1f3fe.png",
+ "sheet_x": 24,
+ "sheet_y": 33,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1F476-1F3FF",
+ "non_qualified": null,
+ "image": "1f476-1f3ff.png",
+ "sheet_x": 24,
+ "sheet_y": 34,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ }
+ },
+ {
+ "name": "WOMAN CONSTRUCTION WORKER",
+ "unified": "1F477-200D-2640-FE0F",
+ "non_qualified": "1F477-200D-2640",
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f477-200d-2640-fe0f.png",
+ "sheet_x": 24,
+ "sheet_y": 35,
+ "short_name": "female-construction-worker",
+ "short_names": ["female-construction-worker"],
+ "text": null,
+ "texts": null,
+ "category": "People & Body",
+ "subcategory": "person-role",
+ "sort_order": 346,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true,
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F477-1F3FB-200D-2640-FE0F",
+ "non_qualified": "1F477-1F3FB-200D-2640",
+ "image": "1f477-1f3fb-200d-2640-fe0f.png",
+ "sheet_x": 24,
+ "sheet_y": 36,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1F477-1F3FC-200D-2640-FE0F",
+ "non_qualified": "1F477-1F3FC-200D-2640",
+ "image": "1f477-1f3fc-200d-2640-fe0f.png",
+ "sheet_x": 24,
+ "sheet_y": 37,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1F477-1F3FD-200D-2640-FE0F",
+ "non_qualified": "1F477-1F3FD-200D-2640",
+ "image": "1f477-1f3fd-200d-2640-fe0f.png",
+ "sheet_x": 24,
+ "sheet_y": 38,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1F477-1F3FE-200D-2640-FE0F",
+ "non_qualified": "1F477-1F3FE-200D-2640",
+ "image": "1f477-1f3fe-200d-2640-fe0f.png",
+ "sheet_x": 24,
+ "sheet_y": 39,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1F477-1F3FF-200D-2640-FE0F",
+ "non_qualified": "1F477-1F3FF-200D-2640",
+ "image": "1f477-1f3ff-200d-2640-fe0f.png",
+ "sheet_x": 24,
+ "sheet_y": 40,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ }
+ },
+ {
+ "name": "MAN CONSTRUCTION WORKER",
+ "unified": "1F477-200D-2642-FE0F",
+ "non_qualified": "1F477-200D-2642",
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f477-200d-2642-fe0f.png",
+ "sheet_x": 24,
+ "sheet_y": 41,
+ "short_name": "male-construction-worker",
+ "short_names": ["male-construction-worker"],
+ "text": null,
+ "texts": null,
+ "category": "People & Body",
+ "subcategory": "person-role",
+ "sort_order": 345,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true,
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F477-1F3FB-200D-2642-FE0F",
+ "non_qualified": "1F477-1F3FB-200D-2642",
+ "image": "1f477-1f3fb-200d-2642-fe0f.png",
+ "sheet_x": 24,
+ "sheet_y": 42,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1F477-1F3FC-200D-2642-FE0F",
+ "non_qualified": "1F477-1F3FC-200D-2642",
+ "image": "1f477-1f3fc-200d-2642-fe0f.png",
+ "sheet_x": 24,
+ "sheet_y": 43,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1F477-1F3FD-200D-2642-FE0F",
+ "non_qualified": "1F477-1F3FD-200D-2642",
+ "image": "1f477-1f3fd-200d-2642-fe0f.png",
+ "sheet_x": 24,
+ "sheet_y": 44,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1F477-1F3FE-200D-2642-FE0F",
+ "non_qualified": "1F477-1F3FE-200D-2642",
+ "image": "1f477-1f3fe-200d-2642-fe0f.png",
+ "sheet_x": 24,
+ "sheet_y": 45,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1F477-1F3FF-200D-2642-FE0F",
+ "non_qualified": "1F477-1F3FF-200D-2642",
+ "image": "1f477-1f3ff-200d-2642-fe0f.png",
+ "sheet_x": 24,
+ "sheet_y": 46,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ },
+ "obsoletes": "1F477"
+ },
+ {
+ "name": "CONSTRUCTION WORKER",
+ "unified": "1F477",
+ "non_qualified": null,
+ "docomo": null,
+ "au": "EB19",
+ "softbank": "E51B",
+ "google": "FE1AA",
+ "image": "1f477.png",
+ "sheet_x": 24,
+ "sheet_y": 47,
+ "short_name": "construction_worker",
+ "short_names": ["construction_worker"],
+ "text": null,
+ "texts": null,
+ "category": "People & Body",
+ "subcategory": "person-role",
+ "sort_order": 344,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true,
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F477-1F3FB",
+ "non_qualified": null,
+ "image": "1f477-1f3fb.png",
+ "sheet_x": 24,
+ "sheet_y": 48,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1F477-1F3FC",
+ "non_qualified": null,
+ "image": "1f477-1f3fc.png",
+ "sheet_x": 24,
+ "sheet_y": 49,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1F477-1F3FD",
+ "non_qualified": null,
+ "image": "1f477-1f3fd.png",
+ "sheet_x": 24,
+ "sheet_y": 50,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1F477-1F3FE",
+ "non_qualified": null,
+ "image": "1f477-1f3fe.png",
+ "sheet_x": 24,
+ "sheet_y": 51,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1F477-1F3FF",
+ "non_qualified": null,
+ "image": "1f477-1f3ff.png",
+ "sheet_x": 24,
+ "sheet_y": 52,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ },
+ "obsoleted_by": "1F477-200D-2642-FE0F"
+ },
+ {
+ "name": "PRINCESS",
+ "unified": "1F478",
+ "non_qualified": null,
+ "docomo": null,
+ "au": "EB1A",
+ "softbank": "E51C",
+ "google": "FE1AB",
+ "image": "1f478.png",
+ "sheet_x": 24,
+ "sheet_y": 53,
+ "short_name": "princess",
+ "short_names": ["princess"],
+ "text": null,
+ "texts": null,
+ "category": "People & Body",
+ "subcategory": "person-role",
+ "sort_order": 349,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true,
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F478-1F3FB",
+ "non_qualified": null,
+ "image": "1f478-1f3fb.png",
+ "sheet_x": 24,
+ "sheet_y": 54,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1F478-1F3FC",
+ "non_qualified": null,
+ "image": "1f478-1f3fc.png",
+ "sheet_x": 24,
+ "sheet_y": 55,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1F478-1F3FD",
+ "non_qualified": null,
+ "image": "1f478-1f3fd.png",
+ "sheet_x": 24,
+ "sheet_y": 56,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1F478-1F3FE",
+ "non_qualified": null,
+ "image": "1f478-1f3fe.png",
+ "sheet_x": 24,
+ "sheet_y": 57,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1F478-1F3FF",
+ "non_qualified": null,
+ "image": "1f478-1f3ff.png",
+ "sheet_x": 24,
+ "sheet_y": 58,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ }
+ },
+ {
+ "name": "JAPANESE OGRE",
+ "unified": "1F479",
+ "non_qualified": null,
+ "docomo": null,
+ "au": "EB44",
+ "softbank": null,
+ "google": "FE1AC",
+ "image": "1f479.png",
+ "sheet_x": 24,
+ "sheet_y": 59,
+ "short_name": "japanese_ogre",
+ "short_names": ["japanese_ogre"],
+ "text": null,
+ "texts": null,
+ "category": "Smileys & Emotion",
+ "subcategory": "face-costume",
+ "sort_order": 110,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "JAPANESE GOBLIN",
+ "unified": "1F47A",
+ "non_qualified": null,
+ "docomo": null,
+ "au": "EB45",
+ "softbank": null,
+ "google": "FE1AD",
+ "image": "1f47a.png",
+ "sheet_x": 24,
+ "sheet_y": 60,
+ "short_name": "japanese_goblin",
+ "short_names": ["japanese_goblin"],
+ "text": null,
+ "texts": null,
+ "category": "Smileys & Emotion",
+ "subcategory": "face-costume",
+ "sort_order": 111,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "GHOST",
+ "unified": "1F47B",
+ "non_qualified": null,
+ "docomo": null,
+ "au": "E4CB",
+ "softbank": "E11B",
+ "google": "FE1AE",
+ "image": "1f47b.png",
+ "sheet_x": 25,
+ "sheet_y": 0,
+ "short_name": "ghost",
+ "short_names": ["ghost"],
+ "text": null,
+ "texts": null,
+ "category": "Smileys & Emotion",
+ "subcategory": "face-costume",
+ "sort_order": 112,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "BABY ANGEL",
+ "unified": "1F47C",
+ "non_qualified": null,
+ "docomo": null,
+ "au": "E5BF",
+ "softbank": "E04E",
+ "google": "FE1AF",
+ "image": "1f47c.png",
+ "sheet_x": 25,
+ "sheet_y": 1,
+ "short_name": "angel",
+ "short_names": ["angel"],
+ "text": null,
+ "texts": null,
+ "category": "People & Body",
+ "subcategory": "person-fantasy",
+ "sort_order": 368,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true,
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F47C-1F3FB",
+ "non_qualified": null,
+ "image": "1f47c-1f3fb.png",
+ "sheet_x": 25,
+ "sheet_y": 2,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1F47C-1F3FC",
+ "non_qualified": null,
+ "image": "1f47c-1f3fc.png",
+ "sheet_x": 25,
+ "sheet_y": 3,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1F47C-1F3FD",
+ "non_qualified": null,
+ "image": "1f47c-1f3fd.png",
+ "sheet_x": 25,
+ "sheet_y": 4,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1F47C-1F3FE",
+ "non_qualified": null,
+ "image": "1f47c-1f3fe.png",
+ "sheet_x": 25,
+ "sheet_y": 5,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1F47C-1F3FF",
+ "non_qualified": null,
+ "image": "1f47c-1f3ff.png",
+ "sheet_x": 25,
+ "sheet_y": 6,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ }
+ },
+ {
+ "name": "EXTRATERRESTRIAL ALIEN",
+ "unified": "1F47D",
+ "non_qualified": null,
+ "docomo": null,
+ "au": "E50E",
+ "softbank": "E10C",
+ "google": "FE1B0",
+ "image": "1f47d.png",
+ "sheet_x": 25,
+ "sheet_y": 7,
+ "short_name": "alien",
+ "short_names": ["alien"],
+ "text": null,
+ "texts": null,
+ "category": "Smileys & Emotion",
+ "subcategory": "face-costume",
+ "sort_order": 113,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "ALIEN MONSTER",
+ "unified": "1F47E",
+ "non_qualified": null,
+ "docomo": null,
+ "au": "E4EC",
+ "softbank": "E12B",
+ "google": "FE1B1",
+ "image": "1f47e.png",
+ "sheet_x": 25,
+ "sheet_y": 8,
+ "short_name": "space_invader",
+ "short_names": ["space_invader"],
+ "text": null,
+ "texts": null,
+ "category": "Smileys & Emotion",
+ "subcategory": "face-costume",
+ "sort_order": 114,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "IMP",
+ "unified": "1F47F",
+ "non_qualified": null,
+ "docomo": null,
+ "au": "E4EF",
+ "softbank": "E11A",
+ "google": "FE1B2",
+ "image": "1f47f.png",
+ "sheet_x": 25,
+ "sheet_y": 9,
+ "short_name": "imp",
+ "short_names": ["imp"],
+ "text": null,
+ "texts": null,
+ "category": "Smileys & Emotion",
+ "subcategory": "face-negative",
+ "sort_order": 105,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "SKULL",
+ "unified": "1F480",
+ "non_qualified": null,
+ "docomo": null,
+ "au": "E4F8",
+ "softbank": "E11C",
+ "google": "FE1B3",
+ "image": "1f480.png",
+ "sheet_x": 25,
+ "sheet_y": 10,
+ "short_name": "skull",
+ "short_names": ["skull"],
+ "text": null,
+ "texts": null,
+ "category": "Smileys & Emotion",
+ "subcategory": "face-negative",
+ "sort_order": 106,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "WOMAN TIPPING HAND",
+ "unified": "1F481-200D-2640-FE0F",
+ "non_qualified": "1F481-200D-2640",
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f481-200d-2640-fe0f.png",
+ "sheet_x": 25,
+ "sheet_y": 11,
+ "short_name": "woman-tipping-hand",
+ "short_names": ["woman-tipping-hand"],
+ "text": null,
+ "texts": null,
+ "category": "People & Body",
+ "subcategory": "person-gesture",
+ "sort_order": 270,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true,
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F481-1F3FB-200D-2640-FE0F",
+ "non_qualified": "1F481-1F3FB-200D-2640",
+ "image": "1f481-1f3fb-200d-2640-fe0f.png",
+ "sheet_x": 25,
+ "sheet_y": 12,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1F481-1F3FC-200D-2640-FE0F",
+ "non_qualified": "1F481-1F3FC-200D-2640",
+ "image": "1f481-1f3fc-200d-2640-fe0f.png",
+ "sheet_x": 25,
+ "sheet_y": 13,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1F481-1F3FD-200D-2640-FE0F",
+ "non_qualified": "1F481-1F3FD-200D-2640",
+ "image": "1f481-1f3fd-200d-2640-fe0f.png",
+ "sheet_x": 25,
+ "sheet_y": 14,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1F481-1F3FE-200D-2640-FE0F",
+ "non_qualified": "1F481-1F3FE-200D-2640",
+ "image": "1f481-1f3fe-200d-2640-fe0f.png",
+ "sheet_x": 25,
+ "sheet_y": 15,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1F481-1F3FF-200D-2640-FE0F",
+ "non_qualified": "1F481-1F3FF-200D-2640",
+ "image": "1f481-1f3ff-200d-2640-fe0f.png",
+ "sheet_x": 25,
+ "sheet_y": 16,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ },
+ "obsoletes": "1F481"
+ },
+ {
+ "name": "MAN TIPPING HAND",
+ "unified": "1F481-200D-2642-FE0F",
+ "non_qualified": "1F481-200D-2642",
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f481-200d-2642-fe0f.png",
+ "sheet_x": 25,
+ "sheet_y": 17,
+ "short_name": "man-tipping-hand",
+ "short_names": ["man-tipping-hand"],
+ "text": null,
+ "texts": null,
+ "category": "People & Body",
+ "subcategory": "person-gesture",
+ "sort_order": 269,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true,
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F481-1F3FB-200D-2642-FE0F",
+ "non_qualified": "1F481-1F3FB-200D-2642",
+ "image": "1f481-1f3fb-200d-2642-fe0f.png",
+ "sheet_x": 25,
+ "sheet_y": 18,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1F481-1F3FC-200D-2642-FE0F",
+ "non_qualified": "1F481-1F3FC-200D-2642",
+ "image": "1f481-1f3fc-200d-2642-fe0f.png",
+ "sheet_x": 25,
+ "sheet_y": 19,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1F481-1F3FD-200D-2642-FE0F",
+ "non_qualified": "1F481-1F3FD-200D-2642",
+ "image": "1f481-1f3fd-200d-2642-fe0f.png",
+ "sheet_x": 25,
+ "sheet_y": 20,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1F481-1F3FE-200D-2642-FE0F",
+ "non_qualified": "1F481-1F3FE-200D-2642",
+ "image": "1f481-1f3fe-200d-2642-fe0f.png",
+ "sheet_x": 25,
+ "sheet_y": 21,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1F481-1F3FF-200D-2642-FE0F",
+ "non_qualified": "1F481-1F3FF-200D-2642",
+ "image": "1f481-1f3ff-200d-2642-fe0f.png",
+ "sheet_x": 25,
+ "sheet_y": 22,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ }
+ },
+ {
+ "name": "INFORMATION DESK PERSON",
+ "unified": "1F481",
+ "non_qualified": null,
+ "docomo": null,
+ "au": null,
+ "softbank": "E253",
+ "google": "FE1B4",
+ "image": "1f481.png",
+ "sheet_x": 25,
+ "sheet_y": 23,
+ "short_name": "information_desk_person",
+ "short_names": ["information_desk_person"],
+ "text": null,
+ "texts": null,
+ "category": "People & Body",
+ "subcategory": "person-gesture",
+ "sort_order": 268,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true,
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F481-1F3FB",
+ "non_qualified": null,
+ "image": "1f481-1f3fb.png",
+ "sheet_x": 25,
+ "sheet_y": 24,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1F481-1F3FC",
+ "non_qualified": null,
+ "image": "1f481-1f3fc.png",
+ "sheet_x": 25,
+ "sheet_y": 25,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1F481-1F3FD",
+ "non_qualified": null,
+ "image": "1f481-1f3fd.png",
+ "sheet_x": 25,
+ "sheet_y": 26,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1F481-1F3FE",
+ "non_qualified": null,
+ "image": "1f481-1f3fe.png",
+ "sheet_x": 25,
+ "sheet_y": 27,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1F481-1F3FF",
+ "non_qualified": null,
+ "image": "1f481-1f3ff.png",
+ "sheet_x": 25,
+ "sheet_y": 28,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ },
+ "obsoleted_by": "1F481-200D-2640-FE0F"
+ },
+ {
+ "name": "WOMAN GUARD",
+ "unified": "1F482-200D-2640-FE0F",
+ "non_qualified": "1F482-200D-2640",
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f482-200d-2640-fe0f.png",
+ "sheet_x": 25,
+ "sheet_y": 29,
+ "short_name": "female-guard",
+ "short_names": ["female-guard"],
+ "text": null,
+ "texts": null,
+ "category": "People & Body",
+ "subcategory": "person-role",
+ "sort_order": 342,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true,
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F482-1F3FB-200D-2640-FE0F",
+ "non_qualified": "1F482-1F3FB-200D-2640",
+ "image": "1f482-1f3fb-200d-2640-fe0f.png",
+ "sheet_x": 25,
+ "sheet_y": 30,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1F482-1F3FC-200D-2640-FE0F",
+ "non_qualified": "1F482-1F3FC-200D-2640",
+ "image": "1f482-1f3fc-200d-2640-fe0f.png",
+ "sheet_x": 25,
+ "sheet_y": 31,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1F482-1F3FD-200D-2640-FE0F",
+ "non_qualified": "1F482-1F3FD-200D-2640",
+ "image": "1f482-1f3fd-200d-2640-fe0f.png",
+ "sheet_x": 25,
+ "sheet_y": 32,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1F482-1F3FE-200D-2640-FE0F",
+ "non_qualified": "1F482-1F3FE-200D-2640",
+ "image": "1f482-1f3fe-200d-2640-fe0f.png",
+ "sheet_x": 25,
+ "sheet_y": 33,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1F482-1F3FF-200D-2640-FE0F",
+ "non_qualified": "1F482-1F3FF-200D-2640",
+ "image": "1f482-1f3ff-200d-2640-fe0f.png",
+ "sheet_x": 25,
+ "sheet_y": 34,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ }
+ },
+ {
+ "name": "MAN GUARD",
+ "unified": "1F482-200D-2642-FE0F",
+ "non_qualified": "1F482-200D-2642",
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f482-200d-2642-fe0f.png",
+ "sheet_x": 25,
+ "sheet_y": 35,
+ "short_name": "male-guard",
+ "short_names": ["male-guard"],
+ "text": null,
+ "texts": null,
+ "category": "People & Body",
+ "subcategory": "person-role",
+ "sort_order": 341,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true,
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F482-1F3FB-200D-2642-FE0F",
+ "non_qualified": "1F482-1F3FB-200D-2642",
+ "image": "1f482-1f3fb-200d-2642-fe0f.png",
+ "sheet_x": 25,
+ "sheet_y": 36,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1F482-1F3FC-200D-2642-FE0F",
+ "non_qualified": "1F482-1F3FC-200D-2642",
+ "image": "1f482-1f3fc-200d-2642-fe0f.png",
+ "sheet_x": 25,
+ "sheet_y": 37,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1F482-1F3FD-200D-2642-FE0F",
+ "non_qualified": "1F482-1F3FD-200D-2642",
+ "image": "1f482-1f3fd-200d-2642-fe0f.png",
+ "sheet_x": 25,
+ "sheet_y": 38,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1F482-1F3FE-200D-2642-FE0F",
+ "non_qualified": "1F482-1F3FE-200D-2642",
+ "image": "1f482-1f3fe-200d-2642-fe0f.png",
+ "sheet_x": 25,
+ "sheet_y": 39,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1F482-1F3FF-200D-2642-FE0F",
+ "non_qualified": "1F482-1F3FF-200D-2642",
+ "image": "1f482-1f3ff-200d-2642-fe0f.png",
+ "sheet_x": 25,
+ "sheet_y": 40,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ },
+ "obsoletes": "1F482"
+ },
+ {
+ "name": "GUARDSMAN",
+ "unified": "1F482",
+ "non_qualified": null,
+ "docomo": null,
+ "au": null,
+ "softbank": "E51E",
+ "google": "FE1B5",
+ "image": "1f482.png",
+ "sheet_x": 25,
+ "sheet_y": 41,
+ "short_name": "guardsman",
+ "short_names": ["guardsman"],
+ "text": null,
+ "texts": null,
+ "category": "People & Body",
+ "subcategory": "person-role",
+ "sort_order": 340,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true,
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F482-1F3FB",
+ "non_qualified": null,
+ "image": "1f482-1f3fb.png",
+ "sheet_x": 25,
+ "sheet_y": 42,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1F482-1F3FC",
+ "non_qualified": null,
+ "image": "1f482-1f3fc.png",
+ "sheet_x": 25,
+ "sheet_y": 43,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1F482-1F3FD",
+ "non_qualified": null,
+ "image": "1f482-1f3fd.png",
+ "sheet_x": 25,
+ "sheet_y": 44,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1F482-1F3FE",
+ "non_qualified": null,
+ "image": "1f482-1f3fe.png",
+ "sheet_x": 25,
+ "sheet_y": 45,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1F482-1F3FF",
+ "non_qualified": null,
+ "image": "1f482-1f3ff.png",
+ "sheet_x": 25,
+ "sheet_y": 46,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ },
+ "obsoleted_by": "1F482-200D-2642-FE0F"
+ },
+ {
+ "name": "DANCER",
+ "unified": "1F483",
+ "non_qualified": null,
+ "docomo": null,
+ "au": "EB1C",
+ "softbank": "E51F",
+ "google": "FE1B6",
+ "image": "1f483.png",
+ "sheet_x": 25,
+ "sheet_y": 47,
+ "short_name": "dancer",
+ "short_names": ["dancer"],
+ "text": null,
+ "texts": null,
+ "category": "People & Body",
+ "subcategory": "person-activity",
+ "sort_order": 427,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true,
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F483-1F3FB",
+ "non_qualified": null,
+ "image": "1f483-1f3fb.png",
+ "sheet_x": 25,
+ "sheet_y": 48,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1F483-1F3FC",
+ "non_qualified": null,
+ "image": "1f483-1f3fc.png",
+ "sheet_x": 25,
+ "sheet_y": 49,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1F483-1F3FD",
+ "non_qualified": null,
+ "image": "1f483-1f3fd.png",
+ "sheet_x": 25,
+ "sheet_y": 50,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1F483-1F3FE",
+ "non_qualified": null,
+ "image": "1f483-1f3fe.png",
+ "sheet_x": 25,
+ "sheet_y": 51,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1F483-1F3FF",
+ "non_qualified": null,
+ "image": "1f483-1f3ff.png",
+ "sheet_x": 25,
+ "sheet_y": 52,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ }
+ },
+ {
+ "name": "LIPSTICK",
+ "unified": "1F484",
+ "non_qualified": null,
+ "docomo": "E710",
+ "au": "E509",
+ "softbank": "E31C",
+ "google": "FE195",
+ "image": "1f484.png",
+ "sheet_x": 25,
+ "sheet_y": 53,
+ "short_name": "lipstick",
+ "short_names": ["lipstick"],
+ "text": null,
+ "texts": null,
+ "category": "Objects",
+ "subcategory": "clothing",
+ "sort_order": 1167,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "NAIL POLISH",
+ "unified": "1F485",
+ "non_qualified": null,
+ "docomo": null,
+ "au": "EAA0",
+ "softbank": "E31D",
+ "google": "FE196",
+ "image": "1f485.png",
+ "sheet_x": 25,
+ "sheet_y": 54,
+ "short_name": "nail_care",
+ "short_names": ["nail_care"],
+ "text": null,
+ "texts": null,
+ "category": "People & Body",
+ "subcategory": "hand-prop",
+ "sort_order": 208,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true,
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F485-1F3FB",
+ "non_qualified": null,
+ "image": "1f485-1f3fb.png",
+ "sheet_x": 25,
+ "sheet_y": 55,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1F485-1F3FC",
+ "non_qualified": null,
+ "image": "1f485-1f3fc.png",
+ "sheet_x": 25,
+ "sheet_y": 56,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1F485-1F3FD",
+ "non_qualified": null,
+ "image": "1f485-1f3fd.png",
+ "sheet_x": 25,
+ "sheet_y": 57,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1F485-1F3FE",
+ "non_qualified": null,
+ "image": "1f485-1f3fe.png",
+ "sheet_x": 25,
+ "sheet_y": 58,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1F485-1F3FF",
+ "non_qualified": null,
+ "image": "1f485-1f3ff.png",
+ "sheet_x": 25,
+ "sheet_y": 59,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ }
+ },
+ {
+ "name": "WOMAN GETTING MASSAGE",
+ "unified": "1F486-200D-2640-FE0F",
+ "non_qualified": "1F486-200D-2640",
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f486-200d-2640-fe0f.png",
+ "sheet_x": 25,
+ "sheet_y": 60,
+ "short_name": "woman-getting-massage",
+ "short_names": ["woman-getting-massage"],
+ "text": null,
+ "texts": null,
+ "category": "People & Body",
+ "subcategory": "person-activity",
+ "sort_order": 402,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true,
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F486-1F3FB-200D-2640-FE0F",
+ "non_qualified": "1F486-1F3FB-200D-2640",
+ "image": "1f486-1f3fb-200d-2640-fe0f.png",
+ "sheet_x": 26,
+ "sheet_y": 0,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1F486-1F3FC-200D-2640-FE0F",
+ "non_qualified": "1F486-1F3FC-200D-2640",
+ "image": "1f486-1f3fc-200d-2640-fe0f.png",
+ "sheet_x": 26,
+ "sheet_y": 1,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1F486-1F3FD-200D-2640-FE0F",
+ "non_qualified": "1F486-1F3FD-200D-2640",
+ "image": "1f486-1f3fd-200d-2640-fe0f.png",
+ "sheet_x": 26,
+ "sheet_y": 2,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1F486-1F3FE-200D-2640-FE0F",
+ "non_qualified": "1F486-1F3FE-200D-2640",
+ "image": "1f486-1f3fe-200d-2640-fe0f.png",
+ "sheet_x": 26,
+ "sheet_y": 3,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1F486-1F3FF-200D-2640-FE0F",
+ "non_qualified": "1F486-1F3FF-200D-2640",
+ "image": "1f486-1f3ff-200d-2640-fe0f.png",
+ "sheet_x": 26,
+ "sheet_y": 4,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ },
+ "obsoletes": "1F486"
+ },
+ {
+ "name": "MAN GETTING MASSAGE",
+ "unified": "1F486-200D-2642-FE0F",
+ "non_qualified": "1F486-200D-2642",
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f486-200d-2642-fe0f.png",
+ "sheet_x": 26,
+ "sheet_y": 5,
+ "short_name": "man-getting-massage",
+ "short_names": ["man-getting-massage"],
+ "text": null,
+ "texts": null,
+ "category": "People & Body",
+ "subcategory": "person-activity",
+ "sort_order": 401,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true,
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F486-1F3FB-200D-2642-FE0F",
+ "non_qualified": "1F486-1F3FB-200D-2642",
+ "image": "1f486-1f3fb-200d-2642-fe0f.png",
+ "sheet_x": 26,
+ "sheet_y": 6,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1F486-1F3FC-200D-2642-FE0F",
+ "non_qualified": "1F486-1F3FC-200D-2642",
+ "image": "1f486-1f3fc-200d-2642-fe0f.png",
+ "sheet_x": 26,
+ "sheet_y": 7,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1F486-1F3FD-200D-2642-FE0F",
+ "non_qualified": "1F486-1F3FD-200D-2642",
+ "image": "1f486-1f3fd-200d-2642-fe0f.png",
+ "sheet_x": 26,
+ "sheet_y": 8,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1F486-1F3FE-200D-2642-FE0F",
+ "non_qualified": "1F486-1F3FE-200D-2642",
+ "image": "1f486-1f3fe-200d-2642-fe0f.png",
+ "sheet_x": 26,
+ "sheet_y": 9,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1F486-1F3FF-200D-2642-FE0F",
+ "non_qualified": "1F486-1F3FF-200D-2642",
+ "image": "1f486-1f3ff-200d-2642-fe0f.png",
+ "sheet_x": 26,
+ "sheet_y": 10,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ }
+ },
+ {
+ "name": "FACE MASSAGE",
+ "unified": "1F486",
+ "non_qualified": null,
+ "docomo": null,
+ "au": "E50B",
+ "softbank": "E31E",
+ "google": "FE197",
+ "image": "1f486.png",
+ "sheet_x": 26,
+ "sheet_y": 11,
+ "short_name": "massage",
+ "short_names": ["massage"],
+ "text": null,
+ "texts": null,
+ "category": "People & Body",
+ "subcategory": "person-activity",
+ "sort_order": 400,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true,
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F486-1F3FB",
+ "non_qualified": null,
+ "image": "1f486-1f3fb.png",
+ "sheet_x": 26,
+ "sheet_y": 12,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1F486-1F3FC",
+ "non_qualified": null,
+ "image": "1f486-1f3fc.png",
+ "sheet_x": 26,
+ "sheet_y": 13,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1F486-1F3FD",
+ "non_qualified": null,
+ "image": "1f486-1f3fd.png",
+ "sheet_x": 26,
+ "sheet_y": 14,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1F486-1F3FE",
+ "non_qualified": null,
+ "image": "1f486-1f3fe.png",
+ "sheet_x": 26,
+ "sheet_y": 15,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1F486-1F3FF",
+ "non_qualified": null,
+ "image": "1f486-1f3ff.png",
+ "sheet_x": 26,
+ "sheet_y": 16,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ },
+ "obsoleted_by": "1F486-200D-2640-FE0F"
+ },
+ {
+ "name": "WOMAN GETTING HAIRCUT",
+ "unified": "1F487-200D-2640-FE0F",
+ "non_qualified": "1F487-200D-2640",
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f487-200d-2640-fe0f.png",
+ "sheet_x": 26,
+ "sheet_y": 17,
+ "short_name": "woman-getting-haircut",
+ "short_names": ["woman-getting-haircut"],
+ "text": null,
+ "texts": null,
+ "category": "People & Body",
+ "subcategory": "person-activity",
+ "sort_order": 405,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true,
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F487-1F3FB-200D-2640-FE0F",
+ "non_qualified": "1F487-1F3FB-200D-2640",
+ "image": "1f487-1f3fb-200d-2640-fe0f.png",
+ "sheet_x": 26,
+ "sheet_y": 18,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1F487-1F3FC-200D-2640-FE0F",
+ "non_qualified": "1F487-1F3FC-200D-2640",
+ "image": "1f487-1f3fc-200d-2640-fe0f.png",
+ "sheet_x": 26,
+ "sheet_y": 19,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1F487-1F3FD-200D-2640-FE0F",
+ "non_qualified": "1F487-1F3FD-200D-2640",
+ "image": "1f487-1f3fd-200d-2640-fe0f.png",
+ "sheet_x": 26,
+ "sheet_y": 20,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1F487-1F3FE-200D-2640-FE0F",
+ "non_qualified": "1F487-1F3FE-200D-2640",
+ "image": "1f487-1f3fe-200d-2640-fe0f.png",
+ "sheet_x": 26,
+ "sheet_y": 21,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1F487-1F3FF-200D-2640-FE0F",
+ "non_qualified": "1F487-1F3FF-200D-2640",
+ "image": "1f487-1f3ff-200d-2640-fe0f.png",
+ "sheet_x": 26,
+ "sheet_y": 22,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ },
+ "obsoletes": "1F487"
+ },
+ {
+ "name": "MAN GETTING HAIRCUT",
+ "unified": "1F487-200D-2642-FE0F",
+ "non_qualified": "1F487-200D-2642",
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f487-200d-2642-fe0f.png",
+ "sheet_x": 26,
+ "sheet_y": 23,
+ "short_name": "man-getting-haircut",
+ "short_names": ["man-getting-haircut"],
+ "text": null,
+ "texts": null,
+ "category": "People & Body",
+ "subcategory": "person-activity",
+ "sort_order": 404,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true,
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F487-1F3FB-200D-2642-FE0F",
+ "non_qualified": "1F487-1F3FB-200D-2642",
+ "image": "1f487-1f3fb-200d-2642-fe0f.png",
+ "sheet_x": 26,
+ "sheet_y": 24,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1F487-1F3FC-200D-2642-FE0F",
+ "non_qualified": "1F487-1F3FC-200D-2642",
+ "image": "1f487-1f3fc-200d-2642-fe0f.png",
+ "sheet_x": 26,
+ "sheet_y": 25,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1F487-1F3FD-200D-2642-FE0F",
+ "non_qualified": "1F487-1F3FD-200D-2642",
+ "image": "1f487-1f3fd-200d-2642-fe0f.png",
+ "sheet_x": 26,
+ "sheet_y": 26,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1F487-1F3FE-200D-2642-FE0F",
+ "non_qualified": "1F487-1F3FE-200D-2642",
+ "image": "1f487-1f3fe-200d-2642-fe0f.png",
+ "sheet_x": 26,
+ "sheet_y": 27,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1F487-1F3FF-200D-2642-FE0F",
+ "non_qualified": "1F487-1F3FF-200D-2642",
+ "image": "1f487-1f3ff-200d-2642-fe0f.png",
+ "sheet_x": 26,
+ "sheet_y": 28,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ }
+ },
+ {
+ "name": "HAIRCUT",
+ "unified": "1F487",
+ "non_qualified": null,
+ "docomo": "E675",
+ "au": "EAA1",
+ "softbank": "E31F",
+ "google": "FE198",
+ "image": "1f487.png",
+ "sheet_x": 26,
+ "sheet_y": 29,
+ "short_name": "haircut",
+ "short_names": ["haircut"],
+ "text": null,
+ "texts": null,
+ "category": "People & Body",
+ "subcategory": "person-activity",
+ "sort_order": 403,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true,
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F487-1F3FB",
+ "non_qualified": null,
+ "image": "1f487-1f3fb.png",
+ "sheet_x": 26,
+ "sheet_y": 30,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1F487-1F3FC",
+ "non_qualified": null,
+ "image": "1f487-1f3fc.png",
+ "sheet_x": 26,
+ "sheet_y": 31,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1F487-1F3FD",
+ "non_qualified": null,
+ "image": "1f487-1f3fd.png",
+ "sheet_x": 26,
+ "sheet_y": 32,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1F487-1F3FE",
+ "non_qualified": null,
+ "image": "1f487-1f3fe.png",
+ "sheet_x": 26,
+ "sheet_y": 33,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1F487-1F3FF",
+ "non_qualified": null,
+ "image": "1f487-1f3ff.png",
+ "sheet_x": 26,
+ "sheet_y": 34,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ },
+ "obsoleted_by": "1F487-200D-2640-FE0F"
+ },
+ {
+ "name": "BARBER POLE",
+ "unified": "1F488",
+ "non_qualified": null,
+ "docomo": null,
+ "au": "EAA2",
+ "softbank": "E320",
+ "google": "FE199",
+ "image": "1f488.png",
+ "sheet_x": 26,
+ "sheet_y": 35,
+ "short_name": "barber",
+ "short_names": ["barber"],
+ "text": null,
+ "texts": null,
+ "category": "Travel & Places",
+ "subcategory": "place-other",
+ "sort_order": 884,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "SYRINGE",
+ "unified": "1F489",
+ "non_qualified": null,
+ "docomo": null,
+ "au": "E510",
+ "softbank": "E13B",
+ "google": "FE509",
+ "image": "1f489.png",
+ "sheet_x": 26,
+ "sheet_y": 36,
+ "short_name": "syringe",
+ "short_names": ["syringe"],
+ "text": null,
+ "texts": null,
+ "category": "Objects",
+ "subcategory": "medical",
+ "sort_order": 1343,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "PILL",
+ "unified": "1F48A",
+ "non_qualified": null,
+ "docomo": null,
+ "au": "EA9A",
+ "softbank": "E30F",
+ "google": "FE50A",
+ "image": "1f48a.png",
+ "sheet_x": 26,
+ "sheet_y": 37,
+ "short_name": "pill",
+ "short_names": ["pill"],
+ "text": null,
+ "texts": null,
+ "category": "Objects",
+ "subcategory": "medical",
+ "sort_order": 1345,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "KISS MARK",
+ "unified": "1F48B",
+ "non_qualified": null,
+ "docomo": "E6F9",
+ "au": "E4EB",
+ "softbank": "E003",
+ "google": "FE823",
+ "image": "1f48b.png",
+ "sheet_x": 26,
+ "sheet_y": 38,
+ "short_name": "kiss",
+ "short_names": ["kiss"],
+ "text": null,
+ "texts": null,
+ "category": "Smileys & Emotion",
+ "subcategory": "emotion",
+ "sort_order": 153,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "LOVE LETTER",
+ "unified": "1F48C",
+ "non_qualified": null,
+ "docomo": "E717",
+ "au": "EB78",
+ "softbank": null,
+ "google": "FE824",
+ "image": "1f48c.png",
+ "sheet_x": 26,
+ "sheet_y": 39,
+ "short_name": "love_letter",
+ "short_names": ["love_letter"],
+ "text": null,
+ "texts": null,
+ "category": "Smileys & Emotion",
+ "subcategory": "heart",
+ "sort_order": 128,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "RING",
+ "unified": "1F48D",
+ "non_qualified": null,
+ "docomo": "E71B",
+ "au": "E514",
+ "softbank": "E034",
+ "google": "FE825",
+ "image": "1f48d.png",
+ "sheet_x": 26,
+ "sheet_y": 40,
+ "short_name": "ring",
+ "short_names": ["ring"],
+ "text": null,
+ "texts": null,
+ "category": "Objects",
+ "subcategory": "clothing",
+ "sort_order": 1168,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "GEM STONE",
+ "unified": "1F48E",
+ "non_qualified": null,
+ "docomo": "E71B",
+ "au": "E514",
+ "softbank": "E035",
+ "google": "FE826",
+ "image": "1f48e.png",
+ "sheet_x": 26,
+ "sheet_y": 41,
+ "short_name": "gem",
+ "short_names": ["gem"],
+ "text": null,
+ "texts": null,
+ "category": "Objects",
+ "subcategory": "clothing",
+ "sort_order": 1169,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "KISS",
+ "unified": "1F48F",
+ "non_qualified": null,
+ "docomo": "E6F9",
+ "au": "E5CA",
+ "softbank": "E111",
+ "google": "FE827",
+ "image": "1f48f.png",
+ "sheet_x": 26,
+ "sheet_y": 42,
+ "short_name": "couplekiss",
+ "short_names": ["couplekiss"],
+ "text": null,
+ "texts": null,
+ "category": "People & Body",
+ "subcategory": "family",
+ "sort_order": 491,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true,
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F48F-1F3FB",
+ "non_qualified": null,
+ "image": "1f48f-1f3fb.png",
+ "sheet_x": 26,
+ "sheet_y": 43,
+ "added_in": "13.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1F48F-1F3FC",
+ "non_qualified": null,
+ "image": "1f48f-1f3fc.png",
+ "sheet_x": 26,
+ "sheet_y": 44,
+ "added_in": "13.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1F48F-1F3FD",
+ "non_qualified": null,
+ "image": "1f48f-1f3fd.png",
+ "sheet_x": 26,
+ "sheet_y": 45,
+ "added_in": "13.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1F48F-1F3FE",
+ "non_qualified": null,
+ "image": "1f48f-1f3fe.png",
+ "sheet_x": 26,
+ "sheet_y": 46,
+ "added_in": "13.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1F48F-1F3FF",
+ "non_qualified": null,
+ "image": "1f48f-1f3ff.png",
+ "sheet_x": 26,
+ "sheet_y": 47,
+ "added_in": "13.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FB-1F3FC": {
+ "unified": "1F9D1-1F3FB-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FC",
+ "non_qualified": "1F9D1-1F3FB-200D-2764-200D-1F48B-200D-1F9D1-1F3FC",
+ "image": "1f9d1-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fc.png",
+ "sheet_x": 26,
+ "sheet_y": 48,
+ "added_in": "13.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FB-1F3FD": {
+ "unified": "1F9D1-1F3FB-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FD",
+ "non_qualified": "1F9D1-1F3FB-200D-2764-200D-1F48B-200D-1F9D1-1F3FD",
+ "image": "1f9d1-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fd.png",
+ "sheet_x": 26,
+ "sheet_y": 49,
+ "added_in": "13.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FB-1F3FE": {
+ "unified": "1F9D1-1F3FB-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FE",
+ "non_qualified": "1F9D1-1F3FB-200D-2764-200D-1F48B-200D-1F9D1-1F3FE",
+ "image": "1f9d1-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fe.png",
+ "sheet_x": 26,
+ "sheet_y": 50,
+ "added_in": "13.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FB-1F3FF": {
+ "unified": "1F9D1-1F3FB-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FF",
+ "non_qualified": "1F9D1-1F3FB-200D-2764-200D-1F48B-200D-1F9D1-1F3FF",
+ "image": "1f9d1-1f3fb-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3ff.png",
+ "sheet_x": 26,
+ "sheet_y": 51,
+ "added_in": "13.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC-1F3FB": {
+ "unified": "1F9D1-1F3FC-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FB",
+ "non_qualified": "1F9D1-1F3FC-200D-2764-200D-1F48B-200D-1F9D1-1F3FB",
+ "image": "1f9d1-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fb.png",
+ "sheet_x": 26,
+ "sheet_y": 52,
+ "added_in": "13.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC-1F3FD": {
+ "unified": "1F9D1-1F3FC-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FD",
+ "non_qualified": "1F9D1-1F3FC-200D-2764-200D-1F48B-200D-1F9D1-1F3FD",
+ "image": "1f9d1-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fd.png",
+ "sheet_x": 26,
+ "sheet_y": 53,
+ "added_in": "13.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC-1F3FE": {
+ "unified": "1F9D1-1F3FC-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FE",
+ "non_qualified": "1F9D1-1F3FC-200D-2764-200D-1F48B-200D-1F9D1-1F3FE",
+ "image": "1f9d1-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fe.png",
+ "sheet_x": 26,
+ "sheet_y": 54,
+ "added_in": "13.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC-1F3FF": {
+ "unified": "1F9D1-1F3FC-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FF",
+ "non_qualified": "1F9D1-1F3FC-200D-2764-200D-1F48B-200D-1F9D1-1F3FF",
+ "image": "1f9d1-1f3fc-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3ff.png",
+ "sheet_x": 26,
+ "sheet_y": 55,
+ "added_in": "13.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD-1F3FB": {
+ "unified": "1F9D1-1F3FD-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FB",
+ "non_qualified": "1F9D1-1F3FD-200D-2764-200D-1F48B-200D-1F9D1-1F3FB",
+ "image": "1f9d1-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fb.png",
+ "sheet_x": 26,
+ "sheet_y": 56,
+ "added_in": "13.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD-1F3FC": {
+ "unified": "1F9D1-1F3FD-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FC",
+ "non_qualified": "1F9D1-1F3FD-200D-2764-200D-1F48B-200D-1F9D1-1F3FC",
+ "image": "1f9d1-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fc.png",
+ "sheet_x": 26,
+ "sheet_y": 57,
+ "added_in": "13.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD-1F3FE": {
+ "unified": "1F9D1-1F3FD-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FE",
+ "non_qualified": "1F9D1-1F3FD-200D-2764-200D-1F48B-200D-1F9D1-1F3FE",
+ "image": "1f9d1-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fe.png",
+ "sheet_x": 26,
+ "sheet_y": 58,
+ "added_in": "13.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD-1F3FF": {
+ "unified": "1F9D1-1F3FD-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FF",
+ "non_qualified": "1F9D1-1F3FD-200D-2764-200D-1F48B-200D-1F9D1-1F3FF",
+ "image": "1f9d1-1f3fd-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3ff.png",
+ "sheet_x": 26,
+ "sheet_y": 59,
+ "added_in": "13.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE-1F3FB": {
+ "unified": "1F9D1-1F3FE-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FB",
+ "non_qualified": "1F9D1-1F3FE-200D-2764-200D-1F48B-200D-1F9D1-1F3FB",
+ "image": "1f9d1-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fb.png",
+ "sheet_x": 26,
+ "sheet_y": 60,
+ "added_in": "13.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE-1F3FC": {
+ "unified": "1F9D1-1F3FE-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FC",
+ "non_qualified": "1F9D1-1F3FE-200D-2764-200D-1F48B-200D-1F9D1-1F3FC",
+ "image": "1f9d1-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fc.png",
+ "sheet_x": 27,
+ "sheet_y": 0,
+ "added_in": "13.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE-1F3FD": {
+ "unified": "1F9D1-1F3FE-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FD",
+ "non_qualified": "1F9D1-1F3FE-200D-2764-200D-1F48B-200D-1F9D1-1F3FD",
+ "image": "1f9d1-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fd.png",
+ "sheet_x": 27,
+ "sheet_y": 1,
+ "added_in": "13.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE-1F3FF": {
+ "unified": "1F9D1-1F3FE-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FF",
+ "non_qualified": "1F9D1-1F3FE-200D-2764-200D-1F48B-200D-1F9D1-1F3FF",
+ "image": "1f9d1-1f3fe-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3ff.png",
+ "sheet_x": 27,
+ "sheet_y": 2,
+ "added_in": "13.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF-1F3FB": {
+ "unified": "1F9D1-1F3FF-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FB",
+ "non_qualified": "1F9D1-1F3FF-200D-2764-200D-1F48B-200D-1F9D1-1F3FB",
+ "image": "1f9d1-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fb.png",
+ "sheet_x": 27,
+ "sheet_y": 3,
+ "added_in": "13.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF-1F3FC": {
+ "unified": "1F9D1-1F3FF-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FC",
+ "non_qualified": "1F9D1-1F3FF-200D-2764-200D-1F48B-200D-1F9D1-1F3FC",
+ "image": "1f9d1-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fc.png",
+ "sheet_x": 27,
+ "sheet_y": 4,
+ "added_in": "13.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF-1F3FD": {
+ "unified": "1F9D1-1F3FF-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FD",
+ "non_qualified": "1F9D1-1F3FF-200D-2764-200D-1F48B-200D-1F9D1-1F3FD",
+ "image": "1f9d1-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fd.png",
+ "sheet_x": 27,
+ "sheet_y": 5,
+ "added_in": "13.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF-1F3FE": {
+ "unified": "1F9D1-1F3FF-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FE",
+ "non_qualified": "1F9D1-1F3FF-200D-2764-200D-1F48B-200D-1F9D1-1F3FE",
+ "image": "1f9d1-1f3ff-200d-2764-fe0f-200d-1f48b-200d-1f9d1-1f3fe.png",
+ "sheet_x": 27,
+ "sheet_y": 6,
+ "added_in": "13.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ }
+ },
+ {
+ "name": "BOUQUET",
+ "unified": "1F490",
+ "non_qualified": null,
+ "docomo": null,
+ "au": "EA95",
+ "softbank": "E306",
+ "google": "FE828",
+ "image": "1f490.png",
+ "sheet_x": 27,
+ "sheet_y": 7,
+ "short_name": "bouquet",
+ "short_names": ["bouquet"],
+ "text": null,
+ "texts": null,
+ "category": "Animals & Nature",
+ "subcategory": "plant-flower",
+ "sort_order": 659,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "COUPLE WITH HEART",
+ "unified": "1F491",
+ "non_qualified": null,
+ "docomo": "E6ED",
+ "au": "EADA",
+ "softbank": "E425",
+ "google": "FE829",
+ "image": "1f491.png",
+ "sheet_x": 27,
+ "sheet_y": 8,
+ "short_name": "couple_with_heart",
+ "short_names": ["couple_with_heart"],
+ "text": null,
+ "texts": null,
+ "category": "People & Body",
+ "subcategory": "family",
+ "sort_order": 495,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true,
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F491-1F3FB",
+ "non_qualified": null,
+ "image": "1f491-1f3fb.png",
+ "sheet_x": 27,
+ "sheet_y": 9,
+ "added_in": "13.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1F491-1F3FC",
+ "non_qualified": null,
+ "image": "1f491-1f3fc.png",
+ "sheet_x": 27,
+ "sheet_y": 10,
+ "added_in": "13.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1F491-1F3FD",
+ "non_qualified": null,
+ "image": "1f491-1f3fd.png",
+ "sheet_x": 27,
+ "sheet_y": 11,
+ "added_in": "13.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1F491-1F3FE",
+ "non_qualified": null,
+ "image": "1f491-1f3fe.png",
+ "sheet_x": 27,
+ "sheet_y": 12,
+ "added_in": "13.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1F491-1F3FF",
+ "non_qualified": null,
+ "image": "1f491-1f3ff.png",
+ "sheet_x": 27,
+ "sheet_y": 13,
+ "added_in": "13.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FB-1F3FC": {
+ "unified": "1F9D1-1F3FB-200D-2764-FE0F-200D-1F9D1-1F3FC",
+ "non_qualified": "1F9D1-1F3FB-200D-2764-200D-1F9D1-1F3FC",
+ "image": "1f9d1-1f3fb-200d-2764-fe0f-200d-1f9d1-1f3fc.png",
+ "sheet_x": 27,
+ "sheet_y": 14,
+ "added_in": "13.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FB-1F3FD": {
+ "unified": "1F9D1-1F3FB-200D-2764-FE0F-200D-1F9D1-1F3FD",
+ "non_qualified": "1F9D1-1F3FB-200D-2764-200D-1F9D1-1F3FD",
+ "image": "1f9d1-1f3fb-200d-2764-fe0f-200d-1f9d1-1f3fd.png",
+ "sheet_x": 27,
+ "sheet_y": 15,
+ "added_in": "13.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FB-1F3FE": {
+ "unified": "1F9D1-1F3FB-200D-2764-FE0F-200D-1F9D1-1F3FE",
+ "non_qualified": "1F9D1-1F3FB-200D-2764-200D-1F9D1-1F3FE",
+ "image": "1f9d1-1f3fb-200d-2764-fe0f-200d-1f9d1-1f3fe.png",
+ "sheet_x": 27,
+ "sheet_y": 16,
+ "added_in": "13.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FB-1F3FF": {
+ "unified": "1F9D1-1F3FB-200D-2764-FE0F-200D-1F9D1-1F3FF",
+ "non_qualified": "1F9D1-1F3FB-200D-2764-200D-1F9D1-1F3FF",
+ "image": "1f9d1-1f3fb-200d-2764-fe0f-200d-1f9d1-1f3ff.png",
+ "sheet_x": 27,
+ "sheet_y": 17,
+ "added_in": "13.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC-1F3FB": {
+ "unified": "1F9D1-1F3FC-200D-2764-FE0F-200D-1F9D1-1F3FB",
+ "non_qualified": "1F9D1-1F3FC-200D-2764-200D-1F9D1-1F3FB",
+ "image": "1f9d1-1f3fc-200d-2764-fe0f-200d-1f9d1-1f3fb.png",
+ "sheet_x": 27,
+ "sheet_y": 18,
+ "added_in": "13.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC-1F3FD": {
+ "unified": "1F9D1-1F3FC-200D-2764-FE0F-200D-1F9D1-1F3FD",
+ "non_qualified": "1F9D1-1F3FC-200D-2764-200D-1F9D1-1F3FD",
+ "image": "1f9d1-1f3fc-200d-2764-fe0f-200d-1f9d1-1f3fd.png",
+ "sheet_x": 27,
+ "sheet_y": 19,
+ "added_in": "13.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC-1F3FE": {
+ "unified": "1F9D1-1F3FC-200D-2764-FE0F-200D-1F9D1-1F3FE",
+ "non_qualified": "1F9D1-1F3FC-200D-2764-200D-1F9D1-1F3FE",
+ "image": "1f9d1-1f3fc-200d-2764-fe0f-200d-1f9d1-1f3fe.png",
+ "sheet_x": 27,
+ "sheet_y": 20,
+ "added_in": "13.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC-1F3FF": {
+ "unified": "1F9D1-1F3FC-200D-2764-FE0F-200D-1F9D1-1F3FF",
+ "non_qualified": "1F9D1-1F3FC-200D-2764-200D-1F9D1-1F3FF",
+ "image": "1f9d1-1f3fc-200d-2764-fe0f-200d-1f9d1-1f3ff.png",
+ "sheet_x": 27,
+ "sheet_y": 21,
+ "added_in": "13.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD-1F3FB": {
+ "unified": "1F9D1-1F3FD-200D-2764-FE0F-200D-1F9D1-1F3FB",
+ "non_qualified": "1F9D1-1F3FD-200D-2764-200D-1F9D1-1F3FB",
+ "image": "1f9d1-1f3fd-200d-2764-fe0f-200d-1f9d1-1f3fb.png",
+ "sheet_x": 27,
+ "sheet_y": 22,
+ "added_in": "13.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD-1F3FC": {
+ "unified": "1F9D1-1F3FD-200D-2764-FE0F-200D-1F9D1-1F3FC",
+ "non_qualified": "1F9D1-1F3FD-200D-2764-200D-1F9D1-1F3FC",
+ "image": "1f9d1-1f3fd-200d-2764-fe0f-200d-1f9d1-1f3fc.png",
+ "sheet_x": 27,
+ "sheet_y": 23,
+ "added_in": "13.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD-1F3FE": {
+ "unified": "1F9D1-1F3FD-200D-2764-FE0F-200D-1F9D1-1F3FE",
+ "non_qualified": "1F9D1-1F3FD-200D-2764-200D-1F9D1-1F3FE",
+ "image": "1f9d1-1f3fd-200d-2764-fe0f-200d-1f9d1-1f3fe.png",
+ "sheet_x": 27,
+ "sheet_y": 24,
+ "added_in": "13.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD-1F3FF": {
+ "unified": "1F9D1-1F3FD-200D-2764-FE0F-200D-1F9D1-1F3FF",
+ "non_qualified": "1F9D1-1F3FD-200D-2764-200D-1F9D1-1F3FF",
+ "image": "1f9d1-1f3fd-200d-2764-fe0f-200d-1f9d1-1f3ff.png",
+ "sheet_x": 27,
+ "sheet_y": 25,
+ "added_in": "13.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE-1F3FB": {
+ "unified": "1F9D1-1F3FE-200D-2764-FE0F-200D-1F9D1-1F3FB",
+ "non_qualified": "1F9D1-1F3FE-200D-2764-200D-1F9D1-1F3FB",
+ "image": "1f9d1-1f3fe-200d-2764-fe0f-200d-1f9d1-1f3fb.png",
+ "sheet_x": 27,
+ "sheet_y": 26,
+ "added_in": "13.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE-1F3FC": {
+ "unified": "1F9D1-1F3FE-200D-2764-FE0F-200D-1F9D1-1F3FC",
+ "non_qualified": "1F9D1-1F3FE-200D-2764-200D-1F9D1-1F3FC",
+ "image": "1f9d1-1f3fe-200d-2764-fe0f-200d-1f9d1-1f3fc.png",
+ "sheet_x": 27,
+ "sheet_y": 27,
+ "added_in": "13.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE-1F3FD": {
+ "unified": "1F9D1-1F3FE-200D-2764-FE0F-200D-1F9D1-1F3FD",
+ "non_qualified": "1F9D1-1F3FE-200D-2764-200D-1F9D1-1F3FD",
+ "image": "1f9d1-1f3fe-200d-2764-fe0f-200d-1f9d1-1f3fd.png",
+ "sheet_x": 27,
+ "sheet_y": 28,
+ "added_in": "13.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE-1F3FF": {
+ "unified": "1F9D1-1F3FE-200D-2764-FE0F-200D-1F9D1-1F3FF",
+ "non_qualified": "1F9D1-1F3FE-200D-2764-200D-1F9D1-1F3FF",
+ "image": "1f9d1-1f3fe-200d-2764-fe0f-200d-1f9d1-1f3ff.png",
+ "sheet_x": 27,
+ "sheet_y": 29,
+ "added_in": "13.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF-1F3FB": {
+ "unified": "1F9D1-1F3FF-200D-2764-FE0F-200D-1F9D1-1F3FB",
+ "non_qualified": "1F9D1-1F3FF-200D-2764-200D-1F9D1-1F3FB",
+ "image": "1f9d1-1f3ff-200d-2764-fe0f-200d-1f9d1-1f3fb.png",
+ "sheet_x": 27,
+ "sheet_y": 30,
+ "added_in": "13.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF-1F3FC": {
+ "unified": "1F9D1-1F3FF-200D-2764-FE0F-200D-1F9D1-1F3FC",
+ "non_qualified": "1F9D1-1F3FF-200D-2764-200D-1F9D1-1F3FC",
+ "image": "1f9d1-1f3ff-200d-2764-fe0f-200d-1f9d1-1f3fc.png",
+ "sheet_x": 27,
+ "sheet_y": 31,
+ "added_in": "13.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF-1F3FD": {
+ "unified": "1F9D1-1F3FF-200D-2764-FE0F-200D-1F9D1-1F3FD",
+ "non_qualified": "1F9D1-1F3FF-200D-2764-200D-1F9D1-1F3FD",
+ "image": "1f9d1-1f3ff-200d-2764-fe0f-200d-1f9d1-1f3fd.png",
+ "sheet_x": 27,
+ "sheet_y": 32,
+ "added_in": "13.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF-1F3FE": {
+ "unified": "1F9D1-1F3FF-200D-2764-FE0F-200D-1F9D1-1F3FE",
+ "non_qualified": "1F9D1-1F3FF-200D-2764-200D-1F9D1-1F3FE",
+ "image": "1f9d1-1f3ff-200d-2764-fe0f-200d-1f9d1-1f3fe.png",
+ "sheet_x": 27,
+ "sheet_y": 33,
+ "added_in": "13.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ }
+ },
+ {
+ "name": "WEDDING",
+ "unified": "1F492",
+ "non_qualified": null,
+ "docomo": null,
+ "au": "E5BB",
+ "softbank": "E43D",
+ "google": "FE82A",
+ "image": "1f492.png",
+ "sheet_x": 27,
+ "sheet_y": 34,
+ "short_name": "wedding",
+ "short_names": ["wedding"],
+ "text": null,
+ "texts": null,
+ "category": "Travel & Places",
+ "subcategory": "place-building",
+ "sort_order": 860,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "BEATING HEART",
+ "unified": "1F493",
+ "non_qualified": null,
+ "docomo": "E6ED",
+ "au": "EB75",
+ "softbank": "E327",
+ "google": "FEB0D",
+ "image": "1f493.png",
+ "sheet_x": 27,
+ "sheet_y": 35,
+ "short_name": "heartbeat",
+ "short_names": ["heartbeat"],
+ "text": null,
+ "texts": null,
+ "category": "Smileys & Emotion",
+ "subcategory": "heart",
+ "sort_order": 133,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "BROKEN HEART",
+ "unified": "1F494",
+ "non_qualified": null,
+ "docomo": "E6EE",
+ "au": "E477",
+ "softbank": "E023",
+ "google": "FEB0E",
+ "image": "1f494.png",
+ "sheet_x": 27,
+ "sheet_y": 36,
+ "short_name": "broken_heart",
+ "short_names": ["broken_heart"],
+ "text": "3",
+ "texts": ["3"],
+ "category": "Smileys & Emotion",
+ "subcategory": "heart",
+ "sort_order": 138,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "TWO HEARTS",
+ "unified": "1F495",
+ "non_qualified": null,
+ "docomo": "E6EF",
+ "au": "E478",
+ "softbank": null,
+ "google": "FEB0F",
+ "image": "1f495.png",
+ "sheet_x": 27,
+ "sheet_y": 37,
+ "short_name": "two_hearts",
+ "short_names": ["two_hearts"],
+ "text": null,
+ "texts": null,
+ "category": "Smileys & Emotion",
+ "subcategory": "heart",
+ "sort_order": 135,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "SPARKLING HEART",
+ "unified": "1F496",
+ "non_qualified": null,
+ "docomo": "E6EC",
+ "au": "EAA6",
+ "softbank": null,
+ "google": "FEB10",
+ "image": "1f496.png",
+ "sheet_x": 27,
+ "sheet_y": 38,
+ "short_name": "sparkling_heart",
+ "short_names": ["sparkling_heart"],
+ "text": null,
+ "texts": null,
+ "category": "Smileys & Emotion",
+ "subcategory": "heart",
+ "sort_order": 131,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "GROWING HEART",
+ "unified": "1F497",
+ "non_qualified": null,
+ "docomo": "E6ED",
+ "au": "EB75",
+ "softbank": "E328",
+ "google": "FEB11",
+ "image": "1f497.png",
+ "sheet_x": 27,
+ "sheet_y": 39,
+ "short_name": "heartpulse",
+ "short_names": ["heartpulse"],
+ "text": null,
+ "texts": null,
+ "category": "Smileys & Emotion",
+ "subcategory": "heart",
+ "sort_order": 132,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "HEART WITH ARROW",
+ "unified": "1F498",
+ "non_qualified": null,
+ "docomo": "E6EC",
+ "au": "E4EA",
+ "softbank": "E329",
+ "google": "FEB12",
+ "image": "1f498.png",
+ "sheet_x": 27,
+ "sheet_y": 40,
+ "short_name": "cupid",
+ "short_names": ["cupid"],
+ "text": null,
+ "texts": null,
+ "category": "Smileys & Emotion",
+ "subcategory": "heart",
+ "sort_order": 129,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "BLUE HEART",
+ "unified": "1F499",
+ "non_qualified": null,
+ "docomo": "E6EC",
+ "au": "EAA7",
+ "softbank": "E32A",
+ "google": "FEB13",
+ "image": "1f499.png",
+ "sheet_x": 27,
+ "sheet_y": 41,
+ "short_name": "blue_heart",
+ "short_names": ["blue_heart"],
+ "text": "<3",
+ "texts": null,
+ "category": "Smileys & Emotion",
+ "subcategory": "heart",
+ "sort_order": 146,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "GREEN HEART",
+ "unified": "1F49A",
+ "non_qualified": null,
+ "docomo": "E6EC",
+ "au": "EAA8",
+ "softbank": "E32B",
+ "google": "FEB14",
+ "image": "1f49a.png",
+ "sheet_x": 27,
+ "sheet_y": 42,
+ "short_name": "green_heart",
+ "short_names": ["green_heart"],
+ "text": "<3",
+ "texts": null,
+ "category": "Smileys & Emotion",
+ "subcategory": "heart",
+ "sort_order": 145,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "YELLOW HEART",
+ "unified": "1F49B",
+ "non_qualified": null,
+ "docomo": "E6EC",
+ "au": "EAA9",
+ "softbank": "E32C",
+ "google": "FEB15",
+ "image": "1f49b.png",
+ "sheet_x": 27,
+ "sheet_y": 43,
+ "short_name": "yellow_heart",
+ "short_names": ["yellow_heart"],
+ "text": "<3",
+ "texts": null,
+ "category": "Smileys & Emotion",
+ "subcategory": "heart",
+ "sort_order": 144,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "PURPLE HEART",
+ "unified": "1F49C",
+ "non_qualified": null,
+ "docomo": "E6EC",
+ "au": "EAAA",
+ "softbank": "E32D",
+ "google": "FEB16",
+ "image": "1f49c.png",
+ "sheet_x": 27,
+ "sheet_y": 44,
+ "short_name": "purple_heart",
+ "short_names": ["purple_heart"],
+ "text": "<3",
+ "texts": null,
+ "category": "Smileys & Emotion",
+ "subcategory": "heart",
+ "sort_order": 148,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "HEART WITH RIBBON",
+ "unified": "1F49D",
+ "non_qualified": null,
+ "docomo": "E6EC",
+ "au": "EB54",
+ "softbank": "E437",
+ "google": "FEB17",
+ "image": "1f49d.png",
+ "sheet_x": 27,
+ "sheet_y": 45,
+ "short_name": "gift_heart",
+ "short_names": ["gift_heart"],
+ "text": null,
+ "texts": null,
+ "category": "Smileys & Emotion",
+ "subcategory": "heart",
+ "sort_order": 130,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "REVOLVING HEARTS",
+ "unified": "1F49E",
+ "non_qualified": null,
+ "docomo": "E6ED",
+ "au": "E5AF",
+ "softbank": null,
+ "google": "FEB18",
+ "image": "1f49e.png",
+ "sheet_x": 27,
+ "sheet_y": 46,
+ "short_name": "revolving_hearts",
+ "short_names": ["revolving_hearts"],
+ "text": null,
+ "texts": null,
+ "category": "Smileys & Emotion",
+ "subcategory": "heart",
+ "sort_order": 134,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "HEART DECORATION",
+ "unified": "1F49F",
+ "non_qualified": null,
+ "docomo": "E6F8",
+ "au": "E595",
+ "softbank": "E204",
+ "google": "FEB19",
+ "image": "1f49f.png",
+ "sheet_x": 27,
+ "sheet_y": 47,
+ "short_name": "heart_decoration",
+ "short_names": ["heart_decoration"],
+ "text": null,
+ "texts": null,
+ "category": "Smileys & Emotion",
+ "subcategory": "heart",
+ "sort_order": 136,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "DIAMOND SHAPE WITH A DOT INSIDE",
+ "unified": "1F4A0",
+ "non_qualified": null,
+ "docomo": "E6F8",
+ "au": null,
+ "softbank": null,
+ "google": "FEB55",
+ "image": "1f4a0.png",
+ "sheet_x": 27,
+ "sheet_y": 48,
+ "short_name": "diamond_shape_with_a_dot_inside",
+ "short_names": ["diamond_shape_with_a_dot_inside"],
+ "text": null,
+ "texts": null,
+ "category": "Symbols",
+ "subcategory": "geometric",
+ "sort_order": 1603,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "ELECTRIC LIGHT BULB",
+ "unified": "1F4A1",
+ "non_qualified": null,
+ "docomo": "E6FB",
+ "au": "E476",
+ "softbank": "E10F",
+ "google": "FEB56",
+ "image": "1f4a1.png",
+ "sheet_x": 27,
+ "sheet_y": 49,
+ "short_name": "bulb",
+ "short_names": ["bulb"],
+ "text": null,
+ "texts": null,
+ "category": "Objects",
+ "subcategory": "light & video",
+ "sort_order": 1231,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "ANGER SYMBOL",
+ "unified": "1F4A2",
+ "non_qualified": null,
+ "docomo": "E6FC",
+ "au": "E4E5",
+ "softbank": "E334",
+ "google": "FEB57",
+ "image": "1f4a2.png",
+ "sheet_x": 27,
+ "sheet_y": 50,
+ "short_name": "anger",
+ "short_names": ["anger"],
+ "text": null,
+ "texts": null,
+ "category": "Smileys & Emotion",
+ "subcategory": "emotion",
+ "sort_order": 155,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "BOMB",
+ "unified": "1F4A3",
+ "non_qualified": null,
+ "docomo": "E6FE",
+ "au": "E47A",
+ "softbank": "E311",
+ "google": "FEB58",
+ "image": "1f4a3.png",
+ "sheet_x": 27,
+ "sheet_y": 51,
+ "short_name": "bomb",
+ "short_names": ["bomb"],
+ "text": null,
+ "texts": null,
+ "category": "Objects",
+ "subcategory": "tool",
+ "sort_order": 1318,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "SLEEPING SYMBOL",
+ "unified": "1F4A4",
+ "non_qualified": null,
+ "docomo": "E701",
+ "au": "E475",
+ "softbank": "E13C",
+ "google": "FEB59",
+ "image": "1f4a4.png",
+ "sheet_x": 27,
+ "sheet_y": 52,
+ "short_name": "zzz",
+ "short_names": ["zzz"],
+ "text": null,
+ "texts": null,
+ "category": "Smileys & Emotion",
+ "subcategory": "emotion",
+ "sort_order": 166,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "COLLISION SYMBOL",
+ "unified": "1F4A5",
+ "non_qualified": null,
+ "docomo": "E705",
+ "au": "E5B0",
+ "softbank": null,
+ "google": "FEB5A",
+ "image": "1f4a5.png",
+ "sheet_x": 27,
+ "sheet_y": 53,
+ "short_name": "boom",
+ "short_names": ["boom", "collision"],
+ "text": null,
+ "texts": null,
+ "category": "Smileys & Emotion",
+ "subcategory": "emotion",
+ "sort_order": 156,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "SPLASHING SWEAT SYMBOL",
+ "unified": "1F4A6",
+ "non_qualified": null,
+ "docomo": "E706",
+ "au": "E5B1",
+ "softbank": "E331",
+ "google": "FEB5B",
+ "image": "1f4a6.png",
+ "sheet_x": 27,
+ "sheet_y": 54,
+ "short_name": "sweat_drops",
+ "short_names": ["sweat_drops"],
+ "text": null,
+ "texts": null,
+ "category": "Smileys & Emotion",
+ "subcategory": "emotion",
+ "sort_order": 158,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "DROPLET",
+ "unified": "1F4A7",
+ "non_qualified": null,
+ "docomo": "E707",
+ "au": "E4E6",
+ "softbank": null,
+ "google": "FEB5C",
+ "image": "1f4a7.png",
+ "sheet_x": 27,
+ "sheet_y": 55,
+ "short_name": "droplet",
+ "short_names": ["droplet"],
+ "text": null,
+ "texts": null,
+ "category": "Travel & Places",
+ "subcategory": "sky & weather",
+ "sort_order": 1036,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "DASH SYMBOL",
+ "unified": "1F4A8",
+ "non_qualified": null,
+ "docomo": "E708",
+ "au": "E4F4",
+ "softbank": "E330",
+ "google": "FEB5D",
+ "image": "1f4a8.png",
+ "sheet_x": 27,
+ "sheet_y": 56,
+ "short_name": "dash",
+ "short_names": ["dash"],
+ "text": null,
+ "texts": null,
+ "category": "Smileys & Emotion",
+ "subcategory": "emotion",
+ "sort_order": 159,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "PILE OF POO",
+ "unified": "1F4A9",
+ "non_qualified": null,
+ "docomo": null,
+ "au": "E4F5",
+ "softbank": "E05A",
+ "google": "FE4F4",
+ "image": "1f4a9.png",
+ "sheet_x": 27,
+ "sheet_y": 57,
+ "short_name": "hankey",
+ "short_names": ["hankey", "poop", "shit"],
+ "text": null,
+ "texts": null,
+ "category": "Smileys & Emotion",
+ "subcategory": "face-costume",
+ "sort_order": 108,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "FLEXED BICEPS",
+ "unified": "1F4AA",
+ "non_qualified": null,
+ "docomo": null,
+ "au": "E4E9",
+ "softbank": "E14C",
+ "google": "FEB5E",
+ "image": "1f4aa.png",
+ "sheet_x": 27,
+ "sheet_y": 58,
+ "short_name": "muscle",
+ "short_names": ["muscle"],
+ "text": null,
+ "texts": null,
+ "category": "People & Body",
+ "subcategory": "body-parts",
+ "sort_order": 210,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true,
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F4AA-1F3FB",
+ "non_qualified": null,
+ "image": "1f4aa-1f3fb.png",
+ "sheet_x": 27,
+ "sheet_y": 59,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1F4AA-1F3FC",
+ "non_qualified": null,
+ "image": "1f4aa-1f3fc.png",
+ "sheet_x": 27,
+ "sheet_y": 60,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1F4AA-1F3FD",
+ "non_qualified": null,
+ "image": "1f4aa-1f3fd.png",
+ "sheet_x": 28,
+ "sheet_y": 0,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1F4AA-1F3FE",
+ "non_qualified": null,
+ "image": "1f4aa-1f3fe.png",
+ "sheet_x": 28,
+ "sheet_y": 1,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1F4AA-1F3FF",
+ "non_qualified": null,
+ "image": "1f4aa-1f3ff.png",
+ "sheet_x": 28,
+ "sheet_y": 2,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ }
+ },
+ {
+ "name": "DIZZY SYMBOL",
+ "unified": "1F4AB",
+ "non_qualified": null,
+ "docomo": null,
+ "au": "EB5C",
+ "softbank": null,
+ "google": "FEB5F",
+ "image": "1f4ab.png",
+ "sheet_x": 28,
+ "sheet_y": 3,
+ "short_name": "dizzy",
+ "short_names": ["dizzy"],
+ "text": null,
+ "texts": null,
+ "category": "Smileys & Emotion",
+ "subcategory": "emotion",
+ "sort_order": 157,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "SPEECH BALLOON",
+ "unified": "1F4AC",
+ "non_qualified": null,
+ "docomo": null,
+ "au": "E4FD",
+ "softbank": null,
+ "google": "FE532",
+ "image": "1f4ac.png",
+ "sheet_x": 28,
+ "sheet_y": 4,
+ "short_name": "speech_balloon",
+ "short_names": ["speech_balloon"],
+ "text": null,
+ "texts": null,
+ "category": "Smileys & Emotion",
+ "subcategory": "emotion",
+ "sort_order": 161,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "THOUGHT BALLOON",
+ "unified": "1F4AD",
+ "non_qualified": null,
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f4ad.png",
+ "sheet_x": 28,
+ "sheet_y": 5,
+ "short_name": "thought_balloon",
+ "short_names": ["thought_balloon"],
+ "text": null,
+ "texts": null,
+ "category": "Smileys & Emotion",
+ "subcategory": "emotion",
+ "sort_order": 165,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "WHITE FLOWER",
+ "unified": "1F4AE",
+ "non_qualified": null,
+ "docomo": null,
+ "au": "E4F0",
+ "softbank": null,
+ "google": "FEB7A",
+ "image": "1f4ae.png",
+ "sheet_x": 28,
+ "sheet_y": 6,
+ "short_name": "white_flower",
+ "short_names": ["white_flower"],
+ "text": null,
+ "texts": null,
+ "category": "Animals & Nature",
+ "subcategory": "plant-flower",
+ "sort_order": 661,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "HUNDRED POINTS SYMBOL",
+ "unified": "1F4AF",
+ "non_qualified": null,
+ "docomo": null,
+ "au": "E4F2",
+ "softbank": null,
+ "google": "FEB7B",
+ "image": "1f4af.png",
+ "sheet_x": 28,
+ "sheet_y": 7,
+ "short_name": "100",
+ "short_names": ["100"],
+ "text": null,
+ "texts": null,
+ "category": "Smileys & Emotion",
+ "subcategory": "emotion",
+ "sort_order": 154,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "MONEY BAG",
+ "unified": "1F4B0",
+ "non_qualified": null,
+ "docomo": "E715",
+ "au": "E4C7",
+ "softbank": "E12F",
+ "google": "FE4DD",
+ "image": "1f4b0.png",
+ "sheet_x": 28,
+ "sheet_y": 8,
+ "short_name": "moneybag",
+ "short_names": ["moneybag"],
+ "text": null,
+ "texts": null,
+ "category": "Objects",
+ "subcategory": "money",
+ "sort_order": 1252,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "CURRENCY EXCHANGE",
+ "unified": "1F4B1",
+ "non_qualified": null,
+ "docomo": null,
+ "au": null,
+ "softbank": "E149",
+ "google": "FE4DE",
+ "image": "1f4b1.png",
+ "sheet_x": 28,
+ "sheet_y": 9,
+ "short_name": "currency_exchange",
+ "short_names": ["currency_exchange"],
+ "text": null,
+ "texts": null,
+ "category": "Symbols",
+ "subcategory": "currency",
+ "sort_order": 1498,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "HEAVY DOLLAR SIGN",
+ "unified": "1F4B2",
+ "non_qualified": null,
+ "docomo": "E715",
+ "au": "E579",
+ "softbank": null,
+ "google": "FE4E0",
+ "image": "1f4b2.png",
+ "sheet_x": 28,
+ "sheet_y": 10,
+ "short_name": "heavy_dollar_sign",
+ "short_names": ["heavy_dollar_sign"],
+ "text": null,
+ "texts": null,
+ "category": "Symbols",
+ "subcategory": "currency",
+ "sort_order": 1499,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "CREDIT CARD",
+ "unified": "1F4B3",
+ "non_qualified": null,
+ "docomo": null,
+ "au": "E57C",
+ "softbank": null,
+ "google": "FE4E1",
+ "image": "1f4b3.png",
+ "sheet_x": 28,
+ "sheet_y": 11,
+ "short_name": "credit_card",
+ "short_names": ["credit_card"],
+ "text": null,
+ "texts": null,
+ "category": "Objects",
+ "subcategory": "money",
+ "sort_order": 1259,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "BANKNOTE WITH YEN SIGN",
+ "unified": "1F4B4",
+ "non_qualified": null,
+ "docomo": "E6D6",
+ "au": "E57D",
+ "softbank": null,
+ "google": "FE4E2",
+ "image": "1f4b4.png",
+ "sheet_x": 28,
+ "sheet_y": 12,
+ "short_name": "yen",
+ "short_names": ["yen"],
+ "text": null,
+ "texts": null,
+ "category": "Objects",
+ "subcategory": "money",
+ "sort_order": 1254,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "BANKNOTE WITH DOLLAR SIGN",
+ "unified": "1F4B5",
+ "non_qualified": null,
+ "docomo": "E715",
+ "au": "E585",
+ "softbank": null,
+ "google": "FE4E3",
+ "image": "1f4b5.png",
+ "sheet_x": 28,
+ "sheet_y": 13,
+ "short_name": "dollar",
+ "short_names": ["dollar"],
+ "text": null,
+ "texts": null,
+ "category": "Objects",
+ "subcategory": "money",
+ "sort_order": 1255,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "BANKNOTE WITH EURO SIGN",
+ "unified": "1F4B6",
+ "non_qualified": null,
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f4b6.png",
+ "sheet_x": 28,
+ "sheet_y": 14,
+ "short_name": "euro",
+ "short_names": ["euro"],
+ "text": null,
+ "texts": null,
+ "category": "Objects",
+ "subcategory": "money",
+ "sort_order": 1256,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "BANKNOTE WITH POUND SIGN",
+ "unified": "1F4B7",
+ "non_qualified": null,
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f4b7.png",
+ "sheet_x": 28,
+ "sheet_y": 15,
+ "short_name": "pound",
+ "short_names": ["pound"],
+ "text": null,
+ "texts": null,
+ "category": "Objects",
+ "subcategory": "money",
+ "sort_order": 1257,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "MONEY WITH WINGS",
+ "unified": "1F4B8",
+ "non_qualified": null,
+ "docomo": null,
+ "au": "EB5B",
+ "softbank": null,
+ "google": "FE4E4",
+ "image": "1f4b8.png",
+ "sheet_x": 28,
+ "sheet_y": 16,
+ "short_name": "money_with_wings",
+ "short_names": ["money_with_wings"],
+ "text": null,
+ "texts": null,
+ "category": "Objects",
+ "subcategory": "money",
+ "sort_order": 1258,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "CHART WITH UPWARDS TREND AND YEN SIGN",
+ "unified": "1F4B9",
+ "non_qualified": null,
+ "docomo": null,
+ "au": "E5DC",
+ "softbank": "E14A",
+ "google": "FE4DF",
+ "image": "1f4b9.png",
+ "sheet_x": 28,
+ "sheet_y": 17,
+ "short_name": "chart",
+ "short_names": ["chart"],
+ "text": null,
+ "texts": null,
+ "category": "Objects",
+ "subcategory": "money",
+ "sort_order": 1261,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "SEAT",
+ "unified": "1F4BA",
+ "non_qualified": null,
+ "docomo": "E6B2",
+ "au": null,
+ "softbank": "E11F",
+ "google": "FE537",
+ "image": "1f4ba.png",
+ "sheet_x": 28,
+ "sheet_y": 18,
+ "short_name": "seat",
+ "short_names": ["seat"],
+ "text": null,
+ "texts": null,
+ "category": "Travel & Places",
+ "subcategory": "transport-air",
+ "sort_order": 950,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "PERSONAL COMPUTER",
+ "unified": "1F4BB",
+ "non_qualified": null,
+ "docomo": "E716",
+ "au": "E5B8",
+ "softbank": "E00C",
+ "google": "FE538",
+ "image": "1f4bb.png",
+ "sheet_x": 28,
+ "sheet_y": 19,
+ "short_name": "computer",
+ "short_names": ["computer"],
+ "text": null,
+ "texts": null,
+ "category": "Objects",
+ "subcategory": "computer",
+ "sort_order": 1208,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "BRIEFCASE",
+ "unified": "1F4BC",
+ "non_qualified": null,
+ "docomo": "E682",
+ "au": "E5CE",
+ "softbank": "E11E",
+ "google": "FE53B",
+ "image": "1f4bc.png",
+ "sheet_x": 28,
+ "sheet_y": 20,
+ "short_name": "briefcase",
+ "short_names": ["briefcase"],
+ "text": null,
+ "texts": null,
+ "category": "Objects",
+ "subcategory": "office",
+ "sort_order": 1282,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "MINIDISC",
+ "unified": "1F4BD",
+ "non_qualified": null,
+ "docomo": null,
+ "au": "E582",
+ "softbank": "E316",
+ "google": "FE53C",
+ "image": "1f4bd.png",
+ "sheet_x": 28,
+ "sheet_y": 21,
+ "short_name": "minidisc",
+ "short_names": ["minidisc"],
+ "text": null,
+ "texts": null,
+ "category": "Objects",
+ "subcategory": "computer",
+ "sort_order": 1214,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "FLOPPY DISK",
+ "unified": "1F4BE",
+ "non_qualified": null,
+ "docomo": null,
+ "au": "E562",
+ "softbank": null,
+ "google": "FE53D",
+ "image": "1f4be.png",
+ "sheet_x": 28,
+ "sheet_y": 22,
+ "short_name": "floppy_disk",
+ "short_names": ["floppy_disk"],
+ "text": null,
+ "texts": null,
+ "category": "Objects",
+ "subcategory": "computer",
+ "sort_order": 1215,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "OPTICAL DISC",
+ "unified": "1F4BF",
+ "non_qualified": null,
+ "docomo": "E68C",
+ "au": "E50C",
+ "softbank": "E126",
+ "google": "FE81D",
+ "image": "1f4bf.png",
+ "sheet_x": 28,
+ "sheet_y": 23,
+ "short_name": "cd",
+ "short_names": ["cd"],
+ "text": null,
+ "texts": null,
+ "category": "Objects",
+ "subcategory": "computer",
+ "sort_order": 1216,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "DVD",
+ "unified": "1F4C0",
+ "non_qualified": null,
+ "docomo": "E68C",
+ "au": "E50C",
+ "softbank": "E127",
+ "google": "FE81E",
+ "image": "1f4c0.png",
+ "sheet_x": 28,
+ "sheet_y": 24,
+ "short_name": "dvd",
+ "short_names": ["dvd"],
+ "text": null,
+ "texts": null,
+ "category": "Objects",
+ "subcategory": "computer",
+ "sort_order": 1217,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "FILE FOLDER",
+ "unified": "1F4C1",
+ "non_qualified": null,
+ "docomo": null,
+ "au": "E58F",
+ "softbank": null,
+ "google": "FE543",
+ "image": "1f4c1.png",
+ "sheet_x": 28,
+ "sheet_y": 25,
+ "short_name": "file_folder",
+ "short_names": ["file_folder"],
+ "text": null,
+ "texts": null,
+ "category": "Objects",
+ "subcategory": "office",
+ "sort_order": 1283,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "OPEN FILE FOLDER",
+ "unified": "1F4C2",
+ "non_qualified": null,
+ "docomo": null,
+ "au": "E590",
+ "softbank": null,
+ "google": "FE544",
+ "image": "1f4c2.png",
+ "sheet_x": 28,
+ "sheet_y": 26,
+ "short_name": "open_file_folder",
+ "short_names": ["open_file_folder"],
+ "text": null,
+ "texts": null,
+ "category": "Objects",
+ "subcategory": "office",
+ "sort_order": 1284,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "PAGE WITH CURL",
+ "unified": "1F4C3",
+ "non_qualified": null,
+ "docomo": "E689",
+ "au": "E561",
+ "softbank": null,
+ "google": "FE540",
+ "image": "1f4c3.png",
+ "sheet_x": 28,
+ "sheet_y": 27,
+ "short_name": "page_with_curl",
+ "short_names": ["page_with_curl"],
+ "text": null,
+ "texts": null,
+ "category": "Objects",
+ "subcategory": "book-paper",
+ "sort_order": 1244,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "PAGE FACING UP",
+ "unified": "1F4C4",
+ "non_qualified": null,
+ "docomo": "E689",
+ "au": "E569",
+ "softbank": null,
+ "google": "FE541",
+ "image": "1f4c4.png",
+ "sheet_x": 28,
+ "sheet_y": 28,
+ "short_name": "page_facing_up",
+ "short_names": ["page_facing_up"],
+ "text": null,
+ "texts": null,
+ "category": "Objects",
+ "subcategory": "book-paper",
+ "sort_order": 1246,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "CALENDAR",
+ "unified": "1F4C5",
+ "non_qualified": null,
+ "docomo": null,
+ "au": "E563",
+ "softbank": null,
+ "google": "FE542",
+ "image": "1f4c5.png",
+ "sheet_x": 28,
+ "sheet_y": 29,
+ "short_name": "date",
+ "short_names": ["date"],
+ "text": null,
+ "texts": null,
+ "category": "Objects",
+ "subcategory": "office",
+ "sort_order": 1286,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "TEAR-OFF CALENDAR",
+ "unified": "1F4C6",
+ "non_qualified": null,
+ "docomo": null,
+ "au": "E56A",
+ "softbank": null,
+ "google": "FE549",
+ "image": "1f4c6.png",
+ "sheet_x": 28,
+ "sheet_y": 30,
+ "short_name": "calendar",
+ "short_names": ["calendar"],
+ "text": null,
+ "texts": null,
+ "category": "Objects",
+ "subcategory": "office",
+ "sort_order": 1287,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "CARD INDEX",
+ "unified": "1F4C7",
+ "non_qualified": null,
+ "docomo": "E683",
+ "au": "E56C",
+ "softbank": null,
+ "google": "FE54D",
+ "image": "1f4c7.png",
+ "sheet_x": 28,
+ "sheet_y": 31,
+ "short_name": "card_index",
+ "short_names": ["card_index"],
+ "text": null,
+ "texts": null,
+ "category": "Objects",
+ "subcategory": "office",
+ "sort_order": 1290,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "CHART WITH UPWARDS TREND",
+ "unified": "1F4C8",
+ "non_qualified": null,
+ "docomo": null,
+ "au": "E575",
+ "softbank": null,
+ "google": "FE54B",
+ "image": "1f4c8.png",
+ "sheet_x": 28,
+ "sheet_y": 32,
+ "short_name": "chart_with_upwards_trend",
+ "short_names": ["chart_with_upwards_trend"],
+ "text": null,
+ "texts": null,
+ "category": "Objects",
+ "subcategory": "office",
+ "sort_order": 1291,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "CHART WITH DOWNWARDS TREND",
+ "unified": "1F4C9",
+ "non_qualified": null,
+ "docomo": null,
+ "au": "E576",
+ "softbank": null,
+ "google": "FE54C",
+ "image": "1f4c9.png",
+ "sheet_x": 28,
+ "sheet_y": 33,
+ "short_name": "chart_with_downwards_trend",
+ "short_names": ["chart_with_downwards_trend"],
+ "text": null,
+ "texts": null,
+ "category": "Objects",
+ "subcategory": "office",
+ "sort_order": 1292,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "BAR CHART",
+ "unified": "1F4CA",
+ "non_qualified": null,
+ "docomo": null,
+ "au": "E574",
+ "softbank": null,
+ "google": "FE54A",
+ "image": "1f4ca.png",
+ "sheet_x": 28,
+ "sheet_y": 34,
+ "short_name": "bar_chart",
+ "short_names": ["bar_chart"],
+ "text": null,
+ "texts": null,
+ "category": "Objects",
+ "subcategory": "office",
+ "sort_order": 1293,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "CLIPBOARD",
+ "unified": "1F4CB",
+ "non_qualified": null,
+ "docomo": "E689",
+ "au": "E564",
+ "softbank": null,
+ "google": "FE548",
+ "image": "1f4cb.png",
+ "sheet_x": 28,
+ "sheet_y": 35,
+ "short_name": "clipboard",
+ "short_names": ["clipboard"],
+ "text": null,
+ "texts": null,
+ "category": "Objects",
+ "subcategory": "office",
+ "sort_order": 1294,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "PUSHPIN",
+ "unified": "1F4CC",
+ "non_qualified": null,
+ "docomo": null,
+ "au": "E56D",
+ "softbank": null,
+ "google": "FE54E",
+ "image": "1f4cc.png",
+ "sheet_x": 28,
+ "sheet_y": 36,
+ "short_name": "pushpin",
+ "short_names": ["pushpin"],
+ "text": null,
+ "texts": null,
+ "category": "Objects",
+ "subcategory": "office",
+ "sort_order": 1295,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "ROUND PUSHPIN",
+ "unified": "1F4CD",
+ "non_qualified": null,
+ "docomo": null,
+ "au": "E560",
+ "softbank": null,
+ "google": "FE53F",
+ "image": "1f4cd.png",
+ "sheet_x": 28,
+ "sheet_y": 37,
+ "short_name": "round_pushpin",
+ "short_names": ["round_pushpin"],
+ "text": null,
+ "texts": null,
+ "category": "Objects",
+ "subcategory": "office",
+ "sort_order": 1296,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "PAPERCLIP",
+ "unified": "1F4CE",
+ "non_qualified": null,
+ "docomo": "E730",
+ "au": "E4A0",
+ "softbank": null,
+ "google": "FE53A",
+ "image": "1f4ce.png",
+ "sheet_x": 28,
+ "sheet_y": 38,
+ "short_name": "paperclip",
+ "short_names": ["paperclip"],
+ "text": null,
+ "texts": null,
+ "category": "Objects",
+ "subcategory": "office",
+ "sort_order": 1297,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "STRAIGHT RULER",
+ "unified": "1F4CF",
+ "non_qualified": null,
+ "docomo": null,
+ "au": "E570",
+ "softbank": null,
+ "google": "FE550",
+ "image": "1f4cf.png",
+ "sheet_x": 28,
+ "sheet_y": 39,
+ "short_name": "straight_ruler",
+ "short_names": ["straight_ruler"],
+ "text": null,
+ "texts": null,
+ "category": "Objects",
+ "subcategory": "office",
+ "sort_order": 1299,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "TRIANGULAR RULER",
+ "unified": "1F4D0",
+ "non_qualified": null,
+ "docomo": null,
+ "au": "E4A2",
+ "softbank": null,
+ "google": "FE551",
+ "image": "1f4d0.png",
+ "sheet_x": 28,
+ "sheet_y": 40,
+ "short_name": "triangular_ruler",
+ "short_names": ["triangular_ruler"],
+ "text": null,
+ "texts": null,
+ "category": "Objects",
+ "subcategory": "office",
+ "sort_order": 1300,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "BOOKMARK TABS",
+ "unified": "1F4D1",
+ "non_qualified": null,
+ "docomo": "E689",
+ "au": "EB0B",
+ "softbank": null,
+ "google": "FE552",
+ "image": "1f4d1.png",
+ "sheet_x": 28,
+ "sheet_y": 41,
+ "short_name": "bookmark_tabs",
+ "short_names": ["bookmark_tabs"],
+ "text": null,
+ "texts": null,
+ "category": "Objects",
+ "subcategory": "book-paper",
+ "sort_order": 1249,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "LEDGER",
+ "unified": "1F4D2",
+ "non_qualified": null,
+ "docomo": "E683",
+ "au": "E56E",
+ "softbank": null,
+ "google": "FE54F",
+ "image": "1f4d2.png",
+ "sheet_x": 28,
+ "sheet_y": 42,
+ "short_name": "ledger",
+ "short_names": ["ledger"],
+ "text": null,
+ "texts": null,
+ "category": "Objects",
+ "subcategory": "book-paper",
+ "sort_order": 1243,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "NOTEBOOK",
+ "unified": "1F4D3",
+ "non_qualified": null,
+ "docomo": "E683",
+ "au": "E56B",
+ "softbank": null,
+ "google": "FE545",
+ "image": "1f4d3.png",
+ "sheet_x": 28,
+ "sheet_y": 43,
+ "short_name": "notebook",
+ "short_names": ["notebook"],
+ "text": null,
+ "texts": null,
+ "category": "Objects",
+ "subcategory": "book-paper",
+ "sort_order": 1242,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "NOTEBOOK WITH DECORATIVE COVER",
+ "unified": "1F4D4",
+ "non_qualified": null,
+ "docomo": "E683",
+ "au": "E49D",
+ "softbank": null,
+ "google": "FE547",
+ "image": "1f4d4.png",
+ "sheet_x": 28,
+ "sheet_y": 44,
+ "short_name": "notebook_with_decorative_cover",
+ "short_names": ["notebook_with_decorative_cover"],
+ "text": null,
+ "texts": null,
+ "category": "Objects",
+ "subcategory": "book-paper",
+ "sort_order": 1235,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "CLOSED BOOK",
+ "unified": "1F4D5",
+ "non_qualified": null,
+ "docomo": "E683",
+ "au": "E568",
+ "softbank": null,
+ "google": "FE502",
+ "image": "1f4d5.png",
+ "sheet_x": 28,
+ "sheet_y": 45,
+ "short_name": "closed_book",
+ "short_names": ["closed_book"],
+ "text": null,
+ "texts": null,
+ "category": "Objects",
+ "subcategory": "book-paper",
+ "sort_order": 1236,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "OPEN BOOK",
+ "unified": "1F4D6",
+ "non_qualified": null,
+ "docomo": "E683",
+ "au": "E49F",
+ "softbank": "E148",
+ "google": "FE546",
+ "image": "1f4d6.png",
+ "sheet_x": 28,
+ "sheet_y": 46,
+ "short_name": "book",
+ "short_names": ["book", "open_book"],
+ "text": null,
+ "texts": null,
+ "category": "Objects",
+ "subcategory": "book-paper",
+ "sort_order": 1237,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "GREEN BOOK",
+ "unified": "1F4D7",
+ "non_qualified": null,
+ "docomo": "E683",
+ "au": "E565",
+ "softbank": null,
+ "google": "FE4FF",
+ "image": "1f4d7.png",
+ "sheet_x": 28,
+ "sheet_y": 47,
+ "short_name": "green_book",
+ "short_names": ["green_book"],
+ "text": null,
+ "texts": null,
+ "category": "Objects",
+ "subcategory": "book-paper",
+ "sort_order": 1238,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "BLUE BOOK",
+ "unified": "1F4D8",
+ "non_qualified": null,
+ "docomo": "E683",
+ "au": "E566",
+ "softbank": null,
+ "google": "FE500",
+ "image": "1f4d8.png",
+ "sheet_x": 28,
+ "sheet_y": 48,
+ "short_name": "blue_book",
+ "short_names": ["blue_book"],
+ "text": null,
+ "texts": null,
+ "category": "Objects",
+ "subcategory": "book-paper",
+ "sort_order": 1239,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "ORANGE BOOK",
+ "unified": "1F4D9",
+ "non_qualified": null,
+ "docomo": "E683",
+ "au": "E567",
+ "softbank": null,
+ "google": "FE501",
+ "image": "1f4d9.png",
+ "sheet_x": 28,
+ "sheet_y": 49,
+ "short_name": "orange_book",
+ "short_names": ["orange_book"],
+ "text": null,
+ "texts": null,
+ "category": "Objects",
+ "subcategory": "book-paper",
+ "sort_order": 1240,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "BOOKS",
+ "unified": "1F4DA",
+ "non_qualified": null,
+ "docomo": "E683",
+ "au": "E56F",
+ "softbank": null,
+ "google": "FE503",
+ "image": "1f4da.png",
+ "sheet_x": 28,
+ "sheet_y": 50,
+ "short_name": "books",
+ "short_names": ["books"],
+ "text": null,
+ "texts": null,
+ "category": "Objects",
+ "subcategory": "book-paper",
+ "sort_order": 1241,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "NAME BADGE",
+ "unified": "1F4DB",
+ "non_qualified": null,
+ "docomo": null,
+ "au": "E51D",
+ "softbank": null,
+ "google": "FE504",
+ "image": "1f4db.png",
+ "sheet_x": 28,
+ "sheet_y": 51,
+ "short_name": "name_badge",
+ "short_names": ["name_badge"],
+ "text": null,
+ "texts": null,
+ "category": "Symbols",
+ "subcategory": "other-symbol",
+ "sort_order": 1504,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "SCROLL",
+ "unified": "1F4DC",
+ "non_qualified": null,
+ "docomo": "E70A",
+ "au": "E55F",
+ "softbank": null,
+ "google": "FE4FD",
+ "image": "1f4dc.png",
+ "sheet_x": 28,
+ "sheet_y": 52,
+ "short_name": "scroll",
+ "short_names": ["scroll"],
+ "text": null,
+ "texts": null,
+ "category": "Objects",
+ "subcategory": "book-paper",
+ "sort_order": 1245,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "MEMO",
+ "unified": "1F4DD",
+ "non_qualified": null,
+ "docomo": "E689",
+ "au": "EA92",
+ "softbank": "E301",
+ "google": "FE527",
+ "image": "1f4dd.png",
+ "sheet_x": 28,
+ "sheet_y": 53,
+ "short_name": "memo",
+ "short_names": ["memo", "pencil"],
+ "text": null,
+ "texts": null,
+ "category": "Objects",
+ "subcategory": "writing",
+ "sort_order": 1281,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "TELEPHONE RECEIVER",
+ "unified": "1F4DE",
+ "non_qualified": null,
+ "docomo": "E687",
+ "au": "E51E",
+ "softbank": null,
+ "google": "FE524",
+ "image": "1f4de.png",
+ "sheet_x": 28,
+ "sheet_y": 54,
+ "short_name": "telephone_receiver",
+ "short_names": ["telephone_receiver"],
+ "text": null,
+ "texts": null,
+ "category": "Objects",
+ "subcategory": "phone",
+ "sort_order": 1202,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "PAGER",
+ "unified": "1F4DF",
+ "non_qualified": null,
+ "docomo": "E65A",
+ "au": "E59B",
+ "softbank": null,
+ "google": "FE522",
+ "image": "1f4df.png",
+ "sheet_x": 28,
+ "sheet_y": 55,
+ "short_name": "pager",
+ "short_names": ["pager"],
+ "text": null,
+ "texts": null,
+ "category": "Objects",
+ "subcategory": "phone",
+ "sort_order": 1203,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "FAX MACHINE",
+ "unified": "1F4E0",
+ "non_qualified": null,
+ "docomo": "E6D0",
+ "au": "E520",
+ "softbank": "E00B",
+ "google": "FE528",
+ "image": "1f4e0.png",
+ "sheet_x": 28,
+ "sheet_y": 56,
+ "short_name": "fax",
+ "short_names": ["fax"],
+ "text": null,
+ "texts": null,
+ "category": "Objects",
+ "subcategory": "phone",
+ "sort_order": 1204,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "SATELLITE ANTENNA",
+ "unified": "1F4E1",
+ "non_qualified": null,
+ "docomo": null,
+ "au": "E4A8",
+ "softbank": "E14B",
+ "google": "FE531",
+ "image": "1f4e1.png",
+ "sheet_x": 28,
+ "sheet_y": 57,
+ "short_name": "satellite_antenna",
+ "short_names": ["satellite_antenna"],
+ "text": null,
+ "texts": null,
+ "category": "Objects",
+ "subcategory": "science",
+ "sort_order": 1342,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "PUBLIC ADDRESS LOUDSPEAKER",
+ "unified": "1F4E2",
+ "non_qualified": null,
+ "docomo": null,
+ "au": "E511",
+ "softbank": "E142",
+ "google": "FE52F",
+ "image": "1f4e2.png",
+ "sheet_x": 28,
+ "sheet_y": 58,
+ "short_name": "loudspeaker",
+ "short_names": ["loudspeaker"],
+ "text": null,
+ "texts": null,
+ "category": "Objects",
+ "subcategory": "sound",
+ "sort_order": 1174,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "CHEERING MEGAPHONE",
+ "unified": "1F4E3",
+ "non_qualified": null,
+ "docomo": null,
+ "au": "E511",
+ "softbank": "E317",
+ "google": "FE530",
+ "image": "1f4e3.png",
+ "sheet_x": 28,
+ "sheet_y": 59,
+ "short_name": "mega",
+ "short_names": ["mega"],
+ "text": null,
+ "texts": null,
+ "category": "Objects",
+ "subcategory": "sound",
+ "sort_order": 1175,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "OUTBOX TRAY",
+ "unified": "1F4E4",
+ "non_qualified": null,
+ "docomo": null,
+ "au": "E592",
+ "softbank": null,
+ "google": "FE533",
+ "image": "1f4e4.png",
+ "sheet_x": 28,
+ "sheet_y": 60,
+ "short_name": "outbox_tray",
+ "short_names": ["outbox_tray"],
+ "text": null,
+ "texts": null,
+ "category": "Objects",
+ "subcategory": "mail",
+ "sort_order": 1266,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "INBOX TRAY",
+ "unified": "1F4E5",
+ "non_qualified": null,
+ "docomo": null,
+ "au": "E593",
+ "softbank": null,
+ "google": "FE534",
+ "image": "1f4e5.png",
+ "sheet_x": 29,
+ "sheet_y": 0,
+ "short_name": "inbox_tray",
+ "short_names": ["inbox_tray"],
+ "text": null,
+ "texts": null,
+ "category": "Objects",
+ "subcategory": "mail",
+ "sort_order": 1267,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "PACKAGE",
+ "unified": "1F4E6",
+ "non_qualified": null,
+ "docomo": "E685",
+ "au": "E51F",
+ "softbank": null,
+ "google": "FE535",
+ "image": "1f4e6.png",
+ "sheet_x": 29,
+ "sheet_y": 1,
+ "short_name": "package",
+ "short_names": ["package"],
+ "text": null,
+ "texts": null,
+ "category": "Objects",
+ "subcategory": "mail",
+ "sort_order": 1268,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "E-MAIL SYMBOL",
+ "unified": "1F4E7",
+ "non_qualified": null,
+ "docomo": "E6D3",
+ "au": "EB71",
+ "softbank": null,
+ "google": "FEB92",
+ "image": "1f4e7.png",
+ "sheet_x": 29,
+ "sheet_y": 2,
+ "short_name": "e-mail",
+ "short_names": ["e-mail"],
+ "text": null,
+ "texts": null,
+ "category": "Objects",
+ "subcategory": "mail",
+ "sort_order": 1263,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "INCOMING ENVELOPE",
+ "unified": "1F4E8",
+ "non_qualified": null,
+ "docomo": "E6CF",
+ "au": "E591",
+ "softbank": null,
+ "google": "FE52A",
+ "image": "1f4e8.png",
+ "sheet_x": 29,
+ "sheet_y": 3,
+ "short_name": "incoming_envelope",
+ "short_names": ["incoming_envelope"],
+ "text": null,
+ "texts": null,
+ "category": "Objects",
+ "subcategory": "mail",
+ "sort_order": 1264,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "ENVELOPE WITH DOWNWARDS ARROW ABOVE",
+ "unified": "1F4E9",
+ "non_qualified": null,
+ "docomo": "E6CF",
+ "au": "EB62",
+ "softbank": "E103",
+ "google": "FE52B",
+ "image": "1f4e9.png",
+ "sheet_x": 29,
+ "sheet_y": 4,
+ "short_name": "envelope_with_arrow",
+ "short_names": ["envelope_with_arrow"],
+ "text": null,
+ "texts": null,
+ "category": "Objects",
+ "subcategory": "mail",
+ "sort_order": 1265,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "CLOSED MAILBOX WITH LOWERED FLAG",
+ "unified": "1F4EA",
+ "non_qualified": null,
+ "docomo": "E665",
+ "au": "E51B",
+ "softbank": null,
+ "google": "FE52C",
+ "image": "1f4ea.png",
+ "sheet_x": 29,
+ "sheet_y": 5,
+ "short_name": "mailbox_closed",
+ "short_names": ["mailbox_closed"],
+ "text": null,
+ "texts": null,
+ "category": "Objects",
+ "subcategory": "mail",
+ "sort_order": 1270,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "CLOSED MAILBOX WITH RAISED FLAG",
+ "unified": "1F4EB",
+ "non_qualified": null,
+ "docomo": "E665",
+ "au": "EB0A",
+ "softbank": "E101",
+ "google": "FE52D",
+ "image": "1f4eb.png",
+ "sheet_x": 29,
+ "sheet_y": 6,
+ "short_name": "mailbox",
+ "short_names": ["mailbox"],
+ "text": null,
+ "texts": null,
+ "category": "Objects",
+ "subcategory": "mail",
+ "sort_order": 1269,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "OPEN MAILBOX WITH RAISED FLAG",
+ "unified": "1F4EC",
+ "non_qualified": null,
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f4ec.png",
+ "sheet_x": 29,
+ "sheet_y": 7,
+ "short_name": "mailbox_with_mail",
+ "short_names": ["mailbox_with_mail"],
+ "text": null,
+ "texts": null,
+ "category": "Objects",
+ "subcategory": "mail",
+ "sort_order": 1271,
+ "added_in": "0.7",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "OPEN MAILBOX WITH LOWERED FLAG",
+ "unified": "1F4ED",
+ "non_qualified": null,
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f4ed.png",
+ "sheet_x": 29,
+ "sheet_y": 8,
+ "short_name": "mailbox_with_no_mail",
+ "short_names": ["mailbox_with_no_mail"],
+ "text": null,
+ "texts": null,
+ "category": "Objects",
+ "subcategory": "mail",
+ "sort_order": 1272,
+ "added_in": "0.7",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "POSTBOX",
+ "unified": "1F4EE",
+ "non_qualified": null,
+ "docomo": "E665",
+ "au": "E51B",
+ "softbank": "E102",
+ "google": "FE52E",
+ "image": "1f4ee.png",
+ "sheet_x": 29,
+ "sheet_y": 9,
+ "short_name": "postbox",
+ "short_names": ["postbox"],
+ "text": null,
+ "texts": null,
+ "category": "Objects",
+ "subcategory": "mail",
+ "sort_order": 1273,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "POSTAL HORN",
+ "unified": "1F4EF",
+ "non_qualified": null,
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f4ef.png",
+ "sheet_x": 29,
+ "sheet_y": 10,
+ "short_name": "postal_horn",
+ "short_names": ["postal_horn"],
+ "text": null,
+ "texts": null,
+ "category": "Objects",
+ "subcategory": "sound",
+ "sort_order": 1176,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "NEWSPAPER",
+ "unified": "1F4F0",
+ "non_qualified": null,
+ "docomo": null,
+ "au": "E58B",
+ "softbank": null,
+ "google": "FE822",
+ "image": "1f4f0.png",
+ "sheet_x": 29,
+ "sheet_y": 11,
+ "short_name": "newspaper",
+ "short_names": ["newspaper"],
+ "text": null,
+ "texts": null,
+ "category": "Objects",
+ "subcategory": "book-paper",
+ "sort_order": 1247,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "MOBILE PHONE",
+ "unified": "1F4F1",
+ "non_qualified": null,
+ "docomo": "E688",
+ "au": "E588",
+ "softbank": "E00A",
+ "google": "FE525",
+ "image": "1f4f1.png",
+ "sheet_x": 29,
+ "sheet_y": 12,
+ "short_name": "iphone",
+ "short_names": ["iphone"],
+ "text": null,
+ "texts": null,
+ "category": "Objects",
+ "subcategory": "phone",
+ "sort_order": 1199,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "MOBILE PHONE WITH RIGHTWARDS ARROW AT LEFT",
+ "unified": "1F4F2",
+ "non_qualified": null,
+ "docomo": "E6CE",
+ "au": "EB08",
+ "softbank": "E104",
+ "google": "FE526",
+ "image": "1f4f2.png",
+ "sheet_x": 29,
+ "sheet_y": 13,
+ "short_name": "calling",
+ "short_names": ["calling"],
+ "text": null,
+ "texts": null,
+ "category": "Objects",
+ "subcategory": "phone",
+ "sort_order": 1200,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "VIBRATION MODE",
+ "unified": "1F4F3",
+ "non_qualified": null,
+ "docomo": null,
+ "au": "EA90",
+ "softbank": "E250",
+ "google": "FE839",
+ "image": "1f4f3.png",
+ "sheet_x": 29,
+ "sheet_y": 14,
+ "short_name": "vibration_mode",
+ "short_names": ["vibration_mode"],
+ "text": null,
+ "texts": null,
+ "category": "Symbols",
+ "subcategory": "av-symbol",
+ "sort_order": 1480,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "MOBILE PHONE OFF",
+ "unified": "1F4F4",
+ "non_qualified": null,
+ "docomo": null,
+ "au": "EA91",
+ "softbank": "E251",
+ "google": "FE83A",
+ "image": "1f4f4.png",
+ "sheet_x": 29,
+ "sheet_y": 15,
+ "short_name": "mobile_phone_off",
+ "short_names": ["mobile_phone_off"],
+ "text": null,
+ "texts": null,
+ "category": "Symbols",
+ "subcategory": "av-symbol",
+ "sort_order": 1481,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "NO MOBILE PHONES",
+ "unified": "1F4F5",
+ "non_qualified": null,
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f4f5.png",
+ "sheet_x": 29,
+ "sheet_y": 16,
+ "short_name": "no_mobile_phones",
+ "short_names": ["no_mobile_phones"],
+ "text": null,
+ "texts": null,
+ "category": "Symbols",
+ "subcategory": "warning",
+ "sort_order": 1406,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "ANTENNA WITH BARS",
+ "unified": "1F4F6",
+ "non_qualified": null,
+ "docomo": null,
+ "au": "EA84",
+ "softbank": "E20B",
+ "google": "FE838",
+ "image": "1f4f6.png",
+ "sheet_x": 29,
+ "sheet_y": 17,
+ "short_name": "signal_strength",
+ "short_names": ["signal_strength"],
+ "text": null,
+ "texts": null,
+ "category": "Symbols",
+ "subcategory": "av-symbol",
+ "sort_order": 1478,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "CAMERA",
+ "unified": "1F4F7",
+ "non_qualified": null,
+ "docomo": "E681",
+ "au": "E515",
+ "softbank": "E008",
+ "google": "FE4EF",
+ "image": "1f4f7.png",
+ "sheet_x": 29,
+ "sheet_y": 18,
+ "short_name": "camera",
+ "short_names": ["camera"],
+ "text": null,
+ "texts": null,
+ "category": "Objects",
+ "subcategory": "light & video",
+ "sort_order": 1224,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "CAMERA WITH FLASH",
+ "unified": "1F4F8",
+ "non_qualified": null,
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f4f8.png",
+ "sheet_x": 29,
+ "sheet_y": 19,
+ "short_name": "camera_with_flash",
+ "short_names": ["camera_with_flash"],
+ "text": null,
+ "texts": null,
+ "category": "Objects",
+ "subcategory": "light & video",
+ "sort_order": 1225,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "VIDEO CAMERA",
+ "unified": "1F4F9",
+ "non_qualified": null,
+ "docomo": "E677",
+ "au": "E57E",
+ "softbank": null,
+ "google": "FE4F9",
+ "image": "1f4f9.png",
+ "sheet_x": 29,
+ "sheet_y": 20,
+ "short_name": "video_camera",
+ "short_names": ["video_camera"],
+ "text": null,
+ "texts": null,
+ "category": "Objects",
+ "subcategory": "light & video",
+ "sort_order": 1226,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "TELEVISION",
+ "unified": "1F4FA",
+ "non_qualified": null,
+ "docomo": "E68A",
+ "au": "E502",
+ "softbank": "E12A",
+ "google": "FE81C",
+ "image": "1f4fa.png",
+ "sheet_x": 29,
+ "sheet_y": 21,
+ "short_name": "tv",
+ "short_names": ["tv"],
+ "text": null,
+ "texts": null,
+ "category": "Objects",
+ "subcategory": "light & video",
+ "sort_order": 1223,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "RADIO",
+ "unified": "1F4FB",
+ "non_qualified": null,
+ "docomo": null,
+ "au": "E5B9",
+ "softbank": "E128",
+ "google": "FE81F",
+ "image": "1f4fb.png",
+ "sheet_x": 29,
+ "sheet_y": 22,
+ "short_name": "radio",
+ "short_names": ["radio"],
+ "text": null,
+ "texts": null,
+ "category": "Objects",
+ "subcategory": "music",
+ "sort_order": 1187,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "VIDEOCASSETTE",
+ "unified": "1F4FC",
+ "non_qualified": null,
+ "docomo": null,
+ "au": "E580",
+ "softbank": "E129",
+ "google": "FE820",
+ "image": "1f4fc.png",
+ "sheet_x": 29,
+ "sheet_y": 23,
+ "short_name": "vhs",
+ "short_names": ["vhs"],
+ "text": null,
+ "texts": null,
+ "category": "Objects",
+ "subcategory": "light & video",
+ "sort_order": 1227,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "FILM PROJECTOR",
+ "unified": "1F4FD-FE0F",
+ "non_qualified": "1F4FD",
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f4fd-fe0f.png",
+ "sheet_x": 29,
+ "sheet_y": 24,
+ "short_name": "film_projector",
+ "short_names": ["film_projector"],
+ "text": null,
+ "texts": null,
+ "category": "Objects",
+ "subcategory": "light & video",
+ "sort_order": 1221,
+ "added_in": "0.7",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "PRAYER BEADS",
+ "unified": "1F4FF",
+ "non_qualified": null,
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f4ff.png",
+ "sheet_x": 29,
+ "sheet_y": 25,
+ "short_name": "prayer_beads",
+ "short_names": ["prayer_beads"],
+ "text": null,
+ "texts": null,
+ "category": "Objects",
+ "subcategory": "clothing",
+ "sort_order": 1166,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "TWISTED RIGHTWARDS ARROWS",
+ "unified": "1F500",
+ "non_qualified": null,
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f500.png",
+ "sheet_x": 29,
+ "sheet_y": 26,
+ "short_name": "twisted_rightwards_arrows",
+ "short_names": ["twisted_rightwards_arrows"],
+ "text": null,
+ "texts": null,
+ "category": "Symbols",
+ "subcategory": "av-symbol",
+ "sort_order": 1457,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "CLOCKWISE RIGHTWARDS AND LEFTWARDS OPEN CIRCLE ARROWS",
+ "unified": "1F501",
+ "non_qualified": null,
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f501.png",
+ "sheet_x": 29,
+ "sheet_y": 27,
+ "short_name": "repeat",
+ "short_names": ["repeat"],
+ "text": null,
+ "texts": null,
+ "category": "Symbols",
+ "subcategory": "av-symbol",
+ "sort_order": 1458,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "CLOCKWISE RIGHTWARDS AND LEFTWARDS OPEN CIRCLE ARROWS WITH CIRCLED ONE OVERLAY",
+ "unified": "1F502",
+ "non_qualified": null,
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f502.png",
+ "sheet_x": 29,
+ "sheet_y": 28,
+ "short_name": "repeat_one",
+ "short_names": ["repeat_one"],
+ "text": null,
+ "texts": null,
+ "category": "Symbols",
+ "subcategory": "av-symbol",
+ "sort_order": 1459,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "CLOCKWISE DOWNWARDS AND UPWARDS OPEN CIRCLE ARROWS",
+ "unified": "1F503",
+ "non_qualified": null,
+ "docomo": "E735",
+ "au": "EB0D",
+ "softbank": null,
+ "google": "FEB91",
+ "image": "1f503.png",
+ "sheet_x": 29,
+ "sheet_y": 29,
+ "short_name": "arrows_clockwise",
+ "short_names": ["arrows_clockwise"],
+ "text": null,
+ "texts": null,
+ "category": "Symbols",
+ "subcategory": "arrow",
+ "sort_order": 1424,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "ANTICLOCKWISE DOWNWARDS AND UPWARDS OPEN CIRCLE ARROWS",
+ "unified": "1F504",
+ "non_qualified": null,
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f504.png",
+ "sheet_x": 29,
+ "sheet_y": 30,
+ "short_name": "arrows_counterclockwise",
+ "short_names": ["arrows_counterclockwise"],
+ "text": null,
+ "texts": null,
+ "category": "Symbols",
+ "subcategory": "arrow",
+ "sort_order": 1425,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "LOW BRIGHTNESS SYMBOL",
+ "unified": "1F505",
+ "non_qualified": null,
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f505.png",
+ "sheet_x": 29,
+ "sheet_y": 31,
+ "short_name": "low_brightness",
+ "short_names": ["low_brightness"],
+ "text": null,
+ "texts": null,
+ "category": "Symbols",
+ "subcategory": "av-symbol",
+ "sort_order": 1476,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "HIGH BRIGHTNESS SYMBOL",
+ "unified": "1F506",
+ "non_qualified": null,
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f506.png",
+ "sheet_x": 29,
+ "sheet_y": 32,
+ "short_name": "high_brightness",
+ "short_names": ["high_brightness"],
+ "text": null,
+ "texts": null,
+ "category": "Symbols",
+ "subcategory": "av-symbol",
+ "sort_order": 1477,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "SPEAKER WITH CANCELLATION STROKE",
+ "unified": "1F507",
+ "non_qualified": null,
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f507.png",
+ "sheet_x": 29,
+ "sheet_y": 33,
+ "short_name": "mute",
+ "short_names": ["mute"],
+ "text": null,
+ "texts": null,
+ "category": "Objects",
+ "subcategory": "sound",
+ "sort_order": 1170,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "SPEAKER",
+ "unified": "1F508",
+ "non_qualified": null,
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f508.png",
+ "sheet_x": 29,
+ "sheet_y": 34,
+ "short_name": "speaker",
+ "short_names": ["speaker"],
+ "text": null,
+ "texts": null,
+ "category": "Objects",
+ "subcategory": "sound",
+ "sort_order": 1171,
+ "added_in": "0.7",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "SPEAKER WITH ONE SOUND WAVE",
+ "unified": "1F509",
+ "non_qualified": null,
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f509.png",
+ "sheet_x": 29,
+ "sheet_y": 35,
+ "short_name": "sound",
+ "short_names": ["sound"],
+ "text": null,
+ "texts": null,
+ "category": "Objects",
+ "subcategory": "sound",
+ "sort_order": 1172,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "SPEAKER WITH THREE SOUND WAVES",
+ "unified": "1F50A",
+ "non_qualified": null,
+ "docomo": null,
+ "au": "E511",
+ "softbank": "E141",
+ "google": "FE821",
+ "image": "1f50a.png",
+ "sheet_x": 29,
+ "sheet_y": 36,
+ "short_name": "loud_sound",
+ "short_names": ["loud_sound"],
+ "text": null,
+ "texts": null,
+ "category": "Objects",
+ "subcategory": "sound",
+ "sort_order": 1173,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "BATTERY",
+ "unified": "1F50B",
+ "non_qualified": null,
+ "docomo": null,
+ "au": "E584",
+ "softbank": null,
+ "google": "FE4FC",
+ "image": "1f50b.png",
+ "sheet_x": 29,
+ "sheet_y": 37,
+ "short_name": "battery",
+ "short_names": ["battery"],
+ "text": null,
+ "texts": null,
+ "category": "Objects",
+ "subcategory": "computer",
+ "sort_order": 1205,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "ELECTRIC PLUG",
+ "unified": "1F50C",
+ "non_qualified": null,
+ "docomo": null,
+ "au": "E589",
+ "softbank": null,
+ "google": "FE4FE",
+ "image": "1f50c.png",
+ "sheet_x": 29,
+ "sheet_y": 38,
+ "short_name": "electric_plug",
+ "short_names": ["electric_plug"],
+ "text": null,
+ "texts": null,
+ "category": "Objects",
+ "subcategory": "computer",
+ "sort_order": 1207,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "LEFT-POINTING MAGNIFYING GLASS",
+ "unified": "1F50D",
+ "non_qualified": null,
+ "docomo": "E6DC",
+ "au": "E518",
+ "softbank": "E114",
+ "google": "FEB85",
+ "image": "1f50d.png",
+ "sheet_x": 29,
+ "sheet_y": 39,
+ "short_name": "mag",
+ "short_names": ["mag"],
+ "text": null,
+ "texts": null,
+ "category": "Objects",
+ "subcategory": "light & video",
+ "sort_order": 1228,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "RIGHT-POINTING MAGNIFYING GLASS",
+ "unified": "1F50E",
+ "non_qualified": null,
+ "docomo": "E6DC",
+ "au": "EB05",
+ "softbank": null,
+ "google": "FEB8D",
+ "image": "1f50e.png",
+ "sheet_x": 29,
+ "sheet_y": 40,
+ "short_name": "mag_right",
+ "short_names": ["mag_right"],
+ "text": null,
+ "texts": null,
+ "category": "Objects",
+ "subcategory": "light & video",
+ "sort_order": 1229,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "LOCK WITH INK PEN",
+ "unified": "1F50F",
+ "non_qualified": null,
+ "docomo": "E6D9",
+ "au": "EB0C",
+ "softbank": null,
+ "google": "FEB90",
+ "image": "1f50f.png",
+ "sheet_x": 29,
+ "sheet_y": 41,
+ "short_name": "lock_with_ink_pen",
+ "short_names": ["lock_with_ink_pen"],
+ "text": null,
+ "texts": null,
+ "category": "Objects",
+ "subcategory": "lock",
+ "sort_order": 1307,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "CLOSED LOCK WITH KEY",
+ "unified": "1F510",
+ "non_qualified": null,
+ "docomo": "E6D9",
+ "au": "EAFC",
+ "softbank": null,
+ "google": "FEB8A",
+ "image": "1f510.png",
+ "sheet_x": 29,
+ "sheet_y": 42,
+ "short_name": "closed_lock_with_key",
+ "short_names": ["closed_lock_with_key"],
+ "text": null,
+ "texts": null,
+ "category": "Objects",
+ "subcategory": "lock",
+ "sort_order": 1308,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "KEY",
+ "unified": "1F511",
+ "non_qualified": null,
+ "docomo": "E6D9",
+ "au": "E519",
+ "softbank": "E03F",
+ "google": "FEB82",
+ "image": "1f511.png",
+ "sheet_x": 29,
+ "sheet_y": 43,
+ "short_name": "key",
+ "short_names": ["key"],
+ "text": null,
+ "texts": null,
+ "category": "Objects",
+ "subcategory": "lock",
+ "sort_order": 1309,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "LOCK",
+ "unified": "1F512",
+ "non_qualified": null,
+ "docomo": "E6D9",
+ "au": "E51C",
+ "softbank": "E144",
+ "google": "FEB86",
+ "image": "1f512.png",
+ "sheet_x": 29,
+ "sheet_y": 44,
+ "short_name": "lock",
+ "short_names": ["lock"],
+ "text": null,
+ "texts": null,
+ "category": "Objects",
+ "subcategory": "lock",
+ "sort_order": 1305,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "OPEN LOCK",
+ "unified": "1F513",
+ "non_qualified": null,
+ "docomo": "E6D9",
+ "au": "E51C",
+ "softbank": "E145",
+ "google": "FEB87",
+ "image": "1f513.png",
+ "sheet_x": 29,
+ "sheet_y": 45,
+ "short_name": "unlock",
+ "short_names": ["unlock"],
+ "text": null,
+ "texts": null,
+ "category": "Objects",
+ "subcategory": "lock",
+ "sort_order": 1306,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "BELL",
+ "unified": "1F514",
+ "non_qualified": null,
+ "docomo": "E713",
+ "au": "E512",
+ "softbank": "E325",
+ "google": "FE4F2",
+ "image": "1f514.png",
+ "sheet_x": 29,
+ "sheet_y": 46,
+ "short_name": "bell",
+ "short_names": ["bell"],
+ "text": null,
+ "texts": null,
+ "category": "Objects",
+ "subcategory": "sound",
+ "sort_order": 1177,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "BELL WITH CANCELLATION STROKE",
+ "unified": "1F515",
+ "non_qualified": null,
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f515.png",
+ "sheet_x": 29,
+ "sheet_y": 47,
+ "short_name": "no_bell",
+ "short_names": ["no_bell"],
+ "text": null,
+ "texts": null,
+ "category": "Objects",
+ "subcategory": "sound",
+ "sort_order": 1178,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "BOOKMARK",
+ "unified": "1F516",
+ "non_qualified": null,
+ "docomo": null,
+ "au": "EB07",
+ "softbank": null,
+ "google": "FEB8F",
+ "image": "1f516.png",
+ "sheet_x": 29,
+ "sheet_y": 48,
+ "short_name": "bookmark",
+ "short_names": ["bookmark"],
+ "text": null,
+ "texts": null,
+ "category": "Objects",
+ "subcategory": "book-paper",
+ "sort_order": 1250,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "LINK SYMBOL",
+ "unified": "1F517",
+ "non_qualified": null,
+ "docomo": null,
+ "au": "E58A",
+ "softbank": null,
+ "google": "FEB4B",
+ "image": "1f517.png",
+ "sheet_x": 29,
+ "sheet_y": 49,
+ "short_name": "link",
+ "short_names": ["link"],
+ "text": null,
+ "texts": null,
+ "category": "Objects",
+ "subcategory": "tool",
+ "sort_order": 1330,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "RADIO BUTTON",
+ "unified": "1F518",
+ "non_qualified": null,
+ "docomo": null,
+ "au": "EB04",
+ "softbank": null,
+ "google": "FEB8C",
+ "image": "1f518.png",
+ "sheet_x": 29,
+ "sheet_y": 50,
+ "short_name": "radio_button",
+ "short_names": ["radio_button"],
+ "text": null,
+ "texts": null,
+ "category": "Symbols",
+ "subcategory": "geometric",
+ "sort_order": 1604,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "BACK WITH LEFTWARDS ARROW ABOVE",
+ "unified": "1F519",
+ "non_qualified": null,
+ "docomo": null,
+ "au": "EB06",
+ "softbank": null,
+ "google": "FEB8E",
+ "image": "1f519.png",
+ "sheet_x": 29,
+ "sheet_y": 51,
+ "short_name": "back",
+ "short_names": ["back"],
+ "text": null,
+ "texts": null,
+ "category": "Symbols",
+ "subcategory": "arrow",
+ "sort_order": 1426,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "END WITH LEFTWARDS ARROW ABOVE",
+ "unified": "1F51A",
+ "non_qualified": null,
+ "docomo": "E6B9",
+ "au": null,
+ "softbank": null,
+ "google": "FE01A",
+ "image": "1f51a.png",
+ "sheet_x": 29,
+ "sheet_y": 52,
+ "short_name": "end",
+ "short_names": ["end"],
+ "text": null,
+ "texts": null,
+ "category": "Symbols",
+ "subcategory": "arrow",
+ "sort_order": 1427,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "ON WITH EXCLAMATION MARK WITH LEFT RIGHT ARROW ABOVE",
+ "unified": "1F51B",
+ "non_qualified": null,
+ "docomo": "E6B8",
+ "au": null,
+ "softbank": null,
+ "google": "FE019",
+ "image": "1f51b.png",
+ "sheet_x": 29,
+ "sheet_y": 53,
+ "short_name": "on",
+ "short_names": ["on"],
+ "text": null,
+ "texts": null,
+ "category": "Symbols",
+ "subcategory": "arrow",
+ "sort_order": 1428,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "SOON WITH RIGHTWARDS ARROW ABOVE",
+ "unified": "1F51C",
+ "non_qualified": null,
+ "docomo": "E6B7",
+ "au": null,
+ "softbank": null,
+ "google": "FE018",
+ "image": "1f51c.png",
+ "sheet_x": 29,
+ "sheet_y": 54,
+ "short_name": "soon",
+ "short_names": ["soon"],
+ "text": null,
+ "texts": null,
+ "category": "Symbols",
+ "subcategory": "arrow",
+ "sort_order": 1429,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "TOP WITH UPWARDS ARROW ABOVE",
+ "unified": "1F51D",
+ "non_qualified": null,
+ "docomo": null,
+ "au": null,
+ "softbank": "E24C",
+ "google": "FEB42",
+ "image": "1f51d.png",
+ "sheet_x": 29,
+ "sheet_y": 55,
+ "short_name": "top",
+ "short_names": ["top"],
+ "text": null,
+ "texts": null,
+ "category": "Symbols",
+ "subcategory": "arrow",
+ "sort_order": 1430,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "NO ONE UNDER EIGHTEEN SYMBOL",
+ "unified": "1F51E",
+ "non_qualified": null,
+ "docomo": null,
+ "au": "EA83",
+ "softbank": "E207",
+ "google": "FEB25",
+ "image": "1f51e.png",
+ "sheet_x": 29,
+ "sheet_y": 56,
+ "short_name": "underage",
+ "short_names": ["underage"],
+ "text": null,
+ "texts": null,
+ "category": "Symbols",
+ "subcategory": "warning",
+ "sort_order": 1407,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "KEYCAP TEN",
+ "unified": "1F51F",
+ "non_qualified": null,
+ "docomo": null,
+ "au": "E52B",
+ "softbank": null,
+ "google": "FE83B",
+ "image": "1f51f.png",
+ "sheet_x": 29,
+ "sheet_y": 57,
+ "short_name": "keycap_ten",
+ "short_names": ["keycap_ten"],
+ "text": null,
+ "texts": null,
+ "category": "Symbols",
+ "subcategory": "keycap",
+ "sort_order": 1533,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "INPUT SYMBOL FOR LATIN CAPITAL LETTERS",
+ "unified": "1F520",
+ "non_qualified": null,
+ "docomo": null,
+ "au": "EAFD",
+ "softbank": null,
+ "google": "FEB7C",
+ "image": "1f520.png",
+ "sheet_x": 29,
+ "sheet_y": 58,
+ "short_name": "capital_abcd",
+ "short_names": ["capital_abcd"],
+ "text": null,
+ "texts": null,
+ "category": "Symbols",
+ "subcategory": "alphanum",
+ "sort_order": 1534,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "INPUT SYMBOL FOR LATIN SMALL LETTERS",
+ "unified": "1F521",
+ "non_qualified": null,
+ "docomo": null,
+ "au": "EAFE",
+ "softbank": null,
+ "google": "FEB7D",
+ "image": "1f521.png",
+ "sheet_x": 29,
+ "sheet_y": 59,
+ "short_name": "abcd",
+ "short_names": ["abcd"],
+ "text": null,
+ "texts": null,
+ "category": "Symbols",
+ "subcategory": "alphanum",
+ "sort_order": 1535,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "INPUT SYMBOL FOR NUMBERS",
+ "unified": "1F522",
+ "non_qualified": null,
+ "docomo": null,
+ "au": "EAFF",
+ "softbank": null,
+ "google": "FEB7E",
+ "image": "1f522.png",
+ "sheet_x": 29,
+ "sheet_y": 60,
+ "short_name": "1234",
+ "short_names": ["1234"],
+ "text": null,
+ "texts": null,
+ "category": "Symbols",
+ "subcategory": "alphanum",
+ "sort_order": 1536,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "INPUT SYMBOL FOR SYMBOLS",
+ "unified": "1F523",
+ "non_qualified": null,
+ "docomo": null,
+ "au": "EB00",
+ "softbank": null,
+ "google": "FEB7F",
+ "image": "1f523.png",
+ "sheet_x": 30,
+ "sheet_y": 0,
+ "short_name": "symbols",
+ "short_names": ["symbols"],
+ "text": null,
+ "texts": null,
+ "category": "Symbols",
+ "subcategory": "alphanum",
+ "sort_order": 1537,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "INPUT SYMBOL FOR LATIN LETTERS",
+ "unified": "1F524",
+ "non_qualified": null,
+ "docomo": null,
+ "au": "EB55",
+ "softbank": null,
+ "google": "FEB80",
+ "image": "1f524.png",
+ "sheet_x": 30,
+ "sheet_y": 1,
+ "short_name": "abc",
+ "short_names": ["abc"],
+ "text": null,
+ "texts": null,
+ "category": "Symbols",
+ "subcategory": "alphanum",
+ "sort_order": 1538,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "FIRE",
+ "unified": "1F525",
+ "non_qualified": null,
+ "docomo": null,
+ "au": "E47B",
+ "softbank": "E11D",
+ "google": "FE4F6",
+ "image": "1f525.png",
+ "sheet_x": 30,
+ "sheet_y": 2,
+ "short_name": "fire",
+ "short_names": ["fire"],
+ "text": null,
+ "texts": null,
+ "category": "Travel & Places",
+ "subcategory": "sky & weather",
+ "sort_order": 1035,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "ELECTRIC TORCH",
+ "unified": "1F526",
+ "non_qualified": null,
+ "docomo": "E6FB",
+ "au": "E583",
+ "softbank": null,
+ "google": "FE4FB",
+ "image": "1f526.png",
+ "sheet_x": 30,
+ "sheet_y": 3,
+ "short_name": "flashlight",
+ "short_names": ["flashlight"],
+ "text": null,
+ "texts": null,
+ "category": "Objects",
+ "subcategory": "light & video",
+ "sort_order": 1232,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "WRENCH",
+ "unified": "1F527",
+ "non_qualified": null,
+ "docomo": "E718",
+ "au": "E587",
+ "softbank": null,
+ "google": "FE4C9",
+ "image": "1f527.png",
+ "sheet_x": 30,
+ "sheet_y": 4,
+ "short_name": "wrench",
+ "short_names": ["wrench"],
+ "text": null,
+ "texts": null,
+ "category": "Objects",
+ "subcategory": "tool",
+ "sort_order": 1323,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "HAMMER",
+ "unified": "1F528",
+ "non_qualified": null,
+ "docomo": null,
+ "au": "E5CB",
+ "softbank": "E116",
+ "google": "FE4CA",
+ "image": "1f528.png",
+ "sheet_x": 30,
+ "sheet_y": 5,
+ "short_name": "hammer",
+ "short_names": ["hammer"],
+ "text": null,
+ "texts": null,
+ "category": "Objects",
+ "subcategory": "tool",
+ "sort_order": 1311,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "NUT AND BOLT",
+ "unified": "1F529",
+ "non_qualified": null,
+ "docomo": null,
+ "au": "E581",
+ "softbank": null,
+ "google": "FE4CB",
+ "image": "1f529.png",
+ "sheet_x": 30,
+ "sheet_y": 6,
+ "short_name": "nut_and_bolt",
+ "short_names": ["nut_and_bolt"],
+ "text": null,
+ "texts": null,
+ "category": "Objects",
+ "subcategory": "tool",
+ "sort_order": 1325,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "HOCHO",
+ "unified": "1F52A",
+ "non_qualified": null,
+ "docomo": null,
+ "au": "E57F",
+ "softbank": null,
+ "google": "FE4FA",
+ "image": "1f52a.png",
+ "sheet_x": 30,
+ "sheet_y": 7,
+ "short_name": "hocho",
+ "short_names": ["hocho", "knife"],
+ "text": null,
+ "texts": null,
+ "category": "Food & Drink",
+ "subcategory": "dishware",
+ "sort_order": 817,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "PISTOL",
+ "unified": "1F52B",
+ "non_qualified": null,
+ "docomo": null,
+ "au": "E50A",
+ "softbank": "E113",
+ "google": "FE4F5",
+ "image": "1f52b.png",
+ "sheet_x": 30,
+ "sheet_y": 8,
+ "short_name": "gun",
+ "short_names": ["gun"],
+ "text": null,
+ "texts": null,
+ "category": "Activities",
+ "subcategory": "game",
+ "sort_order": 1095,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "MICROSCOPE",
+ "unified": "1F52C",
+ "non_qualified": null,
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f52c.png",
+ "sheet_x": 30,
+ "sheet_y": 9,
+ "short_name": "microscope",
+ "short_names": ["microscope"],
+ "text": null,
+ "texts": null,
+ "category": "Objects",
+ "subcategory": "science",
+ "sort_order": 1340,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "TELESCOPE",
+ "unified": "1F52D",
+ "non_qualified": null,
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f52d.png",
+ "sheet_x": 30,
+ "sheet_y": 10,
+ "short_name": "telescope",
+ "short_names": ["telescope"],
+ "text": null,
+ "texts": null,
+ "category": "Objects",
+ "subcategory": "science",
+ "sort_order": 1341,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "CRYSTAL BALL",
+ "unified": "1F52E",
+ "non_qualified": null,
+ "docomo": null,
+ "au": "EA8F",
+ "softbank": null,
+ "google": "FE4F7",
+ "image": "1f52e.png",
+ "sheet_x": 30,
+ "sheet_y": 11,
+ "short_name": "crystal_ball",
+ "short_names": ["crystal_ball"],
+ "text": null,
+ "texts": null,
+ "category": "Activities",
+ "subcategory": "game",
+ "sort_order": 1097,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "SIX POINTED STAR WITH MIDDLE DOT",
+ "unified": "1F52F",
+ "non_qualified": null,
+ "docomo": null,
+ "au": "EA8F",
+ "softbank": "E23E",
+ "google": "FE4F8",
+ "image": "1f52f.png",
+ "sheet_x": 30,
+ "sheet_y": 12,
+ "short_name": "six_pointed_star",
+ "short_names": ["six_pointed_star"],
+ "text": null,
+ "texts": null,
+ "category": "Symbols",
+ "subcategory": "religion",
+ "sort_order": 1442,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "JAPANESE SYMBOL FOR BEGINNER",
+ "unified": "1F530",
+ "non_qualified": null,
+ "docomo": null,
+ "au": "E480",
+ "softbank": "E209",
+ "google": "FE044",
+ "image": "1f530.png",
+ "sheet_x": 30,
+ "sheet_y": 13,
+ "short_name": "beginner",
+ "short_names": ["beginner"],
+ "text": null,
+ "texts": null,
+ "category": "Symbols",
+ "subcategory": "other-symbol",
+ "sort_order": 1505,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "TRIDENT EMBLEM",
+ "unified": "1F531",
+ "non_qualified": null,
+ "docomo": "E71A",
+ "au": "E5C9",
+ "softbank": "E031",
+ "google": "FE4D2",
+ "image": "1f531.png",
+ "sheet_x": 30,
+ "sheet_y": 14,
+ "short_name": "trident",
+ "short_names": ["trident"],
+ "text": null,
+ "texts": null,
+ "category": "Symbols",
+ "subcategory": "other-symbol",
+ "sort_order": 1503,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "BLACK SQUARE BUTTON",
+ "unified": "1F532",
+ "non_qualified": null,
+ "docomo": "E69C",
+ "au": "E54B",
+ "softbank": "E21A",
+ "google": "FEB64",
+ "image": "1f532.png",
+ "sheet_x": 30,
+ "sheet_y": 15,
+ "short_name": "black_square_button",
+ "short_names": ["black_square_button"],
+ "text": null,
+ "texts": null,
+ "category": "Symbols",
+ "subcategory": "geometric",
+ "sort_order": 1606,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "WHITE SQUARE BUTTON",
+ "unified": "1F533",
+ "non_qualified": null,
+ "docomo": "E69C",
+ "au": "E54B",
+ "softbank": "E21B",
+ "google": "FEB67",
+ "image": "1f533.png",
+ "sheet_x": 30,
+ "sheet_y": 16,
+ "short_name": "white_square_button",
+ "short_names": ["white_square_button"],
+ "text": null,
+ "texts": null,
+ "category": "Symbols",
+ "subcategory": "geometric",
+ "sort_order": 1605,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "LARGE RED CIRCLE",
+ "unified": "1F534",
+ "non_qualified": null,
+ "docomo": "E69C",
+ "au": "E54A",
+ "softbank": "E219",
+ "google": "FEB63",
+ "image": "1f534.png",
+ "sheet_x": 30,
+ "sheet_y": 17,
+ "short_name": "red_circle",
+ "short_names": ["red_circle"],
+ "text": null,
+ "texts": null,
+ "category": "Symbols",
+ "subcategory": "geometric",
+ "sort_order": 1573,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "LARGE BLUE CIRCLE",
+ "unified": "1F535",
+ "non_qualified": null,
+ "docomo": "E69C",
+ "au": "E54B",
+ "softbank": null,
+ "google": "FEB64",
+ "image": "1f535.png",
+ "sheet_x": 30,
+ "sheet_y": 18,
+ "short_name": "large_blue_circle",
+ "short_names": ["large_blue_circle"],
+ "text": null,
+ "texts": null,
+ "category": "Symbols",
+ "subcategory": "geometric",
+ "sort_order": 1577,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "LARGE ORANGE DIAMOND",
+ "unified": "1F536",
+ "non_qualified": null,
+ "docomo": null,
+ "au": "E546",
+ "softbank": null,
+ "google": "FEB73",
+ "image": "1f536.png",
+ "sheet_x": 30,
+ "sheet_y": 19,
+ "short_name": "large_orange_diamond",
+ "short_names": ["large_orange_diamond"],
+ "text": null,
+ "texts": null,
+ "category": "Symbols",
+ "subcategory": "geometric",
+ "sort_order": 1597,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "LARGE BLUE DIAMOND",
+ "unified": "1F537",
+ "non_qualified": null,
+ "docomo": null,
+ "au": "E547",
+ "softbank": null,
+ "google": "FEB74",
+ "image": "1f537.png",
+ "sheet_x": 30,
+ "sheet_y": 20,
+ "short_name": "large_blue_diamond",
+ "short_names": ["large_blue_diamond"],
+ "text": null,
+ "texts": null,
+ "category": "Symbols",
+ "subcategory": "geometric",
+ "sort_order": 1598,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "SMALL ORANGE DIAMOND",
+ "unified": "1F538",
+ "non_qualified": null,
+ "docomo": null,
+ "au": "E536",
+ "softbank": null,
+ "google": "FEB75",
+ "image": "1f538.png",
+ "sheet_x": 30,
+ "sheet_y": 21,
+ "short_name": "small_orange_diamond",
+ "short_names": ["small_orange_diamond"],
+ "text": null,
+ "texts": null,
+ "category": "Symbols",
+ "subcategory": "geometric",
+ "sort_order": 1599,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "SMALL BLUE DIAMOND",
+ "unified": "1F539",
+ "non_qualified": null,
+ "docomo": null,
+ "au": "E537",
+ "softbank": null,
+ "google": "FEB76",
+ "image": "1f539.png",
+ "sheet_x": 30,
+ "sheet_y": 22,
+ "short_name": "small_blue_diamond",
+ "short_names": ["small_blue_diamond"],
+ "text": null,
+ "texts": null,
+ "category": "Symbols",
+ "subcategory": "geometric",
+ "sort_order": 1600,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "UP-POINTING RED TRIANGLE",
+ "unified": "1F53A",
+ "non_qualified": null,
+ "docomo": null,
+ "au": "E55A",
+ "softbank": null,
+ "google": "FEB78",
+ "image": "1f53a.png",
+ "sheet_x": 30,
+ "sheet_y": 23,
+ "short_name": "small_red_triangle",
+ "short_names": ["small_red_triangle"],
+ "text": null,
+ "texts": null,
+ "category": "Symbols",
+ "subcategory": "geometric",
+ "sort_order": 1601,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "DOWN-POINTING RED TRIANGLE",
+ "unified": "1F53B",
+ "non_qualified": null,
+ "docomo": null,
+ "au": "E55B",
+ "softbank": null,
+ "google": "FEB79",
+ "image": "1f53b.png",
+ "sheet_x": 30,
+ "sheet_y": 24,
+ "short_name": "small_red_triangle_down",
+ "short_names": ["small_red_triangle_down"],
+ "text": null,
+ "texts": null,
+ "category": "Symbols",
+ "subcategory": "geometric",
+ "sort_order": 1602,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "UP-POINTING SMALL RED TRIANGLE",
+ "unified": "1F53C",
+ "non_qualified": null,
+ "docomo": null,
+ "au": "E543",
+ "softbank": null,
+ "google": "FEB01",
+ "image": "1f53c.png",
+ "sheet_x": 30,
+ "sheet_y": 25,
+ "short_name": "arrow_up_small",
+ "short_names": ["arrow_up_small"],
+ "text": null,
+ "texts": null,
+ "category": "Symbols",
+ "subcategory": "av-symbol",
+ "sort_order": 1467,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "DOWN-POINTING SMALL RED TRIANGLE",
+ "unified": "1F53D",
+ "non_qualified": null,
+ "docomo": null,
+ "au": "E542",
+ "softbank": null,
+ "google": "FEB00",
+ "image": "1f53d.png",
+ "sheet_x": 30,
+ "sheet_y": 26,
+ "short_name": "arrow_down_small",
+ "short_names": ["arrow_down_small"],
+ "text": null,
+ "texts": null,
+ "category": "Symbols",
+ "subcategory": "av-symbol",
+ "sort_order": 1469,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "OM",
+ "unified": "1F549-FE0F",
+ "non_qualified": "1F549",
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f549-fe0f.png",
+ "sheet_x": 30,
+ "sheet_y": 27,
+ "short_name": "om_symbol",
+ "short_names": ["om_symbol"],
+ "text": null,
+ "texts": null,
+ "category": "Symbols",
+ "subcategory": "religion",
+ "sort_order": 1433,
+ "added_in": "0.7",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "DOVE",
+ "unified": "1F54A-FE0F",
+ "non_qualified": "1F54A",
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f54a-fe0f.png",
+ "sheet_x": 30,
+ "sheet_y": 28,
+ "short_name": "dove_of_peace",
+ "short_names": ["dove_of_peace"],
+ "text": null,
+ "texts": null,
+ "category": "Animals & Nature",
+ "subcategory": "animal-bird",
+ "sort_order": 609,
+ "added_in": "0.7",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "KAABA",
+ "unified": "1F54B",
+ "non_qualified": null,
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f54b.png",
+ "sheet_x": 30,
+ "sheet_y": 29,
+ "short_name": "kaaba",
+ "short_names": ["kaaba"],
+ "text": null,
+ "texts": null,
+ "category": "Travel & Places",
+ "subcategory": "place-religious",
+ "sort_order": 868,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "MOSQUE",
+ "unified": "1F54C",
+ "non_qualified": null,
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f54c.png",
+ "sheet_x": 30,
+ "sheet_y": 30,
+ "short_name": "mosque",
+ "short_names": ["mosque"],
+ "text": null,
+ "texts": null,
+ "category": "Travel & Places",
+ "subcategory": "place-religious",
+ "sort_order": 864,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "SYNAGOGUE",
+ "unified": "1F54D",
+ "non_qualified": null,
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f54d.png",
+ "sheet_x": 30,
+ "sheet_y": 31,
+ "short_name": "synagogue",
+ "short_names": ["synagogue"],
+ "text": null,
+ "texts": null,
+ "category": "Travel & Places",
+ "subcategory": "place-religious",
+ "sort_order": 866,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "MENORAH WITH NINE BRANCHES",
+ "unified": "1F54E",
+ "non_qualified": null,
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f54e.png",
+ "sheet_x": 30,
+ "sheet_y": 32,
+ "short_name": "menorah_with_nine_branches",
+ "short_names": ["menorah_with_nine_branches"],
+ "text": null,
+ "texts": null,
+ "category": "Symbols",
+ "subcategory": "religion",
+ "sort_order": 1441,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "CLOCK FACE ONE OCLOCK",
+ "unified": "1F550",
+ "non_qualified": null,
+ "docomo": "E6BA",
+ "au": "E594",
+ "softbank": "E024",
+ "google": "FE01E",
+ "image": "1f550.png",
+ "sheet_x": 30,
+ "sheet_y": 33,
+ "short_name": "clock1",
+ "short_names": ["clock1"],
+ "text": null,
+ "texts": null,
+ "category": "Travel & Places",
+ "subcategory": "time",
+ "sort_order": 969,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "CLOCK FACE TWO OCLOCK",
+ "unified": "1F551",
+ "non_qualified": null,
+ "docomo": "E6BA",
+ "au": "E594",
+ "softbank": "E025",
+ "google": "FE01F",
+ "image": "1f551.png",
+ "sheet_x": 30,
+ "sheet_y": 34,
+ "short_name": "clock2",
+ "short_names": ["clock2"],
+ "text": null,
+ "texts": null,
+ "category": "Travel & Places",
+ "subcategory": "time",
+ "sort_order": 971,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "CLOCK FACE THREE OCLOCK",
+ "unified": "1F552",
+ "non_qualified": null,
+ "docomo": "E6BA",
+ "au": "E594",
+ "softbank": "E026",
+ "google": "FE020",
+ "image": "1f552.png",
+ "sheet_x": 30,
+ "sheet_y": 35,
+ "short_name": "clock3",
+ "short_names": ["clock3"],
+ "text": null,
+ "texts": null,
+ "category": "Travel & Places",
+ "subcategory": "time",
+ "sort_order": 973,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "CLOCK FACE FOUR OCLOCK",
+ "unified": "1F553",
+ "non_qualified": null,
+ "docomo": "E6BA",
+ "au": "E594",
+ "softbank": "E027",
+ "google": "FE021",
+ "image": "1f553.png",
+ "sheet_x": 30,
+ "sheet_y": 36,
+ "short_name": "clock4",
+ "short_names": ["clock4"],
+ "text": null,
+ "texts": null,
+ "category": "Travel & Places",
+ "subcategory": "time",
+ "sort_order": 975,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "CLOCK FACE FIVE OCLOCK",
+ "unified": "1F554",
+ "non_qualified": null,
+ "docomo": "E6BA",
+ "au": "E594",
+ "softbank": "E028",
+ "google": "FE022",
+ "image": "1f554.png",
+ "sheet_x": 30,
+ "sheet_y": 37,
+ "short_name": "clock5",
+ "short_names": ["clock5"],
+ "text": null,
+ "texts": null,
+ "category": "Travel & Places",
+ "subcategory": "time",
+ "sort_order": 977,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "CLOCK FACE SIX OCLOCK",
+ "unified": "1F555",
+ "non_qualified": null,
+ "docomo": "E6BA",
+ "au": "E594",
+ "softbank": "E029",
+ "google": "FE023",
+ "image": "1f555.png",
+ "sheet_x": 30,
+ "sheet_y": 38,
+ "short_name": "clock6",
+ "short_names": ["clock6"],
+ "text": null,
+ "texts": null,
+ "category": "Travel & Places",
+ "subcategory": "time",
+ "sort_order": 979,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "CLOCK FACE SEVEN OCLOCK",
+ "unified": "1F556",
+ "non_qualified": null,
+ "docomo": "E6BA",
+ "au": "E594",
+ "softbank": "E02A",
+ "google": "FE024",
+ "image": "1f556.png",
+ "sheet_x": 30,
+ "sheet_y": 39,
+ "short_name": "clock7",
+ "short_names": ["clock7"],
+ "text": null,
+ "texts": null,
+ "category": "Travel & Places",
+ "subcategory": "time",
+ "sort_order": 981,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "CLOCK FACE EIGHT OCLOCK",
+ "unified": "1F557",
+ "non_qualified": null,
+ "docomo": "E6BA",
+ "au": "E594",
+ "softbank": "E02B",
+ "google": "FE025",
+ "image": "1f557.png",
+ "sheet_x": 30,
+ "sheet_y": 40,
+ "short_name": "clock8",
+ "short_names": ["clock8"],
+ "text": null,
+ "texts": null,
+ "category": "Travel & Places",
+ "subcategory": "time",
+ "sort_order": 983,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "CLOCK FACE NINE OCLOCK",
+ "unified": "1F558",
+ "non_qualified": null,
+ "docomo": "E6BA",
+ "au": "E594",
+ "softbank": "E02C",
+ "google": "FE026",
+ "image": "1f558.png",
+ "sheet_x": 30,
+ "sheet_y": 41,
+ "short_name": "clock9",
+ "short_names": ["clock9"],
+ "text": null,
+ "texts": null,
+ "category": "Travel & Places",
+ "subcategory": "time",
+ "sort_order": 985,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "CLOCK FACE TEN OCLOCK",
+ "unified": "1F559",
+ "non_qualified": null,
+ "docomo": "E6BA",
+ "au": "E594",
+ "softbank": "E02D",
+ "google": "FE027",
+ "image": "1f559.png",
+ "sheet_x": 30,
+ "sheet_y": 42,
+ "short_name": "clock10",
+ "short_names": ["clock10"],
+ "text": null,
+ "texts": null,
+ "category": "Travel & Places",
+ "subcategory": "time",
+ "sort_order": 987,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "CLOCK FACE ELEVEN OCLOCK",
+ "unified": "1F55A",
+ "non_qualified": null,
+ "docomo": "E6BA",
+ "au": "E594",
+ "softbank": "E02E",
+ "google": "FE028",
+ "image": "1f55a.png",
+ "sheet_x": 30,
+ "sheet_y": 43,
+ "short_name": "clock11",
+ "short_names": ["clock11"],
+ "text": null,
+ "texts": null,
+ "category": "Travel & Places",
+ "subcategory": "time",
+ "sort_order": 989,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "CLOCK FACE TWELVE OCLOCK",
+ "unified": "1F55B",
+ "non_qualified": null,
+ "docomo": "E6BA",
+ "au": "E594",
+ "softbank": "E02F",
+ "google": "FE029",
+ "image": "1f55b.png",
+ "sheet_x": 30,
+ "sheet_y": 44,
+ "short_name": "clock12",
+ "short_names": ["clock12"],
+ "text": null,
+ "texts": null,
+ "category": "Travel & Places",
+ "subcategory": "time",
+ "sort_order": 967,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "CLOCK FACE ONE-THIRTY",
+ "unified": "1F55C",
+ "non_qualified": null,
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f55c.png",
+ "sheet_x": 30,
+ "sheet_y": 45,
+ "short_name": "clock130",
+ "short_names": ["clock130"],
+ "text": null,
+ "texts": null,
+ "category": "Travel & Places",
+ "subcategory": "time",
+ "sort_order": 970,
+ "added_in": "0.7",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "CLOCK FACE TWO-THIRTY",
+ "unified": "1F55D",
+ "non_qualified": null,
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f55d.png",
+ "sheet_x": 30,
+ "sheet_y": 46,
+ "short_name": "clock230",
+ "short_names": ["clock230"],
+ "text": null,
+ "texts": null,
+ "category": "Travel & Places",
+ "subcategory": "time",
+ "sort_order": 972,
+ "added_in": "0.7",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "CLOCK FACE THREE-THIRTY",
+ "unified": "1F55E",
+ "non_qualified": null,
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f55e.png",
+ "sheet_x": 30,
+ "sheet_y": 47,
+ "short_name": "clock330",
+ "short_names": ["clock330"],
+ "text": null,
+ "texts": null,
+ "category": "Travel & Places",
+ "subcategory": "time",
+ "sort_order": 974,
+ "added_in": "0.7",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "CLOCK FACE FOUR-THIRTY",
+ "unified": "1F55F",
+ "non_qualified": null,
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f55f.png",
+ "sheet_x": 30,
+ "sheet_y": 48,
+ "short_name": "clock430",
+ "short_names": ["clock430"],
+ "text": null,
+ "texts": null,
+ "category": "Travel & Places",
+ "subcategory": "time",
+ "sort_order": 976,
+ "added_in": "0.7",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "CLOCK FACE FIVE-THIRTY",
+ "unified": "1F560",
+ "non_qualified": null,
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f560.png",
+ "sheet_x": 30,
+ "sheet_y": 49,
+ "short_name": "clock530",
+ "short_names": ["clock530"],
+ "text": null,
+ "texts": null,
+ "category": "Travel & Places",
+ "subcategory": "time",
+ "sort_order": 978,
+ "added_in": "0.7",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "CLOCK FACE SIX-THIRTY",
+ "unified": "1F561",
+ "non_qualified": null,
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f561.png",
+ "sheet_x": 30,
+ "sheet_y": 50,
+ "short_name": "clock630",
+ "short_names": ["clock630"],
+ "text": null,
+ "texts": null,
+ "category": "Travel & Places",
+ "subcategory": "time",
+ "sort_order": 980,
+ "added_in": "0.7",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "CLOCK FACE SEVEN-THIRTY",
+ "unified": "1F562",
+ "non_qualified": null,
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f562.png",
+ "sheet_x": 30,
+ "sheet_y": 51,
+ "short_name": "clock730",
+ "short_names": ["clock730"],
+ "text": null,
+ "texts": null,
+ "category": "Travel & Places",
+ "subcategory": "time",
+ "sort_order": 982,
+ "added_in": "0.7",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "CLOCK FACE EIGHT-THIRTY",
+ "unified": "1F563",
+ "non_qualified": null,
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f563.png",
+ "sheet_x": 30,
+ "sheet_y": 52,
+ "short_name": "clock830",
+ "short_names": ["clock830"],
+ "text": null,
+ "texts": null,
+ "category": "Travel & Places",
+ "subcategory": "time",
+ "sort_order": 984,
+ "added_in": "0.7",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "CLOCK FACE NINE-THIRTY",
+ "unified": "1F564",
+ "non_qualified": null,
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f564.png",
+ "sheet_x": 30,
+ "sheet_y": 53,
+ "short_name": "clock930",
+ "short_names": ["clock930"],
+ "text": null,
+ "texts": null,
+ "category": "Travel & Places",
+ "subcategory": "time",
+ "sort_order": 986,
+ "added_in": "0.7",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "CLOCK FACE TEN-THIRTY",
+ "unified": "1F565",
+ "non_qualified": null,
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f565.png",
+ "sheet_x": 30,
+ "sheet_y": 54,
+ "short_name": "clock1030",
+ "short_names": ["clock1030"],
+ "text": null,
+ "texts": null,
+ "category": "Travel & Places",
+ "subcategory": "time",
+ "sort_order": 988,
+ "added_in": "0.7",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "CLOCK FACE ELEVEN-THIRTY",
+ "unified": "1F566",
+ "non_qualified": null,
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f566.png",
+ "sheet_x": 30,
+ "sheet_y": 55,
+ "short_name": "clock1130",
+ "short_names": ["clock1130"],
+ "text": null,
+ "texts": null,
+ "category": "Travel & Places",
+ "subcategory": "time",
+ "sort_order": 990,
+ "added_in": "0.7",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "CLOCK FACE TWELVE-THIRTY",
+ "unified": "1F567",
+ "non_qualified": null,
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f567.png",
+ "sheet_x": 30,
+ "sheet_y": 56,
+ "short_name": "clock1230",
+ "short_names": ["clock1230"],
+ "text": null,
+ "texts": null,
+ "category": "Travel & Places",
+ "subcategory": "time",
+ "sort_order": 968,
+ "added_in": "0.7",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "CANDLE",
+ "unified": "1F56F-FE0F",
+ "non_qualified": "1F56F",
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f56f-fe0f.png",
+ "sheet_x": 30,
+ "sheet_y": 57,
+ "short_name": "candle",
+ "short_names": ["candle"],
+ "text": null,
+ "texts": null,
+ "category": "Objects",
+ "subcategory": "light & video",
+ "sort_order": 1230,
+ "added_in": "0.7",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "MANTELPIECE CLOCK",
+ "unified": "1F570-FE0F",
+ "non_qualified": "1F570",
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f570-fe0f.png",
+ "sheet_x": 30,
+ "sheet_y": 58,
+ "short_name": "mantelpiece_clock",
+ "short_names": ["mantelpiece_clock"],
+ "text": null,
+ "texts": null,
+ "category": "Travel & Places",
+ "subcategory": "time",
+ "sort_order": 966,
+ "added_in": "0.7",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "HOLE",
+ "unified": "1F573-FE0F",
+ "non_qualified": "1F573",
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f573-fe0f.png",
+ "sheet_x": 30,
+ "sheet_y": 59,
+ "short_name": "hole",
+ "short_names": ["hole"],
+ "text": null,
+ "texts": null,
+ "category": "Smileys & Emotion",
+ "subcategory": "emotion",
+ "sort_order": 160,
+ "added_in": "0.7",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "PERSON IN SUIT LEVITATING",
+ "unified": "1F574-FE0F",
+ "non_qualified": "1F574",
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f574-fe0f.png",
+ "sheet_x": 30,
+ "sheet_y": 60,
+ "short_name": "man_in_business_suit_levitating",
+ "short_names": ["man_in_business_suit_levitating"],
+ "text": null,
+ "texts": null,
+ "category": "People & Body",
+ "subcategory": "person-activity",
+ "sort_order": 429,
+ "added_in": "0.7",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true,
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F574-1F3FB",
+ "non_qualified": null,
+ "image": "1f574-1f3fb.png",
+ "sheet_x": 31,
+ "sheet_y": 0,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1F574-1F3FC",
+ "non_qualified": null,
+ "image": "1f574-1f3fc.png",
+ "sheet_x": 31,
+ "sheet_y": 1,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1F574-1F3FD",
+ "non_qualified": null,
+ "image": "1f574-1f3fd.png",
+ "sheet_x": 31,
+ "sheet_y": 2,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1F574-1F3FE",
+ "non_qualified": null,
+ "image": "1f574-1f3fe.png",
+ "sheet_x": 31,
+ "sheet_y": 3,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1F574-1F3FF",
+ "non_qualified": null,
+ "image": "1f574-1f3ff.png",
+ "sheet_x": 31,
+ "sheet_y": 4,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ }
+ },
+ {
+ "name": "WOMAN DETECTIVE",
+ "unified": "1F575-FE0F-200D-2640-FE0F",
+ "non_qualified": null,
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f575-fe0f-200d-2640-fe0f.png",
+ "sheet_x": 31,
+ "sheet_y": 5,
+ "short_name": "female-detective",
+ "short_names": ["female-detective"],
+ "text": null,
+ "texts": null,
+ "category": "People & Body",
+ "subcategory": "person-role",
+ "sort_order": 339,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": false,
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F575-1F3FB-200D-2640-FE0F",
+ "non_qualified": "1F575-1F3FB-200D-2640",
+ "image": "1f575-1f3fb-200d-2640-fe0f.png",
+ "sheet_x": 31,
+ "sheet_y": 6,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1F575-1F3FC-200D-2640-FE0F",
+ "non_qualified": "1F575-1F3FC-200D-2640",
+ "image": "1f575-1f3fc-200d-2640-fe0f.png",
+ "sheet_x": 31,
+ "sheet_y": 7,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1F575-1F3FD-200D-2640-FE0F",
+ "non_qualified": "1F575-1F3FD-200D-2640",
+ "image": "1f575-1f3fd-200d-2640-fe0f.png",
+ "sheet_x": 31,
+ "sheet_y": 8,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1F575-1F3FE-200D-2640-FE0F",
+ "non_qualified": "1F575-1F3FE-200D-2640",
+ "image": "1f575-1f3fe-200d-2640-fe0f.png",
+ "sheet_x": 31,
+ "sheet_y": 9,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1F575-1F3FF-200D-2640-FE0F",
+ "non_qualified": "1F575-1F3FF-200D-2640",
+ "image": "1f575-1f3ff-200d-2640-fe0f.png",
+ "sheet_x": 31,
+ "sheet_y": 10,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ }
+ },
+ {
+ "name": "MAN DETECTIVE",
+ "unified": "1F575-FE0F-200D-2642-FE0F",
+ "non_qualified": null,
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f575-fe0f-200d-2642-fe0f.png",
+ "sheet_x": 31,
+ "sheet_y": 11,
+ "short_name": "male-detective",
+ "short_names": ["male-detective"],
+ "text": null,
+ "texts": null,
+ "category": "People & Body",
+ "subcategory": "person-role",
+ "sort_order": 338,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": false,
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F575-1F3FB-200D-2642-FE0F",
+ "non_qualified": "1F575-1F3FB-200D-2642",
+ "image": "1f575-1f3fb-200d-2642-fe0f.png",
+ "sheet_x": 31,
+ "sheet_y": 12,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1F575-1F3FC-200D-2642-FE0F",
+ "non_qualified": "1F575-1F3FC-200D-2642",
+ "image": "1f575-1f3fc-200d-2642-fe0f.png",
+ "sheet_x": 31,
+ "sheet_y": 13,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1F575-1F3FD-200D-2642-FE0F",
+ "non_qualified": "1F575-1F3FD-200D-2642",
+ "image": "1f575-1f3fd-200d-2642-fe0f.png",
+ "sheet_x": 31,
+ "sheet_y": 14,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1F575-1F3FE-200D-2642-FE0F",
+ "non_qualified": "1F575-1F3FE-200D-2642",
+ "image": "1f575-1f3fe-200d-2642-fe0f.png",
+ "sheet_x": 31,
+ "sheet_y": 15,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1F575-1F3FF-200D-2642-FE0F",
+ "non_qualified": "1F575-1F3FF-200D-2642",
+ "image": "1f575-1f3ff-200d-2642-fe0f.png",
+ "sheet_x": 31,
+ "sheet_y": 16,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ },
+ "obsoletes": "1F575-FE0F"
+ },
+ {
+ "name": "DETECTIVE",
+ "unified": "1F575-FE0F",
+ "non_qualified": "1F575",
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f575-fe0f.png",
+ "sheet_x": 31,
+ "sheet_y": 17,
+ "short_name": "sleuth_or_spy",
+ "short_names": ["sleuth_or_spy"],
+ "text": null,
+ "texts": null,
+ "category": "People & Body",
+ "subcategory": "person-role",
+ "sort_order": 337,
+ "added_in": "0.7",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true,
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F575-1F3FB",
+ "non_qualified": null,
+ "image": "1f575-1f3fb.png",
+ "sheet_x": 31,
+ "sheet_y": 18,
+ "added_in": "2.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1F575-1F3FC",
+ "non_qualified": null,
+ "image": "1f575-1f3fc.png",
+ "sheet_x": 31,
+ "sheet_y": 19,
+ "added_in": "2.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1F575-1F3FD",
+ "non_qualified": null,
+ "image": "1f575-1f3fd.png",
+ "sheet_x": 31,
+ "sheet_y": 20,
+ "added_in": "2.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1F575-1F3FE",
+ "non_qualified": null,
+ "image": "1f575-1f3fe.png",
+ "sheet_x": 31,
+ "sheet_y": 21,
+ "added_in": "2.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1F575-1F3FF",
+ "non_qualified": null,
+ "image": "1f575-1f3ff.png",
+ "sheet_x": 31,
+ "sheet_y": 22,
+ "added_in": "2.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ },
+ "obsoleted_by": "1F575-FE0F-200D-2642-FE0F"
+ },
+ {
+ "name": "SUNGLASSES",
+ "unified": "1F576-FE0F",
+ "non_qualified": "1F576",
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f576-fe0f.png",
+ "sheet_x": 31,
+ "sheet_y": 23,
+ "short_name": "dark_sunglasses",
+ "short_names": ["dark_sunglasses"],
+ "text": null,
+ "texts": null,
+ "category": "Objects",
+ "subcategory": "clothing",
+ "sort_order": 1124,
+ "added_in": "0.7",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "SPIDER",
+ "unified": "1F577-FE0F",
+ "non_qualified": "1F577",
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f577-fe0f.png",
+ "sheet_x": 31,
+ "sheet_y": 24,
+ "short_name": "spider",
+ "short_names": ["spider"],
+ "text": null,
+ "texts": null,
+ "category": "Animals & Nature",
+ "subcategory": "animal-bug",
+ "sort_order": 652,
+ "added_in": "0.7",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "SPIDER WEB",
+ "unified": "1F578-FE0F",
+ "non_qualified": "1F578",
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f578-fe0f.png",
+ "sheet_x": 31,
+ "sheet_y": 25,
+ "short_name": "spider_web",
+ "short_names": ["spider_web"],
+ "text": null,
+ "texts": null,
+ "category": "Animals & Nature",
+ "subcategory": "animal-bug",
+ "sort_order": 653,
+ "added_in": "0.7",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "JOYSTICK",
+ "unified": "1F579-FE0F",
+ "non_qualified": "1F579",
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f579-fe0f.png",
+ "sheet_x": 31,
+ "sheet_y": 26,
+ "short_name": "joystick",
+ "short_names": ["joystick"],
+ "text": null,
+ "texts": null,
+ "category": "Activities",
+ "subcategory": "game",
+ "sort_order": 1100,
+ "added_in": "0.7",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "MAN DANCING",
+ "unified": "1F57A",
+ "non_qualified": null,
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f57a.png",
+ "sheet_x": 31,
+ "sheet_y": 27,
+ "short_name": "man_dancing",
+ "short_names": ["man_dancing"],
+ "text": null,
+ "texts": null,
+ "category": "People & Body",
+ "subcategory": "person-activity",
+ "sort_order": 428,
+ "added_in": "3.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true,
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F57A-1F3FB",
+ "non_qualified": null,
+ "image": "1f57a-1f3fb.png",
+ "sheet_x": 31,
+ "sheet_y": 28,
+ "added_in": "3.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1F57A-1F3FC",
+ "non_qualified": null,
+ "image": "1f57a-1f3fc.png",
+ "sheet_x": 31,
+ "sheet_y": 29,
+ "added_in": "3.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1F57A-1F3FD",
+ "non_qualified": null,
+ "image": "1f57a-1f3fd.png",
+ "sheet_x": 31,
+ "sheet_y": 30,
+ "added_in": "3.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1F57A-1F3FE",
+ "non_qualified": null,
+ "image": "1f57a-1f3fe.png",
+ "sheet_x": 31,
+ "sheet_y": 31,
+ "added_in": "3.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1F57A-1F3FF",
+ "non_qualified": null,
+ "image": "1f57a-1f3ff.png",
+ "sheet_x": 31,
+ "sheet_y": 32,
+ "added_in": "3.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ }
+ },
+ {
+ "name": "LINKED PAPERCLIPS",
+ "unified": "1F587-FE0F",
+ "non_qualified": "1F587",
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f587-fe0f.png",
+ "sheet_x": 31,
+ "sheet_y": 33,
+ "short_name": "linked_paperclips",
+ "short_names": ["linked_paperclips"],
+ "text": null,
+ "texts": null,
+ "category": "Objects",
+ "subcategory": "office",
+ "sort_order": 1298,
+ "added_in": "0.7",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "PEN",
+ "unified": "1F58A-FE0F",
+ "non_qualified": "1F58A",
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f58a-fe0f.png",
+ "sheet_x": 31,
+ "sheet_y": 34,
+ "short_name": "lower_left_ballpoint_pen",
+ "short_names": ["lower_left_ballpoint_pen"],
+ "text": null,
+ "texts": null,
+ "category": "Objects",
+ "subcategory": "writing",
+ "sort_order": 1278,
+ "added_in": "0.7",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "FOUNTAIN PEN",
+ "unified": "1F58B-FE0F",
+ "non_qualified": "1F58B",
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f58b-fe0f.png",
+ "sheet_x": 31,
+ "sheet_y": 35,
+ "short_name": "lower_left_fountain_pen",
+ "short_names": ["lower_left_fountain_pen"],
+ "text": null,
+ "texts": null,
+ "category": "Objects",
+ "subcategory": "writing",
+ "sort_order": 1277,
+ "added_in": "0.7",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "PAINTBRUSH",
+ "unified": "1F58C-FE0F",
+ "non_qualified": "1F58C",
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f58c-fe0f.png",
+ "sheet_x": 31,
+ "sheet_y": 36,
+ "short_name": "lower_left_paintbrush",
+ "short_names": ["lower_left_paintbrush"],
+ "text": null,
+ "texts": null,
+ "category": "Objects",
+ "subcategory": "writing",
+ "sort_order": 1279,
+ "added_in": "0.7",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "CRAYON",
+ "unified": "1F58D-FE0F",
+ "non_qualified": "1F58D",
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f58d-fe0f.png",
+ "sheet_x": 31,
+ "sheet_y": 37,
+ "short_name": "lower_left_crayon",
+ "short_names": ["lower_left_crayon"],
+ "text": null,
+ "texts": null,
+ "category": "Objects",
+ "subcategory": "writing",
+ "sort_order": 1280,
+ "added_in": "0.7",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "HAND WITH FINGERS SPLAYED",
+ "unified": "1F590-FE0F",
+ "non_qualified": "1F590",
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f590-fe0f.png",
+ "sheet_x": 31,
+ "sheet_y": 38,
+ "short_name": "raised_hand_with_fingers_splayed",
+ "short_names": ["raised_hand_with_fingers_splayed"],
+ "text": null,
+ "texts": null,
+ "category": "People & Body",
+ "subcategory": "hand-fingers-open",
+ "sort_order": 169,
+ "added_in": "0.7",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true,
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F590-1F3FB",
+ "non_qualified": null,
+ "image": "1f590-1f3fb.png",
+ "sheet_x": 31,
+ "sheet_y": 39,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1F590-1F3FC",
+ "non_qualified": null,
+ "image": "1f590-1f3fc.png",
+ "sheet_x": 31,
+ "sheet_y": 40,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1F590-1F3FD",
+ "non_qualified": null,
+ "image": "1f590-1f3fd.png",
+ "sheet_x": 31,
+ "sheet_y": 41,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1F590-1F3FE",
+ "non_qualified": null,
+ "image": "1f590-1f3fe.png",
+ "sheet_x": 31,
+ "sheet_y": 42,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1F590-1F3FF",
+ "non_qualified": null,
+ "image": "1f590-1f3ff.png",
+ "sheet_x": 31,
+ "sheet_y": 43,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ }
+ },
+ {
+ "name": "REVERSED HAND WITH MIDDLE FINGER EXTENDED",
+ "unified": "1F595",
+ "non_qualified": null,
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f595.png",
+ "sheet_x": 31,
+ "sheet_y": 44,
+ "short_name": "middle_finger",
+ "short_names": [
+ "middle_finger",
+ "reversed_hand_with_middle_finger_extended"
+ ],
+ "text": null,
+ "texts": null,
+ "category": "People & Body",
+ "subcategory": "hand-single-finger",
+ "sort_order": 190,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true,
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F595-1F3FB",
+ "non_qualified": null,
+ "image": "1f595-1f3fb.png",
+ "sheet_x": 31,
+ "sheet_y": 45,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1F595-1F3FC",
+ "non_qualified": null,
+ "image": "1f595-1f3fc.png",
+ "sheet_x": 31,
+ "sheet_y": 46,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1F595-1F3FD",
+ "non_qualified": null,
+ "image": "1f595-1f3fd.png",
+ "sheet_x": 31,
+ "sheet_y": 47,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1F595-1F3FE",
+ "non_qualified": null,
+ "image": "1f595-1f3fe.png",
+ "sheet_x": 31,
+ "sheet_y": 48,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1F595-1F3FF",
+ "non_qualified": null,
+ "image": "1f595-1f3ff.png",
+ "sheet_x": 31,
+ "sheet_y": 49,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ }
+ },
+ {
+ "name": "RAISED HAND WITH PART BETWEEN MIDDLE AND RING FINGERS",
+ "unified": "1F596",
+ "non_qualified": null,
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f596.png",
+ "sheet_x": 31,
+ "sheet_y": 50,
+ "short_name": "spock-hand",
+ "short_names": ["spock-hand"],
+ "text": null,
+ "texts": null,
+ "category": "People & Body",
+ "subcategory": "hand-fingers-open",
+ "sort_order": 171,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true,
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F596-1F3FB",
+ "non_qualified": null,
+ "image": "1f596-1f3fb.png",
+ "sheet_x": 31,
+ "sheet_y": 51,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1F596-1F3FC",
+ "non_qualified": null,
+ "image": "1f596-1f3fc.png",
+ "sheet_x": 31,
+ "sheet_y": 52,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1F596-1F3FD",
+ "non_qualified": null,
+ "image": "1f596-1f3fd.png",
+ "sheet_x": 31,
+ "sheet_y": 53,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1F596-1F3FE",
+ "non_qualified": null,
+ "image": "1f596-1f3fe.png",
+ "sheet_x": 31,
+ "sheet_y": 54,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1F596-1F3FF",
+ "non_qualified": null,
+ "image": "1f596-1f3ff.png",
+ "sheet_x": 31,
+ "sheet_y": 55,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ }
+ },
+ {
+ "name": "BLACK HEART",
+ "unified": "1F5A4",
+ "non_qualified": null,
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f5a4.png",
+ "sheet_x": 31,
+ "sheet_y": 56,
+ "short_name": "black_heart",
+ "short_names": ["black_heart"],
+ "text": null,
+ "texts": null,
+ "category": "Smileys & Emotion",
+ "subcategory": "heart",
+ "sort_order": 150,
+ "added_in": "3.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "DESKTOP COMPUTER",
+ "unified": "1F5A5-FE0F",
+ "non_qualified": "1F5A5",
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f5a5-fe0f.png",
+ "sheet_x": 31,
+ "sheet_y": 57,
+ "short_name": "desktop_computer",
+ "short_names": ["desktop_computer"],
+ "text": null,
+ "texts": null,
+ "category": "Objects",
+ "subcategory": "computer",
+ "sort_order": 1209,
+ "added_in": "0.7",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "PRINTER",
+ "unified": "1F5A8-FE0F",
+ "non_qualified": "1F5A8",
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f5a8-fe0f.png",
+ "sheet_x": 31,
+ "sheet_y": 58,
+ "short_name": "printer",
+ "short_names": ["printer"],
+ "text": null,
+ "texts": null,
+ "category": "Objects",
+ "subcategory": "computer",
+ "sort_order": 1210,
+ "added_in": "0.7",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "COMPUTER MOUSE",
+ "unified": "1F5B1-FE0F",
+ "non_qualified": "1F5B1",
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f5b1-fe0f.png",
+ "sheet_x": 31,
+ "sheet_y": 59,
+ "short_name": "three_button_mouse",
+ "short_names": ["three_button_mouse"],
+ "text": null,
+ "texts": null,
+ "category": "Objects",
+ "subcategory": "computer",
+ "sort_order": 1212,
+ "added_in": "0.7",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "TRACKBALL",
+ "unified": "1F5B2-FE0F",
+ "non_qualified": "1F5B2",
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f5b2-fe0f.png",
+ "sheet_x": 31,
+ "sheet_y": 60,
+ "short_name": "trackball",
+ "short_names": ["trackball"],
+ "text": null,
+ "texts": null,
+ "category": "Objects",
+ "subcategory": "computer",
+ "sort_order": 1213,
+ "added_in": "0.7",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "FRAMED PICTURE",
+ "unified": "1F5BC-FE0F",
+ "non_qualified": "1F5BC",
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f5bc-fe0f.png",
+ "sheet_x": 32,
+ "sheet_y": 0,
+ "short_name": "frame_with_picture",
+ "short_names": ["frame_with_picture"],
+ "text": null,
+ "texts": null,
+ "category": "Activities",
+ "subcategory": "arts & crafts",
+ "sort_order": 1117,
+ "added_in": "0.7",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "CARD INDEX DIVIDERS",
+ "unified": "1F5C2-FE0F",
+ "non_qualified": "1F5C2",
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f5c2-fe0f.png",
+ "sheet_x": 32,
+ "sheet_y": 1,
+ "short_name": "card_index_dividers",
+ "short_names": ["card_index_dividers"],
+ "text": null,
+ "texts": null,
+ "category": "Objects",
+ "subcategory": "office",
+ "sort_order": 1285,
+ "added_in": "0.7",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "CARD FILE BOX",
+ "unified": "1F5C3-FE0F",
+ "non_qualified": "1F5C3",
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f5c3-fe0f.png",
+ "sheet_x": 32,
+ "sheet_y": 2,
+ "short_name": "card_file_box",
+ "short_names": ["card_file_box"],
+ "text": null,
+ "texts": null,
+ "category": "Objects",
+ "subcategory": "office",
+ "sort_order": 1302,
+ "added_in": "0.7",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "FILE CABINET",
+ "unified": "1F5C4-FE0F",
+ "non_qualified": "1F5C4",
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f5c4-fe0f.png",
+ "sheet_x": 32,
+ "sheet_y": 3,
+ "short_name": "file_cabinet",
+ "short_names": ["file_cabinet"],
+ "text": null,
+ "texts": null,
+ "category": "Objects",
+ "subcategory": "office",
+ "sort_order": 1303,
+ "added_in": "0.7",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "WASTEBASKET",
+ "unified": "1F5D1-FE0F",
+ "non_qualified": "1F5D1",
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f5d1-fe0f.png",
+ "sheet_x": 32,
+ "sheet_y": 4,
+ "short_name": "wastebasket",
+ "short_names": ["wastebasket"],
+ "text": null,
+ "texts": null,
+ "category": "Objects",
+ "subcategory": "office",
+ "sort_order": 1304,
+ "added_in": "0.7",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "SPIRAL NOTEPAD",
+ "unified": "1F5D2-FE0F",
+ "non_qualified": "1F5D2",
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f5d2-fe0f.png",
+ "sheet_x": 32,
+ "sheet_y": 5,
+ "short_name": "spiral_note_pad",
+ "short_names": ["spiral_note_pad"],
+ "text": null,
+ "texts": null,
+ "category": "Objects",
+ "subcategory": "office",
+ "sort_order": 1288,
+ "added_in": "0.7",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "SPIRAL CALENDAR",
+ "unified": "1F5D3-FE0F",
+ "non_qualified": "1F5D3",
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f5d3-fe0f.png",
+ "sheet_x": 32,
+ "sheet_y": 6,
+ "short_name": "spiral_calendar_pad",
+ "short_names": ["spiral_calendar_pad"],
+ "text": null,
+ "texts": null,
+ "category": "Objects",
+ "subcategory": "office",
+ "sort_order": 1289,
+ "added_in": "0.7",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "CLAMP",
+ "unified": "1F5DC-FE0F",
+ "non_qualified": "1F5DC",
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f5dc-fe0f.png",
+ "sheet_x": 32,
+ "sheet_y": 7,
+ "short_name": "compression",
+ "short_names": ["compression"],
+ "text": null,
+ "texts": null,
+ "category": "Objects",
+ "subcategory": "tool",
+ "sort_order": 1327,
+ "added_in": "0.7",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "OLD KEY",
+ "unified": "1F5DD-FE0F",
+ "non_qualified": "1F5DD",
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f5dd-fe0f.png",
+ "sheet_x": 32,
+ "sheet_y": 8,
+ "short_name": "old_key",
+ "short_names": ["old_key"],
+ "text": null,
+ "texts": null,
+ "category": "Objects",
+ "subcategory": "lock",
+ "sort_order": 1310,
+ "added_in": "0.7",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "ROLLED-UP NEWSPAPER",
+ "unified": "1F5DE-FE0F",
+ "non_qualified": "1F5DE",
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f5de-fe0f.png",
+ "sheet_x": 32,
+ "sheet_y": 9,
+ "short_name": "rolled_up_newspaper",
+ "short_names": ["rolled_up_newspaper"],
+ "text": null,
+ "texts": null,
+ "category": "Objects",
+ "subcategory": "book-paper",
+ "sort_order": 1248,
+ "added_in": "0.7",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "DAGGER",
+ "unified": "1F5E1-FE0F",
+ "non_qualified": "1F5E1",
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f5e1-fe0f.png",
+ "sheet_x": 32,
+ "sheet_y": 10,
+ "short_name": "dagger_knife",
+ "short_names": ["dagger_knife"],
+ "text": null,
+ "texts": null,
+ "category": "Objects",
+ "subcategory": "tool",
+ "sort_order": 1316,
+ "added_in": "0.7",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "SPEAKING HEAD",
+ "unified": "1F5E3-FE0F",
+ "non_qualified": "1F5E3",
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f5e3-fe0f.png",
+ "sheet_x": 32,
+ "sheet_y": 11,
+ "short_name": "speaking_head_in_silhouette",
+ "short_names": ["speaking_head_in_silhouette"],
+ "text": null,
+ "texts": null,
+ "category": "People & Body",
+ "subcategory": "person-symbol",
+ "sort_order": 525,
+ "added_in": "0.7",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "LEFT SPEECH BUBBLE",
+ "unified": "1F5E8-FE0F",
+ "non_qualified": "1F5E8",
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f5e8-fe0f.png",
+ "sheet_x": 32,
+ "sheet_y": 12,
+ "short_name": "left_speech_bubble",
+ "short_names": ["left_speech_bubble"],
+ "text": null,
+ "texts": null,
+ "category": "Smileys & Emotion",
+ "subcategory": "emotion",
+ "sort_order": 163,
+ "added_in": "2.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "RIGHT ANGER BUBBLE",
+ "unified": "1F5EF-FE0F",
+ "non_qualified": "1F5EF",
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f5ef-fe0f.png",
+ "sheet_x": 32,
+ "sheet_y": 13,
+ "short_name": "right_anger_bubble",
+ "short_names": ["right_anger_bubble"],
+ "text": null,
+ "texts": null,
+ "category": "Smileys & Emotion",
+ "subcategory": "emotion",
+ "sort_order": 164,
+ "added_in": "0.7",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "BALLOT BOX WITH BALLOT",
+ "unified": "1F5F3-FE0F",
+ "non_qualified": "1F5F3",
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f5f3-fe0f.png",
+ "sheet_x": 32,
+ "sheet_y": 14,
+ "short_name": "ballot_box_with_ballot",
+ "short_names": ["ballot_box_with_ballot"],
+ "text": null,
+ "texts": null,
+ "category": "Objects",
+ "subcategory": "mail",
+ "sort_order": 1274,
+ "added_in": "0.7",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "WORLD MAP",
+ "unified": "1F5FA-FE0F",
+ "non_qualified": "1F5FA",
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f5fa-fe0f.png",
+ "sheet_x": 32,
+ "sheet_y": 15,
+ "short_name": "world_map",
+ "short_names": ["world_map"],
+ "text": null,
+ "texts": null,
+ "category": "Travel & Places",
+ "subcategory": "place-map",
+ "sort_order": 824,
+ "added_in": "0.7",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "MOUNT FUJI",
+ "unified": "1F5FB",
+ "non_qualified": null,
+ "docomo": "E740",
+ "au": "E5BD",
+ "softbank": "E03B",
+ "google": "FE4C3",
+ "image": "1f5fb.png",
+ "sheet_x": 32,
+ "sheet_y": 16,
+ "short_name": "mount_fuji",
+ "short_names": ["mount_fuji"],
+ "text": null,
+ "texts": null,
+ "category": "Travel & Places",
+ "subcategory": "place-geographic",
+ "sort_order": 830,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "TOKYO TOWER",
+ "unified": "1F5FC",
+ "non_qualified": null,
+ "docomo": null,
+ "au": "E4C0",
+ "softbank": "E509",
+ "google": "FE4C4",
+ "image": "1f5fc.png",
+ "sheet_x": 32,
+ "sheet_y": 17,
+ "short_name": "tokyo_tower",
+ "short_names": ["tokyo_tower"],
+ "text": null,
+ "texts": null,
+ "category": "Travel & Places",
+ "subcategory": "place-building",
+ "sort_order": 861,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "STATUE OF LIBERTY",
+ "unified": "1F5FD",
+ "non_qualified": null,
+ "docomo": null,
+ "au": null,
+ "softbank": "E51D",
+ "google": "FE4C6",
+ "image": "1f5fd.png",
+ "sheet_x": 32,
+ "sheet_y": 18,
+ "short_name": "statue_of_liberty",
+ "short_names": ["statue_of_liberty"],
+ "text": null,
+ "texts": null,
+ "category": "Travel & Places",
+ "subcategory": "place-building",
+ "sort_order": 862,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "SILHOUETTE OF JAPAN",
+ "unified": "1F5FE",
+ "non_qualified": null,
+ "docomo": null,
+ "au": "E572",
+ "softbank": null,
+ "google": "FE4C7",
+ "image": "1f5fe.png",
+ "sheet_x": 32,
+ "sheet_y": 19,
+ "short_name": "japan",
+ "short_names": ["japan"],
+ "text": null,
+ "texts": null,
+ "category": "Travel & Places",
+ "subcategory": "place-map",
+ "sort_order": 825,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "MOYAI",
+ "unified": "1F5FF",
+ "non_qualified": null,
+ "docomo": null,
+ "au": "EB6C",
+ "softbank": null,
+ "google": "FE4C8",
+ "image": "1f5ff.png",
+ "sheet_x": 32,
+ "sheet_y": 20,
+ "short_name": "moyai",
+ "short_names": ["moyai"],
+ "text": null,
+ "texts": null,
+ "category": "Objects",
+ "subcategory": "other-object",
+ "sort_order": 1381,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "GRINNING FACE",
+ "unified": "1F600",
+ "non_qualified": null,
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f600.png",
+ "sheet_x": 32,
+ "sheet_y": 21,
+ "short_name": "grinning",
+ "short_names": ["grinning"],
+ "text": ":D",
+ "texts": null,
+ "category": "Smileys & Emotion",
+ "subcategory": "face-smiling",
+ "sort_order": 1,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "GRINNING FACE WITH SMILING EYES",
+ "unified": "1F601",
+ "non_qualified": null,
+ "docomo": "E753",
+ "au": "EB80",
+ "softbank": "E404",
+ "google": "FE333",
+ "image": "1f601.png",
+ "sheet_x": 32,
+ "sheet_y": 22,
+ "short_name": "grin",
+ "short_names": ["grin"],
+ "text": null,
+ "texts": null,
+ "category": "Smileys & Emotion",
+ "subcategory": "face-smiling",
+ "sort_order": 4,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "FACE WITH TEARS OF JOY",
+ "unified": "1F602",
+ "non_qualified": null,
+ "docomo": "E72A",
+ "au": "EB64",
+ "softbank": "E412",
+ "google": "FE334",
+ "image": "1f602.png",
+ "sheet_x": 32,
+ "sheet_y": 23,
+ "short_name": "joy",
+ "short_names": ["joy"],
+ "text": null,
+ "texts": null,
+ "category": "Smileys & Emotion",
+ "subcategory": "face-smiling",
+ "sort_order": 8,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "SMILING FACE WITH OPEN MOUTH",
+ "unified": "1F603",
+ "non_qualified": null,
+ "docomo": "E6F0",
+ "au": "E471",
+ "softbank": "E057",
+ "google": "FE330",
+ "image": "1f603.png",
+ "sheet_x": 32,
+ "sheet_y": 24,
+ "short_name": "smiley",
+ "short_names": ["smiley"],
+ "text": ":)",
+ "texts": ["=)", "=-)"],
+ "category": "Smileys & Emotion",
+ "subcategory": "face-smiling",
+ "sort_order": 2,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "SMILING FACE WITH OPEN MOUTH AND SMILING EYES",
+ "unified": "1F604",
+ "non_qualified": null,
+ "docomo": "E6F0",
+ "au": "E471",
+ "softbank": "E415",
+ "google": "FE338",
+ "image": "1f604.png",
+ "sheet_x": 32,
+ "sheet_y": 25,
+ "short_name": "smile",
+ "short_names": ["smile"],
+ "text": ":)",
+ "texts": ["C:", "c:", ":D", ":-D"],
+ "category": "Smileys & Emotion",
+ "subcategory": "face-smiling",
+ "sort_order": 3,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "SMILING FACE WITH OPEN MOUTH AND COLD SWEAT",
+ "unified": "1F605",
"non_qualified": null,
- "docomo": "E71B",
- "au": "E514",
- "softbank": "E035",
- "google": "FE826",
- "image": "1f48e.png",
- "sheet_x": 25,
- "sheet_y": 12,
- "short_name": "gem",
- "short_names": ["gem"],
+ "docomo": "E722",
+ "au": "E471-E5B1",
+ "softbank": null,
+ "google": "FE331",
+ "image": "1f605.png",
+ "sheet_x": 32,
+ "sheet_y": 26,
+ "short_name": "sweat_smile",
+ "short_names": ["sweat_smile"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 469,
- "added_in": "6.0",
+ "category": "Smileys & Emotion",
+ "subcategory": "face-smiling",
+ "sort_order": 6,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "SMILING FACE WITH OPEN MOUTH AND TIGHTLY-CLOSED EYES",
+ "unified": "1F606",
+ "non_qualified": null,
+ "docomo": "E72A",
+ "au": "EAC5",
+ "softbank": null,
+ "google": "FE332",
+ "image": "1f606.png",
+ "sheet_x": 32,
+ "sheet_y": 27,
+ "short_name": "laughing",
+ "short_names": ["laughing", "satisfied"],
+ "text": null,
+ "texts": [":>", ":->"],
+ "category": "Smileys & Emotion",
+ "subcategory": "face-smiling",
+ "sort_order": 5,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "SMILING FACE WITH HALO",
+ "unified": "1F607",
+ "non_qualified": null,
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f607.png",
+ "sheet_x": 32,
+ "sheet_y": 28,
+ "short_name": "innocent",
+ "short_names": ["innocent"],
+ "text": null,
+ "texts": null,
+ "category": "Smileys & Emotion",
+ "subcategory": "face-smiling",
+ "sort_order": 14,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "SMILING FACE WITH HORNS",
+ "unified": "1F608",
+ "non_qualified": null,
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f608.png",
+ "sheet_x": 32,
+ "sheet_y": 29,
+ "short_name": "smiling_imp",
+ "short_names": ["smiling_imp"],
+ "text": null,
+ "texts": null,
+ "category": "Smileys & Emotion",
+ "subcategory": "face-negative",
+ "sort_order": 104,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "WINKING FACE",
+ "unified": "1F609",
+ "non_qualified": null,
+ "docomo": "E729",
+ "au": "E5C3",
+ "softbank": "E405",
+ "google": "FE347",
+ "image": "1f609.png",
+ "sheet_x": 32,
+ "sheet_y": 30,
+ "short_name": "wink",
+ "short_names": ["wink"],
+ "text": ";)",
+ "texts": [";)", ";-)"],
+ "category": "Smileys & Emotion",
+ "subcategory": "face-smiling",
+ "sort_order": 12,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "SMILING FACE WITH SMILING EYES",
+ "unified": "1F60A",
+ "non_qualified": null,
+ "docomo": "E6F0",
+ "au": "EACD",
+ "softbank": "E056",
+ "google": "FE335",
+ "image": "1f60a.png",
+ "sheet_x": 32,
+ "sheet_y": 31,
+ "short_name": "blush",
+ "short_names": ["blush"],
+ "text": ":)",
+ "texts": null,
+ "category": "Smileys & Emotion",
+ "subcategory": "face-smiling",
+ "sort_order": 13,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "FACE SAVOURING DELICIOUS FOOD",
+ "unified": "1F60B",
+ "non_qualified": null,
+ "docomo": "E752",
+ "au": "EACD",
+ "softbank": null,
+ "google": "FE32B",
+ "image": "1f60b.png",
+ "sheet_x": 32,
+ "sheet_y": 32,
+ "short_name": "yum",
+ "short_names": ["yum"],
+ "text": null,
+ "texts": null,
+ "category": "Smileys & Emotion",
+ "subcategory": "face-tongue",
+ "sort_order": 24,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "RELIEVED FACE",
+ "unified": "1F60C",
+ "non_qualified": null,
+ "docomo": "E721",
+ "au": "EAC5",
+ "softbank": "E40A",
+ "google": "FE33E",
+ "image": "1f60c.png",
+ "sheet_x": 32,
+ "sheet_y": 33,
+ "short_name": "relieved",
+ "short_names": ["relieved"],
+ "text": null,
+ "texts": null,
+ "category": "Smileys & Emotion",
+ "subcategory": "face-sleepy",
+ "sort_order": 51,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "SMILING FACE WITH HEART-SHAPED EYES",
+ "unified": "1F60D",
+ "non_qualified": null,
+ "docomo": "E726",
+ "au": "E5C4",
+ "softbank": "E106",
+ "google": "FE327",
+ "image": "1f60d.png",
+ "sheet_x": 32,
+ "sheet_y": 34,
+ "short_name": "heart_eyes",
+ "short_names": ["heart_eyes"],
+ "text": null,
+ "texts": null,
+ "category": "Smileys & Emotion",
+ "subcategory": "face-affection",
+ "sort_order": 16,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "SMILING FACE WITH SUNGLASSES",
+ "unified": "1F60E",
+ "non_qualified": null,
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f60e.png",
+ "sheet_x": 32,
+ "sheet_y": 35,
+ "short_name": "sunglasses",
+ "short_names": ["sunglasses"],
+ "text": null,
+ "texts": ["8)"],
+ "category": "Smileys & Emotion",
+ "subcategory": "face-glasses",
+ "sort_order": 71,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "SMIRKING FACE",
+ "unified": "1F60F",
+ "non_qualified": null,
+ "docomo": "E72C",
+ "au": "EABF",
+ "softbank": "E402",
+ "google": "FE343",
+ "image": "1f60f.png",
+ "sheet_x": 32,
+ "sheet_y": 36,
+ "short_name": "smirk",
+ "short_names": ["smirk"],
+ "text": null,
+ "texts": null,
+ "category": "Smileys & Emotion",
+ "subcategory": "face-neutral-skeptical",
+ "sort_order": 44,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "NEUTRAL FACE",
+ "unified": "1F610",
+ "non_qualified": null,
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f610.png",
+ "sheet_x": 32,
+ "sheet_y": 37,
+ "short_name": "neutral_face",
+ "short_names": ["neutral_face"],
+ "text": null,
+ "texts": [":|", ":-|"],
+ "category": "Smileys & Emotion",
+ "subcategory": "face-neutral-skeptical",
+ "sort_order": 39,
+ "added_in": "0.7",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "EXPRESSIONLESS FACE",
+ "unified": "1F611",
+ "non_qualified": null,
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f611.png",
+ "sheet_x": 32,
+ "sheet_y": 38,
+ "short_name": "expressionless",
+ "short_names": ["expressionless"],
+ "text": null,
+ "texts": null,
+ "category": "Smileys & Emotion",
+ "subcategory": "face-neutral-skeptical",
+ "sort_order": 40,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "UNAMUSED FACE",
+ "unified": "1F612",
+ "non_qualified": null,
+ "docomo": "E725",
+ "au": "EAC9",
+ "softbank": "E40E",
+ "google": "FE326",
+ "image": "1f612.png",
+ "sheet_x": 32,
+ "sheet_y": 39,
+ "short_name": "unamused",
+ "short_names": ["unamused"],
+ "text": ":(",
+ "texts": null,
+ "category": "Smileys & Emotion",
+ "subcategory": "face-neutral-skeptical",
+ "sort_order": 45,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "FACE WITH COLD SWEAT",
+ "unified": "1F613",
+ "non_qualified": null,
+ "docomo": "E723",
+ "au": "E5C6",
+ "softbank": "E108",
+ "google": "FE344",
+ "image": "1f613.png",
+ "sheet_x": 32,
+ "sheet_y": 40,
+ "short_name": "sweat",
+ "short_names": ["sweat"],
+ "text": null,
+ "texts": null,
+ "category": "Smileys & Emotion",
+ "subcategory": "face-concerned",
+ "sort_order": 96,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "PENSIVE FACE",
+ "unified": "1F614",
+ "non_qualified": null,
+ "docomo": "E720",
+ "au": "EAC0",
+ "softbank": "E403",
+ "google": "FE340",
+ "image": "1f614.png",
+ "sheet_x": 32,
+ "sheet_y": 41,
+ "short_name": "pensive",
+ "short_names": ["pensive"],
+ "text": null,
+ "texts": null,
+ "category": "Smileys & Emotion",
+ "subcategory": "face-sleepy",
+ "sort_order": 52,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "CONFUSED FACE",
+ "unified": "1F615",
+ "non_qualified": null,
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f615.png",
+ "sheet_x": 32,
+ "sheet_y": 42,
+ "short_name": "confused",
+ "short_names": ["confused"],
+ "text": null,
+ "texts": [":\\", ":-\\", ":/", ":-/"],
+ "category": "Smileys & Emotion",
+ "subcategory": "face-concerned",
+ "sort_order": 74,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "CONFOUNDED FACE",
+ "unified": "1F616",
+ "non_qualified": null,
+ "docomo": "E6F3",
+ "au": "EAC3",
+ "softbank": "E407",
+ "google": "FE33F",
+ "image": "1f616.png",
+ "sheet_x": 32,
+ "sheet_y": 43,
+ "short_name": "confounded",
+ "short_names": ["confounded"],
+ "text": null,
+ "texts": null,
+ "category": "Smileys & Emotion",
+ "subcategory": "face-concerned",
+ "sort_order": 93,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "KISSING FACE",
+ "unified": "1F617",
+ "non_qualified": null,
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f617.png",
+ "sheet_x": 32,
+ "sheet_y": 44,
+ "short_name": "kissing",
+ "short_names": ["kissing"],
+ "text": null,
+ "texts": null,
+ "category": "Smileys & Emotion",
+ "subcategory": "face-affection",
+ "sort_order": 19,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "FACE THROWING A KISS",
+ "unified": "1F618",
+ "non_qualified": null,
+ "docomo": "E726",
+ "au": "EACF",
+ "softbank": "E418",
+ "google": "FE32C",
+ "image": "1f618.png",
+ "sheet_x": 32,
+ "sheet_y": 45,
+ "short_name": "kissing_heart",
+ "short_names": ["kissing_heart"],
+ "text": null,
+ "texts": [":*", ":-*"],
+ "category": "Smileys & Emotion",
+ "subcategory": "face-affection",
+ "sort_order": 18,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "KISSING FACE WITH SMILING EYES",
+ "unified": "1F619",
+ "non_qualified": null,
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f619.png",
+ "sheet_x": 32,
+ "sheet_y": 46,
+ "short_name": "kissing_smiling_eyes",
+ "short_names": ["kissing_smiling_eyes"],
+ "text": null,
+ "texts": null,
+ "category": "Smileys & Emotion",
+ "subcategory": "face-affection",
+ "sort_order": 22,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "KISSING FACE WITH CLOSED EYES",
+ "unified": "1F61A",
+ "non_qualified": null,
+ "docomo": "E726",
+ "au": "EACE",
+ "softbank": "E417",
+ "google": "FE32D",
+ "image": "1f61a.png",
+ "sheet_x": 32,
+ "sheet_y": 47,
+ "short_name": "kissing_closed_eyes",
+ "short_names": ["kissing_closed_eyes"],
+ "text": null,
+ "texts": null,
+ "category": "Smileys & Emotion",
+ "subcategory": "face-affection",
+ "sort_order": 21,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "FACE WITH STUCK-OUT TONGUE",
+ "unified": "1F61B",
+ "non_qualified": null,
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f61b.png",
+ "sheet_x": 32,
+ "sheet_y": 48,
+ "short_name": "stuck_out_tongue",
+ "short_names": ["stuck_out_tongue"],
+ "text": ":p",
+ "texts": [":p", ":-p", ":P", ":-P", ":b", ":-b"],
+ "category": "Smileys & Emotion",
+ "subcategory": "face-tongue",
+ "sort_order": 25,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "FACE WITH STUCK-OUT TONGUE AND WINKING EYE",
+ "unified": "1F61C",
+ "non_qualified": null,
+ "docomo": "E728",
+ "au": "E4E7",
+ "softbank": "E105",
+ "google": "FE329",
+ "image": "1f61c.png",
+ "sheet_x": 32,
+ "sheet_y": 49,
+ "short_name": "stuck_out_tongue_winking_eye",
+ "short_names": ["stuck_out_tongue_winking_eye"],
+ "text": ";p",
+ "texts": [";p", ";-p", ";b", ";-b", ";P", ";-P"],
+ "category": "Smileys & Emotion",
+ "subcategory": "face-tongue",
+ "sort_order": 26,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "FACE WITH STUCK-OUT TONGUE AND TIGHTLY-CLOSED EYES",
+ "unified": "1F61D",
+ "non_qualified": null,
+ "docomo": "E728",
+ "au": "E4E7",
+ "softbank": "E409",
+ "google": "FE32A",
+ "image": "1f61d.png",
+ "sheet_x": 32,
+ "sheet_y": 50,
+ "short_name": "stuck_out_tongue_closed_eyes",
+ "short_names": ["stuck_out_tongue_closed_eyes"],
+ "text": null,
+ "texts": null,
+ "category": "Smileys & Emotion",
+ "subcategory": "face-tongue",
+ "sort_order": 28,
+ "added_in": "0.6",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "DISAPPOINTED FACE",
+ "unified": "1F61E",
+ "non_qualified": null,
+ "docomo": "E6F2",
+ "au": "EAC0",
+ "softbank": "E058",
+ "google": "FE323",
+ "image": "1f61e.png",
+ "sheet_x": 32,
+ "sheet_y": 51,
+ "short_name": "disappointed",
+ "short_names": ["disappointed"],
+ "text": ":(",
+ "texts": ["):", ":(", ":-("],
+ "category": "Smileys & Emotion",
+ "subcategory": "face-concerned",
+ "sort_order": 95,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "KISS",
- "unified": "1F48F",
+ "name": "WORRIED FACE",
+ "unified": "1F61F",
"non_qualified": null,
- "docomo": "E6F9",
- "au": "E5CA",
- "softbank": "E111",
- "google": "FE827",
- "image": "1f48f.png",
- "sheet_x": 25,
- "sheet_y": 13,
- "short_name": "couplekiss",
- "short_names": ["couplekiss"],
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f61f.png",
+ "sheet_x": 32,
+ "sheet_y": 52,
+ "short_name": "worried",
+ "short_names": ["worried"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 322,
- "added_in": "6.0",
+ "category": "Smileys & Emotion",
+ "subcategory": "face-concerned",
+ "sort_order": 76,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": true,
- "obsoleted_by": "1F469-200D-2764-FE0F-200D-1F48B-200D-1F468"
+ "has_img_facebook": true
},
{
- "name": "BOUQUET",
- "unified": "1F490",
+ "name": "ANGRY FACE",
+ "unified": "1F620",
"non_qualified": null,
- "docomo": null,
- "au": "EA95",
- "softbank": "E306",
- "google": "FE828",
- "image": "1f490.png",
- "sheet_x": 25,
- "sheet_y": 14,
- "short_name": "bouquet",
- "short_names": ["bouquet"],
+ "docomo": "E6F1",
+ "au": "E472",
+ "softbank": "E059",
+ "google": "FE320",
+ "image": "1f620.png",
+ "sheet_x": 32,
+ "sheet_y": 53,
+ "short_name": "angry",
+ "short_names": ["angry"],
"text": null,
- "texts": null,
- "category": "Animals & Nature",
- "sort_order": 103,
- "added_in": "6.0",
+ "texts": [">:(", ">:-("],
+ "category": "Smileys & Emotion",
+ "subcategory": "face-negative",
+ "sort_order": 102,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "COUPLE WITH HEART",
- "unified": "1F491",
+ "name": "POUTING FACE",
+ "unified": "1F621",
"non_qualified": null,
- "docomo": "E6ED",
- "au": "EADA",
- "softbank": "E425",
- "google": "FE829",
- "image": "1f491.png",
- "sheet_x": 25,
- "sheet_y": 15,
- "short_name": "couple_with_heart",
- "short_names": ["couple_with_heart"],
+ "docomo": "E724",
+ "au": "EB5D",
+ "softbank": "E416",
+ "google": "FE33D",
+ "image": "1f621.png",
+ "sheet_x": 32,
+ "sheet_y": 54,
+ "short_name": "rage",
+ "short_names": ["rage"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 326,
- "added_in": "6.0",
+ "category": "Smileys & Emotion",
+ "subcategory": "face-negative",
+ "sort_order": 101,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": true,
- "obsoleted_by": "1F469-200D-2764-FE0F-200D-1F468"
+ "has_img_facebook": true
},
{
- "name": "WEDDING",
- "unified": "1F492",
+ "name": "CRYING FACE",
+ "unified": "1F622",
"non_qualified": null,
- "docomo": null,
- "au": "E5BB",
- "softbank": "E43D",
- "google": "FE82A",
- "image": "1f492.png",
- "sheet_x": 25,
- "sheet_y": 16,
- "short_name": "wedding",
- "short_names": ["wedding"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 38,
- "added_in": "6.0",
+ "docomo": "E72E",
+ "au": "EB69",
+ "softbank": "E413",
+ "google": "FE339",
+ "image": "1f622.png",
+ "sheet_x": 32,
+ "sheet_y": 55,
+ "short_name": "cry",
+ "short_names": ["cry"],
+ "text": ":'(",
+ "texts": [":'("],
+ "category": "Smileys & Emotion",
+ "subcategory": "face-concerned",
+ "sort_order": 90,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "BEATING HEART",
- "unified": "1F493",
+ "name": "PERSEVERING FACE",
+ "unified": "1F623",
"non_qualified": null,
- "docomo": "E6ED",
- "au": "EB75",
- "softbank": "E327",
- "google": "FEB0D",
- "image": "1f493.png",
- "sheet_x": 25,
- "sheet_y": 17,
- "short_name": "heartbeat",
- "short_names": ["heartbeat"],
+ "docomo": "E72B",
+ "au": "EAC2",
+ "softbank": "E406",
+ "google": "FE33C",
+ "image": "1f623.png",
+ "sheet_x": 32,
+ "sheet_y": 56,
+ "short_name": "persevere",
+ "short_names": ["persevere"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 405,
- "added_in": "6.0",
+ "category": "Smileys & Emotion",
+ "subcategory": "face-concerned",
+ "sort_order": 94,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "BROKEN HEART",
- "unified": "1F494",
+ "name": "FACE WITH LOOK OF TRIUMPH",
+ "unified": "1F624",
"non_qualified": null,
- "docomo": "E6EE",
- "au": "E477",
- "softbank": "E023",
- "google": "FEB0E",
- "image": "1f494.png",
- "sheet_x": 25,
- "sheet_y": 18,
- "short_name": "broken_heart",
- "short_names": ["broken_heart"],
- "text": "3",
- "texts": ["3"],
- "category": "Smileys & People",
- "sort_order": 406,
- "added_in": "6.0",
+ "docomo": "E753",
+ "au": "EAC1",
+ "softbank": null,
+ "google": "FE328",
+ "image": "1f624.png",
+ "sheet_x": 32,
+ "sheet_y": 57,
+ "short_name": "triumph",
+ "short_names": ["triumph"],
+ "text": null,
+ "texts": null,
+ "category": "Smileys & Emotion",
+ "subcategory": "face-negative",
+ "sort_order": 100,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "TWO HEARTS",
- "unified": "1F495",
+ "name": "DISAPPOINTED BUT RELIEVED FACE",
+ "unified": "1F625",
"non_qualified": null,
- "docomo": "E6EF",
- "au": "E478",
- "softbank": null,
- "google": "FEB0F",
- "image": "1f495.png",
- "sheet_x": 25,
- "sheet_y": 19,
- "short_name": "two_hearts",
- "short_names": ["two_hearts"],
+ "docomo": "E723",
+ "au": "E5C6",
+ "softbank": "E401",
+ "google": "FE345",
+ "image": "1f625.png",
+ "sheet_x": 32,
+ "sheet_y": 58,
+ "short_name": "disappointed_relieved",
+ "short_names": ["disappointed_relieved"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 407,
- "added_in": "6.0",
+ "category": "Smileys & Emotion",
+ "subcategory": "face-concerned",
+ "sort_order": 89,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "SPARKLING HEART",
- "unified": "1F496",
+ "name": "FROWNING FACE WITH OPEN MOUTH",
+ "unified": "1F626",
"non_qualified": null,
- "docomo": "E6EC",
- "au": "EAA6",
+ "docomo": null,
+ "au": null,
"softbank": null,
- "google": "FEB10",
- "image": "1f496.png",
- "sheet_x": 25,
- "sheet_y": 20,
- "short_name": "sparkling_heart",
- "short_names": ["sparkling_heart"],
+ "google": null,
+ "image": "1f626.png",
+ "sheet_x": 32,
+ "sheet_y": 59,
+ "short_name": "frowning",
+ "short_names": ["frowning"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 408,
- "added_in": "6.0",
+ "category": "Smileys & Emotion",
+ "subcategory": "face-concerned",
+ "sort_order": 85,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "GROWING HEART",
- "unified": "1F497",
+ "name": "ANGUISHED FACE",
+ "unified": "1F627",
"non_qualified": null,
- "docomo": "E6ED",
- "au": "EB75",
- "softbank": "E328",
- "google": "FEB11",
- "image": "1f497.png",
- "sheet_x": 25,
- "sheet_y": 21,
- "short_name": "heartpulse",
- "short_names": ["heartpulse"],
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f627.png",
+ "sheet_x": 32,
+ "sheet_y": 60,
+ "short_name": "anguished",
+ "short_names": ["anguished"],
"text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 409,
- "added_in": "6.0",
+ "texts": ["D:"],
+ "category": "Smileys & Emotion",
+ "subcategory": "face-concerned",
+ "sort_order": 86,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "HEART WITH ARROW",
- "unified": "1F498",
+ "name": "FEARFUL FACE",
+ "unified": "1F628",
"non_qualified": null,
- "docomo": "E6EC",
- "au": "E4EA",
- "softbank": "E329",
- "google": "FEB12",
- "image": "1f498.png",
- "sheet_x": 25,
- "sheet_y": 22,
- "short_name": "cupid",
- "short_names": ["cupid"],
+ "docomo": "E757",
+ "au": "EAC6",
+ "softbank": "E40B",
+ "google": "FE33B",
+ "image": "1f628.png",
+ "sheet_x": 33,
+ "sheet_y": 0,
+ "short_name": "fearful",
+ "short_names": ["fearful"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 403,
- "added_in": "6.0",
+ "category": "Smileys & Emotion",
+ "subcategory": "face-concerned",
+ "sort_order": 87,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "BLUE HEART",
- "unified": "1F499",
+ "name": "WEARY FACE",
+ "unified": "1F629",
"non_qualified": null,
- "docomo": "E6EC",
- "au": "EAA7",
- "softbank": "E32A",
- "google": "FEB13",
- "image": "1f499.png",
- "sheet_x": 25,
- "sheet_y": 23,
- "short_name": "blue_heart",
- "short_names": ["blue_heart"],
- "text": "<3",
+ "docomo": "E6F3",
+ "au": "EB67",
+ "softbank": null,
+ "google": "FE321",
+ "image": "1f629.png",
+ "sheet_x": 33,
+ "sheet_y": 1,
+ "short_name": "weary",
+ "short_names": ["weary"],
+ "text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 410,
- "added_in": "6.0",
+ "category": "Smileys & Emotion",
+ "subcategory": "face-concerned",
+ "sort_order": 97,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "GREEN HEART",
- "unified": "1F49A",
+ "name": "SLEEPY FACE",
+ "unified": "1F62A",
"non_qualified": null,
- "docomo": "E6EC",
- "au": "EAA8",
- "softbank": "E32B",
- "google": "FEB14",
- "image": "1f49a.png",
- "sheet_x": 25,
- "sheet_y": 24,
- "short_name": "green_heart",
- "short_names": ["green_heart"],
- "text": "<3",
+ "docomo": "E701",
+ "au": "EAC4",
+ "softbank": "E408",
+ "google": "FE342",
+ "image": "1f62a.png",
+ "sheet_x": 33,
+ "sheet_y": 2,
+ "short_name": "sleepy",
+ "short_names": ["sleepy"],
+ "text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 411,
- "added_in": "6.0",
+ "category": "Smileys & Emotion",
+ "subcategory": "face-sleepy",
+ "sort_order": 53,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "YELLOW HEART",
- "unified": "1F49B",
+ "name": "TIRED FACE",
+ "unified": "1F62B",
"non_qualified": null,
- "docomo": "E6EC",
- "au": "EAA9",
- "softbank": "E32C",
- "google": "FEB15",
- "image": "1f49b.png",
- "sheet_x": 25,
- "sheet_y": 25,
- "short_name": "yellow_heart",
- "short_names": ["yellow_heart"],
- "text": "<3",
+ "docomo": "E72B",
+ "au": "E474",
+ "softbank": null,
+ "google": "FE346",
+ "image": "1f62b.png",
+ "sheet_x": 33,
+ "sheet_y": 3,
+ "short_name": "tired_face",
+ "short_names": ["tired_face"],
+ "text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 412,
- "added_in": "6.0",
+ "category": "Smileys & Emotion",
+ "subcategory": "face-concerned",
+ "sort_order": 98,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "PURPLE HEART",
- "unified": "1F49C",
+ "name": "GRIMACING FACE",
+ "unified": "1F62C",
"non_qualified": null,
- "docomo": "E6EC",
- "au": "EAAA",
- "softbank": "E32D",
- "google": "FEB16",
- "image": "1f49c.png",
- "sheet_x": 25,
- "sheet_y": 26,
- "short_name": "purple_heart",
- "short_names": ["purple_heart"],
- "text": "<3",
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f62c.png",
+ "sheet_x": 33,
+ "sheet_y": 4,
+ "short_name": "grimacing",
+ "short_names": ["grimacing"],
+ "text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 414,
- "added_in": "6.0",
+ "category": "Smileys & Emotion",
+ "subcategory": "face-neutral-skeptical",
+ "sort_order": 47,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "HEART WITH RIBBON",
- "unified": "1F49D",
+ "name": "LOUDLY CRYING FACE",
+ "unified": "1F62D",
"non_qualified": null,
- "docomo": "E6EC",
- "au": "EB54",
- "softbank": "E437",
- "google": "FEB17",
- "image": "1f49d.png",
- "sheet_x": 25,
- "sheet_y": 27,
- "short_name": "gift_heart",
- "short_names": ["gift_heart"],
- "text": null,
+ "docomo": "E72D",
+ "au": "E473",
+ "softbank": "E411",
+ "google": "FE33A",
+ "image": "1f62d.png",
+ "sheet_x": 33,
+ "sheet_y": 5,
+ "short_name": "sob",
+ "short_names": ["sob"],
+ "text": ":'(",
"texts": null,
- "category": "Smileys & People",
- "sort_order": 416,
- "added_in": "6.0",
+ "category": "Smileys & Emotion",
+ "subcategory": "face-concerned",
+ "sort_order": 91,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "REVOLVING HEARTS",
- "unified": "1F49E",
+ "name": "FACE EXHALING",
+ "unified": "1F62E-200D-1F4A8",
"non_qualified": null,
- "docomo": "E6ED",
- "au": "E5AF",
+ "docomo": null,
+ "au": null,
"softbank": null,
- "google": "FEB18",
- "image": "1f49e.png",
- "sheet_x": 25,
- "sheet_y": 28,
- "short_name": "revolving_hearts",
- "short_names": ["revolving_hearts"],
+ "google": null,
+ "image": "1f62e-200d-1f4a8.png",
+ "sheet_x": 33,
+ "sheet_y": 6,
+ "short_name": "face_exhaling",
+ "short_names": ["face_exhaling"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 417,
- "added_in": "6.0",
+ "category": "Smileys & Emotion",
+ "subcategory": "face-neutral-skeptical",
+ "sort_order": 48,
+ "added_in": "13.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "HEART DECORATION",
- "unified": "1F49F",
+ "name": "FACE WITH OPEN MOUTH",
+ "unified": "1F62E",
"non_qualified": null,
- "docomo": "E6F8",
- "au": "E595",
- "softbank": "E204",
- "google": "FEB19",
- "image": "1f49f.png",
- "sheet_x": 25,
- "sheet_y": 29,
- "short_name": "heart_decoration",
- "short_names": ["heart_decoration"],
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f62e.png",
+ "sheet_x": 33,
+ "sheet_y": 7,
+ "short_name": "open_mouth",
+ "short_names": ["open_mouth"],
"text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 418,
- "added_in": "6.0",
+ "texts": [":o", ":-o", ":O", ":-O"],
+ "category": "Smileys & Emotion",
+ "subcategory": "face-concerned",
+ "sort_order": 79,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "DIAMOND SHAPE WITH A DOT INSIDE",
- "unified": "1F4A0",
+ "name": "HUSHED FACE",
+ "unified": "1F62F",
"non_qualified": null,
- "docomo": "E6F8",
+ "docomo": null,
"au": null,
"softbank": null,
- "google": "FEB55",
- "image": "1f4a0.png",
- "sheet_x": 25,
- "sheet_y": 30,
- "short_name": "diamond_shape_with_a_dot_inside",
- "short_names": ["diamond_shape_with_a_dot_inside"],
+ "google": null,
+ "image": "1f62f.png",
+ "sheet_x": 33,
+ "sheet_y": 8,
+ "short_name": "hushed",
+ "short_names": ["hushed"],
"text": null,
"texts": null,
- "category": "Symbols",
- "sort_order": 199,
- "added_in": "6.0",
+ "category": "Smileys & Emotion",
+ "subcategory": "face-concerned",
+ "sort_order": 80,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "ELECTRIC LIGHT BULB",
- "unified": "1F4A1",
+ "name": "FACE WITH OPEN MOUTH AND COLD SWEAT",
+ "unified": "1F630",
"non_qualified": null,
- "docomo": "E6FB",
- "au": "E476",
- "softbank": "E10F",
- "google": "FEB56",
- "image": "1f4a1.png",
- "sheet_x": 25,
- "sheet_y": 31,
- "short_name": "bulb",
- "short_names": ["bulb"],
+ "docomo": "E723",
+ "au": "EACB",
+ "softbank": "E40F",
+ "google": "FE325",
+ "image": "1f630.png",
+ "sheet_x": 33,
+ "sheet_y": 9,
+ "short_name": "cold_sweat",
+ "short_names": ["cold_sweat"],
"text": null,
"texts": null,
- "category": "Objects",
- "sort_order": 56,
- "added_in": "6.0",
+ "category": "Smileys & Emotion",
+ "subcategory": "face-concerned",
+ "sort_order": 88,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "ANGER SYMBOL",
- "unified": "1F4A2",
+ "name": "FACE SCREAMING IN FEAR",
+ "unified": "1F631",
"non_qualified": null,
- "docomo": "E6FC",
- "au": "E4E5",
- "softbank": "E334",
- "google": "FEB57",
- "image": "1f4a2.png",
- "sheet_x": 25,
- "sheet_y": 32,
- "short_name": "anger",
- "short_names": ["anger"],
+ "docomo": "E757",
+ "au": "E5C5",
+ "softbank": "E107",
+ "google": "FE341",
+ "image": "1f631.png",
+ "sheet_x": 33,
+ "sheet_y": 10,
+ "short_name": "scream",
+ "short_names": ["scream"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 422,
- "added_in": "6.0",
+ "category": "Smileys & Emotion",
+ "subcategory": "face-concerned",
+ "sort_order": 92,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "BOMB",
- "unified": "1F4A3",
+ "name": "ASTONISHED FACE",
+ "unified": "1F632",
"non_qualified": null,
- "docomo": "E6FE",
- "au": "E47A",
- "softbank": "E311",
- "google": "FEB58",
- "image": "1f4a3.png",
- "sheet_x": 25,
- "sheet_y": 33,
- "short_name": "bomb",
- "short_names": ["bomb"],
+ "docomo": "E6F4",
+ "au": "EACA",
+ "softbank": "E410",
+ "google": "FE322",
+ "image": "1f632.png",
+ "sheet_x": 33,
+ "sheet_y": 11,
+ "short_name": "astonished",
+ "short_names": ["astonished"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 423,
- "added_in": "6.0",
+ "category": "Smileys & Emotion",
+ "subcategory": "face-concerned",
+ "sort_order": 81,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "SLEEPING SYMBOL",
- "unified": "1F4A4",
+ "name": "FLUSHED FACE",
+ "unified": "1F633",
"non_qualified": null,
- "docomo": "E701",
- "au": "E475",
- "softbank": "E13C",
- "google": "FEB59",
- "image": "1f4a4.png",
- "sheet_x": 25,
- "sheet_y": 34,
- "short_name": "zzz",
- "short_names": ["zzz"],
+ "docomo": "E72A",
+ "au": "EAC8",
+ "softbank": "E40D",
+ "google": "FE32F",
+ "image": "1f633.png",
+ "sheet_x": 33,
+ "sheet_y": 12,
+ "short_name": "flushed",
+ "short_names": ["flushed"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 421,
- "added_in": "6.0",
+ "category": "Smileys & Emotion",
+ "subcategory": "face-concerned",
+ "sort_order": 82,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "COLLISION SYMBOL",
- "unified": "1F4A5",
+ "name": "SLEEPING FACE",
+ "unified": "1F634",
"non_qualified": null,
- "docomo": "E705",
- "au": "E5B0",
+ "docomo": null,
+ "au": null,
"softbank": null,
- "google": "FEB5A",
- "image": "1f4a5.png",
- "sheet_x": 25,
- "sheet_y": 35,
- "short_name": "boom",
- "short_names": ["boom", "collision"],
+ "google": null,
+ "image": "1f634.png",
+ "sheet_x": 33,
+ "sheet_y": 13,
+ "short_name": "sleeping",
+ "short_names": ["sleeping"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 424,
- "added_in": "6.0",
+ "category": "Smileys & Emotion",
+ "subcategory": "face-sleepy",
+ "sort_order": 55,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "SPLASHING SWEAT SYMBOL",
- "unified": "1F4A6",
+ "name": "FACE WITH SPIRAL EYES",
+ "unified": "1F635-200D-1F4AB",
"non_qualified": null,
- "docomo": "E706",
- "au": "E5B1",
- "softbank": "E331",
- "google": "FEB5B",
- "image": "1f4a6.png",
- "sheet_x": 25,
- "sheet_y": 36,
- "short_name": "sweat_drops",
- "short_names": ["sweat_drops"],
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f635-200d-1f4ab.png",
+ "sheet_x": 33,
+ "sheet_y": 14,
+ "short_name": "face_with_spiral_eyes",
+ "short_names": ["face_with_spiral_eyes"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 425,
- "added_in": "6.0",
+ "category": "Smileys & Emotion",
+ "subcategory": "face-unwell",
+ "sort_order": 66,
+ "added_in": "13.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "DROPLET",
- "unified": "1F4A7",
+ "name": "DIZZY FACE",
+ "unified": "1F635",
"non_qualified": null,
- "docomo": "E707",
- "au": "E4E6",
+ "docomo": "E6F4",
+ "au": "E5AE",
"softbank": null,
- "google": "FEB5C",
- "image": "1f4a7.png",
- "sheet_x": 25,
- "sheet_y": 37,
- "short_name": "droplet",
- "short_names": ["droplet"],
+ "google": "FE324",
+ "image": "1f635.png",
+ "sheet_x": 33,
+ "sheet_y": 15,
+ "short_name": "dizzy_face",
+ "short_names": ["dizzy_face"],
"text": null,
"texts": null,
- "category": "Travel & Places",
- "sort_order": 201,
- "added_in": "6.0",
+ "category": "Smileys & Emotion",
+ "subcategory": "face-unwell",
+ "sort_order": 65,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "DASH SYMBOL",
- "unified": "1F4A8",
- "non_qualified": null,
- "docomo": "E708",
- "au": "E4F4",
- "softbank": "E330",
- "google": "FEB5D",
- "image": "1f4a8.png",
- "sheet_x": 25,
- "sheet_y": 38,
- "short_name": "dash",
- "short_names": ["dash"],
+ "name": "FACE IN CLOUDS",
+ "unified": "1F636-200D-1F32B-FE0F",
+ "non_qualified": "1F636-200D-1F32B",
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f636-200d-1f32b-fe0f.png",
+ "sheet_x": 33,
+ "sheet_y": 16,
+ "short_name": "face_in_clouds",
+ "short_names": ["face_in_clouds"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 426,
- "added_in": "6.0",
+ "category": "Smileys & Emotion",
+ "subcategory": "face-neutral-skeptical",
+ "sort_order": 43,
+ "added_in": "13.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "PILE OF POO",
- "unified": "1F4A9",
+ "name": "FACE WITHOUT MOUTH",
+ "unified": "1F636",
"non_qualified": null,
"docomo": null,
- "au": "E4F5",
- "softbank": "E05A",
- "google": "FE4F4",
- "image": "1f4a9.png",
- "sheet_x": 25,
- "sheet_y": 39,
- "short_name": "hankey",
- "short_names": ["hankey", "poop", "shit"],
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f636.png",
+ "sheet_x": 33,
+ "sheet_y": 17,
+ "short_name": "no_mouth",
+ "short_names": ["no_mouth"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 101,
- "added_in": "6.0",
+ "category": "Smileys & Emotion",
+ "subcategory": "face-neutral-skeptical",
+ "sort_order": 41,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "FLEXED BICEPS",
- "unified": "1F4AA",
+ "name": "FACE WITH MEDICAL MASK",
+ "unified": "1F637",
"non_qualified": null,
"docomo": null,
- "au": "E4E9",
- "softbank": "E14C",
- "google": "FEB5E",
- "image": "1f4aa.png",
- "sheet_x": 25,
- "sheet_y": 40,
- "short_name": "muscle",
- "short_names": ["muscle"],
+ "au": "EAC7",
+ "softbank": "E40C",
+ "google": "FE32E",
+ "image": "1f637.png",
+ "sheet_x": 33,
+ "sheet_y": 18,
+ "short_name": "mask",
+ "short_names": ["mask"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 357,
- "added_in": "6.0",
+ "category": "Smileys & Emotion",
+ "subcategory": "face-unwell",
+ "sort_order": 56,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F4AA-1F3FB",
- "non_qualified": null,
- "image": "1f4aa-1f3fb.png",
- "sheet_x": 25,
- "sheet_y": 41,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FC": {
- "unified": "1F4AA-1F3FC",
- "non_qualified": null,
- "image": "1f4aa-1f3fc.png",
- "sheet_x": 25,
- "sheet_y": 42,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FD": {
- "unified": "1F4AA-1F3FD",
- "non_qualified": null,
- "image": "1f4aa-1f3fd.png",
- "sheet_x": 25,
- "sheet_y": 43,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FE": {
- "unified": "1F4AA-1F3FE",
- "non_qualified": null,
- "image": "1f4aa-1f3fe.png",
- "sheet_x": 25,
- "sheet_y": 44,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FF": {
- "unified": "1F4AA-1F3FF",
- "non_qualified": null,
- "image": "1f4aa-1f3ff.png",
- "sheet_x": 25,
- "sheet_y": 45,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- }
+ "has_img_facebook": true
},
{
- "name": "DIZZY SYMBOL",
- "unified": "1F4AB",
+ "name": "GRINNING CAT FACE WITH SMILING EYES",
+ "unified": "1F638",
"non_qualified": null,
- "docomo": null,
- "au": "EB5C",
+ "docomo": "E753",
+ "au": "EB7F",
"softbank": null,
- "google": "FEB5F",
- "image": "1f4ab.png",
- "sheet_x": 25,
- "sheet_y": 46,
- "short_name": "dizzy",
- "short_names": ["dizzy"],
+ "google": "FE349",
+ "image": "1f638.png",
+ "sheet_x": 33,
+ "sheet_y": 19,
+ "short_name": "smile_cat",
+ "short_names": ["smile_cat"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 427,
- "added_in": "6.0",
+ "category": "Smileys & Emotion",
+ "subcategory": "cat-face",
+ "sort_order": 117,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "SPEECH BALLOON",
- "unified": "1F4AC",
+ "name": "CAT FACE WITH TEARS OF JOY",
+ "unified": "1F639",
"non_qualified": null,
- "docomo": null,
- "au": "E4FD",
+ "docomo": "E72A",
+ "au": "EB63",
"softbank": null,
- "google": "FE532",
- "image": "1f4ac.png",
- "sheet_x": 25,
- "sheet_y": 47,
- "short_name": "speech_balloon",
- "short_names": ["speech_balloon"],
+ "google": "FE34A",
+ "image": "1f639.png",
+ "sheet_x": 33,
+ "sheet_y": 20,
+ "short_name": "joy_cat",
+ "short_names": ["joy_cat"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 428,
- "added_in": "6.0",
+ "category": "Smileys & Emotion",
+ "subcategory": "cat-face",
+ "sort_order": 118,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "THOUGHT BALLOON",
- "unified": "1F4AD",
+ "name": "SMILING CAT FACE WITH OPEN MOUTH",
+ "unified": "1F63A",
"non_qualified": null,
- "docomo": null,
- "au": null,
+ "docomo": "E6F0",
+ "au": "EB61",
"softbank": null,
- "google": null,
- "image": "1f4ad.png",
- "sheet_x": 25,
- "sheet_y": 48,
- "short_name": "thought_balloon",
- "short_names": ["thought_balloon"],
+ "google": "FE348",
+ "image": "1f63a.png",
+ "sheet_x": 33,
+ "sheet_y": 21,
+ "short_name": "smiley_cat",
+ "short_names": ["smiley_cat"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 431,
- "added_in": "6.0",
+ "category": "Smileys & Emotion",
+ "subcategory": "cat-face",
+ "sort_order": 116,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "WHITE FLOWER",
- "unified": "1F4AE",
+ "name": "SMILING CAT FACE WITH HEART-SHAPED EYES",
+ "unified": "1F63B",
"non_qualified": null,
- "docomo": null,
- "au": "E4F0",
+ "docomo": "E726",
+ "au": "EB65",
"softbank": null,
- "google": "FEB7A",
- "image": "1f4ae.png",
- "sheet_x": 25,
- "sheet_y": 49,
- "short_name": "white_flower",
- "short_names": ["white_flower"],
+ "google": "FE34C",
+ "image": "1f63b.png",
+ "sheet_x": 33,
+ "sheet_y": 22,
+ "short_name": "heart_eyes_cat",
+ "short_names": ["heart_eyes_cat"],
"text": null,
"texts": null,
- "category": "Animals & Nature",
- "sort_order": 105,
- "added_in": "6.0",
+ "category": "Smileys & Emotion",
+ "subcategory": "cat-face",
+ "sort_order": 119,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "HUNDRED POINTS SYMBOL",
- "unified": "1F4AF",
+ "name": "CAT FACE WITH WRY SMILE",
+ "unified": "1F63C",
"non_qualified": null,
- "docomo": null,
- "au": "E4F2",
+ "docomo": "E753",
+ "au": "EB6A",
"softbank": null,
- "google": "FEB7B",
- "image": "1f4af.png",
- "sheet_x": 25,
- "sheet_y": 50,
- "short_name": "100",
- "short_names": ["100"],
+ "google": "FE34F",
+ "image": "1f63c.png",
+ "sheet_x": 33,
+ "sheet_y": 23,
+ "short_name": "smirk_cat",
+ "short_names": ["smirk_cat"],
"text": null,
"texts": null,
- "category": "Symbols",
- "sort_order": 145,
- "added_in": "6.0",
+ "category": "Smileys & Emotion",
+ "subcategory": "cat-face",
+ "sort_order": 120,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "MONEY BAG",
- "unified": "1F4B0",
+ "name": "KISSING CAT FACE WITH CLOSED EYES",
+ "unified": "1F63D",
"non_qualified": null,
- "docomo": "E715",
- "au": "E4C7",
- "softbank": "E12F",
- "google": "FE4DD",
- "image": "1f4b0.png",
- "sheet_x": 25,
- "sheet_y": 51,
- "short_name": "moneybag",
- "short_names": ["moneybag"],
+ "docomo": "E726",
+ "au": "EB60",
+ "softbank": null,
+ "google": "FE34B",
+ "image": "1f63d.png",
+ "sheet_x": 33,
+ "sheet_y": 24,
+ "short_name": "kissing_cat",
+ "short_names": ["kissing_cat"],
"text": null,
"texts": null,
- "category": "Objects",
- "sort_order": 76,
- "added_in": "6.0",
+ "category": "Smileys & Emotion",
+ "subcategory": "cat-face",
+ "sort_order": 121,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "CURRENCY EXCHANGE",
- "unified": "1F4B1",
+ "name": "POUTING CAT FACE",
+ "unified": "1F63E",
"non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": "E149",
- "google": "FE4DE",
- "image": "1f4b1.png",
- "sheet_x": 25,
- "sheet_y": 52,
- "short_name": "currency_exchange",
- "short_names": ["currency_exchange"],
+ "docomo": "E724",
+ "au": "EB5E",
+ "softbank": null,
+ "google": "FE34E",
+ "image": "1f63e.png",
+ "sheet_x": 33,
+ "sheet_y": 25,
+ "short_name": "pouting_cat",
+ "short_names": ["pouting_cat"],
"text": null,
"texts": null,
- "category": "Objects",
- "sort_order": 85,
- "added_in": "6.0",
+ "category": "Smileys & Emotion",
+ "subcategory": "cat-face",
+ "sort_order": 124,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "HEAVY DOLLAR SIGN",
- "unified": "1F4B2",
+ "name": "CRYING CAT FACE",
+ "unified": "1F63F",
"non_qualified": null,
- "docomo": "E715",
- "au": "E579",
+ "docomo": "E72E",
+ "au": "EB68",
"softbank": null,
- "google": "FE4E0",
- "image": "1f4b2.png",
- "sheet_x": 26,
- "sheet_y": 0,
- "short_name": "heavy_dollar_sign",
- "short_names": ["heavy_dollar_sign"],
+ "google": "FE34D",
+ "image": "1f63f.png",
+ "sheet_x": 33,
+ "sheet_y": 26,
+ "short_name": "crying_cat_face",
+ "short_names": ["crying_cat_face"],
"text": null,
"texts": null,
- "category": "Objects",
- "sort_order": 86,
- "added_in": "6.0",
+ "category": "Smileys & Emotion",
+ "subcategory": "cat-face",
+ "sort_order": 123,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "CREDIT CARD",
- "unified": "1F4B3",
+ "name": "WEARY CAT FACE",
+ "unified": "1F640",
"non_qualified": null,
- "docomo": null,
- "au": "E57C",
+ "docomo": "E6F3",
+ "au": "EB66",
"softbank": null,
- "google": "FE4E1",
- "image": "1f4b3.png",
- "sheet_x": 26,
- "sheet_y": 1,
- "short_name": "credit_card",
- "short_names": ["credit_card"],
+ "google": "FE350",
+ "image": "1f640.png",
+ "sheet_x": 33,
+ "sheet_y": 27,
+ "short_name": "scream_cat",
+ "short_names": ["scream_cat"],
"text": null,
"texts": null,
- "category": "Objects",
- "sort_order": 82,
- "added_in": "6.0",
+ "category": "Smileys & Emotion",
+ "subcategory": "cat-face",
+ "sort_order": 122,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "BANKNOTE WITH YEN SIGN",
- "unified": "1F4B4",
+ "name": "SLIGHTLY FROWNING FACE",
+ "unified": "1F641",
"non_qualified": null,
- "docomo": "E6D6",
- "au": "E57D",
+ "docomo": null,
+ "au": null,
"softbank": null,
- "google": "FE4E2",
- "image": "1f4b4.png",
- "sheet_x": 26,
- "sheet_y": 2,
- "short_name": "yen",
- "short_names": ["yen"],
+ "google": null,
+ "image": "1f641.png",
+ "sheet_x": 33,
+ "sheet_y": 28,
+ "short_name": "slightly_frowning_face",
+ "short_names": ["slightly_frowning_face"],
"text": null,
"texts": null,
- "category": "Objects",
+ "category": "Smileys & Emotion",
+ "subcategory": "face-concerned",
"sort_order": 77,
- "added_in": "6.0",
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "BANKNOTE WITH DOLLAR SIGN",
- "unified": "1F4B5",
+ "name": "SLIGHTLY SMILING FACE",
+ "unified": "1F642",
+ "non_qualified": null,
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f642.png",
+ "sheet_x": 33,
+ "sheet_y": 29,
+ "short_name": "slightly_smiling_face",
+ "short_names": ["slightly_smiling_face"],
+ "text": null,
+ "texts": [":)", "(:", ":-)"],
+ "category": "Smileys & Emotion",
+ "subcategory": "face-smiling",
+ "sort_order": 9,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "UPSIDE-DOWN FACE",
+ "unified": "1F643",
"non_qualified": null,
- "docomo": "E715",
- "au": "E585",
+ "docomo": null,
+ "au": null,
"softbank": null,
- "google": "FE4E3",
- "image": "1f4b5.png",
- "sheet_x": 26,
- "sheet_y": 3,
- "short_name": "dollar",
- "short_names": ["dollar"],
+ "google": null,
+ "image": "1f643.png",
+ "sheet_x": 33,
+ "sheet_y": 30,
+ "short_name": "upside_down_face",
+ "short_names": ["upside_down_face"],
"text": null,
"texts": null,
- "category": "Objects",
- "sort_order": 78,
- "added_in": "6.0",
+ "category": "Smileys & Emotion",
+ "subcategory": "face-smiling",
+ "sort_order": 10,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "BANKNOTE WITH EURO SIGN",
- "unified": "1F4B6",
+ "name": "FACE WITH ROLLING EYES",
+ "unified": "1F644",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f4b6.png",
- "sheet_x": 26,
- "sheet_y": 4,
- "short_name": "euro",
- "short_names": ["euro"],
+ "image": "1f644.png",
+ "sheet_x": 33,
+ "sheet_y": 31,
+ "short_name": "face_with_rolling_eyes",
+ "short_names": ["face_with_rolling_eyes"],
"text": null,
"texts": null,
- "category": "Objects",
- "sort_order": 79,
- "added_in": "6.0",
+ "category": "Smileys & Emotion",
+ "subcategory": "face-neutral-skeptical",
+ "sort_order": 46,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "BANKNOTE WITH POUND SIGN",
- "unified": "1F4B7",
- "non_qualified": null,
+ "name": "WOMAN GESTURING NO",
+ "unified": "1F645-200D-2640-FE0F",
+ "non_qualified": "1F645-200D-2640",
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f4b7.png",
- "sheet_x": 26,
- "sheet_y": 5,
- "short_name": "pound",
- "short_names": ["pound"],
+ "image": "1f645-200d-2640-fe0f.png",
+ "sheet_x": 33,
+ "sheet_y": 32,
+ "short_name": "woman-gesturing-no",
+ "short_names": ["woman-gesturing-no"],
"text": null,
"texts": null,
- "category": "Objects",
- "sort_order": 80,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "person-gesture",
+ "sort_order": 264,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": true
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F645-1F3FB-200D-2640-FE0F",
+ "non_qualified": "1F645-1F3FB-200D-2640",
+ "image": "1f645-1f3fb-200d-2640-fe0f.png",
+ "sheet_x": 33,
+ "sheet_y": 33,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1F645-1F3FC-200D-2640-FE0F",
+ "non_qualified": "1F645-1F3FC-200D-2640",
+ "image": "1f645-1f3fc-200d-2640-fe0f.png",
+ "sheet_x": 33,
+ "sheet_y": 34,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1F645-1F3FD-200D-2640-FE0F",
+ "non_qualified": "1F645-1F3FD-200D-2640",
+ "image": "1f645-1f3fd-200d-2640-fe0f.png",
+ "sheet_x": 33,
+ "sheet_y": 35,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1F645-1F3FE-200D-2640-FE0F",
+ "non_qualified": "1F645-1F3FE-200D-2640",
+ "image": "1f645-1f3fe-200d-2640-fe0f.png",
+ "sheet_x": 33,
+ "sheet_y": 36,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1F645-1F3FF-200D-2640-FE0F",
+ "non_qualified": "1F645-1F3FF-200D-2640",
+ "image": "1f645-1f3ff-200d-2640-fe0f.png",
+ "sheet_x": 33,
+ "sheet_y": 37,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ },
+ "obsoletes": "1F645"
},
{
- "name": "MONEY WITH WINGS",
- "unified": "1F4B8",
- "non_qualified": null,
+ "name": "MAN GESTURING NO",
+ "unified": "1F645-200D-2642-FE0F",
+ "non_qualified": "1F645-200D-2642",
"docomo": null,
- "au": "EB5B",
+ "au": null,
"softbank": null,
- "google": "FE4E4",
- "image": "1f4b8.png",
- "sheet_x": 26,
- "sheet_y": 6,
- "short_name": "money_with_wings",
- "short_names": ["money_with_wings"],
+ "google": null,
+ "image": "1f645-200d-2642-fe0f.png",
+ "sheet_x": 33,
+ "sheet_y": 38,
+ "short_name": "man-gesturing-no",
+ "short_names": ["man-gesturing-no"],
"text": null,
"texts": null,
- "category": "Objects",
- "sort_order": 81,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "person-gesture",
+ "sort_order": 263,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": true
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F645-1F3FB-200D-2642-FE0F",
+ "non_qualified": "1F645-1F3FB-200D-2642",
+ "image": "1f645-1f3fb-200d-2642-fe0f.png",
+ "sheet_x": 33,
+ "sheet_y": 39,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1F645-1F3FC-200D-2642-FE0F",
+ "non_qualified": "1F645-1F3FC-200D-2642",
+ "image": "1f645-1f3fc-200d-2642-fe0f.png",
+ "sheet_x": 33,
+ "sheet_y": 40,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1F645-1F3FD-200D-2642-FE0F",
+ "non_qualified": "1F645-1F3FD-200D-2642",
+ "image": "1f645-1f3fd-200d-2642-fe0f.png",
+ "sheet_x": 33,
+ "sheet_y": 41,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1F645-1F3FE-200D-2642-FE0F",
+ "non_qualified": "1F645-1F3FE-200D-2642",
+ "image": "1f645-1f3fe-200d-2642-fe0f.png",
+ "sheet_x": 33,
+ "sheet_y": 42,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1F645-1F3FF-200D-2642-FE0F",
+ "non_qualified": "1F645-1F3FF-200D-2642",
+ "image": "1f645-1f3ff-200d-2642-fe0f.png",
+ "sheet_x": 33,
+ "sheet_y": 43,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ }
},
{
- "name": "CHART WITH UPWARDS TREND AND YEN SIGN",
- "unified": "1F4B9",
+ "name": "FACE WITH NO GOOD GESTURE",
+ "unified": "1F645",
"non_qualified": null,
- "docomo": null,
- "au": "E5DC",
- "softbank": "E14A",
- "google": "FE4DF",
- "image": "1f4b9.png",
- "sheet_x": 26,
- "sheet_y": 7,
- "short_name": "chart",
- "short_names": ["chart"],
+ "docomo": "E72F",
+ "au": "EAD7",
+ "softbank": "E423",
+ "google": "FE351",
+ "image": "1f645.png",
+ "sheet_x": 33,
+ "sheet_y": 44,
+ "short_name": "no_good",
+ "short_names": ["no_good"],
"text": null,
"texts": null,
- "category": "Objects",
- "sort_order": 84,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "person-gesture",
+ "sort_order": 262,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": true
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F645-1F3FB",
+ "non_qualified": null,
+ "image": "1f645-1f3fb.png",
+ "sheet_x": 33,
+ "sheet_y": 45,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1F645-1F3FC",
+ "non_qualified": null,
+ "image": "1f645-1f3fc.png",
+ "sheet_x": 33,
+ "sheet_y": 46,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1F645-1F3FD",
+ "non_qualified": null,
+ "image": "1f645-1f3fd.png",
+ "sheet_x": 33,
+ "sheet_y": 47,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1F645-1F3FE",
+ "non_qualified": null,
+ "image": "1f645-1f3fe.png",
+ "sheet_x": 33,
+ "sheet_y": 48,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1F645-1F3FF",
+ "non_qualified": null,
+ "image": "1f645-1f3ff.png",
+ "sheet_x": 33,
+ "sheet_y": 49,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ },
+ "obsoleted_by": "1F645-200D-2640-FE0F"
},
{
- "name": "SEAT",
- "unified": "1F4BA",
- "non_qualified": null,
- "docomo": "E6B2",
+ "name": "WOMAN GESTURING OK",
+ "unified": "1F646-200D-2640-FE0F",
+ "non_qualified": "1F646-200D-2640",
+ "docomo": null,
"au": null,
- "softbank": "E11F",
- "google": "FE537",
- "image": "1f4ba.png",
- "sheet_x": 26,
- "sheet_y": 8,
- "short_name": "seat",
- "short_names": ["seat"],
+ "softbank": null,
+ "google": null,
+ "image": "1f646-200d-2640-fe0f.png",
+ "sheet_x": 33,
+ "sheet_y": 50,
+ "short_name": "woman-gesturing-ok",
+ "short_names": ["woman-gesturing-ok"],
"text": null,
"texts": null,
- "category": "Travel & Places",
- "sort_order": 117,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "person-gesture",
+ "sort_order": 267,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": true
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F646-1F3FB-200D-2640-FE0F",
+ "non_qualified": "1F646-1F3FB-200D-2640",
+ "image": "1f646-1f3fb-200d-2640-fe0f.png",
+ "sheet_x": 33,
+ "sheet_y": 51,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1F646-1F3FC-200D-2640-FE0F",
+ "non_qualified": "1F646-1F3FC-200D-2640",
+ "image": "1f646-1f3fc-200d-2640-fe0f.png",
+ "sheet_x": 33,
+ "sheet_y": 52,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1F646-1F3FD-200D-2640-FE0F",
+ "non_qualified": "1F646-1F3FD-200D-2640",
+ "image": "1f646-1f3fd-200d-2640-fe0f.png",
+ "sheet_x": 33,
+ "sheet_y": 53,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1F646-1F3FE-200D-2640-FE0F",
+ "non_qualified": "1F646-1F3FE-200D-2640",
+ "image": "1f646-1f3fe-200d-2640-fe0f.png",
+ "sheet_x": 33,
+ "sheet_y": 54,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1F646-1F3FF-200D-2640-FE0F",
+ "non_qualified": "1F646-1F3FF-200D-2640",
+ "image": "1f646-1f3ff-200d-2640-fe0f.png",
+ "sheet_x": 33,
+ "sheet_y": 55,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ },
+ "obsoletes": "1F646"
},
{
- "name": "PERSONAL COMPUTER",
- "unified": "1F4BB",
- "non_qualified": null,
- "docomo": "E716",
- "au": "E5B8",
- "softbank": "E00C",
- "google": "FE538",
- "image": "1f4bb.png",
- "sheet_x": 26,
- "sheet_y": 9,
- "short_name": "computer",
- "short_names": ["computer"],
+ "name": "MAN GESTURING OK",
+ "unified": "1F646-200D-2642-FE0F",
+ "non_qualified": "1F646-200D-2642",
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f646-200d-2642-fe0f.png",
+ "sheet_x": 33,
+ "sheet_y": 56,
+ "short_name": "man-gesturing-ok",
+ "short_names": ["man-gesturing-ok"],
"text": null,
"texts": null,
- "category": "Objects",
- "sort_order": 33,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "person-gesture",
+ "sort_order": 266,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": true
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F646-1F3FB-200D-2642-FE0F",
+ "non_qualified": "1F646-1F3FB-200D-2642",
+ "image": "1f646-1f3fb-200d-2642-fe0f.png",
+ "sheet_x": 33,
+ "sheet_y": 57,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1F646-1F3FC-200D-2642-FE0F",
+ "non_qualified": "1F646-1F3FC-200D-2642",
+ "image": "1f646-1f3fc-200d-2642-fe0f.png",
+ "sheet_x": 33,
+ "sheet_y": 58,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1F646-1F3FD-200D-2642-FE0F",
+ "non_qualified": "1F646-1F3FD-200D-2642",
+ "image": "1f646-1f3fd-200d-2642-fe0f.png",
+ "sheet_x": 33,
+ "sheet_y": 59,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1F646-1F3FE-200D-2642-FE0F",
+ "non_qualified": "1F646-1F3FE-200D-2642",
+ "image": "1f646-1f3fe-200d-2642-fe0f.png",
+ "sheet_x": 33,
+ "sheet_y": 60,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1F646-1F3FF-200D-2642-FE0F",
+ "non_qualified": "1F646-1F3FF-200D-2642",
+ "image": "1f646-1f3ff-200d-2642-fe0f.png",
+ "sheet_x": 34,
+ "sheet_y": 0,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ }
},
{
- "name": "BRIEFCASE",
- "unified": "1F4BC",
+ "name": "FACE WITH OK GESTURE",
+ "unified": "1F646",
"non_qualified": null,
- "docomo": "E682",
- "au": "E5CE",
- "softbank": "E11E",
- "google": "FE53B",
- "image": "1f4bc.png",
- "sheet_x": 26,
- "sheet_y": 10,
- "short_name": "briefcase",
- "short_names": ["briefcase"],
+ "docomo": "E70B",
+ "au": "EAD8",
+ "softbank": "E424",
+ "google": "FE352",
+ "image": "1f646.png",
+ "sheet_x": 34,
+ "sheet_y": 1,
+ "short_name": "ok_woman",
+ "short_names": ["ok_woman"],
"text": null,
"texts": null,
- "category": "Objects",
- "sort_order": 107,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "person-gesture",
+ "sort_order": 265,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": true
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F646-1F3FB",
+ "non_qualified": null,
+ "image": "1f646-1f3fb.png",
+ "sheet_x": 34,
+ "sheet_y": 2,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1F646-1F3FC",
+ "non_qualified": null,
+ "image": "1f646-1f3fc.png",
+ "sheet_x": 34,
+ "sheet_y": 3,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1F646-1F3FD",
+ "non_qualified": null,
+ "image": "1f646-1f3fd.png",
+ "sheet_x": 34,
+ "sheet_y": 4,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1F646-1F3FE",
+ "non_qualified": null,
+ "image": "1f646-1f3fe.png",
+ "sheet_x": 34,
+ "sheet_y": 5,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1F646-1F3FF",
+ "non_qualified": null,
+ "image": "1f646-1f3ff.png",
+ "sheet_x": 34,
+ "sheet_y": 6,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ },
+ "obsoleted_by": "1F646-200D-2640-FE0F"
},
{
- "name": "MINIDISC",
- "unified": "1F4BD",
- "non_qualified": null,
+ "name": "WOMAN BOWING",
+ "unified": "1F647-200D-2640-FE0F",
+ "non_qualified": "1F647-200D-2640",
"docomo": null,
- "au": "E582",
- "softbank": "E316",
- "google": "FE53C",
- "image": "1f4bd.png",
- "sheet_x": 26,
- "sheet_y": 11,
- "short_name": "minidisc",
- "short_names": ["minidisc"],
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f647-200d-2640-fe0f.png",
+ "sheet_x": 34,
+ "sheet_y": 7,
+ "short_name": "woman-bowing",
+ "short_names": ["woman-bowing"],
"text": null,
"texts": null,
- "category": "Objects",
- "sort_order": 39,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "person-gesture",
+ "sort_order": 279,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": true
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F647-1F3FB-200D-2640-FE0F",
+ "non_qualified": "1F647-1F3FB-200D-2640",
+ "image": "1f647-1f3fb-200d-2640-fe0f.png",
+ "sheet_x": 34,
+ "sheet_y": 8,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1F647-1F3FC-200D-2640-FE0F",
+ "non_qualified": "1F647-1F3FC-200D-2640",
+ "image": "1f647-1f3fc-200d-2640-fe0f.png",
+ "sheet_x": 34,
+ "sheet_y": 9,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1F647-1F3FD-200D-2640-FE0F",
+ "non_qualified": "1F647-1F3FD-200D-2640",
+ "image": "1f647-1f3fd-200d-2640-fe0f.png",
+ "sheet_x": 34,
+ "sheet_y": 10,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1F647-1F3FE-200D-2640-FE0F",
+ "non_qualified": "1F647-1F3FE-200D-2640",
+ "image": "1f647-1f3fe-200d-2640-fe0f.png",
+ "sheet_x": 34,
+ "sheet_y": 11,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1F647-1F3FF-200D-2640-FE0F",
+ "non_qualified": "1F647-1F3FF-200D-2640",
+ "image": "1f647-1f3ff-200d-2640-fe0f.png",
+ "sheet_x": 34,
+ "sheet_y": 12,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ }
},
{
- "name": "FLOPPY DISK",
- "unified": "1F4BE",
- "non_qualified": null,
+ "name": "MAN BOWING",
+ "unified": "1F647-200D-2642-FE0F",
+ "non_qualified": "1F647-200D-2642",
"docomo": null,
- "au": "E562",
+ "au": null,
"softbank": null,
- "google": "FE53D",
- "image": "1f4be.png",
- "sheet_x": 26,
- "sheet_y": 12,
- "short_name": "floppy_disk",
- "short_names": ["floppy_disk"],
+ "google": null,
+ "image": "1f647-200d-2642-fe0f.png",
+ "sheet_x": 34,
+ "sheet_y": 13,
+ "short_name": "man-bowing",
+ "short_names": ["man-bowing"],
"text": null,
"texts": null,
- "category": "Objects",
- "sort_order": 40,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "person-gesture",
+ "sort_order": 278,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": true
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F647-1F3FB-200D-2642-FE0F",
+ "non_qualified": "1F647-1F3FB-200D-2642",
+ "image": "1f647-1f3fb-200d-2642-fe0f.png",
+ "sheet_x": 34,
+ "sheet_y": 14,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1F647-1F3FC-200D-2642-FE0F",
+ "non_qualified": "1F647-1F3FC-200D-2642",
+ "image": "1f647-1f3fc-200d-2642-fe0f.png",
+ "sheet_x": 34,
+ "sheet_y": 15,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1F647-1F3FD-200D-2642-FE0F",
+ "non_qualified": "1F647-1F3FD-200D-2642",
+ "image": "1f647-1f3fd-200d-2642-fe0f.png",
+ "sheet_x": 34,
+ "sheet_y": 16,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1F647-1F3FE-200D-2642-FE0F",
+ "non_qualified": "1F647-1F3FE-200D-2642",
+ "image": "1f647-1f3fe-200d-2642-fe0f.png",
+ "sheet_x": 34,
+ "sheet_y": 17,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1F647-1F3FF-200D-2642-FE0F",
+ "non_qualified": "1F647-1F3FF-200D-2642",
+ "image": "1f647-1f3ff-200d-2642-fe0f.png",
+ "sheet_x": 34,
+ "sheet_y": 18,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ }
},
{
- "name": "OPTICAL DISC",
- "unified": "1F4BF",
+ "name": "PERSON BOWING DEEPLY",
+ "unified": "1F647",
"non_qualified": null,
- "docomo": "E68C",
- "au": "E50C",
- "softbank": "E126",
- "google": "FE81D",
- "image": "1f4bf.png",
- "sheet_x": 26,
- "sheet_y": 13,
- "short_name": "cd",
- "short_names": ["cd"],
+ "docomo": null,
+ "au": "EAD9",
+ "softbank": "E426",
+ "google": "FE353",
+ "image": "1f647.png",
+ "sheet_x": 34,
+ "sheet_y": 19,
+ "short_name": "bow",
+ "short_names": ["bow"],
"text": null,
"texts": null,
- "category": "Objects",
- "sort_order": 41,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "person-gesture",
+ "sort_order": 277,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": true
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F647-1F3FB",
+ "non_qualified": null,
+ "image": "1f647-1f3fb.png",
+ "sheet_x": 34,
+ "sheet_y": 20,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1F647-1F3FC",
+ "non_qualified": null,
+ "image": "1f647-1f3fc.png",
+ "sheet_x": 34,
+ "sheet_y": 21,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1F647-1F3FD",
+ "non_qualified": null,
+ "image": "1f647-1f3fd.png",
+ "sheet_x": 34,
+ "sheet_y": 22,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1F647-1F3FE",
+ "non_qualified": null,
+ "image": "1f647-1f3fe.png",
+ "sheet_x": 34,
+ "sheet_y": 23,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1F647-1F3FF",
+ "non_qualified": null,
+ "image": "1f647-1f3ff.png",
+ "sheet_x": 34,
+ "sheet_y": 24,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ }
},
{
- "name": "DVD",
- "unified": "1F4C0",
+ "name": "SEE-NO-EVIL MONKEY",
+ "unified": "1F648",
"non_qualified": null,
- "docomo": "E68C",
- "au": "E50C",
- "softbank": "E127",
- "google": "FE81E",
- "image": "1f4c0.png",
- "sheet_x": 26,
- "sheet_y": 14,
- "short_name": "dvd",
- "short_names": ["dvd"],
+ "docomo": null,
+ "au": "EB50",
+ "softbank": null,
+ "google": "FE354",
+ "image": "1f648.png",
+ "sheet_x": 34,
+ "sheet_y": 25,
+ "short_name": "see_no_evil",
+ "short_names": ["see_no_evil"],
"text": null,
"texts": null,
- "category": "Objects",
- "sort_order": 42,
- "added_in": "6.0",
+ "category": "Smileys & Emotion",
+ "subcategory": "monkey-face",
+ "sort_order": 125,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "FILE FOLDER",
- "unified": "1F4C1",
+ "name": "HEAR-NO-EVIL MONKEY",
+ "unified": "1F649",
"non_qualified": null,
"docomo": null,
- "au": "E58F",
+ "au": "EB52",
"softbank": null,
- "google": "FE543",
- "image": "1f4c1.png",
- "sheet_x": 26,
- "sheet_y": 15,
- "short_name": "file_folder",
- "short_names": ["file_folder"],
+ "google": "FE356",
+ "image": "1f649.png",
+ "sheet_x": 34,
+ "sheet_y": 26,
+ "short_name": "hear_no_evil",
+ "short_names": ["hear_no_evil"],
"text": null,
"texts": null,
- "category": "Objects",
- "sort_order": 108,
- "added_in": "6.0",
+ "category": "Smileys & Emotion",
+ "subcategory": "monkey-face",
+ "sort_order": 126,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "OPEN FILE FOLDER",
- "unified": "1F4C2",
+ "name": "SPEAK-NO-EVIL MONKEY",
+ "unified": "1F64A",
"non_qualified": null,
"docomo": null,
- "au": "E590",
+ "au": "EB51",
"softbank": null,
- "google": "FE544",
- "image": "1f4c2.png",
- "sheet_x": 26,
- "sheet_y": 16,
- "short_name": "open_file_folder",
- "short_names": ["open_file_folder"],
+ "google": "FE355",
+ "image": "1f64a.png",
+ "sheet_x": 34,
+ "sheet_y": 27,
+ "short_name": "speak_no_evil",
+ "short_names": ["speak_no_evil"],
"text": null,
"texts": null,
- "category": "Objects",
- "sort_order": 109,
- "added_in": "6.0",
+ "category": "Smileys & Emotion",
+ "subcategory": "monkey-face",
+ "sort_order": 127,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "PAGE WITH CURL",
- "unified": "1F4C3",
- "non_qualified": null,
- "docomo": "E689",
- "au": "E561",
+ "name": "WOMAN RAISING HAND",
+ "unified": "1F64B-200D-2640-FE0F",
+ "non_qualified": "1F64B-200D-2640",
+ "docomo": null,
+ "au": null,
"softbank": null,
- "google": "FE540",
- "image": "1f4c3.png",
- "sheet_x": 26,
- "sheet_y": 17,
- "short_name": "page_with_curl",
- "short_names": ["page_with_curl"],
+ "google": null,
+ "image": "1f64b-200d-2640-fe0f.png",
+ "sheet_x": 34,
+ "sheet_y": 28,
+ "short_name": "woman-raising-hand",
+ "short_names": ["woman-raising-hand"],
"text": null,
"texts": null,
- "category": "Objects",
- "sort_order": 68,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "person-gesture",
+ "sort_order": 273,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": true
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F64B-1F3FB-200D-2640-FE0F",
+ "non_qualified": "1F64B-1F3FB-200D-2640",
+ "image": "1f64b-1f3fb-200d-2640-fe0f.png",
+ "sheet_x": 34,
+ "sheet_y": 29,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1F64B-1F3FC-200D-2640-FE0F",
+ "non_qualified": "1F64B-1F3FC-200D-2640",
+ "image": "1f64b-1f3fc-200d-2640-fe0f.png",
+ "sheet_x": 34,
+ "sheet_y": 30,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1F64B-1F3FD-200D-2640-FE0F",
+ "non_qualified": "1F64B-1F3FD-200D-2640",
+ "image": "1f64b-1f3fd-200d-2640-fe0f.png",
+ "sheet_x": 34,
+ "sheet_y": 31,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1F64B-1F3FE-200D-2640-FE0F",
+ "non_qualified": "1F64B-1F3FE-200D-2640",
+ "image": "1f64b-1f3fe-200d-2640-fe0f.png",
+ "sheet_x": 34,
+ "sheet_y": 32,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1F64B-1F3FF-200D-2640-FE0F",
+ "non_qualified": "1F64B-1F3FF-200D-2640",
+ "image": "1f64b-1f3ff-200d-2640-fe0f.png",
+ "sheet_x": 34,
+ "sheet_y": 33,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ },
+ "obsoletes": "1F64B"
},
{
- "name": "PAGE FACING UP",
- "unified": "1F4C4",
- "non_qualified": null,
- "docomo": "E689",
- "au": "E569",
+ "name": "MAN RAISING HAND",
+ "unified": "1F64B-200D-2642-FE0F",
+ "non_qualified": "1F64B-200D-2642",
+ "docomo": null,
+ "au": null,
"softbank": null,
- "google": "FE541",
- "image": "1f4c4.png",
- "sheet_x": 26,
- "sheet_y": 18,
- "short_name": "page_facing_up",
- "short_names": ["page_facing_up"],
+ "google": null,
+ "image": "1f64b-200d-2642-fe0f.png",
+ "sheet_x": 34,
+ "sheet_y": 34,
+ "short_name": "man-raising-hand",
+ "short_names": ["man-raising-hand"],
"text": null,
"texts": null,
- "category": "Objects",
- "sort_order": 70,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "person-gesture",
+ "sort_order": 272,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": true
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F64B-1F3FB-200D-2642-FE0F",
+ "non_qualified": "1F64B-1F3FB-200D-2642",
+ "image": "1f64b-1f3fb-200d-2642-fe0f.png",
+ "sheet_x": 34,
+ "sheet_y": 35,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1F64B-1F3FC-200D-2642-FE0F",
+ "non_qualified": "1F64B-1F3FC-200D-2642",
+ "image": "1f64b-1f3fc-200d-2642-fe0f.png",
+ "sheet_x": 34,
+ "sheet_y": 36,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1F64B-1F3FD-200D-2642-FE0F",
+ "non_qualified": "1F64B-1F3FD-200D-2642",
+ "image": "1f64b-1f3fd-200d-2642-fe0f.png",
+ "sheet_x": 34,
+ "sheet_y": 37,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1F64B-1F3FE-200D-2642-FE0F",
+ "non_qualified": "1F64B-1F3FE-200D-2642",
+ "image": "1f64b-1f3fe-200d-2642-fe0f.png",
+ "sheet_x": 34,
+ "sheet_y": 38,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1F64B-1F3FF-200D-2642-FE0F",
+ "non_qualified": "1F64B-1F3FF-200D-2642",
+ "image": "1f64b-1f3ff-200d-2642-fe0f.png",
+ "sheet_x": 34,
+ "sheet_y": 39,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ }
},
{
- "name": "CALENDAR",
- "unified": "1F4C5",
+ "name": "HAPPY PERSON RAISING ONE HAND",
+ "unified": "1F64B",
"non_qualified": null,
"docomo": null,
- "au": "E563",
+ "au": "EB85",
"softbank": null,
- "google": "FE542",
- "image": "1f4c5.png",
- "sheet_x": 26,
- "sheet_y": 19,
- "short_name": "date",
- "short_names": ["date"],
+ "google": "FE357",
+ "image": "1f64b.png",
+ "sheet_x": 34,
+ "sheet_y": 40,
+ "short_name": "raising_hand",
+ "short_names": ["raising_hand"],
"text": null,
"texts": null,
- "category": "Objects",
- "sort_order": 111,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "person-gesture",
+ "sort_order": 271,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": true
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F64B-1F3FB",
+ "non_qualified": null,
+ "image": "1f64b-1f3fb.png",
+ "sheet_x": 34,
+ "sheet_y": 41,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1F64B-1F3FC",
+ "non_qualified": null,
+ "image": "1f64b-1f3fc.png",
+ "sheet_x": 34,
+ "sheet_y": 42,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1F64B-1F3FD",
+ "non_qualified": null,
+ "image": "1f64b-1f3fd.png",
+ "sheet_x": 34,
+ "sheet_y": 43,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1F64B-1F3FE",
+ "non_qualified": null,
+ "image": "1f64b-1f3fe.png",
+ "sheet_x": 34,
+ "sheet_y": 44,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1F64B-1F3FF",
+ "non_qualified": null,
+ "image": "1f64b-1f3ff.png",
+ "sheet_x": 34,
+ "sheet_y": 45,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ },
+ "obsoleted_by": "1F64B-200D-2640-FE0F"
},
- {
- "name": "TEAR-OFF CALENDAR",
- "unified": "1F4C6",
+ {
+ "name": "PERSON RAISING BOTH HANDS IN CELEBRATION",
+ "unified": "1F64C",
"non_qualified": null,
"docomo": null,
- "au": "E56A",
- "softbank": null,
- "google": "FE549",
- "image": "1f4c6.png",
- "sheet_x": 26,
- "sheet_y": 20,
- "short_name": "calendar",
- "short_names": ["calendar"],
+ "au": "EB86",
+ "softbank": "E427",
+ "google": "FE358",
+ "image": "1f64c.png",
+ "sheet_x": 34,
+ "sheet_y": 46,
+ "short_name": "raised_hands",
+ "short_names": ["raised_hands"],
"text": null,
"texts": null,
- "category": "Objects",
- "sort_order": 112,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "hands",
+ "sort_order": 201,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": true
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F64C-1F3FB",
+ "non_qualified": null,
+ "image": "1f64c-1f3fb.png",
+ "sheet_x": 34,
+ "sheet_y": 47,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1F64C-1F3FC",
+ "non_qualified": null,
+ "image": "1f64c-1f3fc.png",
+ "sheet_x": 34,
+ "sheet_y": 48,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1F64C-1F3FD",
+ "non_qualified": null,
+ "image": "1f64c-1f3fd.png",
+ "sheet_x": 34,
+ "sheet_y": 49,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1F64C-1F3FE",
+ "non_qualified": null,
+ "image": "1f64c-1f3fe.png",
+ "sheet_x": 34,
+ "sheet_y": 50,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1F64C-1F3FF",
+ "non_qualified": null,
+ "image": "1f64c-1f3ff.png",
+ "sheet_x": 34,
+ "sheet_y": 51,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ }
},
{
- "name": "CARD INDEX",
- "unified": "1F4C7",
- "non_qualified": null,
- "docomo": "E683",
- "au": "E56C",
+ "name": "WOMAN FROWNING",
+ "unified": "1F64D-200D-2640-FE0F",
+ "non_qualified": "1F64D-200D-2640",
+ "docomo": null,
+ "au": null,
"softbank": null,
- "google": "FE54D",
- "image": "1f4c7.png",
- "sheet_x": 26,
- "sheet_y": 21,
- "short_name": "card_index",
- "short_names": ["card_index"],
+ "google": null,
+ "image": "1f64d-200d-2640-fe0f.png",
+ "sheet_x": 34,
+ "sheet_y": 52,
+ "short_name": "woman-frowning",
+ "short_names": ["woman-frowning"],
"text": null,
"texts": null,
- "category": "Objects",
- "sort_order": 115,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "person-gesture",
+ "sort_order": 258,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": true
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F64D-1F3FB-200D-2640-FE0F",
+ "non_qualified": "1F64D-1F3FB-200D-2640",
+ "image": "1f64d-1f3fb-200d-2640-fe0f.png",
+ "sheet_x": 34,
+ "sheet_y": 53,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1F64D-1F3FC-200D-2640-FE0F",
+ "non_qualified": "1F64D-1F3FC-200D-2640",
+ "image": "1f64d-1f3fc-200d-2640-fe0f.png",
+ "sheet_x": 34,
+ "sheet_y": 54,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1F64D-1F3FD-200D-2640-FE0F",
+ "non_qualified": "1F64D-1F3FD-200D-2640",
+ "image": "1f64d-1f3fd-200d-2640-fe0f.png",
+ "sheet_x": 34,
+ "sheet_y": 55,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1F64D-1F3FE-200D-2640-FE0F",
+ "non_qualified": "1F64D-1F3FE-200D-2640",
+ "image": "1f64d-1f3fe-200d-2640-fe0f.png",
+ "sheet_x": 34,
+ "sheet_y": 56,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1F64D-1F3FF-200D-2640-FE0F",
+ "non_qualified": "1F64D-1F3FF-200D-2640",
+ "image": "1f64d-1f3ff-200d-2640-fe0f.png",
+ "sheet_x": 34,
+ "sheet_y": 57,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ },
+ "obsoletes": "1F64D"
},
{
- "name": "CHART WITH UPWARDS TREND",
- "unified": "1F4C8",
- "non_qualified": null,
+ "name": "MAN FROWNING",
+ "unified": "1F64D-200D-2642-FE0F",
+ "non_qualified": "1F64D-200D-2642",
"docomo": null,
- "au": "E575",
+ "au": null,
"softbank": null,
- "google": "FE54B",
- "image": "1f4c8.png",
- "sheet_x": 26,
- "sheet_y": 22,
- "short_name": "chart_with_upwards_trend",
- "short_names": ["chart_with_upwards_trend"],
+ "google": null,
+ "image": "1f64d-200d-2642-fe0f.png",
+ "sheet_x": 34,
+ "sheet_y": 58,
+ "short_name": "man-frowning",
+ "short_names": ["man-frowning"],
"text": null,
"texts": null,
- "category": "Objects",
- "sort_order": 116,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "person-gesture",
+ "sort_order": 257,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": true
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F64D-1F3FB-200D-2642-FE0F",
+ "non_qualified": "1F64D-1F3FB-200D-2642",
+ "image": "1f64d-1f3fb-200d-2642-fe0f.png",
+ "sheet_x": 34,
+ "sheet_y": 59,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1F64D-1F3FC-200D-2642-FE0F",
+ "non_qualified": "1F64D-1F3FC-200D-2642",
+ "image": "1f64d-1f3fc-200d-2642-fe0f.png",
+ "sheet_x": 34,
+ "sheet_y": 60,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1F64D-1F3FD-200D-2642-FE0F",
+ "non_qualified": "1F64D-1F3FD-200D-2642",
+ "image": "1f64d-1f3fd-200d-2642-fe0f.png",
+ "sheet_x": 35,
+ "sheet_y": 0,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1F64D-1F3FE-200D-2642-FE0F",
+ "non_qualified": "1F64D-1F3FE-200D-2642",
+ "image": "1f64d-1f3fe-200d-2642-fe0f.png",
+ "sheet_x": 35,
+ "sheet_y": 1,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1F64D-1F3FF-200D-2642-FE0F",
+ "non_qualified": "1F64D-1F3FF-200D-2642",
+ "image": "1f64d-1f3ff-200d-2642-fe0f.png",
+ "sheet_x": 35,
+ "sheet_y": 2,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ }
},
{
- "name": "CHART WITH DOWNWARDS TREND",
- "unified": "1F4C9",
+ "name": "PERSON FROWNING",
+ "unified": "1F64D",
"non_qualified": null,
- "docomo": null,
- "au": "E576",
+ "docomo": "E6F3",
+ "au": "EB87",
"softbank": null,
- "google": "FE54C",
- "image": "1f4c9.png",
- "sheet_x": 26,
- "sheet_y": 23,
- "short_name": "chart_with_downwards_trend",
- "short_names": ["chart_with_downwards_trend"],
+ "google": "FE359",
+ "image": "1f64d.png",
+ "sheet_x": 35,
+ "sheet_y": 3,
+ "short_name": "person_frowning",
+ "short_names": ["person_frowning"],
"text": null,
"texts": null,
- "category": "Objects",
- "sort_order": 117,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "person-gesture",
+ "sort_order": 256,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": true
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F64D-1F3FB",
+ "non_qualified": null,
+ "image": "1f64d-1f3fb.png",
+ "sheet_x": 35,
+ "sheet_y": 4,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1F64D-1F3FC",
+ "non_qualified": null,
+ "image": "1f64d-1f3fc.png",
+ "sheet_x": 35,
+ "sheet_y": 5,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1F64D-1F3FD",
+ "non_qualified": null,
+ "image": "1f64d-1f3fd.png",
+ "sheet_x": 35,
+ "sheet_y": 6,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1F64D-1F3FE",
+ "non_qualified": null,
+ "image": "1f64d-1f3fe.png",
+ "sheet_x": 35,
+ "sheet_y": 7,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1F64D-1F3FF",
+ "non_qualified": null,
+ "image": "1f64d-1f3ff.png",
+ "sheet_x": 35,
+ "sheet_y": 8,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ },
+ "obsoleted_by": "1F64D-200D-2640-FE0F"
},
{
- "name": "BAR CHART",
- "unified": "1F4CA",
- "non_qualified": null,
+ "name": "WOMAN POUTING",
+ "unified": "1F64E-200D-2640-FE0F",
+ "non_qualified": "1F64E-200D-2640",
"docomo": null,
- "au": "E574",
+ "au": null,
"softbank": null,
- "google": "FE54A",
- "image": "1f4ca.png",
- "sheet_x": 26,
- "sheet_y": 24,
- "short_name": "bar_chart",
- "short_names": ["bar_chart"],
+ "google": null,
+ "image": "1f64e-200d-2640-fe0f.png",
+ "sheet_x": 35,
+ "sheet_y": 9,
+ "short_name": "woman-pouting",
+ "short_names": ["woman-pouting"],
"text": null,
"texts": null,
- "category": "Objects",
- "sort_order": 118,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "person-gesture",
+ "sort_order": 261,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": true
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F64E-1F3FB-200D-2640-FE0F",
+ "non_qualified": "1F64E-1F3FB-200D-2640",
+ "image": "1f64e-1f3fb-200d-2640-fe0f.png",
+ "sheet_x": 35,
+ "sheet_y": 10,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1F64E-1F3FC-200D-2640-FE0F",
+ "non_qualified": "1F64E-1F3FC-200D-2640",
+ "image": "1f64e-1f3fc-200d-2640-fe0f.png",
+ "sheet_x": 35,
+ "sheet_y": 11,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1F64E-1F3FD-200D-2640-FE0F",
+ "non_qualified": "1F64E-1F3FD-200D-2640",
+ "image": "1f64e-1f3fd-200d-2640-fe0f.png",
+ "sheet_x": 35,
+ "sheet_y": 12,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1F64E-1F3FE-200D-2640-FE0F",
+ "non_qualified": "1F64E-1F3FE-200D-2640",
+ "image": "1f64e-1f3fe-200d-2640-fe0f.png",
+ "sheet_x": 35,
+ "sheet_y": 13,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1F64E-1F3FF-200D-2640-FE0F",
+ "non_qualified": "1F64E-1F3FF-200D-2640",
+ "image": "1f64e-1f3ff-200d-2640-fe0f.png",
+ "sheet_x": 35,
+ "sheet_y": 14,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ },
+ "obsoletes": "1F64E"
},
{
- "name": "CLIPBOARD",
- "unified": "1F4CB",
- "non_qualified": null,
- "docomo": "E689",
- "au": "E564",
+ "name": "MAN POUTING",
+ "unified": "1F64E-200D-2642-FE0F",
+ "non_qualified": "1F64E-200D-2642",
+ "docomo": null,
+ "au": null,
"softbank": null,
- "google": "FE548",
- "image": "1f4cb.png",
- "sheet_x": 26,
- "sheet_y": 25,
- "short_name": "clipboard",
- "short_names": ["clipboard"],
+ "google": null,
+ "image": "1f64e-200d-2642-fe0f.png",
+ "sheet_x": 35,
+ "sheet_y": 15,
+ "short_name": "man-pouting",
+ "short_names": ["man-pouting"],
"text": null,
"texts": null,
- "category": "Objects",
- "sort_order": 119,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "person-gesture",
+ "sort_order": 260,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": true
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F64E-1F3FB-200D-2642-FE0F",
+ "non_qualified": "1F64E-1F3FB-200D-2642",
+ "image": "1f64e-1f3fb-200d-2642-fe0f.png",
+ "sheet_x": 35,
+ "sheet_y": 16,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1F64E-1F3FC-200D-2642-FE0F",
+ "non_qualified": "1F64E-1F3FC-200D-2642",
+ "image": "1f64e-1f3fc-200d-2642-fe0f.png",
+ "sheet_x": 35,
+ "sheet_y": 17,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1F64E-1F3FD-200D-2642-FE0F",
+ "non_qualified": "1F64E-1F3FD-200D-2642",
+ "image": "1f64e-1f3fd-200d-2642-fe0f.png",
+ "sheet_x": 35,
+ "sheet_y": 18,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1F64E-1F3FE-200D-2642-FE0F",
+ "non_qualified": "1F64E-1F3FE-200D-2642",
+ "image": "1f64e-1f3fe-200d-2642-fe0f.png",
+ "sheet_x": 35,
+ "sheet_y": 19,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1F64E-1F3FF-200D-2642-FE0F",
+ "non_qualified": "1F64E-1F3FF-200D-2642",
+ "image": "1f64e-1f3ff-200d-2642-fe0f.png",
+ "sheet_x": 35,
+ "sheet_y": 20,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ }
},
{
- "name": "PUSHPIN",
- "unified": "1F4CC",
+ "name": "PERSON WITH POUTING FACE",
+ "unified": "1F64E",
"non_qualified": null,
- "docomo": null,
- "au": "E56D",
+ "docomo": "E6F1",
+ "au": "EB88",
"softbank": null,
- "google": "FE54E",
- "image": "1f4cc.png",
- "sheet_x": 26,
- "sheet_y": 26,
- "short_name": "pushpin",
- "short_names": ["pushpin"],
+ "google": "FE35A",
+ "image": "1f64e.png",
+ "sheet_x": 35,
+ "sheet_y": 21,
+ "short_name": "person_with_pouting_face",
+ "short_names": ["person_with_pouting_face"],
"text": null,
"texts": null,
- "category": "Objects",
- "sort_order": 120,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "person-gesture",
+ "sort_order": 259,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": true
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F64E-1F3FB",
+ "non_qualified": null,
+ "image": "1f64e-1f3fb.png",
+ "sheet_x": 35,
+ "sheet_y": 22,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1F64E-1F3FC",
+ "non_qualified": null,
+ "image": "1f64e-1f3fc.png",
+ "sheet_x": 35,
+ "sheet_y": 23,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1F64E-1F3FD",
+ "non_qualified": null,
+ "image": "1f64e-1f3fd.png",
+ "sheet_x": 35,
+ "sheet_y": 24,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1F64E-1F3FE",
+ "non_qualified": null,
+ "image": "1f64e-1f3fe.png",
+ "sheet_x": 35,
+ "sheet_y": 25,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1F64E-1F3FF",
+ "non_qualified": null,
+ "image": "1f64e-1f3ff.png",
+ "sheet_x": 35,
+ "sheet_y": 26,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ },
+ "obsoleted_by": "1F64E-200D-2640-FE0F"
},
{
- "name": "ROUND PUSHPIN",
- "unified": "1F4CD",
+ "name": "PERSON WITH FOLDED HANDS",
+ "unified": "1F64F",
"non_qualified": null,
"docomo": null,
- "au": "E560",
- "softbank": null,
- "google": "FE53F",
- "image": "1f4cd.png",
- "sheet_x": 26,
+ "au": "EAD2",
+ "softbank": "E41D",
+ "google": "FE35B",
+ "image": "1f64f.png",
+ "sheet_x": 35,
"sheet_y": 27,
- "short_name": "round_pushpin",
- "short_names": ["round_pushpin"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 121,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- {
- "name": "PAPERCLIP",
- "unified": "1F4CE",
- "non_qualified": null,
- "docomo": "E730",
- "au": "E4A0",
- "softbank": null,
- "google": "FE53A",
- "image": "1f4ce.png",
- "sheet_x": 26,
- "sheet_y": 28,
- "short_name": "paperclip",
- "short_names": ["paperclip"],
+ "short_name": "pray",
+ "short_names": ["pray"],
"text": null,
"texts": null,
- "category": "Objects",
- "sort_order": 122,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "hands",
+ "sort_order": 206,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": true
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F64F-1F3FB",
+ "non_qualified": null,
+ "image": "1f64f-1f3fb.png",
+ "sheet_x": 35,
+ "sheet_y": 28,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1F64F-1F3FC",
+ "non_qualified": null,
+ "image": "1f64f-1f3fc.png",
+ "sheet_x": 35,
+ "sheet_y": 29,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1F64F-1F3FD",
+ "non_qualified": null,
+ "image": "1f64f-1f3fd.png",
+ "sheet_x": 35,
+ "sheet_y": 30,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1F64F-1F3FE",
+ "non_qualified": null,
+ "image": "1f64f-1f3fe.png",
+ "sheet_x": 35,
+ "sheet_y": 31,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1F64F-1F3FF",
+ "non_qualified": null,
+ "image": "1f64f-1f3ff.png",
+ "sheet_x": 35,
+ "sheet_y": 32,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ }
},
{
- "name": "STRAIGHT RULER",
- "unified": "1F4CF",
+ "name": "ROCKET",
+ "unified": "1F680",
"non_qualified": null,
"docomo": null,
- "au": "E570",
- "softbank": null,
- "google": "FE550",
- "image": "1f4cf.png",
- "sheet_x": 26,
- "sheet_y": 29,
- "short_name": "straight_ruler",
- "short_names": ["straight_ruler"],
+ "au": "E5C8",
+ "softbank": "E10D",
+ "google": "FE7ED",
+ "image": "1f680.png",
+ "sheet_x": 35,
+ "sheet_y": 33,
+ "short_name": "rocket",
+ "short_names": ["rocket"],
"text": null,
"texts": null,
- "category": "Objects",
- "sort_order": 124,
- "added_in": "6.0",
+ "category": "Travel & Places",
+ "subcategory": "transport-air",
+ "sort_order": 956,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "TRIANGULAR RULER",
- "unified": "1F4D0",
+ "name": "HELICOPTER",
+ "unified": "1F681",
"non_qualified": null,
"docomo": null,
- "au": "E4A2",
+ "au": null,
"softbank": null,
- "google": "FE551",
- "image": "1f4d0.png",
- "sheet_x": 26,
- "sheet_y": 30,
- "short_name": "triangular_ruler",
- "short_names": ["triangular_ruler"],
+ "google": null,
+ "image": "1f681.png",
+ "sheet_x": 35,
+ "sheet_y": 34,
+ "short_name": "helicopter",
+ "short_names": ["helicopter"],
"text": null,
"texts": null,
- "category": "Objects",
- "sort_order": 125,
- "added_in": "6.0",
+ "category": "Travel & Places",
+ "subcategory": "transport-air",
+ "sort_order": 951,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "BOOKMARK TABS",
- "unified": "1F4D1",
+ "name": "STEAM LOCOMOTIVE",
+ "unified": "1F682",
"non_qualified": null,
- "docomo": "E689",
- "au": "EB0B",
+ "docomo": null,
+ "au": null,
"softbank": null,
- "google": "FE552",
- "image": "1f4d1.png",
- "sheet_x": 26,
- "sheet_y": 31,
- "short_name": "bookmark_tabs",
- "short_names": ["bookmark_tabs"],
+ "google": null,
+ "image": "1f682.png",
+ "sheet_x": 35,
+ "sheet_y": 35,
+ "short_name": "steam_locomotive",
+ "short_names": ["steam_locomotive"],
"text": null,
"texts": null,
- "category": "Objects",
- "sort_order": 73,
- "added_in": "6.0",
+ "category": "Travel & Places",
+ "subcategory": "transport-ground",
+ "sort_order": 886,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "LEDGER",
- "unified": "1F4D2",
+ "name": "RAILWAY CAR",
+ "unified": "1F683",
"non_qualified": null,
- "docomo": "E683",
- "au": "E56E",
- "softbank": null,
- "google": "FE54F",
- "image": "1f4d2.png",
- "sheet_x": 26,
- "sheet_y": 32,
- "short_name": "ledger",
- "short_names": ["ledger"],
+ "docomo": "E65B",
+ "au": "E4B5",
+ "softbank": "E01E",
+ "google": "FE7DF",
+ "image": "1f683.png",
+ "sheet_x": 35,
+ "sheet_y": 36,
+ "short_name": "railway_car",
+ "short_names": ["railway_car"],
"text": null,
"texts": null,
- "category": "Objects",
- "sort_order": 67,
- "added_in": "6.0",
+ "category": "Travel & Places",
+ "subcategory": "transport-ground",
+ "sort_order": 887,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "NOTEBOOK",
- "unified": "1F4D3",
+ "name": "HIGH-SPEED TRAIN",
+ "unified": "1F684",
"non_qualified": null,
- "docomo": "E683",
- "au": "E56B",
- "softbank": null,
- "google": "FE545",
- "image": "1f4d3.png",
- "sheet_x": 26,
- "sheet_y": 33,
- "short_name": "notebook",
- "short_names": ["notebook"],
+ "docomo": "E65D",
+ "au": "E4B0",
+ "softbank": "E435",
+ "google": "FE7E2",
+ "image": "1f684.png",
+ "sheet_x": 35,
+ "sheet_y": 37,
+ "short_name": "bullettrain_side",
+ "short_names": ["bullettrain_side"],
"text": null,
"texts": null,
- "category": "Objects",
- "sort_order": 66,
- "added_in": "6.0",
+ "category": "Travel & Places",
+ "subcategory": "transport-ground",
+ "sort_order": 888,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "NOTEBOOK WITH DECORATIVE COVER",
- "unified": "1F4D4",
+ "name": "HIGH-SPEED TRAIN WITH BULLET NOSE",
+ "unified": "1F685",
"non_qualified": null,
- "docomo": "E683",
- "au": "E49D",
- "softbank": null,
- "google": "FE547",
- "image": "1f4d4.png",
- "sheet_x": 26,
- "sheet_y": 34,
- "short_name": "notebook_with_decorative_cover",
- "short_names": ["notebook_with_decorative_cover"],
+ "docomo": "E65D",
+ "au": "E4B0",
+ "softbank": "E01F",
+ "google": "FE7E3",
+ "image": "1f685.png",
+ "sheet_x": 35,
+ "sheet_y": 38,
+ "short_name": "bullettrain_front",
+ "short_names": ["bullettrain_front"],
"text": null,
"texts": null,
- "category": "Objects",
- "sort_order": 59,
- "added_in": "6.0",
+ "category": "Travel & Places",
+ "subcategory": "transport-ground",
+ "sort_order": 889,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "CLOSED BOOK",
- "unified": "1F4D5",
+ "name": "TRAIN",
+ "unified": "1F686",
"non_qualified": null,
- "docomo": "E683",
- "au": "E568",
+ "docomo": null,
+ "au": null,
"softbank": null,
- "google": "FE502",
- "image": "1f4d5.png",
- "sheet_x": 26,
- "sheet_y": 35,
- "short_name": "closed_book",
- "short_names": ["closed_book"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 60,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- {
- "name": "OPEN BOOK",
- "unified": "1F4D6",
- "non_qualified": null,
- "docomo": "E683",
- "au": "E49F",
- "softbank": "E148",
- "google": "FE546",
- "image": "1f4d6.png",
- "sheet_x": 26,
- "sheet_y": 36,
- "short_name": "book",
- "short_names": ["book", "open_book"],
+ "google": null,
+ "image": "1f686.png",
+ "sheet_x": 35,
+ "sheet_y": 39,
+ "short_name": "train2",
+ "short_names": ["train2"],
"text": null,
"texts": null,
- "category": "Objects",
- "sort_order": 61,
- "added_in": "6.0",
+ "category": "Travel & Places",
+ "subcategory": "transport-ground",
+ "sort_order": 890,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "GREEN BOOK",
- "unified": "1F4D7",
+ "name": "METRO",
+ "unified": "1F687",
"non_qualified": null,
- "docomo": "E683",
- "au": "E565",
- "softbank": null,
- "google": "FE4FF",
- "image": "1f4d7.png",
- "sheet_x": 26,
- "sheet_y": 37,
- "short_name": "green_book",
- "short_names": ["green_book"],
+ "docomo": "E65C",
+ "au": "E5BC",
+ "softbank": "E434",
+ "google": "FE7E0",
+ "image": "1f687.png",
+ "sheet_x": 35,
+ "sheet_y": 40,
+ "short_name": "metro",
+ "short_names": ["metro"],
"text": null,
"texts": null,
- "category": "Objects",
- "sort_order": 62,
- "added_in": "6.0",
+ "category": "Travel & Places",
+ "subcategory": "transport-ground",
+ "sort_order": 891,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "BLUE BOOK",
- "unified": "1F4D8",
+ "name": "LIGHT RAIL",
+ "unified": "1F688",
"non_qualified": null,
- "docomo": "E683",
- "au": "E566",
+ "docomo": null,
+ "au": null,
"softbank": null,
- "google": "FE500",
- "image": "1f4d8.png",
- "sheet_x": 26,
- "sheet_y": 38,
- "short_name": "blue_book",
- "short_names": ["blue_book"],
+ "google": null,
+ "image": "1f688.png",
+ "sheet_x": 35,
+ "sheet_y": 41,
+ "short_name": "light_rail",
+ "short_names": ["light_rail"],
"text": null,
"texts": null,
- "category": "Objects",
- "sort_order": 63,
- "added_in": "6.0",
+ "category": "Travel & Places",
+ "subcategory": "transport-ground",
+ "sort_order": 892,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "ORANGE BOOK",
- "unified": "1F4D9",
+ "name": "STATION",
+ "unified": "1F689",
"non_qualified": null,
- "docomo": "E683",
- "au": "E567",
- "softbank": null,
- "google": "FE501",
- "image": "1f4d9.png",
- "sheet_x": 26,
- "sheet_y": 39,
- "short_name": "orange_book",
- "short_names": ["orange_book"],
+ "docomo": null,
+ "au": "EB6D",
+ "softbank": "E039",
+ "google": "FE7EC",
+ "image": "1f689.png",
+ "sheet_x": 35,
+ "sheet_y": 42,
+ "short_name": "station",
+ "short_names": ["station"],
"text": null,
"texts": null,
- "category": "Objects",
- "sort_order": 64,
- "added_in": "6.0",
+ "category": "Travel & Places",
+ "subcategory": "transport-ground",
+ "sort_order": 893,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "BOOKS",
- "unified": "1F4DA",
+ "name": "TRAM",
+ "unified": "1F68A",
"non_qualified": null,
- "docomo": "E683",
- "au": "E56F",
+ "docomo": null,
+ "au": null,
"softbank": null,
- "google": "FE503",
- "image": "1f4da.png",
- "sheet_x": 26,
- "sheet_y": 40,
- "short_name": "books",
- "short_names": ["books"],
+ "google": null,
+ "image": "1f68a.png",
+ "sheet_x": 35,
+ "sheet_y": 43,
+ "short_name": "tram",
+ "short_names": ["tram"],
"text": null,
"texts": null,
- "category": "Objects",
- "sort_order": 65,
- "added_in": "6.0",
+ "category": "Travel & Places",
+ "subcategory": "transport-ground",
+ "sort_order": 894,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "NAME BADGE",
- "unified": "1F4DB",
+ "name": "TRAM CAR",
+ "unified": "1F68B",
"non_qualified": null,
"docomo": null,
- "au": "E51D",
+ "au": null,
"softbank": null,
- "google": "FE504",
- "image": "1f4db.png",
- "sheet_x": 26,
- "sheet_y": 41,
- "short_name": "name_badge",
- "short_names": ["name_badge"],
+ "google": null,
+ "image": "1f68b.png",
+ "sheet_x": 35,
+ "sheet_y": 44,
+ "short_name": "train",
+ "short_names": ["train"],
"text": null,
"texts": null,
- "category": "Symbols",
- "sort_order": 104,
- "added_in": "6.0",
+ "category": "Travel & Places",
+ "subcategory": "transport-ground",
+ "sort_order": 897,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "SCROLL",
- "unified": "1F4DC",
+ "name": "BUS",
+ "unified": "1F68C",
"non_qualified": null,
- "docomo": "E70A",
- "au": "E55F",
- "softbank": null,
- "google": "FE4FD",
- "image": "1f4dc.png",
- "sheet_x": 26,
- "sheet_y": 42,
- "short_name": "scroll",
- "short_names": ["scroll"],
+ "docomo": "E660",
+ "au": "E4AF",
+ "softbank": "E159",
+ "google": "FE7E6",
+ "image": "1f68c.png",
+ "sheet_x": 35,
+ "sheet_y": 45,
+ "short_name": "bus",
+ "short_names": ["bus"],
"text": null,
"texts": null,
- "category": "Objects",
- "sort_order": 69,
- "added_in": "6.0",
+ "category": "Travel & Places",
+ "subcategory": "transport-ground",
+ "sort_order": 898,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "MEMO",
- "unified": "1F4DD",
+ "name": "ONCOMING BUS",
+ "unified": "1F68D",
"non_qualified": null,
- "docomo": "E689",
- "au": "EA92",
- "softbank": "E301",
- "google": "FE527",
- "image": "1f4dd.png",
- "sheet_x": 26,
- "sheet_y": 43,
- "short_name": "memo",
- "short_names": ["memo", "pencil"],
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f68d.png",
+ "sheet_x": 35,
+ "sheet_y": 46,
+ "short_name": "oncoming_bus",
+ "short_names": ["oncoming_bus"],
"text": null,
"texts": null,
- "category": "Objects",
- "sort_order": 106,
- "added_in": "6.0",
+ "category": "Travel & Places",
+ "subcategory": "transport-ground",
+ "sort_order": 899,
+ "added_in": "0.7",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "TELEPHONE RECEIVER",
- "unified": "1F4DE",
+ "name": "TROLLEYBUS",
+ "unified": "1F68E",
"non_qualified": null,
- "docomo": "E687",
- "au": "E51E",
+ "docomo": null,
+ "au": null,
"softbank": null,
- "google": "FE524",
- "image": "1f4de.png",
- "sheet_x": 26,
- "sheet_y": 44,
- "short_name": "telephone_receiver",
- "short_names": ["telephone_receiver"],
+ "google": null,
+ "image": "1f68e.png",
+ "sheet_x": 35,
+ "sheet_y": 47,
+ "short_name": "trolleybus",
+ "short_names": ["trolleybus"],
"text": null,
"texts": null,
- "category": "Objects",
- "sort_order": 28,
- "added_in": "6.0",
+ "category": "Travel & Places",
+ "subcategory": "transport-ground",
+ "sort_order": 900,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "PAGER",
- "unified": "1F4DF",
- "non_qualified": null,
- "docomo": "E65A",
- "au": "E59B",
- "softbank": null,
- "google": "FE522",
- "image": "1f4df.png",
- "sheet_x": 26,
- "sheet_y": 45,
- "short_name": "pager",
- "short_names": ["pager"],
+ "name": "BUS STOP",
+ "unified": "1F68F",
+ "non_qualified": null,
+ "docomo": null,
+ "au": "E4A7",
+ "softbank": "E150",
+ "google": "FE7E7",
+ "image": "1f68f.png",
+ "sheet_x": 35,
+ "sheet_y": 48,
+ "short_name": "busstop",
+ "short_names": ["busstop"],
"text": null,
"texts": null,
- "category": "Objects",
- "sort_order": 29,
- "added_in": "6.0",
+ "category": "Travel & Places",
+ "subcategory": "transport-ground",
+ "sort_order": 925,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "FAX MACHINE",
- "unified": "1F4E0",
+ "name": "MINIBUS",
+ "unified": "1F690",
"non_qualified": null,
- "docomo": "E6D0",
- "au": "E520",
- "softbank": "E00B",
- "google": "FE528",
- "image": "1f4e0.png",
- "sheet_x": 26,
- "sheet_y": 46,
- "short_name": "fax",
- "short_names": ["fax"],
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f690.png",
+ "sheet_x": 35,
+ "sheet_y": 49,
+ "short_name": "minibus",
+ "short_names": ["minibus"],
"text": null,
"texts": null,
- "category": "Objects",
- "sort_order": 30,
- "added_in": "6.0",
+ "category": "Travel & Places",
+ "subcategory": "transport-ground",
+ "sort_order": 901,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "SATELLITE ANTENNA",
- "unified": "1F4E1",
+ "name": "AMBULANCE",
+ "unified": "1F691",
"non_qualified": null,
"docomo": null,
- "au": "E4A8",
- "softbank": "E14B",
- "google": "FE531",
- "image": "1f4e1.png",
- "sheet_x": 26,
- "sheet_y": 47,
- "short_name": "satellite_antenna",
- "short_names": ["satellite_antenna"],
+ "au": "EAE0",
+ "softbank": "E431",
+ "google": "FE7F3",
+ "image": "1f691.png",
+ "sheet_x": 35,
+ "sheet_y": 50,
+ "short_name": "ambulance",
+ "short_names": ["ambulance"],
"text": null,
"texts": null,
- "category": "Objects",
- "sort_order": 160,
- "added_in": "6.0",
+ "category": "Travel & Places",
+ "subcategory": "transport-ground",
+ "sort_order": 902,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "PUBLIC ADDRESS LOUDSPEAKER",
- "unified": "1F4E2",
+ "name": "FIRE ENGINE",
+ "unified": "1F692",
"non_qualified": null,
"docomo": null,
- "au": "E511",
- "softbank": "E142",
- "google": "FE52F",
- "image": "1f4e2.png",
- "sheet_x": 26,
- "sheet_y": 48,
- "short_name": "loudspeaker",
- "short_names": ["loudspeaker"],
+ "au": "EADF",
+ "softbank": "E430",
+ "google": "FE7F2",
+ "image": "1f692.png",
+ "sheet_x": 35,
+ "sheet_y": 51,
+ "short_name": "fire_engine",
+ "short_names": ["fire_engine"],
"text": null,
"texts": null,
- "category": "Objects",
- "sort_order": 5,
- "added_in": "6.0",
+ "category": "Travel & Places",
+ "subcategory": "transport-ground",
+ "sort_order": 903,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "CHEERING MEGAPHONE",
- "unified": "1F4E3",
+ "name": "POLICE CAR",
+ "unified": "1F693",
"non_qualified": null,
"docomo": null,
- "au": "E511",
- "softbank": "E317",
- "google": "FE530",
- "image": "1f4e3.png",
- "sheet_x": 26,
- "sheet_y": 49,
- "short_name": "mega",
- "short_names": ["mega"],
+ "au": "EAE1",
+ "softbank": "E432",
+ "google": "FE7F4",
+ "image": "1f693.png",
+ "sheet_x": 35,
+ "sheet_y": 52,
+ "short_name": "police_car",
+ "short_names": ["police_car"],
"text": null,
"texts": null,
- "category": "Objects",
- "sort_order": 6,
- "added_in": "6.0",
+ "category": "Travel & Places",
+ "subcategory": "transport-ground",
+ "sort_order": 904,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "OUTBOX TRAY",
- "unified": "1F4E4",
+ "name": "ONCOMING POLICE CAR",
+ "unified": "1F694",
"non_qualified": null,
"docomo": null,
- "au": "E592",
+ "au": null,
"softbank": null,
- "google": "FE533",
- "image": "1f4e4.png",
- "sheet_x": 26,
- "sheet_y": 50,
- "short_name": "outbox_tray",
- "short_names": ["outbox_tray"],
+ "google": null,
+ "image": "1f694.png",
+ "sheet_x": 35,
+ "sheet_y": 53,
+ "short_name": "oncoming_police_car",
+ "short_names": ["oncoming_police_car"],
"text": null,
"texts": null,
- "category": "Objects",
- "sort_order": 91,
- "added_in": "6.0",
+ "category": "Travel & Places",
+ "subcategory": "transport-ground",
+ "sort_order": 905,
+ "added_in": "0.7",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "INBOX TRAY",
- "unified": "1F4E5",
+ "name": "TAXI",
+ "unified": "1F695",
"non_qualified": null,
- "docomo": null,
- "au": "E593",
- "softbank": null,
- "google": "FE534",
- "image": "1f4e5.png",
- "sheet_x": 26,
- "sheet_y": 51,
- "short_name": "inbox_tray",
- "short_names": ["inbox_tray"],
+ "docomo": "E65E",
+ "au": "E4B1",
+ "softbank": "E15A",
+ "google": "FE7EF",
+ "image": "1f695.png",
+ "sheet_x": 35,
+ "sheet_y": 54,
+ "short_name": "taxi",
+ "short_names": ["taxi"],
"text": null,
"texts": null,
- "category": "Objects",
- "sort_order": 92,
- "added_in": "6.0",
+ "category": "Travel & Places",
+ "subcategory": "transport-ground",
+ "sort_order": 906,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "PACKAGE",
- "unified": "1F4E6",
+ "name": "ONCOMING TAXI",
+ "unified": "1F696",
"non_qualified": null,
- "docomo": "E685",
- "au": "E51F",
+ "docomo": null,
+ "au": null,
"softbank": null,
- "google": "FE535",
- "image": "1f4e6.png",
- "sheet_x": 26,
- "sheet_y": 52,
- "short_name": "package",
- "short_names": ["package"],
+ "google": null,
+ "image": "1f696.png",
+ "sheet_x": 35,
+ "sheet_y": 55,
+ "short_name": "oncoming_taxi",
+ "short_names": ["oncoming_taxi"],
"text": null,
"texts": null,
- "category": "Objects",
- "sort_order": 93,
- "added_in": "6.0",
+ "category": "Travel & Places",
+ "subcategory": "transport-ground",
+ "sort_order": 907,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "E-MAIL SYMBOL",
- "unified": "1F4E7",
+ "name": "AUTOMOBILE",
+ "unified": "1F697",
"non_qualified": null,
- "docomo": "E6D3",
- "au": "EB71",
- "softbank": null,
- "google": "FEB92",
- "image": "1f4e7.png",
- "sheet_x": 27,
- "sheet_y": 0,
- "short_name": "e-mail",
- "short_names": ["e-mail"],
+ "docomo": "E65E",
+ "au": "E4B1",
+ "softbank": "E01B",
+ "google": "FE7E4",
+ "image": "1f697.png",
+ "sheet_x": 35,
+ "sheet_y": 56,
+ "short_name": "car",
+ "short_names": ["car", "red_car"],
"text": null,
"texts": null,
- "category": "Objects",
- "sort_order": 88,
- "added_in": "6.0",
+ "category": "Travel & Places",
+ "subcategory": "transport-ground",
+ "sort_order": 908,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "INCOMING ENVELOPE",
- "unified": "1F4E8",
+ "name": "ONCOMING AUTOMOBILE",
+ "unified": "1F698",
"non_qualified": null,
- "docomo": "E6CF",
- "au": "E591",
+ "docomo": null,
+ "au": null,
"softbank": null,
- "google": "FE52A",
- "image": "1f4e8.png",
- "sheet_x": 27,
- "sheet_y": 1,
- "short_name": "incoming_envelope",
- "short_names": ["incoming_envelope"],
+ "google": null,
+ "image": "1f698.png",
+ "sheet_x": 35,
+ "sheet_y": 57,
+ "short_name": "oncoming_automobile",
+ "short_names": ["oncoming_automobile"],
"text": null,
"texts": null,
- "category": "Objects",
- "sort_order": 89,
- "added_in": "6.0",
+ "category": "Travel & Places",
+ "subcategory": "transport-ground",
+ "sort_order": 909,
+ "added_in": "0.7",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "ENVELOPE WITH DOWNWARDS ARROW ABOVE",
- "unified": "1F4E9",
+ "name": "RECREATIONAL VEHICLE",
+ "unified": "1F699",
"non_qualified": null,
- "docomo": "E6CF",
- "au": "EB62",
- "softbank": "E103",
- "google": "FE52B",
- "image": "1f4e9.png",
- "sheet_x": 27,
- "sheet_y": 2,
- "short_name": "envelope_with_arrow",
- "short_names": ["envelope_with_arrow"],
+ "docomo": "E65F",
+ "au": "E4B1",
+ "softbank": "E42E",
+ "google": "FE7E5",
+ "image": "1f699.png",
+ "sheet_x": 35,
+ "sheet_y": 58,
+ "short_name": "blue_car",
+ "short_names": ["blue_car"],
"text": null,
"texts": null,
- "category": "Objects",
- "sort_order": 90,
- "added_in": "6.0",
+ "category": "Travel & Places",
+ "subcategory": "transport-ground",
+ "sort_order": 910,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "CLOSED MAILBOX WITH LOWERED FLAG",
- "unified": "1F4EA",
+ "name": "DELIVERY TRUCK",
+ "unified": "1F69A",
"non_qualified": null,
- "docomo": "E665",
- "au": "E51B",
- "softbank": null,
- "google": "FE52C",
- "image": "1f4ea.png",
- "sheet_x": 27,
- "sheet_y": 3,
- "short_name": "mailbox_closed",
- "short_names": ["mailbox_closed"],
+ "docomo": null,
+ "au": "E4B2",
+ "softbank": "E42F",
+ "google": "FE7F1",
+ "image": "1f69a.png",
+ "sheet_x": 35,
+ "sheet_y": 59,
+ "short_name": "truck",
+ "short_names": ["truck"],
"text": null,
"texts": null,
- "category": "Objects",
- "sort_order": 95,
- "added_in": "6.0",
+ "category": "Travel & Places",
+ "subcategory": "transport-ground",
+ "sort_order": 912,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "CLOSED MAILBOX WITH RAISED FLAG",
- "unified": "1F4EB",
+ "name": "ARTICULATED LORRY",
+ "unified": "1F69B",
"non_qualified": null,
- "docomo": "E665",
- "au": "EB0A",
- "softbank": "E101",
- "google": "FE52D",
- "image": "1f4eb.png",
- "sheet_x": 27,
- "sheet_y": 4,
- "short_name": "mailbox",
- "short_names": ["mailbox"],
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f69b.png",
+ "sheet_x": 35,
+ "sheet_y": 60,
+ "short_name": "articulated_lorry",
+ "short_names": ["articulated_lorry"],
"text": null,
"texts": null,
- "category": "Objects",
- "sort_order": 94,
- "added_in": "6.0",
+ "category": "Travel & Places",
+ "subcategory": "transport-ground",
+ "sort_order": 913,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "OPEN MAILBOX WITH RAISED FLAG",
- "unified": "1F4EC",
+ "name": "TRACTOR",
+ "unified": "1F69C",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f4ec.png",
- "sheet_x": 27,
- "sheet_y": 5,
- "short_name": "mailbox_with_mail",
- "short_names": ["mailbox_with_mail"],
+ "image": "1f69c.png",
+ "sheet_x": 36,
+ "sheet_y": 0,
+ "short_name": "tractor",
+ "short_names": ["tractor"],
"text": null,
"texts": null,
- "category": "Objects",
- "sort_order": 96,
- "added_in": "6.0",
+ "category": "Travel & Places",
+ "subcategory": "transport-ground",
+ "sort_order": 914,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "OPEN MAILBOX WITH LOWERED FLAG",
- "unified": "1F4ED",
+ "name": "MONORAIL",
+ "unified": "1F69D",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f4ed.png",
- "sheet_x": 27,
- "sheet_y": 6,
- "short_name": "mailbox_with_no_mail",
- "short_names": ["mailbox_with_no_mail"],
+ "image": "1f69d.png",
+ "sheet_x": 36,
+ "sheet_y": 1,
+ "short_name": "monorail",
+ "short_names": ["monorail"],
"text": null,
"texts": null,
- "category": "Objects",
- "sort_order": 97,
- "added_in": "6.0",
+ "category": "Travel & Places",
+ "subcategory": "transport-ground",
+ "sort_order": 895,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "POSTBOX",
- "unified": "1F4EE",
+ "name": "MOUNTAIN RAILWAY",
+ "unified": "1F69E",
"non_qualified": null,
- "docomo": "E665",
- "au": "E51B",
- "softbank": "E102",
- "google": "FE52E",
- "image": "1f4ee.png",
- "sheet_x": 27,
- "sheet_y": 7,
- "short_name": "postbox",
- "short_names": ["postbox"],
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f69e.png",
+ "sheet_x": 36,
+ "sheet_y": 2,
+ "short_name": "mountain_railway",
+ "short_names": ["mountain_railway"],
"text": null,
"texts": null,
- "category": "Objects",
- "sort_order": 98,
- "added_in": "6.0",
+ "category": "Travel & Places",
+ "subcategory": "transport-ground",
+ "sort_order": 896,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "POSTAL HORN",
- "unified": "1F4EF",
+ "name": "SUSPENSION RAILWAY",
+ "unified": "1F69F",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f4ef.png",
- "sheet_x": 27,
- "sheet_y": 8,
- "short_name": "postal_horn",
- "short_names": ["postal_horn"],
+ "image": "1f69f.png",
+ "sheet_x": 36,
+ "sheet_y": 3,
+ "short_name": "suspension_railway",
+ "short_names": ["suspension_railway"],
"text": null,
"texts": null,
- "category": "Objects",
- "sort_order": 7,
- "added_in": "6.0",
+ "category": "Travel & Places",
+ "subcategory": "transport-air",
+ "sort_order": 952,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "NEWSPAPER",
- "unified": "1F4F0",
+ "name": "MOUNTAIN CABLEWAY",
+ "unified": "1F6A0",
"non_qualified": null,
"docomo": null,
- "au": "E58B",
+ "au": null,
"softbank": null,
- "google": "FE822",
- "image": "1f4f0.png",
- "sheet_x": 27,
- "sheet_y": 9,
- "short_name": "newspaper",
- "short_names": ["newspaper"],
+ "google": null,
+ "image": "1f6a0.png",
+ "sheet_x": 36,
+ "sheet_y": 4,
+ "short_name": "mountain_cableway",
+ "short_names": ["mountain_cableway"],
"text": null,
"texts": null,
- "category": "Objects",
- "sort_order": 71,
- "added_in": "6.0",
+ "category": "Travel & Places",
+ "subcategory": "transport-air",
+ "sort_order": 953,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "MOBILE PHONE",
- "unified": "1F4F1",
+ "name": "AERIAL TRAMWAY",
+ "unified": "1F6A1",
"non_qualified": null,
- "docomo": "E688",
- "au": "E588",
- "softbank": "E00A",
- "google": "FE525",
- "image": "1f4f1.png",
- "sheet_x": 27,
- "sheet_y": 10,
- "short_name": "iphone",
- "short_names": ["iphone"],
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f6a1.png",
+ "sheet_x": 36,
+ "sheet_y": 5,
+ "short_name": "aerial_tramway",
+ "short_names": ["aerial_tramway"],
"text": null,
"texts": null,
- "category": "Objects",
- "sort_order": 25,
- "added_in": "6.0",
+ "category": "Travel & Places",
+ "subcategory": "transport-air",
+ "sort_order": 954,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "MOBILE PHONE WITH RIGHTWARDS ARROW AT LEFT",
- "unified": "1F4F2",
+ "name": "SHIP",
+ "unified": "1F6A2",
"non_qualified": null,
- "docomo": "E6CE",
- "au": "EB08",
- "softbank": "E104",
- "google": "FE526",
- "image": "1f4f2.png",
- "sheet_x": 27,
- "sheet_y": 11,
- "short_name": "calling",
- "short_names": ["calling"],
+ "docomo": "E661",
+ "au": "EA82",
+ "softbank": "E202",
+ "google": "FE7E8",
+ "image": "1f6a2.png",
+ "sheet_x": 36,
+ "sheet_y": 6,
+ "short_name": "ship",
+ "short_names": ["ship"],
"text": null,
"texts": null,
- "category": "Objects",
- "sort_order": 26,
- "added_in": "6.0",
+ "category": "Travel & Places",
+ "subcategory": "transport-water",
+ "sort_order": 944,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "VIBRATION MODE",
- "unified": "1F4F3",
- "non_qualified": null,
+ "name": "WOMAN ROWING BOAT",
+ "unified": "1F6A3-200D-2640-FE0F",
+ "non_qualified": "1F6A3-200D-2640",
"docomo": null,
- "au": "EA90",
- "softbank": "E250",
- "google": "FE839",
- "image": "1f4f3.png",
- "sheet_x": 27,
- "sheet_y": 12,
- "short_name": "vibration_mode",
- "short_names": ["vibration_mode"],
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f6a3-200d-2640-fe0f.png",
+ "sheet_x": 36,
+ "sheet_y": 7,
+ "short_name": "woman-rowing-boat",
+ "short_names": ["woman-rowing-boat"],
"text": null,
"texts": null,
- "category": "Symbols",
- "sort_order": 95,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "person-sport",
+ "sort_order": 451,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": true
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F6A3-1F3FB-200D-2640-FE0F",
+ "non_qualified": "1F6A3-1F3FB-200D-2640",
+ "image": "1f6a3-1f3fb-200d-2640-fe0f.png",
+ "sheet_x": 36,
+ "sheet_y": 8,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1F6A3-1F3FC-200D-2640-FE0F",
+ "non_qualified": "1F6A3-1F3FC-200D-2640",
+ "image": "1f6a3-1f3fc-200d-2640-fe0f.png",
+ "sheet_x": 36,
+ "sheet_y": 9,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1F6A3-1F3FD-200D-2640-FE0F",
+ "non_qualified": "1F6A3-1F3FD-200D-2640",
+ "image": "1f6a3-1f3fd-200d-2640-fe0f.png",
+ "sheet_x": 36,
+ "sheet_y": 10,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1F6A3-1F3FE-200D-2640-FE0F",
+ "non_qualified": "1F6A3-1F3FE-200D-2640",
+ "image": "1f6a3-1f3fe-200d-2640-fe0f.png",
+ "sheet_x": 36,
+ "sheet_y": 11,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1F6A3-1F3FF-200D-2640-FE0F",
+ "non_qualified": "1F6A3-1F3FF-200D-2640",
+ "image": "1f6a3-1f3ff-200d-2640-fe0f.png",
+ "sheet_x": 36,
+ "sheet_y": 12,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ }
},
{
- "name": "MOBILE PHONE OFF",
- "unified": "1F4F4",
- "non_qualified": null,
+ "name": "MAN ROWING BOAT",
+ "unified": "1F6A3-200D-2642-FE0F",
+ "non_qualified": "1F6A3-200D-2642",
"docomo": null,
- "au": "EA91",
- "softbank": "E251",
- "google": "FE83A",
- "image": "1f4f4.png",
- "sheet_x": 27,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f6a3-200d-2642-fe0f.png",
+ "sheet_x": 36,
"sheet_y": 13,
- "short_name": "mobile_phone_off",
- "short_names": ["mobile_phone_off"],
+ "short_name": "man-rowing-boat",
+ "short_names": ["man-rowing-boat"],
"text": null,
"texts": null,
- "category": "Symbols",
- "sort_order": 96,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "person-sport",
+ "sort_order": 450,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": true
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F6A3-1F3FB-200D-2642-FE0F",
+ "non_qualified": "1F6A3-1F3FB-200D-2642",
+ "image": "1f6a3-1f3fb-200d-2642-fe0f.png",
+ "sheet_x": 36,
+ "sheet_y": 14,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1F6A3-1F3FC-200D-2642-FE0F",
+ "non_qualified": "1F6A3-1F3FC-200D-2642",
+ "image": "1f6a3-1f3fc-200d-2642-fe0f.png",
+ "sheet_x": 36,
+ "sheet_y": 15,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1F6A3-1F3FD-200D-2642-FE0F",
+ "non_qualified": "1F6A3-1F3FD-200D-2642",
+ "image": "1f6a3-1f3fd-200d-2642-fe0f.png",
+ "sheet_x": 36,
+ "sheet_y": 16,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1F6A3-1F3FE-200D-2642-FE0F",
+ "non_qualified": "1F6A3-1F3FE-200D-2642",
+ "image": "1f6a3-1f3fe-200d-2642-fe0f.png",
+ "sheet_x": 36,
+ "sheet_y": 17,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1F6A3-1F3FF-200D-2642-FE0F",
+ "non_qualified": "1F6A3-1F3FF-200D-2642",
+ "image": "1f6a3-1f3ff-200d-2642-fe0f.png",
+ "sheet_x": 36,
+ "sheet_y": 18,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ },
+ "obsoletes": "1F6A3"
},
{
- "name": "NO MOBILE PHONES",
- "unified": "1F4F5",
+ "name": "ROWBOAT",
+ "unified": "1F6A3",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f4f5.png",
- "sheet_x": 27,
- "sheet_y": 14,
- "short_name": "no_mobile_phones",
- "short_names": ["no_mobile_phones"],
+ "image": "1f6a3.png",
+ "sheet_x": 36,
+ "sheet_y": 19,
+ "short_name": "rowboat",
+ "short_names": ["rowboat"],
"text": null,
"texts": null,
- "category": "Symbols",
- "sort_order": 23,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "person-sport",
+ "sort_order": 449,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": true
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F6A3-1F3FB",
+ "non_qualified": null,
+ "image": "1f6a3-1f3fb.png",
+ "sheet_x": 36,
+ "sheet_y": 20,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1F6A3-1F3FC",
+ "non_qualified": null,
+ "image": "1f6a3-1f3fc.png",
+ "sheet_x": 36,
+ "sheet_y": 21,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1F6A3-1F3FD",
+ "non_qualified": null,
+ "image": "1f6a3-1f3fd.png",
+ "sheet_x": 36,
+ "sheet_y": 22,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1F6A3-1F3FE",
+ "non_qualified": null,
+ "image": "1f6a3-1f3fe.png",
+ "sheet_x": 36,
+ "sheet_y": 23,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1F6A3-1F3FF",
+ "non_qualified": null,
+ "image": "1f6a3-1f3ff.png",
+ "sheet_x": 36,
+ "sheet_y": 24,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ },
+ "obsoleted_by": "1F6A3-200D-2642-FE0F"
},
{
- "name": "ANTENNA WITH BARS",
- "unified": "1F4F6",
+ "name": "SPEEDBOAT",
+ "unified": "1F6A4",
"non_qualified": null,
- "docomo": null,
- "au": "EA84",
- "softbank": "E20B",
- "google": "FE838",
- "image": "1f4f6.png",
- "sheet_x": 27,
- "sheet_y": 15,
- "short_name": "signal_strength",
- "short_names": ["signal_strength"],
+ "docomo": "E6A3",
+ "au": "E4B4",
+ "softbank": "E135",
+ "google": "FE7EE",
+ "image": "1f6a4.png",
+ "sheet_x": 36,
+ "sheet_y": 25,
+ "short_name": "speedboat",
+ "short_names": ["speedboat"],
"text": null,
"texts": null,
- "category": "Symbols",
- "sort_order": 94,
- "added_in": "6.0",
+ "category": "Travel & Places",
+ "subcategory": "transport-water",
+ "sort_order": 940,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "CAMERA",
- "unified": "1F4F7",
+ "name": "HORIZONTAL TRAFFIC LIGHT",
+ "unified": "1F6A5",
"non_qualified": null,
- "docomo": "E681",
- "au": "E515",
- "softbank": "E008",
- "google": "FE4EF",
- "image": "1f4f7.png",
- "sheet_x": 27,
- "sheet_y": 16,
- "short_name": "camera",
- "short_names": ["camera"],
+ "docomo": "E66D",
+ "au": "E46A",
+ "softbank": "E14E",
+ "google": "FE7F7",
+ "image": "1f6a5.png",
+ "sheet_x": 36,
+ "sheet_y": 26,
+ "short_name": "traffic_light",
+ "short_names": ["traffic_light"],
"text": null,
"texts": null,
- "category": "Objects",
- "sort_order": 49,
- "added_in": "6.0",
+ "category": "Travel & Places",
+ "subcategory": "transport-ground",
+ "sort_order": 932,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "CAMERA WITH FLASH",
- "unified": "1F4F8",
+ "name": "VERTICAL TRAFFIC LIGHT",
+ "unified": "1F6A6",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f4f8.png",
- "sheet_x": 27,
- "sheet_y": 17,
- "short_name": "camera_with_flash",
- "short_names": ["camera_with_flash"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 50,
- "added_in": "7.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- {
- "name": "VIDEO CAMERA",
- "unified": "1F4F9",
- "non_qualified": null,
- "docomo": "E677",
- "au": "E57E",
- "softbank": null,
- "google": "FE4F9",
- "image": "1f4f9.png",
- "sheet_x": 27,
- "sheet_y": 18,
- "short_name": "video_camera",
- "short_names": ["video_camera"],
+ "image": "1f6a6.png",
+ "sheet_x": 36,
+ "sheet_y": 27,
+ "short_name": "vertical_traffic_light",
+ "short_names": ["vertical_traffic_light"],
"text": null,
"texts": null,
- "category": "Objects",
- "sort_order": 51,
- "added_in": "6.0",
+ "category": "Travel & Places",
+ "subcategory": "transport-ground",
+ "sort_order": 933,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "TELEVISION",
- "unified": "1F4FA",
+ "name": "CONSTRUCTION SIGN",
+ "unified": "1F6A7",
"non_qualified": null,
- "docomo": "E68A",
- "au": "E502",
- "softbank": "E12A",
- "google": "FE81C",
- "image": "1f4fa.png",
- "sheet_x": 27,
- "sheet_y": 19,
- "short_name": "tv",
- "short_names": ["tv"],
+ "docomo": null,
+ "au": "E5D7",
+ "softbank": "E137",
+ "google": "FE7F8",
+ "image": "1f6a7.png",
+ "sheet_x": 36,
+ "sheet_y": 28,
+ "short_name": "construction",
+ "short_names": ["construction"],
"text": null,
"texts": null,
- "category": "Objects",
- "sort_order": 48,
- "added_in": "6.0",
+ "category": "Travel & Places",
+ "subcategory": "transport-ground",
+ "sort_order": 935,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "RADIO",
- "unified": "1F4FB",
+ "name": "POLICE CARS REVOLVING LIGHT",
+ "unified": "1F6A8",
"non_qualified": null,
"docomo": null,
- "au": "E5B9",
- "softbank": "E128",
- "google": "FE81F",
- "image": "1f4fb.png",
- "sheet_x": 27,
- "sheet_y": 20,
- "short_name": "radio",
- "short_names": ["radio"],
+ "au": "EB73",
+ "softbank": null,
+ "google": "FE7F9",
+ "image": "1f6a8.png",
+ "sheet_x": 36,
+ "sheet_y": 29,
+ "short_name": "rotating_light",
+ "short_names": ["rotating_light"],
"text": null,
"texts": null,
- "category": "Objects",
- "sort_order": 18,
- "added_in": "6.0",
+ "category": "Travel & Places",
+ "subcategory": "transport-ground",
+ "sort_order": 931,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "VIDEOCASSETTE",
- "unified": "1F4FC",
+ "name": "TRIANGULAR FLAG ON POST",
+ "unified": "1F6A9",
"non_qualified": null,
- "docomo": null,
- "au": "E580",
- "softbank": "E129",
- "google": "FE820",
- "image": "1f4fc.png",
- "sheet_x": 27,
- "sheet_y": 21,
- "short_name": "vhs",
- "short_names": ["vhs"],
+ "docomo": "E6DE",
+ "au": "EB2C",
+ "softbank": null,
+ "google": "FEB22",
+ "image": "1f6a9.png",
+ "sheet_x": 36,
+ "sheet_y": 30,
+ "short_name": "triangular_flag_on_post",
+ "short_names": ["triangular_flag_on_post"],
"text": null,
"texts": null,
- "category": "Objects",
- "sort_order": 52,
- "added_in": "6.0",
+ "category": "Flags",
+ "subcategory": "flag",
+ "sort_order": 1608,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": null,
- "unified": "1F4FD-FE0F",
- "non_qualified": "1F4FD",
- "docomo": null,
+ "name": "DOOR",
+ "unified": "1F6AA",
+ "non_qualified": null,
+ "docomo": "E714",
"au": null,
"softbank": null,
- "google": null,
- "image": "1f4fd-fe0f.png",
- "sheet_x": 27,
- "sheet_y": 22,
- "short_name": "film_projector",
- "short_names": ["film_projector"],
+ "google": "FE4F3",
+ "image": "1f6aa.png",
+ "sheet_x": 36,
+ "sheet_y": 31,
+ "short_name": "door",
+ "short_names": ["door"],
"text": null,
"texts": null,
"category": "Objects",
- "sort_order": 46,
- "added_in": "7.0",
+ "subcategory": "household",
+ "sort_order": 1350,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
- "name": "PRAYER BEADS",
- "unified": "1F4FF",
+ "name": "NO ENTRY SIGN",
+ "unified": "1F6AB",
"non_qualified": null,
- "docomo": null,
- "au": null,
+ "docomo": "E738",
+ "au": "E541",
"softbank": null,
- "google": null,
- "image": "1f4ff.png",
- "sheet_x": 27,
- "sheet_y": 23,
- "short_name": "prayer_beads",
- "short_names": ["prayer_beads"],
+ "google": "FEB48",
+ "image": "1f6ab.png",
+ "sheet_x": 36,
+ "sheet_y": 32,
+ "short_name": "no_entry_sign",
+ "short_names": ["no_entry_sign"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 466,
- "added_in": "8.0",
+ "category": "Symbols",
+ "subcategory": "warning",
+ "sort_order": 1400,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
- "name": "TWISTED RIGHTWARDS ARROWS",
- "unified": "1F500",
+ "name": "SMOKING SYMBOL",
+ "unified": "1F6AC",
"non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f500.png",
- "sheet_x": 27,
- "sheet_y": 24,
- "short_name": "twisted_rightwards_arrows",
- "short_names": ["twisted_rightwards_arrows"],
+ "docomo": "E67F",
+ "au": "E47D",
+ "softbank": "E30E",
+ "google": "FEB1E",
+ "image": "1f6ac.png",
+ "sheet_x": 36,
+ "sheet_y": 33,
+ "short_name": "smoking",
+ "short_names": ["smoking"],
"text": null,
"texts": null,
- "category": "Symbols",
- "sort_order": 73,
- "added_in": "6.0",
+ "category": "Objects",
+ "subcategory": "other-object",
+ "sort_order": 1375,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "CLOCKWISE RIGHTWARDS AND LEFTWARDS OPEN CIRCLE ARROWS",
- "unified": "1F501",
+ "name": "NO SMOKING SYMBOL",
+ "unified": "1F6AD",
"non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f501.png",
- "sheet_x": 27,
- "sheet_y": 25,
- "short_name": "repeat",
- "short_names": ["repeat"],
+ "docomo": "E680",
+ "au": "E47E",
+ "softbank": "E208",
+ "google": "FEB1F",
+ "image": "1f6ad.png",
+ "sheet_x": 36,
+ "sheet_y": 34,
+ "short_name": "no_smoking",
+ "short_names": ["no_smoking"],
"text": null,
"texts": null,
"category": "Symbols",
- "sort_order": 74,
- "added_in": "6.0",
+ "subcategory": "warning",
+ "sort_order": 1402,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "CLOCKWISE RIGHTWARDS AND LEFTWARDS OPEN CIRCLE ARROWS WITH CIRCLED ONE OVERLAY",
- "unified": "1F502",
+ "name": "PUT LITTER IN ITS PLACE SYMBOL",
+ "unified": "1F6AE",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f502.png",
- "sheet_x": 27,
- "sheet_y": 26,
- "short_name": "repeat_one",
- "short_names": ["repeat_one"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 75,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- {
- "name": "CLOCKWISE DOWNWARDS AND UPWARDS OPEN CIRCLE ARROWS",
- "unified": "1F503",
- "non_qualified": null,
- "docomo": "E735",
- "au": "EB0D",
- "softbank": null,
- "google": "FEB91",
- "image": "1f503.png",
- "sheet_x": 27,
- "sheet_y": 27,
- "short_name": "arrows_clockwise",
- "short_names": ["arrows_clockwise"],
+ "image": "1f6ae.png",
+ "sheet_x": 36,
+ "sheet_y": 35,
+ "short_name": "put_litter_in_its_place",
+ "short_names": ["put_litter_in_its_place"],
"text": null,
"texts": null,
"category": "Symbols",
- "sort_order": 41,
- "added_in": "6.0",
+ "subcategory": "transport-sign",
+ "sort_order": 1385,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "ANTICLOCKWISE DOWNWARDS AND UPWARDS OPEN CIRCLE ARROWS",
- "unified": "1F504",
+ "name": "DO NOT LITTER SYMBOL",
+ "unified": "1F6AF",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f504.png",
- "sheet_x": 27,
- "sheet_y": 28,
- "short_name": "arrows_counterclockwise",
- "short_names": ["arrows_counterclockwise"],
+ "image": "1f6af.png",
+ "sheet_x": 36,
+ "sheet_y": 36,
+ "short_name": "do_not_litter",
+ "short_names": ["do_not_litter"],
"text": null,
"texts": null,
"category": "Symbols",
- "sort_order": 42,
- "added_in": "6.0",
+ "subcategory": "warning",
+ "sort_order": 1403,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "LOW BRIGHTNESS SYMBOL",
- "unified": "1F505",
+ "name": "POTABLE WATER SYMBOL",
+ "unified": "1F6B0",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f505.png",
- "sheet_x": 27,
- "sheet_y": 29,
- "short_name": "low_brightness",
- "short_names": ["low_brightness"],
+ "image": "1f6b0.png",
+ "sheet_x": 36,
+ "sheet_y": 37,
+ "short_name": "potable_water",
+ "short_names": ["potable_water"],
"text": null,
"texts": null,
"category": "Symbols",
- "sort_order": 92,
- "added_in": "6.0",
+ "subcategory": "transport-sign",
+ "sort_order": 1386,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "HIGH BRIGHTNESS SYMBOL",
- "unified": "1F506",
+ "name": "NON-POTABLE WATER SYMBOL",
+ "unified": "1F6B1",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f506.png",
- "sheet_x": 27,
- "sheet_y": 30,
- "short_name": "high_brightness",
- "short_names": ["high_brightness"],
+ "image": "1f6b1.png",
+ "sheet_x": 36,
+ "sheet_y": 38,
+ "short_name": "non-potable_water",
+ "short_names": ["non-potable_water"],
"text": null,
"texts": null,
"category": "Symbols",
- "sort_order": 93,
- "added_in": "6.0",
+ "subcategory": "warning",
+ "sort_order": 1404,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "SPEAKER WITH CANCELLATION STROKE",
- "unified": "1F507",
+ "name": "BICYCLE",
+ "unified": "1F6B2",
"non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f507.png",
- "sheet_x": 27,
- "sheet_y": 31,
- "short_name": "mute",
- "short_names": ["mute"],
+ "docomo": "E71D",
+ "au": "E4AE",
+ "softbank": "E136",
+ "google": "FE7EB",
+ "image": "1f6b2.png",
+ "sheet_x": 36,
+ "sheet_y": 39,
+ "short_name": "bike",
+ "short_names": ["bike"],
"text": null,
"texts": null,
- "category": "Objects",
- "sort_order": 1,
- "added_in": "6.0",
+ "category": "Travel & Places",
+ "subcategory": "transport-ground",
+ "sort_order": 921,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "SPEAKER",
- "unified": "1F508",
+ "name": "NO BICYCLES",
+ "unified": "1F6B3",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f508.png",
- "sheet_x": 27,
- "sheet_y": 32,
- "short_name": "speaker",
- "short_names": ["speaker"],
+ "image": "1f6b3.png",
+ "sheet_x": 36,
+ "sheet_y": 40,
+ "short_name": "no_bicycles",
+ "short_names": ["no_bicycles"],
"text": null,
"texts": null,
- "category": "Objects",
- "sort_order": 2,
- "added_in": "6.0",
+ "category": "Symbols",
+ "subcategory": "warning",
+ "sort_order": 1401,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "SPEAKER WITH ONE SOUND WAVE",
- "unified": "1F509",
- "non_qualified": null,
+ "name": "WOMAN BIKING",
+ "unified": "1F6B4-200D-2640-FE0F",
+ "non_qualified": "1F6B4-200D-2640",
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f509.png",
- "sheet_x": 27,
- "sheet_y": 33,
- "short_name": "sound",
- "short_names": ["sound"],
+ "image": "1f6b4-200d-2640-fe0f.png",
+ "sheet_x": 36,
+ "sheet_y": 41,
+ "short_name": "woman-biking",
+ "short_names": ["woman-biking"],
"text": null,
"texts": null,
- "category": "Objects",
- "sort_order": 3,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "person-sport",
+ "sort_order": 463,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": true
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F6B4-1F3FB-200D-2640-FE0F",
+ "non_qualified": "1F6B4-1F3FB-200D-2640",
+ "image": "1f6b4-1f3fb-200d-2640-fe0f.png",
+ "sheet_x": 36,
+ "sheet_y": 42,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1F6B4-1F3FC-200D-2640-FE0F",
+ "non_qualified": "1F6B4-1F3FC-200D-2640",
+ "image": "1f6b4-1f3fc-200d-2640-fe0f.png",
+ "sheet_x": 36,
+ "sheet_y": 43,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1F6B4-1F3FD-200D-2640-FE0F",
+ "non_qualified": "1F6B4-1F3FD-200D-2640",
+ "image": "1f6b4-1f3fd-200d-2640-fe0f.png",
+ "sheet_x": 36,
+ "sheet_y": 44,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1F6B4-1F3FE-200D-2640-FE0F",
+ "non_qualified": "1F6B4-1F3FE-200D-2640",
+ "image": "1f6b4-1f3fe-200d-2640-fe0f.png",
+ "sheet_x": 36,
+ "sheet_y": 45,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1F6B4-1F3FF-200D-2640-FE0F",
+ "non_qualified": "1F6B4-1F3FF-200D-2640",
+ "image": "1f6b4-1f3ff-200d-2640-fe0f.png",
+ "sheet_x": 36,
+ "sheet_y": 46,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ }
},
{
- "name": "SPEAKER WITH THREE SOUND WAVES",
- "unified": "1F50A",
- "non_qualified": null,
+ "name": "MAN BIKING",
+ "unified": "1F6B4-200D-2642-FE0F",
+ "non_qualified": "1F6B4-200D-2642",
"docomo": null,
- "au": "E511",
- "softbank": "E141",
- "google": "FE821",
- "image": "1f50a.png",
- "sheet_x": 27,
- "sheet_y": 34,
- "short_name": "loud_sound",
- "short_names": ["loud_sound"],
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f6b4-200d-2642-fe0f.png",
+ "sheet_x": 36,
+ "sheet_y": 47,
+ "short_name": "man-biking",
+ "short_names": ["man-biking"],
"text": null,
"texts": null,
- "category": "Objects",
- "sort_order": 4,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "person-sport",
+ "sort_order": 462,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": true
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F6B4-1F3FB-200D-2642-FE0F",
+ "non_qualified": "1F6B4-1F3FB-200D-2642",
+ "image": "1f6b4-1f3fb-200d-2642-fe0f.png",
+ "sheet_x": 36,
+ "sheet_y": 48,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1F6B4-1F3FC-200D-2642-FE0F",
+ "non_qualified": "1F6B4-1F3FC-200D-2642",
+ "image": "1f6b4-1f3fc-200d-2642-fe0f.png",
+ "sheet_x": 36,
+ "sheet_y": 49,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1F6B4-1F3FD-200D-2642-FE0F",
+ "non_qualified": "1F6B4-1F3FD-200D-2642",
+ "image": "1f6b4-1f3fd-200d-2642-fe0f.png",
+ "sheet_x": 36,
+ "sheet_y": 50,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1F6B4-1F3FE-200D-2642-FE0F",
+ "non_qualified": "1F6B4-1F3FE-200D-2642",
+ "image": "1f6b4-1f3fe-200d-2642-fe0f.png",
+ "sheet_x": 36,
+ "sheet_y": 51,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1F6B4-1F3FF-200D-2642-FE0F",
+ "non_qualified": "1F6B4-1F3FF-200D-2642",
+ "image": "1f6b4-1f3ff-200d-2642-fe0f.png",
+ "sheet_x": 36,
+ "sheet_y": 52,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ },
+ "obsoletes": "1F6B4"
},
{
- "name": "BATTERY",
- "unified": "1F50B",
+ "name": "BICYCLIST",
+ "unified": "1F6B4",
"non_qualified": null,
"docomo": null,
- "au": "E584",
+ "au": null,
"softbank": null,
- "google": "FE4FC",
- "image": "1f50b.png",
- "sheet_x": 27,
- "sheet_y": 35,
- "short_name": "battery",
- "short_names": ["battery"],
+ "google": null,
+ "image": "1f6b4.png",
+ "sheet_x": 36,
+ "sheet_y": 53,
+ "short_name": "bicyclist",
+ "short_names": ["bicyclist"],
"text": null,
"texts": null,
- "category": "Objects",
- "sort_order": 31,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "person-sport",
+ "sort_order": 461,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": true
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F6B4-1F3FB",
+ "non_qualified": null,
+ "image": "1f6b4-1f3fb.png",
+ "sheet_x": 36,
+ "sheet_y": 54,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1F6B4-1F3FC",
+ "non_qualified": null,
+ "image": "1f6b4-1f3fc.png",
+ "sheet_x": 36,
+ "sheet_y": 55,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1F6B4-1F3FD",
+ "non_qualified": null,
+ "image": "1f6b4-1f3fd.png",
+ "sheet_x": 36,
+ "sheet_y": 56,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1F6B4-1F3FE",
+ "non_qualified": null,
+ "image": "1f6b4-1f3fe.png",
+ "sheet_x": 36,
+ "sheet_y": 57,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1F6B4-1F3FF",
+ "non_qualified": null,
+ "image": "1f6b4-1f3ff.png",
+ "sheet_x": 36,
+ "sheet_y": 58,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ },
+ "obsoleted_by": "1F6B4-200D-2642-FE0F"
},
{
- "name": "ELECTRIC PLUG",
- "unified": "1F50C",
- "non_qualified": null,
+ "name": "WOMAN MOUNTAIN BIKING",
+ "unified": "1F6B5-200D-2640-FE0F",
+ "non_qualified": "1F6B5-200D-2640",
"docomo": null,
- "au": "E589",
+ "au": null,
"softbank": null,
- "google": "FE4FE",
- "image": "1f50c.png",
- "sheet_x": 27,
- "sheet_y": 36,
- "short_name": "electric_plug",
- "short_names": ["electric_plug"],
+ "google": null,
+ "image": "1f6b5-200d-2640-fe0f.png",
+ "sheet_x": 36,
+ "sheet_y": 59,
+ "short_name": "woman-mountain-biking",
+ "short_names": ["woman-mountain-biking"],
"text": null,
"texts": null,
- "category": "Objects",
- "sort_order": 32,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "person-sport",
+ "sort_order": 466,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": true
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F6B5-1F3FB-200D-2640-FE0F",
+ "non_qualified": "1F6B5-1F3FB-200D-2640",
+ "image": "1f6b5-1f3fb-200d-2640-fe0f.png",
+ "sheet_x": 36,
+ "sheet_y": 60,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1F6B5-1F3FC-200D-2640-FE0F",
+ "non_qualified": "1F6B5-1F3FC-200D-2640",
+ "image": "1f6b5-1f3fc-200d-2640-fe0f.png",
+ "sheet_x": 37,
+ "sheet_y": 0,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1F6B5-1F3FD-200D-2640-FE0F",
+ "non_qualified": "1F6B5-1F3FD-200D-2640",
+ "image": "1f6b5-1f3fd-200d-2640-fe0f.png",
+ "sheet_x": 37,
+ "sheet_y": 1,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1F6B5-1F3FE-200D-2640-FE0F",
+ "non_qualified": "1F6B5-1F3FE-200D-2640",
+ "image": "1f6b5-1f3fe-200d-2640-fe0f.png",
+ "sheet_x": 37,
+ "sheet_y": 2,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1F6B5-1F3FF-200D-2640-FE0F",
+ "non_qualified": "1F6B5-1F3FF-200D-2640",
+ "image": "1f6b5-1f3ff-200d-2640-fe0f.png",
+ "sheet_x": 37,
+ "sheet_y": 3,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ }
},
{
- "name": "LEFT-POINTING MAGNIFYING GLASS",
- "unified": "1F50D",
- "non_qualified": null,
- "docomo": "E6DC",
- "au": "E518",
- "softbank": "E114",
- "google": "FEB85",
- "image": "1f50d.png",
- "sheet_x": 27,
- "sheet_y": 37,
- "short_name": "mag",
- "short_names": ["mag"],
+ "name": "MAN MOUNTAIN BIKING",
+ "unified": "1F6B5-200D-2642-FE0F",
+ "non_qualified": "1F6B5-200D-2642",
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f6b5-200d-2642-fe0f.png",
+ "sheet_x": 37,
+ "sheet_y": 4,
+ "short_name": "man-mountain-biking",
+ "short_names": ["man-mountain-biking"],
"text": null,
"texts": null,
- "category": "Objects",
- "sort_order": 53,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "person-sport",
+ "sort_order": 465,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": true
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F6B5-1F3FB-200D-2642-FE0F",
+ "non_qualified": "1F6B5-1F3FB-200D-2642",
+ "image": "1f6b5-1f3fb-200d-2642-fe0f.png",
+ "sheet_x": 37,
+ "sheet_y": 5,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1F6B5-1F3FC-200D-2642-FE0F",
+ "non_qualified": "1F6B5-1F3FC-200D-2642",
+ "image": "1f6b5-1f3fc-200d-2642-fe0f.png",
+ "sheet_x": 37,
+ "sheet_y": 6,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1F6B5-1F3FD-200D-2642-FE0F",
+ "non_qualified": "1F6B5-1F3FD-200D-2642",
+ "image": "1f6b5-1f3fd-200d-2642-fe0f.png",
+ "sheet_x": 37,
+ "sheet_y": 7,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1F6B5-1F3FE-200D-2642-FE0F",
+ "non_qualified": "1F6B5-1F3FE-200D-2642",
+ "image": "1f6b5-1f3fe-200d-2642-fe0f.png",
+ "sheet_x": 37,
+ "sheet_y": 8,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1F6B5-1F3FF-200D-2642-FE0F",
+ "non_qualified": "1F6B5-1F3FF-200D-2642",
+ "image": "1f6b5-1f3ff-200d-2642-fe0f.png",
+ "sheet_x": 37,
+ "sheet_y": 9,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ },
+ "obsoletes": "1F6B5"
},
{
- "name": "RIGHT-POINTING MAGNIFYING GLASS",
- "unified": "1F50E",
+ "name": "MOUNTAIN BICYCLIST",
+ "unified": "1F6B5",
"non_qualified": null,
- "docomo": "E6DC",
- "au": "EB05",
+ "docomo": null,
+ "au": null,
"softbank": null,
- "google": "FEB8D",
- "image": "1f50e.png",
- "sheet_x": 27,
- "sheet_y": 38,
- "short_name": "mag_right",
- "short_names": ["mag_right"],
+ "google": null,
+ "image": "1f6b5.png",
+ "sheet_x": 37,
+ "sheet_y": 10,
+ "short_name": "mountain_bicyclist",
+ "short_names": ["mountain_bicyclist"],
"text": null,
"texts": null,
- "category": "Objects",
- "sort_order": 54,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "person-sport",
+ "sort_order": 464,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": true
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F6B5-1F3FB",
+ "non_qualified": null,
+ "image": "1f6b5-1f3fb.png",
+ "sheet_x": 37,
+ "sheet_y": 11,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1F6B5-1F3FC",
+ "non_qualified": null,
+ "image": "1f6b5-1f3fc.png",
+ "sheet_x": 37,
+ "sheet_y": 12,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1F6B5-1F3FD",
+ "non_qualified": null,
+ "image": "1f6b5-1f3fd.png",
+ "sheet_x": 37,
+ "sheet_y": 13,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1F6B5-1F3FE",
+ "non_qualified": null,
+ "image": "1f6b5-1f3fe.png",
+ "sheet_x": 37,
+ "sheet_y": 14,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1F6B5-1F3FF",
+ "non_qualified": null,
+ "image": "1f6b5-1f3ff.png",
+ "sheet_x": 37,
+ "sheet_y": 15,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ },
+ "obsoleted_by": "1F6B5-200D-2642-FE0F"
},
{
- "name": "LOCK WITH INK PEN",
- "unified": "1F50F",
- "non_qualified": null,
- "docomo": "E6D9",
- "au": "EB0C",
+ "name": "WOMAN WALKING",
+ "unified": "1F6B6-200D-2640-FE0F",
+ "non_qualified": "1F6B6-200D-2640",
+ "docomo": null,
+ "au": null,
"softbank": null,
- "google": "FEB90",
- "image": "1f50f.png",
- "sheet_x": 27,
- "sheet_y": 39,
- "short_name": "lock_with_ink_pen",
- "short_names": ["lock_with_ink_pen"],
+ "google": null,
+ "image": "1f6b6-200d-2640-fe0f.png",
+ "sheet_x": 37,
+ "sheet_y": 16,
+ "short_name": "woman-walking",
+ "short_names": ["woman-walking"],
"text": null,
"texts": null,
- "category": "Objects",
- "sort_order": 132,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "person-activity",
+ "sort_order": 408,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": true
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F6B6-1F3FB-200D-2640-FE0F",
+ "non_qualified": "1F6B6-1F3FB-200D-2640",
+ "image": "1f6b6-1f3fb-200d-2640-fe0f.png",
+ "sheet_x": 37,
+ "sheet_y": 17,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1F6B6-1F3FC-200D-2640-FE0F",
+ "non_qualified": "1F6B6-1F3FC-200D-2640",
+ "image": "1f6b6-1f3fc-200d-2640-fe0f.png",
+ "sheet_x": 37,
+ "sheet_y": 18,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1F6B6-1F3FD-200D-2640-FE0F",
+ "non_qualified": "1F6B6-1F3FD-200D-2640",
+ "image": "1f6b6-1f3fd-200d-2640-fe0f.png",
+ "sheet_x": 37,
+ "sheet_y": 19,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1F6B6-1F3FE-200D-2640-FE0F",
+ "non_qualified": "1F6B6-1F3FE-200D-2640",
+ "image": "1f6b6-1f3fe-200d-2640-fe0f.png",
+ "sheet_x": 37,
+ "sheet_y": 20,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1F6B6-1F3FF-200D-2640-FE0F",
+ "non_qualified": "1F6B6-1F3FF-200D-2640",
+ "image": "1f6b6-1f3ff-200d-2640-fe0f.png",
+ "sheet_x": 37,
+ "sheet_y": 21,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ }
},
{
- "name": "CLOSED LOCK WITH KEY",
- "unified": "1F510",
- "non_qualified": null,
- "docomo": "E6D9",
- "au": "EAFC",
+ "name": "MAN WALKING",
+ "unified": "1F6B6-200D-2642-FE0F",
+ "non_qualified": "1F6B6-200D-2642",
+ "docomo": null,
+ "au": null,
"softbank": null,
- "google": "FEB8A",
- "image": "1f510.png",
- "sheet_x": 27,
- "sheet_y": 40,
- "short_name": "closed_lock_with_key",
- "short_names": ["closed_lock_with_key"],
+ "google": null,
+ "image": "1f6b6-200d-2642-fe0f.png",
+ "sheet_x": 37,
+ "sheet_y": 22,
+ "short_name": "man-walking",
+ "short_names": ["man-walking"],
"text": null,
"texts": null,
- "category": "Objects",
- "sort_order": 133,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "person-activity",
+ "sort_order": 407,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": true
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F6B6-1F3FB-200D-2642-FE0F",
+ "non_qualified": "1F6B6-1F3FB-200D-2642",
+ "image": "1f6b6-1f3fb-200d-2642-fe0f.png",
+ "sheet_x": 37,
+ "sheet_y": 23,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1F6B6-1F3FC-200D-2642-FE0F",
+ "non_qualified": "1F6B6-1F3FC-200D-2642",
+ "image": "1f6b6-1f3fc-200d-2642-fe0f.png",
+ "sheet_x": 37,
+ "sheet_y": 24,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1F6B6-1F3FD-200D-2642-FE0F",
+ "non_qualified": "1F6B6-1F3FD-200D-2642",
+ "image": "1f6b6-1f3fd-200d-2642-fe0f.png",
+ "sheet_x": 37,
+ "sheet_y": 25,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1F6B6-1F3FE-200D-2642-FE0F",
+ "non_qualified": "1F6B6-1F3FE-200D-2642",
+ "image": "1f6b6-1f3fe-200d-2642-fe0f.png",
+ "sheet_x": 37,
+ "sheet_y": 26,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1F6B6-1F3FF-200D-2642-FE0F",
+ "non_qualified": "1F6B6-1F3FF-200D-2642",
+ "image": "1f6b6-1f3ff-200d-2642-fe0f.png",
+ "sheet_x": 37,
+ "sheet_y": 27,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ },
+ "obsoletes": "1F6B6"
},
{
- "name": "KEY",
- "unified": "1F511",
+ "name": "PEDESTRIAN",
+ "unified": "1F6B6",
"non_qualified": null,
- "docomo": "E6D9",
- "au": "E519",
- "softbank": "E03F",
- "google": "FEB82",
- "image": "1f511.png",
- "sheet_x": 27,
- "sheet_y": 41,
- "short_name": "key",
- "short_names": ["key"],
+ "docomo": "E733",
+ "au": "EB72",
+ "softbank": "E201",
+ "google": "FE7F0",
+ "image": "1f6b6.png",
+ "sheet_x": 37,
+ "sheet_y": 28,
+ "short_name": "walking",
+ "short_names": ["walking"],
"text": null,
"texts": null,
- "category": "Objects",
- "sort_order": 134,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "person-activity",
+ "sort_order": 406,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": true
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F6B6-1F3FB",
+ "non_qualified": null,
+ "image": "1f6b6-1f3fb.png",
+ "sheet_x": 37,
+ "sheet_y": 29,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1F6B6-1F3FC",
+ "non_qualified": null,
+ "image": "1f6b6-1f3fc.png",
+ "sheet_x": 37,
+ "sheet_y": 30,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1F6B6-1F3FD",
+ "non_qualified": null,
+ "image": "1f6b6-1f3fd.png",
+ "sheet_x": 37,
+ "sheet_y": 31,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1F6B6-1F3FE",
+ "non_qualified": null,
+ "image": "1f6b6-1f3fe.png",
+ "sheet_x": 37,
+ "sheet_y": 32,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1F6B6-1F3FF",
+ "non_qualified": null,
+ "image": "1f6b6-1f3ff.png",
+ "sheet_x": 37,
+ "sheet_y": 33,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ },
+ "obsoleted_by": "1F6B6-200D-2642-FE0F"
},
{
- "name": "LOCK",
- "unified": "1F512",
+ "name": "NO PEDESTRIANS",
+ "unified": "1F6B7",
"non_qualified": null,
- "docomo": "E6D9",
- "au": "E51C",
- "softbank": "E144",
- "google": "FEB86",
- "image": "1f512.png",
- "sheet_x": 27,
- "sheet_y": 42,
- "short_name": "lock",
- "short_names": ["lock"],
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f6b7.png",
+ "sheet_x": 37,
+ "sheet_y": 34,
+ "short_name": "no_pedestrians",
+ "short_names": ["no_pedestrians"],
"text": null,
"texts": null,
- "category": "Objects",
- "sort_order": 130,
- "added_in": "6.0",
+ "category": "Symbols",
+ "subcategory": "warning",
+ "sort_order": 1405,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "OPEN LOCK",
- "unified": "1F513",
+ "name": "CHILDREN CROSSING",
+ "unified": "1F6B8",
"non_qualified": null,
- "docomo": "E6D9",
- "au": "E51C",
- "softbank": "E145",
- "google": "FEB87",
- "image": "1f513.png",
- "sheet_x": 27,
- "sheet_y": 43,
- "short_name": "unlock",
- "short_names": ["unlock"],
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f6b8.png",
+ "sheet_x": 37,
+ "sheet_y": 35,
+ "short_name": "children_crossing",
+ "short_names": ["children_crossing"],
"text": null,
"texts": null,
- "category": "Objects",
- "sort_order": 131,
- "added_in": "6.0",
+ "category": "Symbols",
+ "subcategory": "warning",
+ "sort_order": 1398,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "BELL",
- "unified": "1F514",
+ "name": "MENS SYMBOL",
+ "unified": "1F6B9",
"non_qualified": null,
- "docomo": "E713",
- "au": "E512",
- "softbank": "E325",
- "google": "FE4F2",
- "image": "1f514.png",
- "sheet_x": 27,
- "sheet_y": 44,
- "short_name": "bell",
- "short_names": ["bell"],
+ "docomo": null,
+ "au": null,
+ "softbank": "E138",
+ "google": "FEB33",
+ "image": "1f6b9.png",
+ "sheet_x": 37,
+ "sheet_y": 36,
+ "short_name": "mens",
+ "short_names": ["mens"],
"text": null,
"texts": null,
- "category": "Objects",
- "sort_order": 8,
- "added_in": "6.0",
+ "category": "Symbols",
+ "subcategory": "transport-sign",
+ "sort_order": 1388,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "BELL WITH CANCELLATION STROKE",
- "unified": "1F515",
+ "name": "WOMENS SYMBOL",
+ "unified": "1F6BA",
"non_qualified": null,
"docomo": null,
"au": null,
- "softbank": null,
- "google": null,
- "image": "1f515.png",
- "sheet_x": 27,
- "sheet_y": 45,
- "short_name": "no_bell",
- "short_names": ["no_bell"],
+ "softbank": "E139",
+ "google": "FEB34",
+ "image": "1f6ba.png",
+ "sheet_x": 37,
+ "sheet_y": 37,
+ "short_name": "womens",
+ "short_names": ["womens"],
"text": null,
"texts": null,
- "category": "Objects",
- "sort_order": 9,
- "added_in": "6.0",
+ "category": "Symbols",
+ "subcategory": "transport-sign",
+ "sort_order": 1389,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "BOOKMARK",
- "unified": "1F516",
+ "name": "RESTROOM",
+ "unified": "1F6BB",
"non_qualified": null,
- "docomo": null,
- "au": "EB07",
- "softbank": null,
- "google": "FEB8F",
- "image": "1f516.png",
- "sheet_x": 27,
- "sheet_y": 46,
- "short_name": "bookmark",
- "short_names": ["bookmark"],
+ "docomo": "E66E",
+ "au": "E4A5",
+ "softbank": "E151",
+ "google": "FE506",
+ "image": "1f6bb.png",
+ "sheet_x": 37,
+ "sheet_y": 38,
+ "short_name": "restroom",
+ "short_names": ["restroom"],
"text": null,
"texts": null,
- "category": "Objects",
- "sort_order": 74,
- "added_in": "6.0",
+ "category": "Symbols",
+ "subcategory": "transport-sign",
+ "sort_order": 1390,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "LINK SYMBOL",
- "unified": "1F517",
+ "name": "BABY SYMBOL",
+ "unified": "1F6BC",
"non_qualified": null,
"docomo": null,
- "au": "E58A",
- "softbank": null,
- "google": "FEB4B",
- "image": "1f517.png",
- "sheet_x": 27,
- "sheet_y": 47,
- "short_name": "link",
- "short_names": ["link"],
+ "au": "EB18",
+ "softbank": "E13A",
+ "google": "FEB35",
+ "image": "1f6bc.png",
+ "sheet_x": 37,
+ "sheet_y": 39,
+ "short_name": "baby_symbol",
+ "short_names": ["baby_symbol"],
"text": null,
"texts": null,
- "category": "Objects",
- "sort_order": 150,
- "added_in": "6.0",
+ "category": "Symbols",
+ "subcategory": "transport-sign",
+ "sort_order": 1391,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "RADIO BUTTON",
- "unified": "1F518",
+ "name": "TOILET",
+ "unified": "1F6BD",
"non_qualified": null,
- "docomo": null,
- "au": "EB04",
- "softbank": null,
- "google": "FEB8C",
- "image": "1f518.png",
- "sheet_x": 27,
- "sheet_y": 48,
- "short_name": "radio_button",
- "short_names": ["radio_button"],
+ "docomo": "E66E",
+ "au": "E4A5",
+ "softbank": "E140",
+ "google": "FE507",
+ "image": "1f6bd.png",
+ "sheet_x": 37,
+ "sheet_y": 40,
+ "short_name": "toilet",
+ "short_names": ["toilet"],
"text": null,
"texts": null,
- "category": "Symbols",
- "sort_order": 200,
- "added_in": "6.0",
+ "category": "Objects",
+ "subcategory": "household",
+ "sort_order": 1357,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "BACK WITH LEFTWARDS ARROW ABOVE",
- "unified": "1F519",
+ "name": "WATER CLOSET",
+ "unified": "1F6BE",
"non_qualified": null,
- "docomo": null,
- "au": "EB06",
- "softbank": null,
- "google": "FEB8E",
- "image": "1f519.png",
- "sheet_x": 27,
- "sheet_y": 49,
- "short_name": "back",
- "short_names": ["back"],
+ "docomo": "E66E",
+ "au": "E4A5",
+ "softbank": "E309",
+ "google": "FE508",
+ "image": "1f6be.png",
+ "sheet_x": 37,
+ "sheet_y": 41,
+ "short_name": "wc",
+ "short_names": ["wc"],
"text": null,
"texts": null,
"category": "Symbols",
- "sort_order": 43,
- "added_in": "6.0",
+ "subcategory": "transport-sign",
+ "sort_order": 1392,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "END WITH LEFTWARDS ARROW ABOVE",
- "unified": "1F51A",
+ "name": "SHOWER",
+ "unified": "1F6BF",
"non_qualified": null,
- "docomo": "E6B9",
+ "docomo": null,
"au": null,
"softbank": null,
- "google": "FE01A",
- "image": "1f51a.png",
- "sheet_x": 27,
- "sheet_y": 50,
- "short_name": "end",
- "short_names": ["end"],
+ "google": null,
+ "image": "1f6bf.png",
+ "sheet_x": 37,
+ "sheet_y": 42,
+ "short_name": "shower",
+ "short_names": ["shower"],
"text": null,
"texts": null,
- "category": "Symbols",
- "sort_order": 44,
- "added_in": "6.0",
+ "category": "Objects",
+ "subcategory": "household",
+ "sort_order": 1359,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "ON WITH EXCLAMATION MARK WITH LEFT RIGHT ARROW ABOVE",
- "unified": "1F51B",
+ "name": "BATH",
+ "unified": "1F6C0",
"non_qualified": null,
- "docomo": "E6B8",
- "au": null,
- "softbank": null,
- "google": "FE019",
- "image": "1f51b.png",
- "sheet_x": 27,
- "sheet_y": 51,
- "short_name": "on",
- "short_names": ["on"],
+ "docomo": "E6F7",
+ "au": "E5D8",
+ "softbank": "E13F",
+ "google": "FE505",
+ "image": "1f6c0.png",
+ "sheet_x": 37,
+ "sheet_y": 43,
+ "short_name": "bath",
+ "short_names": ["bath"],
"text": null,
"texts": null,
- "category": "Symbols",
- "sort_order": 45,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "person-resting",
+ "sort_order": 485,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": true
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F6C0-1F3FB",
+ "non_qualified": null,
+ "image": "1f6c0-1f3fb.png",
+ "sheet_x": 37,
+ "sheet_y": 44,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1F6C0-1F3FC",
+ "non_qualified": null,
+ "image": "1f6c0-1f3fc.png",
+ "sheet_x": 37,
+ "sheet_y": 45,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1F6C0-1F3FD",
+ "non_qualified": null,
+ "image": "1f6c0-1f3fd.png",
+ "sheet_x": 37,
+ "sheet_y": 46,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1F6C0-1F3FE",
+ "non_qualified": null,
+ "image": "1f6c0-1f3fe.png",
+ "sheet_x": 37,
+ "sheet_y": 47,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1F6C0-1F3FF",
+ "non_qualified": null,
+ "image": "1f6c0-1f3ff.png",
+ "sheet_x": 37,
+ "sheet_y": 48,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ }
},
{
- "name": "SOON WITH RIGHTWARDS ARROW ABOVE",
- "unified": "1F51C",
+ "name": "BATHTUB",
+ "unified": "1F6C1",
"non_qualified": null,
- "docomo": "E6B7",
+ "docomo": null,
"au": null,
"softbank": null,
- "google": "FE018",
- "image": "1f51c.png",
- "sheet_x": 27,
- "sheet_y": 52,
- "short_name": "soon",
- "short_names": ["soon"],
+ "google": null,
+ "image": "1f6c1.png",
+ "sheet_x": 37,
+ "sheet_y": 49,
+ "short_name": "bathtub",
+ "short_names": ["bathtub"],
"text": null,
"texts": null,
- "category": "Symbols",
- "sort_order": 46,
- "added_in": "6.0",
+ "category": "Objects",
+ "subcategory": "household",
+ "sort_order": 1360,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "TOP WITH UPWARDS ARROW ABOVE",
- "unified": "1F51D",
+ "name": "PASSPORT CONTROL",
+ "unified": "1F6C2",
"non_qualified": null,
"docomo": null,
"au": null,
- "softbank": "E24C",
- "google": "FEB42",
- "image": "1f51d.png",
- "sheet_x": 28,
- "sheet_y": 0,
- "short_name": "top",
- "short_names": ["top"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 47,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- {
- "name": "NO ONE UNDER EIGHTEEN SYMBOL",
- "unified": "1F51E",
- "non_qualified": null,
- "docomo": null,
- "au": "EA83",
- "softbank": "E207",
- "google": "FEB25",
- "image": "1f51e.png",
- "sheet_x": 28,
- "sheet_y": 1,
- "short_name": "underage",
- "short_names": ["underage"],
+ "softbank": null,
+ "google": null,
+ "image": "1f6c2.png",
+ "sheet_x": 37,
+ "sheet_y": 50,
+ "short_name": "passport_control",
+ "short_names": ["passport_control"],
"text": null,
"texts": null,
"category": "Symbols",
- "sort_order": 24,
- "added_in": "6.0",
+ "subcategory": "transport-sign",
+ "sort_order": 1393,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "KEYCAP TEN",
- "unified": "1F51F",
+ "name": "CUSTOMS",
+ "unified": "1F6C3",
"non_qualified": null,
"docomo": null,
- "au": "E52B",
+ "au": null,
"softbank": null,
- "google": "FE83B",
- "image": "1f51f.png",
- "sheet_x": 28,
- "sheet_y": 2,
- "short_name": "keycap_ten",
- "short_names": ["keycap_ten"],
+ "google": null,
+ "image": "1f6c3.png",
+ "sheet_x": 37,
+ "sheet_y": 51,
+ "short_name": "customs",
+ "short_names": ["customs"],
"text": null,
"texts": null,
"category": "Symbols",
- "sort_order": 144,
- "added_in": "6.0",
+ "subcategory": "transport-sign",
+ "sort_order": 1394,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "INPUT SYMBOL FOR LATIN CAPITAL LETTERS",
- "unified": "1F520",
+ "name": "BAGGAGE CLAIM",
+ "unified": "1F6C4",
"non_qualified": null,
"docomo": null,
- "au": "EAFD",
+ "au": null,
"softbank": null,
- "google": "FEB7C",
- "image": "1f520.png",
- "sheet_x": 28,
- "sheet_y": 3,
- "short_name": "capital_abcd",
- "short_names": ["capital_abcd"],
+ "google": null,
+ "image": "1f6c4.png",
+ "sheet_x": 37,
+ "sheet_y": 52,
+ "short_name": "baggage_claim",
+ "short_names": ["baggage_claim"],
"text": null,
"texts": null,
"category": "Symbols",
- "sort_order": 146,
- "added_in": "6.0",
+ "subcategory": "transport-sign",
+ "sort_order": 1395,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "INPUT SYMBOL FOR LATIN SMALL LETTERS",
- "unified": "1F521",
+ "name": "LEFT LUGGAGE",
+ "unified": "1F6C5",
"non_qualified": null,
"docomo": null,
- "au": "EAFE",
+ "au": null,
"softbank": null,
- "google": "FEB7D",
- "image": "1f521.png",
- "sheet_x": 28,
- "sheet_y": 4,
- "short_name": "abcd",
- "short_names": ["abcd"],
+ "google": null,
+ "image": "1f6c5.png",
+ "sheet_x": 37,
+ "sheet_y": 53,
+ "short_name": "left_luggage",
+ "short_names": ["left_luggage"],
"text": null,
"texts": null,
"category": "Symbols",
- "sort_order": 147,
- "added_in": "6.0",
+ "subcategory": "transport-sign",
+ "sort_order": 1396,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "INPUT SYMBOL FOR NUMBERS",
- "unified": "1F522",
- "non_qualified": null,
+ "name": "COUCH AND LAMP",
+ "unified": "1F6CB-FE0F",
+ "non_qualified": "1F6CB",
"docomo": null,
- "au": "EAFF",
+ "au": null,
"softbank": null,
- "google": "FEB7E",
- "image": "1f522.png",
- "sheet_x": 28,
- "sheet_y": 5,
- "short_name": "1234",
- "short_names": ["1234"],
+ "google": null,
+ "image": "1f6cb-fe0f.png",
+ "sheet_x": 37,
+ "sheet_y": 54,
+ "short_name": "couch_and_lamp",
+ "short_names": ["couch_and_lamp"],
"text": null,
"texts": null,
- "category": "Symbols",
- "sort_order": 148,
- "added_in": "6.0",
+ "category": "Objects",
+ "subcategory": "household",
+ "sort_order": 1355,
+ "added_in": "0.7",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "INPUT SYMBOL FOR SYMBOLS",
- "unified": "1F523",
+ "name": "SLEEPING ACCOMMODATION",
+ "unified": "1F6CC",
"non_qualified": null,
"docomo": null,
- "au": "EB00",
+ "au": null,
"softbank": null,
- "google": "FEB7F",
- "image": "1f523.png",
- "sheet_x": 28,
- "sheet_y": 6,
- "short_name": "symbols",
- "short_names": ["symbols"],
+ "google": null,
+ "image": "1f6cc.png",
+ "sheet_x": 37,
+ "sheet_y": 55,
+ "short_name": "sleeping_accommodation",
+ "short_names": ["sleeping_accommodation"],
"text": null,
"texts": null,
- "category": "Symbols",
- "sort_order": 149,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "person-resting",
+ "sort_order": 486,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": true
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F6CC-1F3FB",
+ "non_qualified": null,
+ "image": "1f6cc-1f3fb.png",
+ "sheet_x": 37,
+ "sheet_y": 56,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1F6CC-1F3FC",
+ "non_qualified": null,
+ "image": "1f6cc-1f3fc.png",
+ "sheet_x": 37,
+ "sheet_y": 57,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1F6CC-1F3FD",
+ "non_qualified": null,
+ "image": "1f6cc-1f3fd.png",
+ "sheet_x": 37,
+ "sheet_y": 58,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1F6CC-1F3FE",
+ "non_qualified": null,
+ "image": "1f6cc-1f3fe.png",
+ "sheet_x": 37,
+ "sheet_y": 59,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1F6CC-1F3FF",
+ "non_qualified": null,
+ "image": "1f6cc-1f3ff.png",
+ "sheet_x": 37,
+ "sheet_y": 60,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ }
},
{
- "name": "INPUT SYMBOL FOR LATIN LETTERS",
- "unified": "1F524",
- "non_qualified": null,
+ "name": "SHOPPING BAGS",
+ "unified": "1F6CD-FE0F",
+ "non_qualified": "1F6CD",
"docomo": null,
- "au": "EB55",
+ "au": null,
"softbank": null,
- "google": "FEB80",
- "image": "1f524.png",
- "sheet_x": 28,
- "sheet_y": 7,
- "short_name": "abc",
- "short_names": ["abc"],
+ "google": null,
+ "image": "1f6cd-fe0f.png",
+ "sheet_x": 38,
+ "sheet_y": 0,
+ "short_name": "shopping_bags",
+ "short_names": ["shopping_bags"],
"text": null,
"texts": null,
- "category": "Symbols",
- "sort_order": 150,
- "added_in": "6.0",
+ "category": "Objects",
+ "subcategory": "clothing",
+ "sort_order": 1147,
+ "added_in": "0.7",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "FIRE",
- "unified": "1F525",
- "non_qualified": null,
+ "name": "BELLHOP BELL",
+ "unified": "1F6CE-FE0F",
+ "non_qualified": "1F6CE",
"docomo": null,
- "au": "E47B",
- "softbank": "E11D",
- "google": "FE4F6",
- "image": "1f525.png",
- "sheet_x": 28,
- "sheet_y": 8,
- "short_name": "fire",
- "short_names": ["fire"],
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f6ce-fe0f.png",
+ "sheet_x": 38,
+ "sheet_y": 1,
+ "short_name": "bellhop_bell",
+ "short_names": ["bellhop_bell"],
"text": null,
"texts": null,
"category": "Travel & Places",
- "sort_order": 200,
- "added_in": "6.0",
+ "subcategory": "hotel",
+ "sort_order": 958,
+ "added_in": "0.7",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "ELECTRIC TORCH",
- "unified": "1F526",
- "non_qualified": null,
- "docomo": "E6FB",
- "au": "E583",
+ "name": "BED",
+ "unified": "1F6CF-FE0F",
+ "non_qualified": "1F6CF",
+ "docomo": null,
+ "au": null,
"softbank": null,
- "google": "FE4FB",
- "image": "1f526.png",
- "sheet_x": 28,
- "sheet_y": 9,
- "short_name": "flashlight",
- "short_names": ["flashlight"],
+ "google": null,
+ "image": "1f6cf-fe0f.png",
+ "sheet_x": 38,
+ "sheet_y": 2,
+ "short_name": "bed",
+ "short_names": ["bed"],
"text": null,
"texts": null,
"category": "Objects",
- "sort_order": 57,
- "added_in": "6.0",
+ "subcategory": "household",
+ "sort_order": 1354,
+ "added_in": "0.7",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "WRENCH",
- "unified": "1F527",
+ "name": "PLACE OF WORSHIP",
+ "unified": "1F6D0",
"non_qualified": null,
- "docomo": "E718",
- "au": "E587",
+ "docomo": null,
+ "au": null,
"softbank": null,
- "google": "FE4C9",
- "image": "1f527.png",
- "sheet_x": 28,
- "sheet_y": 10,
- "short_name": "wrench",
- "short_names": ["wrench"],
+ "google": null,
+ "image": "1f6d0.png",
+ "sheet_x": 38,
+ "sheet_y": 3,
+ "short_name": "place_of_worship",
+ "short_names": ["place_of_worship"],
"text": null,
"texts": null,
- "category": "Objects",
- "sort_order": 145,
- "added_in": "6.0",
+ "category": "Symbols",
+ "subcategory": "religion",
+ "sort_order": 1431,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "HAMMER",
- "unified": "1F528",
+ "name": "OCTAGONAL SIGN",
+ "unified": "1F6D1",
"non_qualified": null,
"docomo": null,
- "au": "E5CB",
- "softbank": "E116",
- "google": "FE4CA",
- "image": "1f528.png",
- "sheet_x": 28,
- "sheet_y": 11,
- "short_name": "hammer",
- "short_names": ["hammer"],
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f6d1.png",
+ "sheet_x": 38,
+ "sheet_y": 4,
+ "short_name": "octagonal_sign",
+ "short_names": ["octagonal_sign"],
"text": null,
"texts": null,
- "category": "Objects",
- "sort_order": 136,
- "added_in": "6.0",
+ "category": "Travel & Places",
+ "subcategory": "transport-ground",
+ "sort_order": 934,
+ "added_in": "3.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "NUT AND BOLT",
- "unified": "1F529",
+ "name": "SHOPPING TROLLEY",
+ "unified": "1F6D2",
"non_qualified": null,
"docomo": null,
- "au": "E581",
+ "au": null,
"softbank": null,
- "google": "FE4CB",
- "image": "1f529.png",
- "sheet_x": 28,
- "sheet_y": 12,
- "short_name": "nut_and_bolt",
- "short_names": ["nut_and_bolt"],
+ "google": null,
+ "image": "1f6d2.png",
+ "sheet_x": 38,
+ "sheet_y": 5,
+ "short_name": "shopping_trolley",
+ "short_names": ["shopping_trolley"],
"text": null,
"texts": null,
"category": "Objects",
- "sort_order": 146,
- "added_in": "6.0",
+ "subcategory": "household",
+ "sort_order": 1374,
+ "added_in": "3.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "HOCHO",
- "unified": "1F52A",
+ "name": "HINDU TEMPLE",
+ "unified": "1F6D5",
"non_qualified": null,
"docomo": null,
- "au": "E57F",
+ "au": null,
"softbank": null,
- "google": "FE4FA",
- "image": "1f52a.png",
- "sheet_x": 28,
- "sheet_y": 13,
- "short_name": "hocho",
- "short_names": ["hocho", "knife"],
+ "google": null,
+ "image": "1f6d5.png",
+ "sheet_x": 38,
+ "sheet_y": 6,
+ "short_name": "hindu_temple",
+ "short_names": ["hindu_temple"],
"text": null,
"texts": null,
- "category": "Food & Drink",
- "sort_order": 107,
- "added_in": "6.0",
+ "category": "Travel & Places",
+ "subcategory": "place-religious",
+ "sort_order": 865,
+ "added_in": "12.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "PISTOL",
- "unified": "1F52B",
+ "name": "HUT",
+ "unified": "1F6D6",
"non_qualified": null,
"docomo": null,
- "au": "E50A",
- "softbank": "E113",
- "google": "FE4F5",
- "image": "1f52b.png",
- "sheet_x": 28,
- "sheet_y": 14,
- "short_name": "gun",
- "short_names": ["gun"],
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f6d6.png",
+ "sheet_x": 38,
+ "sheet_y": 7,
+ "short_name": "hut",
+ "short_names": ["hut"],
"text": null,
"texts": null,
- "category": "Objects",
- "sort_order": 142,
- "added_in": "6.0",
+ "category": "Travel & Places",
+ "subcategory": "place-building",
+ "sort_order": 842,
+ "added_in": "13.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "MICROSCOPE",
- "unified": "1F52C",
+ "name": "ELEVATOR",
+ "unified": "1F6D7",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f52c.png",
- "sheet_x": 28,
- "sheet_y": 15,
- "short_name": "microscope",
- "short_names": ["microscope"],
+ "image": "1f6d7.png",
+ "sheet_x": 38,
+ "sheet_y": 8,
+ "short_name": "elevator",
+ "short_names": ["elevator"],
"text": null,
"texts": null,
"category": "Objects",
- "sort_order": 158,
- "added_in": "6.0",
+ "subcategory": "household",
+ "sort_order": 1351,
+ "added_in": "13.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "TELESCOPE",
- "unified": "1F52D",
+ "name": "WIRELESS",
+ "unified": "1F6DC",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f52d.png",
- "sheet_x": 28,
- "sheet_y": 16,
- "short_name": "telescope",
- "short_names": ["telescope"],
+ "image": "1f6dc.png",
+ "sheet_x": 38,
+ "sheet_y": 9,
+ "short_name": "wireless",
+ "short_names": ["wireless"],
"text": null,
"texts": null,
- "category": "Objects",
- "sort_order": 159,
- "added_in": "6.0",
+ "category": "Symbols",
+ "subcategory": "av-symbol",
+ "sort_order": 1479,
+ "added_in": "15.0",
"has_img_apple": true,
"has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_twitter": false,
+ "has_img_facebook": false
},
{
- "name": "CRYSTAL BALL",
- "unified": "1F52E",
+ "name": "PLAYGROUND SLIDE",
+ "unified": "1F6DD",
"non_qualified": null,
"docomo": null,
- "au": "EA8F",
+ "au": null,
"softbank": null,
- "google": "FE4F7",
- "image": "1f52e.png",
- "sheet_x": 28,
- "sheet_y": 17,
- "short_name": "crystal_ball",
- "short_names": ["crystal_ball"],
+ "google": null,
+ "image": "1f6dd.png",
+ "sheet_x": 38,
+ "sheet_y": 10,
+ "short_name": "playground_slide",
+ "short_names": ["playground_slide"],
"text": null,
"texts": null,
- "category": "Activities",
- "sort_order": 56,
- "added_in": "6.0",
+ "category": "Travel & Places",
+ "subcategory": "place-other",
+ "sort_order": 881,
+ "added_in": "14.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "SIX POINTED STAR WITH MIDDLE DOT",
- "unified": "1F52F",
+ "name": "WHEEL",
+ "unified": "1F6DE",
"non_qualified": null,
"docomo": null,
- "au": "EA8F",
- "softbank": "E23E",
- "google": "FE4F8",
- "image": "1f52f.png",
- "sheet_x": 28,
- "sheet_y": 18,
- "short_name": "six_pointed_star",
- "short_names": ["six_pointed_star"],
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f6de.png",
+ "sheet_x": 38,
+ "sheet_y": 11,
+ "short_name": "wheel",
+ "short_names": ["wheel"],
"text": null,
"texts": null,
- "category": "Symbols",
- "sort_order": 59,
- "added_in": "6.0",
+ "category": "Travel & Places",
+ "subcategory": "transport-ground",
+ "sort_order": 930,
+ "added_in": "14.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "JAPANESE SYMBOL FOR BEGINNER",
- "unified": "1F530",
+ "name": "RING BUOY",
+ "unified": "1F6DF",
"non_qualified": null,
"docomo": null,
- "au": "E480",
- "softbank": "E209",
- "google": "FE044",
- "image": "1f530.png",
- "sheet_x": 28,
- "sheet_y": 19,
- "short_name": "beginner",
- "short_names": ["beginner"],
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f6df.png",
+ "sheet_x": 38,
+ "sheet_y": 12,
+ "short_name": "ring_buoy",
+ "short_names": ["ring_buoy"],
"text": null,
"texts": null,
- "category": "Symbols",
- "sort_order": 105,
- "added_in": "6.0",
+ "category": "Travel & Places",
+ "subcategory": "transport-water",
+ "sort_order": 937,
+ "added_in": "14.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "TRIDENT EMBLEM",
- "unified": "1F531",
- "non_qualified": null,
- "docomo": "E71A",
- "au": "E5C9",
- "softbank": "E031",
- "google": "FE4D2",
- "image": "1f531.png",
- "sheet_x": 28,
- "sheet_y": 20,
- "short_name": "trident",
- "short_names": ["trident"],
+ "name": "HAMMER AND WRENCH",
+ "unified": "1F6E0-FE0F",
+ "non_qualified": "1F6E0",
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f6e0-fe0f.png",
+ "sheet_x": 38,
+ "sheet_y": 13,
+ "short_name": "hammer_and_wrench",
+ "short_names": ["hammer_and_wrench"],
"text": null,
"texts": null,
- "category": "Symbols",
- "sort_order": 103,
- "added_in": "6.0",
+ "category": "Objects",
+ "subcategory": "tool",
+ "sort_order": 1315,
+ "added_in": "0.7",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "BLACK SQUARE BUTTON",
- "unified": "1F532",
- "non_qualified": null,
- "docomo": "E69C",
- "au": "E54B",
- "softbank": "E21A",
- "google": "FEB64",
- "image": "1f532.png",
- "sheet_x": 28,
- "sheet_y": 21,
- "short_name": "black_square_button",
- "short_names": ["black_square_button"],
+ "name": "SHIELD",
+ "unified": "1F6E1-FE0F",
+ "non_qualified": "1F6E1",
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f6e1-fe0f.png",
+ "sheet_x": 38,
+ "sheet_y": 14,
+ "short_name": "shield",
+ "short_names": ["shield"],
"text": null,
"texts": null,
- "category": "Symbols",
- "sort_order": 201,
- "added_in": "6.0",
+ "category": "Objects",
+ "subcategory": "tool",
+ "sort_order": 1321,
+ "added_in": "0.7",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "WHITE SQUARE BUTTON",
- "unified": "1F533",
- "non_qualified": null,
- "docomo": "E69C",
- "au": "E54B",
- "softbank": "E21B",
- "google": "FEB67",
- "image": "1f533.png",
- "sheet_x": 28,
- "sheet_y": 22,
- "short_name": "white_square_button",
- "short_names": ["white_square_button"],
+ "name": "OIL DRUM",
+ "unified": "1F6E2-FE0F",
+ "non_qualified": "1F6E2",
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f6e2-fe0f.png",
+ "sheet_x": 38,
+ "sheet_y": 15,
+ "short_name": "oil_drum",
+ "short_names": ["oil_drum"],
"text": null,
"texts": null,
- "category": "Symbols",
- "sort_order": 202,
- "added_in": "6.0",
+ "category": "Travel & Places",
+ "subcategory": "transport-ground",
+ "sort_order": 928,
+ "added_in": "0.7",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "LARGE RED CIRCLE",
- "unified": "1F534",
- "non_qualified": null,
- "docomo": "E69C",
- "au": "E54A",
- "softbank": "E219",
- "google": "FEB63",
- "image": "1f534.png",
- "sheet_x": 28,
- "sheet_y": 23,
- "short_name": "red_circle",
- "short_names": ["red_circle"],
+ "name": "MOTORWAY",
+ "unified": "1F6E3-FE0F",
+ "non_qualified": "1F6E3",
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f6e3-fe0f.png",
+ "sheet_x": 38,
+ "sheet_y": 16,
+ "short_name": "motorway",
+ "short_names": ["motorway"],
"text": null,
"texts": null,
- "category": "Symbols",
- "sort_order": 205,
- "added_in": "6.0",
+ "category": "Travel & Places",
+ "subcategory": "transport-ground",
+ "sort_order": 926,
+ "added_in": "0.7",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "LARGE BLUE CIRCLE",
- "unified": "1F535",
- "non_qualified": null,
- "docomo": "E69C",
- "au": "E54B",
+ "name": "RAILWAY TRACK",
+ "unified": "1F6E4-FE0F",
+ "non_qualified": "1F6E4",
+ "docomo": null,
+ "au": null,
"softbank": null,
- "google": "FEB64",
- "image": "1f535.png",
- "sheet_x": 28,
- "sheet_y": 24,
- "short_name": "large_blue_circle",
- "short_names": ["large_blue_circle"],
+ "google": null,
+ "image": "1f6e4-fe0f.png",
+ "sheet_x": 38,
+ "sheet_y": 17,
+ "short_name": "railway_track",
+ "short_names": ["railway_track"],
"text": null,
"texts": null,
- "category": "Symbols",
- "sort_order": 206,
- "added_in": "6.0",
+ "category": "Travel & Places",
+ "subcategory": "transport-ground",
+ "sort_order": 927,
+ "added_in": "0.7",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "LARGE ORANGE DIAMOND",
- "unified": "1F536",
- "non_qualified": null,
+ "name": "MOTOR BOAT",
+ "unified": "1F6E5-FE0F",
+ "non_qualified": "1F6E5",
"docomo": null,
- "au": "E546",
+ "au": null,
"softbank": null,
- "google": "FEB73",
- "image": "1f536.png",
- "sheet_x": 28,
- "sheet_y": 25,
- "short_name": "large_orange_diamond",
- "short_names": ["large_orange_diamond"],
+ "google": null,
+ "image": "1f6e5-fe0f.png",
+ "sheet_x": 38,
+ "sheet_y": 18,
+ "short_name": "motor_boat",
+ "short_names": ["motor_boat"],
"text": null,
"texts": null,
- "category": "Symbols",
- "sort_order": 193,
- "added_in": "6.0",
+ "category": "Travel & Places",
+ "subcategory": "transport-water",
+ "sort_order": 943,
+ "added_in": "0.7",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "LARGE BLUE DIAMOND",
- "unified": "1F537",
- "non_qualified": null,
+ "name": "SMALL AIRPLANE",
+ "unified": "1F6E9-FE0F",
+ "non_qualified": "1F6E9",
"docomo": null,
- "au": "E547",
+ "au": null,
"softbank": null,
- "google": "FEB74",
- "image": "1f537.png",
- "sheet_x": 28,
- "sheet_y": 26,
- "short_name": "large_blue_diamond",
- "short_names": ["large_blue_diamond"],
+ "google": null,
+ "image": "1f6e9-fe0f.png",
+ "sheet_x": 38,
+ "sheet_y": 19,
+ "short_name": "small_airplane",
+ "short_names": ["small_airplane"],
"text": null,
"texts": null,
- "category": "Symbols",
- "sort_order": 194,
- "added_in": "6.0",
+ "category": "Travel & Places",
+ "subcategory": "transport-air",
+ "sort_order": 946,
+ "added_in": "0.7",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "SMALL ORANGE DIAMOND",
- "unified": "1F538",
+ "name": "AIRPLANE DEPARTURE",
+ "unified": "1F6EB",
"non_qualified": null,
"docomo": null,
- "au": "E536",
+ "au": null,
"softbank": null,
- "google": "FEB75",
- "image": "1f538.png",
- "sheet_x": 28,
- "sheet_y": 27,
- "short_name": "small_orange_diamond",
- "short_names": ["small_orange_diamond"],
+ "google": null,
+ "image": "1f6eb.png",
+ "sheet_x": 38,
+ "sheet_y": 20,
+ "short_name": "airplane_departure",
+ "short_names": ["airplane_departure"],
"text": null,
"texts": null,
- "category": "Symbols",
- "sort_order": 195,
- "added_in": "6.0",
+ "category": "Travel & Places",
+ "subcategory": "transport-air",
+ "sort_order": 947,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "SMALL BLUE DIAMOND",
- "unified": "1F539",
+ "name": "AIRPLANE ARRIVING",
+ "unified": "1F6EC",
"non_qualified": null,
"docomo": null,
- "au": "E537",
+ "au": null,
"softbank": null,
- "google": "FEB76",
- "image": "1f539.png",
- "sheet_x": 28,
- "sheet_y": 28,
- "short_name": "small_blue_diamond",
- "short_names": ["small_blue_diamond"],
+ "google": null,
+ "image": "1f6ec.png",
+ "sheet_x": 38,
+ "sheet_y": 21,
+ "short_name": "airplane_arriving",
+ "short_names": ["airplane_arriving"],
"text": null,
"texts": null,
- "category": "Symbols",
- "sort_order": 196,
- "added_in": "6.0",
+ "category": "Travel & Places",
+ "subcategory": "transport-air",
+ "sort_order": 948,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "UP-POINTING RED TRIANGLE",
- "unified": "1F53A",
- "non_qualified": null,
+ "name": "SATELLITE",
+ "unified": "1F6F0-FE0F",
+ "non_qualified": "1F6F0",
"docomo": null,
- "au": "E55A",
+ "au": null,
"softbank": null,
- "google": "FEB78",
- "image": "1f53a.png",
- "sheet_x": 28,
- "sheet_y": 29,
- "short_name": "small_red_triangle",
- "short_names": ["small_red_triangle"],
+ "google": null,
+ "image": "1f6f0-fe0f.png",
+ "sheet_x": 38,
+ "sheet_y": 22,
+ "short_name": "satellite",
+ "short_names": ["satellite"],
"text": null,
"texts": null,
- "category": "Symbols",
- "sort_order": 197,
- "added_in": "6.0",
+ "category": "Travel & Places",
+ "subcategory": "transport-air",
+ "sort_order": 955,
+ "added_in": "0.7",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "DOWN-POINTING RED TRIANGLE",
- "unified": "1F53B",
- "non_qualified": null,
+ "name": "PASSENGER SHIP",
+ "unified": "1F6F3-FE0F",
+ "non_qualified": "1F6F3",
"docomo": null,
- "au": "E55B",
+ "au": null,
"softbank": null,
- "google": "FEB79",
- "image": "1f53b.png",
- "sheet_x": 28,
- "sheet_y": 30,
- "short_name": "small_red_triangle_down",
- "short_names": ["small_red_triangle_down"],
+ "google": null,
+ "image": "1f6f3-fe0f.png",
+ "sheet_x": 38,
+ "sheet_y": 23,
+ "short_name": "passenger_ship",
+ "short_names": ["passenger_ship"],
"text": null,
"texts": null,
- "category": "Symbols",
- "sort_order": 198,
- "added_in": "6.0",
+ "category": "Travel & Places",
+ "subcategory": "transport-water",
+ "sort_order": 941,
+ "added_in": "0.7",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "UP-POINTING SMALL RED TRIANGLE",
- "unified": "1F53C",
+ "name": "SCOOTER",
+ "unified": "1F6F4",
"non_qualified": null,
"docomo": null,
- "au": "E543",
+ "au": null,
"softbank": null,
- "google": "FEB01",
- "image": "1f53c.png",
- "sheet_x": 28,
- "sheet_y": 31,
- "short_name": "arrow_up_small",
- "short_names": ["arrow_up_small"],
+ "google": null,
+ "image": "1f6f4.png",
+ "sheet_x": 38,
+ "sheet_y": 24,
+ "short_name": "scooter",
+ "short_names": ["scooter"],
"text": null,
"texts": null,
- "category": "Symbols",
- "sort_order": 83,
- "added_in": "6.0",
+ "category": "Travel & Places",
+ "subcategory": "transport-ground",
+ "sort_order": 922,
+ "added_in": "3.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "DOWN-POINTING SMALL RED TRIANGLE",
- "unified": "1F53D",
+ "name": "MOTOR SCOOTER",
+ "unified": "1F6F5",
"non_qualified": null,
"docomo": null,
- "au": "E542",
+ "au": null,
"softbank": null,
- "google": "FEB00",
- "image": "1f53d.png",
- "sheet_x": 28,
- "sheet_y": 32,
- "short_name": "arrow_down_small",
- "short_names": ["arrow_down_small"],
+ "google": null,
+ "image": "1f6f5.png",
+ "sheet_x": 38,
+ "sheet_y": 25,
+ "short_name": "motor_scooter",
+ "short_names": ["motor_scooter"],
"text": null,
"texts": null,
- "category": "Symbols",
- "sort_order": 85,
- "added_in": "6.0",
+ "category": "Travel & Places",
+ "subcategory": "transport-ground",
+ "sort_order": 917,
+ "added_in": "3.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": null,
- "unified": "1F549-FE0F",
- "non_qualified": "1F549",
+ "name": "CANOE",
+ "unified": "1F6F6",
+ "non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f549-fe0f.png",
- "sheet_x": 28,
- "sheet_y": 33,
- "short_name": "om_symbol",
- "short_names": ["om_symbol"],
+ "image": "1f6f6.png",
+ "sheet_x": 38,
+ "sheet_y": 26,
+ "short_name": "canoe",
+ "short_names": ["canoe"],
"text": null,
"texts": null,
- "category": "Symbols",
- "sort_order": 50,
- "added_in": "7.0",
+ "category": "Travel & Places",
+ "subcategory": "transport-water",
+ "sort_order": 939,
+ "added_in": "3.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
- "name": null,
- "unified": "1F54A-FE0F",
- "non_qualified": "1F54A",
+ "name": "SLED",
+ "unified": "1F6F7",
+ "non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f54a-fe0f.png",
- "sheet_x": 28,
- "sheet_y": 34,
- "short_name": "dove_of_peace",
- "short_names": ["dove_of_peace"],
+ "image": "1f6f7.png",
+ "sheet_x": 38,
+ "sheet_y": 27,
+ "short_name": "sled",
+ "short_names": ["sled"],
"text": null,
"texts": null,
- "category": "Animals & Nature",
- "sort_order": 62,
- "added_in": "7.0",
+ "category": "Activities",
+ "subcategory": "sport",
+ "sort_order": 1090,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
- "name": "KAABA",
- "unified": "1F54B",
+ "name": "FLYING SAUCER",
+ "unified": "1F6F8",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f54b.png",
- "sheet_x": 28,
- "sheet_y": 35,
- "short_name": "kaaba",
- "short_names": ["kaaba"],
+ "image": "1f6f8.png",
+ "sheet_x": 38,
+ "sheet_y": 28,
+ "short_name": "flying_saucer",
+ "short_names": ["flying_saucer"],
"text": null,
"texts": null,
"category": "Travel & Places",
- "sort_order": 45,
- "added_in": "8.0",
+ "subcategory": "transport-air",
+ "sort_order": 957,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
- "name": "MOSQUE",
- "unified": "1F54C",
+ "name": "SKATEBOARD",
+ "unified": "1F6F9",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f54c.png",
- "sheet_x": 28,
- "sheet_y": 36,
- "short_name": "mosque",
- "short_names": ["mosque"],
+ "image": "1f6f9.png",
+ "sheet_x": 38,
+ "sheet_y": 29,
+ "short_name": "skateboard",
+ "short_names": ["skateboard"],
"text": null,
"texts": null,
"category": "Travel & Places",
- "sort_order": 42,
- "added_in": "8.0",
+ "subcategory": "transport-ground",
+ "sort_order": 923,
+ "added_in": "11.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
- "name": "SYNAGOGUE",
- "unified": "1F54D",
+ "name": "AUTO RICKSHAW",
+ "unified": "1F6FA",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f54d.png",
- "sheet_x": 28,
- "sheet_y": 37,
- "short_name": "synagogue",
- "short_names": ["synagogue"],
+ "image": "1f6fa.png",
+ "sheet_x": 38,
+ "sheet_y": 30,
+ "short_name": "auto_rickshaw",
+ "short_names": ["auto_rickshaw"],
"text": null,
"texts": null,
"category": "Travel & Places",
- "sort_order": 43,
- "added_in": "8.0",
+ "subcategory": "transport-ground",
+ "sort_order": 920,
+ "added_in": "12.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
- "name": "MENORAH WITH NINE BRANCHES",
- "unified": "1F54E",
+ "name": "PICKUP TRUCK",
+ "unified": "1F6FB",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f54e.png",
- "sheet_x": 28,
- "sheet_y": 38,
- "short_name": "menorah_with_nine_branches",
- "short_names": ["menorah_with_nine_branches"],
+ "image": "1f6fb.png",
+ "sheet_x": 38,
+ "sheet_y": 31,
+ "short_name": "pickup_truck",
+ "short_names": ["pickup_truck"],
"text": null,
"texts": null,
- "category": "Symbols",
- "sort_order": 58,
- "added_in": "8.0",
+ "category": "Travel & Places",
+ "subcategory": "transport-ground",
+ "sort_order": 911,
+ "added_in": "13.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
- "name": "CLOCK FACE ONE OCLOCK",
- "unified": "1F550",
+ "name": "ROLLER SKATE",
+ "unified": "1F6FC",
"non_qualified": null,
- "docomo": "E6BA",
- "au": "E594",
- "softbank": "E024",
- "google": "FE01E",
- "image": "1f550.png",
- "sheet_x": 28,
- "sheet_y": 39,
- "short_name": "clock1",
- "short_names": ["clock1"],
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f6fc.png",
+ "sheet_x": 38,
+ "sheet_y": 32,
+ "short_name": "roller_skate",
+ "short_names": ["roller_skate"],
"text": null,
"texts": null,
"category": "Travel & Places",
- "sort_order": 136,
- "added_in": "6.0",
+ "subcategory": "transport-ground",
+ "sort_order": 924,
+ "added_in": "13.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "CLOCK FACE TWO OCLOCK",
- "unified": "1F551",
+ "name": "LARGE ORANGE CIRCLE",
+ "unified": "1F7E0",
"non_qualified": null,
- "docomo": "E6BA",
- "au": "E594",
- "softbank": "E025",
- "google": "FE01F",
- "image": "1f551.png",
- "sheet_x": 28,
- "sheet_y": 40,
- "short_name": "clock2",
- "short_names": ["clock2"],
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f7e0.png",
+ "sheet_x": 38,
+ "sheet_y": 33,
+ "short_name": "large_orange_circle",
+ "short_names": ["large_orange_circle"],
"text": null,
"texts": null,
- "category": "Travel & Places",
- "sort_order": 138,
- "added_in": "6.0",
+ "category": "Symbols",
+ "subcategory": "geometric",
+ "sort_order": 1574,
+ "added_in": "12.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "CLOCK FACE THREE OCLOCK",
- "unified": "1F552",
+ "name": "LARGE YELLOW CIRCLE",
+ "unified": "1F7E1",
"non_qualified": null,
- "docomo": "E6BA",
- "au": "E594",
- "softbank": "E026",
- "google": "FE020",
- "image": "1f552.png",
- "sheet_x": 28,
- "sheet_y": 41,
- "short_name": "clock3",
- "short_names": ["clock3"],
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f7e1.png",
+ "sheet_x": 38,
+ "sheet_y": 34,
+ "short_name": "large_yellow_circle",
+ "short_names": ["large_yellow_circle"],
"text": null,
"texts": null,
- "category": "Travel & Places",
- "sort_order": 140,
- "added_in": "6.0",
+ "category": "Symbols",
+ "subcategory": "geometric",
+ "sort_order": 1575,
+ "added_in": "12.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "CLOCK FACE FOUR OCLOCK",
- "unified": "1F553",
+ "name": "LARGE GREEN CIRCLE",
+ "unified": "1F7E2",
"non_qualified": null,
- "docomo": "E6BA",
- "au": "E594",
- "softbank": "E027",
- "google": "FE021",
- "image": "1f553.png",
- "sheet_x": 28,
- "sheet_y": 42,
- "short_name": "clock4",
- "short_names": ["clock4"],
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f7e2.png",
+ "sheet_x": 38,
+ "sheet_y": 35,
+ "short_name": "large_green_circle",
+ "short_names": ["large_green_circle"],
"text": null,
"texts": null,
- "category": "Travel & Places",
- "sort_order": 142,
- "added_in": "6.0",
+ "category": "Symbols",
+ "subcategory": "geometric",
+ "sort_order": 1576,
+ "added_in": "12.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "CLOCK FACE FIVE OCLOCK",
- "unified": "1F554",
+ "name": "LARGE PURPLE CIRCLE",
+ "unified": "1F7E3",
"non_qualified": null,
- "docomo": "E6BA",
- "au": "E594",
- "softbank": "E028",
- "google": "FE022",
- "image": "1f554.png",
- "sheet_x": 28,
- "sheet_y": 43,
- "short_name": "clock5",
- "short_names": ["clock5"],
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f7e3.png",
+ "sheet_x": 38,
+ "sheet_y": 36,
+ "short_name": "large_purple_circle",
+ "short_names": ["large_purple_circle"],
"text": null,
"texts": null,
- "category": "Travel & Places",
- "sort_order": 144,
- "added_in": "6.0",
+ "category": "Symbols",
+ "subcategory": "geometric",
+ "sort_order": 1578,
+ "added_in": "12.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "CLOCK FACE SIX OCLOCK",
- "unified": "1F555",
+ "name": "LARGE BROWN CIRCLE",
+ "unified": "1F7E4",
"non_qualified": null,
- "docomo": "E6BA",
- "au": "E594",
- "softbank": "E029",
- "google": "FE023",
- "image": "1f555.png",
- "sheet_x": 28,
- "sheet_y": 44,
- "short_name": "clock6",
- "short_names": ["clock6"],
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f7e4.png",
+ "sheet_x": 38,
+ "sheet_y": 37,
+ "short_name": "large_brown_circle",
+ "short_names": ["large_brown_circle"],
"text": null,
"texts": null,
- "category": "Travel & Places",
- "sort_order": 146,
- "added_in": "6.0",
+ "category": "Symbols",
+ "subcategory": "geometric",
+ "sort_order": 1579,
+ "added_in": "12.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "CLOCK FACE SEVEN OCLOCK",
- "unified": "1F556",
+ "name": "LARGE RED SQUARE",
+ "unified": "1F7E5",
"non_qualified": null,
- "docomo": "E6BA",
- "au": "E594",
- "softbank": "E02A",
- "google": "FE024",
- "image": "1f556.png",
- "sheet_x": 28,
- "sheet_y": 45,
- "short_name": "clock7",
- "short_names": ["clock7"],
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f7e5.png",
+ "sheet_x": 38,
+ "sheet_y": 38,
+ "short_name": "large_red_square",
+ "short_names": ["large_red_square"],
"text": null,
"texts": null,
- "category": "Travel & Places",
- "sort_order": 148,
- "added_in": "6.0",
+ "category": "Symbols",
+ "subcategory": "geometric",
+ "sort_order": 1582,
+ "added_in": "12.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "CLOCK FACE EIGHT OCLOCK",
- "unified": "1F557",
+ "name": "LARGE BLUE SQUARE",
+ "unified": "1F7E6",
"non_qualified": null,
- "docomo": "E6BA",
- "au": "E594",
- "softbank": "E02B",
- "google": "FE025",
- "image": "1f557.png",
- "sheet_x": 28,
- "sheet_y": 46,
- "short_name": "clock8",
- "short_names": ["clock8"],
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f7e6.png",
+ "sheet_x": 38,
+ "sheet_y": 39,
+ "short_name": "large_blue_square",
+ "short_names": ["large_blue_square"],
"text": null,
"texts": null,
- "category": "Travel & Places",
- "sort_order": 150,
- "added_in": "6.0",
+ "category": "Symbols",
+ "subcategory": "geometric",
+ "sort_order": 1586,
+ "added_in": "12.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "CLOCK FACE NINE OCLOCK",
- "unified": "1F558",
+ "name": "LARGE ORANGE SQUARE",
+ "unified": "1F7E7",
"non_qualified": null,
- "docomo": "E6BA",
- "au": "E594",
- "softbank": "E02C",
- "google": "FE026",
- "image": "1f558.png",
- "sheet_x": 28,
- "sheet_y": 47,
- "short_name": "clock9",
- "short_names": ["clock9"],
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f7e7.png",
+ "sheet_x": 38,
+ "sheet_y": 40,
+ "short_name": "large_orange_square",
+ "short_names": ["large_orange_square"],
"text": null,
"texts": null,
- "category": "Travel & Places",
- "sort_order": 152,
- "added_in": "6.0",
+ "category": "Symbols",
+ "subcategory": "geometric",
+ "sort_order": 1583,
+ "added_in": "12.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "CLOCK FACE TEN OCLOCK",
- "unified": "1F559",
+ "name": "LARGE YELLOW SQUARE",
+ "unified": "1F7E8",
"non_qualified": null,
- "docomo": "E6BA",
- "au": "E594",
- "softbank": "E02D",
- "google": "FE027",
- "image": "1f559.png",
- "sheet_x": 28,
- "sheet_y": 48,
- "short_name": "clock10",
- "short_names": ["clock10"],
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f7e8.png",
+ "sheet_x": 38,
+ "sheet_y": 41,
+ "short_name": "large_yellow_square",
+ "short_names": ["large_yellow_square"],
"text": null,
"texts": null,
- "category": "Travel & Places",
- "sort_order": 154,
- "added_in": "6.0",
+ "category": "Symbols",
+ "subcategory": "geometric",
+ "sort_order": 1584,
+ "added_in": "12.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "CLOCK FACE ELEVEN OCLOCK",
- "unified": "1F55A",
+ "name": "LARGE GREEN SQUARE",
+ "unified": "1F7E9",
"non_qualified": null,
- "docomo": "E6BA",
- "au": "E594",
- "softbank": "E02E",
- "google": "FE028",
- "image": "1f55a.png",
- "sheet_x": 28,
- "sheet_y": 49,
- "short_name": "clock11",
- "short_names": ["clock11"],
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f7e9.png",
+ "sheet_x": 38,
+ "sheet_y": 42,
+ "short_name": "large_green_square",
+ "short_names": ["large_green_square"],
"text": null,
"texts": null,
- "category": "Travel & Places",
- "sort_order": 156,
- "added_in": "6.0",
+ "category": "Symbols",
+ "subcategory": "geometric",
+ "sort_order": 1585,
+ "added_in": "12.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "CLOCK FACE TWELVE OCLOCK",
- "unified": "1F55B",
+ "name": "LARGE PURPLE SQUARE",
+ "unified": "1F7EA",
"non_qualified": null,
- "docomo": "E6BA",
- "au": "E594",
- "softbank": "E02F",
- "google": "FE029",
- "image": "1f55b.png",
- "sheet_x": 28,
- "sheet_y": 50,
- "short_name": "clock12",
- "short_names": ["clock12"],
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f7ea.png",
+ "sheet_x": 38,
+ "sheet_y": 43,
+ "short_name": "large_purple_square",
+ "short_names": ["large_purple_square"],
"text": null,
"texts": null,
- "category": "Travel & Places",
- "sort_order": 134,
- "added_in": "6.0",
+ "category": "Symbols",
+ "subcategory": "geometric",
+ "sort_order": 1587,
+ "added_in": "12.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "CLOCK FACE ONE-THIRTY",
- "unified": "1F55C",
+ "name": "LARGE BROWN SQUARE",
+ "unified": "1F7EB",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f55c.png",
- "sheet_x": 28,
- "sheet_y": 51,
- "short_name": "clock130",
- "short_names": ["clock130"],
+ "image": "1f7eb.png",
+ "sheet_x": 38,
+ "sheet_y": 44,
+ "short_name": "large_brown_square",
+ "short_names": ["large_brown_square"],
"text": null,
"texts": null,
- "category": "Travel & Places",
- "sort_order": 137,
- "added_in": "6.0",
+ "category": "Symbols",
+ "subcategory": "geometric",
+ "sort_order": 1588,
+ "added_in": "12.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "CLOCK FACE TWO-THIRTY",
- "unified": "1F55D",
+ "name": "HEAVY EQUALS SIGN",
+ "unified": "1F7F0",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f55d.png",
- "sheet_x": 28,
- "sheet_y": 52,
- "short_name": "clock230",
- "short_names": ["clock230"],
+ "image": "1f7f0.png",
+ "sheet_x": 38,
+ "sheet_y": 45,
+ "short_name": "heavy_equals_sign",
+ "short_names": ["heavy_equals_sign"],
"text": null,
"texts": null,
- "category": "Travel & Places",
- "sort_order": 139,
- "added_in": "6.0",
+ "category": "Symbols",
+ "subcategory": "math",
+ "sort_order": 1489,
+ "added_in": "14.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "CLOCK FACE THREE-THIRTY",
- "unified": "1F55E",
+ "name": "PINCHED FINGERS",
+ "unified": "1F90C",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f55e.png",
- "sheet_x": 29,
- "sheet_y": 0,
- "short_name": "clock330",
- "short_names": ["clock330"],
+ "image": "1f90c.png",
+ "sheet_x": 38,
+ "sheet_y": 46,
+ "short_name": "pinched_fingers",
+ "short_names": ["pinched_fingers"],
"text": null,
"texts": null,
- "category": "Travel & Places",
- "sort_order": 141,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "hand-fingers-partial",
+ "sort_order": 179,
+ "added_in": "13.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": true
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F90C-1F3FB",
+ "non_qualified": null,
+ "image": "1f90c-1f3fb.png",
+ "sheet_x": 38,
+ "sheet_y": 47,
+ "added_in": "13.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1F90C-1F3FC",
+ "non_qualified": null,
+ "image": "1f90c-1f3fc.png",
+ "sheet_x": 38,
+ "sheet_y": 48,
+ "added_in": "13.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1F90C-1F3FD",
+ "non_qualified": null,
+ "image": "1f90c-1f3fd.png",
+ "sheet_x": 38,
+ "sheet_y": 49,
+ "added_in": "13.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1F90C-1F3FE",
+ "non_qualified": null,
+ "image": "1f90c-1f3fe.png",
+ "sheet_x": 38,
+ "sheet_y": 50,
+ "added_in": "13.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1F90C-1F3FF",
+ "non_qualified": null,
+ "image": "1f90c-1f3ff.png",
+ "sheet_x": 38,
+ "sheet_y": 51,
+ "added_in": "13.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ }
},
{
- "name": "CLOCK FACE FOUR-THIRTY",
- "unified": "1F55F",
+ "name": "WHITE HEART",
+ "unified": "1F90D",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f55f.png",
- "sheet_x": 29,
- "sheet_y": 1,
- "short_name": "clock430",
- "short_names": ["clock430"],
+ "image": "1f90d.png",
+ "sheet_x": 38,
+ "sheet_y": 52,
+ "short_name": "white_heart",
+ "short_names": ["white_heart"],
"text": null,
"texts": null,
- "category": "Travel & Places",
- "sort_order": 143,
- "added_in": "6.0",
+ "category": "Smileys & Emotion",
+ "subcategory": "heart",
+ "sort_order": 152,
+ "added_in": "12.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "CLOCK FACE FIVE-THIRTY",
- "unified": "1F560",
+ "name": "BROWN HEART",
+ "unified": "1F90E",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f560.png",
- "sheet_x": 29,
- "sheet_y": 2,
- "short_name": "clock530",
- "short_names": ["clock530"],
+ "image": "1f90e.png",
+ "sheet_x": 38,
+ "sheet_y": 53,
+ "short_name": "brown_heart",
+ "short_names": ["brown_heart"],
"text": null,
"texts": null,
- "category": "Travel & Places",
- "sort_order": 145,
- "added_in": "6.0",
+ "category": "Smileys & Emotion",
+ "subcategory": "heart",
+ "sort_order": 149,
+ "added_in": "12.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "CLOCK FACE SIX-THIRTY",
- "unified": "1F561",
+ "name": "PINCHING HAND",
+ "unified": "1F90F",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f561.png",
- "sheet_x": 29,
- "sheet_y": 3,
- "short_name": "clock630",
- "short_names": ["clock630"],
+ "image": "1f90f.png",
+ "sheet_x": 38,
+ "sheet_y": 54,
+ "short_name": "pinching_hand",
+ "short_names": ["pinching_hand"],
"text": null,
"texts": null,
- "category": "Travel & Places",
- "sort_order": 147,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "hand-fingers-partial",
+ "sort_order": 180,
+ "added_in": "12.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": true
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F90F-1F3FB",
+ "non_qualified": null,
+ "image": "1f90f-1f3fb.png",
+ "sheet_x": 38,
+ "sheet_y": 55,
+ "added_in": "12.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1F90F-1F3FC",
+ "non_qualified": null,
+ "image": "1f90f-1f3fc.png",
+ "sheet_x": 38,
+ "sheet_y": 56,
+ "added_in": "12.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1F90F-1F3FD",
+ "non_qualified": null,
+ "image": "1f90f-1f3fd.png",
+ "sheet_x": 38,
+ "sheet_y": 57,
+ "added_in": "12.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1F90F-1F3FE",
+ "non_qualified": null,
+ "image": "1f90f-1f3fe.png",
+ "sheet_x": 38,
+ "sheet_y": 58,
+ "added_in": "12.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1F90F-1F3FF",
+ "non_qualified": null,
+ "image": "1f90f-1f3ff.png",
+ "sheet_x": 38,
+ "sheet_y": 59,
+ "added_in": "12.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ }
},
{
- "name": "CLOCK FACE SEVEN-THIRTY",
- "unified": "1F562",
+ "name": "ZIPPER-MOUTH FACE",
+ "unified": "1F910",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f562.png",
- "sheet_x": 29,
- "sheet_y": 4,
- "short_name": "clock730",
- "short_names": ["clock730"],
+ "image": "1f910.png",
+ "sheet_x": 38,
+ "sheet_y": 60,
+ "short_name": "zipper_mouth_face",
+ "short_names": ["zipper_mouth_face"],
"text": null,
"texts": null,
- "category": "Travel & Places",
- "sort_order": 149,
- "added_in": "6.0",
+ "category": "Smileys & Emotion",
+ "subcategory": "face-neutral-skeptical",
+ "sort_order": 37,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "CLOCK FACE EIGHT-THIRTY",
- "unified": "1F563",
+ "name": "MONEY-MOUTH FACE",
+ "unified": "1F911",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f563.png",
- "sheet_x": 29,
- "sheet_y": 5,
- "short_name": "clock830",
- "short_names": ["clock830"],
+ "image": "1f911.png",
+ "sheet_x": 39,
+ "sheet_y": 0,
+ "short_name": "money_mouth_face",
+ "short_names": ["money_mouth_face"],
"text": null,
"texts": null,
- "category": "Travel & Places",
- "sort_order": 151,
- "added_in": "6.0",
+ "category": "Smileys & Emotion",
+ "subcategory": "face-tongue",
+ "sort_order": 29,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "CLOCK FACE NINE-THIRTY",
- "unified": "1F564",
+ "name": "FACE WITH THERMOMETER",
+ "unified": "1F912",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f564.png",
- "sheet_x": 29,
- "sheet_y": 6,
- "short_name": "clock930",
- "short_names": ["clock930"],
+ "image": "1f912.png",
+ "sheet_x": 39,
+ "sheet_y": 1,
+ "short_name": "face_with_thermometer",
+ "short_names": ["face_with_thermometer"],
"text": null,
"texts": null,
- "category": "Travel & Places",
- "sort_order": 153,
- "added_in": "6.0",
+ "category": "Smileys & Emotion",
+ "subcategory": "face-unwell",
+ "sort_order": 57,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "CLOCK FACE TEN-THIRTY",
- "unified": "1F565",
+ "name": "NERD FACE",
+ "unified": "1F913",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f565.png",
- "sheet_x": 29,
- "sheet_y": 7,
- "short_name": "clock1030",
- "short_names": ["clock1030"],
+ "image": "1f913.png",
+ "sheet_x": 39,
+ "sheet_y": 2,
+ "short_name": "nerd_face",
+ "short_names": ["nerd_face"],
"text": null,
"texts": null,
- "category": "Travel & Places",
- "sort_order": 155,
- "added_in": "6.0",
+ "category": "Smileys & Emotion",
+ "subcategory": "face-glasses",
+ "sort_order": 72,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "CLOCK FACE ELEVEN-THIRTY",
- "unified": "1F566",
+ "name": "THINKING FACE",
+ "unified": "1F914",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f566.png",
- "sheet_x": 29,
- "sheet_y": 8,
- "short_name": "clock1130",
- "short_names": ["clock1130"],
+ "image": "1f914.png",
+ "sheet_x": 39,
+ "sheet_y": 3,
+ "short_name": "thinking_face",
+ "short_names": ["thinking_face"],
"text": null,
"texts": null,
- "category": "Travel & Places",
- "sort_order": 157,
- "added_in": "6.0",
+ "category": "Smileys & Emotion",
+ "subcategory": "face-hand",
+ "sort_order": 35,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "CLOCK FACE TWELVE-THIRTY",
- "unified": "1F567",
+ "name": "FACE WITH HEAD-BANDAGE",
+ "unified": "1F915",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f567.png",
- "sheet_x": 29,
- "sheet_y": 9,
- "short_name": "clock1230",
- "short_names": ["clock1230"],
+ "image": "1f915.png",
+ "sheet_x": 39,
+ "sheet_y": 4,
+ "short_name": "face_with_head_bandage",
+ "short_names": ["face_with_head_bandage"],
"text": null,
"texts": null,
- "category": "Travel & Places",
- "sort_order": 135,
- "added_in": "6.0",
+ "category": "Smileys & Emotion",
+ "subcategory": "face-unwell",
+ "sort_order": 58,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": null,
- "unified": "1F56F-FE0F",
- "non_qualified": "1F56F",
+ "name": "ROBOT FACE",
+ "unified": "1F916",
+ "non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f56f-fe0f.png",
- "sheet_x": 29,
- "sheet_y": 10,
- "short_name": "candle",
- "short_names": ["candle"],
+ "image": "1f916.png",
+ "sheet_x": 39,
+ "sheet_y": 5,
+ "short_name": "robot_face",
+ "short_names": ["robot_face"],
"text": null,
"texts": null,
- "category": "Objects",
- "sort_order": 55,
- "added_in": "7.0",
+ "category": "Smileys & Emotion",
+ "subcategory": "face-costume",
+ "sort_order": 115,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
- "name": null,
- "unified": "1F570-FE0F",
- "non_qualified": "1F570",
+ "name": "HUGGING FACE",
+ "unified": "1F917",
+ "non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f570-fe0f.png",
- "sheet_x": 29,
- "sheet_y": 11,
- "short_name": "mantelpiece_clock",
- "short_names": ["mantelpiece_clock"],
+ "image": "1f917.png",
+ "sheet_x": 39,
+ "sheet_y": 6,
+ "short_name": "hugging_face",
+ "short_names": ["hugging_face"],
"text": null,
"texts": null,
- "category": "Travel & Places",
- "sort_order": 133,
- "added_in": "7.0",
+ "category": "Smileys & Emotion",
+ "subcategory": "face-hand",
+ "sort_order": 30,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
- "name": null,
- "unified": "1F573-FE0F",
- "non_qualified": "1F573",
+ "name": "SIGN OF THE HORNS",
+ "unified": "1F918",
+ "non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f573-fe0f.png",
- "sheet_x": 29,
- "sheet_y": 12,
- "short_name": "hole",
- "short_names": ["hole"],
+ "image": "1f918.png",
+ "sheet_x": 39,
+ "sheet_y": 7,
+ "short_name": "the_horns",
+ "short_names": ["the_horns", "sign_of_the_horns"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 432,
- "added_in": "7.0",
+ "category": "People & Body",
+ "subcategory": "hand-fingers-partial",
+ "sort_order": 185,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": false
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F918-1F3FB",
+ "non_qualified": null,
+ "image": "1f918-1f3fb.png",
+ "sheet_x": 39,
+ "sheet_y": 8,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1F918-1F3FC",
+ "non_qualified": null,
+ "image": "1f918-1f3fc.png",
+ "sheet_x": 39,
+ "sheet_y": 9,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1F918-1F3FD",
+ "non_qualified": null,
+ "image": "1f918-1f3fd.png",
+ "sheet_x": 39,
+ "sheet_y": 10,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1F918-1F3FE",
+ "non_qualified": null,
+ "image": "1f918-1f3fe.png",
+ "sheet_x": 39,
+ "sheet_y": 11,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1F918-1F3FF",
+ "non_qualified": null,
+ "image": "1f918-1f3ff.png",
+ "sheet_x": 39,
+ "sheet_y": 12,
+ "added_in": "1.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ }
},
{
- "name": null,
- "unified": "1F574-FE0F",
- "non_qualified": "1F574",
+ "name": "CALL ME HAND",
+ "unified": "1F919",
+ "non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f574-fe0f.png",
- "sheet_x": 29,
+ "image": "1f919.png",
+ "sheet_x": 39,
"sheet_y": 13,
- "short_name": "man_in_business_suit_levitating",
- "short_names": ["man_in_business_suit_levitating"],
+ "short_name": "call_me_hand",
+ "short_names": ["call_me_hand"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 270,
- "added_in": "7.0",
+ "category": "People & Body",
+ "subcategory": "hand-fingers-partial",
+ "sort_order": 186,
+ "added_in": "3.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": false,
"skin_variations": {
"1F3FB": {
- "unified": "1F574-1F3FB",
+ "unified": "1F919-1F3FB",
"non_qualified": null,
- "image": "1f574-1f3fb.png",
- "sheet_x": 29,
+ "image": "1f919-1f3fb.png",
+ "sheet_x": 39,
"sheet_y": 14,
- "added_in": "8.0",
+ "added_in": "3.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FC": {
- "unified": "1F574-1F3FC",
+ "unified": "1F919-1F3FC",
"non_qualified": null,
- "image": "1f574-1f3fc.png",
- "sheet_x": 29,
+ "image": "1f919-1f3fc.png",
+ "sheet_x": 39,
"sheet_y": 15,
- "added_in": "8.0",
+ "added_in": "3.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FD": {
- "unified": "1F574-1F3FD",
+ "unified": "1F919-1F3FD",
"non_qualified": null,
- "image": "1f574-1f3fd.png",
- "sheet_x": 29,
+ "image": "1f919-1f3fd.png",
+ "sheet_x": 39,
"sheet_y": 16,
- "added_in": "8.0",
+ "added_in": "3.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FE": {
- "unified": "1F574-1F3FE",
+ "unified": "1F919-1F3FE",
"non_qualified": null,
- "image": "1f574-1f3fe.png",
- "sheet_x": 29,
+ "image": "1f919-1f3fe.png",
+ "sheet_x": 39,
"sheet_y": 17,
- "added_in": "8.0",
+ "added_in": "3.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FF": {
- "unified": "1F574-1F3FF",
+ "unified": "1F919-1F3FF",
"non_qualified": null,
- "image": "1f574-1f3ff.png",
- "sheet_x": 29,
+ "image": "1f919-1f3ff.png",
+ "sheet_x": 39,
"sheet_y": 18,
- "added_in": "8.0",
+ "added_in": "3.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
}
}
},
{
- "name": null,
- "unified": "1F575-FE0F-200D-2640-FE0F",
+ "name": "RAISED BACK OF HAND",
+ "unified": "1F91A",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f575-fe0f-200d-2640-fe0f.png",
- "sheet_x": 29,
+ "image": "1f91a.png",
+ "sheet_x": 39,
"sheet_y": 19,
- "short_name": "female-detective",
- "short_names": ["female-detective"],
+ "short_name": "raised_back_of_hand",
+ "short_names": ["raised_back_of_hand"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 161,
- "added_in": "7.0",
+ "category": "People & Body",
+ "subcategory": "hand-fingers-open",
+ "sort_order": 168,
+ "added_in": "3.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false,
+ "has_img_facebook": true,
"skin_variations": {
"1F3FB": {
- "unified": "1F575-1F3FB-200D-2640-FE0F",
- "non_qualified": "1F575-1F3FB-200D-2640",
- "image": "1f575-1f3fb-200d-2640-fe0f.png",
- "sheet_x": 29,
+ "unified": "1F91A-1F3FB",
+ "non_qualified": null,
+ "image": "1f91a-1f3fb.png",
+ "sheet_x": 39,
"sheet_y": 20,
- "added_in": "8.0",
+ "added_in": "3.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FC": {
- "unified": "1F575-1F3FC-200D-2640-FE0F",
- "non_qualified": "1F575-1F3FC-200D-2640",
- "image": "1f575-1f3fc-200d-2640-fe0f.png",
- "sheet_x": 29,
+ "unified": "1F91A-1F3FC",
+ "non_qualified": null,
+ "image": "1f91a-1f3fc.png",
+ "sheet_x": 39,
"sheet_y": 21,
- "added_in": "8.0",
+ "added_in": "3.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FD": {
- "unified": "1F575-1F3FD-200D-2640-FE0F",
- "non_qualified": "1F575-1F3FD-200D-2640",
- "image": "1f575-1f3fd-200d-2640-fe0f.png",
- "sheet_x": 29,
+ "unified": "1F91A-1F3FD",
+ "non_qualified": null,
+ "image": "1f91a-1f3fd.png",
+ "sheet_x": 39,
"sheet_y": 22,
- "added_in": "8.0",
+ "added_in": "3.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FE": {
- "unified": "1F575-1F3FE-200D-2640-FE0F",
- "non_qualified": "1F575-1F3FE-200D-2640",
- "image": "1f575-1f3fe-200d-2640-fe0f.png",
- "sheet_x": 29,
+ "unified": "1F91A-1F3FE",
+ "non_qualified": null,
+ "image": "1f91a-1f3fe.png",
+ "sheet_x": 39,
"sheet_y": 23,
- "added_in": "8.0",
+ "added_in": "3.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FF": {
- "unified": "1F575-1F3FF-200D-2640-FE0F",
- "non_qualified": "1F575-1F3FF-200D-2640",
- "image": "1f575-1f3ff-200d-2640-fe0f.png",
- "sheet_x": 29,
+ "unified": "1F91A-1F3FF",
+ "non_qualified": null,
+ "image": "1f91a-1f3ff.png",
+ "sheet_x": 39,
"sheet_y": 24,
- "added_in": "8.0",
+ "added_in": "3.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
}
}
},
{
- "name": null,
- "unified": "1F575-FE0F-200D-2642-FE0F",
+ "name": "LEFT-FACING FIST",
+ "unified": "1F91B",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f575-fe0f-200d-2642-fe0f.png",
- "sheet_x": 29,
+ "image": "1f91b.png",
+ "sheet_x": 39,
"sheet_y": 25,
- "short_name": "male-detective",
- "short_names": ["male-detective"],
+ "short_name": "left-facing_fist",
+ "short_names": ["left-facing_fist"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 160,
- "added_in": "7.0",
+ "category": "People & Body",
+ "subcategory": "hand-fingers-closed",
+ "sort_order": 198,
+ "added_in": "3.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false,
+ "has_img_facebook": true,
"skin_variations": {
"1F3FB": {
- "unified": "1F575-1F3FB-200D-2642-FE0F",
- "non_qualified": "1F575-1F3FB-200D-2642",
- "image": "1f575-1f3fb-200d-2642-fe0f.png",
- "sheet_x": 29,
+ "unified": "1F91B-1F3FB",
+ "non_qualified": null,
+ "image": "1f91b-1f3fb.png",
+ "sheet_x": 39,
"sheet_y": 26,
- "added_in": "8.0",
+ "added_in": "3.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FC": {
- "unified": "1F575-1F3FC-200D-2642-FE0F",
- "non_qualified": "1F575-1F3FC-200D-2642",
- "image": "1f575-1f3fc-200d-2642-fe0f.png",
- "sheet_x": 29,
+ "unified": "1F91B-1F3FC",
+ "non_qualified": null,
+ "image": "1f91b-1f3fc.png",
+ "sheet_x": 39,
"sheet_y": 27,
- "added_in": "8.0",
+ "added_in": "3.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FD": {
- "unified": "1F575-1F3FD-200D-2642-FE0F",
- "non_qualified": "1F575-1F3FD-200D-2642",
- "image": "1f575-1f3fd-200d-2642-fe0f.png",
- "sheet_x": 29,
+ "unified": "1F91B-1F3FD",
+ "non_qualified": null,
+ "image": "1f91b-1f3fd.png",
+ "sheet_x": 39,
"sheet_y": 28,
- "added_in": "8.0",
+ "added_in": "3.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FE": {
- "unified": "1F575-1F3FE-200D-2642-FE0F",
- "non_qualified": "1F575-1F3FE-200D-2642",
- "image": "1f575-1f3fe-200d-2642-fe0f.png",
- "sheet_x": 29,
+ "unified": "1F91B-1F3FE",
+ "non_qualified": null,
+ "image": "1f91b-1f3fe.png",
+ "sheet_x": 39,
"sheet_y": 29,
- "added_in": "8.0",
+ "added_in": "3.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FF": {
- "unified": "1F575-1F3FF-200D-2642-FE0F",
- "non_qualified": "1F575-1F3FF-200D-2642",
- "image": "1f575-1f3ff-200d-2642-fe0f.png",
- "sheet_x": 29,
+ "unified": "1F91B-1F3FF",
+ "non_qualified": null,
+ "image": "1f91b-1f3ff.png",
+ "sheet_x": 39,
"sheet_y": 30,
- "added_in": "8.0",
+ "added_in": "3.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
}
- },
- "obsoletes": "1F575-FE0F"
+ }
},
{
- "name": null,
- "unified": "1F575-FE0F",
- "non_qualified": "1F575",
+ "name": "RIGHT-FACING FIST",
+ "unified": "1F91C",
+ "non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f575-fe0f.png",
- "sheet_x": 29,
+ "image": "1f91c.png",
+ "sheet_x": 39,
"sheet_y": 31,
- "short_name": "sleuth_or_spy",
- "short_names": ["sleuth_or_spy"],
+ "short_name": "right-facing_fist",
+ "short_names": ["right-facing_fist"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 159,
- "added_in": "7.0",
+ "category": "People & Body",
+ "subcategory": "hand-fingers-closed",
+ "sort_order": 199,
+ "added_in": "3.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false,
+ "has_img_facebook": true,
"skin_variations": {
"1F3FB": {
- "unified": "1F575-1F3FB",
+ "unified": "1F91C-1F3FB",
"non_qualified": null,
- "image": "1f575-1f3fb.png",
- "sheet_x": 29,
+ "image": "1f91c-1f3fb.png",
+ "sheet_x": 39,
"sheet_y": 32,
- "added_in": "8.0",
+ "added_in": "3.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FC": {
- "unified": "1F575-1F3FC",
+ "unified": "1F91C-1F3FC",
"non_qualified": null,
- "image": "1f575-1f3fc.png",
- "sheet_x": 29,
+ "image": "1f91c-1f3fc.png",
+ "sheet_x": 39,
"sheet_y": 33,
- "added_in": "8.0",
+ "added_in": "3.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FD": {
- "unified": "1F575-1F3FD",
+ "unified": "1F91C-1F3FD",
"non_qualified": null,
- "image": "1f575-1f3fd.png",
- "sheet_x": 29,
+ "image": "1f91c-1f3fd.png",
+ "sheet_x": 39,
"sheet_y": 34,
- "added_in": "8.0",
+ "added_in": "3.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FE": {
- "unified": "1F575-1F3FE",
+ "unified": "1F91C-1F3FE",
"non_qualified": null,
- "image": "1f575-1f3fe.png",
- "sheet_x": 29,
+ "image": "1f91c-1f3fe.png",
+ "sheet_x": 39,
"sheet_y": 35,
- "added_in": "8.0",
+ "added_in": "3.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FF": {
- "unified": "1F575-1F3FF",
+ "unified": "1F91C-1F3FF",
"non_qualified": null,
- "image": "1f575-1f3ff.png",
- "sheet_x": 29,
+ "image": "1f91c-1f3ff.png",
+ "sheet_x": 39,
"sheet_y": 36,
- "added_in": "8.0",
+ "added_in": "3.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
}
- },
- "obsoleted_by": "1F575-FE0F-200D-2642-FE0F"
- },
- {
- "name": null,
- "unified": "1F576-FE0F",
- "non_qualified": "1F576",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f576-fe0f.png",
- "sheet_x": 29,
- "sheet_y": 37,
- "short_name": "dark_sunglasses",
- "short_names": ["dark_sunglasses"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 434,
- "added_in": "7.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- {
- "name": null,
- "unified": "1F577-FE0F",
- "non_qualified": "1F577",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f577-fe0f.png",
- "sheet_x": 29,
- "sheet_y": 38,
- "short_name": "spider",
- "short_names": ["spider"],
- "text": null,
- "texts": null,
- "category": "Animals & Nature",
- "sort_order": 98,
- "added_in": "7.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- {
- "name": null,
- "unified": "1F578-FE0F",
- "non_qualified": "1F578",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f578-fe0f.png",
- "sheet_x": 29,
- "sheet_y": 39,
- "short_name": "spider_web",
- "short_names": ["spider_web"],
- "text": null,
- "texts": null,
- "category": "Animals & Nature",
- "sort_order": 99,
- "added_in": "7.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- {
- "name": null,
- "unified": "1F579-FE0F",
- "non_qualified": "1F579",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f579-fe0f.png",
- "sheet_x": 29,
- "sheet_y": 40,
- "short_name": "joystick",
- "short_names": ["joystick"],
- "text": null,
- "texts": null,
- "category": "Activities",
- "sort_order": 59,
- "added_in": "7.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ }
},
{
- "name": "MAN DANCING",
- "unified": "1F57A",
+ "name": "HANDSHAKE",
+ "unified": "1F91D",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f57a.png",
- "sheet_x": 29,
- "sheet_y": 41,
- "short_name": "man_dancing",
- "short_names": ["man_dancing"],
+ "image": "1f91d.png",
+ "sheet_x": 39,
+ "sheet_y": 37,
+ "short_name": "handshake",
+ "short_names": ["handshake"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 255,
- "added_in": "9.0",
+ "category": "People & Body",
+ "subcategory": "hands",
+ "sort_order": 205,
+ "added_in": "3.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": false,
"skin_variations": {
"1F3FB": {
- "unified": "1F57A-1F3FB",
+ "unified": "1F91D-1F3FB",
"non_qualified": null,
- "image": "1f57a-1f3fb.png",
- "sheet_x": 29,
- "sheet_y": 42,
- "added_in": "9.0",
+ "image": "1f91d-1f3fb.png",
+ "sheet_x": 39,
+ "sheet_y": 38,
+ "added_in": "14.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FC": {
- "unified": "1F57A-1F3FC",
+ "unified": "1F91D-1F3FC",
"non_qualified": null,
- "image": "1f57a-1f3fc.png",
- "sheet_x": 29,
- "sheet_y": 43,
- "added_in": "9.0",
+ "image": "1f91d-1f3fc.png",
+ "sheet_x": 39,
+ "sheet_y": 39,
+ "added_in": "14.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FD": {
- "unified": "1F57A-1F3FD",
+ "unified": "1F91D-1F3FD",
"non_qualified": null,
- "image": "1f57a-1f3fd.png",
- "sheet_x": 29,
- "sheet_y": 44,
- "added_in": "9.0",
+ "image": "1f91d-1f3fd.png",
+ "sheet_x": 39,
+ "sheet_y": 40,
+ "added_in": "14.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FE": {
- "unified": "1F57A-1F3FE",
+ "unified": "1F91D-1F3FE",
"non_qualified": null,
- "image": "1f57a-1f3fe.png",
- "sheet_x": 29,
- "sheet_y": 45,
- "added_in": "9.0",
+ "image": "1f91d-1f3fe.png",
+ "sheet_x": 39,
+ "sheet_y": 41,
+ "added_in": "14.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FF": {
- "unified": "1F57A-1F3FF",
+ "unified": "1F91D-1F3FF",
"non_qualified": null,
- "image": "1f57a-1f3ff.png",
- "sheet_x": 29,
+ "image": "1f91d-1f3ff.png",
+ "sheet_x": 39,
+ "sheet_y": 42,
+ "added_in": "14.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FB-1F3FC": {
+ "unified": "1FAF1-1F3FB-200D-1FAF2-1F3FC",
+ "non_qualified": null,
+ "image": "1faf1-1f3fb-200d-1faf2-1f3fc.png",
+ "sheet_x": 39,
+ "sheet_y": 43,
+ "added_in": "14.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FB-1F3FD": {
+ "unified": "1FAF1-1F3FB-200D-1FAF2-1F3FD",
+ "non_qualified": null,
+ "image": "1faf1-1f3fb-200d-1faf2-1f3fd.png",
+ "sheet_x": 39,
+ "sheet_y": 44,
+ "added_in": "14.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FB-1F3FE": {
+ "unified": "1FAF1-1F3FB-200D-1FAF2-1F3FE",
+ "non_qualified": null,
+ "image": "1faf1-1f3fb-200d-1faf2-1f3fe.png",
+ "sheet_x": 39,
+ "sheet_y": 45,
+ "added_in": "14.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FB-1F3FF": {
+ "unified": "1FAF1-1F3FB-200D-1FAF2-1F3FF",
+ "non_qualified": null,
+ "image": "1faf1-1f3fb-200d-1faf2-1f3ff.png",
+ "sheet_x": 39,
"sheet_y": 46,
- "added_in": "9.0",
+ "added_in": "14.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- }
- },
- {
- "name": null,
- "unified": "1F587-FE0F",
- "non_qualified": "1F587",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f587-fe0f.png",
- "sheet_x": 29,
- "sheet_y": 47,
- "short_name": "linked_paperclips",
- "short_names": ["linked_paperclips"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 123,
- "added_in": "7.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- {
- "name": null,
- "unified": "1F58A-FE0F",
- "non_qualified": "1F58A",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f58a-fe0f.png",
- "sheet_x": 29,
- "sheet_y": 48,
- "short_name": "lower_left_ballpoint_pen",
- "short_names": ["lower_left_ballpoint_pen"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 103,
- "added_in": "7.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- {
- "name": null,
- "unified": "1F58B-FE0F",
- "non_qualified": "1F58B",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f58b-fe0f.png",
- "sheet_x": 29,
- "sheet_y": 49,
- "short_name": "lower_left_fountain_pen",
- "short_names": ["lower_left_fountain_pen"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 102,
- "added_in": "7.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- {
- "name": null,
- "unified": "1F58C-FE0F",
- "non_qualified": "1F58C",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f58c-fe0f.png",
- "sheet_x": 29,
- "sheet_y": 50,
- "short_name": "lower_left_paintbrush",
- "short_names": ["lower_left_paintbrush"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 104,
- "added_in": "7.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- {
- "name": null,
- "unified": "1F58D-FE0F",
- "non_qualified": "1F58D",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f58d-fe0f.png",
- "sheet_x": 29,
- "sheet_y": 51,
- "short_name": "lower_left_crayon",
- "short_names": ["lower_left_crayon"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 105,
- "added_in": "7.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- {
- "name": null,
- "unified": "1F590-FE0F",
- "non_qualified": "1F590",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f590-fe0f.png",
- "sheet_x": 29,
- "sheet_y": 52,
- "short_name": "raised_hand_with_fingers_splayed",
- "short_names": ["raised_hand_with_fingers_splayed"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 371,
- "added_in": "7.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F590-1F3FB",
+ "has_img_facebook": true
+ },
+ "1F3FC-1F3FB": {
+ "unified": "1FAF1-1F3FC-200D-1FAF2-1F3FB",
+ "non_qualified": null,
+ "image": "1faf1-1f3fc-200d-1faf2-1f3fb.png",
+ "sheet_x": 39,
+ "sheet_y": 47,
+ "added_in": "14.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC-1F3FD": {
+ "unified": "1FAF1-1F3FC-200D-1FAF2-1F3FD",
+ "non_qualified": null,
+ "image": "1faf1-1f3fc-200d-1faf2-1f3fd.png",
+ "sheet_x": 39,
+ "sheet_y": 48,
+ "added_in": "14.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC-1F3FE": {
+ "unified": "1FAF1-1F3FC-200D-1FAF2-1F3FE",
+ "non_qualified": null,
+ "image": "1faf1-1f3fc-200d-1faf2-1f3fe.png",
+ "sheet_x": 39,
+ "sheet_y": 49,
+ "added_in": "14.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC-1F3FF": {
+ "unified": "1FAF1-1F3FC-200D-1FAF2-1F3FF",
+ "non_qualified": null,
+ "image": "1faf1-1f3fc-200d-1faf2-1f3ff.png",
+ "sheet_x": 39,
+ "sheet_y": 50,
+ "added_in": "14.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD-1F3FB": {
+ "unified": "1FAF1-1F3FD-200D-1FAF2-1F3FB",
+ "non_qualified": null,
+ "image": "1faf1-1f3fd-200d-1faf2-1f3fb.png",
+ "sheet_x": 39,
+ "sheet_y": 51,
+ "added_in": "14.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD-1F3FC": {
+ "unified": "1FAF1-1F3FD-200D-1FAF2-1F3FC",
+ "non_qualified": null,
+ "image": "1faf1-1f3fd-200d-1faf2-1f3fc.png",
+ "sheet_x": 39,
+ "sheet_y": 52,
+ "added_in": "14.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD-1F3FE": {
+ "unified": "1FAF1-1F3FD-200D-1FAF2-1F3FE",
+ "non_qualified": null,
+ "image": "1faf1-1f3fd-200d-1faf2-1f3fe.png",
+ "sheet_x": 39,
+ "sheet_y": 53,
+ "added_in": "14.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD-1F3FF": {
+ "unified": "1FAF1-1F3FD-200D-1FAF2-1F3FF",
+ "non_qualified": null,
+ "image": "1faf1-1f3fd-200d-1faf2-1f3ff.png",
+ "sheet_x": 39,
+ "sheet_y": 54,
+ "added_in": "14.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE-1F3FB": {
+ "unified": "1FAF1-1F3FE-200D-1FAF2-1F3FB",
+ "non_qualified": null,
+ "image": "1faf1-1f3fe-200d-1faf2-1f3fb.png",
+ "sheet_x": 39,
+ "sheet_y": 55,
+ "added_in": "14.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE-1F3FC": {
+ "unified": "1FAF1-1F3FE-200D-1FAF2-1F3FC",
+ "non_qualified": null,
+ "image": "1faf1-1f3fe-200d-1faf2-1f3fc.png",
+ "sheet_x": 39,
+ "sheet_y": 56,
+ "added_in": "14.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE-1F3FD": {
+ "unified": "1FAF1-1F3FE-200D-1FAF2-1F3FD",
"non_qualified": null,
- "image": "1f590-1f3fb.png",
- "sheet_x": 30,
- "sheet_y": 0,
- "added_in": "8.0",
+ "image": "1faf1-1f3fe-200d-1faf2-1f3fd.png",
+ "sheet_x": 39,
+ "sheet_y": 57,
+ "added_in": "14.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
- "1F3FC": {
- "unified": "1F590-1F3FC",
+ "1F3FE-1F3FF": {
+ "unified": "1FAF1-1F3FE-200D-1FAF2-1F3FF",
"non_qualified": null,
- "image": "1f590-1f3fc.png",
- "sheet_x": 30,
- "sheet_y": 1,
- "added_in": "8.0",
+ "image": "1faf1-1f3fe-200d-1faf2-1f3ff.png",
+ "sheet_x": 39,
+ "sheet_y": 58,
+ "added_in": "14.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
- "1F3FD": {
- "unified": "1F590-1F3FD",
+ "1F3FF-1F3FB": {
+ "unified": "1FAF1-1F3FF-200D-1FAF2-1F3FB",
"non_qualified": null,
- "image": "1f590-1f3fd.png",
- "sheet_x": 30,
- "sheet_y": 2,
- "added_in": "8.0",
+ "image": "1faf1-1f3ff-200d-1faf2-1f3fb.png",
+ "sheet_x": 39,
+ "sheet_y": 59,
+ "added_in": "14.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
- "1F3FE": {
- "unified": "1F590-1F3FE",
+ "1F3FF-1F3FC": {
+ "unified": "1FAF1-1F3FF-200D-1FAF2-1F3FC",
"non_qualified": null,
- "image": "1f590-1f3fe.png",
- "sheet_x": 30,
- "sheet_y": 3,
- "added_in": "8.0",
+ "image": "1faf1-1f3ff-200d-1faf2-1f3fc.png",
+ "sheet_x": 39,
+ "sheet_y": 60,
+ "added_in": "14.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
- "1F3FF": {
- "unified": "1F590-1F3FF",
+ "1F3FF-1F3FD": {
+ "unified": "1FAF1-1F3FF-200D-1FAF2-1F3FD",
"non_qualified": null,
- "image": "1f590-1f3ff.png",
- "sheet_x": 30,
- "sheet_y": 4,
- "added_in": "8.0",
+ "image": "1faf1-1f3ff-200d-1faf2-1f3fd.png",
+ "sheet_x": 40,
+ "sheet_y": 0,
+ "added_in": "14.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
+ },
+ "1F3FF-1F3FE": {
+ "unified": "1FAF1-1F3FF-200D-1FAF2-1F3FE",
+ "non_qualified": null,
+ "image": "1faf1-1f3ff-200d-1faf2-1f3fe.png",
+ "sheet_x": 40,
+ "sheet_y": 1,
+ "added_in": "14.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
}
}
},
{
- "name": "REVERSED HAND WITH MIDDLE FINGER EXTENDED",
- "unified": "1F595",
+ "name": "HAND WITH INDEX AND MIDDLE FINGERS CROSSED",
+ "unified": "1F91E",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f595.png",
- "sheet_x": 30,
- "sheet_y": 5,
- "short_name": "middle_finger",
+ "image": "1f91e.png",
+ "sheet_x": 40,
+ "sheet_y": 2,
+ "short_name": "crossed_fingers",
"short_names": [
- "middle_finger",
- "reversed_hand_with_middle_finger_extended"
+ "crossed_fingers",
+ "hand_with_index_and_middle_fingers_crossed"
],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 364,
- "added_in": "7.0",
+ "category": "People & Body",
+ "subcategory": "hand-fingers-partial",
+ "sort_order": 182,
+ "added_in": "3.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": false,
"skin_variations": {
"1F3FB": {
- "unified": "1F595-1F3FB",
+ "unified": "1F91E-1F3FB",
"non_qualified": null,
- "image": "1f595-1f3fb.png",
- "sheet_x": 30,
- "sheet_y": 6,
- "added_in": "8.0",
+ "image": "1f91e-1f3fb.png",
+ "sheet_x": 40,
+ "sheet_y": 3,
+ "added_in": "3.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FC": {
- "unified": "1F595-1F3FC",
+ "unified": "1F91E-1F3FC",
"non_qualified": null,
- "image": "1f595-1f3fc.png",
- "sheet_x": 30,
- "sheet_y": 7,
- "added_in": "8.0",
+ "image": "1f91e-1f3fc.png",
+ "sheet_x": 40,
+ "sheet_y": 4,
+ "added_in": "3.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FD": {
- "unified": "1F595-1F3FD",
+ "unified": "1F91E-1F3FD",
"non_qualified": null,
- "image": "1f595-1f3fd.png",
- "sheet_x": 30,
- "sheet_y": 8,
- "added_in": "8.0",
+ "image": "1f91e-1f3fd.png",
+ "sheet_x": 40,
+ "sheet_y": 5,
+ "added_in": "3.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FE": {
- "unified": "1F595-1F3FE",
+ "unified": "1F91E-1F3FE",
"non_qualified": null,
- "image": "1f595-1f3fe.png",
- "sheet_x": 30,
- "sheet_y": 9,
- "added_in": "8.0",
+ "image": "1f91e-1f3fe.png",
+ "sheet_x": 40,
+ "sheet_y": 6,
+ "added_in": "3.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FF": {
- "unified": "1F595-1F3FF",
+ "unified": "1F91E-1F3FF",
"non_qualified": null,
- "image": "1f595-1f3ff.png",
- "sheet_x": 30,
- "sheet_y": 10,
- "added_in": "8.0",
+ "image": "1f91e-1f3ff.png",
+ "sheet_x": 40,
+ "sheet_y": 7,
+ "added_in": "3.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
}
}
},
{
- "name": "RAISED HAND WITH PART BETWEEN MIDDLE AND RING FINGERS",
- "unified": "1F596",
+ "name": "I LOVE YOU HAND SIGN",
+ "unified": "1F91F",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f596.png",
- "sheet_x": 30,
- "sheet_y": 11,
- "short_name": "spock-hand",
- "short_names": ["spock-hand"],
+ "image": "1f91f.png",
+ "sheet_x": 40,
+ "sheet_y": 8,
+ "short_name": "i_love_you_hand_sign",
+ "short_names": ["i_love_you_hand_sign"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 368,
- "added_in": "7.0",
+ "category": "People & Body",
+ "subcategory": "hand-fingers-partial",
+ "sort_order": 184,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": false,
"skin_variations": {
"1F3FB": {
- "unified": "1F596-1F3FB",
+ "unified": "1F91F-1F3FB",
"non_qualified": null,
- "image": "1f596-1f3fb.png",
- "sheet_x": 30,
- "sheet_y": 12,
- "added_in": "8.0",
+ "image": "1f91f-1f3fb.png",
+ "sheet_x": 40,
+ "sheet_y": 9,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FC": {
- "unified": "1F596-1F3FC",
+ "unified": "1F91F-1F3FC",
"non_qualified": null,
- "image": "1f596-1f3fc.png",
- "sheet_x": 30,
- "sheet_y": 13,
- "added_in": "8.0",
+ "image": "1f91f-1f3fc.png",
+ "sheet_x": 40,
+ "sheet_y": 10,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FD": {
- "unified": "1F596-1F3FD",
+ "unified": "1F91F-1F3FD",
"non_qualified": null,
- "image": "1f596-1f3fd.png",
- "sheet_x": 30,
- "sheet_y": 14,
- "added_in": "8.0",
+ "image": "1f91f-1f3fd.png",
+ "sheet_x": 40,
+ "sheet_y": 11,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FE": {
- "unified": "1F596-1F3FE",
+ "unified": "1F91F-1F3FE",
"non_qualified": null,
- "image": "1f596-1f3fe.png",
- "sheet_x": 30,
- "sheet_y": 15,
- "added_in": "8.0",
+ "image": "1f91f-1f3fe.png",
+ "sheet_x": 40,
+ "sheet_y": 12,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FF": {
- "unified": "1F596-1F3FF",
+ "unified": "1F91F-1F3FF",
"non_qualified": null,
- "image": "1f596-1f3ff.png",
- "sheet_x": 30,
- "sheet_y": 16,
- "added_in": "8.0",
+ "image": "1f91f-1f3ff.png",
+ "sheet_x": 40,
+ "sheet_y": 13,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
}
}
},
{
- "name": "BLACK HEART",
- "unified": "1F5A4",
+ "name": "FACE WITH COWBOY HAT",
+ "unified": "1F920",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f5a4.png",
- "sheet_x": 30,
- "sheet_y": 17,
- "short_name": "black_heart",
- "short_names": ["black_heart"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 415,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- {
- "name": null,
- "unified": "1F5A5-FE0F",
- "non_qualified": "1F5A5",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f5a5-fe0f.png",
- "sheet_x": 30,
- "sheet_y": 18,
- "short_name": "desktop_computer",
- "short_names": ["desktop_computer"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 34,
- "added_in": "7.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- {
- "name": null,
- "unified": "1F5A8-FE0F",
- "non_qualified": "1F5A8",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f5a8-fe0f.png",
- "sheet_x": 30,
- "sheet_y": 19,
- "short_name": "printer",
- "short_names": ["printer"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 35,
- "added_in": "7.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- {
- "name": null,
- "unified": "1F5B1-FE0F",
- "non_qualified": "1F5B1",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f5b1-fe0f.png",
- "sheet_x": 30,
- "sheet_y": 20,
- "short_name": "three_button_mouse",
- "short_names": ["three_button_mouse"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 37,
- "added_in": "7.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- {
- "name": null,
- "unified": "1F5B2-FE0F",
- "non_qualified": "1F5B2",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f5b2-fe0f.png",
- "sheet_x": 30,
- "sheet_y": 21,
- "short_name": "trackball",
- "short_names": ["trackball"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 38,
- "added_in": "7.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- {
- "name": null,
- "unified": "1F5BC-FE0F",
- "non_qualified": "1F5BC",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f5bc-fe0f.png",
- "sheet_x": 30,
- "sheet_y": 22,
- "short_name": "frame_with_picture",
- "short_names": ["frame_with_picture"],
- "text": null,
- "texts": null,
- "category": "Activities",
- "sort_order": 73,
- "added_in": "7.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- {
- "name": null,
- "unified": "1F5C2-FE0F",
- "non_qualified": "1F5C2",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f5c2-fe0f.png",
- "sheet_x": 30,
- "sheet_y": 23,
- "short_name": "card_index_dividers",
- "short_names": ["card_index_dividers"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 110,
- "added_in": "7.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- {
- "name": null,
- "unified": "1F5C3-FE0F",
- "non_qualified": "1F5C3",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f5c3-fe0f.png",
- "sheet_x": 30,
- "sheet_y": 24,
- "short_name": "card_file_box",
- "short_names": ["card_file_box"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 127,
- "added_in": "7.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- {
- "name": null,
- "unified": "1F5C4-FE0F",
- "non_qualified": "1F5C4",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f5c4-fe0f.png",
- "sheet_x": 30,
- "sheet_y": 25,
- "short_name": "file_cabinet",
- "short_names": ["file_cabinet"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 128,
- "added_in": "7.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- {
- "name": null,
- "unified": "1F5D1-FE0F",
- "non_qualified": "1F5D1",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f5d1-fe0f.png",
- "sheet_x": 30,
- "sheet_y": 26,
- "short_name": "wastebasket",
- "short_names": ["wastebasket"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 129,
- "added_in": "7.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- {
- "name": null,
- "unified": "1F5D2-FE0F",
- "non_qualified": "1F5D2",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f5d2-fe0f.png",
- "sheet_x": 30,
- "sheet_y": 27,
- "short_name": "spiral_note_pad",
- "short_names": ["spiral_note_pad"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 113,
- "added_in": "7.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- {
- "name": null,
- "unified": "1F5D3-FE0F",
- "non_qualified": "1F5D3",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f5d3-fe0f.png",
- "sheet_x": 30,
- "sheet_y": 28,
- "short_name": "spiral_calendar_pad",
- "short_names": ["spiral_calendar_pad"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 114,
- "added_in": "7.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- {
- "name": null,
- "unified": "1F5DC-FE0F",
- "non_qualified": "1F5DC",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f5dc-fe0f.png",
- "sheet_x": 30,
- "sheet_y": 29,
- "short_name": "compression",
- "short_names": ["compression"],
+ "image": "1f920.png",
+ "sheet_x": 40,
+ "sheet_y": 14,
+ "short_name": "face_with_cowboy_hat",
+ "short_names": ["face_with_cowboy_hat"],
"text": null,
"texts": null,
- "category": "Objects",
- "sort_order": 148,
- "added_in": "7.0",
+ "category": "Smileys & Emotion",
+ "subcategory": "face-hat",
+ "sort_order": 68,
+ "added_in": "3.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
- "name": null,
- "unified": "1F5DD-FE0F",
- "non_qualified": "1F5DD",
+ "name": "CLOWN FACE",
+ "unified": "1F921",
+ "non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f5dd-fe0f.png",
- "sheet_x": 30,
- "sheet_y": 30,
- "short_name": "old_key",
- "short_names": ["old_key"],
+ "image": "1f921.png",
+ "sheet_x": 40,
+ "sheet_y": 15,
+ "short_name": "clown_face",
+ "short_names": ["clown_face"],
"text": null,
"texts": null,
- "category": "Objects",
- "sort_order": 135,
- "added_in": "7.0",
+ "category": "Smileys & Emotion",
+ "subcategory": "face-costume",
+ "sort_order": 109,
+ "added_in": "3.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
- "name": null,
- "unified": "1F5DE-FE0F",
- "non_qualified": "1F5DE",
+ "name": "NAUSEATED FACE",
+ "unified": "1F922",
+ "non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f5de-fe0f.png",
- "sheet_x": 30,
- "sheet_y": 31,
- "short_name": "rolled_up_newspaper",
- "short_names": ["rolled_up_newspaper"],
+ "image": "1f922.png",
+ "sheet_x": 40,
+ "sheet_y": 16,
+ "short_name": "nauseated_face",
+ "short_names": ["nauseated_face"],
"text": null,
"texts": null,
- "category": "Objects",
- "sort_order": 72,
- "added_in": "7.0",
+ "category": "Smileys & Emotion",
+ "subcategory": "face-unwell",
+ "sort_order": 59,
+ "added_in": "3.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
- "name": null,
- "unified": "1F5E1-FE0F",
- "non_qualified": "1F5E1",
+ "name": "ROLLING ON THE FLOOR LAUGHING",
+ "unified": "1F923",
+ "non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f5e1-fe0f.png",
- "sheet_x": 30,
- "sheet_y": 32,
- "short_name": "dagger_knife",
- "short_names": ["dagger_knife"],
+ "image": "1f923.png",
+ "sheet_x": 40,
+ "sheet_y": 17,
+ "short_name": "rolling_on_the_floor_laughing",
+ "short_names": ["rolling_on_the_floor_laughing"],
"text": null,
"texts": null,
- "category": "Objects",
- "sort_order": 140,
- "added_in": "7.0",
+ "category": "Smileys & Emotion",
+ "subcategory": "face-smiling",
+ "sort_order": 7,
+ "added_in": "3.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
- "name": null,
- "unified": "1F5E3-FE0F",
- "non_qualified": "1F5E3",
+ "name": "DROOLING FACE",
+ "unified": "1F924",
+ "non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f5e3-fe0f.png",
- "sheet_x": 30,
- "sheet_y": 33,
- "short_name": "speaking_head_in_silhouette",
- "short_names": ["speaking_head_in_silhouette"],
+ "image": "1f924.png",
+ "sheet_x": 40,
+ "sheet_y": 18,
+ "short_name": "drooling_face",
+ "short_names": ["drooling_face"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 271,
- "added_in": "7.0",
+ "category": "Smileys & Emotion",
+ "subcategory": "face-sleepy",
+ "sort_order": 54,
+ "added_in": "3.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
- "name": null,
- "unified": "1F5E8-FE0F",
- "non_qualified": "1F5E8",
+ "name": "LYING FACE",
+ "unified": "1F925",
+ "non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f5e8-fe0f.png",
- "sheet_x": 30,
- "sheet_y": 34,
- "short_name": "left_speech_bubble",
- "short_names": ["left_speech_bubble"],
+ "image": "1f925.png",
+ "sheet_x": 40,
+ "sheet_y": 19,
+ "short_name": "lying_face",
+ "short_names": ["lying_face"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 429,
- "added_in": "7.0",
+ "category": "Smileys & Emotion",
+ "subcategory": "face-neutral-skeptical",
+ "sort_order": 49,
+ "added_in": "3.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
- "name": null,
- "unified": "1F5EF-FE0F",
- "non_qualified": "1F5EF",
+ "name": "WOMAN FACEPALMING",
+ "unified": "1F926-200D-2640-FE0F",
+ "non_qualified": "1F926-200D-2640",
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f5ef-fe0f.png",
- "sheet_x": 30,
- "sheet_y": 35,
- "short_name": "right_anger_bubble",
- "short_names": ["right_anger_bubble"],
+ "image": "1f926-200d-2640-fe0f.png",
+ "sheet_x": 40,
+ "sheet_y": 20,
+ "short_name": "woman-facepalming",
+ "short_names": ["woman-facepalming"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 430,
- "added_in": "7.0",
+ "category": "People & Body",
+ "subcategory": "person-gesture",
+ "sort_order": 282,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": false
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F926-1F3FB-200D-2640-FE0F",
+ "non_qualified": "1F926-1F3FB-200D-2640",
+ "image": "1f926-1f3fb-200d-2640-fe0f.png",
+ "sheet_x": 40,
+ "sheet_y": 21,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1F926-1F3FC-200D-2640-FE0F",
+ "non_qualified": "1F926-1F3FC-200D-2640",
+ "image": "1f926-1f3fc-200d-2640-fe0f.png",
+ "sheet_x": 40,
+ "sheet_y": 22,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1F926-1F3FD-200D-2640-FE0F",
+ "non_qualified": "1F926-1F3FD-200D-2640",
+ "image": "1f926-1f3fd-200d-2640-fe0f.png",
+ "sheet_x": 40,
+ "sheet_y": 23,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1F926-1F3FE-200D-2640-FE0F",
+ "non_qualified": "1F926-1F3FE-200D-2640",
+ "image": "1f926-1f3fe-200d-2640-fe0f.png",
+ "sheet_x": 40,
+ "sheet_y": 24,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1F926-1F3FF-200D-2640-FE0F",
+ "non_qualified": "1F926-1F3FF-200D-2640",
+ "image": "1f926-1f3ff-200d-2640-fe0f.png",
+ "sheet_x": 40,
+ "sheet_y": 25,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ }
},
{
- "name": null,
- "unified": "1F5F3-FE0F",
- "non_qualified": "1F5F3",
+ "name": "MAN FACEPALMING",
+ "unified": "1F926-200D-2642-FE0F",
+ "non_qualified": "1F926-200D-2642",
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f5f3-fe0f.png",
- "sheet_x": 30,
- "sheet_y": 36,
- "short_name": "ballot_box_with_ballot",
- "short_names": ["ballot_box_with_ballot"],
+ "image": "1f926-200d-2642-fe0f.png",
+ "sheet_x": 40,
+ "sheet_y": 26,
+ "short_name": "man-facepalming",
+ "short_names": ["man-facepalming"],
"text": null,
"texts": null,
- "category": "Objects",
- "sort_order": 99,
- "added_in": "7.0",
+ "category": "People & Body",
+ "subcategory": "person-gesture",
+ "sort_order": 281,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": false
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F926-1F3FB-200D-2642-FE0F",
+ "non_qualified": "1F926-1F3FB-200D-2642",
+ "image": "1f926-1f3fb-200d-2642-fe0f.png",
+ "sheet_x": 40,
+ "sheet_y": 27,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1F926-1F3FC-200D-2642-FE0F",
+ "non_qualified": "1F926-1F3FC-200D-2642",
+ "image": "1f926-1f3fc-200d-2642-fe0f.png",
+ "sheet_x": 40,
+ "sheet_y": 28,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1F926-1F3FD-200D-2642-FE0F",
+ "non_qualified": "1F926-1F3FD-200D-2642",
+ "image": "1f926-1f3fd-200d-2642-fe0f.png",
+ "sheet_x": 40,
+ "sheet_y": 29,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1F926-1F3FE-200D-2642-FE0F",
+ "non_qualified": "1F926-1F3FE-200D-2642",
+ "image": "1f926-1f3fe-200d-2642-fe0f.png",
+ "sheet_x": 40,
+ "sheet_y": 30,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1F926-1F3FF-200D-2642-FE0F",
+ "non_qualified": "1F926-1F3FF-200D-2642",
+ "image": "1f926-1f3ff-200d-2642-fe0f.png",
+ "sheet_x": 40,
+ "sheet_y": 31,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ }
},
{
- "name": null,
- "unified": "1F5FA-FE0F",
- "non_qualified": "1F5FA",
+ "name": "FACE PALM",
+ "unified": "1F926",
+ "non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f5fa-fe0f.png",
- "sheet_x": 30,
- "sheet_y": 37,
- "short_name": "world_map",
- "short_names": ["world_map"],
+ "image": "1f926.png",
+ "sheet_x": 40,
+ "sheet_y": 32,
+ "short_name": "face_palm",
+ "short_names": ["face_palm"],
"text": null,
"texts": null,
- "category": "Travel & Places",
- "sort_order": 5,
- "added_in": "7.0",
+ "category": "People & Body",
+ "subcategory": "person-gesture",
+ "sort_order": 280,
+ "added_in": "3.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": false
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F926-1F3FB",
+ "non_qualified": null,
+ "image": "1f926-1f3fb.png",
+ "sheet_x": 40,
+ "sheet_y": 33,
+ "added_in": "3.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1F926-1F3FC",
+ "non_qualified": null,
+ "image": "1f926-1f3fc.png",
+ "sheet_x": 40,
+ "sheet_y": 34,
+ "added_in": "3.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1F926-1F3FD",
+ "non_qualified": null,
+ "image": "1f926-1f3fd.png",
+ "sheet_x": 40,
+ "sheet_y": 35,
+ "added_in": "3.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1F926-1F3FE",
+ "non_qualified": null,
+ "image": "1f926-1f3fe.png",
+ "sheet_x": 40,
+ "sheet_y": 36,
+ "added_in": "3.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1F926-1F3FF",
+ "non_qualified": null,
+ "image": "1f926-1f3ff.png",
+ "sheet_x": 40,
+ "sheet_y": 37,
+ "added_in": "3.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ }
},
{
- "name": "MOUNT FUJI",
- "unified": "1F5FB",
+ "name": "SNEEZING FACE",
+ "unified": "1F927",
"non_qualified": null,
- "docomo": "E740",
- "au": "E5BD",
- "softbank": "E03B",
- "google": "FE4C3",
- "image": "1f5fb.png",
- "sheet_x": 30,
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f927.png",
+ "sheet_x": 40,
"sheet_y": 38,
- "short_name": "mount_fuji",
- "short_names": ["mount_fuji"],
+ "short_name": "sneezing_face",
+ "short_names": ["sneezing_face"],
"text": null,
"texts": null,
- "category": "Travel & Places",
- "sort_order": 11,
- "added_in": "6.0",
+ "category": "Smileys & Emotion",
+ "subcategory": "face-unwell",
+ "sort_order": 61,
+ "added_in": "3.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "TOKYO TOWER",
- "unified": "1F5FC",
+ "name": "FACE WITH ONE EYEBROW RAISED",
+ "unified": "1F928",
"non_qualified": null,
"docomo": null,
- "au": "E4C0",
- "softbank": "E509",
- "google": "FE4C4",
- "image": "1f5fc.png",
- "sheet_x": 30,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f928.png",
+ "sheet_x": 40,
"sheet_y": 39,
- "short_name": "tokyo_tower",
- "short_names": ["tokyo_tower"],
+ "short_name": "face_with_raised_eyebrow",
+ "short_names": ["face_with_raised_eyebrow", "face_with_one_eyebrow_raised"],
"text": null,
"texts": null,
- "category": "Travel & Places",
- "sort_order": 39,
- "added_in": "6.0",
+ "category": "Smileys & Emotion",
+ "subcategory": "face-neutral-skeptical",
+ "sort_order": 38,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "STATUE OF LIBERTY",
- "unified": "1F5FD",
+ "name": "GRINNING FACE WITH STAR EYES",
+ "unified": "1F929",
"non_qualified": null,
"docomo": null,
"au": null,
- "softbank": "E51D",
- "google": "FE4C6",
- "image": "1f5fd.png",
- "sheet_x": 30,
+ "softbank": null,
+ "google": null,
+ "image": "1f929.png",
+ "sheet_x": 40,
"sheet_y": 40,
- "short_name": "statue_of_liberty",
- "short_names": ["statue_of_liberty"],
+ "short_name": "star-struck",
+ "short_names": ["star-struck", "grinning_face_with_star_eyes"],
"text": null,
"texts": null,
- "category": "Travel & Places",
- "sort_order": 40,
- "added_in": "6.0",
+ "category": "Smileys & Emotion",
+ "subcategory": "face-affection",
+ "sort_order": 17,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "SILHOUETTE OF JAPAN",
- "unified": "1F5FE",
+ "name": "GRINNING FACE WITH ONE LARGE AND ONE SMALL EYE",
+ "unified": "1F92A",
"non_qualified": null,
"docomo": null,
- "au": "E572",
+ "au": null,
"softbank": null,
- "google": "FE4C7",
- "image": "1f5fe.png",
- "sheet_x": 30,
+ "google": null,
+ "image": "1f92a.png",
+ "sheet_x": 40,
"sheet_y": 41,
- "short_name": "japan",
- "short_names": ["japan"],
+ "short_name": "zany_face",
+ "short_names": [
+ "zany_face",
+ "grinning_face_with_one_large_and_one_small_eye"
+ ],
"text": null,
"texts": null,
- "category": "Travel & Places",
- "sort_order": 6,
- "added_in": "6.0",
+ "category": "Smileys & Emotion",
+ "subcategory": "face-tongue",
+ "sort_order": 27,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "MOYAI",
- "unified": "1F5FF",
+ "name": "FACE WITH FINGER COVERING CLOSED LIPS",
+ "unified": "1F92B",
"non_qualified": null,
"docomo": null,
- "au": "EB6C",
+ "au": null,
"softbank": null,
- "google": "FE4C8",
- "image": "1f5ff.png",
- "sheet_x": 30,
+ "google": null,
+ "image": "1f92b.png",
+ "sheet_x": 40,
"sheet_y": 42,
- "short_name": "moyai",
- "short_names": ["moyai"],
+ "short_name": "shushing_face",
+ "short_names": ["shushing_face", "face_with_finger_covering_closed_lips"],
"text": null,
"texts": null,
- "category": "Objects",
- "sort_order": 181,
- "added_in": "6.0",
+ "category": "Smileys & Emotion",
+ "subcategory": "face-hand",
+ "sort_order": 34,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "GRINNING FACE",
- "unified": "1F600",
+ "name": "SERIOUS FACE WITH SYMBOLS COVERING MOUTH",
+ "unified": "1F92C",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f600.png",
- "sheet_x": 30,
+ "image": "1f92c.png",
+ "sheet_x": 40,
"sheet_y": 43,
- "short_name": "grinning",
- "short_names": ["grinning"],
- "text": ":D",
+ "short_name": "face_with_symbols_on_mouth",
+ "short_names": [
+ "face_with_symbols_on_mouth",
+ "serious_face_with_symbols_covering_mouth"
+ ],
+ "text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 1,
- "added_in": "6.1",
+ "category": "Smileys & Emotion",
+ "subcategory": "face-negative",
+ "sort_order": 103,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "GRINNING FACE WITH SMILING EYES",
- "unified": "1F601",
+ "name": "SMILING FACE WITH SMILING EYES AND HAND COVERING MOUTH",
+ "unified": "1F92D",
"non_qualified": null,
- "docomo": "E753",
- "au": "EB80",
- "softbank": "E404",
- "google": "FE333",
- "image": "1f601.png",
- "sheet_x": 30,
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f92d.png",
+ "sheet_x": 40,
"sheet_y": 44,
- "short_name": "grin",
- "short_names": ["grin"],
+ "short_name": "face_with_hand_over_mouth",
+ "short_names": [
+ "face_with_hand_over_mouth",
+ "smiling_face_with_smiling_eyes_and_hand_covering_mouth"
+ ],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 2,
- "added_in": "6.0",
+ "category": "Smileys & Emotion",
+ "subcategory": "face-hand",
+ "sort_order": 31,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "FACE WITH TEARS OF JOY",
- "unified": "1F602",
+ "name": "FACE WITH OPEN MOUTH VOMITING",
+ "unified": "1F92E",
"non_qualified": null,
- "docomo": "E72A",
- "au": "EB64",
- "softbank": "E412",
- "google": "FE334",
- "image": "1f602.png",
- "sheet_x": 30,
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f92e.png",
+ "sheet_x": 40,
"sheet_y": 45,
- "short_name": "joy",
- "short_names": ["joy"],
+ "short_name": "face_vomiting",
+ "short_names": ["face_vomiting", "face_with_open_mouth_vomiting"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 3,
- "added_in": "6.0",
+ "category": "Smileys & Emotion",
+ "subcategory": "face-unwell",
+ "sort_order": 60,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "SMILING FACE WITH OPEN MOUTH",
- "unified": "1F603",
+ "name": "SHOCKED FACE WITH EXPLODING HEAD",
+ "unified": "1F92F",
"non_qualified": null,
- "docomo": "E6F0",
- "au": "E471",
- "softbank": "E057",
- "google": "FE330",
- "image": "1f603.png",
- "sheet_x": 30,
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f92f.png",
+ "sheet_x": 40,
"sheet_y": 46,
- "short_name": "smiley",
- "short_names": ["smiley"],
- "text": ":)",
- "texts": ["=)", "=-)"],
- "category": "Smileys & People",
- "sort_order": 5,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- {
- "name": "SMILING FACE WITH OPEN MOUTH AND SMILING EYES",
- "unified": "1F604",
- "non_qualified": null,
- "docomo": "E6F0",
- "au": "E471",
- "softbank": "E415",
- "google": "FE338",
- "image": "1f604.png",
- "sheet_x": 30,
- "sheet_y": 47,
- "short_name": "smile",
- "short_names": ["smile"],
- "text": ":)",
- "texts": ["C:", "c:", ":D", ":-D"],
- "category": "Smileys & People",
- "sort_order": 6,
- "added_in": "6.0",
+ "short_name": "exploding_head",
+ "short_names": ["exploding_head", "shocked_face_with_exploding_head"],
+ "text": null,
+ "texts": null,
+ "category": "Smileys & Emotion",
+ "subcategory": "face-unwell",
+ "sort_order": 67,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "SMILING FACE WITH OPEN MOUTH AND COLD SWEAT",
- "unified": "1F605",
+ "name": "PREGNANT WOMAN",
+ "unified": "1F930",
"non_qualified": null,
- "docomo": "E722",
- "au": "E471-E5B1",
+ "docomo": null,
+ "au": null,
"softbank": null,
- "google": "FE331",
- "image": "1f605.png",
- "sheet_x": 30,
- "sheet_y": 48,
- "short_name": "sweat_smile",
- "short_names": ["sweat_smile"],
+ "google": null,
+ "image": "1f930.png",
+ "sheet_x": 40,
+ "sheet_y": 47,
+ "short_name": "pregnant_woman",
+ "short_names": ["pregnant_woman"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 7,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "person-role",
+ "sort_order": 361,
+ "added_in": "3.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": true
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F930-1F3FB",
+ "non_qualified": null,
+ "image": "1f930-1f3fb.png",
+ "sheet_x": 40,
+ "sheet_y": 48,
+ "added_in": "3.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1F930-1F3FC",
+ "non_qualified": null,
+ "image": "1f930-1f3fc.png",
+ "sheet_x": 40,
+ "sheet_y": 49,
+ "added_in": "3.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1F930-1F3FD",
+ "non_qualified": null,
+ "image": "1f930-1f3fd.png",
+ "sheet_x": 40,
+ "sheet_y": 50,
+ "added_in": "3.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1F930-1F3FE",
+ "non_qualified": null,
+ "image": "1f930-1f3fe.png",
+ "sheet_x": 40,
+ "sheet_y": 51,
+ "added_in": "3.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1F930-1F3FF",
+ "non_qualified": null,
+ "image": "1f930-1f3ff.png",
+ "sheet_x": 40,
+ "sheet_y": 52,
+ "added_in": "3.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ }
},
{
- "name": "SMILING FACE WITH OPEN MOUTH AND TIGHTLY-CLOSED EYES",
- "unified": "1F606",
+ "name": "BREAST-FEEDING",
+ "unified": "1F931",
"non_qualified": null,
- "docomo": "E72A",
- "au": "EAC5",
+ "docomo": null,
+ "au": null,
"softbank": null,
- "google": "FE332",
- "image": "1f606.png",
- "sheet_x": 30,
- "sheet_y": 49,
- "short_name": "laughing",
- "short_names": ["laughing", "satisfied"],
+ "google": null,
+ "image": "1f931.png",
+ "sheet_x": 40,
+ "sheet_y": 53,
+ "short_name": "breast-feeding",
+ "short_names": ["breast-feeding"],
"text": null,
- "texts": [":>", ":->"],
- "category": "Smileys & People",
- "sort_order": 8,
- "added_in": "6.0",
+ "texts": null,
+ "category": "People & Body",
+ "subcategory": "person-role",
+ "sort_order": 364,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": true
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F931-1F3FB",
+ "non_qualified": null,
+ "image": "1f931-1f3fb.png",
+ "sheet_x": 40,
+ "sheet_y": 54,
+ "added_in": "5.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1F931-1F3FC",
+ "non_qualified": null,
+ "image": "1f931-1f3fc.png",
+ "sheet_x": 40,
+ "sheet_y": 55,
+ "added_in": "5.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1F931-1F3FD",
+ "non_qualified": null,
+ "image": "1f931-1f3fd.png",
+ "sheet_x": 40,
+ "sheet_y": 56,
+ "added_in": "5.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1F931-1F3FE",
+ "non_qualified": null,
+ "image": "1f931-1f3fe.png",
+ "sheet_x": 40,
+ "sheet_y": 57,
+ "added_in": "5.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1F931-1F3FF",
+ "non_qualified": null,
+ "image": "1f931-1f3ff.png",
+ "sheet_x": 40,
+ "sheet_y": 58,
+ "added_in": "5.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ }
},
{
- "name": "SMILING FACE WITH HALO",
- "unified": "1F607",
+ "name": "PALMS UP TOGETHER",
+ "unified": "1F932",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f607.png",
- "sheet_x": 30,
- "sheet_y": 50,
- "short_name": "innocent",
- "short_names": ["innocent"],
+ "image": "1f932.png",
+ "sheet_x": 40,
+ "sheet_y": 59,
+ "short_name": "palms_up_together",
+ "short_names": ["palms_up_together"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 80,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "hands",
+ "sort_order": 204,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": true
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F932-1F3FB",
+ "non_qualified": null,
+ "image": "1f932-1f3fb.png",
+ "sheet_x": 40,
+ "sheet_y": 60,
+ "added_in": "5.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1F932-1F3FC",
+ "non_qualified": null,
+ "image": "1f932-1f3fc.png",
+ "sheet_x": 41,
+ "sheet_y": 0,
+ "added_in": "5.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1F932-1F3FD",
+ "non_qualified": null,
+ "image": "1f932-1f3fd.png",
+ "sheet_x": 41,
+ "sheet_y": 1,
+ "added_in": "5.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1F932-1F3FE",
+ "non_qualified": null,
+ "image": "1f932-1f3fe.png",
+ "sheet_x": 41,
+ "sheet_y": 2,
+ "added_in": "5.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1F932-1F3FF",
+ "non_qualified": null,
+ "image": "1f932-1f3ff.png",
+ "sheet_x": 41,
+ "sheet_y": 3,
+ "added_in": "5.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ }
},
{
- "name": "SMILING FACE WITH HORNS",
- "unified": "1F608",
+ "name": "SELFIE",
+ "unified": "1F933",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f608.png",
- "sheet_x": 30,
- "sheet_y": 51,
- "short_name": "smiling_imp",
- "short_names": ["smiling_imp"],
+ "image": "1f933.png",
+ "sheet_x": 41,
+ "sheet_y": 4,
+ "short_name": "selfie",
+ "short_names": ["selfie"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 90,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- {
- "name": "WINKING FACE",
- "unified": "1F609",
- "non_qualified": null,
- "docomo": "E729",
- "au": "E5C3",
- "softbank": "E405",
- "google": "FE347",
- "image": "1f609.png",
- "sheet_x": 30,
- "sheet_y": 52,
- "short_name": "wink",
- "short_names": ["wink"],
- "text": ";)",
- "texts": [";)", ";-)"],
- "category": "Smileys & People",
- "sort_order": 9,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- {
- "name": "SMILING FACE WITH SMILING EYES",
- "unified": "1F60A",
- "non_qualified": null,
- "docomo": "E6F0",
- "au": "EACD",
- "softbank": "E056",
- "google": "FE335",
- "image": "1f60a.png",
- "sheet_x": 31,
- "sheet_y": 0,
- "short_name": "blush",
- "short_names": ["blush"],
- "text": ":)",
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 10,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "hand-prop",
+ "sort_order": 209,
+ "added_in": "3.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": true
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F933-1F3FB",
+ "non_qualified": null,
+ "image": "1f933-1f3fb.png",
+ "sheet_x": 41,
+ "sheet_y": 5,
+ "added_in": "3.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1F933-1F3FC",
+ "non_qualified": null,
+ "image": "1f933-1f3fc.png",
+ "sheet_x": 41,
+ "sheet_y": 6,
+ "added_in": "3.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1F933-1F3FD",
+ "non_qualified": null,
+ "image": "1f933-1f3fd.png",
+ "sheet_x": 41,
+ "sheet_y": 7,
+ "added_in": "3.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1F933-1F3FE",
+ "non_qualified": null,
+ "image": "1f933-1f3fe.png",
+ "sheet_x": 41,
+ "sheet_y": 8,
+ "added_in": "3.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1F933-1F3FF",
+ "non_qualified": null,
+ "image": "1f933-1f3ff.png",
+ "sheet_x": 41,
+ "sheet_y": 9,
+ "added_in": "3.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ }
},
{
- "name": "FACE SAVOURING DELICIOUS FOOD",
- "unified": "1F60B",
+ "name": "PRINCE",
+ "unified": "1F934",
"non_qualified": null,
- "docomo": "E752",
- "au": "EACD",
+ "docomo": null,
+ "au": null,
"softbank": null,
- "google": "FE32B",
- "image": "1f60b.png",
- "sheet_x": 31,
- "sheet_y": 1,
- "short_name": "yum",
- "short_names": ["yum"],
+ "google": null,
+ "image": "1f934.png",
+ "sheet_x": 41,
+ "sheet_y": 10,
+ "short_name": "prince",
+ "short_names": ["prince"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 11,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "person-role",
+ "sort_order": 348,
+ "added_in": "3.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": true
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F934-1F3FB",
+ "non_qualified": null,
+ "image": "1f934-1f3fb.png",
+ "sheet_x": 41,
+ "sheet_y": 11,
+ "added_in": "3.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1F934-1F3FC",
+ "non_qualified": null,
+ "image": "1f934-1f3fc.png",
+ "sheet_x": 41,
+ "sheet_y": 12,
+ "added_in": "3.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1F934-1F3FD",
+ "non_qualified": null,
+ "image": "1f934-1f3fd.png",
+ "sheet_x": 41,
+ "sheet_y": 13,
+ "added_in": "3.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1F934-1F3FE",
+ "non_qualified": null,
+ "image": "1f934-1f3fe.png",
+ "sheet_x": 41,
+ "sheet_y": 14,
+ "added_in": "3.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1F934-1F3FF",
+ "non_qualified": null,
+ "image": "1f934-1f3ff.png",
+ "sheet_x": 41,
+ "sheet_y": 15,
+ "added_in": "3.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ }
},
{
- "name": "RELIEVED FACE",
- "unified": "1F60C",
- "non_qualified": null,
- "docomo": "E721",
- "au": "EAC5",
- "softbank": "E40A",
- "google": "FE33E",
- "image": "1f60c.png",
- "sheet_x": 31,
- "sheet_y": 2,
- "short_name": "relieved",
- "short_names": ["relieved"],
+ "name": "WOMAN IN TUXEDO",
+ "unified": "1F935-200D-2640-FE0F",
+ "non_qualified": "1F935-200D-2640",
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f935-200d-2640-fe0f.png",
+ "sheet_x": 41,
+ "sheet_y": 16,
+ "short_name": "woman_in_tuxedo",
+ "short_names": ["woman_in_tuxedo"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 38,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "person-role",
+ "sort_order": 357,
+ "added_in": "13.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": true
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F935-1F3FB-200D-2640-FE0F",
+ "non_qualified": "1F935-1F3FB-200D-2640",
+ "image": "1f935-1f3fb-200d-2640-fe0f.png",
+ "sheet_x": 41,
+ "sheet_y": 17,
+ "added_in": "13.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1F935-1F3FC-200D-2640-FE0F",
+ "non_qualified": "1F935-1F3FC-200D-2640",
+ "image": "1f935-1f3fc-200d-2640-fe0f.png",
+ "sheet_x": 41,
+ "sheet_y": 18,
+ "added_in": "13.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1F935-1F3FD-200D-2640-FE0F",
+ "non_qualified": "1F935-1F3FD-200D-2640",
+ "image": "1f935-1f3fd-200d-2640-fe0f.png",
+ "sheet_x": 41,
+ "sheet_y": 19,
+ "added_in": "13.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1F935-1F3FE-200D-2640-FE0F",
+ "non_qualified": "1F935-1F3FE-200D-2640",
+ "image": "1f935-1f3fe-200d-2640-fe0f.png",
+ "sheet_x": 41,
+ "sheet_y": 20,
+ "added_in": "13.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1F935-1F3FF-200D-2640-FE0F",
+ "non_qualified": "1F935-1F3FF-200D-2640",
+ "image": "1f935-1f3ff-200d-2640-fe0f.png",
+ "sheet_x": 41,
+ "sheet_y": 21,
+ "added_in": "13.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ }
},
{
- "name": "SMILING FACE WITH HEART-SHAPED EYES",
- "unified": "1F60D",
- "non_qualified": null,
- "docomo": "E726",
- "au": "E5C4",
- "softbank": "E106",
- "google": "FE327",
- "image": "1f60d.png",
- "sheet_x": 31,
- "sheet_y": 3,
- "short_name": "heart_eyes",
- "short_names": ["heart_eyes"],
+ "name": "MAN IN TUXEDO",
+ "unified": "1F935-200D-2642-FE0F",
+ "non_qualified": "1F935-200D-2642",
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f935-200d-2642-fe0f.png",
+ "sheet_x": 41,
+ "sheet_y": 22,
+ "short_name": "man_in_tuxedo",
+ "short_names": ["man_in_tuxedo"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 13,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "person-role",
+ "sort_order": 356,
+ "added_in": "13.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": true
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F935-1F3FB-200D-2642-FE0F",
+ "non_qualified": "1F935-1F3FB-200D-2642",
+ "image": "1f935-1f3fb-200d-2642-fe0f.png",
+ "sheet_x": 41,
+ "sheet_y": 23,
+ "added_in": "13.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1F935-1F3FC-200D-2642-FE0F",
+ "non_qualified": "1F935-1F3FC-200D-2642",
+ "image": "1f935-1f3fc-200d-2642-fe0f.png",
+ "sheet_x": 41,
+ "sheet_y": 24,
+ "added_in": "13.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1F935-1F3FD-200D-2642-FE0F",
+ "non_qualified": "1F935-1F3FD-200D-2642",
+ "image": "1f935-1f3fd-200d-2642-fe0f.png",
+ "sheet_x": 41,
+ "sheet_y": 25,
+ "added_in": "13.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1F935-1F3FE-200D-2642-FE0F",
+ "non_qualified": "1F935-1F3FE-200D-2642",
+ "image": "1f935-1f3fe-200d-2642-fe0f.png",
+ "sheet_x": 41,
+ "sheet_y": 26,
+ "added_in": "13.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1F935-1F3FF-200D-2642-FE0F",
+ "non_qualified": "1F935-1F3FF-200D-2642",
+ "image": "1f935-1f3ff-200d-2642-fe0f.png",
+ "sheet_x": 41,
+ "sheet_y": 27,
+ "added_in": "13.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ }
},
{
- "name": "SMILING FACE WITH SUNGLASSES",
- "unified": "1F60E",
+ "name": "MAN IN TUXEDO",
+ "unified": "1F935",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f60e.png",
- "sheet_x": 31,
- "sheet_y": 4,
- "short_name": "sunglasses",
- "short_names": ["sunglasses"],
+ "image": "1f935.png",
+ "sheet_x": 41,
+ "sheet_y": 28,
+ "short_name": "person_in_tuxedo",
+ "short_names": ["person_in_tuxedo"],
"text": null,
- "texts": ["8)"],
- "category": "Smileys & People",
- "sort_order": 12,
- "added_in": "6.0",
+ "texts": null,
+ "category": "People & Body",
+ "subcategory": "person-role",
+ "sort_order": 355,
+ "added_in": "3.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": true
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F935-1F3FB",
+ "non_qualified": null,
+ "image": "1f935-1f3fb.png",
+ "sheet_x": 41,
+ "sheet_y": 29,
+ "added_in": "3.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1F935-1F3FC",
+ "non_qualified": null,
+ "image": "1f935-1f3fc.png",
+ "sheet_x": 41,
+ "sheet_y": 30,
+ "added_in": "3.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1F935-1F3FD",
+ "non_qualified": null,
+ "image": "1f935-1f3fd.png",
+ "sheet_x": 41,
+ "sheet_y": 31,
+ "added_in": "3.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1F935-1F3FE",
+ "non_qualified": null,
+ "image": "1f935-1f3fe.png",
+ "sheet_x": 41,
+ "sheet_y": 32,
+ "added_in": "3.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1F935-1F3FF",
+ "non_qualified": null,
+ "image": "1f935-1f3ff.png",
+ "sheet_x": 41,
+ "sheet_y": 33,
+ "added_in": "3.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ }
},
{
- "name": "SMIRKING FACE",
- "unified": "1F60F",
+ "name": "MOTHER CHRISTMAS",
+ "unified": "1F936",
"non_qualified": null,
- "docomo": "E72C",
- "au": "EABF",
- "softbank": "E402",
- "google": "FE343",
- "image": "1f60f.png",
- "sheet_x": 31,
- "sheet_y": 5,
- "short_name": "smirk",
- "short_names": ["smirk"],
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f936.png",
+ "sheet_x": 41,
+ "sheet_y": 34,
+ "short_name": "mrs_claus",
+ "short_names": ["mrs_claus", "mother_christmas"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 29,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "person-fantasy",
+ "sort_order": 370,
+ "added_in": "3.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": true
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F936-1F3FB",
+ "non_qualified": null,
+ "image": "1f936-1f3fb.png",
+ "sheet_x": 41,
+ "sheet_y": 35,
+ "added_in": "3.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1F936-1F3FC",
+ "non_qualified": null,
+ "image": "1f936-1f3fc.png",
+ "sheet_x": 41,
+ "sheet_y": 36,
+ "added_in": "3.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1F936-1F3FD",
+ "non_qualified": null,
+ "image": "1f936-1f3fd.png",
+ "sheet_x": 41,
+ "sheet_y": 37,
+ "added_in": "3.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1F936-1F3FE",
+ "non_qualified": null,
+ "image": "1f936-1f3fe.png",
+ "sheet_x": 41,
+ "sheet_y": 38,
+ "added_in": "3.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1F936-1F3FF",
+ "non_qualified": null,
+ "image": "1f936-1f3ff.png",
+ "sheet_x": 41,
+ "sheet_y": 39,
+ "added_in": "3.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ }
},
{
- "name": "NEUTRAL FACE",
- "unified": "1F610",
- "non_qualified": null,
+ "name": "WOMAN SHRUGGING",
+ "unified": "1F937-200D-2640-FE0F",
+ "non_qualified": "1F937-200D-2640",
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f610.png",
- "sheet_x": 31,
- "sheet_y": 6,
- "short_name": "neutral_face",
- "short_names": ["neutral_face"],
+ "image": "1f937-200d-2640-fe0f.png",
+ "sheet_x": 41,
+ "sheet_y": 40,
+ "short_name": "woman-shrugging",
+ "short_names": ["woman-shrugging"],
"text": null,
- "texts": [":|", ":-|"],
- "category": "Smileys & People",
- "sort_order": 25,
- "added_in": "6.0",
+ "texts": null,
+ "category": "People & Body",
+ "subcategory": "person-gesture",
+ "sort_order": 285,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": true
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F937-1F3FB-200D-2640-FE0F",
+ "non_qualified": "1F937-1F3FB-200D-2640",
+ "image": "1f937-1f3fb-200d-2640-fe0f.png",
+ "sheet_x": 41,
+ "sheet_y": 41,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1F937-1F3FC-200D-2640-FE0F",
+ "non_qualified": "1F937-1F3FC-200D-2640",
+ "image": "1f937-1f3fc-200d-2640-fe0f.png",
+ "sheet_x": 41,
+ "sheet_y": 42,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1F937-1F3FD-200D-2640-FE0F",
+ "non_qualified": "1F937-1F3FD-200D-2640",
+ "image": "1f937-1f3fd-200d-2640-fe0f.png",
+ "sheet_x": 41,
+ "sheet_y": 43,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1F937-1F3FE-200D-2640-FE0F",
+ "non_qualified": "1F937-1F3FE-200D-2640",
+ "image": "1f937-1f3fe-200d-2640-fe0f.png",
+ "sheet_x": 41,
+ "sheet_y": 44,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1F937-1F3FF-200D-2640-FE0F",
+ "non_qualified": "1F937-1F3FF-200D-2640",
+ "image": "1f937-1f3ff-200d-2640-fe0f.png",
+ "sheet_x": 41,
+ "sheet_y": 45,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ }
},
{
- "name": "EXPRESSIONLESS FACE",
- "unified": "1F611",
- "non_qualified": null,
+ "name": "MAN SHRUGGING",
+ "unified": "1F937-200D-2642-FE0F",
+ "non_qualified": "1F937-200D-2642",
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f611.png",
- "sheet_x": 31,
- "sheet_y": 7,
- "short_name": "expressionless",
- "short_names": ["expressionless"],
+ "image": "1f937-200d-2642-fe0f.png",
+ "sheet_x": 41,
+ "sheet_y": 46,
+ "short_name": "man-shrugging",
+ "short_names": ["man-shrugging"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 26,
- "added_in": "6.1",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- {
- "name": "UNAMUSED FACE",
- "unified": "1F612",
- "non_qualified": null,
- "docomo": "E725",
- "au": "EAC9",
- "softbank": "E40E",
- "google": "FE326",
- "image": "1f612.png",
- "sheet_x": 31,
- "sheet_y": 8,
- "short_name": "unamused",
- "short_names": ["unamused"],
- "text": ":(",
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 43,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "person-gesture",
+ "sort_order": 284,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": true
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F937-1F3FB-200D-2642-FE0F",
+ "non_qualified": "1F937-1F3FB-200D-2642",
+ "image": "1f937-1f3fb-200d-2642-fe0f.png",
+ "sheet_x": 41,
+ "sheet_y": 47,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1F937-1F3FC-200D-2642-FE0F",
+ "non_qualified": "1F937-1F3FC-200D-2642",
+ "image": "1f937-1f3fc-200d-2642-fe0f.png",
+ "sheet_x": 41,
+ "sheet_y": 48,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1F937-1F3FD-200D-2642-FE0F",
+ "non_qualified": "1F937-1F3FD-200D-2642",
+ "image": "1f937-1f3fd-200d-2642-fe0f.png",
+ "sheet_x": 41,
+ "sheet_y": 49,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1F937-1F3FE-200D-2642-FE0F",
+ "non_qualified": "1F937-1F3FE-200D-2642",
+ "image": "1f937-1f3fe-200d-2642-fe0f.png",
+ "sheet_x": 41,
+ "sheet_y": 50,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1F937-1F3FF-200D-2642-FE0F",
+ "non_qualified": "1F937-1F3FF-200D-2642",
+ "image": "1f937-1f3ff-200d-2642-fe0f.png",
+ "sheet_x": 41,
+ "sheet_y": 51,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ }
},
{
- "name": "FACE WITH COLD SWEAT",
- "unified": "1F613",
+ "name": "SHRUG",
+ "unified": "1F937",
"non_qualified": null,
- "docomo": "E723",
- "au": "E5C6",
- "softbank": "E108",
- "google": "FE344",
- "image": "1f613.png",
- "sheet_x": 31,
- "sheet_y": 9,
- "short_name": "sweat",
- "short_names": ["sweat"],
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f937.png",
+ "sheet_x": 41,
+ "sheet_y": 52,
+ "short_name": "shrug",
+ "short_names": ["shrug"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 44,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "person-gesture",
+ "sort_order": 283,
+ "added_in": "3.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": true
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F937-1F3FB",
+ "non_qualified": null,
+ "image": "1f937-1f3fb.png",
+ "sheet_x": 41,
+ "sheet_y": 53,
+ "added_in": "3.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1F937-1F3FC",
+ "non_qualified": null,
+ "image": "1f937-1f3fc.png",
+ "sheet_x": 41,
+ "sheet_y": 54,
+ "added_in": "3.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1F937-1F3FD",
+ "non_qualified": null,
+ "image": "1f937-1f3fd.png",
+ "sheet_x": 41,
+ "sheet_y": 55,
+ "added_in": "3.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1F937-1F3FE",
+ "non_qualified": null,
+ "image": "1f937-1f3fe.png",
+ "sheet_x": 41,
+ "sheet_y": 56,
+ "added_in": "3.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1F937-1F3FF",
+ "non_qualified": null,
+ "image": "1f937-1f3ff.png",
+ "sheet_x": 41,
+ "sheet_y": 57,
+ "added_in": "3.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ }
},
{
- "name": "PENSIVE FACE",
- "unified": "1F614",
- "non_qualified": null,
- "docomo": "E720",
- "au": "EAC0",
- "softbank": "E403",
- "google": "FE340",
- "image": "1f614.png",
- "sheet_x": 31,
- "sheet_y": 10,
- "short_name": "pensive",
- "short_names": ["pensive"],
+ "name": "WOMAN CARTWHEELING",
+ "unified": "1F938-200D-2640-FE0F",
+ "non_qualified": "1F938-200D-2640",
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f938-200d-2640-fe0f.png",
+ "sheet_x": 41,
+ "sheet_y": 58,
+ "short_name": "woman-cartwheeling",
+ "short_names": ["woman-cartwheeling"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 45,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "person-sport",
+ "sort_order": 469,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": true
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F938-1F3FB-200D-2640-FE0F",
+ "non_qualified": "1F938-1F3FB-200D-2640",
+ "image": "1f938-1f3fb-200d-2640-fe0f.png",
+ "sheet_x": 41,
+ "sheet_y": 59,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1F938-1F3FC-200D-2640-FE0F",
+ "non_qualified": "1F938-1F3FC-200D-2640",
+ "image": "1f938-1f3fc-200d-2640-fe0f.png",
+ "sheet_x": 41,
+ "sheet_y": 60,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1F938-1F3FD-200D-2640-FE0F",
+ "non_qualified": "1F938-1F3FD-200D-2640",
+ "image": "1f938-1f3fd-200d-2640-fe0f.png",
+ "sheet_x": 42,
+ "sheet_y": 0,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1F938-1F3FE-200D-2640-FE0F",
+ "non_qualified": "1F938-1F3FE-200D-2640",
+ "image": "1f938-1f3fe-200d-2640-fe0f.png",
+ "sheet_x": 42,
+ "sheet_y": 1,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1F938-1F3FF-200D-2640-FE0F",
+ "non_qualified": "1F938-1F3FF-200D-2640",
+ "image": "1f938-1f3ff-200d-2640-fe0f.png",
+ "sheet_x": 42,
+ "sheet_y": 2,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ }
},
{
- "name": "CONFUSED FACE",
- "unified": "1F615",
- "non_qualified": null,
+ "name": "MAN CARTWHEELING",
+ "unified": "1F938-200D-2642-FE0F",
+ "non_qualified": "1F938-200D-2642",
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f615.png",
- "sheet_x": 31,
- "sheet_y": 11,
- "short_name": "confused",
- "short_names": ["confused"],
+ "image": "1f938-200d-2642-fe0f.png",
+ "sheet_x": 42,
+ "sheet_y": 3,
+ "short_name": "man-cartwheeling",
+ "short_names": ["man-cartwheeling"],
"text": null,
- "texts": [":\\", ":-\\", ":/", ":-/"],
- "category": "Smileys & People",
- "sort_order": 46,
- "added_in": "6.1",
+ "texts": null,
+ "category": "People & Body",
+ "subcategory": "person-sport",
+ "sort_order": 468,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": true
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F938-1F3FB-200D-2642-FE0F",
+ "non_qualified": "1F938-1F3FB-200D-2642",
+ "image": "1f938-1f3fb-200d-2642-fe0f.png",
+ "sheet_x": 42,
+ "sheet_y": 4,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1F938-1F3FC-200D-2642-FE0F",
+ "non_qualified": "1F938-1F3FC-200D-2642",
+ "image": "1f938-1f3fc-200d-2642-fe0f.png",
+ "sheet_x": 42,
+ "sheet_y": 5,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1F938-1F3FD-200D-2642-FE0F",
+ "non_qualified": "1F938-1F3FD-200D-2642",
+ "image": "1f938-1f3fd-200d-2642-fe0f.png",
+ "sheet_x": 42,
+ "sheet_y": 6,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1F938-1F3FE-200D-2642-FE0F",
+ "non_qualified": "1F938-1F3FE-200D-2642",
+ "image": "1f938-1f3fe-200d-2642-fe0f.png",
+ "sheet_x": 42,
+ "sheet_y": 7,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1F938-1F3FF-200D-2642-FE0F",
+ "non_qualified": "1F938-1F3FF-200D-2642",
+ "image": "1f938-1f3ff-200d-2642-fe0f.png",
+ "sheet_x": 42,
+ "sheet_y": 8,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ }
},
{
- "name": "CONFOUNDED FACE",
- "unified": "1F616",
+ "name": "PERSON DOING CARTWHEEL",
+ "unified": "1F938",
"non_qualified": null,
- "docomo": "E6F3",
- "au": "EAC3",
- "softbank": "E407",
- "google": "FE33F",
- "image": "1f616.png",
- "sheet_x": 31,
- "sheet_y": 12,
- "short_name": "confounded",
- "short_names": ["confounded"],
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f938.png",
+ "sheet_x": 42,
+ "sheet_y": 9,
+ "short_name": "person_doing_cartwheel",
+ "short_names": ["person_doing_cartwheel"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 52,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "person-sport",
+ "sort_order": 467,
+ "added_in": "3.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": true
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F938-1F3FB",
+ "non_qualified": null,
+ "image": "1f938-1f3fb.png",
+ "sheet_x": 42,
+ "sheet_y": 10,
+ "added_in": "3.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1F938-1F3FC",
+ "non_qualified": null,
+ "image": "1f938-1f3fc.png",
+ "sheet_x": 42,
+ "sheet_y": 11,
+ "added_in": "3.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1F938-1F3FD",
+ "non_qualified": null,
+ "image": "1f938-1f3fd.png",
+ "sheet_x": 42,
+ "sheet_y": 12,
+ "added_in": "3.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1F938-1F3FE",
+ "non_qualified": null,
+ "image": "1f938-1f3fe.png",
+ "sheet_x": 42,
+ "sheet_y": 13,
+ "added_in": "3.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1F938-1F3FF",
+ "non_qualified": null,
+ "image": "1f938-1f3ff.png",
+ "sheet_x": 42,
+ "sheet_y": 14,
+ "added_in": "3.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ }
},
{
- "name": "KISSING FACE",
- "unified": "1F617",
- "non_qualified": null,
+ "name": "WOMAN JUGGLING",
+ "unified": "1F939-200D-2640-FE0F",
+ "non_qualified": "1F939-200D-2640",
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f617.png",
- "sheet_x": 31,
- "sheet_y": 13,
- "short_name": "kissing",
- "short_names": ["kissing"],
+ "image": "1f939-200d-2640-fe0f.png",
+ "sheet_x": 42,
+ "sheet_y": 15,
+ "short_name": "woman-juggling",
+ "short_names": ["woman-juggling"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 16,
- "added_in": "6.1",
+ "category": "People & Body",
+ "subcategory": "person-sport",
+ "sort_order": 481,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": true
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F939-1F3FB-200D-2640-FE0F",
+ "non_qualified": "1F939-1F3FB-200D-2640",
+ "image": "1f939-1f3fb-200d-2640-fe0f.png",
+ "sheet_x": 42,
+ "sheet_y": 16,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1F939-1F3FC-200D-2640-FE0F",
+ "non_qualified": "1F939-1F3FC-200D-2640",
+ "image": "1f939-1f3fc-200d-2640-fe0f.png",
+ "sheet_x": 42,
+ "sheet_y": 17,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1F939-1F3FD-200D-2640-FE0F",
+ "non_qualified": "1F939-1F3FD-200D-2640",
+ "image": "1f939-1f3fd-200d-2640-fe0f.png",
+ "sheet_x": 42,
+ "sheet_y": 18,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1F939-1F3FE-200D-2640-FE0F",
+ "non_qualified": "1F939-1F3FE-200D-2640",
+ "image": "1f939-1f3fe-200d-2640-fe0f.png",
+ "sheet_x": 42,
+ "sheet_y": 19,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1F939-1F3FF-200D-2640-FE0F",
+ "non_qualified": "1F939-1F3FF-200D-2640",
+ "image": "1f939-1f3ff-200d-2640-fe0f.png",
+ "sheet_x": 42,
+ "sheet_y": 20,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ }
},
{
- "name": "FACE THROWING A KISS",
- "unified": "1F618",
- "non_qualified": null,
- "docomo": "E726",
- "au": "EACF",
- "softbank": "E418",
- "google": "FE32C",
- "image": "1f618.png",
- "sheet_x": 31,
- "sheet_y": 14,
- "short_name": "kissing_heart",
- "short_names": ["kissing_heart"],
+ "name": "MAN JUGGLING",
+ "unified": "1F939-200D-2642-FE0F",
+ "non_qualified": "1F939-200D-2642",
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f939-200d-2642-fe0f.png",
+ "sheet_x": 42,
+ "sheet_y": 21,
+ "short_name": "man-juggling",
+ "short_names": ["man-juggling"],
"text": null,
- "texts": [":*", ":-*"],
- "category": "Smileys & People",
- "sort_order": 14,
- "added_in": "6.0",
+ "texts": null,
+ "category": "People & Body",
+ "subcategory": "person-sport",
+ "sort_order": 480,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": true
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F939-1F3FB-200D-2642-FE0F",
+ "non_qualified": "1F939-1F3FB-200D-2642",
+ "image": "1f939-1f3fb-200d-2642-fe0f.png",
+ "sheet_x": 42,
+ "sheet_y": 22,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1F939-1F3FC-200D-2642-FE0F",
+ "non_qualified": "1F939-1F3FC-200D-2642",
+ "image": "1f939-1f3fc-200d-2642-fe0f.png",
+ "sheet_x": 42,
+ "sheet_y": 23,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1F939-1F3FD-200D-2642-FE0F",
+ "non_qualified": "1F939-1F3FD-200D-2642",
+ "image": "1f939-1f3fd-200d-2642-fe0f.png",
+ "sheet_x": 42,
+ "sheet_y": 24,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1F939-1F3FE-200D-2642-FE0F",
+ "non_qualified": "1F939-1F3FE-200D-2642",
+ "image": "1f939-1f3fe-200d-2642-fe0f.png",
+ "sheet_x": 42,
+ "sheet_y": 25,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1F939-1F3FF-200D-2642-FE0F",
+ "non_qualified": "1F939-1F3FF-200D-2642",
+ "image": "1f939-1f3ff-200d-2642-fe0f.png",
+ "sheet_x": 42,
+ "sheet_y": 26,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ }
},
{
- "name": "KISSING FACE WITH SMILING EYES",
- "unified": "1F619",
+ "name": "JUGGLING",
+ "unified": "1F939",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f619.png",
- "sheet_x": 31,
- "sheet_y": 15,
- "short_name": "kissing_smiling_eyes",
- "short_names": ["kissing_smiling_eyes"],
+ "image": "1f939.png",
+ "sheet_x": 42,
+ "sheet_y": 27,
+ "short_name": "juggling",
+ "short_names": ["juggling"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 17,
- "added_in": "6.1",
+ "category": "People & Body",
+ "subcategory": "person-sport",
+ "sort_order": 479,
+ "added_in": "3.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": true
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F939-1F3FB",
+ "non_qualified": null,
+ "image": "1f939-1f3fb.png",
+ "sheet_x": 42,
+ "sheet_y": 28,
+ "added_in": "3.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1F939-1F3FC",
+ "non_qualified": null,
+ "image": "1f939-1f3fc.png",
+ "sheet_x": 42,
+ "sheet_y": 29,
+ "added_in": "3.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1F939-1F3FD",
+ "non_qualified": null,
+ "image": "1f939-1f3fd.png",
+ "sheet_x": 42,
+ "sheet_y": 30,
+ "added_in": "3.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1F939-1F3FE",
+ "non_qualified": null,
+ "image": "1f939-1f3fe.png",
+ "sheet_x": 42,
+ "sheet_y": 31,
+ "added_in": "3.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1F939-1F3FF",
+ "non_qualified": null,
+ "image": "1f939-1f3ff.png",
+ "sheet_x": 42,
+ "sheet_y": 32,
+ "added_in": "3.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ }
},
{
- "name": "KISSING FACE WITH CLOSED EYES",
- "unified": "1F61A",
+ "name": "FENCER",
+ "unified": "1F93A",
"non_qualified": null,
- "docomo": "E726",
- "au": "EACE",
- "softbank": "E417",
- "google": "FE32D",
- "image": "1f61a.png",
- "sheet_x": 31,
- "sheet_y": 16,
- "short_name": "kissing_closed_eyes",
- "short_names": ["kissing_closed_eyes"],
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f93a.png",
+ "sheet_x": 42,
+ "sheet_y": 33,
+ "short_name": "fencer",
+ "short_names": ["fencer"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 18,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "person-sport",
+ "sort_order": 439,
+ "added_in": "3.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "FACE WITH STUCK-OUT TONGUE",
- "unified": "1F61B",
- "non_qualified": null,
+ "name": "WOMEN WRESTLING",
+ "unified": "1F93C-200D-2640-FE0F",
+ "non_qualified": "1F93C-200D-2640",
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f61b.png",
- "sheet_x": 31,
- "sheet_y": 17,
- "short_name": "stuck_out_tongue",
- "short_names": ["stuck_out_tongue"],
- "text": ":p",
- "texts": [":p", ":-p", ":P", ":-P", ":b", ":-b"],
- "category": "Smileys & People",
- "sort_order": 39,
- "added_in": "6.1",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- {
- "name": "FACE WITH STUCK-OUT TONGUE AND WINKING EYE",
- "unified": "1F61C",
- "non_qualified": null,
- "docomo": "E728",
- "au": "E4E7",
- "softbank": "E105",
- "google": "FE329",
- "image": "1f61c.png",
- "sheet_x": 31,
- "sheet_y": 18,
- "short_name": "stuck_out_tongue_winking_eye",
- "short_names": ["stuck_out_tongue_winking_eye"],
- "text": ";p",
- "texts": [";p", ";-p", ";b", ";-b", ";P", ";-P"],
- "category": "Smileys & People",
- "sort_order": 40,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- {
- "name": "FACE WITH STUCK-OUT TONGUE AND TIGHTLY-CLOSED EYES",
- "unified": "1F61D",
- "non_qualified": null,
- "docomo": "E728",
- "au": "E4E7",
- "softbank": "E409",
- "google": "FE32A",
- "image": "1f61d.png",
- "sheet_x": 31,
- "sheet_y": 19,
- "short_name": "stuck_out_tongue_closed_eyes",
- "short_names": ["stuck_out_tongue_closed_eyes"],
+ "image": "1f93c-200d-2640-fe0f.png",
+ "sheet_x": 42,
+ "sheet_y": 34,
+ "short_name": "woman-wrestling",
+ "short_names": ["woman-wrestling"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 41,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- {
- "name": "DISAPPOINTED FACE",
- "unified": "1F61E",
- "non_qualified": null,
- "docomo": "E6F2",
- "au": "EAC0",
- "softbank": "E058",
- "google": "FE323",
- "image": "1f61e.png",
- "sheet_x": 31,
- "sheet_y": 20,
- "short_name": "disappointed",
- "short_names": ["disappointed"],
- "text": ":(",
- "texts": ["):", ":(", ":-("],
- "category": "Smileys & People",
- "sort_order": 53,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "person-sport",
+ "sort_order": 472,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "WORRIED FACE",
- "unified": "1F61F",
- "non_qualified": null,
+ "name": "MEN WRESTLING",
+ "unified": "1F93C-200D-2642-FE0F",
+ "non_qualified": "1F93C-200D-2642",
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f61f.png",
- "sheet_x": 31,
- "sheet_y": 21,
- "short_name": "worried",
- "short_names": ["worried"],
+ "image": "1f93c-200d-2642-fe0f.png",
+ "sheet_x": 42,
+ "sheet_y": 35,
+ "short_name": "man-wrestling",
+ "short_names": ["man-wrestling"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 54,
- "added_in": "6.1",
+ "category": "People & Body",
+ "subcategory": "person-sport",
+ "sort_order": 471,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "ANGRY FACE",
- "unified": "1F620",
+ "name": "WRESTLERS",
+ "unified": "1F93C",
"non_qualified": null,
- "docomo": "E6F1",
- "au": "E472",
- "softbank": "E059",
- "google": "FE320",
- "image": "1f620.png",
- "sheet_x": 31,
- "sheet_y": 22,
- "short_name": "angry",
- "short_names": ["angry"],
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f93c.png",
+ "sheet_x": 42,
+ "sheet_y": 36,
+ "short_name": "wrestlers",
+ "short_names": ["wrestlers"],
"text": null,
- "texts": [">:(", ">:-("],
- "category": "Smileys & People",
- "sort_order": 72,
- "added_in": "6.0",
+ "texts": null,
+ "category": "People & Body",
+ "subcategory": "person-sport",
+ "sort_order": 470,
+ "added_in": "3.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "POUTING FACE",
- "unified": "1F621",
- "non_qualified": null,
- "docomo": "E724",
- "au": "EB5D",
- "softbank": "E416",
- "google": "FE33D",
- "image": "1f621.png",
- "sheet_x": 31,
- "sheet_y": 23,
- "short_name": "rage",
- "short_names": ["rage"],
+ "name": "WOMAN PLAYING WATER POLO",
+ "unified": "1F93D-200D-2640-FE0F",
+ "non_qualified": "1F93D-200D-2640",
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f93d-200d-2640-fe0f.png",
+ "sheet_x": 42,
+ "sheet_y": 37,
+ "short_name": "woman-playing-water-polo",
+ "short_names": ["woman-playing-water-polo"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 71,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "person-sport",
+ "sort_order": 475,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": true
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F93D-1F3FB-200D-2640-FE0F",
+ "non_qualified": "1F93D-1F3FB-200D-2640",
+ "image": "1f93d-1f3fb-200d-2640-fe0f.png",
+ "sheet_x": 42,
+ "sheet_y": 38,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1F93D-1F3FC-200D-2640-FE0F",
+ "non_qualified": "1F93D-1F3FC-200D-2640",
+ "image": "1f93d-1f3fc-200d-2640-fe0f.png",
+ "sheet_x": 42,
+ "sheet_y": 39,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1F93D-1F3FD-200D-2640-FE0F",
+ "non_qualified": "1F93D-1F3FD-200D-2640",
+ "image": "1f93d-1f3fd-200d-2640-fe0f.png",
+ "sheet_x": 42,
+ "sheet_y": 40,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1F93D-1F3FE-200D-2640-FE0F",
+ "non_qualified": "1F93D-1F3FE-200D-2640",
+ "image": "1f93d-1f3fe-200d-2640-fe0f.png",
+ "sheet_x": 42,
+ "sheet_y": 41,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1F93D-1F3FF-200D-2640-FE0F",
+ "non_qualified": "1F93D-1F3FF-200D-2640",
+ "image": "1f93d-1f3ff-200d-2640-fe0f.png",
+ "sheet_x": 42,
+ "sheet_y": 42,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ }
},
{
- "name": "CRYING FACE",
- "unified": "1F622",
- "non_qualified": null,
- "docomo": "E72E",
- "au": "EB69",
- "softbank": "E413",
- "google": "FE339",
- "image": "1f622.png",
- "sheet_x": 31,
- "sheet_y": 24,
- "short_name": "cry",
- "short_names": ["cry"],
- "text": ":'(",
- "texts": [":'("],
- "category": "Smileys & People",
- "sort_order": 56,
- "added_in": "6.0",
+ "name": "MAN PLAYING WATER POLO",
+ "unified": "1F93D-200D-2642-FE0F",
+ "non_qualified": "1F93D-200D-2642",
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f93d-200d-2642-fe0f.png",
+ "sheet_x": 42,
+ "sheet_y": 43,
+ "short_name": "man-playing-water-polo",
+ "short_names": ["man-playing-water-polo"],
+ "text": null,
+ "texts": null,
+ "category": "People & Body",
+ "subcategory": "person-sport",
+ "sort_order": 474,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": true
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F93D-1F3FB-200D-2642-FE0F",
+ "non_qualified": "1F93D-1F3FB-200D-2642",
+ "image": "1f93d-1f3fb-200d-2642-fe0f.png",
+ "sheet_x": 42,
+ "sheet_y": 44,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1F93D-1F3FC-200D-2642-FE0F",
+ "non_qualified": "1F93D-1F3FC-200D-2642",
+ "image": "1f93d-1f3fc-200d-2642-fe0f.png",
+ "sheet_x": 42,
+ "sheet_y": 45,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1F93D-1F3FD-200D-2642-FE0F",
+ "non_qualified": "1F93D-1F3FD-200D-2642",
+ "image": "1f93d-1f3fd-200d-2642-fe0f.png",
+ "sheet_x": 42,
+ "sheet_y": 46,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1F93D-1F3FE-200D-2642-FE0F",
+ "non_qualified": "1F93D-1F3FE-200D-2642",
+ "image": "1f93d-1f3fe-200d-2642-fe0f.png",
+ "sheet_x": 42,
+ "sheet_y": 47,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1F93D-1F3FF-200D-2642-FE0F",
+ "non_qualified": "1F93D-1F3FF-200D-2642",
+ "image": "1f93d-1f3ff-200d-2642-fe0f.png",
+ "sheet_x": 42,
+ "sheet_y": 48,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ }
},
{
- "name": "PERSEVERING FACE",
- "unified": "1F623",
+ "name": "WATER POLO",
+ "unified": "1F93D",
"non_qualified": null,
- "docomo": "E72B",
- "au": "EAC2",
- "softbank": "E406",
- "google": "FE33C",
- "image": "1f623.png",
- "sheet_x": 31,
- "sheet_y": 25,
- "short_name": "persevere",
- "short_names": ["persevere"],
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f93d.png",
+ "sheet_x": 42,
+ "sheet_y": 49,
+ "short_name": "water_polo",
+ "short_names": ["water_polo"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 30,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "person-sport",
+ "sort_order": 473,
+ "added_in": "3.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": true
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F93D-1F3FB",
+ "non_qualified": null,
+ "image": "1f93d-1f3fb.png",
+ "sheet_x": 42,
+ "sheet_y": 50,
+ "added_in": "3.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1F93D-1F3FC",
+ "non_qualified": null,
+ "image": "1f93d-1f3fc.png",
+ "sheet_x": 42,
+ "sheet_y": 51,
+ "added_in": "3.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1F93D-1F3FD",
+ "non_qualified": null,
+ "image": "1f93d-1f3fd.png",
+ "sheet_x": 42,
+ "sheet_y": 52,
+ "added_in": "3.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1F93D-1F3FE",
+ "non_qualified": null,
+ "image": "1f93d-1f3fe.png",
+ "sheet_x": 42,
+ "sheet_y": 53,
+ "added_in": "3.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1F93D-1F3FF",
+ "non_qualified": null,
+ "image": "1f93d-1f3ff.png",
+ "sheet_x": 42,
+ "sheet_y": 54,
+ "added_in": "3.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ }
},
{
- "name": "FACE WITH LOOK OF TRIUMPH",
- "unified": "1F624",
- "non_qualified": null,
- "docomo": "E753",
- "au": "EAC1",
+ "name": "WOMAN PLAYING HANDBALL",
+ "unified": "1F93E-200D-2640-FE0F",
+ "non_qualified": "1F93E-200D-2640",
+ "docomo": null,
+ "au": null,
"softbank": null,
- "google": "FE328",
- "image": "1f624.png",
- "sheet_x": 31,
- "sheet_y": 26,
- "short_name": "triumph",
- "short_names": ["triumph"],
+ "google": null,
+ "image": "1f93e-200d-2640-fe0f.png",
+ "sheet_x": 42,
+ "sheet_y": 55,
+ "short_name": "woman-playing-handball",
+ "short_names": ["woman-playing-handball"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 55,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "person-sport",
+ "sort_order": 478,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": true
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F93E-1F3FB-200D-2640-FE0F",
+ "non_qualified": "1F93E-1F3FB-200D-2640",
+ "image": "1f93e-1f3fb-200d-2640-fe0f.png",
+ "sheet_x": 42,
+ "sheet_y": 56,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1F93E-1F3FC-200D-2640-FE0F",
+ "non_qualified": "1F93E-1F3FC-200D-2640",
+ "image": "1f93e-1f3fc-200d-2640-fe0f.png",
+ "sheet_x": 42,
+ "sheet_y": 57,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1F93E-1F3FD-200D-2640-FE0F",
+ "non_qualified": "1F93E-1F3FD-200D-2640",
+ "image": "1f93e-1f3fd-200d-2640-fe0f.png",
+ "sheet_x": 42,
+ "sheet_y": 58,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1F93E-1F3FE-200D-2640-FE0F",
+ "non_qualified": "1F93E-1F3FE-200D-2640",
+ "image": "1f93e-1f3fe-200d-2640-fe0f.png",
+ "sheet_x": 42,
+ "sheet_y": 59,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1F93E-1F3FF-200D-2640-FE0F",
+ "non_qualified": "1F93E-1F3FF-200D-2640",
+ "image": "1f93e-1f3ff-200d-2640-fe0f.png",
+ "sheet_x": 42,
+ "sheet_y": 60,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ }
},
{
- "name": "DISAPPOINTED BUT RELIEVED FACE",
- "unified": "1F625",
- "non_qualified": null,
- "docomo": "E723",
- "au": "E5C6",
- "softbank": "E401",
- "google": "FE345",
- "image": "1f625.png",
- "sheet_x": 31,
- "sheet_y": 27,
- "short_name": "disappointed_relieved",
- "short_names": ["disappointed_relieved"],
+ "name": "MAN PLAYING HANDBALL",
+ "unified": "1F93E-200D-2642-FE0F",
+ "non_qualified": "1F93E-200D-2642",
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f93e-200d-2642-fe0f.png",
+ "sheet_x": 43,
+ "sheet_y": 0,
+ "short_name": "man-playing-handball",
+ "short_names": ["man-playing-handball"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 31,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "person-sport",
+ "sort_order": 477,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": true
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F93E-1F3FB-200D-2642-FE0F",
+ "non_qualified": "1F93E-1F3FB-200D-2642",
+ "image": "1f93e-1f3fb-200d-2642-fe0f.png",
+ "sheet_x": 43,
+ "sheet_y": 1,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1F93E-1F3FC-200D-2642-FE0F",
+ "non_qualified": "1F93E-1F3FC-200D-2642",
+ "image": "1f93e-1f3fc-200d-2642-fe0f.png",
+ "sheet_x": 43,
+ "sheet_y": 2,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1F93E-1F3FD-200D-2642-FE0F",
+ "non_qualified": "1F93E-1F3FD-200D-2642",
+ "image": "1f93e-1f3fd-200d-2642-fe0f.png",
+ "sheet_x": 43,
+ "sheet_y": 3,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1F93E-1F3FE-200D-2642-FE0F",
+ "non_qualified": "1F93E-1F3FE-200D-2642",
+ "image": "1f93e-1f3fe-200d-2642-fe0f.png",
+ "sheet_x": 43,
+ "sheet_y": 4,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1F93E-1F3FF-200D-2642-FE0F",
+ "non_qualified": "1F93E-1F3FF-200D-2642",
+ "image": "1f93e-1f3ff-200d-2642-fe0f.png",
+ "sheet_x": 43,
+ "sheet_y": 5,
+ "added_in": "4.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ }
},
{
- "name": "FROWNING FACE WITH OPEN MOUTH",
- "unified": "1F626",
+ "name": "HANDBALL",
+ "unified": "1F93E",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f626.png",
- "sheet_x": 31,
- "sheet_y": 28,
- "short_name": "frowning",
- "short_names": ["frowning"],
+ "image": "1f93e.png",
+ "sheet_x": 43,
+ "sheet_y": 6,
+ "short_name": "handball",
+ "short_names": ["handball"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 58,
- "added_in": "6.1",
+ "category": "People & Body",
+ "subcategory": "person-sport",
+ "sort_order": 476,
+ "added_in": "3.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": true
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F93E-1F3FB",
+ "non_qualified": null,
+ "image": "1f93e-1f3fb.png",
+ "sheet_x": 43,
+ "sheet_y": 7,
+ "added_in": "3.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1F93E-1F3FC",
+ "non_qualified": null,
+ "image": "1f93e-1f3fc.png",
+ "sheet_x": 43,
+ "sheet_y": 8,
+ "added_in": "3.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1F93E-1F3FD",
+ "non_qualified": null,
+ "image": "1f93e-1f3fd.png",
+ "sheet_x": 43,
+ "sheet_y": 9,
+ "added_in": "3.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1F93E-1F3FE",
+ "non_qualified": null,
+ "image": "1f93e-1f3fe.png",
+ "sheet_x": 43,
+ "sheet_y": 10,
+ "added_in": "3.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1F93E-1F3FF",
+ "non_qualified": null,
+ "image": "1f93e-1f3ff.png",
+ "sheet_x": 43,
+ "sheet_y": 11,
+ "added_in": "3.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ }
},
{
- "name": "ANGUISHED FACE",
- "unified": "1F627",
+ "name": "DIVING MASK",
+ "unified": "1F93F",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f627.png",
- "sheet_x": 31,
- "sheet_y": 29,
- "short_name": "anguished",
- "short_names": ["anguished"],
- "text": null,
- "texts": ["D:"],
- "category": "Smileys & People",
- "sort_order": 59,
- "added_in": "6.1",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- {
- "name": "FEARFUL FACE",
- "unified": "1F628",
- "non_qualified": null,
- "docomo": "E757",
- "au": "EAC6",
- "softbank": "E40B",
- "google": "FE33B",
- "image": "1f628.png",
- "sheet_x": 31,
- "sheet_y": 30,
- "short_name": "fearful",
- "short_names": ["fearful"],
+ "image": "1f93f.png",
+ "sheet_x": 43,
+ "sheet_y": 12,
+ "short_name": "diving_mask",
+ "short_names": ["diving_mask"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 60,
- "added_in": "6.0",
+ "category": "Activities",
+ "subcategory": "sport",
+ "sort_order": 1087,
+ "added_in": "12.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "WEARY FACE",
- "unified": "1F629",
+ "name": "WILTED FLOWER",
+ "unified": "1F940",
"non_qualified": null,
- "docomo": "E6F3",
- "au": "EB67",
+ "docomo": null,
+ "au": null,
"softbank": null,
- "google": "FE321",
- "image": "1f629.png",
- "sheet_x": 31,
- "sheet_y": 31,
- "short_name": "weary",
- "short_names": ["weary"],
+ "google": null,
+ "image": "1f940.png",
+ "sheet_x": 43,
+ "sheet_y": 13,
+ "short_name": "wilted_flower",
+ "short_names": ["wilted_flower"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 61,
- "added_in": "6.0",
+ "category": "Animals & Nature",
+ "subcategory": "plant-flower",
+ "sort_order": 665,
+ "added_in": "3.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "SLEEPY FACE",
- "unified": "1F62A",
+ "name": "DRUM WITH DRUMSTICKS",
+ "unified": "1F941",
"non_qualified": null,
- "docomo": "E701",
- "au": "EAC4",
- "softbank": "E408",
- "google": "FE342",
- "image": "1f62a.png",
- "sheet_x": 31,
- "sheet_y": 32,
- "short_name": "sleepy",
- "short_names": ["sleepy"],
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f941.png",
+ "sheet_x": 43,
+ "sheet_y": 14,
+ "short_name": "drum_with_drumsticks",
+ "short_names": ["drum_with_drumsticks"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 35,
- "added_in": "6.0",
+ "category": "Objects",
+ "subcategory": "musical-instrument",
+ "sort_order": 1195,
+ "added_in": "3.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "TIRED FACE",
- "unified": "1F62B",
+ "name": "CLINKING GLASSES",
+ "unified": "1F942",
"non_qualified": null,
- "docomo": "E72B",
- "au": "E474",
+ "docomo": null,
+ "au": null,
"softbank": null,
- "google": "FE346",
- "image": "1f62b.png",
- "sheet_x": 31,
- "sheet_y": 33,
- "short_name": "tired_face",
- "short_names": ["tired_face"],
+ "google": null,
+ "image": "1f942.png",
+ "sheet_x": 43,
+ "sheet_y": 15,
+ "short_name": "clinking_glasses",
+ "short_names": ["clinking_glasses"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 36,
- "added_in": "6.0",
+ "category": "Food & Drink",
+ "subcategory": "drink",
+ "sort_order": 805,
+ "added_in": "3.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "GRIMACING FACE",
- "unified": "1F62C",
+ "name": "TUMBLER GLASS",
+ "unified": "1F943",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f62c.png",
- "sheet_x": 31,
- "sheet_y": 34,
- "short_name": "grimacing",
- "short_names": ["grimacing"],
+ "image": "1f943.png",
+ "sheet_x": 43,
+ "sheet_y": 16,
+ "short_name": "tumbler_glass",
+ "short_names": ["tumbler_glass"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 63,
- "added_in": "6.1",
+ "category": "Food & Drink",
+ "subcategory": "drink",
+ "sort_order": 806,
+ "added_in": "3.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "LOUDLY CRYING FACE",
- "unified": "1F62D",
+ "name": "SPOON",
+ "unified": "1F944",
"non_qualified": null,
- "docomo": "E72D",
- "au": "E473",
- "softbank": "E411",
- "google": "FE33A",
- "image": "1f62d.png",
- "sheet_x": 31,
- "sheet_y": 35,
- "short_name": "sob",
- "short_names": ["sob"],
- "text": ":'(",
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f944.png",
+ "sheet_x": 43,
+ "sheet_y": 17,
+ "short_name": "spoon",
+ "short_names": ["spoon"],
+ "text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 57,
- "added_in": "6.0",
+ "category": "Food & Drink",
+ "subcategory": "dishware",
+ "sort_order": 816,
+ "added_in": "3.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "FACE WITH OPEN MOUTH",
- "unified": "1F62E",
+ "name": "GOAL NET",
+ "unified": "1F945",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f62e.png",
- "sheet_x": 31,
- "sheet_y": 36,
- "short_name": "open_mouth",
- "short_names": ["open_mouth"],
+ "image": "1f945.png",
+ "sheet_x": 43,
+ "sheet_y": 18,
+ "short_name": "goal_net",
+ "short_names": ["goal_net"],
"text": null,
- "texts": [":o", ":-o", ":O", ":-O"],
- "category": "Smileys & People",
- "sort_order": 32,
- "added_in": "6.1",
+ "texts": null,
+ "category": "Activities",
+ "subcategory": "sport",
+ "sort_order": 1083,
+ "added_in": "3.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "HUSHED FACE",
- "unified": "1F62F",
+ "name": "FIRST PLACE MEDAL",
+ "unified": "1F947",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f62f.png",
- "sheet_x": 31,
- "sheet_y": 37,
- "short_name": "hushed",
- "short_names": ["hushed"],
+ "image": "1f947.png",
+ "sheet_x": 43,
+ "sheet_y": 19,
+ "short_name": "first_place_medal",
+ "short_names": ["first_place_medal"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 34,
- "added_in": "6.1",
+ "category": "Activities",
+ "subcategory": "award-medal",
+ "sort_order": 1062,
+ "added_in": "3.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "FACE WITH OPEN MOUTH AND COLD SWEAT",
- "unified": "1F630",
+ "name": "SECOND PLACE MEDAL",
+ "unified": "1F948",
"non_qualified": null,
- "docomo": "E723",
- "au": "EACB",
- "softbank": "E40F",
- "google": "FE325",
- "image": "1f630.png",
- "sheet_x": 31,
- "sheet_y": 38,
- "short_name": "cold_sweat",
- "short_names": ["cold_sweat"],
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f948.png",
+ "sheet_x": 43,
+ "sheet_y": 20,
+ "short_name": "second_place_medal",
+ "short_names": ["second_place_medal"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 64,
- "added_in": "6.0",
+ "category": "Activities",
+ "subcategory": "award-medal",
+ "sort_order": 1063,
+ "added_in": "3.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "FACE SCREAMING IN FEAR",
- "unified": "1F631",
- "non_qualified": null,
- "docomo": "E757",
- "au": "E5C5",
- "softbank": "E107",
- "google": "FE341",
- "image": "1f631.png",
- "sheet_x": 31,
- "sheet_y": 39,
- "short_name": "scream",
- "short_names": ["scream"],
+ "name": "THIRD PLACE MEDAL",
+ "unified": "1F949",
+ "non_qualified": null,
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f949.png",
+ "sheet_x": 43,
+ "sheet_y": 21,
+ "short_name": "third_place_medal",
+ "short_names": ["third_place_medal"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 65,
- "added_in": "6.0",
+ "category": "Activities",
+ "subcategory": "award-medal",
+ "sort_order": 1064,
+ "added_in": "3.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "ASTONISHED FACE",
- "unified": "1F632",
+ "name": "BOXING GLOVE",
+ "unified": "1F94A",
"non_qualified": null,
- "docomo": "E6F4",
- "au": "EACA",
- "softbank": "E410",
- "google": "FE322",
- "image": "1f632.png",
- "sheet_x": 31,
- "sheet_y": 40,
- "short_name": "astonished",
- "short_names": ["astonished"],
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f94a.png",
+ "sheet_x": 43,
+ "sheet_y": 22,
+ "short_name": "boxing_glove",
+ "short_names": ["boxing_glove"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 49,
- "added_in": "6.0",
+ "category": "Activities",
+ "subcategory": "sport",
+ "sort_order": 1081,
+ "added_in": "3.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "FLUSHED FACE",
- "unified": "1F633",
+ "name": "MARTIAL ARTS UNIFORM",
+ "unified": "1F94B",
"non_qualified": null,
- "docomo": "E72A",
- "au": "EAC8",
- "softbank": "E40D",
- "google": "FE32F",
- "image": "1f633.png",
- "sheet_x": 31,
- "sheet_y": 41,
- "short_name": "flushed",
- "short_names": ["flushed"],
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f94b.png",
+ "sheet_x": 43,
+ "sheet_y": 23,
+ "short_name": "martial_arts_uniform",
+ "short_names": ["martial_arts_uniform"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 68,
- "added_in": "6.0",
+ "category": "Activities",
+ "subcategory": "sport",
+ "sort_order": 1082,
+ "added_in": "3.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "SLEEPING FACE",
- "unified": "1F634",
+ "name": "CURLING STONE",
+ "unified": "1F94C",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f634.png",
- "sheet_x": 31,
- "sheet_y": 42,
- "short_name": "sleeping",
- "short_names": ["sleeping"],
+ "image": "1f94c.png",
+ "sheet_x": 43,
+ "sheet_y": 24,
+ "short_name": "curling_stone",
+ "short_names": ["curling_stone"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 37,
- "added_in": "6.1",
+ "category": "Activities",
+ "subcategory": "sport",
+ "sort_order": 1091,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "DIZZY FACE",
- "unified": "1F635",
+ "name": "LACROSSE STICK AND BALL",
+ "unified": "1F94D",
"non_qualified": null,
- "docomo": "E6F4",
- "au": "E5AE",
+ "docomo": null,
+ "au": null,
"softbank": null,
- "google": "FE324",
- "image": "1f635.png",
- "sheet_x": 31,
- "sheet_y": 43,
- "short_name": "dizzy_face",
- "short_names": ["dizzy_face"],
+ "google": null,
+ "image": "1f94d.png",
+ "sheet_x": 43,
+ "sheet_y": 25,
+ "short_name": "lacrosse",
+ "short_names": ["lacrosse"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 70,
- "added_in": "6.0",
+ "category": "Activities",
+ "subcategory": "sport",
+ "sort_order": 1078,
+ "added_in": "11.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "FACE WITHOUT MOUTH",
- "unified": "1F636",
+ "name": "SOFTBALL",
+ "unified": "1F94E",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f636.png",
- "sheet_x": 31,
- "sheet_y": 44,
- "short_name": "no_mouth",
- "short_names": ["no_mouth"],
+ "image": "1f94e.png",
+ "sheet_x": 43,
+ "sheet_y": 26,
+ "short_name": "softball",
+ "short_names": ["softball"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 27,
- "added_in": "6.0",
+ "category": "Activities",
+ "subcategory": "sport",
+ "sort_order": 1067,
+ "added_in": "11.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "FACE WITH MEDICAL MASK",
- "unified": "1F637",
+ "name": "FLYING DISC",
+ "unified": "1F94F",
"non_qualified": null,
"docomo": null,
- "au": "EAC7",
- "softbank": "E40C",
- "google": "FE32E",
- "image": "1f637.png",
- "sheet_x": 31,
- "sheet_y": 45,
- "short_name": "mask",
- "short_names": ["mask"],
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f94f.png",
+ "sheet_x": 43,
+ "sheet_y": 27,
+ "short_name": "flying_disc",
+ "short_names": ["flying_disc"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 74,
- "added_in": "6.0",
+ "category": "Activities",
+ "subcategory": "sport",
+ "sort_order": 1073,
+ "added_in": "11.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "GRINNING CAT FACE WITH SMILING EYES",
- "unified": "1F638",
+ "name": "CROISSANT",
+ "unified": "1F950",
"non_qualified": null,
- "docomo": "E753",
- "au": "EB7F",
+ "docomo": null,
+ "au": null,
"softbank": null,
- "google": "FE349",
- "image": "1f638.png",
- "sheet_x": 31,
- "sheet_y": 46,
- "short_name": "smile_cat",
- "short_names": ["smile_cat"],
+ "google": null,
+ "image": "1f950.png",
+ "sheet_x": 43,
+ "sheet_y": 28,
+ "short_name": "croissant",
+ "short_names": ["croissant"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 103,
- "added_in": "6.0",
+ "category": "Food & Drink",
+ "subcategory": "food-prepared",
+ "sort_order": 724,
+ "added_in": "3.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "CAT FACE WITH TEARS OF JOY",
- "unified": "1F639",
+ "name": "AVOCADO",
+ "unified": "1F951",
"non_qualified": null,
- "docomo": "E72A",
- "au": "EB63",
+ "docomo": null,
+ "au": null,
"softbank": null,
- "google": "FE34A",
- "image": "1f639.png",
- "sheet_x": 31,
- "sheet_y": 47,
- "short_name": "joy_cat",
- "short_names": ["joy_cat"],
+ "google": null,
+ "image": "1f951.png",
+ "sheet_x": 43,
+ "sheet_y": 29,
+ "short_name": "avocado",
+ "short_names": ["avocado"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 104,
- "added_in": "6.0",
+ "category": "Food & Drink",
+ "subcategory": "food-vegetable",
+ "sort_order": 706,
+ "added_in": "3.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "SMILING CAT FACE WITH OPEN MOUTH",
- "unified": "1F63A",
+ "name": "CUCUMBER",
+ "unified": "1F952",
"non_qualified": null,
- "docomo": "E6F0",
- "au": "EB61",
+ "docomo": null,
+ "au": null,
"softbank": null,
- "google": "FE348",
- "image": "1f63a.png",
- "sheet_x": 31,
- "sheet_y": 48,
- "short_name": "smiley_cat",
- "short_names": ["smiley_cat"],
+ "google": null,
+ "image": "1f952.png",
+ "sheet_x": 43,
+ "sheet_y": 30,
+ "short_name": "cucumber",
+ "short_names": ["cucumber"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 102,
- "added_in": "6.0",
+ "category": "Food & Drink",
+ "subcategory": "food-vegetable",
+ "sort_order": 713,
+ "added_in": "3.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "SMILING CAT FACE WITH HEART-SHAPED EYES",
- "unified": "1F63B",
+ "name": "BACON",
+ "unified": "1F953",
"non_qualified": null,
- "docomo": "E726",
- "au": "EB65",
+ "docomo": null,
+ "au": null,
"softbank": null,
- "google": "FE34C",
- "image": "1f63b.png",
- "sheet_x": 31,
- "sheet_y": 49,
- "short_name": "heart_eyes_cat",
- "short_names": ["heart_eyes_cat"],
+ "google": null,
+ "image": "1f953.png",
+ "sheet_x": 43,
+ "sheet_y": 31,
+ "short_name": "bacon",
+ "short_names": ["bacon"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 105,
- "added_in": "6.0",
+ "category": "Food & Drink",
+ "subcategory": "food-prepared",
+ "sort_order": 735,
+ "added_in": "3.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "CAT FACE WITH WRY SMILE",
- "unified": "1F63C",
+ "name": "POTATO",
+ "unified": "1F954",
"non_qualified": null,
- "docomo": "E753",
- "au": "EB6A",
+ "docomo": null,
+ "au": null,
"softbank": null,
- "google": "FE34F",
- "image": "1f63c.png",
- "sheet_x": 31,
- "sheet_y": 50,
- "short_name": "smirk_cat",
- "short_names": ["smirk_cat"],
+ "google": null,
+ "image": "1f954.png",
+ "sheet_x": 43,
+ "sheet_y": 32,
+ "short_name": "potato",
+ "short_names": ["potato"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 106,
- "added_in": "6.0",
+ "category": "Food & Drink",
+ "subcategory": "food-vegetable",
+ "sort_order": 708,
+ "added_in": "3.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "KISSING CAT FACE WITH CLOSED EYES",
- "unified": "1F63D",
+ "name": "CARROT",
+ "unified": "1F955",
"non_qualified": null,
- "docomo": "E726",
- "au": "EB60",
+ "docomo": null,
+ "au": null,
"softbank": null,
- "google": "FE34B",
- "image": "1f63d.png",
- "sheet_x": 31,
- "sheet_y": 51,
- "short_name": "kissing_cat",
- "short_names": ["kissing_cat"],
+ "google": null,
+ "image": "1f955.png",
+ "sheet_x": 43,
+ "sheet_y": 33,
+ "short_name": "carrot",
+ "short_names": ["carrot"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 107,
- "added_in": "6.0",
+ "category": "Food & Drink",
+ "subcategory": "food-vegetable",
+ "sort_order": 709,
+ "added_in": "3.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "POUTING CAT FACE",
- "unified": "1F63E",
+ "name": "BAGUETTE BREAD",
+ "unified": "1F956",
"non_qualified": null,
- "docomo": "E724",
- "au": "EB5E",
+ "docomo": null,
+ "au": null,
"softbank": null,
- "google": "FE34E",
- "image": "1f63e.png",
- "sheet_x": 31,
- "sheet_y": 52,
- "short_name": "pouting_cat",
- "short_names": ["pouting_cat"],
+ "google": null,
+ "image": "1f956.png",
+ "sheet_x": 43,
+ "sheet_y": 34,
+ "short_name": "baguette_bread",
+ "short_names": ["baguette_bread"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 110,
- "added_in": "6.0",
+ "category": "Food & Drink",
+ "subcategory": "food-prepared",
+ "sort_order": 725,
+ "added_in": "3.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "CRYING CAT FACE",
- "unified": "1F63F",
+ "name": "GREEN SALAD",
+ "unified": "1F957",
"non_qualified": null,
- "docomo": "E72E",
- "au": "EB68",
+ "docomo": null,
+ "au": null,
"softbank": null,
- "google": "FE34D",
- "image": "1f63f.png",
- "sheet_x": 32,
- "sheet_y": 0,
- "short_name": "crying_cat_face",
- "short_names": ["crying_cat_face"],
+ "google": null,
+ "image": "1f957.png",
+ "sheet_x": 43,
+ "sheet_y": 35,
+ "short_name": "green_salad",
+ "short_names": ["green_salad"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 109,
- "added_in": "6.0",
+ "category": "Food & Drink",
+ "subcategory": "food-prepared",
+ "sort_order": 752,
+ "added_in": "3.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "WEARY CAT FACE",
- "unified": "1F640",
+ "name": "SHALLOW PAN OF FOOD",
+ "unified": "1F958",
"non_qualified": null,
- "docomo": "E6F3",
- "au": "EB66",
+ "docomo": null,
+ "au": null,
"softbank": null,
- "google": "FE350",
- "image": "1f640.png",
- "sheet_x": 32,
- "sheet_y": 1,
- "short_name": "scream_cat",
- "short_names": ["scream_cat"],
+ "google": null,
+ "image": "1f958.png",
+ "sheet_x": 43,
+ "sheet_y": 36,
+ "short_name": "shallow_pan_of_food",
+ "short_names": ["shallow_pan_of_food"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 108,
- "added_in": "6.0",
+ "category": "Food & Drink",
+ "subcategory": "food-prepared",
+ "sort_order": 748,
+ "added_in": "3.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "SLIGHTLY FROWNING FACE",
- "unified": "1F641",
+ "name": "STUFFED FLATBREAD",
+ "unified": "1F959",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f641.png",
- "sheet_x": 32,
- "sheet_y": 2,
- "short_name": "slightly_frowning_face",
- "short_names": ["slightly_frowning_face"],
+ "image": "1f959.png",
+ "sheet_x": 43,
+ "sheet_y": 37,
+ "short_name": "stuffed_flatbread",
+ "short_names": ["stuffed_flatbread"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 51,
- "added_in": "7.0",
+ "category": "Food & Drink",
+ "subcategory": "food-prepared",
+ "sort_order": 744,
+ "added_in": "3.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
- "name": "SLIGHTLY SMILING FACE",
- "unified": "1F642",
+ "name": "EGG",
+ "unified": "1F95A",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f642.png",
- "sheet_x": 32,
- "sheet_y": 3,
- "short_name": "slightly_smiling_face",
- "short_names": ["slightly_smiling_face"],
+ "image": "1f95a.png",
+ "sheet_x": 43,
+ "sheet_y": 38,
+ "short_name": "egg",
+ "short_names": ["egg"],
"text": null,
- "texts": [":)", "(:", ":-)"],
- "category": "Smileys & People",
- "sort_order": 20,
- "added_in": "7.0",
+ "texts": null,
+ "category": "Food & Drink",
+ "subcategory": "food-prepared",
+ "sort_order": 746,
+ "added_in": "3.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "UPSIDE-DOWN FACE",
- "unified": "1F643",
+ "name": "GLASS OF MILK",
+ "unified": "1F95B",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f643.png",
- "sheet_x": 32,
- "sheet_y": 4,
- "short_name": "upside_down_face",
- "short_names": ["upside_down_face"],
+ "image": "1f95b.png",
+ "sheet_x": 43,
+ "sheet_y": 39,
+ "short_name": "glass_of_milk",
+ "short_names": ["glass_of_milk"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 47,
- "added_in": "8.0",
+ "category": "Food & Drink",
+ "subcategory": "drink",
+ "sort_order": 794,
+ "added_in": "3.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
- "name": "FACE WITH ROLLING EYES",
- "unified": "1F644",
+ "name": "PEANUTS",
+ "unified": "1F95C",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f644.png",
- "sheet_x": 32,
- "sheet_y": 5,
- "short_name": "face_with_rolling_eyes",
- "short_names": ["face_with_rolling_eyes"],
+ "image": "1f95c.png",
+ "sheet_x": 43,
+ "sheet_y": 40,
+ "short_name": "peanuts",
+ "short_names": ["peanuts"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 28,
- "added_in": "8.0",
+ "category": "Food & Drink",
+ "subcategory": "food-vegetable",
+ "sort_order": 718,
+ "added_in": "3.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
- "name": null,
- "unified": "1F645-200D-2640-FE0F",
- "non_qualified": "1F645-200D-2640",
+ "name": "KIWIFRUIT",
+ "unified": "1F95D",
+ "non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f645-200d-2640-fe0f.png",
- "sheet_x": 32,
- "sheet_y": 6,
- "short_name": "woman-gesturing-no",
- "short_names": ["woman-gesturing-no"],
+ "image": "1f95d.png",
+ "sheet_x": 43,
+ "sheet_y": 41,
+ "short_name": "kiwifruit",
+ "short_names": ["kiwifruit"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 223,
- "added_in": "6.0",
+ "category": "Food & Drink",
+ "subcategory": "food-fruit",
+ "sort_order": 702,
+ "added_in": "3.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F645-1F3FB-200D-2640-FE0F",
- "non_qualified": "1F645-1F3FB-200D-2640",
- "image": "1f645-1f3fb-200d-2640-fe0f.png",
- "sheet_x": 32,
- "sheet_y": 7,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F645-1F3FC-200D-2640-FE0F",
- "non_qualified": "1F645-1F3FC-200D-2640",
- "image": "1f645-1f3fc-200d-2640-fe0f.png",
- "sheet_x": 32,
- "sheet_y": 8,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F645-1F3FD-200D-2640-FE0F",
- "non_qualified": "1F645-1F3FD-200D-2640",
- "image": "1f645-1f3fd-200d-2640-fe0f.png",
- "sheet_x": 32,
- "sheet_y": 9,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F645-1F3FE-200D-2640-FE0F",
- "non_qualified": "1F645-1F3FE-200D-2640",
- "image": "1f645-1f3fe-200d-2640-fe0f.png",
- "sheet_x": 32,
- "sheet_y": 10,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F645-1F3FF-200D-2640-FE0F",
- "non_qualified": "1F645-1F3FF-200D-2640",
- "image": "1f645-1f3ff-200d-2640-fe0f.png",
- "sheet_x": 32,
- "sheet_y": 11,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- },
- "obsoletes": "1F645"
+ "has_img_facebook": true
+ },
+ {
+ "name": "PANCAKES",
+ "unified": "1F95E",
+ "non_qualified": null,
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f95e.png",
+ "sheet_x": 43,
+ "sheet_y": 42,
+ "short_name": "pancakes",
+ "short_names": ["pancakes"],
+ "text": null,
+ "texts": null,
+ "category": "Food & Drink",
+ "subcategory": "food-prepared",
+ "sort_order": 729,
+ "added_in": "3.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
},
{
- "name": null,
- "unified": "1F645-200D-2642-FE0F",
- "non_qualified": "1F645-200D-2642",
+ "name": "DUMPLING",
+ "unified": "1F95F",
+ "non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f645-200d-2642-fe0f.png",
- "sheet_x": 32,
- "sheet_y": 12,
- "short_name": "man-gesturing-no",
- "short_names": ["man-gesturing-no"],
+ "image": "1f95f.png",
+ "sheet_x": 43,
+ "sheet_y": 43,
+ "short_name": "dumpling",
+ "short_names": ["dumpling"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 222,
- "added_in": "6.0",
+ "category": "Food & Drink",
+ "subcategory": "food-asian",
+ "sort_order": 771,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F645-1F3FB-200D-2642-FE0F",
- "non_qualified": "1F645-1F3FB-200D-2642",
- "image": "1f645-1f3fb-200d-2642-fe0f.png",
- "sheet_x": 32,
- "sheet_y": 13,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F645-1F3FC-200D-2642-FE0F",
- "non_qualified": "1F645-1F3FC-200D-2642",
- "image": "1f645-1f3fc-200d-2642-fe0f.png",
- "sheet_x": 32,
- "sheet_y": 14,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F645-1F3FD-200D-2642-FE0F",
- "non_qualified": "1F645-1F3FD-200D-2642",
- "image": "1f645-1f3fd-200d-2642-fe0f.png",
- "sheet_x": 32,
- "sheet_y": 15,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F645-1F3FE-200D-2642-FE0F",
- "non_qualified": "1F645-1F3FE-200D-2642",
- "image": "1f645-1f3fe-200d-2642-fe0f.png",
- "sheet_x": 32,
- "sheet_y": 16,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F645-1F3FF-200D-2642-FE0F",
- "non_qualified": "1F645-1F3FF-200D-2642",
- "image": "1f645-1f3ff-200d-2642-fe0f.png",
- "sheet_x": 32,
- "sheet_y": 17,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- }
+ "has_img_facebook": true
},
{
- "name": "FACE WITH NO GOOD GESTURE",
- "unified": "1F645",
+ "name": "FORTUNE COOKIE",
+ "unified": "1F960",
"non_qualified": null,
- "docomo": "E72F",
- "au": "EAD7",
- "softbank": "E423",
- "google": "FE351",
- "image": "1f645.png",
- "sheet_x": 32,
- "sheet_y": 18,
- "short_name": "no_good",
- "short_names": ["no_good"],
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f960.png",
+ "sheet_x": 43,
+ "sheet_y": 44,
+ "short_name": "fortune_cookie",
+ "short_names": ["fortune_cookie"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 221,
- "added_in": "6.0",
+ "category": "Food & Drink",
+ "subcategory": "food-asian",
+ "sort_order": 772,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": true,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F645-1F3FB",
- "non_qualified": null,
- "image": "1f645-1f3fb.png",
- "sheet_x": 32,
- "sheet_y": 19,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": true
- },
- "1F3FC": {
- "unified": "1F645-1F3FC",
- "non_qualified": null,
- "image": "1f645-1f3fc.png",
- "sheet_x": 32,
- "sheet_y": 20,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": true
- },
- "1F3FD": {
- "unified": "1F645-1F3FD",
- "non_qualified": null,
- "image": "1f645-1f3fd.png",
- "sheet_x": 32,
- "sheet_y": 21,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": true
- },
- "1F3FE": {
- "unified": "1F645-1F3FE",
- "non_qualified": null,
- "image": "1f645-1f3fe.png",
- "sheet_x": 32,
- "sheet_y": 22,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": true
- },
- "1F3FF": {
- "unified": "1F645-1F3FF",
- "non_qualified": null,
- "image": "1f645-1f3ff.png",
- "sheet_x": 32,
- "sheet_y": 23,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": true
- }
- },
- "obsoleted_by": "1F645-200D-2640-FE0F"
+ "has_img_facebook": true
},
{
- "name": null,
- "unified": "1F646-200D-2640-FE0F",
- "non_qualified": "1F646-200D-2640",
+ "name": "TAKEOUT BOX",
+ "unified": "1F961",
+ "non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f646-200d-2640-fe0f.png",
- "sheet_x": 32,
- "sheet_y": 24,
- "short_name": "woman-gesturing-ok",
- "short_names": ["woman-gesturing-ok"],
+ "image": "1f961.png",
+ "sheet_x": 43,
+ "sheet_y": 45,
+ "short_name": "takeout_box",
+ "short_names": ["takeout_box"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 226,
- "added_in": "6.0",
+ "category": "Food & Drink",
+ "subcategory": "food-asian",
+ "sort_order": 773,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F646-1F3FB-200D-2640-FE0F",
- "non_qualified": "1F646-1F3FB-200D-2640",
- "image": "1f646-1f3fb-200d-2640-fe0f.png",
- "sheet_x": 32,
- "sheet_y": 25,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F646-1F3FC-200D-2640-FE0F",
- "non_qualified": "1F646-1F3FC-200D-2640",
- "image": "1f646-1f3fc-200d-2640-fe0f.png",
- "sheet_x": 32,
- "sheet_y": 26,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F646-1F3FD-200D-2640-FE0F",
- "non_qualified": "1F646-1F3FD-200D-2640",
- "image": "1f646-1f3fd-200d-2640-fe0f.png",
- "sheet_x": 32,
- "sheet_y": 27,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F646-1F3FE-200D-2640-FE0F",
- "non_qualified": "1F646-1F3FE-200D-2640",
- "image": "1f646-1f3fe-200d-2640-fe0f.png",
- "sheet_x": 32,
- "sheet_y": 28,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F646-1F3FF-200D-2640-FE0F",
- "non_qualified": "1F646-1F3FF-200D-2640",
- "image": "1f646-1f3ff-200d-2640-fe0f.png",
- "sheet_x": 32,
- "sheet_y": 29,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- },
- "obsoletes": "1F646"
+ "has_img_facebook": true
},
{
- "name": null,
- "unified": "1F646-200D-2642-FE0F",
- "non_qualified": "1F646-200D-2642",
+ "name": "CHOPSTICKS",
+ "unified": "1F962",
+ "non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f646-200d-2642-fe0f.png",
- "sheet_x": 32,
- "sheet_y": 30,
- "short_name": "man-gesturing-ok",
- "short_names": ["man-gesturing-ok"],
+ "image": "1f962.png",
+ "sheet_x": 43,
+ "sheet_y": 46,
+ "short_name": "chopsticks",
+ "short_names": ["chopsticks"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 225,
- "added_in": "6.0",
+ "category": "Food & Drink",
+ "subcategory": "dishware",
+ "sort_order": 813,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F646-1F3FB-200D-2642-FE0F",
- "non_qualified": "1F646-1F3FB-200D-2642",
- "image": "1f646-1f3fb-200d-2642-fe0f.png",
- "sheet_x": 32,
- "sheet_y": 31,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F646-1F3FC-200D-2642-FE0F",
- "non_qualified": "1F646-1F3FC-200D-2642",
- "image": "1f646-1f3fc-200d-2642-fe0f.png",
- "sheet_x": 32,
- "sheet_y": 32,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F646-1F3FD-200D-2642-FE0F",
- "non_qualified": "1F646-1F3FD-200D-2642",
- "image": "1f646-1f3fd-200d-2642-fe0f.png",
- "sheet_x": 32,
- "sheet_y": 33,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F646-1F3FE-200D-2642-FE0F",
- "non_qualified": "1F646-1F3FE-200D-2642",
- "image": "1f646-1f3fe-200d-2642-fe0f.png",
- "sheet_x": 32,
- "sheet_y": 34,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F646-1F3FF-200D-2642-FE0F",
- "non_qualified": "1F646-1F3FF-200D-2642",
- "image": "1f646-1f3ff-200d-2642-fe0f.png",
- "sheet_x": 32,
- "sheet_y": 35,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- }
+ "has_img_facebook": true
},
{
- "name": "FACE WITH OK GESTURE",
- "unified": "1F646",
+ "name": "BOWL WITH SPOON",
+ "unified": "1F963",
"non_qualified": null,
- "docomo": "E70B",
- "au": "EAD8",
- "softbank": "E424",
- "google": "FE352",
- "image": "1f646.png",
- "sheet_x": 32,
- "sheet_y": 36,
- "short_name": "ok_woman",
- "short_names": ["ok_woman"],
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f963.png",
+ "sheet_x": 43,
+ "sheet_y": 47,
+ "short_name": "bowl_with_spoon",
+ "short_names": ["bowl_with_spoon"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 224,
- "added_in": "6.0",
+ "category": "Food & Drink",
+ "subcategory": "food-prepared",
+ "sort_order": 751,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": true,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F646-1F3FB",
- "non_qualified": null,
- "image": "1f646-1f3fb.png",
- "sheet_x": 32,
- "sheet_y": 37,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": true
- },
- "1F3FC": {
- "unified": "1F646-1F3FC",
- "non_qualified": null,
- "image": "1f646-1f3fc.png",
- "sheet_x": 32,
- "sheet_y": 38,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": true
- },
- "1F3FD": {
- "unified": "1F646-1F3FD",
- "non_qualified": null,
- "image": "1f646-1f3fd.png",
- "sheet_x": 32,
- "sheet_y": 39,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": true
- },
- "1F3FE": {
- "unified": "1F646-1F3FE",
- "non_qualified": null,
- "image": "1f646-1f3fe.png",
- "sheet_x": 32,
- "sheet_y": 40,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": true
- },
- "1F3FF": {
- "unified": "1F646-1F3FF",
- "non_qualified": null,
- "image": "1f646-1f3ff.png",
- "sheet_x": 32,
- "sheet_y": 41,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": true
- }
- },
- "obsoleted_by": "1F646-200D-2640-FE0F"
+ "has_img_facebook": true
},
{
- "name": null,
- "unified": "1F647-200D-2640-FE0F",
- "non_qualified": "1F647-200D-2640",
+ "name": "CUP WITH STRAW",
+ "unified": "1F964",
+ "non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f647-200d-2640-fe0f.png",
- "sheet_x": 32,
- "sheet_y": 42,
- "short_name": "woman-bowing",
- "short_names": ["woman-bowing"],
+ "image": "1f964.png",
+ "sheet_x": 43,
+ "sheet_y": 48,
+ "short_name": "cup_with_straw",
+ "short_names": ["cup_with_straw"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 235,
- "added_in": "6.0",
+ "category": "Food & Drink",
+ "subcategory": "drink",
+ "sort_order": 808,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F647-1F3FB-200D-2640-FE0F",
- "non_qualified": "1F647-1F3FB-200D-2640",
- "image": "1f647-1f3fb-200d-2640-fe0f.png",
- "sheet_x": 32,
- "sheet_y": 43,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F647-1F3FC-200D-2640-FE0F",
- "non_qualified": "1F647-1F3FC-200D-2640",
- "image": "1f647-1f3fc-200d-2640-fe0f.png",
- "sheet_x": 32,
- "sheet_y": 44,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F647-1F3FD-200D-2640-FE0F",
- "non_qualified": "1F647-1F3FD-200D-2640",
- "image": "1f647-1f3fd-200d-2640-fe0f.png",
- "sheet_x": 32,
- "sheet_y": 45,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F647-1F3FE-200D-2640-FE0F",
- "non_qualified": "1F647-1F3FE-200D-2640",
- "image": "1f647-1f3fe-200d-2640-fe0f.png",
- "sheet_x": 32,
- "sheet_y": 46,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F647-1F3FF-200D-2640-FE0F",
- "non_qualified": "1F647-1F3FF-200D-2640",
- "image": "1f647-1f3ff-200d-2640-fe0f.png",
- "sheet_x": 32,
- "sheet_y": 47,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- }
+ "has_img_facebook": true
},
{
- "name": null,
- "unified": "1F647-200D-2642-FE0F",
- "non_qualified": "1F647-200D-2642",
+ "name": "COCONUT",
+ "unified": "1F965",
+ "non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f647-200d-2642-fe0f.png",
- "sheet_x": 32,
- "sheet_y": 48,
- "short_name": "man-bowing",
- "short_names": ["man-bowing"],
+ "image": "1f965.png",
+ "sheet_x": 43,
+ "sheet_y": 49,
+ "short_name": "coconut",
+ "short_names": ["coconut"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 234,
- "added_in": "6.0",
+ "category": "Food & Drink",
+ "subcategory": "food-fruit",
+ "sort_order": 705,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F647-1F3FB-200D-2642-FE0F",
- "non_qualified": "1F647-1F3FB-200D-2642",
- "image": "1f647-1f3fb-200d-2642-fe0f.png",
- "sheet_x": 32,
- "sheet_y": 49,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F647-1F3FC-200D-2642-FE0F",
- "non_qualified": "1F647-1F3FC-200D-2642",
- "image": "1f647-1f3fc-200d-2642-fe0f.png",
- "sheet_x": 32,
- "sheet_y": 50,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F647-1F3FD-200D-2642-FE0F",
- "non_qualified": "1F647-1F3FD-200D-2642",
- "image": "1f647-1f3fd-200d-2642-fe0f.png",
- "sheet_x": 32,
- "sheet_y": 51,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F647-1F3FE-200D-2642-FE0F",
- "non_qualified": "1F647-1F3FE-200D-2642",
- "image": "1f647-1f3fe-200d-2642-fe0f.png",
- "sheet_x": 32,
- "sheet_y": 52,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F647-1F3FF-200D-2642-FE0F",
- "non_qualified": "1F647-1F3FF-200D-2642",
- "image": "1f647-1f3ff-200d-2642-fe0f.png",
- "sheet_x": 33,
- "sheet_y": 0,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- },
- "obsoletes": "1F647"
+ "has_img_facebook": true
},
{
- "name": "PERSON BOWING DEEPLY",
- "unified": "1F647",
+ "name": "BROCCOLI",
+ "unified": "1F966",
+ "non_qualified": null,
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f966.png",
+ "sheet_x": 43,
+ "sheet_y": 50,
+ "short_name": "broccoli",
+ "short_names": ["broccoli"],
+ "text": null,
+ "texts": null,
+ "category": "Food & Drink",
+ "subcategory": "food-vegetable",
+ "sort_order": 715,
+ "added_in": "5.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "PIE",
+ "unified": "1F967",
"non_qualified": null,
"docomo": null,
- "au": "EAD9",
- "softbank": "E426",
- "google": "FE353",
- "image": "1f647.png",
- "sheet_x": 33,
- "sheet_y": 1,
- "short_name": "bow",
- "short_names": ["bow"],
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f967.png",
+ "sheet_x": 43,
+ "sheet_y": 51,
+ "short_name": "pie",
+ "short_names": ["pie"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 233,
- "added_in": "6.0",
+ "category": "Food & Drink",
+ "subcategory": "food-sweet",
+ "sort_order": 787,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": true,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F647-1F3FB",
- "non_qualified": null,
- "image": "1f647-1f3fb.png",
- "sheet_x": 33,
- "sheet_y": 2,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": true
- },
- "1F3FC": {
- "unified": "1F647-1F3FC",
- "non_qualified": null,
- "image": "1f647-1f3fc.png",
- "sheet_x": 33,
- "sheet_y": 3,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": true
- },
- "1F3FD": {
- "unified": "1F647-1F3FD",
- "non_qualified": null,
- "image": "1f647-1f3fd.png",
- "sheet_x": 33,
- "sheet_y": 4,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": true
- },
- "1F3FE": {
- "unified": "1F647-1F3FE",
- "non_qualified": null,
- "image": "1f647-1f3fe.png",
- "sheet_x": 33,
- "sheet_y": 5,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": true
- },
- "1F3FF": {
- "unified": "1F647-1F3FF",
- "non_qualified": null,
- "image": "1f647-1f3ff.png",
- "sheet_x": 33,
- "sheet_y": 6,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": true
- }
- },
- "obsoleted_by": "1F647-200D-2642-FE0F"
+ "has_img_facebook": true
},
{
- "name": "SEE-NO-EVIL MONKEY",
- "unified": "1F648",
+ "name": "PRETZEL",
+ "unified": "1F968",
"non_qualified": null,
"docomo": null,
- "au": "EB50",
+ "au": null,
"softbank": null,
- "google": "FE354",
- "image": "1f648.png",
- "sheet_x": 33,
- "sheet_y": 7,
- "short_name": "see_no_evil",
- "short_names": ["see_no_evil"],
+ "google": null,
+ "image": "1f968.png",
+ "sheet_x": 43,
+ "sheet_y": 52,
+ "short_name": "pretzel",
+ "short_names": ["pretzel"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 111,
- "added_in": "6.0",
+ "category": "Food & Drink",
+ "subcategory": "food-prepared",
+ "sort_order": 727,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "HEAR-NO-EVIL MONKEY",
- "unified": "1F649",
+ "name": "CUT OF MEAT",
+ "unified": "1F969",
"non_qualified": null,
"docomo": null,
- "au": "EB52",
+ "au": null,
"softbank": null,
- "google": "FE356",
- "image": "1f649.png",
- "sheet_x": 33,
- "sheet_y": 8,
- "short_name": "hear_no_evil",
- "short_names": ["hear_no_evil"],
+ "google": null,
+ "image": "1f969.png",
+ "sheet_x": 43,
+ "sheet_y": 53,
+ "short_name": "cut_of_meat",
+ "short_names": ["cut_of_meat"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 112,
- "added_in": "6.0",
+ "category": "Food & Drink",
+ "subcategory": "food-prepared",
+ "sort_order": 734,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "SPEAK-NO-EVIL MONKEY",
- "unified": "1F64A",
+ "name": "SANDWICH",
+ "unified": "1F96A",
"non_qualified": null,
"docomo": null,
- "au": "EB51",
+ "au": null,
"softbank": null,
- "google": "FE355",
- "image": "1f64a.png",
- "sheet_x": 33,
- "sheet_y": 9,
- "short_name": "speak_no_evil",
- "short_names": ["speak_no_evil"],
+ "google": null,
+ "image": "1f96a.png",
+ "sheet_x": 43,
+ "sheet_y": 54,
+ "short_name": "sandwich",
+ "short_names": ["sandwich"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 113,
- "added_in": "6.0",
+ "category": "Food & Drink",
+ "subcategory": "food-prepared",
+ "sort_order": 740,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": null,
- "unified": "1F64B-200D-2640-FE0F",
- "non_qualified": "1F64B-200D-2640",
+ "name": "CANNED FOOD",
+ "unified": "1F96B",
+ "non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f64b-200d-2640-fe0f.png",
- "sheet_x": 33,
- "sheet_y": 10,
- "short_name": "woman-raising-hand",
- "short_names": ["woman-raising-hand"],
+ "image": "1f96b.png",
+ "sheet_x": 43,
+ "sheet_y": 55,
+ "short_name": "canned_food",
+ "short_names": ["canned_food"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 232,
- "added_in": "6.0",
+ "category": "Food & Drink",
+ "subcategory": "food-prepared",
+ "sort_order": 756,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F64B-1F3FB-200D-2640-FE0F",
- "non_qualified": "1F64B-1F3FB-200D-2640",
- "image": "1f64b-1f3fb-200d-2640-fe0f.png",
- "sheet_x": 33,
- "sheet_y": 11,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F64B-1F3FC-200D-2640-FE0F",
- "non_qualified": "1F64B-1F3FC-200D-2640",
- "image": "1f64b-1f3fc-200d-2640-fe0f.png",
- "sheet_x": 33,
- "sheet_y": 12,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F64B-1F3FD-200D-2640-FE0F",
- "non_qualified": "1F64B-1F3FD-200D-2640",
- "image": "1f64b-1f3fd-200d-2640-fe0f.png",
- "sheet_x": 33,
- "sheet_y": 13,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F64B-1F3FE-200D-2640-FE0F",
- "non_qualified": "1F64B-1F3FE-200D-2640",
- "image": "1f64b-1f3fe-200d-2640-fe0f.png",
- "sheet_x": 33,
- "sheet_y": 14,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F64B-1F3FF-200D-2640-FE0F",
- "non_qualified": "1F64B-1F3FF-200D-2640",
- "image": "1f64b-1f3ff-200d-2640-fe0f.png",
- "sheet_x": 33,
- "sheet_y": 15,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- },
- "obsoletes": "1F64B"
+ "has_img_facebook": true
},
{
- "name": null,
- "unified": "1F64B-200D-2642-FE0F",
- "non_qualified": "1F64B-200D-2642",
+ "name": "LEAFY GREEN",
+ "unified": "1F96C",
+ "non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f64b-200d-2642-fe0f.png",
- "sheet_x": 33,
- "sheet_y": 16,
- "short_name": "man-raising-hand",
- "short_names": ["man-raising-hand"],
+ "image": "1f96c.png",
+ "sheet_x": 43,
+ "sheet_y": 56,
+ "short_name": "leafy_green",
+ "short_names": ["leafy_green"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 231,
- "added_in": "6.0",
+ "category": "Food & Drink",
+ "subcategory": "food-vegetable",
+ "sort_order": 714,
+ "added_in": "11.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F64B-1F3FB-200D-2642-FE0F",
- "non_qualified": "1F64B-1F3FB-200D-2642",
- "image": "1f64b-1f3fb-200d-2642-fe0f.png",
- "sheet_x": 33,
- "sheet_y": 17,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F64B-1F3FC-200D-2642-FE0F",
- "non_qualified": "1F64B-1F3FC-200D-2642",
- "image": "1f64b-1f3fc-200d-2642-fe0f.png",
- "sheet_x": 33,
- "sheet_y": 18,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F64B-1F3FD-200D-2642-FE0F",
- "non_qualified": "1F64B-1F3FD-200D-2642",
- "image": "1f64b-1f3fd-200d-2642-fe0f.png",
- "sheet_x": 33,
- "sheet_y": 19,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F64B-1F3FE-200D-2642-FE0F",
- "non_qualified": "1F64B-1F3FE-200D-2642",
- "image": "1f64b-1f3fe-200d-2642-fe0f.png",
- "sheet_x": 33,
- "sheet_y": 20,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F64B-1F3FF-200D-2642-FE0F",
- "non_qualified": "1F64B-1F3FF-200D-2642",
- "image": "1f64b-1f3ff-200d-2642-fe0f.png",
- "sheet_x": 33,
- "sheet_y": 21,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- }
+ "has_img_facebook": true
},
{
- "name": "HAPPY PERSON RAISING ONE HAND",
- "unified": "1F64B",
+ "name": "MANGO",
+ "unified": "1F96D",
"non_qualified": null,
"docomo": null,
- "au": "EB85",
+ "au": null,
"softbank": null,
- "google": "FE357",
- "image": "1f64b.png",
- "sheet_x": 33,
- "sheet_y": 22,
- "short_name": "raising_hand",
- "short_names": ["raising_hand"],
+ "google": null,
+ "image": "1f96d.png",
+ "sheet_x": 43,
+ "sheet_y": 57,
+ "short_name": "mango",
+ "short_names": ["mango"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 230,
- "added_in": "6.0",
+ "category": "Food & Drink",
+ "subcategory": "food-fruit",
+ "sort_order": 694,
+ "added_in": "11.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": true,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F64B-1F3FB",
- "non_qualified": null,
- "image": "1f64b-1f3fb.png",
- "sheet_x": 33,
- "sheet_y": 23,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": true
- },
- "1F3FC": {
- "unified": "1F64B-1F3FC",
- "non_qualified": null,
- "image": "1f64b-1f3fc.png",
- "sheet_x": 33,
- "sheet_y": 24,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": true
- },
- "1F3FD": {
- "unified": "1F64B-1F3FD",
- "non_qualified": null,
- "image": "1f64b-1f3fd.png",
- "sheet_x": 33,
- "sheet_y": 25,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": true
- },
- "1F3FE": {
- "unified": "1F64B-1F3FE",
- "non_qualified": null,
- "image": "1f64b-1f3fe.png",
- "sheet_x": 33,
- "sheet_y": 26,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": true
- },
- "1F3FF": {
- "unified": "1F64B-1F3FF",
- "non_qualified": null,
- "image": "1f64b-1f3ff.png",
- "sheet_x": 33,
- "sheet_y": 27,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": true
- }
- },
- "obsoleted_by": "1F64B-200D-2640-FE0F"
+ "has_img_facebook": true
},
{
- "name": "PERSON RAISING BOTH HANDS IN CELEBRATION",
- "unified": "1F64C",
+ "name": "MOON CAKE",
+ "unified": "1F96E",
"non_qualified": null,
"docomo": null,
- "au": "EB86",
- "softbank": "E427",
- "google": "FE358",
- "image": "1f64c.png",
- "sheet_x": 33,
- "sheet_y": 28,
- "short_name": "raised_hands",
- "short_names": ["raised_hands"],
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f96e.png",
+ "sheet_x": 43,
+ "sheet_y": 58,
+ "short_name": "moon_cake",
+ "short_names": ["moon_cake"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 386,
- "added_in": "6.0",
+ "category": "Food & Drink",
+ "subcategory": "food-asian",
+ "sort_order": 769,
+ "added_in": "11.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F64C-1F3FB",
- "non_qualified": null,
- "image": "1f64c-1f3fb.png",
- "sheet_x": 33,
- "sheet_y": 29,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FC": {
- "unified": "1F64C-1F3FC",
- "non_qualified": null,
- "image": "1f64c-1f3fc.png",
- "sheet_x": 33,
- "sheet_y": 30,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FD": {
- "unified": "1F64C-1F3FD",
- "non_qualified": null,
- "image": "1f64c-1f3fd.png",
- "sheet_x": 33,
- "sheet_y": 31,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FE": {
- "unified": "1F64C-1F3FE",
- "non_qualified": null,
- "image": "1f64c-1f3fe.png",
- "sheet_x": 33,
- "sheet_y": 32,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- "1F3FF": {
- "unified": "1F64C-1F3FF",
- "non_qualified": null,
- "image": "1f64c-1f3ff.png",
- "sheet_x": 33,
- "sheet_y": 33,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- }
- }
+ "has_img_facebook": true
},
{
- "name": null,
- "unified": "1F64D-200D-2640-FE0F",
- "non_qualified": "1F64D-200D-2640",
+ "name": "BAGEL",
+ "unified": "1F96F",
+ "non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f64d-200d-2640-fe0f.png",
- "sheet_x": 33,
- "sheet_y": 34,
- "short_name": "woman-frowning",
- "short_names": ["woman-frowning"],
+ "image": "1f96f.png",
+ "sheet_x": 43,
+ "sheet_y": 59,
+ "short_name": "bagel",
+ "short_names": ["bagel"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 217,
- "added_in": "6.0",
+ "category": "Food & Drink",
+ "subcategory": "food-prepared",
+ "sort_order": 728,
+ "added_in": "11.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F64D-1F3FB-200D-2640-FE0F",
- "non_qualified": "1F64D-1F3FB-200D-2640",
- "image": "1f64d-1f3fb-200d-2640-fe0f.png",
- "sheet_x": 33,
- "sheet_y": 35,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F64D-1F3FC-200D-2640-FE0F",
- "non_qualified": "1F64D-1F3FC-200D-2640",
- "image": "1f64d-1f3fc-200d-2640-fe0f.png",
- "sheet_x": 33,
- "sheet_y": 36,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F64D-1F3FD-200D-2640-FE0F",
- "non_qualified": "1F64D-1F3FD-200D-2640",
- "image": "1f64d-1f3fd-200d-2640-fe0f.png",
- "sheet_x": 33,
- "sheet_y": 37,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F64D-1F3FE-200D-2640-FE0F",
- "non_qualified": "1F64D-1F3FE-200D-2640",
- "image": "1f64d-1f3fe-200d-2640-fe0f.png",
- "sheet_x": 33,
- "sheet_y": 38,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F64D-1F3FF-200D-2640-FE0F",
- "non_qualified": "1F64D-1F3FF-200D-2640",
- "image": "1f64d-1f3ff-200d-2640-fe0f.png",
- "sheet_x": 33,
- "sheet_y": 39,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- },
- "obsoletes": "1F64D"
+ "has_img_facebook": true
+ },
+ {
+ "name": "SMILING FACE WITH SMILING EYES AND THREE HEARTS",
+ "unified": "1F970",
+ "non_qualified": null,
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f970.png",
+ "sheet_x": 43,
+ "sheet_y": 60,
+ "short_name": "smiling_face_with_3_hearts",
+ "short_names": ["smiling_face_with_3_hearts"],
+ "text": null,
+ "texts": null,
+ "category": "Smileys & Emotion",
+ "subcategory": "face-affection",
+ "sort_order": 15,
+ "added_in": "11.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
},
{
- "name": null,
- "unified": "1F64D-200D-2642-FE0F",
- "non_qualified": "1F64D-200D-2642",
+ "name": "YAWNING FACE",
+ "unified": "1F971",
+ "non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f64d-200d-2642-fe0f.png",
- "sheet_x": 33,
- "sheet_y": 40,
- "short_name": "man-frowning",
- "short_names": ["man-frowning"],
+ "image": "1f971.png",
+ "sheet_x": 44,
+ "sheet_y": 0,
+ "short_name": "yawning_face",
+ "short_names": ["yawning_face"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 216,
- "added_in": "6.0",
+ "category": "Smileys & Emotion",
+ "subcategory": "face-concerned",
+ "sort_order": 99,
+ "added_in": "12.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F64D-1F3FB-200D-2642-FE0F",
- "non_qualified": "1F64D-1F3FB-200D-2642",
- "image": "1f64d-1f3fb-200d-2642-fe0f.png",
- "sheet_x": 33,
- "sheet_y": 41,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F64D-1F3FC-200D-2642-FE0F",
- "non_qualified": "1F64D-1F3FC-200D-2642",
- "image": "1f64d-1f3fc-200d-2642-fe0f.png",
- "sheet_x": 33,
- "sheet_y": 42,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F64D-1F3FD-200D-2642-FE0F",
- "non_qualified": "1F64D-1F3FD-200D-2642",
- "image": "1f64d-1f3fd-200d-2642-fe0f.png",
- "sheet_x": 33,
- "sheet_y": 43,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F64D-1F3FE-200D-2642-FE0F",
- "non_qualified": "1F64D-1F3FE-200D-2642",
- "image": "1f64d-1f3fe-200d-2642-fe0f.png",
- "sheet_x": 33,
- "sheet_y": 44,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F64D-1F3FF-200D-2642-FE0F",
- "non_qualified": "1F64D-1F3FF-200D-2642",
- "image": "1f64d-1f3ff-200d-2642-fe0f.png",
- "sheet_x": 33,
- "sheet_y": 45,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- }
+ "has_img_facebook": true
},
{
- "name": "PERSON FROWNING",
- "unified": "1F64D",
+ "name": "SMILING FACE WITH TEAR",
+ "unified": "1F972",
"non_qualified": null,
- "docomo": "E6F3",
- "au": "EB87",
+ "docomo": null,
+ "au": null,
"softbank": null,
- "google": "FE359",
- "image": "1f64d.png",
- "sheet_x": 33,
- "sheet_y": 46,
- "short_name": "person_frowning",
- "short_names": ["person_frowning"],
+ "google": null,
+ "image": "1f972.png",
+ "sheet_x": 44,
+ "sheet_y": 1,
+ "short_name": "smiling_face_with_tear",
+ "short_names": ["smiling_face_with_tear"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 215,
- "added_in": "6.0",
+ "category": "Smileys & Emotion",
+ "subcategory": "face-affection",
+ "sort_order": 23,
+ "added_in": "13.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": true,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F64D-1F3FB",
- "non_qualified": null,
- "image": "1f64d-1f3fb.png",
- "sheet_x": 33,
- "sheet_y": 47,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": true
- },
- "1F3FC": {
- "unified": "1F64D-1F3FC",
- "non_qualified": null,
- "image": "1f64d-1f3fc.png",
- "sheet_x": 33,
- "sheet_y": 48,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": true
- },
- "1F3FD": {
- "unified": "1F64D-1F3FD",
- "non_qualified": null,
- "image": "1f64d-1f3fd.png",
- "sheet_x": 33,
- "sheet_y": 49,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": true
- },
- "1F3FE": {
- "unified": "1F64D-1F3FE",
- "non_qualified": null,
- "image": "1f64d-1f3fe.png",
- "sheet_x": 33,
- "sheet_y": 50,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": true
- },
- "1F3FF": {
- "unified": "1F64D-1F3FF",
- "non_qualified": null,
- "image": "1f64d-1f3ff.png",
- "sheet_x": 33,
- "sheet_y": 51,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": true
- }
- },
- "obsoleted_by": "1F64D-200D-2640-FE0F"
+ "has_img_facebook": true
},
{
- "name": null,
- "unified": "1F64E-200D-2640-FE0F",
- "non_qualified": "1F64E-200D-2640",
+ "name": "FACE WITH PARTY HORN AND PARTY HAT",
+ "unified": "1F973",
+ "non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f64e-200d-2640-fe0f.png",
- "sheet_x": 33,
- "sheet_y": 52,
- "short_name": "woman-pouting",
- "short_names": ["woman-pouting"],
+ "image": "1f973.png",
+ "sheet_x": 44,
+ "sheet_y": 2,
+ "short_name": "partying_face",
+ "short_names": ["partying_face"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 220,
- "added_in": "6.0",
+ "category": "Smileys & Emotion",
+ "subcategory": "face-hat",
+ "sort_order": 69,
+ "added_in": "11.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F64E-1F3FB-200D-2640-FE0F",
- "non_qualified": "1F64E-1F3FB-200D-2640",
- "image": "1f64e-1f3fb-200d-2640-fe0f.png",
- "sheet_x": 34,
- "sheet_y": 0,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F64E-1F3FC-200D-2640-FE0F",
- "non_qualified": "1F64E-1F3FC-200D-2640",
- "image": "1f64e-1f3fc-200d-2640-fe0f.png",
- "sheet_x": 34,
- "sheet_y": 1,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F64E-1F3FD-200D-2640-FE0F",
- "non_qualified": "1F64E-1F3FD-200D-2640",
- "image": "1f64e-1f3fd-200d-2640-fe0f.png",
- "sheet_x": 34,
- "sheet_y": 2,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F64E-1F3FE-200D-2640-FE0F",
- "non_qualified": "1F64E-1F3FE-200D-2640",
- "image": "1f64e-1f3fe-200d-2640-fe0f.png",
- "sheet_x": 34,
- "sheet_y": 3,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F64E-1F3FF-200D-2640-FE0F",
- "non_qualified": "1F64E-1F3FF-200D-2640",
- "image": "1f64e-1f3ff-200d-2640-fe0f.png",
- "sheet_x": 34,
- "sheet_y": 4,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- },
- "obsoletes": "1F64E"
+ "has_img_facebook": true
},
{
- "name": null,
- "unified": "1F64E-200D-2642-FE0F",
- "non_qualified": "1F64E-200D-2642",
+ "name": "FACE WITH UNEVEN EYES AND WAVY MOUTH",
+ "unified": "1F974",
+ "non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f64e-200d-2642-fe0f.png",
- "sheet_x": 34,
- "sheet_y": 5,
- "short_name": "man-pouting",
- "short_names": ["man-pouting"],
+ "image": "1f974.png",
+ "sheet_x": 44,
+ "sheet_y": 3,
+ "short_name": "woozy_face",
+ "short_names": ["woozy_face"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 219,
- "added_in": "6.0",
+ "category": "Smileys & Emotion",
+ "subcategory": "face-unwell",
+ "sort_order": 64,
+ "added_in": "11.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F64E-1F3FB-200D-2642-FE0F",
- "non_qualified": "1F64E-1F3FB-200D-2642",
- "image": "1f64e-1f3fb-200d-2642-fe0f.png",
- "sheet_x": 34,
- "sheet_y": 6,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F64E-1F3FC-200D-2642-FE0F",
- "non_qualified": "1F64E-1F3FC-200D-2642",
- "image": "1f64e-1f3fc-200d-2642-fe0f.png",
- "sheet_x": 34,
- "sheet_y": 7,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F64E-1F3FD-200D-2642-FE0F",
- "non_qualified": "1F64E-1F3FD-200D-2642",
- "image": "1f64e-1f3fd-200d-2642-fe0f.png",
- "sheet_x": 34,
- "sheet_y": 8,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F64E-1F3FE-200D-2642-FE0F",
- "non_qualified": "1F64E-1F3FE-200D-2642",
- "image": "1f64e-1f3fe-200d-2642-fe0f.png",
- "sheet_x": 34,
- "sheet_y": 9,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F64E-1F3FF-200D-2642-FE0F",
- "non_qualified": "1F64E-1F3FF-200D-2642",
- "image": "1f64e-1f3ff-200d-2642-fe0f.png",
- "sheet_x": 34,
- "sheet_y": 10,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- }
+ "has_img_facebook": true
},
{
- "name": "PERSON WITH POUTING FACE",
- "unified": "1F64E",
+ "name": "OVERHEATED FACE",
+ "unified": "1F975",
"non_qualified": null,
- "docomo": "E6F1",
- "au": "EB88",
+ "docomo": null,
+ "au": null,
"softbank": null,
- "google": "FE35A",
- "image": "1f64e.png",
- "sheet_x": 34,
- "sheet_y": 11,
- "short_name": "person_with_pouting_face",
- "short_names": ["person_with_pouting_face"],
+ "google": null,
+ "image": "1f975.png",
+ "sheet_x": 44,
+ "sheet_y": 4,
+ "short_name": "hot_face",
+ "short_names": ["hot_face"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 218,
- "added_in": "6.0",
+ "category": "Smileys & Emotion",
+ "subcategory": "face-unwell",
+ "sort_order": 62,
+ "added_in": "11.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": true,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F64E-1F3FB",
- "non_qualified": null,
- "image": "1f64e-1f3fb.png",
- "sheet_x": 34,
- "sheet_y": 12,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": true
- },
- "1F3FC": {
- "unified": "1F64E-1F3FC",
- "non_qualified": null,
- "image": "1f64e-1f3fc.png",
- "sheet_x": 34,
- "sheet_y": 13,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": true
- },
- "1F3FD": {
- "unified": "1F64E-1F3FD",
- "non_qualified": null,
- "image": "1f64e-1f3fd.png",
- "sheet_x": 34,
- "sheet_y": 14,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": true
- },
- "1F3FE": {
- "unified": "1F64E-1F3FE",
- "non_qualified": null,
- "image": "1f64e-1f3fe.png",
- "sheet_x": 34,
- "sheet_y": 15,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": true
- },
- "1F3FF": {
- "unified": "1F64E-1F3FF",
- "non_qualified": null,
- "image": "1f64e-1f3ff.png",
- "sheet_x": 34,
- "sheet_y": 16,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": true
- }
- },
- "obsoleted_by": "1F64E-200D-2640-FE0F"
+ "has_img_facebook": true
},
{
- "name": "PERSON WITH FOLDED HANDS",
- "unified": "1F64F",
+ "name": "FREEZING FACE",
+ "unified": "1F976",
"non_qualified": null,
"docomo": null,
- "au": "EAD2",
- "softbank": "E41D",
- "google": "FE35B",
- "image": "1f64f.png",
- "sheet_x": 34,
- "sheet_y": 17,
- "short_name": "pray",
- "short_names": ["pray"],
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f976.png",
+ "sheet_x": 44,
+ "sheet_y": 5,
+ "short_name": "cold_face",
+ "short_names": ["cold_face"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 388,
- "added_in": "6.0",
+ "category": "Smileys & Emotion",
+ "subcategory": "face-unwell",
+ "sort_order": 63,
+ "added_in": "11.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "NINJA",
+ "unified": "1F977",
+ "non_qualified": null,
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f977.png",
+ "sheet_x": 44,
+ "sheet_y": 6,
+ "short_name": "ninja",
+ "short_names": ["ninja"],
+ "text": null,
+ "texts": null,
+ "category": "People & Body",
+ "subcategory": "person-role",
+ "sort_order": 343,
+ "added_in": "13.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": true,
"skin_variations": {
"1F3FB": {
- "unified": "1F64F-1F3FB",
+ "unified": "1F977-1F3FB",
"non_qualified": null,
- "image": "1f64f-1f3fb.png",
- "sheet_x": 34,
- "sheet_y": 18,
- "added_in": "8.0",
+ "image": "1f977-1f3fb.png",
+ "sheet_x": 44,
+ "sheet_y": 7,
+ "added_in": "13.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
"1F3FC": {
- "unified": "1F64F-1F3FC",
+ "unified": "1F977-1F3FC",
"non_qualified": null,
- "image": "1f64f-1f3fc.png",
- "sheet_x": 34,
- "sheet_y": 19,
- "added_in": "8.0",
+ "image": "1f977-1f3fc.png",
+ "sheet_x": 44,
+ "sheet_y": 8,
+ "added_in": "13.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
"1F3FD": {
- "unified": "1F64F-1F3FD",
+ "unified": "1F977-1F3FD",
"non_qualified": null,
- "image": "1f64f-1f3fd.png",
- "sheet_x": 34,
- "sheet_y": 20,
- "added_in": "8.0",
+ "image": "1f977-1f3fd.png",
+ "sheet_x": 44,
+ "sheet_y": 9,
+ "added_in": "13.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
"1F3FE": {
- "unified": "1F64F-1F3FE",
+ "unified": "1F977-1F3FE",
"non_qualified": null,
- "image": "1f64f-1f3fe.png",
- "sheet_x": 34,
- "sheet_y": 21,
- "added_in": "8.0",
+ "image": "1f977-1f3fe.png",
+ "sheet_x": 44,
+ "sheet_y": 10,
+ "added_in": "13.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
"1F3FF": {
- "unified": "1F64F-1F3FF",
+ "unified": "1F977-1F3FF",
"non_qualified": null,
- "image": "1f64f-1f3ff.png",
- "sheet_x": 34,
- "sheet_y": 22,
- "added_in": "8.0",
+ "image": "1f977-1f3ff.png",
+ "sheet_x": 44,
+ "sheet_y": 11,
+ "added_in": "13.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
}
}
},
{
- "name": "ROCKET",
- "unified": "1F680",
- "non_qualified": null,
- "docomo": null,
- "au": "E5C8",
- "softbank": "E10D",
- "google": "FE7ED",
- "image": "1f680.png",
- "sheet_x": 34,
- "sheet_y": 23,
- "short_name": "rocket",
- "short_names": ["rocket"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 123,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- {
- "name": "HELICOPTER",
- "unified": "1F681",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f681.png",
- "sheet_x": 34,
- "sheet_y": 24,
- "short_name": "helicopter",
- "short_names": ["helicopter"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 118,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- {
- "name": "STEAM LOCOMOTIVE",
- "unified": "1F682",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f682.png",
- "sheet_x": 34,
- "sheet_y": 25,
- "short_name": "steam_locomotive",
- "short_names": ["steam_locomotive"],
- "text": null,
- "texts": null,
- "category": "Travel & Places",
- "sort_order": 63,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- {
- "name": "RAILWAY CAR",
- "unified": "1F683",
- "non_qualified": null,
- "docomo": "E65B",
- "au": "E4B5",
- "softbank": "E01E",
- "google": "FE7DF",
- "image": "1f683.png",
- "sheet_x": 34,
- "sheet_y": 26,
- "short_name": "railway_car",
- "short_names": ["railway_car"],
+ "name": "DISGUISED FACE",
+ "unified": "1F978",
+ "non_qualified": null,
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f978.png",
+ "sheet_x": 44,
+ "sheet_y": 12,
+ "short_name": "disguised_face",
+ "short_names": ["disguised_face"],
"text": null,
"texts": null,
- "category": "Travel & Places",
- "sort_order": 64,
- "added_in": "6.0",
+ "category": "Smileys & Emotion",
+ "subcategory": "face-hat",
+ "sort_order": 70,
+ "added_in": "13.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "HIGH-SPEED TRAIN",
- "unified": "1F684",
+ "name": "FACE HOLDING BACK TEARS",
+ "unified": "1F979",
"non_qualified": null,
- "docomo": "E65D",
- "au": "E4B0",
- "softbank": "E435",
- "google": "FE7E2",
- "image": "1f684.png",
- "sheet_x": 34,
- "sheet_y": 27,
- "short_name": "bullettrain_side",
- "short_names": ["bullettrain_side"],
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f979.png",
+ "sheet_x": 44,
+ "sheet_y": 13,
+ "short_name": "face_holding_back_tears",
+ "short_names": ["face_holding_back_tears"],
"text": null,
"texts": null,
- "category": "Travel & Places",
- "sort_order": 65,
- "added_in": "6.0",
+ "category": "Smileys & Emotion",
+ "subcategory": "face-concerned",
+ "sort_order": 84,
+ "added_in": "14.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "HIGH-SPEED TRAIN WITH BULLET NOSE",
- "unified": "1F685",
+ "name": "FACE WITH PLEADING EYES",
+ "unified": "1F97A",
"non_qualified": null,
- "docomo": "E65D",
- "au": "E4B0",
- "softbank": "E01F",
- "google": "FE7E3",
- "image": "1f685.png",
- "sheet_x": 34,
- "sheet_y": 28,
- "short_name": "bullettrain_front",
- "short_names": ["bullettrain_front"],
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f97a.png",
+ "sheet_x": 44,
+ "sheet_y": 14,
+ "short_name": "pleading_face",
+ "short_names": ["pleading_face"],
"text": null,
"texts": null,
- "category": "Travel & Places",
- "sort_order": 66,
- "added_in": "6.0",
+ "category": "Smileys & Emotion",
+ "subcategory": "face-concerned",
+ "sort_order": 83,
+ "added_in": "11.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "TRAIN",
- "unified": "1F686",
+ "name": "SARI",
+ "unified": "1F97B",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f686.png",
- "sheet_x": 34,
- "sheet_y": 29,
- "short_name": "train2",
- "short_names": ["train2"],
+ "image": "1f97b.png",
+ "sheet_x": 44,
+ "sheet_y": 15,
+ "short_name": "sari",
+ "short_names": ["sari"],
"text": null,
"texts": null,
- "category": "Travel & Places",
- "sort_order": 67,
- "added_in": "6.0",
+ "category": "Objects",
+ "subcategory": "clothing",
+ "sort_order": 1137,
+ "added_in": "12.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "METRO",
- "unified": "1F687",
+ "name": "LAB COAT",
+ "unified": "1F97C",
"non_qualified": null,
- "docomo": "E65C",
- "au": "E5BC",
- "softbank": "E434",
- "google": "FE7E0",
- "image": "1f687.png",
- "sheet_x": 34,
- "sheet_y": 30,
- "short_name": "metro",
- "short_names": ["metro"],
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f97c.png",
+ "sheet_x": 44,
+ "sheet_y": 16,
+ "short_name": "lab_coat",
+ "short_names": ["lab_coat"],
"text": null,
"texts": null,
- "category": "Travel & Places",
- "sort_order": 68,
- "added_in": "6.0",
+ "category": "Objects",
+ "subcategory": "clothing",
+ "sort_order": 1126,
+ "added_in": "11.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "LIGHT RAIL",
- "unified": "1F688",
+ "name": "GOGGLES",
+ "unified": "1F97D",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f688.png",
- "sheet_x": 34,
- "sheet_y": 31,
- "short_name": "light_rail",
- "short_names": ["light_rail"],
+ "image": "1f97d.png",
+ "sheet_x": 44,
+ "sheet_y": 17,
+ "short_name": "goggles",
+ "short_names": ["goggles"],
"text": null,
"texts": null,
- "category": "Travel & Places",
- "sort_order": 69,
- "added_in": "6.0",
+ "category": "Objects",
+ "subcategory": "clothing",
+ "sort_order": 1125,
+ "added_in": "11.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "STATION",
- "unified": "1F689",
+ "name": "HIKING BOOT",
+ "unified": "1F97E",
"non_qualified": null,
"docomo": null,
- "au": "EB6D",
- "softbank": "E039",
- "google": "FE7EC",
- "image": "1f689.png",
- "sheet_x": 34,
- "sheet_y": 32,
- "short_name": "station",
- "short_names": ["station"],
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f97e.png",
+ "sheet_x": 44,
+ "sheet_y": 18,
+ "short_name": "hiking_boot",
+ "short_names": ["hiking_boot"],
"text": null,
"texts": null,
- "category": "Travel & Places",
- "sort_order": 70,
- "added_in": "6.0",
+ "category": "Objects",
+ "subcategory": "clothing",
+ "sort_order": 1152,
+ "added_in": "11.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "TRAM",
- "unified": "1F68A",
+ "name": "FLAT SHOE",
+ "unified": "1F97F",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f68a.png",
- "sheet_x": 34,
- "sheet_y": 33,
- "short_name": "tram",
- "short_names": ["tram"],
+ "image": "1f97f.png",
+ "sheet_x": 44,
+ "sheet_y": 19,
+ "short_name": "womans_flat_shoe",
+ "short_names": ["womans_flat_shoe"],
"text": null,
"texts": null,
- "category": "Travel & Places",
- "sort_order": 71,
- "added_in": "6.0",
+ "category": "Objects",
+ "subcategory": "clothing",
+ "sort_order": 1153,
+ "added_in": "11.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "TRAM CAR",
- "unified": "1F68B",
+ "name": "CRAB",
+ "unified": "1F980",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f68b.png",
- "sheet_x": 34,
- "sheet_y": 34,
- "short_name": "train",
- "short_names": ["train"],
+ "image": "1f980.png",
+ "sheet_x": 44,
+ "sheet_y": 20,
+ "short_name": "crab",
+ "short_names": ["crab"],
"text": null,
"texts": null,
- "category": "Travel & Places",
- "sort_order": 74,
- "added_in": "6.0",
+ "category": "Food & Drink",
+ "subcategory": "food-marine",
+ "sort_order": 774,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "BUS",
- "unified": "1F68C",
+ "name": "LION FACE",
+ "unified": "1F981",
"non_qualified": null,
- "docomo": "E660",
- "au": "E4AF",
- "softbank": "E159",
- "google": "FE7E6",
- "image": "1f68c.png",
- "sheet_x": 34,
- "sheet_y": 35,
- "short_name": "bus",
- "short_names": ["bus"],
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f981.png",
+ "sheet_x": 44,
+ "sheet_y": 21,
+ "short_name": "lion_face",
+ "short_names": ["lion_face"],
"text": null,
"texts": null,
- "category": "Travel & Places",
- "sort_order": 75,
- "added_in": "6.0",
+ "category": "Animals & Nature",
+ "subcategory": "animal-mammal",
+ "sort_order": 550,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "ONCOMING BUS",
- "unified": "1F68D",
+ "name": "SCORPION",
+ "unified": "1F982",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f68d.png",
- "sheet_x": 34,
- "sheet_y": 36,
- "short_name": "oncoming_bus",
- "short_names": ["oncoming_bus"],
+ "image": "1f982.png",
+ "sheet_x": 44,
+ "sheet_y": 22,
+ "short_name": "scorpion",
+ "short_names": ["scorpion"],
"text": null,
"texts": null,
- "category": "Travel & Places",
- "sort_order": 76,
- "added_in": "6.0",
+ "category": "Animals & Nature",
+ "subcategory": "animal-bug",
+ "sort_order": 654,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "TROLLEYBUS",
- "unified": "1F68E",
+ "name": "TURKEY",
+ "unified": "1F983",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f68e.png",
- "sheet_x": 34,
- "sheet_y": 37,
- "short_name": "trolleybus",
- "short_names": ["trolleybus"],
+ "image": "1f983.png",
+ "sheet_x": 44,
+ "sheet_y": 23,
+ "short_name": "turkey",
+ "short_names": ["turkey"],
"text": null,
"texts": null,
- "category": "Travel & Places",
- "sort_order": 77,
- "added_in": "6.0",
+ "category": "Animals & Nature",
+ "subcategory": "animal-bird",
+ "sort_order": 601,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "BUS STOP",
- "unified": "1F68F",
+ "name": "UNICORN FACE",
+ "unified": "1F984",
"non_qualified": null,
"docomo": null,
- "au": "E4A7",
- "softbank": "E150",
- "google": "FE7E7",
- "image": "1f68f.png",
- "sheet_x": 34,
- "sheet_y": 38,
- "short_name": "busstop",
- "short_names": ["busstop"],
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f984.png",
+ "sheet_x": 44,
+ "sheet_y": 24,
+ "short_name": "unicorn_face",
+ "short_names": ["unicorn_face"],
"text": null,
"texts": null,
- "category": "Travel & Places",
- "sort_order": 95,
- "added_in": "6.0",
+ "category": "Animals & Nature",
+ "subcategory": "animal-mammal",
+ "sort_order": 558,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "MINIBUS",
- "unified": "1F690",
+ "name": "EAGLE",
+ "unified": "1F985",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f690.png",
- "sheet_x": 34,
- "sheet_y": 39,
- "short_name": "minibus",
- "short_names": ["minibus"],
+ "image": "1f985.png",
+ "sheet_x": 44,
+ "sheet_y": 25,
+ "short_name": "eagle",
+ "short_names": ["eagle"],
"text": null,
"texts": null,
- "category": "Travel & Places",
- "sort_order": 78,
- "added_in": "6.0",
+ "category": "Animals & Nature",
+ "subcategory": "animal-bird",
+ "sort_order": 610,
+ "added_in": "3.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "AMBULANCE",
- "unified": "1F691",
+ "name": "DUCK",
+ "unified": "1F986",
"non_qualified": null,
"docomo": null,
- "au": "EAE0",
- "softbank": "E431",
- "google": "FE7F3",
- "image": "1f691.png",
- "sheet_x": 34,
- "sheet_y": 40,
- "short_name": "ambulance",
- "short_names": ["ambulance"],
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f986.png",
+ "sheet_x": 44,
+ "sheet_y": 26,
+ "short_name": "duck",
+ "short_names": ["duck"],
"text": null,
"texts": null,
- "category": "Travel & Places",
- "sort_order": 79,
- "added_in": "6.0",
+ "category": "Animals & Nature",
+ "subcategory": "animal-bird",
+ "sort_order": 611,
+ "added_in": "3.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "FIRE ENGINE",
- "unified": "1F692",
+ "name": "BAT",
+ "unified": "1F987",
"non_qualified": null,
"docomo": null,
- "au": "EADF",
- "softbank": "E430",
- "google": "FE7F2",
- "image": "1f692.png",
- "sheet_x": 34,
- "sheet_y": 41,
- "short_name": "fire_engine",
- "short_names": ["fire_engine"],
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f987.png",
+ "sheet_x": 44,
+ "sheet_y": 27,
+ "short_name": "bat",
+ "short_names": ["bat"],
"text": null,
"texts": null,
- "category": "Travel & Places",
- "sort_order": 80,
- "added_in": "6.0",
+ "category": "Animals & Nature",
+ "subcategory": "animal-mammal",
+ "sort_order": 590,
+ "added_in": "3.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "POLICE CAR",
- "unified": "1F693",
+ "name": "SHARK",
+ "unified": "1F988",
"non_qualified": null,
"docomo": null,
- "au": "EAE1",
- "softbank": "E432",
- "google": "FE7F4",
- "image": "1f693.png",
- "sheet_x": 34,
- "sheet_y": 42,
- "short_name": "police_car",
- "short_names": ["police_car"],
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f988.png",
+ "sheet_x": 44,
+ "sheet_y": 28,
+ "short_name": "shark",
+ "short_names": ["shark"],
"text": null,
"texts": null,
- "category": "Travel & Places",
- "sort_order": 81,
- "added_in": "6.0",
+ "category": "Animals & Nature",
+ "subcategory": "animal-marine",
+ "sort_order": 638,
+ "added_in": "3.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "ONCOMING POLICE CAR",
- "unified": "1F694",
+ "name": "OWL",
+ "unified": "1F989",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f694.png",
- "sheet_x": 34,
- "sheet_y": 43,
- "short_name": "oncoming_police_car",
- "short_names": ["oncoming_police_car"],
+ "image": "1f989.png",
+ "sheet_x": 44,
+ "sheet_y": 29,
+ "short_name": "owl",
+ "short_names": ["owl"],
"text": null,
"texts": null,
- "category": "Travel & Places",
- "sort_order": 82,
- "added_in": "6.0",
+ "category": "Animals & Nature",
+ "subcategory": "animal-bird",
+ "sort_order": 613,
+ "added_in": "3.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "TAXI",
- "unified": "1F695",
+ "name": "FOX FACE",
+ "unified": "1F98A",
"non_qualified": null,
- "docomo": "E65E",
- "au": "E4B1",
- "softbank": "E15A",
- "google": "FE7EF",
- "image": "1f695.png",
- "sheet_x": 34,
- "sheet_y": 44,
- "short_name": "taxi",
- "short_names": ["taxi"],
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f98a.png",
+ "sheet_x": 44,
+ "sheet_y": 30,
+ "short_name": "fox_face",
+ "short_names": ["fox_face"],
"text": null,
"texts": null,
- "category": "Travel & Places",
- "sort_order": 83,
- "added_in": "6.0",
+ "category": "Animals & Nature",
+ "subcategory": "animal-mammal",
+ "sort_order": 545,
+ "added_in": "3.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "ONCOMING TAXI",
- "unified": "1F696",
+ "name": "BUTTERFLY",
+ "unified": "1F98B",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f696.png",
- "sheet_x": 34,
- "sheet_y": 45,
- "short_name": "oncoming_taxi",
- "short_names": ["oncoming_taxi"],
+ "image": "1f98b.png",
+ "sheet_x": 44,
+ "sheet_y": 31,
+ "short_name": "butterfly",
+ "short_names": ["butterfly"],
"text": null,
"texts": null,
- "category": "Travel & Places",
- "sort_order": 84,
- "added_in": "6.0",
+ "category": "Animals & Nature",
+ "subcategory": "animal-bug",
+ "sort_order": 644,
+ "added_in": "3.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "AUTOMOBILE",
- "unified": "1F697",
+ "name": "DEER",
+ "unified": "1F98C",
"non_qualified": null,
- "docomo": "E65E",
- "au": "E4B1",
- "softbank": "E01B",
- "google": "FE7E4",
- "image": "1f697.png",
- "sheet_x": 34,
- "sheet_y": 46,
- "short_name": "car",
- "short_names": ["car", "red_car"],
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f98c.png",
+ "sheet_x": 44,
+ "sheet_y": 32,
+ "short_name": "deer",
+ "short_names": ["deer"],
"text": null,
"texts": null,
- "category": "Travel & Places",
- "sort_order": 85,
- "added_in": "6.0",
+ "category": "Animals & Nature",
+ "subcategory": "animal-mammal",
+ "sort_order": 560,
+ "added_in": "3.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "ONCOMING AUTOMOBILE",
- "unified": "1F698",
+ "name": "GORILLA",
+ "unified": "1F98D",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f698.png",
- "sheet_x": 34,
- "sheet_y": 47,
- "short_name": "oncoming_automobile",
- "short_names": ["oncoming_automobile"],
+ "image": "1f98d.png",
+ "sheet_x": 44,
+ "sheet_y": 33,
+ "short_name": "gorilla",
+ "short_names": ["gorilla"],
"text": null,
"texts": null,
- "category": "Travel & Places",
- "sort_order": 86,
- "added_in": "6.0",
+ "category": "Animals & Nature",
+ "subcategory": "animal-mammal",
+ "sort_order": 537,
+ "added_in": "3.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "RECREATIONAL VEHICLE",
- "unified": "1F699",
+ "name": "LIZARD",
+ "unified": "1F98E",
"non_qualified": null,
- "docomo": "E65F",
- "au": "E4B1",
- "softbank": "E42E",
- "google": "FE7E5",
- "image": "1f699.png",
- "sheet_x": 34,
- "sheet_y": 48,
- "short_name": "blue_car",
- "short_names": ["blue_car"],
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f98e.png",
+ "sheet_x": 44,
+ "sheet_y": 34,
+ "short_name": "lizard",
+ "short_names": ["lizard"],
"text": null,
"texts": null,
- "category": "Travel & Places",
- "sort_order": 87,
- "added_in": "6.0",
+ "category": "Animals & Nature",
+ "subcategory": "animal-reptile",
+ "sort_order": 625,
+ "added_in": "3.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "DELIVERY TRUCK",
- "unified": "1F69A",
+ "name": "RHINOCEROS",
+ "unified": "1F98F",
"non_qualified": null,
"docomo": null,
- "au": "E4B2",
- "softbank": "E42F",
- "google": "FE7F1",
- "image": "1f69a.png",
- "sheet_x": 34,
- "sheet_y": 49,
- "short_name": "truck",
- "short_names": ["truck"],
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f98f.png",
+ "sheet_x": 44,
+ "sheet_y": 35,
+ "short_name": "rhinoceros",
+ "short_names": ["rhinoceros"],
"text": null,
"texts": null,
- "category": "Travel & Places",
- "sort_order": 88,
- "added_in": "6.0",
+ "category": "Animals & Nature",
+ "subcategory": "animal-mammal",
+ "sort_order": 579,
+ "added_in": "3.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "ARTICULATED LORRY",
- "unified": "1F69B",
+ "name": "SHRIMP",
+ "unified": "1F990",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f69b.png",
- "sheet_x": 34,
- "sheet_y": 50,
- "short_name": "articulated_lorry",
- "short_names": ["articulated_lorry"],
+ "image": "1f990.png",
+ "sheet_x": 44,
+ "sheet_y": 36,
+ "short_name": "shrimp",
+ "short_names": ["shrimp"],
"text": null,
"texts": null,
- "category": "Travel & Places",
- "sort_order": 89,
- "added_in": "6.0",
+ "category": "Food & Drink",
+ "subcategory": "food-marine",
+ "sort_order": 776,
+ "added_in": "3.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "TRACTOR",
- "unified": "1F69C",
+ "name": "SQUID",
+ "unified": "1F991",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f69c.png",
- "sheet_x": 34,
- "sheet_y": 51,
- "short_name": "tractor",
- "short_names": ["tractor"],
+ "image": "1f991.png",
+ "sheet_x": 44,
+ "sheet_y": 37,
+ "short_name": "squid",
+ "short_names": ["squid"],
"text": null,
"texts": null,
- "category": "Travel & Places",
- "sort_order": 90,
- "added_in": "6.0",
+ "category": "Food & Drink",
+ "subcategory": "food-marine",
+ "sort_order": 777,
+ "added_in": "3.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "MONORAIL",
- "unified": "1F69D",
+ "name": "GIRAFFE FACE",
+ "unified": "1F992",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f69d.png",
- "sheet_x": 34,
- "sheet_y": 52,
- "short_name": "monorail",
- "short_names": ["monorail"],
+ "image": "1f992.png",
+ "sheet_x": 44,
+ "sheet_y": 38,
+ "short_name": "giraffe_face",
+ "short_names": ["giraffe_face"],
"text": null,
"texts": null,
- "category": "Travel & Places",
- "sort_order": 72,
- "added_in": "6.0",
+ "category": "Animals & Nature",
+ "subcategory": "animal-mammal",
+ "sort_order": 576,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "MOUNTAIN RAILWAY",
- "unified": "1F69E",
+ "name": "ZEBRA FACE",
+ "unified": "1F993",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f69e.png",
- "sheet_x": 35,
- "sheet_y": 0,
- "short_name": "mountain_railway",
- "short_names": ["mountain_railway"],
+ "image": "1f993.png",
+ "sheet_x": 44,
+ "sheet_y": 39,
+ "short_name": "zebra_face",
+ "short_names": ["zebra_face"],
"text": null,
"texts": null,
- "category": "Travel & Places",
- "sort_order": 73,
- "added_in": "6.0",
+ "category": "Animals & Nature",
+ "subcategory": "animal-mammal",
+ "sort_order": 559,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "SUSPENSION RAILWAY",
- "unified": "1F69F",
+ "name": "HEDGEHOG",
+ "unified": "1F994",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f69f.png",
- "sheet_x": 35,
- "sheet_y": 1,
- "short_name": "suspension_railway",
- "short_names": ["suspension_railway"],
+ "image": "1f994.png",
+ "sheet_x": 44,
+ "sheet_y": 40,
+ "short_name": "hedgehog",
+ "short_names": ["hedgehog"],
"text": null,
"texts": null,
- "category": "Travel & Places",
- "sort_order": 119,
- "added_in": "6.0",
+ "category": "Animals & Nature",
+ "subcategory": "animal-mammal",
+ "sort_order": 589,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "MOUNTAIN CABLEWAY",
- "unified": "1F6A0",
+ "name": "SAUROPOD",
+ "unified": "1F995",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f6a0.png",
- "sheet_x": 35,
- "sheet_y": 2,
- "short_name": "mountain_cableway",
- "short_names": ["mountain_cableway"],
+ "image": "1f995.png",
+ "sheet_x": 44,
+ "sheet_y": 41,
+ "short_name": "sauropod",
+ "short_names": ["sauropod"],
"text": null,
"texts": null,
- "category": "Travel & Places",
- "sort_order": 120,
- "added_in": "6.0",
+ "category": "Animals & Nature",
+ "subcategory": "animal-reptile",
+ "sort_order": 629,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "AERIAL TRAMWAY",
- "unified": "1F6A1",
+ "name": "T-REX",
+ "unified": "1F996",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f6a1.png",
- "sheet_x": 35,
- "sheet_y": 3,
- "short_name": "aerial_tramway",
- "short_names": ["aerial_tramway"],
+ "image": "1f996.png",
+ "sheet_x": 44,
+ "sheet_y": 42,
+ "short_name": "t-rex",
+ "short_names": ["t-rex"],
"text": null,
"texts": null,
- "category": "Travel & Places",
- "sort_order": 121,
- "added_in": "6.0",
+ "category": "Animals & Nature",
+ "subcategory": "animal-reptile",
+ "sort_order": 630,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "SHIP",
- "unified": "1F6A2",
+ "name": "CRICKET",
+ "unified": "1F997",
"non_qualified": null,
- "docomo": "E661",
- "au": "EA82",
- "softbank": "E202",
- "google": "FE7E8",
- "image": "1f6a2.png",
- "sheet_x": 35,
- "sheet_y": 4,
- "short_name": "ship",
- "short_names": ["ship"],
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f997.png",
+ "sheet_x": 44,
+ "sheet_y": 43,
+ "short_name": "cricket",
+ "short_names": ["cricket"],
"text": null,
"texts": null,
- "category": "Travel & Places",
- "sort_order": 112,
- "added_in": "6.0",
+ "category": "Animals & Nature",
+ "subcategory": "animal-bug",
+ "sort_order": 650,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": null,
- "unified": "1F6A3-200D-2640-FE0F",
- "non_qualified": "1F6A3-200D-2640",
+ "name": "KANGAROO",
+ "unified": "1F998",
+ "non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f6a3-200d-2640-fe0f.png",
- "sheet_x": 35,
- "sheet_y": 5,
- "short_name": "woman-rowing-boat",
- "short_names": ["woman-rowing-boat"],
+ "image": "1f998.png",
+ "sheet_x": 44,
+ "sheet_y": 44,
+ "short_name": "kangaroo",
+ "short_names": ["kangaroo"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 286,
- "added_in": "6.0",
+ "category": "Animals & Nature",
+ "subcategory": "animal-mammal",
+ "sort_order": 598,
+ "added_in": "11.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F6A3-1F3FB-200D-2640-FE0F",
- "non_qualified": "1F6A3-1F3FB-200D-2640",
- "image": "1f6a3-1f3fb-200d-2640-fe0f.png",
- "sheet_x": 35,
- "sheet_y": 6,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F6A3-1F3FC-200D-2640-FE0F",
- "non_qualified": "1F6A3-1F3FC-200D-2640",
- "image": "1f6a3-1f3fc-200d-2640-fe0f.png",
- "sheet_x": 35,
- "sheet_y": 7,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F6A3-1F3FD-200D-2640-FE0F",
- "non_qualified": "1F6A3-1F3FD-200D-2640",
- "image": "1f6a3-1f3fd-200d-2640-fe0f.png",
- "sheet_x": 35,
- "sheet_y": 8,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F6A3-1F3FE-200D-2640-FE0F",
- "non_qualified": "1F6A3-1F3FE-200D-2640",
- "image": "1f6a3-1f3fe-200d-2640-fe0f.png",
- "sheet_x": 35,
- "sheet_y": 9,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F6A3-1F3FF-200D-2640-FE0F",
- "non_qualified": "1F6A3-1F3FF-200D-2640",
- "image": "1f6a3-1f3ff-200d-2640-fe0f.png",
- "sheet_x": 35,
- "sheet_y": 10,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- }
+ "has_img_facebook": true
},
{
- "name": null,
- "unified": "1F6A3-200D-2642-FE0F",
- "non_qualified": "1F6A3-200D-2642",
+ "name": "LLAMA",
+ "unified": "1F999",
+ "non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f6a3-200d-2642-fe0f.png",
- "sheet_x": 35,
- "sheet_y": 11,
- "short_name": "man-rowing-boat",
- "short_names": ["man-rowing-boat"],
+ "image": "1f999.png",
+ "sheet_x": 44,
+ "sheet_y": 45,
+ "short_name": "llama",
+ "short_names": ["llama"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 285,
- "added_in": "6.0",
+ "category": "Animals & Nature",
+ "subcategory": "animal-mammal",
+ "sort_order": 575,
+ "added_in": "11.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F6A3-1F3FB-200D-2642-FE0F",
- "non_qualified": "1F6A3-1F3FB-200D-2642",
- "image": "1f6a3-1f3fb-200d-2642-fe0f.png",
- "sheet_x": 35,
- "sheet_y": 12,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F6A3-1F3FC-200D-2642-FE0F",
- "non_qualified": "1F6A3-1F3FC-200D-2642",
- "image": "1f6a3-1f3fc-200d-2642-fe0f.png",
- "sheet_x": 35,
- "sheet_y": 13,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F6A3-1F3FD-200D-2642-FE0F",
- "non_qualified": "1F6A3-1F3FD-200D-2642",
- "image": "1f6a3-1f3fd-200d-2642-fe0f.png",
- "sheet_x": 35,
- "sheet_y": 14,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F6A3-1F3FE-200D-2642-FE0F",
- "non_qualified": "1F6A3-1F3FE-200D-2642",
- "image": "1f6a3-1f3fe-200d-2642-fe0f.png",
- "sheet_x": 35,
- "sheet_y": 15,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F6A3-1F3FF-200D-2642-FE0F",
- "non_qualified": "1F6A3-1F3FF-200D-2642",
- "image": "1f6a3-1f3ff-200d-2642-fe0f.png",
- "sheet_x": 35,
- "sheet_y": 16,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- },
- "obsoletes": "1F6A3"
+ "has_img_facebook": true
},
{
- "name": "ROWBOAT",
- "unified": "1F6A3",
+ "name": "PEACOCK",
+ "unified": "1F99A",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f6a3.png",
- "sheet_x": 35,
- "sheet_y": 17,
- "short_name": "rowboat",
- "short_names": ["rowboat"],
+ "image": "1f99a.png",
+ "sheet_x": 44,
+ "sheet_y": 46,
+ "short_name": "peacock",
+ "short_names": ["peacock"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 284,
- "added_in": "6.0",
+ "category": "Animals & Nature",
+ "subcategory": "animal-bird",
+ "sort_order": 617,
+ "added_in": "11.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": true,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F6A3-1F3FB",
- "non_qualified": null,
- "image": "1f6a3-1f3fb.png",
- "sheet_x": 35,
- "sheet_y": 18,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F6A3-1F3FC",
- "non_qualified": null,
- "image": "1f6a3-1f3fc.png",
- "sheet_x": 35,
- "sheet_y": 19,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F6A3-1F3FD",
- "non_qualified": null,
- "image": "1f6a3-1f3fd.png",
- "sheet_x": 35,
- "sheet_y": 20,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F6A3-1F3FE",
- "non_qualified": null,
- "image": "1f6a3-1f3fe.png",
- "sheet_x": 35,
- "sheet_y": 21,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F6A3-1F3FF",
- "non_qualified": null,
- "image": "1f6a3-1f3ff.png",
- "sheet_x": 35,
- "sheet_y": 22,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- },
- "obsoleted_by": "1F6A3-200D-2642-FE0F"
+ "has_img_facebook": true
},
{
- "name": "SPEEDBOAT",
- "unified": "1F6A4",
+ "name": "HIPPOPOTAMUS",
+ "unified": "1F99B",
"non_qualified": null,
- "docomo": "E6A3",
- "au": "E4B4",
- "softbank": "E135",
- "google": "FE7EE",
- "image": "1f6a4.png",
- "sheet_x": 35,
- "sheet_y": 23,
- "short_name": "speedboat",
- "short_names": ["speedboat"],
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f99b.png",
+ "sheet_x": 44,
+ "sheet_y": 47,
+ "short_name": "hippopotamus",
+ "short_names": ["hippopotamus"],
"text": null,
"texts": null,
- "category": "Travel & Places",
- "sort_order": 108,
- "added_in": "6.0",
+ "category": "Animals & Nature",
+ "subcategory": "animal-mammal",
+ "sort_order": 580,
+ "added_in": "11.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "HORIZONTAL TRAFFIC LIGHT",
- "unified": "1F6A5",
+ "name": "PARROT",
+ "unified": "1F99C",
"non_qualified": null,
- "docomo": "E66D",
- "au": "E46A",
- "softbank": "E14E",
- "google": "FE7F7",
- "image": "1f6a5.png",
- "sheet_x": 35,
- "sheet_y": 24,
- "short_name": "traffic_light",
- "short_names": ["traffic_light"],
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f99c.png",
+ "sheet_x": 44,
+ "sheet_y": 48,
+ "short_name": "parrot",
+ "short_names": ["parrot"],
"text": null,
"texts": null,
- "category": "Travel & Places",
- "sort_order": 101,
- "added_in": "6.0",
+ "category": "Animals & Nature",
+ "subcategory": "animal-bird",
+ "sort_order": 618,
+ "added_in": "11.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "VERTICAL TRAFFIC LIGHT",
- "unified": "1F6A6",
+ "name": "RACCOON",
+ "unified": "1F99D",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f6a6.png",
- "sheet_x": 35,
- "sheet_y": 25,
- "short_name": "vertical_traffic_light",
- "short_names": ["vertical_traffic_light"],
+ "image": "1f99d.png",
+ "sheet_x": 44,
+ "sheet_y": 49,
+ "short_name": "raccoon",
+ "short_names": ["raccoon"],
"text": null,
"texts": null,
- "category": "Travel & Places",
- "sort_order": 102,
- "added_in": "6.0",
+ "category": "Animals & Nature",
+ "subcategory": "animal-mammal",
+ "sort_order": 546,
+ "added_in": "11.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "CONSTRUCTION SIGN",
- "unified": "1F6A7",
+ "name": "LOBSTER",
+ "unified": "1F99E",
"non_qualified": null,
"docomo": null,
- "au": "E5D7",
- "softbank": "E137",
- "google": "FE7F8",
- "image": "1f6a7.png",
- "sheet_x": 35,
- "sheet_y": 26,
- "short_name": "construction",
- "short_names": ["construction"],
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f99e.png",
+ "sheet_x": 44,
+ "sheet_y": 50,
+ "short_name": "lobster",
+ "short_names": ["lobster"],
"text": null,
"texts": null,
- "category": "Travel & Places",
- "sort_order": 104,
- "added_in": "6.0",
+ "category": "Food & Drink",
+ "subcategory": "food-marine",
+ "sort_order": 775,
+ "added_in": "11.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "POLICE CARS REVOLVING LIGHT",
- "unified": "1F6A8",
+ "name": "MOSQUITO",
+ "unified": "1F99F",
"non_qualified": null,
"docomo": null,
- "au": "EB73",
+ "au": null,
"softbank": null,
- "google": "FE7F9",
- "image": "1f6a8.png",
- "sheet_x": 35,
- "sheet_y": 27,
- "short_name": "rotating_light",
- "short_names": ["rotating_light"],
+ "google": null,
+ "image": "1f99f.png",
+ "sheet_x": 44,
+ "sheet_y": 51,
+ "short_name": "mosquito",
+ "short_names": ["mosquito"],
"text": null,
"texts": null,
- "category": "Travel & Places",
- "sort_order": 100,
- "added_in": "6.0",
+ "category": "Animals & Nature",
+ "subcategory": "animal-bug",
+ "sort_order": 655,
+ "added_in": "11.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "TRIANGULAR FLAG ON POST",
- "unified": "1F6A9",
- "non_qualified": null,
- "docomo": "E6DE",
- "au": "EB2C",
- "softbank": null,
- "google": "FEB22",
- "image": "1f6a9.png",
- "sheet_x": 35,
- "sheet_y": 28,
- "short_name": "triangular_flag_on_post",
- "short_names": ["triangular_flag_on_post"],
+ "name": "MICROBE",
+ "unified": "1F9A0",
+ "non_qualified": null,
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f9a0.png",
+ "sheet_x": 44,
+ "sheet_y": 52,
+ "short_name": "microbe",
+ "short_names": ["microbe"],
"text": null,
"texts": null,
- "category": "Flags",
- "sort_order": 2,
- "added_in": "6.0",
+ "category": "Animals & Nature",
+ "subcategory": "animal-bug",
+ "sort_order": 658,
+ "added_in": "11.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "DOOR",
- "unified": "1F6AA",
+ "name": "BADGER",
+ "unified": "1F9A1",
"non_qualified": null,
- "docomo": "E714",
+ "docomo": null,
"au": null,
"softbank": null,
- "google": "FE4F3",
- "image": "1f6aa.png",
- "sheet_x": 35,
- "sheet_y": 29,
- "short_name": "door",
- "short_names": ["door"],
+ "google": null,
+ "image": "1f9a1.png",
+ "sheet_x": 44,
+ "sheet_y": 53,
+ "short_name": "badger",
+ "short_names": ["badger"],
"text": null,
"texts": null,
- "category": "Objects",
- "sort_order": 163,
- "added_in": "6.0",
+ "category": "Animals & Nature",
+ "subcategory": "animal-mammal",
+ "sort_order": 599,
+ "added_in": "11.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "NO ENTRY SIGN",
- "unified": "1F6AB",
+ "name": "SWAN",
+ "unified": "1F9A2",
"non_qualified": null,
- "docomo": "E738",
- "au": "E541",
+ "docomo": null,
+ "au": null,
"softbank": null,
- "google": "FEB48",
- "image": "1f6ab.png",
- "sheet_x": 35,
- "sheet_y": 30,
- "short_name": "no_entry_sign",
- "short_names": ["no_entry_sign"],
+ "google": null,
+ "image": "1f9a2.png",
+ "sheet_x": 44,
+ "sheet_y": 54,
+ "short_name": "swan",
+ "short_names": ["swan"],
"text": null,
"texts": null,
- "category": "Symbols",
- "sort_order": 17,
- "added_in": "6.0",
+ "category": "Animals & Nature",
+ "subcategory": "animal-bird",
+ "sort_order": 612,
+ "added_in": "11.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "SMOKING SYMBOL",
- "unified": "1F6AC",
+ "name": "MAMMOTH",
+ "unified": "1F9A3",
"non_qualified": null,
- "docomo": "E67F",
- "au": "E47D",
- "softbank": "E30E",
- "google": "FEB1E",
- "image": "1f6ac.png",
- "sheet_x": 35,
- "sheet_y": 31,
- "short_name": "smoking",
- "short_names": ["smoking"],
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f9a3.png",
+ "sheet_x": 44,
+ "sheet_y": 55,
+ "short_name": "mammoth",
+ "short_names": ["mammoth"],
"text": null,
"texts": null,
- "category": "Objects",
- "sort_order": 178,
- "added_in": "6.0",
+ "category": "Animals & Nature",
+ "subcategory": "animal-mammal",
+ "sort_order": 578,
+ "added_in": "13.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "NO SMOKING SYMBOL",
- "unified": "1F6AD",
+ "name": "DODO",
+ "unified": "1F9A4",
"non_qualified": null,
- "docomo": "E680",
- "au": "E47E",
- "softbank": "E208",
- "google": "FEB1F",
- "image": "1f6ad.png",
- "sheet_x": 35,
- "sheet_y": 32,
- "short_name": "no_smoking",
- "short_names": ["no_smoking"],
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f9a4.png",
+ "sheet_x": 44,
+ "sheet_y": 56,
+ "short_name": "dodo",
+ "short_names": ["dodo"],
"text": null,
"texts": null,
- "category": "Symbols",
- "sort_order": 19,
- "added_in": "6.0",
+ "category": "Animals & Nature",
+ "subcategory": "animal-bird",
+ "sort_order": 614,
+ "added_in": "13.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "PUT LITTER IN ITS PLACE SYMBOL",
- "unified": "1F6AE",
+ "name": "SLOTH",
+ "unified": "1F9A5",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f6ae.png",
- "sheet_x": 35,
- "sheet_y": 33,
- "short_name": "put_litter_in_its_place",
- "short_names": ["put_litter_in_its_place"],
+ "image": "1f9a5.png",
+ "sheet_x": 44,
+ "sheet_y": 57,
+ "short_name": "sloth",
+ "short_names": ["sloth"],
"text": null,
"texts": null,
- "category": "Symbols",
- "sort_order": 2,
- "added_in": "6.0",
+ "category": "Animals & Nature",
+ "subcategory": "animal-mammal",
+ "sort_order": 595,
+ "added_in": "12.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "DO NOT LITTER SYMBOL",
- "unified": "1F6AF",
+ "name": "OTTER",
+ "unified": "1F9A6",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f6af.png",
- "sheet_x": 35,
- "sheet_y": 34,
- "short_name": "do_not_litter",
- "short_names": ["do_not_litter"],
+ "image": "1f9a6.png",
+ "sheet_x": 44,
+ "sheet_y": 58,
+ "short_name": "otter",
+ "short_names": ["otter"],
"text": null,
"texts": null,
- "category": "Symbols",
- "sort_order": 20,
- "added_in": "6.0",
+ "category": "Animals & Nature",
+ "subcategory": "animal-mammal",
+ "sort_order": 596,
+ "added_in": "12.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "POTABLE WATER SYMBOL",
- "unified": "1F6B0",
+ "name": "ORANGUTAN",
+ "unified": "1F9A7",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f6b0.png",
- "sheet_x": 35,
- "sheet_y": 35,
- "short_name": "potable_water",
- "short_names": ["potable_water"],
+ "image": "1f9a7.png",
+ "sheet_x": 44,
+ "sheet_y": 59,
+ "short_name": "orangutan",
+ "short_names": ["orangutan"],
"text": null,
"texts": null,
- "category": "Symbols",
- "sort_order": 3,
- "added_in": "6.0",
+ "category": "Animals & Nature",
+ "subcategory": "animal-mammal",
+ "sort_order": 538,
+ "added_in": "12.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "NON-POTABLE WATER SYMBOL",
- "unified": "1F6B1",
+ "name": "SKUNK",
+ "unified": "1F9A8",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f6b1.png",
- "sheet_x": 35,
- "sheet_y": 36,
- "short_name": "non-potable_water",
- "short_names": ["non-potable_water"],
+ "image": "1f9a8.png",
+ "sheet_x": 44,
+ "sheet_y": 60,
+ "short_name": "skunk",
+ "short_names": ["skunk"],
"text": null,
"texts": null,
- "category": "Symbols",
- "sort_order": 21,
- "added_in": "6.0",
+ "category": "Animals & Nature",
+ "subcategory": "animal-mammal",
+ "sort_order": 597,
+ "added_in": "12.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "BICYCLE",
- "unified": "1F6B2",
+ "name": "FLAMINGO",
+ "unified": "1F9A9",
"non_qualified": null,
- "docomo": "E71D",
- "au": "E4AE",
- "softbank": "E136",
- "google": "FE7EB",
- "image": "1f6b2.png",
- "sheet_x": 35,
- "sheet_y": 37,
- "short_name": "bike",
- "short_names": ["bike"],
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f9a9.png",
+ "sheet_x": 45,
+ "sheet_y": 0,
+ "short_name": "flamingo",
+ "short_names": ["flamingo"],
"text": null,
"texts": null,
- "category": "Travel & Places",
- "sort_order": 91,
- "added_in": "6.0",
+ "category": "Animals & Nature",
+ "subcategory": "animal-bird",
+ "sort_order": 616,
+ "added_in": "12.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": "NO BICYCLES",
- "unified": "1F6B3",
+ "name": "OYSTER",
+ "unified": "1F9AA",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f6b3.png",
- "sheet_x": 35,
- "sheet_y": 38,
- "short_name": "no_bicycles",
- "short_names": ["no_bicycles"],
+ "image": "1f9aa.png",
+ "sheet_x": 45,
+ "sheet_y": 1,
+ "short_name": "oyster",
+ "short_names": ["oyster"],
"text": null,
"texts": null,
- "category": "Symbols",
- "sort_order": 18,
- "added_in": "6.0",
+ "category": "Food & Drink",
+ "subcategory": "food-marine",
+ "sort_order": 778,
+ "added_in": "12.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": null,
- "unified": "1F6B4-200D-2640-FE0F",
- "non_qualified": "1F6B4-200D-2640",
+ "name": "BEAVER",
+ "unified": "1F9AB",
+ "non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f6b4-200d-2640-fe0f.png",
- "sheet_x": 35,
- "sheet_y": 39,
- "short_name": "woman-biking",
- "short_names": ["woman-biking"],
+ "image": "1f9ab.png",
+ "sheet_x": 45,
+ "sheet_y": 2,
+ "short_name": "beaver",
+ "short_names": ["beaver"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 298,
- "added_in": "6.0",
+ "category": "Animals & Nature",
+ "subcategory": "animal-mammal",
+ "sort_order": 588,
+ "added_in": "13.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F6B4-1F3FB-200D-2640-FE0F",
- "non_qualified": "1F6B4-1F3FB-200D-2640",
- "image": "1f6b4-1f3fb-200d-2640-fe0f.png",
- "sheet_x": 35,
- "sheet_y": 40,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F6B4-1F3FC-200D-2640-FE0F",
- "non_qualified": "1F6B4-1F3FC-200D-2640",
- "image": "1f6b4-1f3fc-200d-2640-fe0f.png",
- "sheet_x": 35,
- "sheet_y": 41,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F6B4-1F3FD-200D-2640-FE0F",
- "non_qualified": "1F6B4-1F3FD-200D-2640",
- "image": "1f6b4-1f3fd-200d-2640-fe0f.png",
- "sheet_x": 35,
- "sheet_y": 42,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F6B4-1F3FE-200D-2640-FE0F",
- "non_qualified": "1F6B4-1F3FE-200D-2640",
- "image": "1f6b4-1f3fe-200d-2640-fe0f.png",
- "sheet_x": 35,
- "sheet_y": 43,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F6B4-1F3FF-200D-2640-FE0F",
- "non_qualified": "1F6B4-1F3FF-200D-2640",
- "image": "1f6b4-1f3ff-200d-2640-fe0f.png",
- "sheet_x": 35,
- "sheet_y": 44,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- }
+ "has_img_facebook": true
},
{
- "name": null,
- "unified": "1F6B4-200D-2642-FE0F",
- "non_qualified": "1F6B4-200D-2642",
+ "name": "BISON",
+ "unified": "1F9AC",
+ "non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f6b4-200d-2642-fe0f.png",
- "sheet_x": 35,
- "sheet_y": 45,
- "short_name": "man-biking",
- "short_names": ["man-biking"],
+ "image": "1f9ac.png",
+ "sheet_x": 45,
+ "sheet_y": 3,
+ "short_name": "bison",
+ "short_names": ["bison"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 297,
- "added_in": "6.0",
+ "category": "Animals & Nature",
+ "subcategory": "animal-mammal",
+ "sort_order": 561,
+ "added_in": "13.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F6B4-1F3FB-200D-2642-FE0F",
- "non_qualified": "1F6B4-1F3FB-200D-2642",
- "image": "1f6b4-1f3fb-200d-2642-fe0f.png",
- "sheet_x": 35,
- "sheet_y": 46,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F6B4-1F3FC-200D-2642-FE0F",
- "non_qualified": "1F6B4-1F3FC-200D-2642",
- "image": "1f6b4-1f3fc-200d-2642-fe0f.png",
- "sheet_x": 35,
- "sheet_y": 47,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F6B4-1F3FD-200D-2642-FE0F",
- "non_qualified": "1F6B4-1F3FD-200D-2642",
- "image": "1f6b4-1f3fd-200d-2642-fe0f.png",
- "sheet_x": 35,
- "sheet_y": 48,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F6B4-1F3FE-200D-2642-FE0F",
- "non_qualified": "1F6B4-1F3FE-200D-2642",
- "image": "1f6b4-1f3fe-200d-2642-fe0f.png",
- "sheet_x": 35,
- "sheet_y": 49,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F6B4-1F3FF-200D-2642-FE0F",
- "non_qualified": "1F6B4-1F3FF-200D-2642",
- "image": "1f6b4-1f3ff-200d-2642-fe0f.png",
- "sheet_x": 35,
- "sheet_y": 50,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- },
- "obsoletes": "1F6B4"
+ "has_img_facebook": true
},
{
- "name": "BICYCLIST",
- "unified": "1F6B4",
+ "name": "SEAL",
+ "unified": "1F9AD",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f6b4.png",
- "sheet_x": 35,
- "sheet_y": 51,
- "short_name": "bicyclist",
- "short_names": ["bicyclist"],
+ "image": "1f9ad.png",
+ "sheet_x": 45,
+ "sheet_y": 4,
+ "short_name": "seal",
+ "short_names": ["seal"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 296,
- "added_in": "6.0",
+ "category": "Animals & Nature",
+ "subcategory": "animal-marine",
+ "sort_order": 634,
+ "added_in": "13.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": true,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F6B4-1F3FB",
- "non_qualified": null,
- "image": "1f6b4-1f3fb.png",
- "sheet_x": 35,
- "sheet_y": 52,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": true
- },
- "1F3FC": {
- "unified": "1F6B4-1F3FC",
- "non_qualified": null,
- "image": "1f6b4-1f3fc.png",
- "sheet_x": 36,
- "sheet_y": 0,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": true
- },
- "1F3FD": {
- "unified": "1F6B4-1F3FD",
- "non_qualified": null,
- "image": "1f6b4-1f3fd.png",
- "sheet_x": 36,
- "sheet_y": 1,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": true
- },
- "1F3FE": {
- "unified": "1F6B4-1F3FE",
- "non_qualified": null,
- "image": "1f6b4-1f3fe.png",
- "sheet_x": 36,
- "sheet_y": 2,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": true
- },
- "1F3FF": {
- "unified": "1F6B4-1F3FF",
- "non_qualified": null,
- "image": "1f6b4-1f3ff.png",
- "sheet_x": 36,
- "sheet_y": 3,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": true
- }
- },
- "obsoleted_by": "1F6B4-200D-2642-FE0F"
+ "has_img_facebook": true
},
{
- "name": null,
- "unified": "1F6B5-200D-2640-FE0F",
- "non_qualified": "1F6B5-200D-2640",
+ "name": "GUIDE DOG",
+ "unified": "1F9AE",
+ "non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f6b5-200d-2640-fe0f.png",
- "sheet_x": 36,
- "sheet_y": 4,
- "short_name": "woman-mountain-biking",
- "short_names": ["woman-mountain-biking"],
+ "image": "1f9ae.png",
+ "sheet_x": 45,
+ "sheet_y": 5,
+ "short_name": "guide_dog",
+ "short_names": ["guide_dog"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 301,
- "added_in": "6.0",
+ "category": "Animals & Nature",
+ "subcategory": "animal-mammal",
+ "sort_order": 541,
+ "added_in": "12.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F6B5-1F3FB-200D-2640-FE0F",
- "non_qualified": "1F6B5-1F3FB-200D-2640",
- "image": "1f6b5-1f3fb-200d-2640-fe0f.png",
- "sheet_x": 36,
- "sheet_y": 5,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F6B5-1F3FC-200D-2640-FE0F",
- "non_qualified": "1F6B5-1F3FC-200D-2640",
- "image": "1f6b5-1f3fc-200d-2640-fe0f.png",
- "sheet_x": 36,
- "sheet_y": 6,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F6B5-1F3FD-200D-2640-FE0F",
- "non_qualified": "1F6B5-1F3FD-200D-2640",
- "image": "1f6b5-1f3fd-200d-2640-fe0f.png",
- "sheet_x": 36,
- "sheet_y": 7,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F6B5-1F3FE-200D-2640-FE0F",
- "non_qualified": "1F6B5-1F3FE-200D-2640",
- "image": "1f6b5-1f3fe-200d-2640-fe0f.png",
- "sheet_x": 36,
- "sheet_y": 8,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F6B5-1F3FF-200D-2640-FE0F",
- "non_qualified": "1F6B5-1F3FF-200D-2640",
- "image": "1f6b5-1f3ff-200d-2640-fe0f.png",
- "sheet_x": 36,
- "sheet_y": 9,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- }
+ "has_img_facebook": true
},
{
- "name": null,
- "unified": "1F6B5-200D-2642-FE0F",
- "non_qualified": "1F6B5-200D-2642",
+ "name": "PROBING CANE",
+ "unified": "1F9AF",
+ "non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f6b5-200d-2642-fe0f.png",
- "sheet_x": 36,
- "sheet_y": 10,
- "short_name": "man-mountain-biking",
- "short_names": ["man-mountain-biking"],
+ "image": "1f9af.png",
+ "sheet_x": 45,
+ "sheet_y": 6,
+ "short_name": "probing_cane",
+ "short_names": ["probing_cane"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 300,
- "added_in": "6.0",
+ "category": "Objects",
+ "subcategory": "tool",
+ "sort_order": 1329,
+ "added_in": "12.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F6B5-1F3FB-200D-2642-FE0F",
- "non_qualified": "1F6B5-1F3FB-200D-2642",
- "image": "1f6b5-1f3fb-200d-2642-fe0f.png",
- "sheet_x": 36,
- "sheet_y": 11,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F6B5-1F3FC-200D-2642-FE0F",
- "non_qualified": "1F6B5-1F3FC-200D-2642",
- "image": "1f6b5-1f3fc-200d-2642-fe0f.png",
- "sheet_x": 36,
- "sheet_y": 12,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F6B5-1F3FD-200D-2642-FE0F",
- "non_qualified": "1F6B5-1F3FD-200D-2642",
- "image": "1f6b5-1f3fd-200d-2642-fe0f.png",
- "sheet_x": 36,
- "sheet_y": 13,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F6B5-1F3FE-200D-2642-FE0F",
- "non_qualified": "1F6B5-1F3FE-200D-2642",
- "image": "1f6b5-1f3fe-200d-2642-fe0f.png",
- "sheet_x": 36,
- "sheet_y": 14,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F6B5-1F3FF-200D-2642-FE0F",
- "non_qualified": "1F6B5-1F3FF-200D-2642",
- "image": "1f6b5-1f3ff-200d-2642-fe0f.png",
- "sheet_x": 36,
- "sheet_y": 15,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- },
- "obsoletes": "1F6B5"
+ "has_img_facebook": true
+ },
+ {
+ "name": "BONE",
+ "unified": "1F9B4",
+ "non_qualified": null,
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f9b4.png",
+ "sheet_x": 45,
+ "sheet_y": 7,
+ "short_name": "bone",
+ "short_names": ["bone"],
+ "text": null,
+ "texts": null,
+ "category": "People & Body",
+ "subcategory": "body-parts",
+ "sort_order": 222,
+ "added_in": "11.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
},
{
- "name": "MOUNTAIN BICYCLIST",
- "unified": "1F6B5",
+ "name": "LEG",
+ "unified": "1F9B5",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f6b5.png",
- "sheet_x": 36,
- "sheet_y": 16,
- "short_name": "mountain_bicyclist",
- "short_names": ["mountain_bicyclist"],
+ "image": "1f9b5.png",
+ "sheet_x": 45,
+ "sheet_y": 8,
+ "short_name": "leg",
+ "short_names": ["leg"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 299,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "body-parts",
+ "sort_order": 213,
+ "added_in": "11.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": true,
+ "has_img_facebook": true,
"skin_variations": {
"1F3FB": {
- "unified": "1F6B5-1F3FB",
+ "unified": "1F9B5-1F3FB",
"non_qualified": null,
- "image": "1f6b5-1f3fb.png",
- "sheet_x": 36,
- "sheet_y": 17,
- "added_in": "8.0",
+ "image": "1f9b5-1f3fb.png",
+ "sheet_x": 45,
+ "sheet_y": 9,
+ "added_in": "11.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": true
+ "has_img_facebook": true
},
"1F3FC": {
- "unified": "1F6B5-1F3FC",
+ "unified": "1F9B5-1F3FC",
"non_qualified": null,
- "image": "1f6b5-1f3fc.png",
- "sheet_x": 36,
- "sheet_y": 18,
- "added_in": "8.0",
+ "image": "1f9b5-1f3fc.png",
+ "sheet_x": 45,
+ "sheet_y": 10,
+ "added_in": "11.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": true
+ "has_img_facebook": true
},
"1F3FD": {
- "unified": "1F6B5-1F3FD",
+ "unified": "1F9B5-1F3FD",
"non_qualified": null,
- "image": "1f6b5-1f3fd.png",
- "sheet_x": 36,
- "sheet_y": 19,
- "added_in": "8.0",
+ "image": "1f9b5-1f3fd.png",
+ "sheet_x": 45,
+ "sheet_y": 11,
+ "added_in": "11.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": true
+ "has_img_facebook": true
},
"1F3FE": {
- "unified": "1F6B5-1F3FE",
+ "unified": "1F9B5-1F3FE",
"non_qualified": null,
- "image": "1f6b5-1f3fe.png",
- "sheet_x": 36,
- "sheet_y": 20,
- "added_in": "8.0",
+ "image": "1f9b5-1f3fe.png",
+ "sheet_x": 45,
+ "sheet_y": 12,
+ "added_in": "11.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": true
+ "has_img_facebook": true
},
"1F3FF": {
- "unified": "1F6B5-1F3FF",
+ "unified": "1F9B5-1F3FF",
"non_qualified": null,
- "image": "1f6b5-1f3ff.png",
- "sheet_x": 36,
- "sheet_y": 21,
- "added_in": "8.0",
+ "image": "1f9b5-1f3ff.png",
+ "sheet_x": 45,
+ "sheet_y": 13,
+ "added_in": "11.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": true
+ "has_img_facebook": true
}
- },
- "obsoleted_by": "1F6B5-200D-2642-FE0F"
+ }
},
{
- "name": null,
- "unified": "1F6B6-200D-2640-FE0F",
- "non_qualified": "1F6B6-200D-2640",
+ "name": "FOOT",
+ "unified": "1F9B6",
+ "non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f6b6-200d-2640-fe0f.png",
- "sheet_x": 36,
- "sheet_y": 22,
- "short_name": "woman-walking",
- "short_names": ["woman-walking"],
+ "image": "1f9b6.png",
+ "sheet_x": 45,
+ "sheet_y": 14,
+ "short_name": "foot",
+ "short_names": ["foot"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 250,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "body-parts",
+ "sort_order": 214,
+ "added_in": "11.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": false,
"skin_variations": {
"1F3FB": {
- "unified": "1F6B6-1F3FB-200D-2640-FE0F",
- "non_qualified": "1F6B6-1F3FB-200D-2640",
- "image": "1f6b6-1f3fb-200d-2640-fe0f.png",
- "sheet_x": 36,
- "sheet_y": 23,
- "added_in": "8.0",
+ "unified": "1F9B6-1F3FB",
+ "non_qualified": null,
+ "image": "1f9b6-1f3fb.png",
+ "sheet_x": 45,
+ "sheet_y": 15,
+ "added_in": "11.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FC": {
- "unified": "1F6B6-1F3FC-200D-2640-FE0F",
- "non_qualified": "1F6B6-1F3FC-200D-2640",
- "image": "1f6b6-1f3fc-200d-2640-fe0f.png",
- "sheet_x": 36,
- "sheet_y": 24,
- "added_in": "8.0",
+ "unified": "1F9B6-1F3FC",
+ "non_qualified": null,
+ "image": "1f9b6-1f3fc.png",
+ "sheet_x": 45,
+ "sheet_y": 16,
+ "added_in": "11.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FD": {
- "unified": "1F6B6-1F3FD-200D-2640-FE0F",
- "non_qualified": "1F6B6-1F3FD-200D-2640",
- "image": "1f6b6-1f3fd-200d-2640-fe0f.png",
- "sheet_x": 36,
- "sheet_y": 25,
- "added_in": "8.0",
+ "unified": "1F9B6-1F3FD",
+ "non_qualified": null,
+ "image": "1f9b6-1f3fd.png",
+ "sheet_x": 45,
+ "sheet_y": 17,
+ "added_in": "11.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FE": {
- "unified": "1F6B6-1F3FE-200D-2640-FE0F",
- "non_qualified": "1F6B6-1F3FE-200D-2640",
- "image": "1f6b6-1f3fe-200d-2640-fe0f.png",
- "sheet_x": 36,
- "sheet_y": 26,
- "added_in": "8.0",
+ "unified": "1F9B6-1F3FE",
+ "non_qualified": null,
+ "image": "1f9b6-1f3fe.png",
+ "sheet_x": 45,
+ "sheet_y": 18,
+ "added_in": "11.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FF": {
- "unified": "1F6B6-1F3FF-200D-2640-FE0F",
- "non_qualified": "1F6B6-1F3FF-200D-2640",
- "image": "1f6b6-1f3ff-200d-2640-fe0f.png",
- "sheet_x": 36,
- "sheet_y": 27,
- "added_in": "8.0",
+ "unified": "1F9B6-1F3FF",
+ "non_qualified": null,
+ "image": "1f9b6-1f3ff.png",
+ "sheet_x": 45,
+ "sheet_y": 19,
+ "added_in": "11.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
}
}
},
{
- "name": null,
- "unified": "1F6B6-200D-2642-FE0F",
- "non_qualified": "1F6B6-200D-2642",
+ "name": "TOOTH",
+ "unified": "1F9B7",
+ "non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f6b6-200d-2642-fe0f.png",
- "sheet_x": 36,
- "sheet_y": 28,
- "short_name": "man-walking",
- "short_names": ["man-walking"],
+ "image": "1f9b7.png",
+ "sheet_x": 45,
+ "sheet_y": 20,
+ "short_name": "tooth",
+ "short_names": ["tooth"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 249,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "body-parts",
+ "sort_order": 221,
+ "added_in": "11.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F6B6-1F3FB-200D-2642-FE0F",
- "non_qualified": "1F6B6-1F3FB-200D-2642",
- "image": "1f6b6-1f3fb-200d-2642-fe0f.png",
- "sheet_x": 36,
- "sheet_y": 29,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F6B6-1F3FC-200D-2642-FE0F",
- "non_qualified": "1F6B6-1F3FC-200D-2642",
- "image": "1f6b6-1f3fc-200d-2642-fe0f.png",
- "sheet_x": 36,
- "sheet_y": 30,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F6B6-1F3FD-200D-2642-FE0F",
- "non_qualified": "1F6B6-1F3FD-200D-2642",
- "image": "1f6b6-1f3fd-200d-2642-fe0f.png",
- "sheet_x": 36,
- "sheet_y": 31,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F6B6-1F3FE-200D-2642-FE0F",
- "non_qualified": "1F6B6-1F3FE-200D-2642",
- "image": "1f6b6-1f3fe-200d-2642-fe0f.png",
- "sheet_x": 36,
- "sheet_y": 32,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F6B6-1F3FF-200D-2642-FE0F",
- "non_qualified": "1F6B6-1F3FF-200D-2642",
- "image": "1f6b6-1f3ff-200d-2642-fe0f.png",
- "sheet_x": 36,
- "sheet_y": 33,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- },
- "obsoletes": "1F6B6"
+ "has_img_facebook": true
},
{
- "name": "PEDESTRIAN",
- "unified": "1F6B6",
- "non_qualified": null,
- "docomo": "E733",
- "au": "EB72",
- "softbank": "E201",
- "google": "FE7F0",
- "image": "1f6b6.png",
- "sheet_x": 36,
- "sheet_y": 34,
- "short_name": "walking",
- "short_names": ["walking"],
+ "name": "WOMAN SUPERHERO",
+ "unified": "1F9B8-200D-2640-FE0F",
+ "non_qualified": "1F9B8-200D-2640",
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f9b8-200d-2640-fe0f.png",
+ "sheet_x": 45,
+ "sheet_y": 21,
+ "short_name": "female_superhero",
+ "short_names": ["female_superhero"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 248,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "person-fantasy",
+ "sort_order": 374,
+ "added_in": "11.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": true,
+ "has_img_facebook": true,
"skin_variations": {
"1F3FB": {
- "unified": "1F6B6-1F3FB",
- "non_qualified": null,
- "image": "1f6b6-1f3fb.png",
- "sheet_x": 36,
- "sheet_y": 35,
- "added_in": "8.0",
+ "unified": "1F9B8-1F3FB-200D-2640-FE0F",
+ "non_qualified": "1F9B8-1F3FB-200D-2640",
+ "image": "1f9b8-1f3fb-200d-2640-fe0f.png",
+ "sheet_x": 45,
+ "sheet_y": 22,
+ "added_in": "11.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": true
+ "has_img_facebook": true
},
"1F3FC": {
- "unified": "1F6B6-1F3FC",
- "non_qualified": null,
- "image": "1f6b6-1f3fc.png",
- "sheet_x": 36,
- "sheet_y": 36,
- "added_in": "8.0",
+ "unified": "1F9B8-1F3FC-200D-2640-FE0F",
+ "non_qualified": "1F9B8-1F3FC-200D-2640",
+ "image": "1f9b8-1f3fc-200d-2640-fe0f.png",
+ "sheet_x": 45,
+ "sheet_y": 23,
+ "added_in": "11.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": true
+ "has_img_facebook": true
},
"1F3FD": {
- "unified": "1F6B6-1F3FD",
- "non_qualified": null,
- "image": "1f6b6-1f3fd.png",
- "sheet_x": 36,
- "sheet_y": 37,
- "added_in": "8.0",
+ "unified": "1F9B8-1F3FD-200D-2640-FE0F",
+ "non_qualified": "1F9B8-1F3FD-200D-2640",
+ "image": "1f9b8-1f3fd-200d-2640-fe0f.png",
+ "sheet_x": 45,
+ "sheet_y": 24,
+ "added_in": "11.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": true
+ "has_img_facebook": true
},
"1F3FE": {
- "unified": "1F6B6-1F3FE",
- "non_qualified": null,
- "image": "1f6b6-1f3fe.png",
- "sheet_x": 36,
- "sheet_y": 38,
- "added_in": "8.0",
+ "unified": "1F9B8-1F3FE-200D-2640-FE0F",
+ "non_qualified": "1F9B8-1F3FE-200D-2640",
+ "image": "1f9b8-1f3fe-200d-2640-fe0f.png",
+ "sheet_x": 45,
+ "sheet_y": 25,
+ "added_in": "11.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": true
+ "has_img_facebook": true
},
"1F3FF": {
- "unified": "1F6B6-1F3FF",
- "non_qualified": null,
- "image": "1f6b6-1f3ff.png",
- "sheet_x": 36,
- "sheet_y": 39,
- "added_in": "8.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": true
- }
- },
- "obsoleted_by": "1F6B6-200D-2642-FE0F"
- },
- {
- "name": "NO PEDESTRIANS",
- "unified": "1F6B7",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f6b7.png",
- "sheet_x": 36,
- "sheet_y": 40,
- "short_name": "no_pedestrians",
- "short_names": ["no_pedestrians"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 22,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- {
- "name": "CHILDREN CROSSING",
- "unified": "1F6B8",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f6b8.png",
- "sheet_x": 36,
- "sheet_y": 41,
- "short_name": "children_crossing",
- "short_names": ["children_crossing"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 15,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- {
- "name": "MENS SYMBOL",
- "unified": "1F6B9",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": "E138",
- "google": "FEB33",
- "image": "1f6b9.png",
- "sheet_x": 36,
- "sheet_y": 42,
- "short_name": "mens",
- "short_names": ["mens"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 5,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- {
- "name": "WOMENS SYMBOL",
- "unified": "1F6BA",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": "E139",
- "google": "FEB34",
- "image": "1f6ba.png",
- "sheet_x": 36,
- "sheet_y": 43,
- "short_name": "womens",
- "short_names": ["womens"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 6,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- {
- "name": "RESTROOM",
- "unified": "1F6BB",
- "non_qualified": null,
- "docomo": "E66E",
- "au": "E4A5",
- "softbank": "E151",
- "google": "FE506",
- "image": "1f6bb.png",
- "sheet_x": 36,
- "sheet_y": 44,
- "short_name": "restroom",
- "short_names": ["restroom"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 7,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- {
- "name": "BABY SYMBOL",
- "unified": "1F6BC",
- "non_qualified": null,
- "docomo": null,
- "au": "EB18",
- "softbank": "E13A",
- "google": "FEB35",
- "image": "1f6bc.png",
- "sheet_x": 36,
- "sheet_y": 45,
- "short_name": "baby_symbol",
- "short_names": ["baby_symbol"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 8,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- {
- "name": "TOILET",
- "unified": "1F6BD",
- "non_qualified": null,
- "docomo": "E66E",
- "au": "E4A5",
- "softbank": "E140",
- "google": "FE507",
- "image": "1f6bd.png",
- "sheet_x": 36,
- "sheet_y": 46,
- "short_name": "toilet",
- "short_names": ["toilet"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 166,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- {
- "name": "WATER CLOSET",
- "unified": "1F6BE",
- "non_qualified": null,
- "docomo": "E66E",
- "au": "E4A5",
- "softbank": "E309",
- "google": "FE508",
- "image": "1f6be.png",
- "sheet_x": 36,
- "sheet_y": 47,
- "short_name": "wc",
- "short_names": ["wc"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 9,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- {
- "name": "SHOWER",
- "unified": "1F6BF",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f6bf.png",
- "sheet_x": 36,
- "sheet_y": 48,
- "short_name": "shower",
- "short_names": ["shower"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 167,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- {
- "name": "BATH",
- "unified": "1F6C0",
- "non_qualified": null,
- "docomo": "E6F7",
- "au": "E5D8",
- "softbank": "E13F",
- "google": "FE505",
- "image": "1f6c0.png",
- "sheet_x": 36,
- "sheet_y": 49,
- "short_name": "bath",
- "short_names": ["bath"],
+ "unified": "1F9B8-1F3FF-200D-2640-FE0F",
+ "non_qualified": "1F9B8-1F3FF-200D-2640",
+ "image": "1f9b8-1f3ff-200d-2640-fe0f.png",
+ "sheet_x": 45,
+ "sheet_y": 26,
+ "added_in": "11.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ }
+ },
+ {
+ "name": "MAN SUPERHERO",
+ "unified": "1F9B8-200D-2642-FE0F",
+ "non_qualified": "1F9B8-200D-2642",
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f9b8-200d-2642-fe0f.png",
+ "sheet_x": 45,
+ "sheet_y": 27,
+ "short_name": "male_superhero",
+ "short_names": ["male_superhero"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 268,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "person-fantasy",
+ "sort_order": 373,
+ "added_in": "11.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": true,
"skin_variations": {
"1F3FB": {
- "unified": "1F6C0-1F3FB",
- "non_qualified": null,
- "image": "1f6c0-1f3fb.png",
- "sheet_x": 36,
- "sheet_y": 50,
- "added_in": "8.0",
+ "unified": "1F9B8-1F3FB-200D-2642-FE0F",
+ "non_qualified": "1F9B8-1F3FB-200D-2642",
+ "image": "1f9b8-1f3fb-200d-2642-fe0f.png",
+ "sheet_x": 45,
+ "sheet_y": 28,
+ "added_in": "11.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
"1F3FC": {
- "unified": "1F6C0-1F3FC",
- "non_qualified": null,
- "image": "1f6c0-1f3fc.png",
- "sheet_x": 36,
- "sheet_y": 51,
- "added_in": "8.0",
+ "unified": "1F9B8-1F3FC-200D-2642-FE0F",
+ "non_qualified": "1F9B8-1F3FC-200D-2642",
+ "image": "1f9b8-1f3fc-200d-2642-fe0f.png",
+ "sheet_x": 45,
+ "sheet_y": 29,
+ "added_in": "11.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
"1F3FD": {
- "unified": "1F6C0-1F3FD",
- "non_qualified": null,
- "image": "1f6c0-1f3fd.png",
- "sheet_x": 36,
- "sheet_y": 52,
- "added_in": "8.0",
+ "unified": "1F9B8-1F3FD-200D-2642-FE0F",
+ "non_qualified": "1F9B8-1F3FD-200D-2642",
+ "image": "1f9b8-1f3fd-200d-2642-fe0f.png",
+ "sheet_x": 45,
+ "sheet_y": 30,
+ "added_in": "11.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
"1F3FE": {
- "unified": "1F6C0-1F3FE",
- "non_qualified": null,
- "image": "1f6c0-1f3fe.png",
- "sheet_x": 37,
- "sheet_y": 0,
- "added_in": "8.0",
+ "unified": "1F9B8-1F3FE-200D-2642-FE0F",
+ "non_qualified": "1F9B8-1F3FE-200D-2642",
+ "image": "1f9b8-1f3fe-200d-2642-fe0f.png",
+ "sheet_x": 45,
+ "sheet_y": 31,
+ "added_in": "11.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
"1F3FF": {
- "unified": "1F6C0-1F3FF",
- "non_qualified": null,
- "image": "1f6c0-1f3ff.png",
- "sheet_x": 37,
- "sheet_y": 1,
- "added_in": "8.0",
+ "unified": "1F9B8-1F3FF-200D-2642-FE0F",
+ "non_qualified": "1F9B8-1F3FF-200D-2642",
+ "image": "1f9b8-1f3ff-200d-2642-fe0f.png",
+ "sheet_x": 45,
+ "sheet_y": 32,
+ "added_in": "11.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
}
}
},
{
- "name": "BATHTUB",
- "unified": "1F6C1",
+ "name": "SUPERHERO",
+ "unified": "1F9B8",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f6c1.png",
- "sheet_x": 37,
- "sheet_y": 2,
- "short_name": "bathtub",
- "short_names": ["bathtub"],
+ "image": "1f9b8.png",
+ "sheet_x": 45,
+ "sheet_y": 33,
+ "short_name": "superhero",
+ "short_names": ["superhero"],
"text": null,
"texts": null,
- "category": "Objects",
- "sort_order": 168,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "person-fantasy",
+ "sort_order": 372,
+ "added_in": "11.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": true
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F9B8-1F3FB",
+ "non_qualified": null,
+ "image": "1f9b8-1f3fb.png",
+ "sheet_x": 45,
+ "sheet_y": 34,
+ "added_in": "11.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1F9B8-1F3FC",
+ "non_qualified": null,
+ "image": "1f9b8-1f3fc.png",
+ "sheet_x": 45,
+ "sheet_y": 35,
+ "added_in": "11.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1F9B8-1F3FD",
+ "non_qualified": null,
+ "image": "1f9b8-1f3fd.png",
+ "sheet_x": 45,
+ "sheet_y": 36,
+ "added_in": "11.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1F9B8-1F3FE",
+ "non_qualified": null,
+ "image": "1f9b8-1f3fe.png",
+ "sheet_x": 45,
+ "sheet_y": 37,
+ "added_in": "11.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1F9B8-1F3FF",
+ "non_qualified": null,
+ "image": "1f9b8-1f3ff.png",
+ "sheet_x": 45,
+ "sheet_y": 38,
+ "added_in": "11.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ }
},
{
- "name": "PASSPORT CONTROL",
- "unified": "1F6C2",
- "non_qualified": null,
+ "name": "WOMAN SUPERVILLAIN",
+ "unified": "1F9B9-200D-2640-FE0F",
+ "non_qualified": "1F9B9-200D-2640",
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f6c2.png",
- "sheet_x": 37,
- "sheet_y": 3,
- "short_name": "passport_control",
- "short_names": ["passport_control"],
+ "image": "1f9b9-200d-2640-fe0f.png",
+ "sheet_x": 45,
+ "sheet_y": 39,
+ "short_name": "female_supervillain",
+ "short_names": ["female_supervillain"],
"text": null,
"texts": null,
- "category": "Symbols",
- "sort_order": 10,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "person-fantasy",
+ "sort_order": 377,
+ "added_in": "11.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": true
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F9B9-1F3FB-200D-2640-FE0F",
+ "non_qualified": "1F9B9-1F3FB-200D-2640",
+ "image": "1f9b9-1f3fb-200d-2640-fe0f.png",
+ "sheet_x": 45,
+ "sheet_y": 40,
+ "added_in": "11.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1F9B9-1F3FC-200D-2640-FE0F",
+ "non_qualified": "1F9B9-1F3FC-200D-2640",
+ "image": "1f9b9-1f3fc-200d-2640-fe0f.png",
+ "sheet_x": 45,
+ "sheet_y": 41,
+ "added_in": "11.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1F9B9-1F3FD-200D-2640-FE0F",
+ "non_qualified": "1F9B9-1F3FD-200D-2640",
+ "image": "1f9b9-1f3fd-200d-2640-fe0f.png",
+ "sheet_x": 45,
+ "sheet_y": 42,
+ "added_in": "11.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1F9B9-1F3FE-200D-2640-FE0F",
+ "non_qualified": "1F9B9-1F3FE-200D-2640",
+ "image": "1f9b9-1f3fe-200d-2640-fe0f.png",
+ "sheet_x": 45,
+ "sheet_y": 43,
+ "added_in": "11.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1F9B9-1F3FF-200D-2640-FE0F",
+ "non_qualified": "1F9B9-1F3FF-200D-2640",
+ "image": "1f9b9-1f3ff-200d-2640-fe0f.png",
+ "sheet_x": 45,
+ "sheet_y": 44,
+ "added_in": "11.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ }
},
{
- "name": "CUSTOMS",
- "unified": "1F6C3",
- "non_qualified": null,
+ "name": "MAN SUPERVILLAIN",
+ "unified": "1F9B9-200D-2642-FE0F",
+ "non_qualified": "1F9B9-200D-2642",
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f6c3.png",
- "sheet_x": 37,
- "sheet_y": 4,
- "short_name": "customs",
- "short_names": ["customs"],
+ "image": "1f9b9-200d-2642-fe0f.png",
+ "sheet_x": 45,
+ "sheet_y": 45,
+ "short_name": "male_supervillain",
+ "short_names": ["male_supervillain"],
"text": null,
"texts": null,
- "category": "Symbols",
- "sort_order": 11,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "person-fantasy",
+ "sort_order": 376,
+ "added_in": "11.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": true
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F9B9-1F3FB-200D-2642-FE0F",
+ "non_qualified": "1F9B9-1F3FB-200D-2642",
+ "image": "1f9b9-1f3fb-200d-2642-fe0f.png",
+ "sheet_x": 45,
+ "sheet_y": 46,
+ "added_in": "11.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1F9B9-1F3FC-200D-2642-FE0F",
+ "non_qualified": "1F9B9-1F3FC-200D-2642",
+ "image": "1f9b9-1f3fc-200d-2642-fe0f.png",
+ "sheet_x": 45,
+ "sheet_y": 47,
+ "added_in": "11.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1F9B9-1F3FD-200D-2642-FE0F",
+ "non_qualified": "1F9B9-1F3FD-200D-2642",
+ "image": "1f9b9-1f3fd-200d-2642-fe0f.png",
+ "sheet_x": 45,
+ "sheet_y": 48,
+ "added_in": "11.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1F9B9-1F3FE-200D-2642-FE0F",
+ "non_qualified": "1F9B9-1F3FE-200D-2642",
+ "image": "1f9b9-1f3fe-200d-2642-fe0f.png",
+ "sheet_x": 45,
+ "sheet_y": 49,
+ "added_in": "11.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1F9B9-1F3FF-200D-2642-FE0F",
+ "non_qualified": "1F9B9-1F3FF-200D-2642",
+ "image": "1f9b9-1f3ff-200d-2642-fe0f.png",
+ "sheet_x": 45,
+ "sheet_y": 50,
+ "added_in": "11.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ }
},
{
- "name": "BAGGAGE CLAIM",
- "unified": "1F6C4",
+ "name": "SUPERVILLAIN",
+ "unified": "1F9B9",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f6c4.png",
- "sheet_x": 37,
- "sheet_y": 5,
- "short_name": "baggage_claim",
- "short_names": ["baggage_claim"],
+ "image": "1f9b9.png",
+ "sheet_x": 45,
+ "sheet_y": 51,
+ "short_name": "supervillain",
+ "short_names": ["supervillain"],
"text": null,
"texts": null,
- "category": "Symbols",
- "sort_order": 12,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "person-fantasy",
+ "sort_order": 375,
+ "added_in": "11.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": true
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F9B9-1F3FB",
+ "non_qualified": null,
+ "image": "1f9b9-1f3fb.png",
+ "sheet_x": 45,
+ "sheet_y": 52,
+ "added_in": "11.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1F9B9-1F3FC",
+ "non_qualified": null,
+ "image": "1f9b9-1f3fc.png",
+ "sheet_x": 45,
+ "sheet_y": 53,
+ "added_in": "11.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1F9B9-1F3FD",
+ "non_qualified": null,
+ "image": "1f9b9-1f3fd.png",
+ "sheet_x": 45,
+ "sheet_y": 54,
+ "added_in": "11.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1F9B9-1F3FE",
+ "non_qualified": null,
+ "image": "1f9b9-1f3fe.png",
+ "sheet_x": 45,
+ "sheet_y": 55,
+ "added_in": "11.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1F9B9-1F3FF",
+ "non_qualified": null,
+ "image": "1f9b9-1f3ff.png",
+ "sheet_x": 45,
+ "sheet_y": 56,
+ "added_in": "11.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ }
},
{
- "name": "LEFT LUGGAGE",
- "unified": "1F6C5",
+ "name": "SAFETY VEST",
+ "unified": "1F9BA",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f6c5.png",
- "sheet_x": 37,
- "sheet_y": 6,
- "short_name": "left_luggage",
- "short_names": ["left_luggage"],
- "text": null,
- "texts": null,
- "category": "Symbols",
- "sort_order": 13,
- "added_in": "6.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
- },
- {
- "name": null,
- "unified": "1F6CB-FE0F",
- "non_qualified": "1F6CB",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f6cb-fe0f.png",
- "sheet_x": 37,
- "sheet_y": 7,
- "short_name": "couch_and_lamp",
- "short_names": ["couch_and_lamp"],
+ "image": "1f9ba.png",
+ "sheet_x": 45,
+ "sheet_y": 57,
+ "short_name": "safety_vest",
+ "short_names": ["safety_vest"],
"text": null,
"texts": null,
"category": "Objects",
- "sort_order": 165,
- "added_in": "7.0",
+ "subcategory": "clothing",
+ "sort_order": 1127,
+ "added_in": "12.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
- "name": "SLEEPING ACCOMMODATION",
- "unified": "1F6CC",
+ "name": "EAR WITH HEARING AID",
+ "unified": "1F9BB",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f6cc.png",
- "sheet_x": 37,
- "sheet_y": 8,
- "short_name": "sleeping_accommodation",
- "short_names": ["sleeping_accommodation"],
+ "image": "1f9bb.png",
+ "sheet_x": 45,
+ "sheet_y": 58,
+ "short_name": "ear_with_hearing_aid",
+ "short_names": ["ear_with_hearing_aid"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 269,
- "added_in": "7.0",
+ "category": "People & Body",
+ "subcategory": "body-parts",
+ "sort_order": 216,
+ "added_in": "12.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": false,
"skin_variations": {
"1F3FB": {
- "unified": "1F6CC-1F3FB",
+ "unified": "1F9BB-1F3FB",
"non_qualified": null,
- "image": "1f6cc-1f3fb.png",
- "sheet_x": 37,
- "sheet_y": 9,
- "added_in": "8.0",
+ "image": "1f9bb-1f3fb.png",
+ "sheet_x": 45,
+ "sheet_y": 59,
+ "added_in": "12.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FC": {
- "unified": "1F6CC-1F3FC",
+ "unified": "1F9BB-1F3FC",
"non_qualified": null,
- "image": "1f6cc-1f3fc.png",
- "sheet_x": 37,
- "sheet_y": 10,
- "added_in": "8.0",
+ "image": "1f9bb-1f3fc.png",
+ "sheet_x": 45,
+ "sheet_y": 60,
+ "added_in": "12.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FD": {
- "unified": "1F6CC-1F3FD",
+ "unified": "1F9BB-1F3FD",
"non_qualified": null,
- "image": "1f6cc-1f3fd.png",
- "sheet_x": 37,
- "sheet_y": 11,
- "added_in": "8.0",
+ "image": "1f9bb-1f3fd.png",
+ "sheet_x": 46,
+ "sheet_y": 0,
+ "added_in": "12.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FE": {
- "unified": "1F6CC-1F3FE",
+ "unified": "1F9BB-1F3FE",
"non_qualified": null,
- "image": "1f6cc-1f3fe.png",
- "sheet_x": 37,
- "sheet_y": 12,
- "added_in": "8.0",
+ "image": "1f9bb-1f3fe.png",
+ "sheet_x": 46,
+ "sheet_y": 1,
+ "added_in": "12.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FF": {
- "unified": "1F6CC-1F3FF",
+ "unified": "1F9BB-1F3FF",
"non_qualified": null,
- "image": "1f6cc-1f3ff.png",
- "sheet_x": 37,
- "sheet_y": 13,
- "added_in": "8.0",
+ "image": "1f9bb-1f3ff.png",
+ "sheet_x": 46,
+ "sheet_y": 2,
+ "added_in": "12.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
}
}
},
{
- "name": null,
- "unified": "1F6CD-FE0F",
- "non_qualified": "1F6CD",
+ "name": "MOTORIZED WHEELCHAIR",
+ "unified": "1F9BC",
+ "non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f6cd-fe0f.png",
- "sheet_x": 37,
- "sheet_y": 14,
- "short_name": "shopping_bags",
- "short_names": ["shopping_bags"],
+ "image": "1f9bc.png",
+ "sheet_x": 46,
+ "sheet_y": 3,
+ "short_name": "motorized_wheelchair",
+ "short_names": ["motorized_wheelchair"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 451,
- "added_in": "7.0",
+ "category": "Travel & Places",
+ "subcategory": "transport-ground",
+ "sort_order": 919,
+ "added_in": "12.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
- "name": null,
- "unified": "1F6CE-FE0F",
- "non_qualified": "1F6CE",
+ "name": "MANUAL WHEELCHAIR",
+ "unified": "1F9BD",
+ "non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f6ce-fe0f.png",
- "sheet_x": 37,
- "sheet_y": 15,
- "short_name": "bellhop_bell",
- "short_names": ["bellhop_bell"],
+ "image": "1f9bd.png",
+ "sheet_x": 46,
+ "sheet_y": 4,
+ "short_name": "manual_wheelchair",
+ "short_names": ["manual_wheelchair"],
"text": null,
"texts": null,
"category": "Travel & Places",
- "sort_order": 125,
- "added_in": "7.0",
+ "subcategory": "transport-ground",
+ "sort_order": 918,
+ "added_in": "12.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
- "name": null,
- "unified": "1F6CF-FE0F",
- "non_qualified": "1F6CF",
+ "name": "MECHANICAL ARM",
+ "unified": "1F9BE",
+ "non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f6cf-fe0f.png",
- "sheet_x": 37,
- "sheet_y": 16,
- "short_name": "bed",
- "short_names": ["bed"],
+ "image": "1f9be.png",
+ "sheet_x": 46,
+ "sheet_y": 5,
+ "short_name": "mechanical_arm",
+ "short_names": ["mechanical_arm"],
"text": null,
"texts": null,
- "category": "Objects",
- "sort_order": 164,
- "added_in": "7.0",
+ "category": "People & Body",
+ "subcategory": "body-parts",
+ "sort_order": 211,
+ "added_in": "12.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
- "name": "PLACE OF WORSHIP",
- "unified": "1F6D0",
+ "name": "MECHANICAL LEG",
+ "unified": "1F9BF",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f6d0.png",
- "sheet_x": 37,
- "sheet_y": 17,
- "short_name": "place_of_worship",
- "short_names": ["place_of_worship"],
+ "image": "1f9bf.png",
+ "sheet_x": 46,
+ "sheet_y": 6,
+ "short_name": "mechanical_leg",
+ "short_names": ["mechanical_leg"],
"text": null,
"texts": null,
- "category": "Symbols",
- "sort_order": 48,
- "added_in": "8.0",
+ "category": "People & Body",
+ "subcategory": "body-parts",
+ "sort_order": 212,
+ "added_in": "12.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
- "name": "OCTAGONAL SIGN",
- "unified": "1F6D1",
+ "name": "CHEESE WEDGE",
+ "unified": "1F9C0",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f6d1.png",
- "sheet_x": 37,
- "sheet_y": 18,
- "short_name": "octagonal_sign",
- "short_names": ["octagonal_sign"],
+ "image": "1f9c0.png",
+ "sheet_x": 46,
+ "sheet_y": 7,
+ "short_name": "cheese_wedge",
+ "short_names": ["cheese_wedge"],
"text": null,
"texts": null,
- "category": "Travel & Places",
- "sort_order": 103,
- "added_in": "9.0",
+ "category": "Food & Drink",
+ "subcategory": "food-prepared",
+ "sort_order": 731,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
- "name": "SHOPPING TROLLEY",
- "unified": "1F6D2",
+ "name": "CUPCAKE",
+ "unified": "1F9C1",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f6d2.png",
- "sheet_x": 37,
- "sheet_y": 19,
- "short_name": "shopping_trolley",
- "short_names": ["shopping_trolley"],
+ "image": "1f9c1.png",
+ "sheet_x": 46,
+ "sheet_y": 8,
+ "short_name": "cupcake",
+ "short_names": ["cupcake"],
+ "text": null,
+ "texts": null,
+ "category": "Food & Drink",
+ "subcategory": "food-sweet",
+ "sort_order": 786,
+ "added_in": "11.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "SALT SHAKER",
+ "unified": "1F9C2",
+ "non_qualified": null,
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f9c2.png",
+ "sheet_x": 46,
+ "sheet_y": 9,
+ "short_name": "salt",
+ "short_names": ["salt"],
+ "text": null,
+ "texts": null,
+ "category": "Food & Drink",
+ "subcategory": "food-prepared",
+ "sort_order": 755,
+ "added_in": "11.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "BEVERAGE BOX",
+ "unified": "1F9C3",
+ "non_qualified": null,
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f9c3.png",
+ "sheet_x": 46,
+ "sheet_y": 10,
+ "short_name": "beverage_box",
+ "short_names": ["beverage_box"],
+ "text": null,
+ "texts": null,
+ "category": "Food & Drink",
+ "subcategory": "drink",
+ "sort_order": 810,
+ "added_in": "12.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "GARLIC",
+ "unified": "1F9C4",
+ "non_qualified": null,
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f9c4.png",
+ "sheet_x": 46,
+ "sheet_y": 11,
+ "short_name": "garlic",
+ "short_names": ["garlic"],
+ "text": null,
+ "texts": null,
+ "category": "Food & Drink",
+ "subcategory": "food-vegetable",
+ "sort_order": 716,
+ "added_in": "12.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "ONION",
+ "unified": "1F9C5",
+ "non_qualified": null,
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f9c5.png",
+ "sheet_x": 46,
+ "sheet_y": 12,
+ "short_name": "onion",
+ "short_names": ["onion"],
"text": null,
"texts": null,
- "category": "Objects",
- "sort_order": 177,
- "added_in": "9.0",
+ "category": "Food & Drink",
+ "subcategory": "food-vegetable",
+ "sort_order": 717,
+ "added_in": "12.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
- "name": null,
- "unified": "1F6E0-FE0F",
- "non_qualified": "1F6E0",
+ "name": "FALAFEL",
+ "unified": "1F9C6",
+ "non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f6e0-fe0f.png",
- "sheet_x": 37,
- "sheet_y": 20,
- "short_name": "hammer_and_wrench",
- "short_names": ["hammer_and_wrench"],
+ "image": "1f9c6.png",
+ "sheet_x": 46,
+ "sheet_y": 13,
+ "short_name": "falafel",
+ "short_names": ["falafel"],
"text": null,
"texts": null,
- "category": "Objects",
- "sort_order": 139,
- "added_in": "7.0",
+ "category": "Food & Drink",
+ "subcategory": "food-prepared",
+ "sort_order": 745,
+ "added_in": "12.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
- "name": null,
- "unified": "1F6E1-FE0F",
- "non_qualified": "1F6E1",
+ "name": "WAFFLE",
+ "unified": "1F9C7",
+ "non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f6e1-fe0f.png",
- "sheet_x": 37,
- "sheet_y": 21,
- "short_name": "shield",
- "short_names": ["shield"],
+ "image": "1f9c7.png",
+ "sheet_x": 46,
+ "sheet_y": 14,
+ "short_name": "waffle",
+ "short_names": ["waffle"],
"text": null,
"texts": null,
- "category": "Objects",
- "sort_order": 144,
- "added_in": "7.0",
+ "category": "Food & Drink",
+ "subcategory": "food-prepared",
+ "sort_order": 730,
+ "added_in": "12.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
- "name": null,
- "unified": "1F6E2-FE0F",
- "non_qualified": "1F6E2",
+ "name": "BUTTER",
+ "unified": "1F9C8",
+ "non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f6e2-fe0f.png",
- "sheet_x": 37,
- "sheet_y": 22,
- "short_name": "oil_drum",
- "short_names": ["oil_drum"],
+ "image": "1f9c8.png",
+ "sheet_x": 46,
+ "sheet_y": 15,
+ "short_name": "butter",
+ "short_names": ["butter"],
"text": null,
"texts": null,
- "category": "Travel & Places",
- "sort_order": 98,
- "added_in": "7.0",
+ "category": "Food & Drink",
+ "subcategory": "food-prepared",
+ "sort_order": 754,
+ "added_in": "12.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
- "name": null,
- "unified": "1F6E3-FE0F",
- "non_qualified": "1F6E3",
+ "name": "MATE DRINK",
+ "unified": "1F9C9",
+ "non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f6e3-fe0f.png",
- "sheet_x": 37,
- "sheet_y": 23,
- "short_name": "motorway",
- "short_names": ["motorway"],
+ "image": "1f9c9.png",
+ "sheet_x": 46,
+ "sheet_y": 16,
+ "short_name": "mate_drink",
+ "short_names": ["mate_drink"],
"text": null,
"texts": null,
- "category": "Travel & Places",
- "sort_order": 96,
- "added_in": "7.0",
+ "category": "Food & Drink",
+ "subcategory": "drink",
+ "sort_order": 811,
+ "added_in": "12.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
- "name": null,
- "unified": "1F6E4-FE0F",
- "non_qualified": "1F6E4",
+ "name": "ICE CUBE",
+ "unified": "1F9CA",
+ "non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f6e4-fe0f.png",
- "sheet_x": 37,
- "sheet_y": 24,
- "short_name": "railway_track",
- "short_names": ["railway_track"],
+ "image": "1f9ca.png",
+ "sheet_x": 46,
+ "sheet_y": 17,
+ "short_name": "ice_cube",
+ "short_names": ["ice_cube"],
"text": null,
"texts": null,
- "category": "Travel & Places",
- "sort_order": 97,
- "added_in": "7.0",
+ "category": "Food & Drink",
+ "subcategory": "drink",
+ "sort_order": 812,
+ "added_in": "12.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
- "name": null,
- "unified": "1F6E5-FE0F",
- "non_qualified": "1F6E5",
+ "name": "BUBBLE TEA",
+ "unified": "1F9CB",
+ "non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f6e5-fe0f.png",
- "sheet_x": 37,
- "sheet_y": 25,
- "short_name": "motor_boat",
- "short_names": ["motor_boat"],
+ "image": "1f9cb.png",
+ "sheet_x": 46,
+ "sheet_y": 18,
+ "short_name": "bubble_tea",
+ "short_names": ["bubble_tea"],
"text": null,
"texts": null,
- "category": "Travel & Places",
- "sort_order": 111,
- "added_in": "7.0",
+ "category": "Food & Drink",
+ "subcategory": "drink",
+ "sort_order": 809,
+ "added_in": "13.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
- "name": null,
- "unified": "1F6E9-FE0F",
- "non_qualified": "1F6E9",
+ "name": "TROLL",
+ "unified": "1F9CC",
+ "non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f6e9-fe0f.png",
- "sheet_x": 37,
- "sheet_y": 26,
- "short_name": "small_airplane",
- "short_names": ["small_airplane"],
+ "image": "1f9cc.png",
+ "sheet_x": 46,
+ "sheet_y": 19,
+ "short_name": "troll",
+ "short_names": ["troll"],
"text": null,
"texts": null,
- "category": "Travel & Places",
- "sort_order": 114,
- "added_in": "7.0",
+ "category": "People & Body",
+ "subcategory": "person-fantasy",
+ "sort_order": 399,
+ "added_in": "14.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
- "name": "AIRPLANE DEPARTURE",
- "unified": "1F6EB",
- "non_qualified": null,
+ "name": "WOMAN STANDING",
+ "unified": "1F9CD-200D-2640-FE0F",
+ "non_qualified": "1F9CD-200D-2640",
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f6eb.png",
- "sheet_x": 37,
- "sheet_y": 27,
- "short_name": "airplane_departure",
- "short_names": ["airplane_departure"],
+ "image": "1f9cd-200d-2640-fe0f.png",
+ "sheet_x": 46,
+ "sheet_y": 20,
+ "short_name": "woman_standing",
+ "short_names": ["woman_standing"],
"text": null,
"texts": null,
- "category": "Travel & Places",
- "sort_order": 115,
- "added_in": "7.0",
+ "category": "People & Body",
+ "subcategory": "person-activity",
+ "sort_order": 411,
+ "added_in": "12.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": false
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F9CD-1F3FB-200D-2640-FE0F",
+ "non_qualified": "1F9CD-1F3FB-200D-2640",
+ "image": "1f9cd-1f3fb-200d-2640-fe0f.png",
+ "sheet_x": 46,
+ "sheet_y": 21,
+ "added_in": "12.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1F9CD-1F3FC-200D-2640-FE0F",
+ "non_qualified": "1F9CD-1F3FC-200D-2640",
+ "image": "1f9cd-1f3fc-200d-2640-fe0f.png",
+ "sheet_x": 46,
+ "sheet_y": 22,
+ "added_in": "12.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1F9CD-1F3FD-200D-2640-FE0F",
+ "non_qualified": "1F9CD-1F3FD-200D-2640",
+ "image": "1f9cd-1f3fd-200d-2640-fe0f.png",
+ "sheet_x": 46,
+ "sheet_y": 23,
+ "added_in": "12.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1F9CD-1F3FE-200D-2640-FE0F",
+ "non_qualified": "1F9CD-1F3FE-200D-2640",
+ "image": "1f9cd-1f3fe-200d-2640-fe0f.png",
+ "sheet_x": 46,
+ "sheet_y": 24,
+ "added_in": "12.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1F9CD-1F3FF-200D-2640-FE0F",
+ "non_qualified": "1F9CD-1F3FF-200D-2640",
+ "image": "1f9cd-1f3ff-200d-2640-fe0f.png",
+ "sheet_x": 46,
+ "sheet_y": 25,
+ "added_in": "12.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ }
},
{
- "name": "AIRPLANE ARRIVING",
- "unified": "1F6EC",
- "non_qualified": null,
+ "name": "MAN STANDING",
+ "unified": "1F9CD-200D-2642-FE0F",
+ "non_qualified": "1F9CD-200D-2642",
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f6ec.png",
- "sheet_x": 37,
- "sheet_y": 28,
- "short_name": "airplane_arriving",
- "short_names": ["airplane_arriving"],
+ "image": "1f9cd-200d-2642-fe0f.png",
+ "sheet_x": 46,
+ "sheet_y": 26,
+ "short_name": "man_standing",
+ "short_names": ["man_standing"],
"text": null,
"texts": null,
- "category": "Travel & Places",
- "sort_order": 116,
- "added_in": "7.0",
+ "category": "People & Body",
+ "subcategory": "person-activity",
+ "sort_order": 410,
+ "added_in": "12.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": false
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F9CD-1F3FB-200D-2642-FE0F",
+ "non_qualified": "1F9CD-1F3FB-200D-2642",
+ "image": "1f9cd-1f3fb-200d-2642-fe0f.png",
+ "sheet_x": 46,
+ "sheet_y": 27,
+ "added_in": "12.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1F9CD-1F3FC-200D-2642-FE0F",
+ "non_qualified": "1F9CD-1F3FC-200D-2642",
+ "image": "1f9cd-1f3fc-200d-2642-fe0f.png",
+ "sheet_x": 46,
+ "sheet_y": 28,
+ "added_in": "12.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1F9CD-1F3FD-200D-2642-FE0F",
+ "non_qualified": "1F9CD-1F3FD-200D-2642",
+ "image": "1f9cd-1f3fd-200d-2642-fe0f.png",
+ "sheet_x": 46,
+ "sheet_y": 29,
+ "added_in": "12.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1F9CD-1F3FE-200D-2642-FE0F",
+ "non_qualified": "1F9CD-1F3FE-200D-2642",
+ "image": "1f9cd-1f3fe-200d-2642-fe0f.png",
+ "sheet_x": 46,
+ "sheet_y": 30,
+ "added_in": "12.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1F9CD-1F3FF-200D-2642-FE0F",
+ "non_qualified": "1F9CD-1F3FF-200D-2642",
+ "image": "1f9cd-1f3ff-200d-2642-fe0f.png",
+ "sheet_x": 46,
+ "sheet_y": 31,
+ "added_in": "12.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ }
},
{
- "name": null,
- "unified": "1F6F0-FE0F",
- "non_qualified": "1F6F0",
+ "name": "STANDING PERSON",
+ "unified": "1F9CD",
+ "non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f6f0-fe0f.png",
- "sheet_x": 37,
- "sheet_y": 29,
- "short_name": "satellite",
- "short_names": ["satellite"],
+ "image": "1f9cd.png",
+ "sheet_x": 46,
+ "sheet_y": 32,
+ "short_name": "standing_person",
+ "short_names": ["standing_person"],
"text": null,
"texts": null,
- "category": "Travel & Places",
- "sort_order": 122,
- "added_in": "7.0",
+ "category": "People & Body",
+ "subcategory": "person-activity",
+ "sort_order": 409,
+ "added_in": "12.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": false
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F9CD-1F3FB",
+ "non_qualified": null,
+ "image": "1f9cd-1f3fb.png",
+ "sheet_x": 46,
+ "sheet_y": 33,
+ "added_in": "12.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1F9CD-1F3FC",
+ "non_qualified": null,
+ "image": "1f9cd-1f3fc.png",
+ "sheet_x": 46,
+ "sheet_y": 34,
+ "added_in": "12.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1F9CD-1F3FD",
+ "non_qualified": null,
+ "image": "1f9cd-1f3fd.png",
+ "sheet_x": 46,
+ "sheet_y": 35,
+ "added_in": "12.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1F9CD-1F3FE",
+ "non_qualified": null,
+ "image": "1f9cd-1f3fe.png",
+ "sheet_x": 46,
+ "sheet_y": 36,
+ "added_in": "12.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1F9CD-1F3FF",
+ "non_qualified": null,
+ "image": "1f9cd-1f3ff.png",
+ "sheet_x": 46,
+ "sheet_y": 37,
+ "added_in": "12.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ }
},
{
- "name": null,
- "unified": "1F6F3-FE0F",
- "non_qualified": "1F6F3",
+ "name": "WOMAN KNEELING",
+ "unified": "1F9CE-200D-2640-FE0F",
+ "non_qualified": "1F9CE-200D-2640",
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f6f3-fe0f.png",
- "sheet_x": 37,
- "sheet_y": 30,
- "short_name": "passenger_ship",
- "short_names": ["passenger_ship"],
+ "image": "1f9ce-200d-2640-fe0f.png",
+ "sheet_x": 46,
+ "sheet_y": 38,
+ "short_name": "woman_kneeling",
+ "short_names": ["woman_kneeling"],
"text": null,
"texts": null,
- "category": "Travel & Places",
- "sort_order": 109,
- "added_in": "7.0",
+ "category": "People & Body",
+ "subcategory": "person-activity",
+ "sort_order": 414,
+ "added_in": "12.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": false
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F9CE-1F3FB-200D-2640-FE0F",
+ "non_qualified": "1F9CE-1F3FB-200D-2640",
+ "image": "1f9ce-1f3fb-200d-2640-fe0f.png",
+ "sheet_x": 46,
+ "sheet_y": 39,
+ "added_in": "12.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1F9CE-1F3FC-200D-2640-FE0F",
+ "non_qualified": "1F9CE-1F3FC-200D-2640",
+ "image": "1f9ce-1f3fc-200d-2640-fe0f.png",
+ "sheet_x": 46,
+ "sheet_y": 40,
+ "added_in": "12.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1F9CE-1F3FD-200D-2640-FE0F",
+ "non_qualified": "1F9CE-1F3FD-200D-2640",
+ "image": "1f9ce-1f3fd-200d-2640-fe0f.png",
+ "sheet_x": 46,
+ "sheet_y": 41,
+ "added_in": "12.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1F9CE-1F3FE-200D-2640-FE0F",
+ "non_qualified": "1F9CE-1F3FE-200D-2640",
+ "image": "1f9ce-1f3fe-200d-2640-fe0f.png",
+ "sheet_x": 46,
+ "sheet_y": 42,
+ "added_in": "12.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1F9CE-1F3FF-200D-2640-FE0F",
+ "non_qualified": "1F9CE-1F3FF-200D-2640",
+ "image": "1f9ce-1f3ff-200d-2640-fe0f.png",
+ "sheet_x": 46,
+ "sheet_y": 43,
+ "added_in": "12.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ }
},
{
- "name": "SCOOTER",
- "unified": "1F6F4",
- "non_qualified": null,
+ "name": "MAN KNEELING",
+ "unified": "1F9CE-200D-2642-FE0F",
+ "non_qualified": "1F9CE-200D-2642",
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f6f4.png",
- "sheet_x": 37,
- "sheet_y": 31,
- "short_name": "scooter",
- "short_names": ["scooter"],
+ "image": "1f9ce-200d-2642-fe0f.png",
+ "sheet_x": 46,
+ "sheet_y": 44,
+ "short_name": "man_kneeling",
+ "short_names": ["man_kneeling"],
"text": null,
"texts": null,
- "category": "Travel & Places",
- "sort_order": 92,
- "added_in": "9.0",
+ "category": "People & Body",
+ "subcategory": "person-activity",
+ "sort_order": 413,
+ "added_in": "12.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": false
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F9CE-1F3FB-200D-2642-FE0F",
+ "non_qualified": "1F9CE-1F3FB-200D-2642",
+ "image": "1f9ce-1f3fb-200d-2642-fe0f.png",
+ "sheet_x": 46,
+ "sheet_y": 45,
+ "added_in": "12.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1F9CE-1F3FC-200D-2642-FE0F",
+ "non_qualified": "1F9CE-1F3FC-200D-2642",
+ "image": "1f9ce-1f3fc-200d-2642-fe0f.png",
+ "sheet_x": 46,
+ "sheet_y": 46,
+ "added_in": "12.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1F9CE-1F3FD-200D-2642-FE0F",
+ "non_qualified": "1F9CE-1F3FD-200D-2642",
+ "image": "1f9ce-1f3fd-200d-2642-fe0f.png",
+ "sheet_x": 46,
+ "sheet_y": 47,
+ "added_in": "12.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1F9CE-1F3FE-200D-2642-FE0F",
+ "non_qualified": "1F9CE-1F3FE-200D-2642",
+ "image": "1f9ce-1f3fe-200d-2642-fe0f.png",
+ "sheet_x": 46,
+ "sheet_y": 48,
+ "added_in": "12.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1F9CE-1F3FF-200D-2642-FE0F",
+ "non_qualified": "1F9CE-1F3FF-200D-2642",
+ "image": "1f9ce-1f3ff-200d-2642-fe0f.png",
+ "sheet_x": 46,
+ "sheet_y": 49,
+ "added_in": "12.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ }
},
{
- "name": "MOTOR SCOOTER",
- "unified": "1F6F5",
+ "name": "KNEELING PERSON",
+ "unified": "1F9CE",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f6f5.png",
- "sheet_x": 37,
- "sheet_y": 32,
- "short_name": "motor_scooter",
- "short_names": ["motor_scooter"],
+ "image": "1f9ce.png",
+ "sheet_x": 46,
+ "sheet_y": 50,
+ "short_name": "kneeling_person",
+ "short_names": ["kneeling_person"],
"text": null,
"texts": null,
- "category": "Travel & Places",
- "sort_order": 94,
- "added_in": "9.0",
+ "category": "People & Body",
+ "subcategory": "person-activity",
+ "sort_order": 412,
+ "added_in": "12.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": false
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F9CE-1F3FB",
+ "non_qualified": null,
+ "image": "1f9ce-1f3fb.png",
+ "sheet_x": 46,
+ "sheet_y": 51,
+ "added_in": "12.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1F9CE-1F3FC",
+ "non_qualified": null,
+ "image": "1f9ce-1f3fc.png",
+ "sheet_x": 46,
+ "sheet_y": 52,
+ "added_in": "12.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1F9CE-1F3FD",
+ "non_qualified": null,
+ "image": "1f9ce-1f3fd.png",
+ "sheet_x": 46,
+ "sheet_y": 53,
+ "added_in": "12.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1F9CE-1F3FE",
+ "non_qualified": null,
+ "image": "1f9ce-1f3fe.png",
+ "sheet_x": 46,
+ "sheet_y": 54,
+ "added_in": "12.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1F9CE-1F3FF",
+ "non_qualified": null,
+ "image": "1f9ce-1f3ff.png",
+ "sheet_x": 46,
+ "sheet_y": 55,
+ "added_in": "12.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ }
},
{
- "name": "CANOE",
- "unified": "1F6F6",
- "non_qualified": null,
+ "name": "DEAF WOMAN",
+ "unified": "1F9CF-200D-2640-FE0F",
+ "non_qualified": "1F9CF-200D-2640",
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f6f6.png",
- "sheet_x": 37,
- "sheet_y": 33,
- "short_name": "canoe",
- "short_names": ["canoe"],
+ "image": "1f9cf-200d-2640-fe0f.png",
+ "sheet_x": 46,
+ "sheet_y": 56,
+ "short_name": "deaf_woman",
+ "short_names": ["deaf_woman"],
"text": null,
"texts": null,
- "category": "Travel & Places",
- "sort_order": 107,
- "added_in": "9.0",
+ "category": "People & Body",
+ "subcategory": "person-gesture",
+ "sort_order": 276,
+ "added_in": "12.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": false
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F9CF-1F3FB-200D-2640-FE0F",
+ "non_qualified": "1F9CF-1F3FB-200D-2640",
+ "image": "1f9cf-1f3fb-200d-2640-fe0f.png",
+ "sheet_x": 46,
+ "sheet_y": 57,
+ "added_in": "12.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1F9CF-1F3FC-200D-2640-FE0F",
+ "non_qualified": "1F9CF-1F3FC-200D-2640",
+ "image": "1f9cf-1f3fc-200d-2640-fe0f.png",
+ "sheet_x": 46,
+ "sheet_y": 58,
+ "added_in": "12.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1F9CF-1F3FD-200D-2640-FE0F",
+ "non_qualified": "1F9CF-1F3FD-200D-2640",
+ "image": "1f9cf-1f3fd-200d-2640-fe0f.png",
+ "sheet_x": 46,
+ "sheet_y": 59,
+ "added_in": "12.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1F9CF-1F3FE-200D-2640-FE0F",
+ "non_qualified": "1F9CF-1F3FE-200D-2640",
+ "image": "1f9cf-1f3fe-200d-2640-fe0f.png",
+ "sheet_x": 46,
+ "sheet_y": 60,
+ "added_in": "12.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1F9CF-1F3FF-200D-2640-FE0F",
+ "non_qualified": "1F9CF-1F3FF-200D-2640",
+ "image": "1f9cf-1f3ff-200d-2640-fe0f.png",
+ "sheet_x": 47,
+ "sheet_y": 0,
+ "added_in": "12.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ }
},
{
- "name": "SLED",
- "unified": "1F6F7",
- "non_qualified": null,
+ "name": "DEAF MAN",
+ "unified": "1F9CF-200D-2642-FE0F",
+ "non_qualified": "1F9CF-200D-2642",
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f6f7.png",
- "sheet_x": 37,
- "sheet_y": 34,
- "short_name": "sled",
- "short_names": ["sled"],
+ "image": "1f9cf-200d-2642-fe0f.png",
+ "sheet_x": 47,
+ "sheet_y": 1,
+ "short_name": "deaf_man",
+ "short_names": ["deaf_man"],
"text": null,
"texts": null,
- "category": "Activities",
- "sort_order": 52,
- "added_in": "10.0",
+ "category": "People & Body",
+ "subcategory": "person-gesture",
+ "sort_order": 275,
+ "added_in": "12.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": false
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F9CF-1F3FB-200D-2642-FE0F",
+ "non_qualified": "1F9CF-1F3FB-200D-2642",
+ "image": "1f9cf-1f3fb-200d-2642-fe0f.png",
+ "sheet_x": 47,
+ "sheet_y": 2,
+ "added_in": "12.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1F9CF-1F3FC-200D-2642-FE0F",
+ "non_qualified": "1F9CF-1F3FC-200D-2642",
+ "image": "1f9cf-1f3fc-200d-2642-fe0f.png",
+ "sheet_x": 47,
+ "sheet_y": 3,
+ "added_in": "12.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1F9CF-1F3FD-200D-2642-FE0F",
+ "non_qualified": "1F9CF-1F3FD-200D-2642",
+ "image": "1f9cf-1f3fd-200d-2642-fe0f.png",
+ "sheet_x": 47,
+ "sheet_y": 4,
+ "added_in": "12.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1F9CF-1F3FE-200D-2642-FE0F",
+ "non_qualified": "1F9CF-1F3FE-200D-2642",
+ "image": "1f9cf-1f3fe-200d-2642-fe0f.png",
+ "sheet_x": 47,
+ "sheet_y": 5,
+ "added_in": "12.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1F9CF-1F3FF-200D-2642-FE0F",
+ "non_qualified": "1F9CF-1F3FF-200D-2642",
+ "image": "1f9cf-1f3ff-200d-2642-fe0f.png",
+ "sheet_x": 47,
+ "sheet_y": 6,
+ "added_in": "12.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ }
},
{
- "name": "FLYING SAUCER",
- "unified": "1F6F8",
+ "name": "DEAF PERSON",
+ "unified": "1F9CF",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f6f8.png",
- "sheet_x": 37,
- "sheet_y": 35,
- "short_name": "flying_saucer",
- "short_names": ["flying_saucer"],
+ "image": "1f9cf.png",
+ "sheet_x": 47,
+ "sheet_y": 7,
+ "short_name": "deaf_person",
+ "short_names": ["deaf_person"],
"text": null,
"texts": null,
- "category": "Travel & Places",
- "sort_order": 124,
- "added_in": "10.0",
+ "category": "People & Body",
+ "subcategory": "person-gesture",
+ "sort_order": 274,
+ "added_in": "12.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": false
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F9CF-1F3FB",
+ "non_qualified": null,
+ "image": "1f9cf-1f3fb.png",
+ "sheet_x": 47,
+ "sheet_y": 8,
+ "added_in": "12.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1F9CF-1F3FC",
+ "non_qualified": null,
+ "image": "1f9cf-1f3fc.png",
+ "sheet_x": 47,
+ "sheet_y": 9,
+ "added_in": "12.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1F9CF-1F3FD",
+ "non_qualified": null,
+ "image": "1f9cf-1f3fd.png",
+ "sheet_x": 47,
+ "sheet_y": 10,
+ "added_in": "12.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1F9CF-1F3FE",
+ "non_qualified": null,
+ "image": "1f9cf-1f3fe.png",
+ "sheet_x": 47,
+ "sheet_y": 11,
+ "added_in": "12.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1F9CF-1F3FF",
+ "non_qualified": null,
+ "image": "1f9cf-1f3ff.png",
+ "sheet_x": 47,
+ "sheet_y": 12,
+ "added_in": "12.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ }
},
{
- "name": "SKATEBOARD",
- "unified": "1F6F9",
+ "name": "FACE WITH MONOCLE",
+ "unified": "1F9D0",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f6f9.png",
- "sheet_x": 37,
- "sheet_y": 36,
- "short_name": "skateboard",
- "short_names": ["skateboard"],
+ "image": "1f9d0.png",
+ "sheet_x": 47,
+ "sheet_y": 13,
+ "short_name": "face_with_monocle",
+ "short_names": ["face_with_monocle"],
"text": null,
"texts": null,
- "category": "Travel & Places",
- "sort_order": 93,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "category": "Smileys & Emotion",
+ "subcategory": "face-glasses",
+ "sort_order": 73,
+ "added_in": "5.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
},
{
- "name": "ZIPPER-MOUTH FACE",
- "unified": "1F910",
+ "name": "FARMER",
+ "unified": "1F9D1-200D-1F33E",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f910.png",
- "sheet_x": 37,
- "sheet_y": 37,
- "short_name": "zipper_mouth_face",
- "short_names": ["zipper_mouth_face"],
+ "image": "1f9d1-200d-1f33e.png",
+ "sheet_x": 47,
+ "sheet_y": 14,
+ "short_name": "farmer",
+ "short_names": ["farmer"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 33,
- "added_in": "8.0",
+ "category": "People & Body",
+ "subcategory": "person-role",
+ "sort_order": 298,
+ "added_in": "12.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": false
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F9D1-1F3FB-200D-1F33E",
+ "non_qualified": null,
+ "image": "1f9d1-1f3fb-200d-1f33e.png",
+ "sheet_x": 47,
+ "sheet_y": 15,
+ "added_in": "12.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1F9D1-1F3FC-200D-1F33E",
+ "non_qualified": null,
+ "image": "1f9d1-1f3fc-200d-1f33e.png",
+ "sheet_x": 47,
+ "sheet_y": 16,
+ "added_in": "12.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1F9D1-1F3FD-200D-1F33E",
+ "non_qualified": null,
+ "image": "1f9d1-1f3fd-200d-1f33e.png",
+ "sheet_x": 47,
+ "sheet_y": 17,
+ "added_in": "12.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1F9D1-1F3FE-200D-1F33E",
+ "non_qualified": null,
+ "image": "1f9d1-1f3fe-200d-1f33e.png",
+ "sheet_x": 47,
+ "sheet_y": 18,
+ "added_in": "12.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1F9D1-1F3FF-200D-1F33E",
+ "non_qualified": null,
+ "image": "1f9d1-1f3ff-200d-1f33e.png",
+ "sheet_x": 47,
+ "sheet_y": 19,
+ "added_in": "12.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ }
},
{
- "name": "MONEY-MOUTH FACE",
- "unified": "1F911",
+ "name": "COOK",
+ "unified": "1F9D1-200D-1F373",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f911.png",
- "sheet_x": 37,
- "sheet_y": 38,
- "short_name": "money_mouth_face",
- "short_names": ["money_mouth_face"],
+ "image": "1f9d1-200d-1f373.png",
+ "sheet_x": 47,
+ "sheet_y": 20,
+ "short_name": "cook",
+ "short_names": ["cook"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 48,
- "added_in": "8.0",
+ "category": "People & Body",
+ "subcategory": "person-role",
+ "sort_order": 301,
+ "added_in": "12.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": false
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F9D1-1F3FB-200D-1F373",
+ "non_qualified": null,
+ "image": "1f9d1-1f3fb-200d-1f373.png",
+ "sheet_x": 47,
+ "sheet_y": 21,
+ "added_in": "12.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1F9D1-1F3FC-200D-1F373",
+ "non_qualified": null,
+ "image": "1f9d1-1f3fc-200d-1f373.png",
+ "sheet_x": 47,
+ "sheet_y": 22,
+ "added_in": "12.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1F9D1-1F3FD-200D-1F373",
+ "non_qualified": null,
+ "image": "1f9d1-1f3fd-200d-1f373.png",
+ "sheet_x": 47,
+ "sheet_y": 23,
+ "added_in": "12.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1F9D1-1F3FE-200D-1F373",
+ "non_qualified": null,
+ "image": "1f9d1-1f3fe-200d-1f373.png",
+ "sheet_x": 47,
+ "sheet_y": 24,
+ "added_in": "12.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1F9D1-1F3FF-200D-1F373",
+ "non_qualified": null,
+ "image": "1f9d1-1f3ff-200d-1f373.png",
+ "sheet_x": 47,
+ "sheet_y": 25,
+ "added_in": "12.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ }
},
{
- "name": "FACE WITH THERMOMETER",
- "unified": "1F912",
+ "name": "PERSON FEEDING BABY",
+ "unified": "1F9D1-200D-1F37C",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f912.png",
- "sheet_x": 37,
- "sheet_y": 39,
- "short_name": "face_with_thermometer",
- "short_names": ["face_with_thermometer"],
+ "image": "1f9d1-200d-1f37c.png",
+ "sheet_x": 47,
+ "sheet_y": 26,
+ "short_name": "person_feeding_baby",
+ "short_names": ["person_feeding_baby"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 75,
- "added_in": "8.0",
+ "category": "People & Body",
+ "subcategory": "person-role",
+ "sort_order": 367,
+ "added_in": "13.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": false
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F9D1-1F3FB-200D-1F37C",
+ "non_qualified": null,
+ "image": "1f9d1-1f3fb-200d-1f37c.png",
+ "sheet_x": 47,
+ "sheet_y": 27,
+ "added_in": "13.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1F9D1-1F3FC-200D-1F37C",
+ "non_qualified": null,
+ "image": "1f9d1-1f3fc-200d-1f37c.png",
+ "sheet_x": 47,
+ "sheet_y": 28,
+ "added_in": "13.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1F9D1-1F3FD-200D-1F37C",
+ "non_qualified": null,
+ "image": "1f9d1-1f3fd-200d-1f37c.png",
+ "sheet_x": 47,
+ "sheet_y": 29,
+ "added_in": "13.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1F9D1-1F3FE-200D-1F37C",
+ "non_qualified": null,
+ "image": "1f9d1-1f3fe-200d-1f37c.png",
+ "sheet_x": 47,
+ "sheet_y": 30,
+ "added_in": "13.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1F9D1-1F3FF-200D-1F37C",
+ "non_qualified": null,
+ "image": "1f9d1-1f3ff-200d-1f37c.png",
+ "sheet_x": 47,
+ "sheet_y": 31,
+ "added_in": "13.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ }
},
{
- "name": "NERD FACE",
- "unified": "1F913",
+ "name": "MX CLAUS",
+ "unified": "1F9D1-200D-1F384",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f913.png",
- "sheet_x": 37,
- "sheet_y": 40,
- "short_name": "nerd_face",
- "short_names": ["nerd_face"],
+ "image": "1f9d1-200d-1f384.png",
+ "sheet_x": 47,
+ "sheet_y": 32,
+ "short_name": "mx_claus",
+ "short_names": ["mx_claus"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 89,
- "added_in": "8.0",
+ "category": "People & Body",
+ "subcategory": "person-fantasy",
+ "sort_order": 371,
+ "added_in": "13.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": false
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F9D1-1F3FB-200D-1F384",
+ "non_qualified": null,
+ "image": "1f9d1-1f3fb-200d-1f384.png",
+ "sheet_x": 47,
+ "sheet_y": 33,
+ "added_in": "13.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1F9D1-1F3FC-200D-1F384",
+ "non_qualified": null,
+ "image": "1f9d1-1f3fc-200d-1f384.png",
+ "sheet_x": 47,
+ "sheet_y": 34,
+ "added_in": "13.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1F9D1-1F3FD-200D-1F384",
+ "non_qualified": null,
+ "image": "1f9d1-1f3fd-200d-1f384.png",
+ "sheet_x": 47,
+ "sheet_y": 35,
+ "added_in": "13.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1F9D1-1F3FE-200D-1F384",
+ "non_qualified": null,
+ "image": "1f9d1-1f3fe-200d-1f384.png",
+ "sheet_x": 47,
+ "sheet_y": 36,
+ "added_in": "13.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1F9D1-1F3FF-200D-1F384",
+ "non_qualified": null,
+ "image": "1f9d1-1f3ff-200d-1f384.png",
+ "sheet_x": 47,
+ "sheet_y": 37,
+ "added_in": "13.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ }
},
{
- "name": "THINKING FACE",
- "unified": "1F914",
+ "name": "STUDENT",
+ "unified": "1F9D1-200D-1F393",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f914.png",
- "sheet_x": 37,
- "sheet_y": 41,
- "short_name": "thinking_face",
- "short_names": ["thinking_face"],
+ "image": "1f9d1-200d-1f393.png",
+ "sheet_x": 47,
+ "sheet_y": 38,
+ "short_name": "student",
+ "short_names": ["student"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 23,
- "added_in": "8.0",
+ "category": "People & Body",
+ "subcategory": "person-role",
+ "sort_order": 289,
+ "added_in": "12.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": false
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F9D1-1F3FB-200D-1F393",
+ "non_qualified": null,
+ "image": "1f9d1-1f3fb-200d-1f393.png",
+ "sheet_x": 47,
+ "sheet_y": 39,
+ "added_in": "12.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1F9D1-1F3FC-200D-1F393",
+ "non_qualified": null,
+ "image": "1f9d1-1f3fc-200d-1f393.png",
+ "sheet_x": 47,
+ "sheet_y": 40,
+ "added_in": "12.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1F9D1-1F3FD-200D-1F393",
+ "non_qualified": null,
+ "image": "1f9d1-1f3fd-200d-1f393.png",
+ "sheet_x": 47,
+ "sheet_y": 41,
+ "added_in": "12.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1F9D1-1F3FE-200D-1F393",
+ "non_qualified": null,
+ "image": "1f9d1-1f3fe-200d-1f393.png",
+ "sheet_x": 47,
+ "sheet_y": 42,
+ "added_in": "12.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1F9D1-1F3FF-200D-1F393",
+ "non_qualified": null,
+ "image": "1f9d1-1f3ff-200d-1f393.png",
+ "sheet_x": 47,
+ "sheet_y": 43,
+ "added_in": "12.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ }
},
{
- "name": "FACE WITH HEAD-BANDAGE",
- "unified": "1F915",
+ "name": "SINGER",
+ "unified": "1F9D1-200D-1F3A4",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f915.png",
- "sheet_x": 37,
- "sheet_y": 42,
- "short_name": "face_with_head_bandage",
- "short_names": ["face_with_head_bandage"],
+ "image": "1f9d1-200d-1f3a4.png",
+ "sheet_x": 47,
+ "sheet_y": 44,
+ "short_name": "singer",
+ "short_names": ["singer"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 76,
- "added_in": "8.0",
+ "category": "People & Body",
+ "subcategory": "person-role",
+ "sort_order": 319,
+ "added_in": "12.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": false
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F9D1-1F3FB-200D-1F3A4",
+ "non_qualified": null,
+ "image": "1f9d1-1f3fb-200d-1f3a4.png",
+ "sheet_x": 47,
+ "sheet_y": 45,
+ "added_in": "12.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1F9D1-1F3FC-200D-1F3A4",
+ "non_qualified": null,
+ "image": "1f9d1-1f3fc-200d-1f3a4.png",
+ "sheet_x": 47,
+ "sheet_y": 46,
+ "added_in": "12.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1F9D1-1F3FD-200D-1F3A4",
+ "non_qualified": null,
+ "image": "1f9d1-1f3fd-200d-1f3a4.png",
+ "sheet_x": 47,
+ "sheet_y": 47,
+ "added_in": "12.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1F9D1-1F3FE-200D-1F3A4",
+ "non_qualified": null,
+ "image": "1f9d1-1f3fe-200d-1f3a4.png",
+ "sheet_x": 47,
+ "sheet_y": 48,
+ "added_in": "12.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1F9D1-1F3FF-200D-1F3A4",
+ "non_qualified": null,
+ "image": "1f9d1-1f3ff-200d-1f3a4.png",
+ "sheet_x": 47,
+ "sheet_y": 49,
+ "added_in": "12.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ }
},
{
- "name": "ROBOT FACE",
- "unified": "1F916",
+ "name": "ARTIST",
+ "unified": "1F9D1-200D-1F3A8",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f916.png",
- "sheet_x": 37,
- "sheet_y": 43,
- "short_name": "robot_face",
- "short_names": ["robot_face"],
+ "image": "1f9d1-200d-1f3a8.png",
+ "sheet_x": 47,
+ "sheet_y": 50,
+ "short_name": "artist",
+ "short_names": ["artist"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 100,
- "added_in": "8.0",
+ "category": "People & Body",
+ "subcategory": "person-role",
+ "sort_order": 322,
+ "added_in": "12.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": false
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F9D1-1F3FB-200D-1F3A8",
+ "non_qualified": null,
+ "image": "1f9d1-1f3fb-200d-1f3a8.png",
+ "sheet_x": 47,
+ "sheet_y": 51,
+ "added_in": "12.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1F9D1-1F3FC-200D-1F3A8",
+ "non_qualified": null,
+ "image": "1f9d1-1f3fc-200d-1f3a8.png",
+ "sheet_x": 47,
+ "sheet_y": 52,
+ "added_in": "12.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1F9D1-1F3FD-200D-1F3A8",
+ "non_qualified": null,
+ "image": "1f9d1-1f3fd-200d-1f3a8.png",
+ "sheet_x": 47,
+ "sheet_y": 53,
+ "added_in": "12.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1F9D1-1F3FE-200D-1F3A8",
+ "non_qualified": null,
+ "image": "1f9d1-1f3fe-200d-1f3a8.png",
+ "sheet_x": 47,
+ "sheet_y": 54,
+ "added_in": "12.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1F9D1-1F3FF-200D-1F3A8",
+ "non_qualified": null,
+ "image": "1f9d1-1f3ff-200d-1f3a8.png",
+ "sheet_x": 47,
+ "sheet_y": 55,
+ "added_in": "12.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ }
},
{
- "name": "HUGGING FACE",
- "unified": "1F917",
+ "name": "TEACHER",
+ "unified": "1F9D1-200D-1F3EB",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f917.png",
- "sheet_x": 37,
- "sheet_y": 44,
- "short_name": "hugging_face",
- "short_names": ["hugging_face"],
+ "image": "1f9d1-200d-1f3eb.png",
+ "sheet_x": 47,
+ "sheet_y": 56,
+ "short_name": "teacher",
+ "short_names": ["teacher"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 21,
- "added_in": "8.0",
+ "category": "People & Body",
+ "subcategory": "person-role",
+ "sort_order": 292,
+ "added_in": "12.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": false
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F9D1-1F3FB-200D-1F3EB",
+ "non_qualified": null,
+ "image": "1f9d1-1f3fb-200d-1f3eb.png",
+ "sheet_x": 47,
+ "sheet_y": 57,
+ "added_in": "12.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1F9D1-1F3FC-200D-1F3EB",
+ "non_qualified": null,
+ "image": "1f9d1-1f3fc-200d-1f3eb.png",
+ "sheet_x": 47,
+ "sheet_y": 58,
+ "added_in": "12.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1F9D1-1F3FD-200D-1F3EB",
+ "non_qualified": null,
+ "image": "1f9d1-1f3fd-200d-1f3eb.png",
+ "sheet_x": 47,
+ "sheet_y": 59,
+ "added_in": "12.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1F9D1-1F3FE-200D-1F3EB",
+ "non_qualified": null,
+ "image": "1f9d1-1f3fe-200d-1f3eb.png",
+ "sheet_x": 47,
+ "sheet_y": 60,
+ "added_in": "12.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1F9D1-1F3FF-200D-1F3EB",
+ "non_qualified": null,
+ "image": "1f9d1-1f3ff-200d-1f3eb.png",
+ "sheet_x": 48,
+ "sheet_y": 0,
+ "added_in": "12.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ }
},
{
- "name": "SIGN OF THE HORNS",
- "unified": "1F918",
+ "name": "FACTORY WORKER",
+ "unified": "1F9D1-200D-1F3ED",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f918.png",
- "sheet_x": 37,
- "sheet_y": 45,
- "short_name": "the_horns",
- "short_names": ["the_horns", "sign_of_the_horns"],
+ "image": "1f9d1-200d-1f3ed.png",
+ "sheet_x": 48,
+ "sheet_y": 1,
+ "short_name": "factory_worker",
+ "short_names": ["factory_worker"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 369,
- "added_in": "8.0",
+ "category": "People & Body",
+ "subcategory": "person-role",
+ "sort_order": 307,
+ "added_in": "12.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": false,
"skin_variations": {
"1F3FB": {
- "unified": "1F918-1F3FB",
+ "unified": "1F9D1-1F3FB-200D-1F3ED",
"non_qualified": null,
- "image": "1f918-1f3fb.png",
- "sheet_x": 37,
- "sheet_y": 46,
- "added_in": "8.0",
+ "image": "1f9d1-1f3fb-200d-1f3ed.png",
+ "sheet_x": 48,
+ "sheet_y": 2,
+ "added_in": "12.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FC": {
- "unified": "1F918-1F3FC",
+ "unified": "1F9D1-1F3FC-200D-1F3ED",
"non_qualified": null,
- "image": "1f918-1f3fc.png",
- "sheet_x": 37,
- "sheet_y": 47,
- "added_in": "8.0",
+ "image": "1f9d1-1f3fc-200d-1f3ed.png",
+ "sheet_x": 48,
+ "sheet_y": 3,
+ "added_in": "12.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FD": {
- "unified": "1F918-1F3FD",
+ "unified": "1F9D1-1F3FD-200D-1F3ED",
"non_qualified": null,
- "image": "1f918-1f3fd.png",
- "sheet_x": 37,
- "sheet_y": 48,
- "added_in": "8.0",
+ "image": "1f9d1-1f3fd-200d-1f3ed.png",
+ "sheet_x": 48,
+ "sheet_y": 4,
+ "added_in": "12.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FE": {
- "unified": "1F918-1F3FE",
+ "unified": "1F9D1-1F3FE-200D-1F3ED",
"non_qualified": null,
- "image": "1f918-1f3fe.png",
- "sheet_x": 37,
- "sheet_y": 49,
- "added_in": "8.0",
+ "image": "1f9d1-1f3fe-200d-1f3ed.png",
+ "sheet_x": 48,
+ "sheet_y": 5,
+ "added_in": "12.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FF": {
- "unified": "1F918-1F3FF",
+ "unified": "1F9D1-1F3FF-200D-1F3ED",
"non_qualified": null,
- "image": "1f918-1f3ff.png",
- "sheet_x": 37,
- "sheet_y": 50,
- "added_in": "8.0",
+ "image": "1f9d1-1f3ff-200d-1f3ed.png",
+ "sheet_x": 48,
+ "sheet_y": 6,
+ "added_in": "12.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
}
}
},
{
- "name": "CALL ME HAND",
- "unified": "1F919",
+ "name": "TECHNOLOGIST",
+ "unified": "1F9D1-200D-1F4BB",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f919.png",
- "sheet_x": 37,
- "sheet_y": 51,
- "short_name": "call_me_hand",
- "short_names": ["call_me_hand"],
+ "image": "1f9d1-200d-1f4bb.png",
+ "sheet_x": 48,
+ "sheet_y": 7,
+ "short_name": "technologist",
+ "short_names": ["technologist"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 370,
- "added_in": "9.0",
+ "category": "People & Body",
+ "subcategory": "person-role",
+ "sort_order": 316,
+ "added_in": "12.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": false,
"skin_variations": {
"1F3FB": {
- "unified": "1F919-1F3FB",
+ "unified": "1F9D1-1F3FB-200D-1F4BB",
"non_qualified": null,
- "image": "1f919-1f3fb.png",
- "sheet_x": 37,
- "sheet_y": 52,
- "added_in": "9.0",
+ "image": "1f9d1-1f3fb-200d-1f4bb.png",
+ "sheet_x": 48,
+ "sheet_y": 8,
+ "added_in": "12.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FC": {
- "unified": "1F919-1F3FC",
+ "unified": "1F9D1-1F3FC-200D-1F4BB",
"non_qualified": null,
- "image": "1f919-1f3fc.png",
- "sheet_x": 38,
- "sheet_y": 0,
- "added_in": "9.0",
+ "image": "1f9d1-1f3fc-200d-1f4bb.png",
+ "sheet_x": 48,
+ "sheet_y": 9,
+ "added_in": "12.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FD": {
- "unified": "1F919-1F3FD",
+ "unified": "1F9D1-1F3FD-200D-1F4BB",
"non_qualified": null,
- "image": "1f919-1f3fd.png",
- "sheet_x": 38,
- "sheet_y": 1,
- "added_in": "9.0",
+ "image": "1f9d1-1f3fd-200d-1f4bb.png",
+ "sheet_x": 48,
+ "sheet_y": 10,
+ "added_in": "12.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FE": {
- "unified": "1F919-1F3FE",
+ "unified": "1F9D1-1F3FE-200D-1F4BB",
"non_qualified": null,
- "image": "1f919-1f3fe.png",
- "sheet_x": 38,
- "sheet_y": 2,
- "added_in": "9.0",
+ "image": "1f9d1-1f3fe-200d-1f4bb.png",
+ "sheet_x": 48,
+ "sheet_y": 11,
+ "added_in": "12.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FF": {
- "unified": "1F919-1F3FF",
+ "unified": "1F9D1-1F3FF-200D-1F4BB",
"non_qualified": null,
- "image": "1f919-1f3ff.png",
- "sheet_x": 38,
- "sheet_y": 3,
- "added_in": "9.0",
+ "image": "1f9d1-1f3ff-200d-1f4bb.png",
+ "sheet_x": 48,
+ "sheet_y": 12,
+ "added_in": "12.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
}
}
},
{
- "name": "RAISED BACK OF HAND",
- "unified": "1F91A",
+ "name": "OFFICE WORKER",
+ "unified": "1F9D1-200D-1F4BC",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f91a.png",
- "sheet_x": 38,
- "sheet_y": 4,
- "short_name": "raised_back_of_hand",
- "short_names": ["raised_back_of_hand"],
+ "image": "1f9d1-200d-1f4bc.png",
+ "sheet_x": 48,
+ "sheet_y": 13,
+ "short_name": "office_worker",
+ "short_names": ["office_worker"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 380,
- "added_in": "9.0",
+ "category": "People & Body",
+ "subcategory": "person-role",
+ "sort_order": 310,
+ "added_in": "12.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": false,
"skin_variations": {
"1F3FB": {
- "unified": "1F91A-1F3FB",
+ "unified": "1F9D1-1F3FB-200D-1F4BC",
"non_qualified": null,
- "image": "1f91a-1f3fb.png",
- "sheet_x": 38,
- "sheet_y": 5,
- "added_in": "9.0",
+ "image": "1f9d1-1f3fb-200d-1f4bc.png",
+ "sheet_x": 48,
+ "sheet_y": 14,
+ "added_in": "12.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FC": {
- "unified": "1F91A-1F3FC",
+ "unified": "1F9D1-1F3FC-200D-1F4BC",
"non_qualified": null,
- "image": "1f91a-1f3fc.png",
- "sheet_x": 38,
- "sheet_y": 6,
- "added_in": "9.0",
+ "image": "1f9d1-1f3fc-200d-1f4bc.png",
+ "sheet_x": 48,
+ "sheet_y": 15,
+ "added_in": "12.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FD": {
- "unified": "1F91A-1F3FD",
+ "unified": "1F9D1-1F3FD-200D-1F4BC",
"non_qualified": null,
- "image": "1f91a-1f3fd.png",
- "sheet_x": 38,
- "sheet_y": 7,
- "added_in": "9.0",
+ "image": "1f9d1-1f3fd-200d-1f4bc.png",
+ "sheet_x": 48,
+ "sheet_y": 16,
+ "added_in": "12.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FE": {
- "unified": "1F91A-1F3FE",
+ "unified": "1F9D1-1F3FE-200D-1F4BC",
"non_qualified": null,
- "image": "1f91a-1f3fe.png",
- "sheet_x": 38,
- "sheet_y": 8,
- "added_in": "9.0",
+ "image": "1f9d1-1f3fe-200d-1f4bc.png",
+ "sheet_x": 48,
+ "sheet_y": 17,
+ "added_in": "12.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FF": {
- "unified": "1F91A-1F3FF",
+ "unified": "1F9D1-1F3FF-200D-1F4BC",
"non_qualified": null,
- "image": "1f91a-1f3ff.png",
- "sheet_x": 38,
- "sheet_y": 9,
- "added_in": "9.0",
+ "image": "1f9d1-1f3ff-200d-1f4bc.png",
+ "sheet_x": 48,
+ "sheet_y": 18,
+ "added_in": "12.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
}
}
},
{
- "name": "LEFT-FACING FIST",
- "unified": "1F91B",
+ "name": "MECHANIC",
+ "unified": "1F9D1-200D-1F527",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f91b.png",
- "sheet_x": 38,
- "sheet_y": 10,
- "short_name": "left-facing_fist",
- "short_names": ["left-facing_fist"],
+ "image": "1f9d1-200d-1f527.png",
+ "sheet_x": 48,
+ "sheet_y": 19,
+ "short_name": "mechanic",
+ "short_names": ["mechanic"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 378,
- "added_in": "9.0",
+ "category": "People & Body",
+ "subcategory": "person-role",
+ "sort_order": 304,
+ "added_in": "12.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": false,
"skin_variations": {
"1F3FB": {
- "unified": "1F91B-1F3FB",
+ "unified": "1F9D1-1F3FB-200D-1F527",
"non_qualified": null,
- "image": "1f91b-1f3fb.png",
- "sheet_x": 38,
- "sheet_y": 11,
- "added_in": "9.0",
+ "image": "1f9d1-1f3fb-200d-1f527.png",
+ "sheet_x": 48,
+ "sheet_y": 20,
+ "added_in": "12.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FC": {
- "unified": "1F91B-1F3FC",
+ "unified": "1F9D1-1F3FC-200D-1F527",
"non_qualified": null,
- "image": "1f91b-1f3fc.png",
- "sheet_x": 38,
- "sheet_y": 12,
- "added_in": "9.0",
+ "image": "1f9d1-1f3fc-200d-1f527.png",
+ "sheet_x": 48,
+ "sheet_y": 21,
+ "added_in": "12.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FD": {
- "unified": "1F91B-1F3FD",
+ "unified": "1F9D1-1F3FD-200D-1F527",
"non_qualified": null,
- "image": "1f91b-1f3fd.png",
- "sheet_x": 38,
- "sheet_y": 13,
- "added_in": "9.0",
+ "image": "1f9d1-1f3fd-200d-1f527.png",
+ "sheet_x": 48,
+ "sheet_y": 22,
+ "added_in": "12.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FE": {
- "unified": "1F91B-1F3FE",
+ "unified": "1F9D1-1F3FE-200D-1F527",
"non_qualified": null,
- "image": "1f91b-1f3fe.png",
- "sheet_x": 38,
- "sheet_y": 14,
- "added_in": "9.0",
+ "image": "1f9d1-1f3fe-200d-1f527.png",
+ "sheet_x": 48,
+ "sheet_y": 23,
+ "added_in": "12.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FF": {
- "unified": "1F91B-1F3FF",
+ "unified": "1F9D1-1F3FF-200D-1F527",
"non_qualified": null,
- "image": "1f91b-1f3ff.png",
- "sheet_x": 38,
- "sheet_y": 15,
- "added_in": "9.0",
+ "image": "1f9d1-1f3ff-200d-1f527.png",
+ "sheet_x": 48,
+ "sheet_y": 24,
+ "added_in": "12.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
}
}
},
{
- "name": "RIGHT-FACING FIST",
- "unified": "1F91C",
+ "name": "SCIENTIST",
+ "unified": "1F9D1-200D-1F52C",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f91c.png",
- "sheet_x": 38,
- "sheet_y": 16,
- "short_name": "right-facing_fist",
- "short_names": ["right-facing_fist"],
+ "image": "1f9d1-200d-1f52c.png",
+ "sheet_x": 48,
+ "sheet_y": 25,
+ "short_name": "scientist",
+ "short_names": ["scientist"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 379,
- "added_in": "9.0",
+ "category": "People & Body",
+ "subcategory": "person-role",
+ "sort_order": 313,
+ "added_in": "12.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": false,
"skin_variations": {
"1F3FB": {
- "unified": "1F91C-1F3FB",
+ "unified": "1F9D1-1F3FB-200D-1F52C",
"non_qualified": null,
- "image": "1f91c-1f3fb.png",
- "sheet_x": 38,
- "sheet_y": 17,
- "added_in": "9.0",
+ "image": "1f9d1-1f3fb-200d-1f52c.png",
+ "sheet_x": 48,
+ "sheet_y": 26,
+ "added_in": "12.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FC": {
- "unified": "1F91C-1F3FC",
+ "unified": "1F9D1-1F3FC-200D-1F52C",
"non_qualified": null,
- "image": "1f91c-1f3fc.png",
- "sheet_x": 38,
- "sheet_y": 18,
- "added_in": "9.0",
+ "image": "1f9d1-1f3fc-200d-1f52c.png",
+ "sheet_x": 48,
+ "sheet_y": 27,
+ "added_in": "12.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FD": {
- "unified": "1F91C-1F3FD",
+ "unified": "1F9D1-1F3FD-200D-1F52C",
"non_qualified": null,
- "image": "1f91c-1f3fd.png",
- "sheet_x": 38,
- "sheet_y": 19,
- "added_in": "9.0",
+ "image": "1f9d1-1f3fd-200d-1f52c.png",
+ "sheet_x": 48,
+ "sheet_y": 28,
+ "added_in": "12.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FE": {
- "unified": "1F91C-1F3FE",
+ "unified": "1F9D1-1F3FE-200D-1F52C",
"non_qualified": null,
- "image": "1f91c-1f3fe.png",
- "sheet_x": 38,
- "sheet_y": 20,
- "added_in": "9.0",
+ "image": "1f9d1-1f3fe-200d-1f52c.png",
+ "sheet_x": 48,
+ "sheet_y": 29,
+ "added_in": "12.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FF": {
- "unified": "1F91C-1F3FF",
+ "unified": "1F9D1-1F3FF-200D-1F52C",
"non_qualified": null,
- "image": "1f91c-1f3ff.png",
- "sheet_x": 38,
- "sheet_y": 21,
- "added_in": "9.0",
+ "image": "1f9d1-1f3ff-200d-1f52c.png",
+ "sheet_x": 48,
+ "sheet_y": 30,
+ "added_in": "12.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
}
}
},
{
- "name": "HANDSHAKE",
- "unified": "1F91D",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f91d.png",
- "sheet_x": 38,
- "sheet_y": 22,
- "short_name": "handshake",
- "short_names": ["handshake"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 389,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- {
- "name": "HAND WITH INDEX AND MIDDLE FINGERS CROSSED",
- "unified": "1F91E",
+ "name": "ASTRONAUT",
+ "unified": "1F9D1-200D-1F680",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f91e.png",
- "sheet_x": 38,
- "sheet_y": 23,
- "short_name": "crossed_fingers",
- "short_names": [
- "crossed_fingers",
- "hand_with_index_and_middle_fingers_crossed"
- ],
+ "image": "1f9d1-200d-1f680.png",
+ "sheet_x": 48,
+ "sheet_y": 31,
+ "short_name": "astronaut",
+ "short_names": ["astronaut"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 367,
- "added_in": "9.0",
+ "category": "People & Body",
+ "subcategory": "person-role",
+ "sort_order": 328,
+ "added_in": "12.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": false,
"skin_variations": {
"1F3FB": {
- "unified": "1F91E-1F3FB",
+ "unified": "1F9D1-1F3FB-200D-1F680",
"non_qualified": null,
- "image": "1f91e-1f3fb.png",
- "sheet_x": 38,
- "sheet_y": 24,
- "added_in": "9.0",
+ "image": "1f9d1-1f3fb-200d-1f680.png",
+ "sheet_x": 48,
+ "sheet_y": 32,
+ "added_in": "12.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FC": {
- "unified": "1F91E-1F3FC",
+ "unified": "1F9D1-1F3FC-200D-1F680",
"non_qualified": null,
- "image": "1f91e-1f3fc.png",
- "sheet_x": 38,
- "sheet_y": 25,
- "added_in": "9.0",
+ "image": "1f9d1-1f3fc-200d-1f680.png",
+ "sheet_x": 48,
+ "sheet_y": 33,
+ "added_in": "12.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FD": {
- "unified": "1F91E-1F3FD",
+ "unified": "1F9D1-1F3FD-200D-1F680",
"non_qualified": null,
- "image": "1f91e-1f3fd.png",
- "sheet_x": 38,
- "sheet_y": 26,
- "added_in": "9.0",
+ "image": "1f9d1-1f3fd-200d-1f680.png",
+ "sheet_x": 48,
+ "sheet_y": 34,
+ "added_in": "12.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FE": {
- "unified": "1F91E-1F3FE",
+ "unified": "1F9D1-1F3FE-200D-1F680",
"non_qualified": null,
- "image": "1f91e-1f3fe.png",
- "sheet_x": 38,
- "sheet_y": 27,
- "added_in": "9.0",
+ "image": "1f9d1-1f3fe-200d-1f680.png",
+ "sheet_x": 48,
+ "sheet_y": 35,
+ "added_in": "12.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FF": {
- "unified": "1F91E-1F3FF",
+ "unified": "1F9D1-1F3FF-200D-1F680",
"non_qualified": null,
- "image": "1f91e-1f3ff.png",
- "sheet_x": 38,
- "sheet_y": 28,
- "added_in": "9.0",
+ "image": "1f9d1-1f3ff-200d-1f680.png",
+ "sheet_x": 48,
+ "sheet_y": 36,
+ "added_in": "12.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
}
}
},
{
- "name": "I LOVE YOU HAND SIGN",
- "unified": "1F91F",
+ "name": "FIREFIGHTER",
+ "unified": "1F9D1-200D-1F692",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f91f.png",
- "sheet_x": 38,
- "sheet_y": 29,
- "short_name": "i_love_you_hand_sign",
- "short_names": ["i_love_you_hand_sign"],
+ "image": "1f9d1-200d-1f692.png",
+ "sheet_x": 48,
+ "sheet_y": 37,
+ "short_name": "firefighter",
+ "short_names": ["firefighter"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 382,
- "added_in": "10.0",
+ "category": "People & Body",
+ "subcategory": "person-role",
+ "sort_order": 331,
+ "added_in": "12.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": false,
"skin_variations": {
"1F3FB": {
- "unified": "1F91F-1F3FB",
+ "unified": "1F9D1-1F3FB-200D-1F692",
"non_qualified": null,
- "image": "1f91f-1f3fb.png",
- "sheet_x": 38,
- "sheet_y": 30,
- "added_in": "10.0",
+ "image": "1f9d1-1f3fb-200d-1f692.png",
+ "sheet_x": 48,
+ "sheet_y": 38,
+ "added_in": "12.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FC": {
- "unified": "1F91F-1F3FC",
+ "unified": "1F9D1-1F3FC-200D-1F692",
"non_qualified": null,
- "image": "1f91f-1f3fc.png",
- "sheet_x": 38,
- "sheet_y": 31,
- "added_in": "10.0",
+ "image": "1f9d1-1f3fc-200d-1f692.png",
+ "sheet_x": 48,
+ "sheet_y": 39,
+ "added_in": "12.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FD": {
- "unified": "1F91F-1F3FD",
+ "unified": "1F9D1-1F3FD-200D-1F692",
"non_qualified": null,
- "image": "1f91f-1f3fd.png",
- "sheet_x": 38,
- "sheet_y": 32,
- "added_in": "10.0",
+ "image": "1f9d1-1f3fd-200d-1f692.png",
+ "sheet_x": 48,
+ "sheet_y": 40,
+ "added_in": "12.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FE": {
- "unified": "1F91F-1F3FE",
+ "unified": "1F9D1-1F3FE-200D-1F692",
"non_qualified": null,
- "image": "1f91f-1f3fe.png",
- "sheet_x": 38,
- "sheet_y": 33,
- "added_in": "10.0",
+ "image": "1f9d1-1f3fe-200d-1f692.png",
+ "sheet_x": 48,
+ "sheet_y": 41,
+ "added_in": "12.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FF": {
- "unified": "1F91F-1F3FF",
+ "unified": "1F9D1-1F3FF-200D-1F692",
"non_qualified": null,
- "image": "1f91f-1f3ff.png",
- "sheet_x": 38,
- "sheet_y": 34,
- "added_in": "10.0",
+ "image": "1f9d1-1f3ff-200d-1f692.png",
+ "sheet_x": 48,
+ "sheet_y": 42,
+ "added_in": "12.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
}
}
},
{
- "name": "FACE WITH COWBOY HAT",
- "unified": "1F920",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f920.png",
- "sheet_x": 38,
- "sheet_y": 35,
- "short_name": "face_with_cowboy_hat",
- "short_names": ["face_with_cowboy_hat"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 81,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- {
- "name": "CLOWN FACE",
- "unified": "1F921",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f921.png",
- "sheet_x": 38,
- "sheet_y": 36,
- "short_name": "clown_face",
- "short_names": ["clown_face"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 92,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- {
- "name": "NAUSEATED FACE",
- "unified": "1F922",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f922.png",
- "sheet_x": 38,
- "sheet_y": 37,
- "short_name": "nauseated_face",
- "short_names": ["nauseated_face"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 77,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- {
- "name": "ROLLING ON THE FLOOR LAUGHING",
- "unified": "1F923",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f923.png",
- "sheet_x": 38,
- "sheet_y": 38,
- "short_name": "rolling_on_the_floor_laughing",
- "short_names": ["rolling_on_the_floor_laughing"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 4,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- {
- "name": "DROOLING FACE",
- "unified": "1F924",
+ "name": "PEOPLE HOLDING HANDS",
+ "unified": "1F9D1-200D-1F91D-200D-1F9D1",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f924.png",
- "sheet_x": 38,
- "sheet_y": 39,
- "short_name": "drooling_face",
- "short_names": ["drooling_face"],
+ "image": "1f9d1-200d-1f91d-200d-1f9d1.png",
+ "sheet_x": 48,
+ "sheet_y": 43,
+ "short_name": "people_holding_hands",
+ "short_names": ["people_holding_hands"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 42,
- "added_in": "9.0",
+ "category": "People & Body",
+ "subcategory": "family",
+ "sort_order": 487,
+ "added_in": "12.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": false
+ "skin_variations": {
+ "1F3FB-1F3FB": {
+ "unified": "1F9D1-1F3FB-200D-1F91D-200D-1F9D1-1F3FB",
+ "non_qualified": null,
+ "image": "1f9d1-1f3fb-200d-1f91d-200d-1f9d1-1f3fb.png",
+ "sheet_x": 48,
+ "sheet_y": 44,
+ "added_in": "12.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FB-1F3FC": {
+ "unified": "1F9D1-1F3FB-200D-1F91D-200D-1F9D1-1F3FC",
+ "non_qualified": null,
+ "image": "1f9d1-1f3fb-200d-1f91d-200d-1f9d1-1f3fc.png",
+ "sheet_x": 48,
+ "sheet_y": 45,
+ "added_in": "12.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FB-1F3FD": {
+ "unified": "1F9D1-1F3FB-200D-1F91D-200D-1F9D1-1F3FD",
+ "non_qualified": null,
+ "image": "1f9d1-1f3fb-200d-1f91d-200d-1f9d1-1f3fd.png",
+ "sheet_x": 48,
+ "sheet_y": 46,
+ "added_in": "12.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FB-1F3FE": {
+ "unified": "1F9D1-1F3FB-200D-1F91D-200D-1F9D1-1F3FE",
+ "non_qualified": null,
+ "image": "1f9d1-1f3fb-200d-1f91d-200d-1f9d1-1f3fe.png",
+ "sheet_x": 48,
+ "sheet_y": 47,
+ "added_in": "12.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FB-1F3FF": {
+ "unified": "1F9D1-1F3FB-200D-1F91D-200D-1F9D1-1F3FF",
+ "non_qualified": null,
+ "image": "1f9d1-1f3fb-200d-1f91d-200d-1f9d1-1f3ff.png",
+ "sheet_x": 48,
+ "sheet_y": 48,
+ "added_in": "12.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC-1F3FB": {
+ "unified": "1F9D1-1F3FC-200D-1F91D-200D-1F9D1-1F3FB",
+ "non_qualified": null,
+ "image": "1f9d1-1f3fc-200d-1f91d-200d-1f9d1-1f3fb.png",
+ "sheet_x": 48,
+ "sheet_y": 49,
+ "added_in": "12.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC-1F3FC": {
+ "unified": "1F9D1-1F3FC-200D-1F91D-200D-1F9D1-1F3FC",
+ "non_qualified": null,
+ "image": "1f9d1-1f3fc-200d-1f91d-200d-1f9d1-1f3fc.png",
+ "sheet_x": 48,
+ "sheet_y": 50,
+ "added_in": "12.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC-1F3FD": {
+ "unified": "1F9D1-1F3FC-200D-1F91D-200D-1F9D1-1F3FD",
+ "non_qualified": null,
+ "image": "1f9d1-1f3fc-200d-1f91d-200d-1f9d1-1f3fd.png",
+ "sheet_x": 48,
+ "sheet_y": 51,
+ "added_in": "12.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC-1F3FE": {
+ "unified": "1F9D1-1F3FC-200D-1F91D-200D-1F9D1-1F3FE",
+ "non_qualified": null,
+ "image": "1f9d1-1f3fc-200d-1f91d-200d-1f9d1-1f3fe.png",
+ "sheet_x": 48,
+ "sheet_y": 52,
+ "added_in": "12.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC-1F3FF": {
+ "unified": "1F9D1-1F3FC-200D-1F91D-200D-1F9D1-1F3FF",
+ "non_qualified": null,
+ "image": "1f9d1-1f3fc-200d-1f91d-200d-1f9d1-1f3ff.png",
+ "sheet_x": 48,
+ "sheet_y": 53,
+ "added_in": "12.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD-1F3FB": {
+ "unified": "1F9D1-1F3FD-200D-1F91D-200D-1F9D1-1F3FB",
+ "non_qualified": null,
+ "image": "1f9d1-1f3fd-200d-1f91d-200d-1f9d1-1f3fb.png",
+ "sheet_x": 48,
+ "sheet_y": 54,
+ "added_in": "12.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD-1F3FC": {
+ "unified": "1F9D1-1F3FD-200D-1F91D-200D-1F9D1-1F3FC",
+ "non_qualified": null,
+ "image": "1f9d1-1f3fd-200d-1f91d-200d-1f9d1-1f3fc.png",
+ "sheet_x": 48,
+ "sheet_y": 55,
+ "added_in": "12.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD-1F3FD": {
+ "unified": "1F9D1-1F3FD-200D-1F91D-200D-1F9D1-1F3FD",
+ "non_qualified": null,
+ "image": "1f9d1-1f3fd-200d-1f91d-200d-1f9d1-1f3fd.png",
+ "sheet_x": 48,
+ "sheet_y": 56,
+ "added_in": "12.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD-1F3FE": {
+ "unified": "1F9D1-1F3FD-200D-1F91D-200D-1F9D1-1F3FE",
+ "non_qualified": null,
+ "image": "1f9d1-1f3fd-200d-1f91d-200d-1f9d1-1f3fe.png",
+ "sheet_x": 48,
+ "sheet_y": 57,
+ "added_in": "12.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD-1F3FF": {
+ "unified": "1F9D1-1F3FD-200D-1F91D-200D-1F9D1-1F3FF",
+ "non_qualified": null,
+ "image": "1f9d1-1f3fd-200d-1f91d-200d-1f9d1-1f3ff.png",
+ "sheet_x": 48,
+ "sheet_y": 58,
+ "added_in": "12.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE-1F3FB": {
+ "unified": "1F9D1-1F3FE-200D-1F91D-200D-1F9D1-1F3FB",
+ "non_qualified": null,
+ "image": "1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3fb.png",
+ "sheet_x": 48,
+ "sheet_y": 59,
+ "added_in": "12.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE-1F3FC": {
+ "unified": "1F9D1-1F3FE-200D-1F91D-200D-1F9D1-1F3FC",
+ "non_qualified": null,
+ "image": "1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3fc.png",
+ "sheet_x": 48,
+ "sheet_y": 60,
+ "added_in": "12.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE-1F3FD": {
+ "unified": "1F9D1-1F3FE-200D-1F91D-200D-1F9D1-1F3FD",
+ "non_qualified": null,
+ "image": "1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3fd.png",
+ "sheet_x": 49,
+ "sheet_y": 0,
+ "added_in": "12.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE-1F3FE": {
+ "unified": "1F9D1-1F3FE-200D-1F91D-200D-1F9D1-1F3FE",
+ "non_qualified": null,
+ "image": "1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3fe.png",
+ "sheet_x": 49,
+ "sheet_y": 1,
+ "added_in": "12.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE-1F3FF": {
+ "unified": "1F9D1-1F3FE-200D-1F91D-200D-1F9D1-1F3FF",
+ "non_qualified": null,
+ "image": "1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3ff.png",
+ "sheet_x": 49,
+ "sheet_y": 2,
+ "added_in": "12.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF-1F3FB": {
+ "unified": "1F9D1-1F3FF-200D-1F91D-200D-1F9D1-1F3FB",
+ "non_qualified": null,
+ "image": "1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3fb.png",
+ "sheet_x": 49,
+ "sheet_y": 3,
+ "added_in": "12.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF-1F3FC": {
+ "unified": "1F9D1-1F3FF-200D-1F91D-200D-1F9D1-1F3FC",
+ "non_qualified": null,
+ "image": "1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3fc.png",
+ "sheet_x": 49,
+ "sheet_y": 4,
+ "added_in": "12.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF-1F3FD": {
+ "unified": "1F9D1-1F3FF-200D-1F91D-200D-1F9D1-1F3FD",
+ "non_qualified": null,
+ "image": "1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3fd.png",
+ "sheet_x": 49,
+ "sheet_y": 5,
+ "added_in": "12.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF-1F3FE": {
+ "unified": "1F9D1-1F3FF-200D-1F91D-200D-1F9D1-1F3FE",
+ "non_qualified": null,
+ "image": "1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3fe.png",
+ "sheet_x": 49,
+ "sheet_y": 6,
+ "added_in": "12.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF-1F3FF": {
+ "unified": "1F9D1-1F3FF-200D-1F91D-200D-1F9D1-1F3FF",
+ "non_qualified": null,
+ "image": "1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3ff.png",
+ "sheet_x": 49,
+ "sheet_y": 7,
+ "added_in": "12.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ }
},
{
- "name": "LYING FACE",
- "unified": "1F925",
+ "name": "PERSON WITH WHITE CANE",
+ "unified": "1F9D1-200D-1F9AF",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f925.png",
- "sheet_x": 38,
- "sheet_y": 40,
- "short_name": "lying_face",
- "short_names": ["lying_face"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 85,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- {
- "name": null,
- "unified": "1F926-200D-2640-FE0F",
- "non_qualified": "1F926-200D-2640",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f926-200d-2640-fe0f.png",
- "sheet_x": 38,
- "sheet_y": 41,
- "short_name": "woman-facepalming",
- "short_names": ["woman-facepalming"],
+ "image": "1f9d1-200d-1f9af.png",
+ "sheet_x": 49,
+ "sheet_y": 8,
+ "short_name": "person_with_probing_cane",
+ "short_names": ["person_with_probing_cane"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 238,
- "added_in": "9.0",
+ "category": "People & Body",
+ "subcategory": "person-activity",
+ "sort_order": 415,
+ "added_in": "12.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": false,
"skin_variations": {
"1F3FB": {
- "unified": "1F926-1F3FB-200D-2640-FE0F",
- "non_qualified": "1F926-1F3FB-200D-2640",
- "image": "1f926-1f3fb-200d-2640-fe0f.png",
- "sheet_x": 38,
- "sheet_y": 42,
- "added_in": "9.0",
+ "unified": "1F9D1-1F3FB-200D-1F9AF",
+ "non_qualified": null,
+ "image": "1f9d1-1f3fb-200d-1f9af.png",
+ "sheet_x": 49,
+ "sheet_y": 9,
+ "added_in": "12.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FC": {
- "unified": "1F926-1F3FC-200D-2640-FE0F",
- "non_qualified": "1F926-1F3FC-200D-2640",
- "image": "1f926-1f3fc-200d-2640-fe0f.png",
- "sheet_x": 38,
- "sheet_y": 43,
- "added_in": "9.0",
+ "unified": "1F9D1-1F3FC-200D-1F9AF",
+ "non_qualified": null,
+ "image": "1f9d1-1f3fc-200d-1f9af.png",
+ "sheet_x": 49,
+ "sheet_y": 10,
+ "added_in": "12.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FD": {
- "unified": "1F926-1F3FD-200D-2640-FE0F",
- "non_qualified": "1F926-1F3FD-200D-2640",
- "image": "1f926-1f3fd-200d-2640-fe0f.png",
- "sheet_x": 38,
- "sheet_y": 44,
- "added_in": "9.0",
+ "unified": "1F9D1-1F3FD-200D-1F9AF",
+ "non_qualified": null,
+ "image": "1f9d1-1f3fd-200d-1f9af.png",
+ "sheet_x": 49,
+ "sheet_y": 11,
+ "added_in": "12.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FE": {
- "unified": "1F926-1F3FE-200D-2640-FE0F",
- "non_qualified": "1F926-1F3FE-200D-2640",
- "image": "1f926-1f3fe-200d-2640-fe0f.png",
- "sheet_x": 38,
- "sheet_y": 45,
- "added_in": "9.0",
+ "unified": "1F9D1-1F3FE-200D-1F9AF",
+ "non_qualified": null,
+ "image": "1f9d1-1f3fe-200d-1f9af.png",
+ "sheet_x": 49,
+ "sheet_y": 12,
+ "added_in": "12.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FF": {
- "unified": "1F926-1F3FF-200D-2640-FE0F",
- "non_qualified": "1F926-1F3FF-200D-2640",
- "image": "1f926-1f3ff-200d-2640-fe0f.png",
- "sheet_x": 38,
- "sheet_y": 46,
- "added_in": "9.0",
+ "unified": "1F9D1-1F3FF-200D-1F9AF",
+ "non_qualified": null,
+ "image": "1f9d1-1f3ff-200d-1f9af.png",
+ "sheet_x": 49,
+ "sheet_y": 13,
+ "added_in": "12.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
}
}
},
{
- "name": null,
- "unified": "1F926-200D-2642-FE0F",
- "non_qualified": "1F926-200D-2642",
+ "name": "PERSON: RED HAIR",
+ "unified": "1F9D1-200D-1F9B0",
+ "non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f926-200d-2642-fe0f.png",
- "sheet_x": 38,
- "sheet_y": 47,
- "short_name": "man-facepalming",
- "short_names": ["man-facepalming"],
+ "image": "1f9d1-200d-1f9b0.png",
+ "sheet_x": 49,
+ "sheet_y": 14,
+ "short_name": "red_haired_person",
+ "short_names": ["red_haired_person"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 237,
- "added_in": "9.0",
+ "category": "People & Body",
+ "subcategory": "person",
+ "sort_order": 244,
+ "added_in": "12.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": false,
"skin_variations": {
"1F3FB": {
- "unified": "1F926-1F3FB-200D-2642-FE0F",
- "non_qualified": "1F926-1F3FB-200D-2642",
- "image": "1f926-1f3fb-200d-2642-fe0f.png",
- "sheet_x": 38,
- "sheet_y": 48,
- "added_in": "9.0",
+ "unified": "1F9D1-1F3FB-200D-1F9B0",
+ "non_qualified": null,
+ "image": "1f9d1-1f3fb-200d-1f9b0.png",
+ "sheet_x": 49,
+ "sheet_y": 15,
+ "added_in": "12.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FC": {
- "unified": "1F926-1F3FC-200D-2642-FE0F",
- "non_qualified": "1F926-1F3FC-200D-2642",
- "image": "1f926-1f3fc-200d-2642-fe0f.png",
- "sheet_x": 38,
- "sheet_y": 49,
- "added_in": "9.0",
+ "unified": "1F9D1-1F3FC-200D-1F9B0",
+ "non_qualified": null,
+ "image": "1f9d1-1f3fc-200d-1f9b0.png",
+ "sheet_x": 49,
+ "sheet_y": 16,
+ "added_in": "12.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FD": {
- "unified": "1F926-1F3FD-200D-2642-FE0F",
- "non_qualified": "1F926-1F3FD-200D-2642",
- "image": "1f926-1f3fd-200d-2642-fe0f.png",
- "sheet_x": 38,
- "sheet_y": 50,
- "added_in": "9.0",
+ "unified": "1F9D1-1F3FD-200D-1F9B0",
+ "non_qualified": null,
+ "image": "1f9d1-1f3fd-200d-1f9b0.png",
+ "sheet_x": 49,
+ "sheet_y": 17,
+ "added_in": "12.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FE": {
- "unified": "1F926-1F3FE-200D-2642-FE0F",
- "non_qualified": "1F926-1F3FE-200D-2642",
- "image": "1f926-1f3fe-200d-2642-fe0f.png",
- "sheet_x": 38,
- "sheet_y": 51,
- "added_in": "9.0",
+ "unified": "1F9D1-1F3FE-200D-1F9B0",
+ "non_qualified": null,
+ "image": "1f9d1-1f3fe-200d-1f9b0.png",
+ "sheet_x": 49,
+ "sheet_y": 18,
+ "added_in": "12.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FF": {
- "unified": "1F926-1F3FF-200D-2642-FE0F",
- "non_qualified": "1F926-1F3FF-200D-2642",
- "image": "1f926-1f3ff-200d-2642-fe0f.png",
- "sheet_x": 38,
- "sheet_y": 52,
- "added_in": "9.0",
+ "unified": "1F9D1-1F3FF-200D-1F9B0",
+ "non_qualified": null,
+ "image": "1f9d1-1f3ff-200d-1f9b0.png",
+ "sheet_x": 49,
+ "sheet_y": 19,
+ "added_in": "12.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
}
}
},
{
- "name": "FACE PALM",
- "unified": "1F926",
+ "name": "PERSON: CURLY HAIR",
+ "unified": "1F9D1-200D-1F9B1",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f926.png",
- "sheet_x": 39,
- "sheet_y": 0,
- "short_name": "face_palm",
- "short_names": ["face_palm"],
+ "image": "1f9d1-200d-1f9b1.png",
+ "sheet_x": 49,
+ "sheet_y": 20,
+ "short_name": "curly_haired_person",
+ "short_names": ["curly_haired_person"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 236,
- "added_in": "9.0",
+ "category": "People & Body",
+ "subcategory": "person",
+ "sort_order": 246,
+ "added_in": "12.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false,
+ "has_img_facebook": true,
"skin_variations": {
"1F3FB": {
- "unified": "1F926-1F3FB",
+ "unified": "1F9D1-1F3FB-200D-1F9B1",
"non_qualified": null,
- "image": "1f926-1f3fb.png",
- "sheet_x": 39,
- "sheet_y": 1,
- "added_in": "9.0",
+ "image": "1f9d1-1f3fb-200d-1f9b1.png",
+ "sheet_x": 49,
+ "sheet_y": 21,
+ "added_in": "12.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FC": {
- "unified": "1F926-1F3FC",
+ "unified": "1F9D1-1F3FC-200D-1F9B1",
"non_qualified": null,
- "image": "1f926-1f3fc.png",
- "sheet_x": 39,
- "sheet_y": 2,
- "added_in": "9.0",
+ "image": "1f9d1-1f3fc-200d-1f9b1.png",
+ "sheet_x": 49,
+ "sheet_y": 22,
+ "added_in": "12.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FD": {
- "unified": "1F926-1F3FD",
+ "unified": "1F9D1-1F3FD-200D-1F9B1",
"non_qualified": null,
- "image": "1f926-1f3fd.png",
- "sheet_x": 39,
- "sheet_y": 3,
- "added_in": "9.0",
+ "image": "1f9d1-1f3fd-200d-1f9b1.png",
+ "sheet_x": 49,
+ "sheet_y": 23,
+ "added_in": "12.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FE": {
- "unified": "1F926-1F3FE",
+ "unified": "1F9D1-1F3FE-200D-1F9B1",
"non_qualified": null,
- "image": "1f926-1f3fe.png",
- "sheet_x": 39,
- "sheet_y": 4,
- "added_in": "9.0",
+ "image": "1f9d1-1f3fe-200d-1f9b1.png",
+ "sheet_x": 49,
+ "sheet_y": 24,
+ "added_in": "12.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FF": {
- "unified": "1F926-1F3FF",
+ "unified": "1F9D1-1F3FF-200D-1F9B1",
"non_qualified": null,
- "image": "1f926-1f3ff.png",
- "sheet_x": 39,
- "sheet_y": 5,
- "added_in": "9.0",
+ "image": "1f9d1-1f3ff-200d-1f9b1.png",
+ "sheet_x": 49,
+ "sheet_y": 25,
+ "added_in": "12.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
}
}
},
{
- "name": "SNEEZING FACE",
- "unified": "1F927",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f927.png",
- "sheet_x": 39,
- "sheet_y": 6,
- "short_name": "sneezing_face",
- "short_names": ["sneezing_face"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 79,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- {
- "name": "FACE WITH ONE EYEBROW RAISED",
- "unified": "1F928",
+ "name": "PERSON: BALD",
+ "unified": "1F9D1-200D-1F9B2",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f928.png",
- "sheet_x": 39,
- "sheet_y": 7,
- "short_name": "face_with_raised_eyebrow",
- "short_names": ["face_with_raised_eyebrow", "face_with_one_eyebrow_raised"],
+ "image": "1f9d1-200d-1f9b2.png",
+ "sheet_x": 49,
+ "sheet_y": 26,
+ "short_name": "bald_person",
+ "short_names": ["bald_person"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 24,
- "added_in": "10.0",
+ "category": "People & Body",
+ "subcategory": "person",
+ "sort_order": 250,
+ "added_in": "12.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": false
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F9D1-1F3FB-200D-1F9B2",
+ "non_qualified": null,
+ "image": "1f9d1-1f3fb-200d-1f9b2.png",
+ "sheet_x": 49,
+ "sheet_y": 27,
+ "added_in": "12.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1F9D1-1F3FC-200D-1F9B2",
+ "non_qualified": null,
+ "image": "1f9d1-1f3fc-200d-1f9b2.png",
+ "sheet_x": 49,
+ "sheet_y": 28,
+ "added_in": "12.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1F9D1-1F3FD-200D-1F9B2",
+ "non_qualified": null,
+ "image": "1f9d1-1f3fd-200d-1f9b2.png",
+ "sheet_x": 49,
+ "sheet_y": 29,
+ "added_in": "12.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1F9D1-1F3FE-200D-1F9B2",
+ "non_qualified": null,
+ "image": "1f9d1-1f3fe-200d-1f9b2.png",
+ "sheet_x": 49,
+ "sheet_y": 30,
+ "added_in": "12.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1F9D1-1F3FF-200D-1F9B2",
+ "non_qualified": null,
+ "image": "1f9d1-1f3ff-200d-1f9b2.png",
+ "sheet_x": 49,
+ "sheet_y": 31,
+ "added_in": "12.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ }
},
{
- "name": "GRINNING FACE WITH STAR EYES",
- "unified": "1F929",
+ "name": "PERSON: WHITE HAIR",
+ "unified": "1F9D1-200D-1F9B3",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f929.png",
- "sheet_x": 39,
- "sheet_y": 8,
- "short_name": "star-struck",
- "short_names": ["star-struck", "grinning_face_with_star_eyes"],
+ "image": "1f9d1-200d-1f9b3.png",
+ "sheet_x": 49,
+ "sheet_y": 32,
+ "short_name": "white_haired_person",
+ "short_names": ["white_haired_person"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 22,
- "added_in": "10.0",
+ "category": "People & Body",
+ "subcategory": "person",
+ "sort_order": 248,
+ "added_in": "12.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": false
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F9D1-1F3FB-200D-1F9B3",
+ "non_qualified": null,
+ "image": "1f9d1-1f3fb-200d-1f9b3.png",
+ "sheet_x": 49,
+ "sheet_y": 33,
+ "added_in": "12.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1F9D1-1F3FC-200D-1F9B3",
+ "non_qualified": null,
+ "image": "1f9d1-1f3fc-200d-1f9b3.png",
+ "sheet_x": 49,
+ "sheet_y": 34,
+ "added_in": "12.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1F9D1-1F3FD-200D-1F9B3",
+ "non_qualified": null,
+ "image": "1f9d1-1f3fd-200d-1f9b3.png",
+ "sheet_x": 49,
+ "sheet_y": 35,
+ "added_in": "12.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1F9D1-1F3FE-200D-1F9B3",
+ "non_qualified": null,
+ "image": "1f9d1-1f3fe-200d-1f9b3.png",
+ "sheet_x": 49,
+ "sheet_y": 36,
+ "added_in": "12.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1F9D1-1F3FF-200D-1F9B3",
+ "non_qualified": null,
+ "image": "1f9d1-1f3ff-200d-1f9b3.png",
+ "sheet_x": 49,
+ "sheet_y": 37,
+ "added_in": "12.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ }
},
{
- "name": "GRINNING FACE WITH ONE LARGE AND ONE SMALL EYE",
- "unified": "1F92A",
+ "name": "PERSON IN MOTORIZED WHEELCHAIR",
+ "unified": "1F9D1-200D-1F9BC",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f92a.png",
- "sheet_x": 39,
- "sheet_y": 9,
- "short_name": "zany_face",
- "short_names": [
- "zany_face",
- "grinning_face_with_one_large_and_one_small_eye"
- ],
+ "image": "1f9d1-200d-1f9bc.png",
+ "sheet_x": 49,
+ "sheet_y": 38,
+ "short_name": "person_in_motorized_wheelchair",
+ "short_names": ["person_in_motorized_wheelchair"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 69,
- "added_in": "10.0",
+ "category": "People & Body",
+ "subcategory": "person-activity",
+ "sort_order": 418,
+ "added_in": "12.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": false
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F9D1-1F3FB-200D-1F9BC",
+ "non_qualified": null,
+ "image": "1f9d1-1f3fb-200d-1f9bc.png",
+ "sheet_x": 49,
+ "sheet_y": 39,
+ "added_in": "12.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1F9D1-1F3FC-200D-1F9BC",
+ "non_qualified": null,
+ "image": "1f9d1-1f3fc-200d-1f9bc.png",
+ "sheet_x": 49,
+ "sheet_y": 40,
+ "added_in": "12.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1F9D1-1F3FD-200D-1F9BC",
+ "non_qualified": null,
+ "image": "1f9d1-1f3fd-200d-1f9bc.png",
+ "sheet_x": 49,
+ "sheet_y": 41,
+ "added_in": "12.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1F9D1-1F3FE-200D-1F9BC",
+ "non_qualified": null,
+ "image": "1f9d1-1f3fe-200d-1f9bc.png",
+ "sheet_x": 49,
+ "sheet_y": 42,
+ "added_in": "12.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1F9D1-1F3FF-200D-1F9BC",
+ "non_qualified": null,
+ "image": "1f9d1-1f3ff-200d-1f9bc.png",
+ "sheet_x": 49,
+ "sheet_y": 43,
+ "added_in": "12.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ }
},
{
- "name": "FACE WITH FINGER COVERING CLOSED LIPS",
- "unified": "1F92B",
+ "name": "PERSON IN MANUAL WHEELCHAIR",
+ "unified": "1F9D1-200D-1F9BD",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f92b.png",
- "sheet_x": 39,
- "sheet_y": 10,
- "short_name": "shushing_face",
- "short_names": ["shushing_face", "face_with_finger_covering_closed_lips"],
+ "image": "1f9d1-200d-1f9bd.png",
+ "sheet_x": 49,
+ "sheet_y": 44,
+ "short_name": "person_in_manual_wheelchair",
+ "short_names": ["person_in_manual_wheelchair"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 86,
- "added_in": "10.0",
+ "category": "People & Body",
+ "subcategory": "person-activity",
+ "sort_order": 421,
+ "added_in": "12.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": false
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F9D1-1F3FB-200D-1F9BD",
+ "non_qualified": null,
+ "image": "1f9d1-1f3fb-200d-1f9bd.png",
+ "sheet_x": 49,
+ "sheet_y": 45,
+ "added_in": "12.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1F9D1-1F3FC-200D-1F9BD",
+ "non_qualified": null,
+ "image": "1f9d1-1f3fc-200d-1f9bd.png",
+ "sheet_x": 49,
+ "sheet_y": 46,
+ "added_in": "12.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1F9D1-1F3FD-200D-1F9BD",
+ "non_qualified": null,
+ "image": "1f9d1-1f3fd-200d-1f9bd.png",
+ "sheet_x": 49,
+ "sheet_y": 47,
+ "added_in": "12.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1F9D1-1F3FE-200D-1F9BD",
+ "non_qualified": null,
+ "image": "1f9d1-1f3fe-200d-1f9bd.png",
+ "sheet_x": 49,
+ "sheet_y": 48,
+ "added_in": "12.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1F9D1-1F3FF-200D-1F9BD",
+ "non_qualified": null,
+ "image": "1f9d1-1f3ff-200d-1f9bd.png",
+ "sheet_x": 49,
+ "sheet_y": 49,
+ "added_in": "12.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ }
},
{
- "name": "SERIOUS FACE WITH SYMBOLS COVERING MOUTH",
- "unified": "1F92C",
- "non_qualified": null,
+ "name": "HEALTH WORKER",
+ "unified": "1F9D1-200D-2695-FE0F",
+ "non_qualified": "1F9D1-200D-2695",
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f92c.png",
- "sheet_x": 39,
- "sheet_y": 11,
- "short_name": "face_with_symbols_on_mouth",
- "short_names": [
- "face_with_symbols_on_mouth",
- "serious_face_with_symbols_covering_mouth"
- ],
+ "image": "1f9d1-200d-2695-fe0f.png",
+ "sheet_x": 49,
+ "sheet_y": 50,
+ "short_name": "health_worker",
+ "short_names": ["health_worker"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 73,
- "added_in": "10.0",
+ "category": "People & Body",
+ "subcategory": "person-role",
+ "sort_order": 286,
+ "added_in": "12.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": false
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F9D1-1F3FB-200D-2695-FE0F",
+ "non_qualified": "1F9D1-1F3FB-200D-2695",
+ "image": "1f9d1-1f3fb-200d-2695-fe0f.png",
+ "sheet_x": 49,
+ "sheet_y": 51,
+ "added_in": "12.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1F9D1-1F3FC-200D-2695-FE0F",
+ "non_qualified": "1F9D1-1F3FC-200D-2695",
+ "image": "1f9d1-1f3fc-200d-2695-fe0f.png",
+ "sheet_x": 49,
+ "sheet_y": 52,
+ "added_in": "12.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1F9D1-1F3FD-200D-2695-FE0F",
+ "non_qualified": "1F9D1-1F3FD-200D-2695",
+ "image": "1f9d1-1f3fd-200d-2695-fe0f.png",
+ "sheet_x": 49,
+ "sheet_y": 53,
+ "added_in": "12.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1F9D1-1F3FE-200D-2695-FE0F",
+ "non_qualified": "1F9D1-1F3FE-200D-2695",
+ "image": "1f9d1-1f3fe-200d-2695-fe0f.png",
+ "sheet_x": 49,
+ "sheet_y": 54,
+ "added_in": "12.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1F9D1-1F3FF-200D-2695-FE0F",
+ "non_qualified": "1F9D1-1F3FF-200D-2695",
+ "image": "1f9d1-1f3ff-200d-2695-fe0f.png",
+ "sheet_x": 49,
+ "sheet_y": 55,
+ "added_in": "12.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ }
},
{
- "name": "SMILING FACE WITH SMILING EYES AND HAND COVERING MOUTH",
- "unified": "1F92D",
- "non_qualified": null,
+ "name": "JUDGE",
+ "unified": "1F9D1-200D-2696-FE0F",
+ "non_qualified": "1F9D1-200D-2696",
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f92d.png",
- "sheet_x": 39,
- "sheet_y": 12,
- "short_name": "face_with_hand_over_mouth",
- "short_names": [
- "face_with_hand_over_mouth",
- "smiling_face_with_smiling_eyes_and_hand_covering_mouth"
- ],
+ "image": "1f9d1-200d-2696-fe0f.png",
+ "sheet_x": 49,
+ "sheet_y": 56,
+ "short_name": "judge",
+ "short_names": ["judge"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 87,
- "added_in": "10.0",
+ "category": "People & Body",
+ "subcategory": "person-role",
+ "sort_order": 295,
+ "added_in": "12.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": false
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F9D1-1F3FB-200D-2696-FE0F",
+ "non_qualified": "1F9D1-1F3FB-200D-2696",
+ "image": "1f9d1-1f3fb-200d-2696-fe0f.png",
+ "sheet_x": 49,
+ "sheet_y": 57,
+ "added_in": "12.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1F9D1-1F3FC-200D-2696-FE0F",
+ "non_qualified": "1F9D1-1F3FC-200D-2696",
+ "image": "1f9d1-1f3fc-200d-2696-fe0f.png",
+ "sheet_x": 49,
+ "sheet_y": 58,
+ "added_in": "12.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1F9D1-1F3FD-200D-2696-FE0F",
+ "non_qualified": "1F9D1-1F3FD-200D-2696",
+ "image": "1f9d1-1f3fd-200d-2696-fe0f.png",
+ "sheet_x": 49,
+ "sheet_y": 59,
+ "added_in": "12.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1F9D1-1F3FE-200D-2696-FE0F",
+ "non_qualified": "1F9D1-1F3FE-200D-2696",
+ "image": "1f9d1-1f3fe-200d-2696-fe0f.png",
+ "sheet_x": 49,
+ "sheet_y": 60,
+ "added_in": "12.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1F9D1-1F3FF-200D-2696-FE0F",
+ "non_qualified": "1F9D1-1F3FF-200D-2696",
+ "image": "1f9d1-1f3ff-200d-2696-fe0f.png",
+ "sheet_x": 50,
+ "sheet_y": 0,
+ "added_in": "12.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ }
},
{
- "name": "FACE WITH OPEN MOUTH VOMITING",
- "unified": "1F92E",
- "non_qualified": null,
+ "name": "PILOT",
+ "unified": "1F9D1-200D-2708-FE0F",
+ "non_qualified": "1F9D1-200D-2708",
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f92e.png",
- "sheet_x": 39,
- "sheet_y": 13,
- "short_name": "face_vomiting",
- "short_names": ["face_vomiting", "face_with_open_mouth_vomiting"],
+ "image": "1f9d1-200d-2708-fe0f.png",
+ "sheet_x": 50,
+ "sheet_y": 1,
+ "short_name": "pilot",
+ "short_names": ["pilot"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 78,
- "added_in": "10.0",
+ "category": "People & Body",
+ "subcategory": "person-role",
+ "sort_order": 325,
+ "added_in": "12.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": false
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F9D1-1F3FB-200D-2708-FE0F",
+ "non_qualified": "1F9D1-1F3FB-200D-2708",
+ "image": "1f9d1-1f3fb-200d-2708-fe0f.png",
+ "sheet_x": 50,
+ "sheet_y": 2,
+ "added_in": "12.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1F9D1-1F3FC-200D-2708-FE0F",
+ "non_qualified": "1F9D1-1F3FC-200D-2708",
+ "image": "1f9d1-1f3fc-200d-2708-fe0f.png",
+ "sheet_x": 50,
+ "sheet_y": 3,
+ "added_in": "12.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1F9D1-1F3FD-200D-2708-FE0F",
+ "non_qualified": "1F9D1-1F3FD-200D-2708",
+ "image": "1f9d1-1f3fd-200d-2708-fe0f.png",
+ "sheet_x": 50,
+ "sheet_y": 4,
+ "added_in": "12.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1F9D1-1F3FE-200D-2708-FE0F",
+ "non_qualified": "1F9D1-1F3FE-200D-2708",
+ "image": "1f9d1-1f3fe-200d-2708-fe0f.png",
+ "sheet_x": 50,
+ "sheet_y": 5,
+ "added_in": "12.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1F9D1-1F3FF-200D-2708-FE0F",
+ "non_qualified": "1F9D1-1F3FF-200D-2708",
+ "image": "1f9d1-1f3ff-200d-2708-fe0f.png",
+ "sheet_x": 50,
+ "sheet_y": 6,
+ "added_in": "12.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ }
},
{
- "name": "SHOCKED FACE WITH EXPLODING HEAD",
- "unified": "1F92F",
+ "name": "ADULT",
+ "unified": "1F9D1",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f92f.png",
- "sheet_x": 39,
- "sheet_y": 14,
- "short_name": "exploding_head",
- "short_names": ["exploding_head", "shocked_face_with_exploding_head"],
+ "image": "1f9d1.png",
+ "sheet_x": 50,
+ "sheet_y": 7,
+ "short_name": "adult",
+ "short_names": ["adult"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 62,
- "added_in": "10.0",
+ "category": "People & Body",
+ "subcategory": "person",
+ "sort_order": 232,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": false
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F9D1-1F3FB",
+ "non_qualified": null,
+ "image": "1f9d1-1f3fb.png",
+ "sheet_x": 50,
+ "sheet_y": 8,
+ "added_in": "5.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1F9D1-1F3FC",
+ "non_qualified": null,
+ "image": "1f9d1-1f3fc.png",
+ "sheet_x": 50,
+ "sheet_y": 9,
+ "added_in": "5.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1F9D1-1F3FD",
+ "non_qualified": null,
+ "image": "1f9d1-1f3fd.png",
+ "sheet_x": 50,
+ "sheet_y": 10,
+ "added_in": "5.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1F9D1-1F3FE",
+ "non_qualified": null,
+ "image": "1f9d1-1f3fe.png",
+ "sheet_x": 50,
+ "sheet_y": 11,
+ "added_in": "5.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1F9D1-1F3FF",
+ "non_qualified": null,
+ "image": "1f9d1-1f3ff.png",
+ "sheet_x": 50,
+ "sheet_y": 12,
+ "added_in": "5.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ }
},
{
- "name": "PREGNANT WOMAN",
- "unified": "1F930",
+ "name": "CHILD",
+ "unified": "1F9D2",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f930.png",
- "sheet_x": 39,
- "sheet_y": 15,
- "short_name": "pregnant_woman",
- "short_names": ["pregnant_woman"],
+ "image": "1f9d2.png",
+ "sheet_x": 50,
+ "sheet_y": 13,
+ "short_name": "child",
+ "short_names": ["child"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 189,
- "added_in": "9.0",
+ "category": "People & Body",
+ "subcategory": "person",
+ "sort_order": 229,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": false,
"skin_variations": {
"1F3FB": {
- "unified": "1F930-1F3FB",
+ "unified": "1F9D2-1F3FB",
"non_qualified": null,
- "image": "1f930-1f3fb.png",
- "sheet_x": 39,
- "sheet_y": 16,
- "added_in": "9.0",
+ "image": "1f9d2-1f3fb.png",
+ "sheet_x": 50,
+ "sheet_y": 14,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FC": {
- "unified": "1F930-1F3FC",
+ "unified": "1F9D2-1F3FC",
"non_qualified": null,
- "image": "1f930-1f3fc.png",
- "sheet_x": 39,
- "sheet_y": 17,
- "added_in": "9.0",
+ "image": "1f9d2-1f3fc.png",
+ "sheet_x": 50,
+ "sheet_y": 15,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FD": {
- "unified": "1F930-1F3FD",
+ "unified": "1F9D2-1F3FD",
"non_qualified": null,
- "image": "1f930-1f3fd.png",
- "sheet_x": 39,
- "sheet_y": 18,
- "added_in": "9.0",
+ "image": "1f9d2-1f3fd.png",
+ "sheet_x": 50,
+ "sheet_y": 16,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FE": {
- "unified": "1F930-1F3FE",
+ "unified": "1F9D2-1F3FE",
"non_qualified": null,
- "image": "1f930-1f3fe.png",
- "sheet_x": 39,
- "sheet_y": 19,
- "added_in": "9.0",
+ "image": "1f9d2-1f3fe.png",
+ "sheet_x": 50,
+ "sheet_y": 17,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FF": {
- "unified": "1F930-1F3FF",
+ "unified": "1F9D2-1F3FF",
"non_qualified": null,
- "image": "1f930-1f3ff.png",
- "sheet_x": 39,
- "sheet_y": 20,
- "added_in": "9.0",
+ "image": "1f9d2-1f3ff.png",
+ "sheet_x": 50,
+ "sheet_y": 18,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
}
}
},
{
- "name": "BREAST-FEEDING",
- "unified": "1F931",
+ "name": "OLDER ADULT",
+ "unified": "1F9D3",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f931.png",
- "sheet_x": 39,
- "sheet_y": 21,
- "short_name": "breast-feeding",
- "short_names": ["breast-feeding"],
+ "image": "1f9d3.png",
+ "sheet_x": 50,
+ "sheet_y": 19,
+ "short_name": "older_adult",
+ "short_names": ["older_adult"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 190,
- "added_in": "10.0",
+ "category": "People & Body",
+ "subcategory": "person",
+ "sort_order": 253,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": false,
"skin_variations": {
"1F3FB": {
- "unified": "1F931-1F3FB",
+ "unified": "1F9D3-1F3FB",
"non_qualified": null,
- "image": "1f931-1f3fb.png",
- "sheet_x": 39,
- "sheet_y": 22,
- "added_in": "10.0",
+ "image": "1f9d3-1f3fb.png",
+ "sheet_x": 50,
+ "sheet_y": 20,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FC": {
- "unified": "1F931-1F3FC",
+ "unified": "1F9D3-1F3FC",
"non_qualified": null,
- "image": "1f931-1f3fc.png",
- "sheet_x": 39,
- "sheet_y": 23,
- "added_in": "10.0",
+ "image": "1f9d3-1f3fc.png",
+ "sheet_x": 50,
+ "sheet_y": 21,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FD": {
- "unified": "1F931-1F3FD",
+ "unified": "1F9D3-1F3FD",
"non_qualified": null,
- "image": "1f931-1f3fd.png",
- "sheet_x": 39,
- "sheet_y": 24,
- "added_in": "10.0",
+ "image": "1f9d3-1f3fd.png",
+ "sheet_x": 50,
+ "sheet_y": 22,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FE": {
- "unified": "1F931-1F3FE",
+ "unified": "1F9D3-1F3FE",
"non_qualified": null,
- "image": "1f931-1f3fe.png",
- "sheet_x": 39,
- "sheet_y": 25,
- "added_in": "10.0",
+ "image": "1f9d3-1f3fe.png",
+ "sheet_x": 50,
+ "sheet_y": 23,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FF": {
- "unified": "1F931-1F3FF",
+ "unified": "1F9D3-1F3FF",
"non_qualified": null,
- "image": "1f931-1f3ff.png",
- "sheet_x": 39,
- "sheet_y": 26,
- "added_in": "10.0",
+ "image": "1f9d3-1f3ff.png",
+ "sheet_x": 50,
+ "sheet_y": 24,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
}
}
},
{
- "name": "PALMS UP TOGETHER",
- "unified": "1F932",
- "non_qualified": null,
+ "name": "WOMAN: BEARD",
+ "unified": "1F9D4-200D-2640-FE0F",
+ "non_qualified": "1F9D4-200D-2640",
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f932.png",
- "sheet_x": 39,
- "sheet_y": 27,
- "short_name": "palms_up_together",
- "short_names": ["palms_up_together"],
+ "image": "1f9d4-200d-2640-fe0f.png",
+ "sheet_x": 50,
+ "sheet_y": 25,
+ "short_name": "woman_with_beard",
+ "short_names": ["woman_with_beard"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 387,
- "added_in": "10.0",
+ "category": "People & Body",
+ "subcategory": "person",
+ "sort_order": 237,
+ "added_in": "13.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": false,
"skin_variations": {
"1F3FB": {
- "unified": "1F932-1F3FB",
- "non_qualified": null,
- "image": "1f932-1f3fb.png",
- "sheet_x": 39,
- "sheet_y": 28,
- "added_in": "10.0",
+ "unified": "1F9D4-1F3FB-200D-2640-FE0F",
+ "non_qualified": "1F9D4-1F3FB-200D-2640",
+ "image": "1f9d4-1f3fb-200d-2640-fe0f.png",
+ "sheet_x": 50,
+ "sheet_y": 26,
+ "added_in": "13.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FC": {
- "unified": "1F932-1F3FC",
- "non_qualified": null,
- "image": "1f932-1f3fc.png",
- "sheet_x": 39,
- "sheet_y": 29,
- "added_in": "10.0",
+ "unified": "1F9D4-1F3FC-200D-2640-FE0F",
+ "non_qualified": "1F9D4-1F3FC-200D-2640",
+ "image": "1f9d4-1f3fc-200d-2640-fe0f.png",
+ "sheet_x": 50,
+ "sheet_y": 27,
+ "added_in": "13.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FD": {
- "unified": "1F932-1F3FD",
- "non_qualified": null,
- "image": "1f932-1f3fd.png",
- "sheet_x": 39,
- "sheet_y": 30,
- "added_in": "10.0",
+ "unified": "1F9D4-1F3FD-200D-2640-FE0F",
+ "non_qualified": "1F9D4-1F3FD-200D-2640",
+ "image": "1f9d4-1f3fd-200d-2640-fe0f.png",
+ "sheet_x": 50,
+ "sheet_y": 28,
+ "added_in": "13.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FE": {
- "unified": "1F932-1F3FE",
- "non_qualified": null,
- "image": "1f932-1f3fe.png",
- "sheet_x": 39,
- "sheet_y": 31,
- "added_in": "10.0",
+ "unified": "1F9D4-1F3FE-200D-2640-FE0F",
+ "non_qualified": "1F9D4-1F3FE-200D-2640",
+ "image": "1f9d4-1f3fe-200d-2640-fe0f.png",
+ "sheet_x": 50,
+ "sheet_y": 29,
+ "added_in": "13.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FF": {
- "unified": "1F932-1F3FF",
- "non_qualified": null,
- "image": "1f932-1f3ff.png",
- "sheet_x": 39,
- "sheet_y": 32,
- "added_in": "10.0",
+ "unified": "1F9D4-1F3FF-200D-2640-FE0F",
+ "non_qualified": "1F9D4-1F3FF-200D-2640",
+ "image": "1f9d4-1f3ff-200d-2640-fe0f.png",
+ "sheet_x": 50,
+ "sheet_y": 30,
+ "added_in": "13.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
}
}
},
{
- "name": "SELFIE",
- "unified": "1F933",
- "non_qualified": null,
+ "name": "MAN: BEARD",
+ "unified": "1F9D4-200D-2642-FE0F",
+ "non_qualified": "1F9D4-200D-2642",
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f933.png",
- "sheet_x": 39,
- "sheet_y": 33,
- "short_name": "selfie",
- "short_names": ["selfie"],
+ "image": "1f9d4-200d-2642-fe0f.png",
+ "sheet_x": 50,
+ "sheet_y": 31,
+ "short_name": "man_with_beard",
+ "short_names": ["man_with_beard"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 356,
- "added_in": "9.0",
+ "category": "People & Body",
+ "subcategory": "person",
+ "sort_order": 236,
+ "added_in": "13.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": false,
"skin_variations": {
"1F3FB": {
- "unified": "1F933-1F3FB",
- "non_qualified": null,
- "image": "1f933-1f3fb.png",
- "sheet_x": 39,
- "sheet_y": 34,
- "added_in": "9.0",
+ "unified": "1F9D4-1F3FB-200D-2642-FE0F",
+ "non_qualified": "1F9D4-1F3FB-200D-2642",
+ "image": "1f9d4-1f3fb-200d-2642-fe0f.png",
+ "sheet_x": 50,
+ "sheet_y": 32,
+ "added_in": "13.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FC": {
- "unified": "1F933-1F3FC",
- "non_qualified": null,
- "image": "1f933-1f3fc.png",
- "sheet_x": 39,
- "sheet_y": 35,
- "added_in": "9.0",
+ "unified": "1F9D4-1F3FC-200D-2642-FE0F",
+ "non_qualified": "1F9D4-1F3FC-200D-2642",
+ "image": "1f9d4-1f3fc-200d-2642-fe0f.png",
+ "sheet_x": 50,
+ "sheet_y": 33,
+ "added_in": "13.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FD": {
- "unified": "1F933-1F3FD",
- "non_qualified": null,
- "image": "1f933-1f3fd.png",
- "sheet_x": 39,
- "sheet_y": 36,
- "added_in": "9.0",
+ "unified": "1F9D4-1F3FD-200D-2642-FE0F",
+ "non_qualified": "1F9D4-1F3FD-200D-2642",
+ "image": "1f9d4-1f3fd-200d-2642-fe0f.png",
+ "sheet_x": 50,
+ "sheet_y": 34,
+ "added_in": "13.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FE": {
- "unified": "1F933-1F3FE",
- "non_qualified": null,
- "image": "1f933-1f3fe.png",
- "sheet_x": 39,
- "sheet_y": 37,
- "added_in": "9.0",
+ "unified": "1F9D4-1F3FE-200D-2642-FE0F",
+ "non_qualified": "1F9D4-1F3FE-200D-2642",
+ "image": "1f9d4-1f3fe-200d-2642-fe0f.png",
+ "sheet_x": 50,
+ "sheet_y": 35,
+ "added_in": "13.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FF": {
- "unified": "1F933-1F3FF",
- "non_qualified": null,
- "image": "1f933-1f3ff.png",
- "sheet_x": 39,
- "sheet_y": 38,
- "added_in": "9.0",
+ "unified": "1F9D4-1F3FF-200D-2642-FE0F",
+ "non_qualified": "1F9D4-1F3FF-200D-2642",
+ "image": "1f9d4-1f3ff-200d-2642-fe0f.png",
+ "sheet_x": 50,
+ "sheet_y": 36,
+ "added_in": "13.1",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
}
}
},
{
- "name": "PRINCE",
- "unified": "1F934",
+ "name": "BEARDED PERSON",
+ "unified": "1F9D4",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f934.png",
- "sheet_x": 39,
- "sheet_y": 39,
- "short_name": "prince",
- "short_names": ["prince"],
+ "image": "1f9d4.png",
+ "sheet_x": 50,
+ "sheet_y": 37,
+ "short_name": "bearded_person",
+ "short_names": ["bearded_person"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 168,
- "added_in": "9.0",
+ "category": "People & Body",
+ "subcategory": "person",
+ "sort_order": 235,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": false,
"skin_variations": {
"1F3FB": {
- "unified": "1F934-1F3FB",
+ "unified": "1F9D4-1F3FB",
"non_qualified": null,
- "image": "1f934-1f3fb.png",
- "sheet_x": 39,
- "sheet_y": 40,
- "added_in": "9.0",
+ "image": "1f9d4-1f3fb.png",
+ "sheet_x": 50,
+ "sheet_y": 38,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FC": {
- "unified": "1F934-1F3FC",
+ "unified": "1F9D4-1F3FC",
"non_qualified": null,
- "image": "1f934-1f3fc.png",
- "sheet_x": 39,
- "sheet_y": 41,
- "added_in": "9.0",
+ "image": "1f9d4-1f3fc.png",
+ "sheet_x": 50,
+ "sheet_y": 39,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FD": {
- "unified": "1F934-1F3FD",
+ "unified": "1F9D4-1F3FD",
"non_qualified": null,
- "image": "1f934-1f3fd.png",
- "sheet_x": 39,
- "sheet_y": 42,
- "added_in": "9.0",
+ "image": "1f9d4-1f3fd.png",
+ "sheet_x": 50,
+ "sheet_y": 40,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FE": {
- "unified": "1F934-1F3FE",
+ "unified": "1F9D4-1F3FE",
"non_qualified": null,
- "image": "1f934-1f3fe.png",
- "sheet_x": 39,
- "sheet_y": 43,
- "added_in": "9.0",
+ "image": "1f9d4-1f3fe.png",
+ "sheet_x": 50,
+ "sheet_y": 41,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FF": {
- "unified": "1F934-1F3FF",
+ "unified": "1F9D4-1F3FF",
"non_qualified": null,
- "image": "1f934-1f3ff.png",
- "sheet_x": 39,
- "sheet_y": 44,
- "added_in": "9.0",
+ "image": "1f9d4-1f3ff.png",
+ "sheet_x": 50,
+ "sheet_y": 42,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
}
}
},
{
- "name": "MAN IN TUXEDO",
- "unified": "1F935",
+ "name": "PERSON WITH HEADSCARF",
+ "unified": "1F9D5",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f935.png",
- "sheet_x": 39,
- "sheet_y": 45,
- "short_name": "man_in_tuxedo",
- "short_names": ["man_in_tuxedo"],
+ "image": "1f9d5.png",
+ "sheet_x": 50,
+ "sheet_y": 43,
+ "short_name": "person_with_headscarf",
+ "short_names": ["person_with_headscarf"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 187,
- "added_in": "9.0",
+ "category": "People & Body",
+ "subcategory": "person-role",
+ "sort_order": 354,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": false,
"skin_variations": {
"1F3FB": {
- "unified": "1F935-1F3FB",
+ "unified": "1F9D5-1F3FB",
"non_qualified": null,
- "image": "1f935-1f3fb.png",
- "sheet_x": 39,
- "sheet_y": 46,
- "added_in": "9.0",
+ "image": "1f9d5-1f3fb.png",
+ "sheet_x": 50,
+ "sheet_y": 44,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FC": {
- "unified": "1F935-1F3FC",
+ "unified": "1F9D5-1F3FC",
"non_qualified": null,
- "image": "1f935-1f3fc.png",
- "sheet_x": 39,
- "sheet_y": 47,
- "added_in": "9.0",
+ "image": "1f9d5-1f3fc.png",
+ "sheet_x": 50,
+ "sheet_y": 45,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FD": {
- "unified": "1F935-1F3FD",
+ "unified": "1F9D5-1F3FD",
"non_qualified": null,
- "image": "1f935-1f3fd.png",
- "sheet_x": 39,
+ "image": "1f9d5-1f3fd.png",
+ "sheet_x": 50,
+ "sheet_y": 46,
+ "added_in": "5.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1F9D5-1F3FE",
+ "non_qualified": null,
+ "image": "1f9d5-1f3fe.png",
+ "sheet_x": 50,
+ "sheet_y": 47,
+ "added_in": "5.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1F9D5-1F3FF",
+ "non_qualified": null,
+ "image": "1f9d5-1f3ff.png",
+ "sheet_x": 50,
"sheet_y": 48,
- "added_in": "9.0",
+ "added_in": "5.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ }
+ },
+ {
+ "name": "WOMAN IN STEAMY ROOM",
+ "unified": "1F9D6-200D-2640-FE0F",
+ "non_qualified": "1F9D6-200D-2640",
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1f9d6-200d-2640-fe0f.png",
+ "sheet_x": 50,
+ "sheet_y": 49,
+ "short_name": "woman_in_steamy_room",
+ "short_names": ["woman_in_steamy_room"],
+ "text": null,
+ "texts": null,
+ "category": "People & Body",
+ "subcategory": "person-activity",
+ "sort_order": 435,
+ "added_in": "5.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true,
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F9D6-1F3FB-200D-2640-FE0F",
+ "non_qualified": "1F9D6-1F3FB-200D-2640",
+ "image": "1f9d6-1f3fb-200d-2640-fe0f.png",
+ "sheet_x": 50,
+ "sheet_y": 50,
+ "added_in": "5.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1F9D6-1F3FC-200D-2640-FE0F",
+ "non_qualified": "1F9D6-1F3FC-200D-2640",
+ "image": "1f9d6-1f3fc-200d-2640-fe0f.png",
+ "sheet_x": 50,
+ "sheet_y": 51,
+ "added_in": "5.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1F9D6-1F3FD-200D-2640-FE0F",
+ "non_qualified": "1F9D6-1F3FD-200D-2640",
+ "image": "1f9d6-1f3fd-200d-2640-fe0f.png",
+ "sheet_x": 50,
+ "sheet_y": 52,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FE": {
- "unified": "1F935-1F3FE",
- "non_qualified": null,
- "image": "1f935-1f3fe.png",
- "sheet_x": 39,
- "sheet_y": 49,
- "added_in": "9.0",
+ "unified": "1F9D6-1F3FE-200D-2640-FE0F",
+ "non_qualified": "1F9D6-1F3FE-200D-2640",
+ "image": "1f9d6-1f3fe-200d-2640-fe0f.png",
+ "sheet_x": 50,
+ "sheet_y": 53,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FF": {
- "unified": "1F935-1F3FF",
- "non_qualified": null,
- "image": "1f935-1f3ff.png",
- "sheet_x": 39,
- "sheet_y": 50,
- "added_in": "9.0",
+ "unified": "1F9D6-1F3FF-200D-2640-FE0F",
+ "non_qualified": "1F9D6-1F3FF-200D-2640",
+ "image": "1f9d6-1f3ff-200d-2640-fe0f.png",
+ "sheet_x": 50,
+ "sheet_y": 54,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
}
}
},
{
- "name": "MOTHER CHRISTMAS",
- "unified": "1F936",
- "non_qualified": null,
+ "name": "MAN IN STEAMY ROOM",
+ "unified": "1F9D6-200D-2642-FE0F",
+ "non_qualified": "1F9D6-200D-2642",
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f936.png",
- "sheet_x": 39,
- "sheet_y": 51,
- "short_name": "mrs_claus",
- "short_names": ["mrs_claus", "mother_christmas"],
+ "image": "1f9d6-200d-2642-fe0f.png",
+ "sheet_x": 50,
+ "sheet_y": 55,
+ "short_name": "man_in_steamy_room",
+ "short_names": ["man_in_steamy_room"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 193,
- "added_in": "9.0",
+ "category": "People & Body",
+ "subcategory": "person-activity",
+ "sort_order": 434,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": false,
"skin_variations": {
"1F3FB": {
- "unified": "1F936-1F3FB",
- "non_qualified": null,
- "image": "1f936-1f3fb.png",
- "sheet_x": 39,
- "sheet_y": 52,
- "added_in": "9.0",
+ "unified": "1F9D6-1F3FB-200D-2642-FE0F",
+ "non_qualified": "1F9D6-1F3FB-200D-2642",
+ "image": "1f9d6-1f3fb-200d-2642-fe0f.png",
+ "sheet_x": 50,
+ "sheet_y": 56,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": false
+ "obsoletes": "1F9D6-1F3FB"
},
"1F3FC": {
- "unified": "1F936-1F3FC",
- "non_qualified": null,
- "image": "1f936-1f3fc.png",
- "sheet_x": 40,
- "sheet_y": 0,
- "added_in": "9.0",
+ "unified": "1F9D6-1F3FC-200D-2642-FE0F",
+ "non_qualified": "1F9D6-1F3FC-200D-2642",
+ "image": "1f9d6-1f3fc-200d-2642-fe0f.png",
+ "sheet_x": 50,
+ "sheet_y": 57,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": false
+ "obsoletes": "1F9D6-1F3FC"
},
"1F3FD": {
- "unified": "1F936-1F3FD",
- "non_qualified": null,
- "image": "1f936-1f3fd.png",
- "sheet_x": 40,
- "sheet_y": 1,
- "added_in": "9.0",
+ "unified": "1F9D6-1F3FD-200D-2642-FE0F",
+ "non_qualified": "1F9D6-1F3FD-200D-2642",
+ "image": "1f9d6-1f3fd-200d-2642-fe0f.png",
+ "sheet_x": 50,
+ "sheet_y": 58,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": false
+ "obsoletes": "1F9D6-1F3FD"
},
"1F3FE": {
- "unified": "1F936-1F3FE",
- "non_qualified": null,
- "image": "1f936-1f3fe.png",
- "sheet_x": 40,
- "sheet_y": 2,
- "added_in": "9.0",
+ "unified": "1F9D6-1F3FE-200D-2642-FE0F",
+ "non_qualified": "1F9D6-1F3FE-200D-2642",
+ "image": "1f9d6-1f3fe-200d-2642-fe0f.png",
+ "sheet_x": 50,
+ "sheet_y": 59,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": false
+ "obsoletes": "1F9D6-1F3FE"
},
"1F3FF": {
- "unified": "1F936-1F3FF",
- "non_qualified": null,
- "image": "1f936-1f3ff.png",
- "sheet_x": 40,
- "sheet_y": 3,
- "added_in": "9.0",
+ "unified": "1F9D6-1F3FF-200D-2642-FE0F",
+ "non_qualified": "1F9D6-1F3FF-200D-2642",
+ "image": "1f9d6-1f3ff-200d-2642-fe0f.png",
+ "sheet_x": 50,
+ "sheet_y": 60,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": false
+ "obsoletes": "1F9D6-1F3FF"
}
- }
+ },
+ "obsoletes": "1F9D6"
},
{
- "name": null,
- "unified": "1F937-200D-2640-FE0F",
- "non_qualified": "1F937-200D-2640",
+ "name": "PERSON IN STEAMY ROOM",
+ "unified": "1F9D6",
+ "non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f937-200d-2640-fe0f.png",
- "sheet_x": 40,
- "sheet_y": 4,
- "short_name": "woman-shrugging",
- "short_names": ["woman-shrugging"],
+ "image": "1f9d6.png",
+ "sheet_x": 51,
+ "sheet_y": 0,
+ "short_name": "person_in_steamy_room",
+ "short_names": ["person_in_steamy_room"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 241,
- "added_in": "9.0",
+ "category": "People & Body",
+ "subcategory": "person-activity",
+ "sort_order": 433,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": false,
"skin_variations": {
"1F3FB": {
- "unified": "1F937-1F3FB-200D-2640-FE0F",
- "non_qualified": "1F937-1F3FB-200D-2640",
- "image": "1f937-1f3fb-200d-2640-fe0f.png",
- "sheet_x": 40,
- "sheet_y": 5,
- "added_in": "9.0",
+ "unified": "1F9D6-1F3FB",
+ "non_qualified": null,
+ "image": "1f9d6-1f3fb.png",
+ "sheet_x": 51,
+ "sheet_y": 1,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true,
+ "obsoleted_by": "1F9D6-1F3FB-200D-2642-FE0F"
},
"1F3FC": {
- "unified": "1F937-1F3FC-200D-2640-FE0F",
- "non_qualified": "1F937-1F3FC-200D-2640",
- "image": "1f937-1f3fc-200d-2640-fe0f.png",
- "sheet_x": 40,
- "sheet_y": 6,
- "added_in": "9.0",
+ "unified": "1F9D6-1F3FC",
+ "non_qualified": null,
+ "image": "1f9d6-1f3fc.png",
+ "sheet_x": 51,
+ "sheet_y": 2,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true,
+ "obsoleted_by": "1F9D6-1F3FC-200D-2642-FE0F"
},
"1F3FD": {
- "unified": "1F937-1F3FD-200D-2640-FE0F",
- "non_qualified": "1F937-1F3FD-200D-2640",
- "image": "1f937-1f3fd-200d-2640-fe0f.png",
- "sheet_x": 40,
- "sheet_y": 7,
- "added_in": "9.0",
+ "unified": "1F9D6-1F3FD",
+ "non_qualified": null,
+ "image": "1f9d6-1f3fd.png",
+ "sheet_x": 51,
+ "sheet_y": 3,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true,
+ "obsoleted_by": "1F9D6-1F3FD-200D-2642-FE0F"
},
"1F3FE": {
- "unified": "1F937-1F3FE-200D-2640-FE0F",
- "non_qualified": "1F937-1F3FE-200D-2640",
- "image": "1f937-1f3fe-200d-2640-fe0f.png",
- "sheet_x": 40,
- "sheet_y": 8,
- "added_in": "9.0",
+ "unified": "1F9D6-1F3FE",
+ "non_qualified": null,
+ "image": "1f9d6-1f3fe.png",
+ "sheet_x": 51,
+ "sheet_y": 4,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true,
+ "obsoleted_by": "1F9D6-1F3FE-200D-2642-FE0F"
},
"1F3FF": {
- "unified": "1F937-1F3FF-200D-2640-FE0F",
- "non_qualified": "1F937-1F3FF-200D-2640",
- "image": "1f937-1f3ff-200d-2640-fe0f.png",
- "sheet_x": 40,
- "sheet_y": 9,
- "added_in": "9.0",
+ "unified": "1F9D6-1F3FF",
+ "non_qualified": null,
+ "image": "1f9d6-1f3ff.png",
+ "sheet_x": 51,
+ "sheet_y": 5,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true,
+ "obsoleted_by": "1F9D6-1F3FF-200D-2642-FE0F"
}
- }
+ },
+ "obsoleted_by": "1F9D6-200D-2642-FE0F"
},
{
- "name": null,
- "unified": "1F937-200D-2642-FE0F",
- "non_qualified": "1F937-200D-2642",
+ "name": "WOMAN CLIMBING",
+ "unified": "1F9D7-200D-2640-FE0F",
+ "non_qualified": "1F9D7-200D-2640",
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f937-200d-2642-fe0f.png",
- "sheet_x": 40,
- "sheet_y": 10,
- "short_name": "man-shrugging",
- "short_names": ["man-shrugging"],
+ "image": "1f9d7-200d-2640-fe0f.png",
+ "sheet_x": 51,
+ "sheet_y": 6,
+ "short_name": "woman_climbing",
+ "short_names": ["woman_climbing"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 240,
- "added_in": "9.0",
+ "category": "People & Body",
+ "subcategory": "person-activity",
+ "sort_order": 438,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": false,
"skin_variations": {
"1F3FB": {
- "unified": "1F937-1F3FB-200D-2642-FE0F",
- "non_qualified": "1F937-1F3FB-200D-2642",
- "image": "1f937-1f3fb-200d-2642-fe0f.png",
- "sheet_x": 40,
- "sheet_y": 11,
- "added_in": "9.0",
+ "unified": "1F9D7-1F3FB-200D-2640-FE0F",
+ "non_qualified": "1F9D7-1F3FB-200D-2640",
+ "image": "1f9d7-1f3fb-200d-2640-fe0f.png",
+ "sheet_x": 51,
+ "sheet_y": 7,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true,
+ "obsoletes": "1F9D7-1F3FB"
},
"1F3FC": {
- "unified": "1F937-1F3FC-200D-2642-FE0F",
- "non_qualified": "1F937-1F3FC-200D-2642",
- "image": "1f937-1f3fc-200d-2642-fe0f.png",
- "sheet_x": 40,
- "sheet_y": 12,
- "added_in": "9.0",
+ "unified": "1F9D7-1F3FC-200D-2640-FE0F",
+ "non_qualified": "1F9D7-1F3FC-200D-2640",
+ "image": "1f9d7-1f3fc-200d-2640-fe0f.png",
+ "sheet_x": 51,
+ "sheet_y": 8,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true,
+ "obsoletes": "1F9D7-1F3FC"
},
"1F3FD": {
- "unified": "1F937-1F3FD-200D-2642-FE0F",
- "non_qualified": "1F937-1F3FD-200D-2642",
- "image": "1f937-1f3fd-200d-2642-fe0f.png",
- "sheet_x": 40,
- "sheet_y": 13,
- "added_in": "9.0",
+ "unified": "1F9D7-1F3FD-200D-2640-FE0F",
+ "non_qualified": "1F9D7-1F3FD-200D-2640",
+ "image": "1f9d7-1f3fd-200d-2640-fe0f.png",
+ "sheet_x": 51,
+ "sheet_y": 9,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true,
+ "obsoletes": "1F9D7-1F3FD"
},
"1F3FE": {
- "unified": "1F937-1F3FE-200D-2642-FE0F",
- "non_qualified": "1F937-1F3FE-200D-2642",
- "image": "1f937-1f3fe-200d-2642-fe0f.png",
- "sheet_x": 40,
- "sheet_y": 14,
- "added_in": "9.0",
+ "unified": "1F9D7-1F3FE-200D-2640-FE0F",
+ "non_qualified": "1F9D7-1F3FE-200D-2640",
+ "image": "1f9d7-1f3fe-200d-2640-fe0f.png",
+ "sheet_x": 51,
+ "sheet_y": 10,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true,
+ "obsoletes": "1F9D7-1F3FE"
},
"1F3FF": {
- "unified": "1F937-1F3FF-200D-2642-FE0F",
- "non_qualified": "1F937-1F3FF-200D-2642",
- "image": "1f937-1f3ff-200d-2642-fe0f.png",
- "sheet_x": 40,
- "sheet_y": 15,
- "added_in": "9.0",
+ "unified": "1F9D7-1F3FF-200D-2640-FE0F",
+ "non_qualified": "1F9D7-1F3FF-200D-2640",
+ "image": "1f9d7-1f3ff-200d-2640-fe0f.png",
+ "sheet_x": 51,
+ "sheet_y": 11,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true,
+ "obsoletes": "1F9D7-1F3FF"
}
- }
+ },
+ "obsoletes": "1F9D7"
},
{
- "name": "SHRUG",
- "unified": "1F937",
- "non_qualified": null,
+ "name": "MAN CLIMBING",
+ "unified": "1F9D7-200D-2642-FE0F",
+ "non_qualified": "1F9D7-200D-2642",
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f937.png",
- "sheet_x": 40,
- "sheet_y": 16,
- "short_name": "shrug",
- "short_names": ["shrug"],
+ "image": "1f9d7-200d-2642-fe0f.png",
+ "sheet_x": 51,
+ "sheet_y": 12,
+ "short_name": "man_climbing",
+ "short_names": ["man_climbing"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 239,
- "added_in": "9.0",
+ "category": "People & Body",
+ "subcategory": "person-activity",
+ "sort_order": 437,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false,
+ "has_img_facebook": true,
"skin_variations": {
"1F3FB": {
- "unified": "1F937-1F3FB",
- "non_qualified": null,
- "image": "1f937-1f3fb.png",
- "sheet_x": 40,
- "sheet_y": 17,
- "added_in": "9.0",
+ "unified": "1F9D7-1F3FB-200D-2642-FE0F",
+ "non_qualified": "1F9D7-1F3FB-200D-2642",
+ "image": "1f9d7-1f3fb-200d-2642-fe0f.png",
+ "sheet_x": 51,
+ "sheet_y": 13,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FC": {
- "unified": "1F937-1F3FC",
- "non_qualified": null,
- "image": "1f937-1f3fc.png",
- "sheet_x": 40,
- "sheet_y": 18,
- "added_in": "9.0",
+ "unified": "1F9D7-1F3FC-200D-2642-FE0F",
+ "non_qualified": "1F9D7-1F3FC-200D-2642",
+ "image": "1f9d7-1f3fc-200d-2642-fe0f.png",
+ "sheet_x": 51,
+ "sheet_y": 14,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FD": {
- "unified": "1F937-1F3FD",
- "non_qualified": null,
- "image": "1f937-1f3fd.png",
- "sheet_x": 40,
- "sheet_y": 19,
- "added_in": "9.0",
+ "unified": "1F9D7-1F3FD-200D-2642-FE0F",
+ "non_qualified": "1F9D7-1F3FD-200D-2642",
+ "image": "1f9d7-1f3fd-200d-2642-fe0f.png",
+ "sheet_x": 51,
+ "sheet_y": 15,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FE": {
- "unified": "1F937-1F3FE",
- "non_qualified": null,
- "image": "1f937-1f3fe.png",
- "sheet_x": 40,
- "sheet_y": 20,
- "added_in": "9.0",
+ "unified": "1F9D7-1F3FE-200D-2642-FE0F",
+ "non_qualified": "1F9D7-1F3FE-200D-2642",
+ "image": "1f9d7-1f3fe-200d-2642-fe0f.png",
+ "sheet_x": 51,
+ "sheet_y": 16,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FF": {
- "unified": "1F937-1F3FF",
- "non_qualified": null,
- "image": "1f937-1f3ff.png",
- "sheet_x": 40,
- "sheet_y": 21,
- "added_in": "9.0",
+ "unified": "1F9D7-1F3FF-200D-2642-FE0F",
+ "non_qualified": "1F9D7-1F3FF-200D-2642",
+ "image": "1f9d7-1f3ff-200d-2642-fe0f.png",
+ "sheet_x": 51,
+ "sheet_y": 17,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
}
}
},
{
- "name": null,
- "unified": "1F938-200D-2640-FE0F",
- "non_qualified": "1F938-200D-2640",
+ "name": "PERSON CLIMBING",
+ "unified": "1F9D7",
+ "non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f938-200d-2640-fe0f.png",
- "sheet_x": 40,
- "sheet_y": 22,
- "short_name": "woman-cartwheeling",
- "short_names": ["woman-cartwheeling"],
+ "image": "1f9d7.png",
+ "sheet_x": 51,
+ "sheet_y": 18,
+ "short_name": "person_climbing",
+ "short_names": ["person_climbing"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 306,
- "added_in": "9.0",
+ "category": "People & Body",
+ "subcategory": "person-activity",
+ "sort_order": 436,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": false,
"skin_variations": {
"1F3FB": {
- "unified": "1F938-1F3FB-200D-2640-FE0F",
- "non_qualified": "1F938-1F3FB-200D-2640",
- "image": "1f938-1f3fb-200d-2640-fe0f.png",
- "sheet_x": 40,
- "sheet_y": 23,
- "added_in": "9.0",
+ "unified": "1F9D7-1F3FB",
+ "non_qualified": null,
+ "image": "1f9d7-1f3fb.png",
+ "sheet_x": 51,
+ "sheet_y": 19,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true,
+ "obsoleted_by": "1F9D7-1F3FB-200D-2640-FE0F"
},
"1F3FC": {
- "unified": "1F938-1F3FC-200D-2640-FE0F",
- "non_qualified": "1F938-1F3FC-200D-2640",
- "image": "1f938-1f3fc-200d-2640-fe0f.png",
- "sheet_x": 40,
- "sheet_y": 24,
- "added_in": "9.0",
+ "unified": "1F9D7-1F3FC",
+ "non_qualified": null,
+ "image": "1f9d7-1f3fc.png",
+ "sheet_x": 51,
+ "sheet_y": 20,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true,
+ "obsoleted_by": "1F9D7-1F3FC-200D-2640-FE0F"
},
"1F3FD": {
- "unified": "1F938-1F3FD-200D-2640-FE0F",
- "non_qualified": "1F938-1F3FD-200D-2640",
- "image": "1f938-1f3fd-200d-2640-fe0f.png",
- "sheet_x": 40,
- "sheet_y": 25,
- "added_in": "9.0",
+ "unified": "1F9D7-1F3FD",
+ "non_qualified": null,
+ "image": "1f9d7-1f3fd.png",
+ "sheet_x": 51,
+ "sheet_y": 21,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true,
+ "obsoleted_by": "1F9D7-1F3FD-200D-2640-FE0F"
},
"1F3FE": {
- "unified": "1F938-1F3FE-200D-2640-FE0F",
- "non_qualified": "1F938-1F3FE-200D-2640",
- "image": "1f938-1f3fe-200d-2640-fe0f.png",
- "sheet_x": 40,
- "sheet_y": 26,
- "added_in": "9.0",
+ "unified": "1F9D7-1F3FE",
+ "non_qualified": null,
+ "image": "1f9d7-1f3fe.png",
+ "sheet_x": 51,
+ "sheet_y": 22,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true,
+ "obsoleted_by": "1F9D7-1F3FE-200D-2640-FE0F"
},
"1F3FF": {
- "unified": "1F938-1F3FF-200D-2640-FE0F",
- "non_qualified": "1F938-1F3FF-200D-2640",
- "image": "1f938-1f3ff-200d-2640-fe0f.png",
- "sheet_x": 40,
- "sheet_y": 27,
- "added_in": "9.0",
+ "unified": "1F9D7-1F3FF",
+ "non_qualified": null,
+ "image": "1f9d7-1f3ff.png",
+ "sheet_x": 51,
+ "sheet_y": 23,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true,
+ "obsoleted_by": "1F9D7-1F3FF-200D-2640-FE0F"
}
- }
+ },
+ "obsoleted_by": "1F9D7-200D-2640-FE0F"
},
{
- "name": null,
- "unified": "1F938-200D-2642-FE0F",
- "non_qualified": "1F938-200D-2642",
+ "name": "WOMAN IN LOTUS POSITION",
+ "unified": "1F9D8-200D-2640-FE0F",
+ "non_qualified": "1F9D8-200D-2640",
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f938-200d-2642-fe0f.png",
- "sheet_x": 40,
- "sheet_y": 28,
- "short_name": "man-cartwheeling",
- "short_names": ["man-cartwheeling"],
+ "image": "1f9d8-200d-2640-fe0f.png",
+ "sheet_x": 51,
+ "sheet_y": 24,
+ "short_name": "woman_in_lotus_position",
+ "short_names": ["woman_in_lotus_position"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 305,
- "added_in": "9.0",
+ "category": "People & Body",
+ "subcategory": "person-resting",
+ "sort_order": 484,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": false,
"skin_variations": {
"1F3FB": {
- "unified": "1F938-1F3FB-200D-2642-FE0F",
- "non_qualified": "1F938-1F3FB-200D-2642",
- "image": "1f938-1f3fb-200d-2642-fe0f.png",
- "sheet_x": 40,
- "sheet_y": 29,
- "added_in": "9.0",
+ "unified": "1F9D8-1F3FB-200D-2640-FE0F",
+ "non_qualified": "1F9D8-1F3FB-200D-2640",
+ "image": "1f9d8-1f3fb-200d-2640-fe0f.png",
+ "sheet_x": 51,
+ "sheet_y": 25,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true,
+ "obsoletes": "1F9D8-1F3FB"
},
"1F3FC": {
- "unified": "1F938-1F3FC-200D-2642-FE0F",
- "non_qualified": "1F938-1F3FC-200D-2642",
- "image": "1f938-1f3fc-200d-2642-fe0f.png",
- "sheet_x": 40,
- "sheet_y": 30,
- "added_in": "9.0",
+ "unified": "1F9D8-1F3FC-200D-2640-FE0F",
+ "non_qualified": "1F9D8-1F3FC-200D-2640",
+ "image": "1f9d8-1f3fc-200d-2640-fe0f.png",
+ "sheet_x": 51,
+ "sheet_y": 26,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true,
+ "obsoletes": "1F9D8-1F3FC"
},
"1F3FD": {
- "unified": "1F938-1F3FD-200D-2642-FE0F",
- "non_qualified": "1F938-1F3FD-200D-2642",
- "image": "1f938-1f3fd-200d-2642-fe0f.png",
- "sheet_x": 40,
- "sheet_y": 31,
- "added_in": "9.0",
+ "unified": "1F9D8-1F3FD-200D-2640-FE0F",
+ "non_qualified": "1F9D8-1F3FD-200D-2640",
+ "image": "1f9d8-1f3fd-200d-2640-fe0f.png",
+ "sheet_x": 51,
+ "sheet_y": 27,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true,
+ "obsoletes": "1F9D8-1F3FD"
},
"1F3FE": {
- "unified": "1F938-1F3FE-200D-2642-FE0F",
- "non_qualified": "1F938-1F3FE-200D-2642",
- "image": "1f938-1f3fe-200d-2642-fe0f.png",
- "sheet_x": 40,
- "sheet_y": 32,
- "added_in": "9.0",
+ "unified": "1F9D8-1F3FE-200D-2640-FE0F",
+ "non_qualified": "1F9D8-1F3FE-200D-2640",
+ "image": "1f9d8-1f3fe-200d-2640-fe0f.png",
+ "sheet_x": 51,
+ "sheet_y": 28,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true,
+ "obsoletes": "1F9D8-1F3FE"
},
"1F3FF": {
- "unified": "1F938-1F3FF-200D-2642-FE0F",
- "non_qualified": "1F938-1F3FF-200D-2642",
- "image": "1f938-1f3ff-200d-2642-fe0f.png",
- "sheet_x": 40,
- "sheet_y": 33,
- "added_in": "9.0",
+ "unified": "1F9D8-1F3FF-200D-2640-FE0F",
+ "non_qualified": "1F9D8-1F3FF-200D-2640",
+ "image": "1f9d8-1f3ff-200d-2640-fe0f.png",
+ "sheet_x": 51,
+ "sheet_y": 29,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true,
+ "obsoletes": "1F9D8-1F3FF"
}
- }
+ },
+ "obsoletes": "1F9D8"
},
{
- "name": "PERSON DOING CARTWHEEL",
- "unified": "1F938",
- "non_qualified": null,
+ "name": "MAN IN LOTUS POSITION",
+ "unified": "1F9D8-200D-2642-FE0F",
+ "non_qualified": "1F9D8-200D-2642",
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f938.png",
- "sheet_x": 40,
- "sheet_y": 34,
- "short_name": "person_doing_cartwheel",
- "short_names": ["person_doing_cartwheel"],
+ "image": "1f9d8-200d-2642-fe0f.png",
+ "sheet_x": 51,
+ "sheet_y": 30,
+ "short_name": "man_in_lotus_position",
+ "short_names": ["man_in_lotus_position"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 304,
- "added_in": "9.0",
+ "category": "People & Body",
+ "subcategory": "person-resting",
+ "sort_order": 483,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false,
+ "has_img_facebook": true,
"skin_variations": {
"1F3FB": {
- "unified": "1F938-1F3FB",
- "non_qualified": null,
- "image": "1f938-1f3fb.png",
- "sheet_x": 40,
- "sheet_y": 35,
- "added_in": "9.0",
+ "unified": "1F9D8-1F3FB-200D-2642-FE0F",
+ "non_qualified": "1F9D8-1F3FB-200D-2642",
+ "image": "1f9d8-1f3fb-200d-2642-fe0f.png",
+ "sheet_x": 51,
+ "sheet_y": 31,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FC": {
- "unified": "1F938-1F3FC",
- "non_qualified": null,
- "image": "1f938-1f3fc.png",
- "sheet_x": 40,
- "sheet_y": 36,
- "added_in": "9.0",
+ "unified": "1F9D8-1F3FC-200D-2642-FE0F",
+ "non_qualified": "1F9D8-1F3FC-200D-2642",
+ "image": "1f9d8-1f3fc-200d-2642-fe0f.png",
+ "sheet_x": 51,
+ "sheet_y": 32,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FD": {
- "unified": "1F938-1F3FD",
- "non_qualified": null,
- "image": "1f938-1f3fd.png",
- "sheet_x": 40,
- "sheet_y": 37,
- "added_in": "9.0",
+ "unified": "1F9D8-1F3FD-200D-2642-FE0F",
+ "non_qualified": "1F9D8-1F3FD-200D-2642",
+ "image": "1f9d8-1f3fd-200d-2642-fe0f.png",
+ "sheet_x": 51,
+ "sheet_y": 33,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FE": {
- "unified": "1F938-1F3FE",
- "non_qualified": null,
- "image": "1f938-1f3fe.png",
- "sheet_x": 40,
- "sheet_y": 38,
- "added_in": "9.0",
+ "unified": "1F9D8-1F3FE-200D-2642-FE0F",
+ "non_qualified": "1F9D8-1F3FE-200D-2642",
+ "image": "1f9d8-1f3fe-200d-2642-fe0f.png",
+ "sheet_x": 51,
+ "sheet_y": 34,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FF": {
- "unified": "1F938-1F3FF",
- "non_qualified": null,
- "image": "1f938-1f3ff.png",
- "sheet_x": 40,
- "sheet_y": 39,
- "added_in": "9.0",
+ "unified": "1F9D8-1F3FF-200D-2642-FE0F",
+ "non_qualified": "1F9D8-1F3FF-200D-2642",
+ "image": "1f9d8-1f3ff-200d-2642-fe0f.png",
+ "sheet_x": 51,
+ "sheet_y": 35,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
}
}
},
{
- "name": null,
- "unified": "1F939-200D-2640-FE0F",
- "non_qualified": "1F939-200D-2640",
+ "name": "PERSON IN LOTUS POSITION",
+ "unified": "1F9D8",
+ "non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f939-200d-2640-fe0f.png",
- "sheet_x": 40,
- "sheet_y": 40,
- "short_name": "woman-juggling",
- "short_names": ["woman-juggling"],
+ "image": "1f9d8.png",
+ "sheet_x": 51,
+ "sheet_y": 36,
+ "short_name": "person_in_lotus_position",
+ "short_names": ["person_in_lotus_position"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 318,
- "added_in": "9.0",
+ "category": "People & Body",
+ "subcategory": "person-resting",
+ "sort_order": 482,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false,
+ "has_img_facebook": true,
"skin_variations": {
"1F3FB": {
- "unified": "1F939-1F3FB-200D-2640-FE0F",
- "non_qualified": "1F939-1F3FB-200D-2640",
- "image": "1f939-1f3fb-200d-2640-fe0f.png",
- "sheet_x": 40,
- "sheet_y": 41,
- "added_in": "9.0",
+ "unified": "1F9D8-1F3FB",
+ "non_qualified": null,
+ "image": "1f9d8-1f3fb.png",
+ "sheet_x": 51,
+ "sheet_y": 37,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true,
+ "obsoleted_by": "1F9D8-1F3FB-200D-2640-FE0F"
},
"1F3FC": {
- "unified": "1F939-1F3FC-200D-2640-FE0F",
- "non_qualified": "1F939-1F3FC-200D-2640",
- "image": "1f939-1f3fc-200d-2640-fe0f.png",
- "sheet_x": 40,
- "sheet_y": 42,
- "added_in": "9.0",
+ "unified": "1F9D8-1F3FC",
+ "non_qualified": null,
+ "image": "1f9d8-1f3fc.png",
+ "sheet_x": 51,
+ "sheet_y": 38,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true,
+ "obsoleted_by": "1F9D8-1F3FC-200D-2640-FE0F"
},
"1F3FD": {
- "unified": "1F939-1F3FD-200D-2640-FE0F",
- "non_qualified": "1F939-1F3FD-200D-2640",
- "image": "1f939-1f3fd-200d-2640-fe0f.png",
- "sheet_x": 40,
- "sheet_y": 43,
- "added_in": "9.0",
+ "unified": "1F9D8-1F3FD",
+ "non_qualified": null,
+ "image": "1f9d8-1f3fd.png",
+ "sheet_x": 51,
+ "sheet_y": 39,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true,
+ "obsoleted_by": "1F9D8-1F3FD-200D-2640-FE0F"
},
"1F3FE": {
- "unified": "1F939-1F3FE-200D-2640-FE0F",
- "non_qualified": "1F939-1F3FE-200D-2640",
- "image": "1f939-1f3fe-200d-2640-fe0f.png",
- "sheet_x": 40,
- "sheet_y": 44,
- "added_in": "9.0",
+ "unified": "1F9D8-1F3FE",
+ "non_qualified": null,
+ "image": "1f9d8-1f3fe.png",
+ "sheet_x": 51,
+ "sheet_y": 40,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true,
+ "obsoleted_by": "1F9D8-1F3FE-200D-2640-FE0F"
},
"1F3FF": {
- "unified": "1F939-1F3FF-200D-2640-FE0F",
- "non_qualified": "1F939-1F3FF-200D-2640",
- "image": "1f939-1f3ff-200d-2640-fe0f.png",
- "sheet_x": 40,
- "sheet_y": 45,
- "added_in": "9.0",
+ "unified": "1F9D8-1F3FF",
+ "non_qualified": null,
+ "image": "1f9d8-1f3ff.png",
+ "sheet_x": 51,
+ "sheet_y": 41,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true,
+ "obsoleted_by": "1F9D8-1F3FF-200D-2640-FE0F"
}
- }
+ },
+ "obsoleted_by": "1F9D8-200D-2640-FE0F"
},
{
- "name": null,
- "unified": "1F939-200D-2642-FE0F",
- "non_qualified": "1F939-200D-2642",
+ "name": "WOMAN MAGE",
+ "unified": "1F9D9-200D-2640-FE0F",
+ "non_qualified": "1F9D9-200D-2640",
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f939-200d-2642-fe0f.png",
- "sheet_x": 40,
- "sheet_y": 46,
- "short_name": "man-juggling",
- "short_names": ["man-juggling"],
+ "image": "1f9d9-200d-2640-fe0f.png",
+ "sheet_x": 51,
+ "sheet_y": 42,
+ "short_name": "female_mage",
+ "short_names": ["female_mage"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 317,
- "added_in": "9.0",
+ "category": "People & Body",
+ "subcategory": "person-fantasy",
+ "sort_order": 380,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false,
+ "has_img_facebook": true,
"skin_variations": {
"1F3FB": {
- "unified": "1F939-1F3FB-200D-2642-FE0F",
- "non_qualified": "1F939-1F3FB-200D-2642",
- "image": "1f939-1f3fb-200d-2642-fe0f.png",
- "sheet_x": 40,
- "sheet_y": 47,
- "added_in": "9.0",
+ "unified": "1F9D9-1F3FB-200D-2640-FE0F",
+ "non_qualified": "1F9D9-1F3FB-200D-2640",
+ "image": "1f9d9-1f3fb-200d-2640-fe0f.png",
+ "sheet_x": 51,
+ "sheet_y": 43,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true,
+ "obsoletes": "1F9D9-1F3FB"
},
"1F3FC": {
- "unified": "1F939-1F3FC-200D-2642-FE0F",
- "non_qualified": "1F939-1F3FC-200D-2642",
- "image": "1f939-1f3fc-200d-2642-fe0f.png",
- "sheet_x": 40,
- "sheet_y": 48,
- "added_in": "9.0",
+ "unified": "1F9D9-1F3FC-200D-2640-FE0F",
+ "non_qualified": "1F9D9-1F3FC-200D-2640",
+ "image": "1f9d9-1f3fc-200d-2640-fe0f.png",
+ "sheet_x": 51,
+ "sheet_y": 44,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true,
+ "obsoletes": "1F9D9-1F3FC"
},
"1F3FD": {
- "unified": "1F939-1F3FD-200D-2642-FE0F",
- "non_qualified": "1F939-1F3FD-200D-2642",
- "image": "1f939-1f3fd-200d-2642-fe0f.png",
- "sheet_x": 40,
- "sheet_y": 49,
- "added_in": "9.0",
+ "unified": "1F9D9-1F3FD-200D-2640-FE0F",
+ "non_qualified": "1F9D9-1F3FD-200D-2640",
+ "image": "1f9d9-1f3fd-200d-2640-fe0f.png",
+ "sheet_x": 51,
+ "sheet_y": 45,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true,
+ "obsoletes": "1F9D9-1F3FD"
},
"1F3FE": {
- "unified": "1F939-1F3FE-200D-2642-FE0F",
- "non_qualified": "1F939-1F3FE-200D-2642",
- "image": "1f939-1f3fe-200d-2642-fe0f.png",
- "sheet_x": 40,
- "sheet_y": 50,
- "added_in": "9.0",
+ "unified": "1F9D9-1F3FE-200D-2640-FE0F",
+ "non_qualified": "1F9D9-1F3FE-200D-2640",
+ "image": "1f9d9-1f3fe-200d-2640-fe0f.png",
+ "sheet_x": 51,
+ "sheet_y": 46,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true,
+ "obsoletes": "1F9D9-1F3FE"
},
"1F3FF": {
- "unified": "1F939-1F3FF-200D-2642-FE0F",
- "non_qualified": "1F939-1F3FF-200D-2642",
- "image": "1f939-1f3ff-200d-2642-fe0f.png",
- "sheet_x": 40,
- "sheet_y": 51,
- "added_in": "9.0",
+ "unified": "1F9D9-1F3FF-200D-2640-FE0F",
+ "non_qualified": "1F9D9-1F3FF-200D-2640",
+ "image": "1f9d9-1f3ff-200d-2640-fe0f.png",
+ "sheet_x": 51,
+ "sheet_y": 47,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true,
+ "obsoletes": "1F9D9-1F3FF"
}
- }
+ },
+ "obsoletes": "1F9D9"
},
{
- "name": "JUGGLING",
- "unified": "1F939",
- "non_qualified": null,
+ "name": "MAN MAGE",
+ "unified": "1F9D9-200D-2642-FE0F",
+ "non_qualified": "1F9D9-200D-2642",
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f939.png",
- "sheet_x": 40,
- "sheet_y": 52,
- "short_name": "juggling",
- "short_names": ["juggling"],
+ "image": "1f9d9-200d-2642-fe0f.png",
+ "sheet_x": 51,
+ "sheet_y": 48,
+ "short_name": "male_mage",
+ "short_names": ["male_mage"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 316,
- "added_in": "9.0",
+ "category": "People & Body",
+ "subcategory": "person-fantasy",
+ "sort_order": 379,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": false,
"skin_variations": {
"1F3FB": {
- "unified": "1F939-1F3FB",
- "non_qualified": null,
- "image": "1f939-1f3fb.png",
- "sheet_x": 41,
- "sheet_y": 0,
- "added_in": "9.0",
+ "unified": "1F9D9-1F3FB-200D-2642-FE0F",
+ "non_qualified": "1F9D9-1F3FB-200D-2642",
+ "image": "1f9d9-1f3fb-200d-2642-fe0f.png",
+ "sheet_x": 51,
+ "sheet_y": 49,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FC": {
- "unified": "1F939-1F3FC",
- "non_qualified": null,
- "image": "1f939-1f3fc.png",
- "sheet_x": 41,
- "sheet_y": 1,
- "added_in": "9.0",
+ "unified": "1F9D9-1F3FC-200D-2642-FE0F",
+ "non_qualified": "1F9D9-1F3FC-200D-2642",
+ "image": "1f9d9-1f3fc-200d-2642-fe0f.png",
+ "sheet_x": 51,
+ "sheet_y": 50,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FD": {
- "unified": "1F939-1F3FD",
- "non_qualified": null,
- "image": "1f939-1f3fd.png",
- "sheet_x": 41,
- "sheet_y": 2,
- "added_in": "9.0",
+ "unified": "1F9D9-1F3FD-200D-2642-FE0F",
+ "non_qualified": "1F9D9-1F3FD-200D-2642",
+ "image": "1f9d9-1f3fd-200d-2642-fe0f.png",
+ "sheet_x": 51,
+ "sheet_y": 51,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FE": {
- "unified": "1F939-1F3FE",
- "non_qualified": null,
- "image": "1f939-1f3fe.png",
- "sheet_x": 41,
- "sheet_y": 3,
- "added_in": "9.0",
+ "unified": "1F9D9-1F3FE-200D-2642-FE0F",
+ "non_qualified": "1F9D9-1F3FE-200D-2642",
+ "image": "1f9d9-1f3fe-200d-2642-fe0f.png",
+ "sheet_x": 51,
+ "sheet_y": 52,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FF": {
- "unified": "1F939-1F3FF",
- "non_qualified": null,
- "image": "1f939-1f3ff.png",
- "sheet_x": 41,
- "sheet_y": 4,
- "added_in": "9.0",
+ "unified": "1F9D9-1F3FF-200D-2642-FE0F",
+ "non_qualified": "1F9D9-1F3FF-200D-2642",
+ "image": "1f9d9-1f3ff-200d-2642-fe0f.png",
+ "sheet_x": 51,
+ "sheet_y": 53,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
}
}
},
{
- "name": "FENCER",
- "unified": "1F93A",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f93a.png",
- "sheet_x": 41,
- "sheet_y": 5,
- "short_name": "fencer",
- "short_names": ["fencer"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 274,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- {
- "name": null,
- "unified": "1F93C-200D-2640-FE0F",
- "non_qualified": "1F93C-200D-2640",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f93c-200d-2640-fe0f.png",
- "sheet_x": 41,
- "sheet_y": 6,
- "short_name": "woman-wrestling",
- "short_names": ["woman-wrestling"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 309,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- {
- "name": null,
- "unified": "1F93C-200D-2642-FE0F",
- "non_qualified": "1F93C-200D-2642",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f93c-200d-2642-fe0f.png",
- "sheet_x": 41,
- "sheet_y": 7,
- "short_name": "man-wrestling",
- "short_names": ["man-wrestling"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 308,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- {
- "name": "WRESTLERS",
- "unified": "1F93C",
+ "name": "MAGE",
+ "unified": "1F9D9",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f93c.png",
- "sheet_x": 41,
- "sheet_y": 8,
- "short_name": "wrestlers",
- "short_names": ["wrestlers"],
- "text": null,
- "texts": null,
- "category": "Smileys & People",
- "sort_order": 307,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- {
- "name": null,
- "unified": "1F93D-200D-2640-FE0F",
- "non_qualified": "1F93D-200D-2640",
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f93d-200d-2640-fe0f.png",
- "sheet_x": 41,
- "sheet_y": 9,
- "short_name": "woman-playing-water-polo",
- "short_names": ["woman-playing-water-polo"],
+ "image": "1f9d9.png",
+ "sheet_x": 51,
+ "sheet_y": 54,
+ "short_name": "mage",
+ "short_names": ["mage"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 312,
- "added_in": "9.0",
+ "category": "People & Body",
+ "subcategory": "person-fantasy",
+ "sort_order": 378,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": false,
"skin_variations": {
"1F3FB": {
- "unified": "1F93D-1F3FB-200D-2640-FE0F",
- "non_qualified": "1F93D-1F3FB-200D-2640",
- "image": "1f93d-1f3fb-200d-2640-fe0f.png",
- "sheet_x": 41,
- "sheet_y": 10,
- "added_in": "9.0",
+ "unified": "1F9D9-1F3FB",
+ "non_qualified": null,
+ "image": "1f9d9-1f3fb.png",
+ "sheet_x": 51,
+ "sheet_y": 55,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true,
+ "obsoleted_by": "1F9D9-1F3FB-200D-2640-FE0F"
},
"1F3FC": {
- "unified": "1F93D-1F3FC-200D-2640-FE0F",
- "non_qualified": "1F93D-1F3FC-200D-2640",
- "image": "1f93d-1f3fc-200d-2640-fe0f.png",
- "sheet_x": 41,
- "sheet_y": 11,
- "added_in": "9.0",
+ "unified": "1F9D9-1F3FC",
+ "non_qualified": null,
+ "image": "1f9d9-1f3fc.png",
+ "sheet_x": 51,
+ "sheet_y": 56,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true,
+ "obsoleted_by": "1F9D9-1F3FC-200D-2640-FE0F"
},
"1F3FD": {
- "unified": "1F93D-1F3FD-200D-2640-FE0F",
- "non_qualified": "1F93D-1F3FD-200D-2640",
- "image": "1f93d-1f3fd-200d-2640-fe0f.png",
- "sheet_x": 41,
- "sheet_y": 12,
- "added_in": "9.0",
+ "unified": "1F9D9-1F3FD",
+ "non_qualified": null,
+ "image": "1f9d9-1f3fd.png",
+ "sheet_x": 51,
+ "sheet_y": 57,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true,
+ "obsoleted_by": "1F9D9-1F3FD-200D-2640-FE0F"
},
"1F3FE": {
- "unified": "1F93D-1F3FE-200D-2640-FE0F",
- "non_qualified": "1F93D-1F3FE-200D-2640",
- "image": "1f93d-1f3fe-200d-2640-fe0f.png",
- "sheet_x": 41,
- "sheet_y": 13,
- "added_in": "9.0",
+ "unified": "1F9D9-1F3FE",
+ "non_qualified": null,
+ "image": "1f9d9-1f3fe.png",
+ "sheet_x": 51,
+ "sheet_y": 58,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true,
+ "obsoleted_by": "1F9D9-1F3FE-200D-2640-FE0F"
},
"1F3FF": {
- "unified": "1F93D-1F3FF-200D-2640-FE0F",
- "non_qualified": "1F93D-1F3FF-200D-2640",
- "image": "1f93d-1f3ff-200d-2640-fe0f.png",
- "sheet_x": 41,
- "sheet_y": 14,
- "added_in": "9.0",
+ "unified": "1F9D9-1F3FF",
+ "non_qualified": null,
+ "image": "1f9d9-1f3ff.png",
+ "sheet_x": 51,
+ "sheet_y": 59,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true,
+ "obsoleted_by": "1F9D9-1F3FF-200D-2640-FE0F"
}
- }
+ },
+ "obsoleted_by": "1F9D9-200D-2640-FE0F"
},
{
- "name": null,
- "unified": "1F93D-200D-2642-FE0F",
- "non_qualified": "1F93D-200D-2642",
+ "name": "WOMAN FAIRY",
+ "unified": "1F9DA-200D-2640-FE0F",
+ "non_qualified": "1F9DA-200D-2640",
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f93d-200d-2642-fe0f.png",
- "sheet_x": 41,
- "sheet_y": 15,
- "short_name": "man-playing-water-polo",
- "short_names": ["man-playing-water-polo"],
+ "image": "1f9da-200d-2640-fe0f.png",
+ "sheet_x": 51,
+ "sheet_y": 60,
+ "short_name": "female_fairy",
+ "short_names": ["female_fairy"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 311,
- "added_in": "9.0",
+ "category": "People & Body",
+ "subcategory": "person-fantasy",
+ "sort_order": 383,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": false,
"skin_variations": {
"1F3FB": {
- "unified": "1F93D-1F3FB-200D-2642-FE0F",
- "non_qualified": "1F93D-1F3FB-200D-2642",
- "image": "1f93d-1f3fb-200d-2642-fe0f.png",
- "sheet_x": 41,
- "sheet_y": 16,
- "added_in": "9.0",
+ "unified": "1F9DA-1F3FB-200D-2640-FE0F",
+ "non_qualified": "1F9DA-1F3FB-200D-2640",
+ "image": "1f9da-1f3fb-200d-2640-fe0f.png",
+ "sheet_x": 52,
+ "sheet_y": 0,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true,
+ "obsoletes": "1F9DA-1F3FB"
},
"1F3FC": {
- "unified": "1F93D-1F3FC-200D-2642-FE0F",
- "non_qualified": "1F93D-1F3FC-200D-2642",
- "image": "1f93d-1f3fc-200d-2642-fe0f.png",
- "sheet_x": 41,
- "sheet_y": 17,
- "added_in": "9.0",
+ "unified": "1F9DA-1F3FC-200D-2640-FE0F",
+ "non_qualified": "1F9DA-1F3FC-200D-2640",
+ "image": "1f9da-1f3fc-200d-2640-fe0f.png",
+ "sheet_x": 52,
+ "sheet_y": 1,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true,
+ "obsoletes": "1F9DA-1F3FC"
},
"1F3FD": {
- "unified": "1F93D-1F3FD-200D-2642-FE0F",
- "non_qualified": "1F93D-1F3FD-200D-2642",
- "image": "1f93d-1f3fd-200d-2642-fe0f.png",
- "sheet_x": 41,
- "sheet_y": 18,
- "added_in": "9.0",
+ "unified": "1F9DA-1F3FD-200D-2640-FE0F",
+ "non_qualified": "1F9DA-1F3FD-200D-2640",
+ "image": "1f9da-1f3fd-200d-2640-fe0f.png",
+ "sheet_x": 52,
+ "sheet_y": 2,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true,
+ "obsoletes": "1F9DA-1F3FD"
},
"1F3FE": {
- "unified": "1F93D-1F3FE-200D-2642-FE0F",
- "non_qualified": "1F93D-1F3FE-200D-2642",
- "image": "1f93d-1f3fe-200d-2642-fe0f.png",
- "sheet_x": 41,
- "sheet_y": 19,
- "added_in": "9.0",
+ "unified": "1F9DA-1F3FE-200D-2640-FE0F",
+ "non_qualified": "1F9DA-1F3FE-200D-2640",
+ "image": "1f9da-1f3fe-200d-2640-fe0f.png",
+ "sheet_x": 52,
+ "sheet_y": 3,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true,
+ "obsoletes": "1F9DA-1F3FE"
},
"1F3FF": {
- "unified": "1F93D-1F3FF-200D-2642-FE0F",
- "non_qualified": "1F93D-1F3FF-200D-2642",
- "image": "1f93d-1f3ff-200d-2642-fe0f.png",
- "sheet_x": 41,
- "sheet_y": 20,
- "added_in": "9.0",
+ "unified": "1F9DA-1F3FF-200D-2640-FE0F",
+ "non_qualified": "1F9DA-1F3FF-200D-2640",
+ "image": "1f9da-1f3ff-200d-2640-fe0f.png",
+ "sheet_x": 52,
+ "sheet_y": 4,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true,
+ "obsoletes": "1F9DA-1F3FF"
}
- }
+ },
+ "obsoletes": "1F9DA"
},
{
- "name": "WATER POLO",
- "unified": "1F93D",
- "non_qualified": null,
+ "name": "MAN FAIRY",
+ "unified": "1F9DA-200D-2642-FE0F",
+ "non_qualified": "1F9DA-200D-2642",
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f93d.png",
- "sheet_x": 41,
- "sheet_y": 21,
- "short_name": "water_polo",
- "short_names": ["water_polo"],
+ "image": "1f9da-200d-2642-fe0f.png",
+ "sheet_x": 52,
+ "sheet_y": 5,
+ "short_name": "male_fairy",
+ "short_names": ["male_fairy"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 310,
- "added_in": "9.0",
+ "category": "People & Body",
+ "subcategory": "person-fantasy",
+ "sort_order": 382,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false,
+ "has_img_facebook": true,
"skin_variations": {
"1F3FB": {
- "unified": "1F93D-1F3FB",
- "non_qualified": null,
- "image": "1f93d-1f3fb.png",
- "sheet_x": 41,
- "sheet_y": 22,
- "added_in": "9.0",
+ "unified": "1F9DA-1F3FB-200D-2642-FE0F",
+ "non_qualified": "1F9DA-1F3FB-200D-2642",
+ "image": "1f9da-1f3fb-200d-2642-fe0f.png",
+ "sheet_x": 52,
+ "sheet_y": 6,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FC": {
- "unified": "1F93D-1F3FC",
- "non_qualified": null,
- "image": "1f93d-1f3fc.png",
- "sheet_x": 41,
- "sheet_y": 23,
- "added_in": "9.0",
+ "unified": "1F9DA-1F3FC-200D-2642-FE0F",
+ "non_qualified": "1F9DA-1F3FC-200D-2642",
+ "image": "1f9da-1f3fc-200d-2642-fe0f.png",
+ "sheet_x": 52,
+ "sheet_y": 7,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FD": {
- "unified": "1F93D-1F3FD",
- "non_qualified": null,
- "image": "1f93d-1f3fd.png",
- "sheet_x": 41,
- "sheet_y": 24,
- "added_in": "9.0",
+ "unified": "1F9DA-1F3FD-200D-2642-FE0F",
+ "non_qualified": "1F9DA-1F3FD-200D-2642",
+ "image": "1f9da-1f3fd-200d-2642-fe0f.png",
+ "sheet_x": 52,
+ "sheet_y": 8,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FE": {
- "unified": "1F93D-1F3FE",
- "non_qualified": null,
- "image": "1f93d-1f3fe.png",
- "sheet_x": 41,
- "sheet_y": 25,
- "added_in": "9.0",
+ "unified": "1F9DA-1F3FE-200D-2642-FE0F",
+ "non_qualified": "1F9DA-1F3FE-200D-2642",
+ "image": "1f9da-1f3fe-200d-2642-fe0f.png",
+ "sheet_x": 52,
+ "sheet_y": 9,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FF": {
- "unified": "1F93D-1F3FF",
- "non_qualified": null,
- "image": "1f93d-1f3ff.png",
- "sheet_x": 41,
- "sheet_y": 26,
- "added_in": "9.0",
+ "unified": "1F9DA-1F3FF-200D-2642-FE0F",
+ "non_qualified": "1F9DA-1F3FF-200D-2642",
+ "image": "1f9da-1f3ff-200d-2642-fe0f.png",
+ "sheet_x": 52,
+ "sheet_y": 10,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
}
}
},
{
- "name": null,
- "unified": "1F93E-200D-2640-FE0F",
- "non_qualified": "1F93E-200D-2640",
+ "name": "FAIRY",
+ "unified": "1F9DA",
+ "non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f93e-200d-2640-fe0f.png",
- "sheet_x": 41,
- "sheet_y": 27,
- "short_name": "woman-playing-handball",
- "short_names": ["woman-playing-handball"],
+ "image": "1f9da.png",
+ "sheet_x": 52,
+ "sheet_y": 11,
+ "short_name": "fairy",
+ "short_names": ["fairy"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 315,
- "added_in": "9.0",
+ "category": "People & Body",
+ "subcategory": "person-fantasy",
+ "sort_order": 381,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": false,
"skin_variations": {
"1F3FB": {
- "unified": "1F93E-1F3FB-200D-2640-FE0F",
- "non_qualified": "1F93E-1F3FB-200D-2640",
- "image": "1f93e-1f3fb-200d-2640-fe0f.png",
- "sheet_x": 41,
- "sheet_y": 28,
- "added_in": "9.0",
+ "unified": "1F9DA-1F3FB",
+ "non_qualified": null,
+ "image": "1f9da-1f3fb.png",
+ "sheet_x": 52,
+ "sheet_y": 12,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true,
+ "obsoleted_by": "1F9DA-1F3FB-200D-2640-FE0F"
},
"1F3FC": {
- "unified": "1F93E-1F3FC-200D-2640-FE0F",
- "non_qualified": "1F93E-1F3FC-200D-2640",
- "image": "1f93e-1f3fc-200d-2640-fe0f.png",
- "sheet_x": 41,
- "sheet_y": 29,
- "added_in": "9.0",
+ "unified": "1F9DA-1F3FC",
+ "non_qualified": null,
+ "image": "1f9da-1f3fc.png",
+ "sheet_x": 52,
+ "sheet_y": 13,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true,
+ "obsoleted_by": "1F9DA-1F3FC-200D-2640-FE0F"
},
"1F3FD": {
- "unified": "1F93E-1F3FD-200D-2640-FE0F",
- "non_qualified": "1F93E-1F3FD-200D-2640",
- "image": "1f93e-1f3fd-200d-2640-fe0f.png",
- "sheet_x": 41,
- "sheet_y": 30,
- "added_in": "9.0",
+ "unified": "1F9DA-1F3FD",
+ "non_qualified": null,
+ "image": "1f9da-1f3fd.png",
+ "sheet_x": 52,
+ "sheet_y": 14,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true,
+ "obsoleted_by": "1F9DA-1F3FD-200D-2640-FE0F"
},
"1F3FE": {
- "unified": "1F93E-1F3FE-200D-2640-FE0F",
- "non_qualified": "1F93E-1F3FE-200D-2640",
- "image": "1f93e-1f3fe-200d-2640-fe0f.png",
- "sheet_x": 41,
- "sheet_y": 31,
- "added_in": "9.0",
+ "unified": "1F9DA-1F3FE",
+ "non_qualified": null,
+ "image": "1f9da-1f3fe.png",
+ "sheet_x": 52,
+ "sheet_y": 15,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true,
+ "obsoleted_by": "1F9DA-1F3FE-200D-2640-FE0F"
},
"1F3FF": {
- "unified": "1F93E-1F3FF-200D-2640-FE0F",
- "non_qualified": "1F93E-1F3FF-200D-2640",
- "image": "1f93e-1f3ff-200d-2640-fe0f.png",
- "sheet_x": 41,
- "sheet_y": 32,
- "added_in": "9.0",
+ "unified": "1F9DA-1F3FF",
+ "non_qualified": null,
+ "image": "1f9da-1f3ff.png",
+ "sheet_x": 52,
+ "sheet_y": 16,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true,
+ "obsoleted_by": "1F9DA-1F3FF-200D-2640-FE0F"
}
- }
+ },
+ "obsoleted_by": "1F9DA-200D-2640-FE0F"
},
{
- "name": null,
- "unified": "1F93E-200D-2642-FE0F",
- "non_qualified": "1F93E-200D-2642",
+ "name": "WOMAN VAMPIRE",
+ "unified": "1F9DB-200D-2640-FE0F",
+ "non_qualified": "1F9DB-200D-2640",
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f93e-200d-2642-fe0f.png",
- "sheet_x": 41,
- "sheet_y": 33,
- "short_name": "man-playing-handball",
- "short_names": ["man-playing-handball"],
+ "image": "1f9db-200d-2640-fe0f.png",
+ "sheet_x": 52,
+ "sheet_y": 17,
+ "short_name": "female_vampire",
+ "short_names": ["female_vampire"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 314,
- "added_in": "9.0",
+ "category": "People & Body",
+ "subcategory": "person-fantasy",
+ "sort_order": 386,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": false,
"skin_variations": {
"1F3FB": {
- "unified": "1F93E-1F3FB-200D-2642-FE0F",
- "non_qualified": "1F93E-1F3FB-200D-2642",
- "image": "1f93e-1f3fb-200d-2642-fe0f.png",
- "sheet_x": 41,
- "sheet_y": 34,
- "added_in": "9.0",
+ "unified": "1F9DB-1F3FB-200D-2640-FE0F",
+ "non_qualified": "1F9DB-1F3FB-200D-2640",
+ "image": "1f9db-1f3fb-200d-2640-fe0f.png",
+ "sheet_x": 52,
+ "sheet_y": 18,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true,
+ "obsoletes": "1F9DB-1F3FB"
},
"1F3FC": {
- "unified": "1F93E-1F3FC-200D-2642-FE0F",
- "non_qualified": "1F93E-1F3FC-200D-2642",
- "image": "1f93e-1f3fc-200d-2642-fe0f.png",
- "sheet_x": 41,
- "sheet_y": 35,
- "added_in": "9.0",
+ "unified": "1F9DB-1F3FC-200D-2640-FE0F",
+ "non_qualified": "1F9DB-1F3FC-200D-2640",
+ "image": "1f9db-1f3fc-200d-2640-fe0f.png",
+ "sheet_x": 52,
+ "sheet_y": 19,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true,
+ "obsoletes": "1F9DB-1F3FC"
},
"1F3FD": {
- "unified": "1F93E-1F3FD-200D-2642-FE0F",
- "non_qualified": "1F93E-1F3FD-200D-2642",
- "image": "1f93e-1f3fd-200d-2642-fe0f.png",
- "sheet_x": 41,
- "sheet_y": 36,
- "added_in": "9.0",
+ "unified": "1F9DB-1F3FD-200D-2640-FE0F",
+ "non_qualified": "1F9DB-1F3FD-200D-2640",
+ "image": "1f9db-1f3fd-200d-2640-fe0f.png",
+ "sheet_x": 52,
+ "sheet_y": 20,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true,
+ "obsoletes": "1F9DB-1F3FD"
},
"1F3FE": {
- "unified": "1F93E-1F3FE-200D-2642-FE0F",
- "non_qualified": "1F93E-1F3FE-200D-2642",
- "image": "1f93e-1f3fe-200d-2642-fe0f.png",
- "sheet_x": 41,
- "sheet_y": 37,
- "added_in": "9.0",
+ "unified": "1F9DB-1F3FE-200D-2640-FE0F",
+ "non_qualified": "1F9DB-1F3FE-200D-2640",
+ "image": "1f9db-1f3fe-200d-2640-fe0f.png",
+ "sheet_x": 52,
+ "sheet_y": 21,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true,
+ "obsoletes": "1F9DB-1F3FE"
},
"1F3FF": {
- "unified": "1F93E-1F3FF-200D-2642-FE0F",
- "non_qualified": "1F93E-1F3FF-200D-2642",
- "image": "1f93e-1f3ff-200d-2642-fe0f.png",
- "sheet_x": 41,
- "sheet_y": 38,
- "added_in": "9.0",
+ "unified": "1F9DB-1F3FF-200D-2640-FE0F",
+ "non_qualified": "1F9DB-1F3FF-200D-2640",
+ "image": "1f9db-1f3ff-200d-2640-fe0f.png",
+ "sheet_x": 52,
+ "sheet_y": 22,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true,
+ "obsoletes": "1F9DB-1F3FF"
}
- }
+ },
+ "obsoletes": "1F9DB"
},
{
- "name": "HANDBALL",
- "unified": "1F93E",
- "non_qualified": null,
+ "name": "MAN VAMPIRE",
+ "unified": "1F9DB-200D-2642-FE0F",
+ "non_qualified": "1F9DB-200D-2642",
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f93e.png",
- "sheet_x": 41,
- "sheet_y": 39,
- "short_name": "handball",
- "short_names": ["handball"],
+ "image": "1f9db-200d-2642-fe0f.png",
+ "sheet_x": 52,
+ "sheet_y": 23,
+ "short_name": "male_vampire",
+ "short_names": ["male_vampire"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 313,
- "added_in": "9.0",
+ "category": "People & Body",
+ "subcategory": "person-fantasy",
+ "sort_order": 385,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false,
+ "has_img_facebook": true,
"skin_variations": {
"1F3FB": {
- "unified": "1F93E-1F3FB",
- "non_qualified": null,
- "image": "1f93e-1f3fb.png",
- "sheet_x": 41,
- "sheet_y": 40,
- "added_in": "9.0",
+ "unified": "1F9DB-1F3FB-200D-2642-FE0F",
+ "non_qualified": "1F9DB-1F3FB-200D-2642",
+ "image": "1f9db-1f3fb-200d-2642-fe0f.png",
+ "sheet_x": 52,
+ "sheet_y": 24,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FC": {
- "unified": "1F93E-1F3FC",
- "non_qualified": null,
- "image": "1f93e-1f3fc.png",
- "sheet_x": 41,
- "sheet_y": 41,
- "added_in": "9.0",
+ "unified": "1F9DB-1F3FC-200D-2642-FE0F",
+ "non_qualified": "1F9DB-1F3FC-200D-2642",
+ "image": "1f9db-1f3fc-200d-2642-fe0f.png",
+ "sheet_x": 52,
+ "sheet_y": 25,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FD": {
- "unified": "1F93E-1F3FD",
- "non_qualified": null,
- "image": "1f93e-1f3fd.png",
- "sheet_x": 41,
- "sheet_y": 42,
- "added_in": "9.0",
+ "unified": "1F9DB-1F3FD-200D-2642-FE0F",
+ "non_qualified": "1F9DB-1F3FD-200D-2642",
+ "image": "1f9db-1f3fd-200d-2642-fe0f.png",
+ "sheet_x": 52,
+ "sheet_y": 26,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FE": {
- "unified": "1F93E-1F3FE",
- "non_qualified": null,
- "image": "1f93e-1f3fe.png",
- "sheet_x": 41,
- "sheet_y": 43,
- "added_in": "9.0",
+ "unified": "1F9DB-1F3FE-200D-2642-FE0F",
+ "non_qualified": "1F9DB-1F3FE-200D-2642",
+ "image": "1f9db-1f3fe-200d-2642-fe0f.png",
+ "sheet_x": 52,
+ "sheet_y": 27,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FF": {
- "unified": "1F93E-1F3FF",
- "non_qualified": null,
- "image": "1f93e-1f3ff.png",
- "sheet_x": 41,
- "sheet_y": 44,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- }
- },
- {
- "name": "WILTED FLOWER",
- "unified": "1F940",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f940.png",
- "sheet_x": 41,
- "sheet_y": 45,
- "short_name": "wilted_flower",
- "short_names": ["wilted_flower"],
- "text": null,
- "texts": null,
- "category": "Animals & Nature",
- "sort_order": 108,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- {
- "name": "DRUM WITH DRUMSTICKS",
- "unified": "1F941",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f941.png",
- "sheet_x": 41,
- "sheet_y": 46,
- "short_name": "drum_with_drumsticks",
- "short_names": ["drum_with_drumsticks"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 24,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- {
- "name": "CLINKING GLASSES",
- "unified": "1F942",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f942.png",
- "sheet_x": 41,
- "sheet_y": 47,
- "short_name": "clinking_glasses",
- "short_names": ["clinking_glasses"],
- "text": null,
- "texts": null,
- "category": "Food & Drink",
- "sort_order": 100,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- {
- "name": "TUMBLER GLASS",
- "unified": "1F943",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f943.png",
- "sheet_x": 41,
- "sheet_y": 48,
- "short_name": "tumbler_glass",
- "short_names": ["tumbler_glass"],
- "text": null,
- "texts": null,
- "category": "Food & Drink",
- "sort_order": 101,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- {
- "name": "SPOON",
- "unified": "1F944",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f944.png",
- "sheet_x": 41,
- "sheet_y": 49,
- "short_name": "spoon",
- "short_names": ["spoon"],
- "text": null,
- "texts": null,
- "category": "Food & Drink",
- "sort_order": 106,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- {
- "name": "GOAL NET",
- "unified": "1F945",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f945.png",
- "sheet_x": 41,
- "sheet_y": 50,
- "short_name": "goal_net",
- "short_names": ["goal_net"],
- "text": null,
- "texts": null,
- "category": "Activities",
- "sort_order": 46,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- {
- "name": "FIRST PLACE MEDAL",
- "unified": "1F947",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f947.png",
- "sheet_x": 41,
- "sheet_y": 51,
- "short_name": "first_place_medal",
- "short_names": ["first_place_medal"],
- "text": null,
- "texts": null,
- "category": "Activities",
- "sort_order": 25,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- {
- "name": "SECOND PLACE MEDAL",
- "unified": "1F948",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f948.png",
- "sheet_x": 41,
- "sheet_y": 52,
- "short_name": "second_place_medal",
- "short_names": ["second_place_medal"],
- "text": null,
- "texts": null,
- "category": "Activities",
- "sort_order": 26,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- {
- "name": "THIRD PLACE MEDAL",
- "unified": "1F949",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f949.png",
- "sheet_x": 42,
- "sheet_y": 0,
- "short_name": "third_place_medal",
- "short_names": ["third_place_medal"],
- "text": null,
- "texts": null,
- "category": "Activities",
- "sort_order": 27,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- {
- "name": "BOXING GLOVE",
- "unified": "1F94A",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f94a.png",
- "sheet_x": 42,
- "sheet_y": 1,
- "short_name": "boxing_glove",
- "short_names": ["boxing_glove"],
- "text": null,
- "texts": null,
- "category": "Activities",
- "sort_order": 44,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- {
- "name": "MARTIAL ARTS UNIFORM",
- "unified": "1F94B",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f94b.png",
- "sheet_x": 42,
- "sheet_y": 2,
- "short_name": "martial_arts_uniform",
- "short_names": ["martial_arts_uniform"],
- "text": null,
- "texts": null,
- "category": "Activities",
- "sort_order": 45,
- "added_in": "9.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "unified": "1F9DB-1F3FF-200D-2642-FE0F",
+ "non_qualified": "1F9DB-1F3FF-200D-2642",
+ "image": "1f9db-1f3ff-200d-2642-fe0f.png",
+ "sheet_x": 52,
+ "sheet_y": 28,
+ "added_in": "5.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ }
},
{
- "name": "CURLING STONE",
- "unified": "1F94C",
+ "name": "VAMPIRE",
+ "unified": "1F9DB",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f94c.png",
- "sheet_x": 42,
- "sheet_y": 3,
- "short_name": "curling_stone",
- "short_names": ["curling_stone"],
+ "image": "1f9db.png",
+ "sheet_x": 52,
+ "sheet_y": 29,
+ "short_name": "vampire",
+ "short_names": ["vampire"],
"text": null,
"texts": null,
- "category": "Activities",
- "sort_order": 53,
- "added_in": "10.0",
+ "category": "People & Body",
+ "subcategory": "person-fantasy",
+ "sort_order": 384,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": false
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F9DB-1F3FB",
+ "non_qualified": null,
+ "image": "1f9db-1f3fb.png",
+ "sheet_x": 52,
+ "sheet_y": 30,
+ "added_in": "5.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true,
+ "obsoleted_by": "1F9DB-1F3FB-200D-2640-FE0F"
+ },
+ "1F3FC": {
+ "unified": "1F9DB-1F3FC",
+ "non_qualified": null,
+ "image": "1f9db-1f3fc.png",
+ "sheet_x": 52,
+ "sheet_y": 31,
+ "added_in": "5.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true,
+ "obsoleted_by": "1F9DB-1F3FC-200D-2640-FE0F"
+ },
+ "1F3FD": {
+ "unified": "1F9DB-1F3FD",
+ "non_qualified": null,
+ "image": "1f9db-1f3fd.png",
+ "sheet_x": 52,
+ "sheet_y": 32,
+ "added_in": "5.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true,
+ "obsoleted_by": "1F9DB-1F3FD-200D-2640-FE0F"
+ },
+ "1F3FE": {
+ "unified": "1F9DB-1F3FE",
+ "non_qualified": null,
+ "image": "1f9db-1f3fe.png",
+ "sheet_x": 52,
+ "sheet_y": 33,
+ "added_in": "5.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true,
+ "obsoleted_by": "1F9DB-1F3FE-200D-2640-FE0F"
+ },
+ "1F3FF": {
+ "unified": "1F9DB-1F3FF",
+ "non_qualified": null,
+ "image": "1f9db-1f3ff.png",
+ "sheet_x": 52,
+ "sheet_y": 34,
+ "added_in": "5.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true,
+ "obsoleted_by": "1F9DB-1F3FF-200D-2640-FE0F"
+ }
+ },
+ "obsoleted_by": "1F9DB-200D-2640-FE0F"
},
{
- "name": "LACROSSE STICK AND BALL",
- "unified": "1F94D",
- "non_qualified": null,
+ "name": "MERMAID",
+ "unified": "1F9DC-200D-2640-FE0F",
+ "non_qualified": "1F9DC-200D-2640",
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f94d.png",
- "sheet_x": 42,
- "sheet_y": 4,
- "short_name": "lacrosse",
- "short_names": ["lacrosse"],
+ "image": "1f9dc-200d-2640-fe0f.png",
+ "sheet_x": 52,
+ "sheet_y": 35,
+ "short_name": "mermaid",
+ "short_names": ["mermaid"],
"text": null,
"texts": null,
- "category": "Activities",
- "sort_order": 41,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "category": "People & Body",
+ "subcategory": "person-fantasy",
+ "sort_order": 389,
+ "added_in": "5.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true,
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F9DC-1F3FB-200D-2640-FE0F",
+ "non_qualified": "1F9DC-1F3FB-200D-2640",
+ "image": "1f9dc-1f3fb-200d-2640-fe0f.png",
+ "sheet_x": 52,
+ "sheet_y": 36,
+ "added_in": "5.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1F9DC-1F3FC-200D-2640-FE0F",
+ "non_qualified": "1F9DC-1F3FC-200D-2640",
+ "image": "1f9dc-1f3fc-200d-2640-fe0f.png",
+ "sheet_x": 52,
+ "sheet_y": 37,
+ "added_in": "5.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1F9DC-1F3FD-200D-2640-FE0F",
+ "non_qualified": "1F9DC-1F3FD-200D-2640",
+ "image": "1f9dc-1f3fd-200d-2640-fe0f.png",
+ "sheet_x": 52,
+ "sheet_y": 38,
+ "added_in": "5.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1F9DC-1F3FE-200D-2640-FE0F",
+ "non_qualified": "1F9DC-1F3FE-200D-2640",
+ "image": "1f9dc-1f3fe-200d-2640-fe0f.png",
+ "sheet_x": 52,
+ "sheet_y": 39,
+ "added_in": "5.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1F9DC-1F3FF-200D-2640-FE0F",
+ "non_qualified": "1F9DC-1F3FF-200D-2640",
+ "image": "1f9dc-1f3ff-200d-2640-fe0f.png",
+ "sheet_x": 52,
+ "sheet_y": 40,
+ "added_in": "5.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ }
},
{
- "name": "SOFTBALL",
- "unified": "1F94E",
- "non_qualified": null,
+ "name": "MERMAN",
+ "unified": "1F9DC-200D-2642-FE0F",
+ "non_qualified": "1F9DC-200D-2642",
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f94e.png",
- "sheet_x": 42,
- "sheet_y": 5,
- "short_name": "softball",
- "short_names": ["softball"],
+ "image": "1f9dc-200d-2642-fe0f.png",
+ "sheet_x": 52,
+ "sheet_y": 41,
+ "short_name": "merman",
+ "short_names": ["merman"],
"text": null,
"texts": null,
- "category": "Activities",
- "sort_order": 30,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "category": "People & Body",
+ "subcategory": "person-fantasy",
+ "sort_order": 388,
+ "added_in": "5.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true,
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F9DC-1F3FB-200D-2642-FE0F",
+ "non_qualified": "1F9DC-1F3FB-200D-2642",
+ "image": "1f9dc-1f3fb-200d-2642-fe0f.png",
+ "sheet_x": 52,
+ "sheet_y": 42,
+ "added_in": "5.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true,
+ "obsoletes": "1F9DC-1F3FB"
+ },
+ "1F3FC": {
+ "unified": "1F9DC-1F3FC-200D-2642-FE0F",
+ "non_qualified": "1F9DC-1F3FC-200D-2642",
+ "image": "1f9dc-1f3fc-200d-2642-fe0f.png",
+ "sheet_x": 52,
+ "sheet_y": 43,
+ "added_in": "5.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true,
+ "obsoletes": "1F9DC-1F3FC"
+ },
+ "1F3FD": {
+ "unified": "1F9DC-1F3FD-200D-2642-FE0F",
+ "non_qualified": "1F9DC-1F3FD-200D-2642",
+ "image": "1f9dc-1f3fd-200d-2642-fe0f.png",
+ "sheet_x": 52,
+ "sheet_y": 44,
+ "added_in": "5.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true,
+ "obsoletes": "1F9DC-1F3FD"
+ },
+ "1F3FE": {
+ "unified": "1F9DC-1F3FE-200D-2642-FE0F",
+ "non_qualified": "1F9DC-1F3FE-200D-2642",
+ "image": "1f9dc-1f3fe-200d-2642-fe0f.png",
+ "sheet_x": 52,
+ "sheet_y": 45,
+ "added_in": "5.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true,
+ "obsoletes": "1F9DC-1F3FE"
+ },
+ "1F3FF": {
+ "unified": "1F9DC-1F3FF-200D-2642-FE0F",
+ "non_qualified": "1F9DC-1F3FF-200D-2642",
+ "image": "1f9dc-1f3ff-200d-2642-fe0f.png",
+ "sheet_x": 52,
+ "sheet_y": 46,
+ "added_in": "5.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true,
+ "obsoletes": "1F9DC-1F3FF"
+ }
+ },
+ "obsoletes": "1F9DC"
},
{
- "name": "FLYING DISC",
- "unified": "1F94F",
+ "name": "MERPERSON",
+ "unified": "1F9DC",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f94f.png",
- "sheet_x": 42,
- "sheet_y": 6,
- "short_name": "flying_disc",
- "short_names": ["flying_disc"],
+ "image": "1f9dc.png",
+ "sheet_x": 52,
+ "sheet_y": 47,
+ "short_name": "merperson",
+ "short_names": ["merperson"],
"text": null,
"texts": null,
- "category": "Activities",
- "sort_order": 36,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "category": "People & Body",
+ "subcategory": "person-fantasy",
+ "sort_order": 387,
+ "added_in": "5.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true,
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F9DC-1F3FB",
+ "non_qualified": null,
+ "image": "1f9dc-1f3fb.png",
+ "sheet_x": 52,
+ "sheet_y": 48,
+ "added_in": "5.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true,
+ "obsoleted_by": "1F9DC-1F3FB-200D-2642-FE0F"
+ },
+ "1F3FC": {
+ "unified": "1F9DC-1F3FC",
+ "non_qualified": null,
+ "image": "1f9dc-1f3fc.png",
+ "sheet_x": 52,
+ "sheet_y": 49,
+ "added_in": "5.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true,
+ "obsoleted_by": "1F9DC-1F3FC-200D-2642-FE0F"
+ },
+ "1F3FD": {
+ "unified": "1F9DC-1F3FD",
+ "non_qualified": null,
+ "image": "1f9dc-1f3fd.png",
+ "sheet_x": 52,
+ "sheet_y": 50,
+ "added_in": "5.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true,
+ "obsoleted_by": "1F9DC-1F3FD-200D-2642-FE0F"
+ },
+ "1F3FE": {
+ "unified": "1F9DC-1F3FE",
+ "non_qualified": null,
+ "image": "1f9dc-1f3fe.png",
+ "sheet_x": 52,
+ "sheet_y": 51,
+ "added_in": "5.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true,
+ "obsoleted_by": "1F9DC-1F3FE-200D-2642-FE0F"
+ },
+ "1F3FF": {
+ "unified": "1F9DC-1F3FF",
+ "non_qualified": null,
+ "image": "1f9dc-1f3ff.png",
+ "sheet_x": 52,
+ "sheet_y": 52,
+ "added_in": "5.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true,
+ "obsoleted_by": "1F9DC-1F3FF-200D-2642-FE0F"
+ }
+ },
+ "obsoleted_by": "1F9DC-200D-2642-FE0F"
},
{
- "name": "CROISSANT",
- "unified": "1F950",
- "non_qualified": null,
+ "name": "WOMAN ELF",
+ "unified": "1F9DD-200D-2640-FE0F",
+ "non_qualified": "1F9DD-200D-2640",
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f950.png",
- "sheet_x": 42,
- "sheet_y": 7,
- "short_name": "croissant",
- "short_names": ["croissant"],
+ "image": "1f9dd-200d-2640-fe0f.png",
+ "sheet_x": 52,
+ "sheet_y": 53,
+ "short_name": "female_elf",
+ "short_names": ["female_elf"],
"text": null,
"texts": null,
- "category": "Food & Drink",
- "sort_order": 31,
- "added_in": "9.0",
+ "category": "People & Body",
+ "subcategory": "person-fantasy",
+ "sort_order": 392,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": false
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F9DD-1F3FB-200D-2640-FE0F",
+ "non_qualified": "1F9DD-1F3FB-200D-2640",
+ "image": "1f9dd-1f3fb-200d-2640-fe0f.png",
+ "sheet_x": 52,
+ "sheet_y": 54,
+ "added_in": "5.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1F9DD-1F3FC-200D-2640-FE0F",
+ "non_qualified": "1F9DD-1F3FC-200D-2640",
+ "image": "1f9dd-1f3fc-200d-2640-fe0f.png",
+ "sheet_x": 52,
+ "sheet_y": 55,
+ "added_in": "5.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1F9DD-1F3FD-200D-2640-FE0F",
+ "non_qualified": "1F9DD-1F3FD-200D-2640",
+ "image": "1f9dd-1f3fd-200d-2640-fe0f.png",
+ "sheet_x": 52,
+ "sheet_y": 56,
+ "added_in": "5.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1F9DD-1F3FE-200D-2640-FE0F",
+ "non_qualified": "1F9DD-1F3FE-200D-2640",
+ "image": "1f9dd-1f3fe-200d-2640-fe0f.png",
+ "sheet_x": 52,
+ "sheet_y": 57,
+ "added_in": "5.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1F9DD-1F3FF-200D-2640-FE0F",
+ "non_qualified": "1F9DD-1F3FF-200D-2640",
+ "image": "1f9dd-1f3ff-200d-2640-fe0f.png",
+ "sheet_x": 52,
+ "sheet_y": 58,
+ "added_in": "5.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ }
},
{
- "name": "AVOCADO",
- "unified": "1F951",
- "non_qualified": null,
+ "name": "MAN ELF",
+ "unified": "1F9DD-200D-2642-FE0F",
+ "non_qualified": "1F9DD-200D-2642",
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f951.png",
- "sheet_x": 42,
- "sheet_y": 8,
- "short_name": "avocado",
- "short_names": ["avocado"],
+ "image": "1f9dd-200d-2642-fe0f.png",
+ "sheet_x": 52,
+ "sheet_y": 59,
+ "short_name": "male_elf",
+ "short_names": ["male_elf"],
"text": null,
"texts": null,
- "category": "Food & Drink",
- "sort_order": 18,
- "added_in": "9.0",
+ "category": "People & Body",
+ "subcategory": "person-fantasy",
+ "sort_order": 391,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": false
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F9DD-1F3FB-200D-2642-FE0F",
+ "non_qualified": "1F9DD-1F3FB-200D-2642",
+ "image": "1f9dd-1f3fb-200d-2642-fe0f.png",
+ "sheet_x": 52,
+ "sheet_y": 60,
+ "added_in": "5.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true,
+ "obsoletes": "1F9DD-1F3FB"
+ },
+ "1F3FC": {
+ "unified": "1F9DD-1F3FC-200D-2642-FE0F",
+ "non_qualified": "1F9DD-1F3FC-200D-2642",
+ "image": "1f9dd-1f3fc-200d-2642-fe0f.png",
+ "sheet_x": 53,
+ "sheet_y": 0,
+ "added_in": "5.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true,
+ "obsoletes": "1F9DD-1F3FC"
+ },
+ "1F3FD": {
+ "unified": "1F9DD-1F3FD-200D-2642-FE0F",
+ "non_qualified": "1F9DD-1F3FD-200D-2642",
+ "image": "1f9dd-1f3fd-200d-2642-fe0f.png",
+ "sheet_x": 53,
+ "sheet_y": 1,
+ "added_in": "5.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true,
+ "obsoletes": "1F9DD-1F3FD"
+ },
+ "1F3FE": {
+ "unified": "1F9DD-1F3FE-200D-2642-FE0F",
+ "non_qualified": "1F9DD-1F3FE-200D-2642",
+ "image": "1f9dd-1f3fe-200d-2642-fe0f.png",
+ "sheet_x": 53,
+ "sheet_y": 2,
+ "added_in": "5.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true,
+ "obsoletes": "1F9DD-1F3FE"
+ },
+ "1F3FF": {
+ "unified": "1F9DD-1F3FF-200D-2642-FE0F",
+ "non_qualified": "1F9DD-1F3FF-200D-2642",
+ "image": "1f9dd-1f3ff-200d-2642-fe0f.png",
+ "sheet_x": 53,
+ "sheet_y": 3,
+ "added_in": "5.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true,
+ "obsoletes": "1F9DD-1F3FF"
+ }
+ },
+ "obsoletes": "1F9DD"
},
{
- "name": "CUCUMBER",
- "unified": "1F952",
+ "name": "ELF",
+ "unified": "1F9DD",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f952.png",
- "sheet_x": 42,
- "sheet_y": 9,
- "short_name": "cucumber",
- "short_names": ["cucumber"],
+ "image": "1f9dd.png",
+ "sheet_x": 53,
+ "sheet_y": 4,
+ "short_name": "elf",
+ "short_names": ["elf"],
"text": null,
"texts": null,
- "category": "Food & Drink",
- "sort_order": 24,
- "added_in": "9.0",
+ "category": "People & Body",
+ "subcategory": "person-fantasy",
+ "sort_order": 390,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": false
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1F9DD-1F3FB",
+ "non_qualified": null,
+ "image": "1f9dd-1f3fb.png",
+ "sheet_x": 53,
+ "sheet_y": 5,
+ "added_in": "5.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true,
+ "obsoleted_by": "1F9DD-1F3FB-200D-2642-FE0F"
+ },
+ "1F3FC": {
+ "unified": "1F9DD-1F3FC",
+ "non_qualified": null,
+ "image": "1f9dd-1f3fc.png",
+ "sheet_x": 53,
+ "sheet_y": 6,
+ "added_in": "5.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true,
+ "obsoleted_by": "1F9DD-1F3FC-200D-2642-FE0F"
+ },
+ "1F3FD": {
+ "unified": "1F9DD-1F3FD",
+ "non_qualified": null,
+ "image": "1f9dd-1f3fd.png",
+ "sheet_x": 53,
+ "sheet_y": 7,
+ "added_in": "5.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true,
+ "obsoleted_by": "1F9DD-1F3FD-200D-2642-FE0F"
+ },
+ "1F3FE": {
+ "unified": "1F9DD-1F3FE",
+ "non_qualified": null,
+ "image": "1f9dd-1f3fe.png",
+ "sheet_x": 53,
+ "sheet_y": 8,
+ "added_in": "5.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true,
+ "obsoleted_by": "1F9DD-1F3FE-200D-2642-FE0F"
+ },
+ "1F3FF": {
+ "unified": "1F9DD-1F3FF",
+ "non_qualified": null,
+ "image": "1f9dd-1f3ff.png",
+ "sheet_x": 53,
+ "sheet_y": 9,
+ "added_in": "5.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true,
+ "obsoleted_by": "1F9DD-1F3FF-200D-2642-FE0F"
+ }
+ },
+ "obsoleted_by": "1F9DD-200D-2642-FE0F"
},
{
- "name": "BACON",
- "unified": "1F953",
- "non_qualified": null,
+ "name": "WOMAN GENIE",
+ "unified": "1F9DE-200D-2640-FE0F",
+ "non_qualified": "1F9DE-200D-2640",
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f953.png",
- "sheet_x": 42,
+ "image": "1f9de-200d-2640-fe0f.png",
+ "sheet_x": 53,
"sheet_y": 10,
- "short_name": "bacon",
- "short_names": ["bacon"],
+ "short_name": "female_genie",
+ "short_names": ["female_genie"],
"text": null,
"texts": null,
- "category": "Food & Drink",
- "sort_order": 40,
- "added_in": "9.0",
+ "category": "People & Body",
+ "subcategory": "person-fantasy",
+ "sort_order": 395,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
- "name": "POTATO",
- "unified": "1F954",
- "non_qualified": null,
+ "name": "MAN GENIE",
+ "unified": "1F9DE-200D-2642-FE0F",
+ "non_qualified": "1F9DE-200D-2642",
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f954.png",
- "sheet_x": 42,
+ "image": "1f9de-200d-2642-fe0f.png",
+ "sheet_x": 53,
"sheet_y": 11,
- "short_name": "potato",
- "short_names": ["potato"],
+ "short_name": "male_genie",
+ "short_names": ["male_genie"],
"text": null,
"texts": null,
- "category": "Food & Drink",
- "sort_order": 20,
- "added_in": "9.0",
+ "category": "People & Body",
+ "subcategory": "person-fantasy",
+ "sort_order": 394,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": false
+ "obsoletes": "1F9DE"
},
{
- "name": "CARROT",
- "unified": "1F955",
+ "name": "GENIE",
+ "unified": "1F9DE",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f955.png",
- "sheet_x": 42,
+ "image": "1f9de.png",
+ "sheet_x": 53,
"sheet_y": 12,
- "short_name": "carrot",
- "short_names": ["carrot"],
+ "short_name": "genie",
+ "short_names": ["genie"],
"text": null,
"texts": null,
- "category": "Food & Drink",
- "sort_order": 21,
- "added_in": "9.0",
+ "category": "People & Body",
+ "subcategory": "person-fantasy",
+ "sort_order": 393,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": false
+ "obsoleted_by": "1F9DE-200D-2642-FE0F"
},
{
- "name": "BAGUETTE BREAD",
- "unified": "1F956",
- "non_qualified": null,
+ "name": "WOMAN ZOMBIE",
+ "unified": "1F9DF-200D-2640-FE0F",
+ "non_qualified": "1F9DF-200D-2640",
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f956.png",
- "sheet_x": 42,
+ "image": "1f9df-200d-2640-fe0f.png",
+ "sheet_x": 53,
"sheet_y": 13,
- "short_name": "baguette_bread",
- "short_names": ["baguette_bread"],
+ "short_name": "female_zombie",
+ "short_names": ["female_zombie"],
"text": null,
"texts": null,
- "category": "Food & Drink",
- "sort_order": 32,
- "added_in": "9.0",
+ "category": "People & Body",
+ "subcategory": "person-fantasy",
+ "sort_order": 398,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
- "name": "GREEN SALAD",
- "unified": "1F957",
- "non_qualified": null,
+ "name": "MAN ZOMBIE",
+ "unified": "1F9DF-200D-2642-FE0F",
+ "non_qualified": "1F9DF-200D-2642",
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f957.png",
- "sheet_x": 42,
+ "image": "1f9df-200d-2642-fe0f.png",
+ "sheet_x": 53,
"sheet_y": 14,
- "short_name": "green_salad",
- "short_names": ["green_salad"],
+ "short_name": "male_zombie",
+ "short_names": ["male_zombie"],
"text": null,
"texts": null,
- "category": "Food & Drink",
- "sort_order": 54,
- "added_in": "9.0",
+ "category": "People & Body",
+ "subcategory": "person-fantasy",
+ "sort_order": 397,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": false
+ "obsoletes": "1F9DF"
},
{
- "name": "SHALLOW PAN OF FOOD",
- "unified": "1F958",
+ "name": "ZOMBIE",
+ "unified": "1F9DF",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f958.png",
- "sheet_x": 42,
+ "image": "1f9df.png",
+ "sheet_x": 53,
"sheet_y": 15,
- "short_name": "shallow_pan_of_food",
- "short_names": ["shallow_pan_of_food"],
+ "short_name": "zombie",
+ "short_names": ["zombie"],
"text": null,
"texts": null,
- "category": "Food & Drink",
- "sort_order": 51,
- "added_in": "9.0",
+ "category": "People & Body",
+ "subcategory": "person-fantasy",
+ "sort_order": 396,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": false
+ "obsoleted_by": "1F9DF-200D-2642-FE0F"
},
{
- "name": "STUFFED FLATBREAD",
- "unified": "1F959",
+ "name": "BRAIN",
+ "unified": "1F9E0",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f959.png",
- "sheet_x": 42,
+ "image": "1f9e0.png",
+ "sheet_x": 53,
"sheet_y": 16,
- "short_name": "stuffed_flatbread",
- "short_names": ["stuffed_flatbread"],
+ "short_name": "brain",
+ "short_names": ["brain"],
"text": null,
"texts": null,
- "category": "Food & Drink",
- "sort_order": 48,
- "added_in": "9.0",
+ "category": "People & Body",
+ "subcategory": "body-parts",
+ "sort_order": 218,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
- "name": "EGG",
- "unified": "1F95A",
+ "name": "ORANGE HEART",
+ "unified": "1F9E1",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f95a.png",
- "sheet_x": 42,
+ "image": "1f9e1.png",
+ "sheet_x": 53,
"sheet_y": 17,
- "short_name": "egg",
- "short_names": ["egg"],
+ "short_name": "orange_heart",
+ "short_names": ["orange_heart"],
"text": null,
"texts": null,
- "category": "Food & Drink",
- "sort_order": 49,
- "added_in": "9.0",
+ "category": "Smileys & Emotion",
+ "subcategory": "heart",
+ "sort_order": 143,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
- "name": "GLASS OF MILK",
- "unified": "1F95B",
+ "name": "BILLED CAP",
+ "unified": "1F9E2",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f95b.png",
- "sheet_x": 42,
+ "image": "1f9e2.png",
+ "sheet_x": 53,
"sheet_y": 18,
- "short_name": "glass_of_milk",
- "short_names": ["glass_of_milk"],
+ "short_name": "billed_cap",
+ "short_names": ["billed_cap"],
"text": null,
"texts": null,
- "category": "Food & Drink",
- "sort_order": 90,
- "added_in": "9.0",
+ "category": "Objects",
+ "subcategory": "clothing",
+ "sort_order": 1163,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
- "name": "PEANUTS",
- "unified": "1F95C",
+ "name": "SCARF",
+ "unified": "1F9E3",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f95c.png",
- "sheet_x": 42,
+ "image": "1f9e3.png",
+ "sheet_x": 53,
"sheet_y": 19,
- "short_name": "peanuts",
- "short_names": ["peanuts"],
+ "short_name": "scarf",
+ "short_names": ["scarf"],
"text": null,
"texts": null,
- "category": "Food & Drink",
- "sort_order": 28,
- "added_in": "9.0",
+ "category": "Objects",
+ "subcategory": "clothing",
+ "sort_order": 1131,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
- "name": "KIWIFRUIT",
- "unified": "1F95D",
+ "name": "GLOVES",
+ "unified": "1F9E4",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f95d.png",
- "sheet_x": 42,
+ "image": "1f9e4.png",
+ "sheet_x": 53,
"sheet_y": 20,
- "short_name": "kiwifruit",
- "short_names": ["kiwifruit"],
+ "short_name": "gloves",
+ "short_names": ["gloves"],
"text": null,
"texts": null,
- "category": "Food & Drink",
- "sort_order": 15,
- "added_in": "9.0",
+ "category": "Objects",
+ "subcategory": "clothing",
+ "sort_order": 1132,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
- "name": "PANCAKES",
- "unified": "1F95E",
+ "name": "COAT",
+ "unified": "1F9E5",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f95e.png",
- "sheet_x": 42,
+ "image": "1f9e5.png",
+ "sheet_x": 53,
"sheet_y": 21,
- "short_name": "pancakes",
- "short_names": ["pancakes"],
+ "short_name": "coat",
+ "short_names": ["coat"],
"text": null,
"texts": null,
- "category": "Food & Drink",
- "sort_order": 35,
- "added_in": "9.0",
+ "category": "Objects",
+ "subcategory": "clothing",
+ "sort_order": 1133,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
- "name": "DUMPLING",
- "unified": "1F95F",
+ "name": "SOCKS",
+ "unified": "1F9E6",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f95f.png",
- "sheet_x": 42,
+ "image": "1f9e6.png",
+ "sheet_x": 53,
"sheet_y": 22,
- "short_name": "dumpling",
- "short_names": ["dumpling"],
+ "short_name": "socks",
+ "short_names": ["socks"],
"text": null,
"texts": null,
- "category": "Food & Drink",
- "sort_order": 72,
- "added_in": "10.0",
+ "category": "Objects",
+ "subcategory": "clothing",
+ "sort_order": 1134,
+ "added_in": "5.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
- "name": "FORTUNE COOKIE",
- "unified": "1F960",
+ "name": "RED GIFT ENVELOPE",
+ "unified": "1F9E7",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f960.png",
- "sheet_x": 42,
+ "image": "1f9e7.png",
+ "sheet_x": 53,
"sheet_y": 23,
- "short_name": "fortune_cookie",
- "short_names": ["fortune_cookie"],
+ "short_name": "red_envelope",
+ "short_names": ["red_envelope"],
"text": null,
"texts": null,
- "category": "Food & Drink",
- "sort_order": 73,
- "added_in": "10.0",
+ "category": "Activities",
+ "subcategory": "event",
+ "sort_order": 1053,
+ "added_in": "11.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
- "name": "TAKEOUT BOX",
- "unified": "1F961",
+ "name": "FIRECRACKER",
+ "unified": "1F9E8",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f961.png",
- "sheet_x": 42,
+ "image": "1f9e8.png",
+ "sheet_x": 53,
"sheet_y": 24,
- "short_name": "takeout_box",
- "short_names": ["takeout_box"],
+ "short_name": "firecracker",
+ "short_names": ["firecracker"],
"text": null,
"texts": null,
- "category": "Food & Drink",
- "sort_order": 74,
- "added_in": "10.0",
+ "category": "Activities",
+ "subcategory": "event",
+ "sort_order": 1042,
+ "added_in": "11.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
- "name": "CHOPSTICKS",
- "unified": "1F962",
+ "name": "JIGSAW PUZZLE PIECE",
+ "unified": "1F9E9",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f962.png",
- "sheet_x": 42,
+ "image": "1f9e9.png",
+ "sheet_x": 53,
"sheet_y": 25,
- "short_name": "chopsticks",
- "short_names": ["chopsticks"],
+ "short_name": "jigsaw",
+ "short_names": ["jigsaw"],
"text": null,
"texts": null,
- "category": "Food & Drink",
- "sort_order": 103,
- "added_in": "10.0",
+ "category": "Activities",
+ "subcategory": "game",
+ "sort_order": 1103,
+ "added_in": "11.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
- "name": "BOWL WITH SPOON",
- "unified": "1F963",
+ "name": "TEST TUBE",
+ "unified": "1F9EA",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f963.png",
- "sheet_x": 42,
+ "image": "1f9ea.png",
+ "sheet_x": 53,
"sheet_y": 26,
- "short_name": "bowl_with_spoon",
- "short_names": ["bowl_with_spoon"],
+ "short_name": "test_tube",
+ "short_names": ["test_tube"],
"text": null,
"texts": null,
- "category": "Food & Drink",
- "sort_order": 53,
- "added_in": "10.0",
+ "category": "Objects",
+ "subcategory": "science",
+ "sort_order": 1337,
+ "added_in": "11.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
- "name": "CUP WITH STRAW",
- "unified": "1F964",
+ "name": "PETRI DISH",
+ "unified": "1F9EB",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f964.png",
- "sheet_x": 42,
+ "image": "1f9eb.png",
+ "sheet_x": 53,
"sheet_y": 27,
- "short_name": "cup_with_straw",
- "short_names": ["cup_with_straw"],
+ "short_name": "petri_dish",
+ "short_names": ["petri_dish"],
"text": null,
"texts": null,
- "category": "Food & Drink",
- "sort_order": 102,
- "added_in": "10.0",
+ "category": "Objects",
+ "subcategory": "science",
+ "sort_order": 1338,
+ "added_in": "11.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
- "name": "COCONUT",
- "unified": "1F965",
+ "name": "DNA DOUBLE HELIX",
+ "unified": "1F9EC",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f965.png",
- "sheet_x": 42,
+ "image": "1f9ec.png",
+ "sheet_x": 53,
"sheet_y": 28,
- "short_name": "coconut",
- "short_names": ["coconut"],
+ "short_name": "dna",
+ "short_names": ["dna"],
"text": null,
"texts": null,
- "category": "Food & Drink",
- "sort_order": 17,
- "added_in": "10.0",
+ "category": "Objects",
+ "subcategory": "science",
+ "sort_order": 1339,
+ "added_in": "11.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
- "name": "BROCCOLI",
- "unified": "1F966",
+ "name": "COMPASS",
+ "unified": "1F9ED",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f966.png",
- "sheet_x": 42,
+ "image": "1f9ed.png",
+ "sheet_x": 53,
"sheet_y": 29,
- "short_name": "broccoli",
- "short_names": ["broccoli"],
+ "short_name": "compass",
+ "short_names": ["compass"],
"text": null,
"texts": null,
- "category": "Food & Drink",
- "sort_order": 26,
- "added_in": "10.0",
+ "category": "Travel & Places",
+ "subcategory": "place-map",
+ "sort_order": 826,
+ "added_in": "11.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
- "name": "PIE",
- "unified": "1F967",
+ "name": "ABACUS",
+ "unified": "1F9EE",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f967.png",
- "sheet_x": 42,
+ "image": "1f9ee.png",
+ "sheet_x": 53,
"sheet_y": 30,
- "short_name": "pie",
- "short_names": ["pie"],
+ "short_name": "abacus",
+ "short_names": ["abacus"],
"text": null,
"texts": null,
- "category": "Food & Drink",
- "sort_order": 83,
- "added_in": "10.0",
+ "category": "Objects",
+ "subcategory": "computer",
+ "sort_order": 1218,
+ "added_in": "11.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
- "name": "PRETZEL",
- "unified": "1F968",
+ "name": "FIRE EXTINGUISHER",
+ "unified": "1F9EF",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f968.png",
- "sheet_x": 42,
+ "image": "1f9ef.png",
+ "sheet_x": 53,
"sheet_y": 31,
- "short_name": "pretzel",
- "short_names": ["pretzel"],
- "text": null,
- "texts": null,
- "category": "Food & Drink",
- "sort_order": 33,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- {
- "name": "CUT OF MEAT",
- "unified": "1F969",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f969.png",
- "sheet_x": 42,
- "sheet_y": 32,
- "short_name": "cut_of_meat",
- "short_names": ["cut_of_meat"],
- "text": null,
- "texts": null,
- "category": "Food & Drink",
- "sort_order": 39,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- {
- "name": "SANDWICH",
- "unified": "1F96A",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f96a.png",
- "sheet_x": 42,
- "sheet_y": 33,
- "short_name": "sandwich",
- "short_names": ["sandwich"],
- "text": null,
- "texts": null,
- "category": "Food & Drink",
- "sort_order": 45,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- {
- "name": "CANNED FOOD",
- "unified": "1F96B",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f96b.png",
- "sheet_x": 42,
- "sheet_y": 34,
- "short_name": "canned_food",
- "short_names": ["canned_food"],
+ "short_name": "fire_extinguisher",
+ "short_names": ["fire_extinguisher"],
"text": null,
"texts": null,
- "category": "Food & Drink",
- "sort_order": 57,
- "added_in": "10.0",
+ "category": "Objects",
+ "subcategory": "household",
+ "sort_order": 1373,
+ "added_in": "11.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- {
- "name": "LEAFY GREEN",
- "unified": "1F96C",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f96c.png",
- "sheet_x": 42,
- "sheet_y": 35,
- "short_name": "leafy_green",
- "short_names": ["leafy_green"],
- "text": null,
- "texts": null,
- "category": "Food & Drink",
- "sort_order": 25,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- {
- "name": "MANGO",
- "unified": "1F96D",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f96d.png",
- "sheet_x": 42,
- "sheet_y": 36,
- "short_name": "mango",
- "short_names": ["mango"],
- "text": null,
- "texts": null,
- "category": "Food & Drink",
- "sort_order": 8,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- {
- "name": "MOON CAKE",
- "unified": "1F96E",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f96e.png",
- "sheet_x": 42,
- "sheet_y": 37,
- "short_name": "moon_cake",
- "short_names": ["moon_cake"],
- "text": null,
- "texts": null,
- "category": "Food & Drink",
- "sort_order": 70,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- {
- "name": "BAGEL",
- "unified": "1F96F",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f96f.png",
- "sheet_x": 42,
- "sheet_y": 38,
- "short_name": "bagel",
- "short_names": ["bagel"],
- "text": null,
- "texts": null,
- "category": "Food & Drink",
- "sort_order": 34,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
- "name": "SMILING FACE WITH SMILING EYES AND THREE HEARTS",
- "unified": "1F970",
+ "name": "TOOLBOX",
+ "unified": "1F9F0",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f970.png",
- "sheet_x": 42,
- "sheet_y": 39,
- "short_name": "smiling_face_with_3_hearts",
- "short_names": ["smiling_face_with_3_hearts"],
+ "image": "1f9f0.png",
+ "sheet_x": 53,
+ "sheet_y": 32,
+ "short_name": "toolbox",
+ "short_names": ["toolbox"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 15,
+ "category": "Objects",
+ "subcategory": "tool",
+ "sort_order": 1333,
"added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
},
{
- "name": "FACE WITH PARTY HORN AND PARTY HAT",
- "unified": "1F973",
+ "name": "BRICK",
+ "unified": "1F9F1",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f973.png",
- "sheet_x": 42,
- "sheet_y": 40,
- "short_name": "partying_face",
- "short_names": ["partying_face"],
+ "image": "1f9f1.png",
+ "sheet_x": 53,
+ "sheet_y": 33,
+ "short_name": "bricks",
+ "short_names": ["bricks"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 82,
+ "category": "Travel & Places",
+ "subcategory": "place-building",
+ "sort_order": 839,
"added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
},
{
- "name": "FACE WITH UNEVEN EYES AND WAVY MOUTH",
- "unified": "1F974",
+ "name": "MAGNET",
+ "unified": "1F9F2",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f974.png",
- "sheet_x": 42,
- "sheet_y": 41,
- "short_name": "woozy_face",
- "short_names": ["woozy_face"],
+ "image": "1f9f2.png",
+ "sheet_x": 53,
+ "sheet_y": 34,
+ "short_name": "magnet",
+ "short_names": ["magnet"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 83,
+ "category": "Objects",
+ "subcategory": "tool",
+ "sort_order": 1334,
"added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
},
{
- "name": "OVERHEATED FACE",
- "unified": "1F975",
+ "name": "LUGGAGE",
+ "unified": "1F9F3",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f975.png",
- "sheet_x": 42,
- "sheet_y": 42,
- "short_name": "hot_face",
- "short_names": ["hot_face"],
+ "image": "1f9f3.png",
+ "sheet_x": 53,
+ "sheet_y": 35,
+ "short_name": "luggage",
+ "short_names": ["luggage"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 66,
+ "category": "Travel & Places",
+ "subcategory": "hotel",
+ "sort_order": 959,
"added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
},
{
- "name": "FREEZING FACE",
- "unified": "1F976",
+ "name": "LOTION BOTTLE",
+ "unified": "1F9F4",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f976.png",
- "sheet_x": 42,
- "sheet_y": 43,
- "short_name": "cold_face",
- "short_names": ["cold_face"],
+ "image": "1f9f4.png",
+ "sheet_x": 53,
+ "sheet_y": 36,
+ "short_name": "lotion_bottle",
+ "short_names": ["lotion_bottle"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 67,
+ "category": "Objects",
+ "subcategory": "household",
+ "sort_order": 1363,
"added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
},
{
- "name": "FACE WITH PLEADING EYES",
- "unified": "1F97A",
+ "name": "SPOOL OF THREAD",
+ "unified": "1F9F5",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f97a.png",
- "sheet_x": 42,
- "sheet_y": 44,
- "short_name": "pleading_face",
- "short_names": ["pleading_face"],
+ "image": "1f9f5.png",
+ "sheet_x": 53,
+ "sheet_y": 37,
+ "short_name": "thread",
+ "short_names": ["thread"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 84,
+ "category": "Activities",
+ "subcategory": "arts & crafts",
+ "sort_order": 1119,
"added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
},
{
- "name": "LAB COAT",
- "unified": "1F97C",
+ "name": "BALL OF YARN",
+ "unified": "1F9F6",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f97c.png",
- "sheet_x": 42,
- "sheet_y": 45,
- "short_name": "lab_coat",
- "short_names": ["lab_coat"],
+ "image": "1f9f6.png",
+ "sheet_x": 53,
+ "sheet_y": 38,
+ "short_name": "yarn",
+ "short_names": ["yarn"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 436,
+ "category": "Activities",
+ "subcategory": "arts & crafts",
+ "sort_order": 1121,
"added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
},
{
- "name": "GOGGLES",
- "unified": "1F97D",
+ "name": "SAFETY PIN",
+ "unified": "1F9F7",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f97d.png",
- "sheet_x": 42,
- "sheet_y": 46,
- "short_name": "goggles",
- "short_names": ["goggles"],
+ "image": "1f9f7.png",
+ "sheet_x": 53,
+ "sheet_y": 39,
+ "short_name": "safety_pin",
+ "short_names": ["safety_pin"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 435,
+ "category": "Objects",
+ "subcategory": "household",
+ "sort_order": 1364,
"added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
},
{
- "name": "HIKING BOOT",
- "unified": "1F97E",
+ "name": "TEDDY BEAR",
+ "unified": "1F9F8",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f97e.png",
- "sheet_x": 42,
- "sheet_y": 47,
- "short_name": "hiking_boot",
- "short_names": ["hiking_boot"],
+ "image": "1f9f8.png",
+ "sheet_x": 53,
+ "sheet_y": 40,
+ "short_name": "teddy_bear",
+ "short_names": ["teddy_bear"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 455,
+ "category": "Activities",
+ "subcategory": "game",
+ "sort_order": 1104,
"added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
},
{
- "name": "FLAT SHOE",
- "unified": "1F97F",
+ "name": "BROOM",
+ "unified": "1F9F9",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f97f.png",
- "sheet_x": 42,
- "sheet_y": 48,
- "short_name": "woman\u2019s_flat_shoe",
- "short_names": ["woman\u2019s_flat_shoe"],
+ "image": "1f9f9.png",
+ "sheet_x": 53,
+ "sheet_y": 41,
+ "short_name": "broom",
+ "short_names": ["broom"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 456,
+ "category": "Objects",
+ "subcategory": "household",
+ "sort_order": 1365,
"added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
},
{
- "name": "CRAB",
- "unified": "1F980",
+ "name": "BASKET",
+ "unified": "1F9FA",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f980.png",
- "sheet_x": 42,
- "sheet_y": 49,
- "short_name": "crab",
- "short_names": ["crab"],
+ "image": "1f9fa.png",
+ "sheet_x": 53,
+ "sheet_y": 42,
+ "short_name": "basket",
+ "short_names": ["basket"],
"text": null,
"texts": null,
- "category": "Animals & Nature",
- "sort_order": 87,
- "added_in": "8.0",
+ "category": "Objects",
+ "subcategory": "household",
+ "sort_order": 1366,
+ "added_in": "11.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
- "name": "LION FACE",
- "unified": "1F981",
+ "name": "ROLL OF PAPER",
+ "unified": "1F9FB",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f981.png",
- "sheet_x": 42,
- "sheet_y": 50,
- "short_name": "lion_face",
- "short_names": ["lion_face"],
+ "image": "1f9fb.png",
+ "sheet_x": 53,
+ "sheet_y": 43,
+ "short_name": "roll_of_paper",
+ "short_names": ["roll_of_paper"],
"text": null,
"texts": null,
- "category": "Animals & Nature",
- "sort_order": 12,
- "added_in": "8.0",
+ "category": "Objects",
+ "subcategory": "household",
+ "sort_order": 1367,
+ "added_in": "11.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
- "name": "SCORPION",
- "unified": "1F982",
+ "name": "BAR OF SOAP",
+ "unified": "1F9FC",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f982.png",
- "sheet_x": 42,
- "sheet_y": 51,
- "short_name": "scorpion",
- "short_names": ["scorpion"],
+ "image": "1f9fc.png",
+ "sheet_x": 53,
+ "sheet_y": 44,
+ "short_name": "soap",
+ "short_names": ["soap"],
"text": null,
"texts": null,
- "category": "Animals & Nature",
- "sort_order": 100,
- "added_in": "8.0",
+ "category": "Objects",
+ "subcategory": "household",
+ "sort_order": 1369,
+ "added_in": "11.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
- "name": "TURKEY",
- "unified": "1F983",
+ "name": "SPONGE",
+ "unified": "1F9FD",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f983.png",
- "sheet_x": 42,
- "sheet_y": 52,
- "short_name": "turkey",
- "short_names": ["turkey"],
+ "image": "1f9fd.png",
+ "sheet_x": 53,
+ "sheet_y": 45,
+ "short_name": "sponge",
+ "short_names": ["sponge"],
"text": null,
"texts": null,
- "category": "Animals & Nature",
- "sort_order": 54,
- "added_in": "8.0",
+ "category": "Objects",
+ "subcategory": "household",
+ "sort_order": 1372,
+ "added_in": "11.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
- "name": "UNICORN FACE",
- "unified": "1F984",
+ "name": "RECEIPT",
+ "unified": "1F9FE",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f984.png",
- "sheet_x": 43,
- "sheet_y": 0,
- "short_name": "unicorn_face",
- "short_names": ["unicorn_face"],
+ "image": "1f9fe.png",
+ "sheet_x": 53,
+ "sheet_y": 46,
+ "short_name": "receipt",
+ "short_names": ["receipt"],
"text": null,
"texts": null,
- "category": "Animals & Nature",
- "sort_order": 18,
- "added_in": "8.0",
+ "category": "Objects",
+ "subcategory": "money",
+ "sort_order": 1260,
+ "added_in": "11.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
- "name": "EAGLE",
- "unified": "1F985",
+ "name": "NAZAR AMULET",
+ "unified": "1F9FF",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f985.png",
- "sheet_x": 43,
- "sheet_y": 1,
- "short_name": "eagle",
- "short_names": ["eagle"],
+ "image": "1f9ff.png",
+ "sheet_x": 53,
+ "sheet_y": 47,
+ "short_name": "nazar_amulet",
+ "short_names": ["nazar_amulet"],
"text": null,
"texts": null,
- "category": "Animals & Nature",
- "sort_order": 63,
- "added_in": "9.0",
+ "category": "Objects",
+ "subcategory": "other-object",
+ "sort_order": 1379,
+ "added_in": "11.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
- "name": "DUCK",
- "unified": "1F986",
+ "name": "BALLET SHOES",
+ "unified": "1FA70",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f986.png",
- "sheet_x": 43,
- "sheet_y": 2,
- "short_name": "duck",
- "short_names": ["duck"],
+ "image": "1fa70.png",
+ "sheet_x": 53,
+ "sheet_y": 48,
+ "short_name": "ballet_shoes",
+ "short_names": ["ballet_shoes"],
"text": null,
"texts": null,
- "category": "Animals & Nature",
- "sort_order": 64,
- "added_in": "9.0",
+ "category": "Objects",
+ "subcategory": "clothing",
+ "sort_order": 1156,
+ "added_in": "12.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
- "name": "BAT",
- "unified": "1F987",
+ "name": "ONE-PIECE SWIMSUIT",
+ "unified": "1FA71",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f987.png",
- "sheet_x": 43,
- "sheet_y": 3,
- "short_name": "bat",
- "short_names": ["bat"],
+ "image": "1fa71.png",
+ "sheet_x": 53,
+ "sheet_y": 49,
+ "short_name": "one-piece_swimsuit",
+ "short_names": ["one-piece_swimsuit"],
"text": null,
"texts": null,
- "category": "Animals & Nature",
- "sort_order": 47,
- "added_in": "9.0",
+ "category": "Objects",
+ "subcategory": "clothing",
+ "sort_order": 1138,
+ "added_in": "12.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
- "name": "SHARK",
- "unified": "1F988",
+ "name": "BRIEFS",
+ "unified": "1FA72",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f988.png",
- "sheet_x": 43,
- "sheet_y": 4,
- "short_name": "shark",
- "short_names": ["shark"],
+ "image": "1fa72.png",
+ "sheet_x": 53,
+ "sheet_y": 50,
+ "short_name": "briefs",
+ "short_names": ["briefs"],
"text": null,
"texts": null,
- "category": "Animals & Nature",
- "sort_order": 84,
- "added_in": "9.0",
+ "category": "Objects",
+ "subcategory": "clothing",
+ "sort_order": 1139,
+ "added_in": "12.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
- "name": "OWL",
- "unified": "1F989",
+ "name": "SHORTS",
+ "unified": "1FA73",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f989.png",
- "sheet_x": 43,
- "sheet_y": 5,
- "short_name": "owl",
- "short_names": ["owl"],
+ "image": "1fa73.png",
+ "sheet_x": 53,
+ "sheet_y": 51,
+ "short_name": "shorts",
+ "short_names": ["shorts"],
"text": null,
"texts": null,
- "category": "Animals & Nature",
- "sort_order": 66,
- "added_in": "9.0",
+ "category": "Objects",
+ "subcategory": "clothing",
+ "sort_order": 1140,
+ "added_in": "12.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
- "name": "FOX FACE",
- "unified": "1F98A",
+ "name": "THONG SANDAL",
+ "unified": "1FA74",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f98a.png",
- "sheet_x": 43,
- "sheet_y": 6,
- "short_name": "fox_face",
- "short_names": ["fox_face"],
+ "image": "1fa74.png",
+ "sheet_x": 53,
+ "sheet_y": 52,
+ "short_name": "thong_sandal",
+ "short_names": ["thong_sandal"],
"text": null,
"texts": null,
- "category": "Animals & Nature",
- "sort_order": 8,
- "added_in": "9.0",
+ "category": "Objects",
+ "subcategory": "clothing",
+ "sort_order": 1149,
+ "added_in": "13.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
- "name": "BUTTERFLY",
- "unified": "1F98B",
+ "name": "LIGHT BLUE HEART",
+ "unified": "1FA75",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f98b.png",
- "sheet_x": 43,
- "sheet_y": 7,
- "short_name": "butterfly",
- "short_names": ["butterfly"],
+ "image": "1fa75.png",
+ "sheet_x": 53,
+ "sheet_y": 53,
+ "short_name": "light_blue_heart",
+ "short_names": ["light_blue_heart"],
"text": null,
"texts": null,
- "category": "Animals & Nature",
- "sort_order": 92,
- "added_in": "9.0",
+ "category": "Smileys & Emotion",
+ "subcategory": "heart",
+ "sort_order": 147,
+ "added_in": "15.0",
"has_img_apple": true,
"has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_twitter": false,
+ "has_img_facebook": false
},
{
- "name": "DEER",
- "unified": "1F98C",
+ "name": "GREY HEART",
+ "unified": "1FA76",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f98c.png",
- "sheet_x": 43,
- "sheet_y": 8,
- "short_name": "deer",
- "short_names": ["deer"],
+ "image": "1fa76.png",
+ "sheet_x": 53,
+ "sheet_y": 54,
+ "short_name": "grey_heart",
+ "short_names": ["grey_heart"],
"text": null,
"texts": null,
- "category": "Animals & Nature",
- "sort_order": 20,
- "added_in": "9.0",
+ "category": "Smileys & Emotion",
+ "subcategory": "heart",
+ "sort_order": 151,
+ "added_in": "15.0",
"has_img_apple": true,
"has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_twitter": false,
+ "has_img_facebook": false
},
{
- "name": "GORILLA",
- "unified": "1F98D",
+ "name": "PINK HEART",
+ "unified": "1FA77",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f98d.png",
- "sheet_x": 43,
- "sheet_y": 9,
- "short_name": "gorilla",
- "short_names": ["gorilla"],
+ "image": "1fa77.png",
+ "sheet_x": 53,
+ "sheet_y": 55,
+ "short_name": "pink_heart",
+ "short_names": ["pink_heart"],
"text": null,
"texts": null,
- "category": "Animals & Nature",
- "sort_order": 3,
- "added_in": "9.0",
+ "category": "Smileys & Emotion",
+ "subcategory": "heart",
+ "sort_order": 142,
+ "added_in": "15.0",
"has_img_apple": true,
"has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_twitter": false,
+ "has_img_facebook": false
},
{
- "name": "LIZARD",
- "unified": "1F98E",
+ "name": "DROP OF BLOOD",
+ "unified": "1FA78",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f98e.png",
- "sheet_x": 43,
- "sheet_y": 10,
- "short_name": "lizard",
- "short_names": ["lizard"],
+ "image": "1fa78.png",
+ "sheet_x": 53,
+ "sheet_y": 56,
+ "short_name": "drop_of_blood",
+ "short_names": ["drop_of_blood"],
"text": null,
"texts": null,
- "category": "Animals & Nature",
- "sort_order": 72,
- "added_in": "9.0",
+ "category": "Objects",
+ "subcategory": "medical",
+ "sort_order": 1344,
+ "added_in": "12.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
- "name": "RHINOCEROS",
- "unified": "1F98F",
+ "name": "ADHESIVE BANDAGE",
+ "unified": "1FA79",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f98f.png",
- "sheet_x": 43,
- "sheet_y": 11,
- "short_name": "rhinoceros",
- "short_names": ["rhinoceros"],
+ "image": "1fa79.png",
+ "sheet_x": 53,
+ "sheet_y": 57,
+ "short_name": "adhesive_bandage",
+ "short_names": ["adhesive_bandage"],
"text": null,
"texts": null,
- "category": "Animals & Nature",
- "sort_order": 37,
- "added_in": "9.0",
+ "category": "Objects",
+ "subcategory": "medical",
+ "sort_order": 1346,
+ "added_in": "12.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
- "name": "SHRIMP",
- "unified": "1F990",
+ "name": "STETHOSCOPE",
+ "unified": "1FA7A",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f990.png",
- "sheet_x": 43,
- "sheet_y": 12,
- "short_name": "shrimp",
- "short_names": ["shrimp"],
+ "image": "1fa7a.png",
+ "sheet_x": 53,
+ "sheet_y": 58,
+ "short_name": "stethoscope",
+ "short_names": ["stethoscope"],
"text": null,
"texts": null,
- "category": "Animals & Nature",
- "sort_order": 89,
- "added_in": "9.0",
+ "category": "Objects",
+ "subcategory": "medical",
+ "sort_order": 1348,
+ "added_in": "12.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
- "name": "SQUID",
- "unified": "1F991",
+ "name": "X-RAY",
+ "unified": "1FA7B",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f991.png",
- "sheet_x": 43,
- "sheet_y": 13,
- "short_name": "squid",
- "short_names": ["squid"],
+ "image": "1fa7b.png",
+ "sheet_x": 53,
+ "sheet_y": 59,
+ "short_name": "x-ray",
+ "short_names": ["x-ray"],
"text": null,
"texts": null,
- "category": "Animals & Nature",
- "sort_order": 90,
- "added_in": "9.0",
+ "category": "Objects",
+ "subcategory": "medical",
+ "sort_order": 1349,
+ "added_in": "14.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
- "name": "GIRAFFE FACE",
- "unified": "1F992",
+ "name": "CRUTCH",
+ "unified": "1FA7C",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f992.png",
- "sheet_x": 43,
- "sheet_y": 14,
- "short_name": "giraffe_face",
- "short_names": ["giraffe_face"],
+ "image": "1fa7c.png",
+ "sheet_x": 53,
+ "sheet_y": 60,
+ "short_name": "crutch",
+ "short_names": ["crutch"],
"text": null,
"texts": null,
- "category": "Animals & Nature",
- "sort_order": 35,
- "added_in": "10.0",
+ "category": "Objects",
+ "subcategory": "medical",
+ "sort_order": 1347,
+ "added_in": "14.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
- "name": "ZEBRA FACE",
- "unified": "1F993",
+ "name": "YO-YO",
+ "unified": "1FA80",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f993.png",
- "sheet_x": 43,
- "sheet_y": 15,
- "short_name": "zebra_face",
- "short_names": ["zebra_face"],
+ "image": "1fa80.png",
+ "sheet_x": 54,
+ "sheet_y": 0,
+ "short_name": "yo-yo",
+ "short_names": ["yo-yo"],
"text": null,
"texts": null,
- "category": "Animals & Nature",
- "sort_order": 19,
- "added_in": "10.0",
+ "category": "Activities",
+ "subcategory": "game",
+ "sort_order": 1093,
+ "added_in": "12.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
- "name": "HEDGEHOG",
- "unified": "1F994",
+ "name": "KITE",
+ "unified": "1FA81",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f994.png",
- "sheet_x": 43,
- "sheet_y": 16,
- "short_name": "hedgehog",
- "short_names": ["hedgehog"],
+ "image": "1fa81.png",
+ "sheet_x": 54,
+ "sheet_y": 1,
+ "short_name": "kite",
+ "short_names": ["kite"],
"text": null,
"texts": null,
- "category": "Animals & Nature",
- "sort_order": 46,
- "added_in": "10.0",
+ "category": "Activities",
+ "subcategory": "game",
+ "sort_order": 1094,
+ "added_in": "12.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
- "name": "SAUROPOD",
- "unified": "1F995",
+ "name": "PARACHUTE",
+ "unified": "1FA82",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f995.png",
- "sheet_x": 43,
- "sheet_y": 17,
- "short_name": "sauropod",
- "short_names": ["sauropod"],
+ "image": "1fa82.png",
+ "sheet_x": 54,
+ "sheet_y": 2,
+ "short_name": "parachute",
+ "short_names": ["parachute"],
+ "text": null,
+ "texts": null,
+ "category": "Travel & Places",
+ "subcategory": "transport-air",
+ "sort_order": 949,
+ "added_in": "12.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "BOOMERANG",
+ "unified": "1FA83",
+ "non_qualified": null,
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1fa83.png",
+ "sheet_x": 54,
+ "sheet_y": 3,
+ "short_name": "boomerang",
+ "short_names": ["boomerang"],
"text": null,
"texts": null,
- "category": "Animals & Nature",
- "sort_order": 76,
- "added_in": "10.0",
+ "category": "Objects",
+ "subcategory": "tool",
+ "sort_order": 1319,
+ "added_in": "13.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
- "name": "T-REX",
- "unified": "1F996",
+ "name": "MAGIC WAND",
+ "unified": "1FA84",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f996.png",
- "sheet_x": 43,
- "sheet_y": 18,
- "short_name": "t-rex",
- "short_names": ["t-rex"],
+ "image": "1fa84.png",
+ "sheet_x": 54,
+ "sheet_y": 4,
+ "short_name": "magic_wand",
+ "short_names": ["magic_wand"],
"text": null,
"texts": null,
- "category": "Animals & Nature",
- "sort_order": 77,
- "added_in": "10.0",
+ "category": "Activities",
+ "subcategory": "game",
+ "sort_order": 1098,
+ "added_in": "13.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
- "name": "CRICKET",
- "unified": "1F997",
+ "name": "PINATA",
+ "unified": "1FA85",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f997.png",
- "sheet_x": 43,
- "sheet_y": 19,
- "short_name": "cricket",
- "short_names": ["cricket"],
+ "image": "1fa85.png",
+ "sheet_x": 54,
+ "sheet_y": 5,
+ "short_name": "pinata",
+ "short_names": ["pinata"],
"text": null,
"texts": null,
- "category": "Animals & Nature",
- "sort_order": 97,
- "added_in": "10.0",
+ "category": "Activities",
+ "subcategory": "game",
+ "sort_order": 1105,
+ "added_in": "13.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
- "name": "KANGAROO",
- "unified": "1F998",
+ "name": "NESTING DOLLS",
+ "unified": "1FA86",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f998.png",
- "sheet_x": 43,
- "sheet_y": 20,
- "short_name": "kangaroo",
- "short_names": ["kangaroo"],
+ "image": "1fa86.png",
+ "sheet_x": 54,
+ "sheet_y": 6,
+ "short_name": "nesting_dolls",
+ "short_names": ["nesting_dolls"],
"text": null,
"texts": null,
- "category": "Animals & Nature",
- "sort_order": 51,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "category": "Activities",
+ "subcategory": "game",
+ "sort_order": 1107,
+ "added_in": "13.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
},
{
- "name": "LLAMA",
- "unified": "1F999",
+ "name": "MARACAS",
+ "unified": "1FA87",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f999.png",
- "sheet_x": 43,
- "sheet_y": 21,
- "short_name": "llama",
- "short_names": ["llama"],
+ "image": "1fa87.png",
+ "sheet_x": 54,
+ "sheet_y": 7,
+ "short_name": "maracas",
+ "short_names": ["maracas"],
"text": null,
"texts": null,
- "category": "Animals & Nature",
- "sort_order": 34,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
+ "category": "Objects",
+ "subcategory": "musical-instrument",
+ "sort_order": 1197,
+ "added_in": "15.0",
+ "has_img_apple": true,
+ "has_img_google": true,
"has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": false
},
{
- "name": "PEACOCK",
- "unified": "1F99A",
+ "name": "FLUTE",
+ "unified": "1FA88",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f99a.png",
- "sheet_x": 43,
- "sheet_y": 22,
- "short_name": "peacock",
- "short_names": ["peacock"],
+ "image": "1fa88.png",
+ "sheet_x": 54,
+ "sheet_y": 8,
+ "short_name": "flute",
+ "short_names": ["flute"],
"text": null,
"texts": null,
- "category": "Animals & Nature",
- "sort_order": 67,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
+ "category": "Objects",
+ "subcategory": "musical-instrument",
+ "sort_order": 1198,
+ "added_in": "15.0",
+ "has_img_apple": true,
+ "has_img_google": true,
"has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": false
},
{
- "name": "HIPPOPOTAMUS",
- "unified": "1F99B",
+ "name": "RINGED PLANET",
+ "unified": "1FA90",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f99b.png",
- "sheet_x": 43,
- "sheet_y": 23,
- "short_name": "hippopotamus",
- "short_names": ["hippopotamus"],
+ "image": "1fa90.png",
+ "sheet_x": 54,
+ "sheet_y": 9,
+ "short_name": "ringed_planet",
+ "short_names": ["ringed_planet"],
"text": null,
"texts": null,
- "category": "Animals & Nature",
- "sort_order": 38,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "category": "Travel & Places",
+ "subcategory": "sky & weather",
+ "sort_order": 1007,
+ "added_in": "12.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
},
{
- "name": "PARROT",
- "unified": "1F99C",
+ "name": "CHAIR",
+ "unified": "1FA91",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f99c.png",
- "sheet_x": 43,
- "sheet_y": 24,
- "short_name": "parrot",
- "short_names": ["parrot"],
+ "image": "1fa91.png",
+ "sheet_x": 54,
+ "sheet_y": 10,
+ "short_name": "chair",
+ "short_names": ["chair"],
"text": null,
"texts": null,
- "category": "Animals & Nature",
- "sort_order": 68,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "category": "Objects",
+ "subcategory": "household",
+ "sort_order": 1356,
+ "added_in": "12.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
},
{
- "name": "RACCOON",
- "unified": "1F99D",
+ "name": "RAZOR",
+ "unified": "1FA92",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f99d.png",
- "sheet_x": 43,
- "sheet_y": 25,
- "short_name": "raccoon",
- "short_names": ["raccoon"],
+ "image": "1fa92.png",
+ "sheet_x": 54,
+ "sheet_y": 11,
+ "short_name": "razor",
+ "short_names": ["razor"],
"text": null,
"texts": null,
- "category": "Animals & Nature",
- "sort_order": 9,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "category": "Objects",
+ "subcategory": "household",
+ "sort_order": 1362,
+ "added_in": "12.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
},
{
- "name": "LOBSTER",
- "unified": "1F99E",
+ "name": "AXE",
+ "unified": "1FA93",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f99e.png",
- "sheet_x": 43,
- "sheet_y": 26,
- "short_name": "lobster",
- "short_names": ["lobster"],
+ "image": "1fa93.png",
+ "sheet_x": 54,
+ "sheet_y": 12,
+ "short_name": "axe",
+ "short_names": ["axe"],
"text": null,
"texts": null,
- "category": "Animals & Nature",
- "sort_order": 88,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "category": "Objects",
+ "subcategory": "tool",
+ "sort_order": 1312,
+ "added_in": "12.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
},
{
- "name": "MOSQUITO",
- "unified": "1F99F",
+ "name": "DIYA LAMP",
+ "unified": "1FA94",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f99f.png",
- "sheet_x": 43,
- "sheet_y": 27,
- "short_name": "mosquito",
- "short_names": ["mosquito"],
+ "image": "1fa94.png",
+ "sheet_x": 54,
+ "sheet_y": 13,
+ "short_name": "diya_lamp",
+ "short_names": ["diya_lamp"],
"text": null,
"texts": null,
- "category": "Animals & Nature",
- "sort_order": 101,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "category": "Objects",
+ "subcategory": "light & video",
+ "sort_order": 1234,
+ "added_in": "12.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
},
{
- "name": "MICROBE",
- "unified": "1F9A0",
+ "name": "BANJO",
+ "unified": "1FA95",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f9a0.png",
- "sheet_x": 43,
- "sheet_y": 28,
- "short_name": "microbe",
- "short_names": ["microbe"],
+ "image": "1fa95.png",
+ "sheet_x": 54,
+ "sheet_y": 14,
+ "short_name": "banjo",
+ "short_names": ["banjo"],
"text": null,
"texts": null,
- "category": "Animals & Nature",
- "sort_order": 102,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "category": "Objects",
+ "subcategory": "musical-instrument",
+ "sort_order": 1194,
+ "added_in": "12.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
},
{
- "name": "BADGER",
- "unified": "1F9A1",
+ "name": "MILITARY HELMET",
+ "unified": "1FA96",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f9a1.png",
- "sheet_x": 43,
- "sheet_y": 29,
- "short_name": "badger",
- "short_names": ["badger"],
+ "image": "1fa96.png",
+ "sheet_x": 54,
+ "sheet_y": 15,
+ "short_name": "military_helmet",
+ "short_names": ["military_helmet"],
"text": null,
"texts": null,
- "category": "Animals & Nature",
- "sort_order": 52,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "category": "Objects",
+ "subcategory": "clothing",
+ "sort_order": 1164,
+ "added_in": "13.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
},
{
- "name": "SWAN",
- "unified": "1F9A2",
+ "name": "ACCORDION",
+ "unified": "1FA97",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f9a2.png",
- "sheet_x": 43,
- "sheet_y": 30,
- "short_name": "swan",
- "short_names": ["swan"],
+ "image": "1fa97.png",
+ "sheet_x": 54,
+ "sheet_y": 16,
+ "short_name": "accordion",
+ "short_names": ["accordion"],
"text": null,
"texts": null,
- "category": "Animals & Nature",
- "sort_order": 65,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "category": "Objects",
+ "subcategory": "musical-instrument",
+ "sort_order": 1189,
+ "added_in": "13.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
},
{
- "name": "BONE",
- "unified": "1F9B4",
+ "name": "LONG DRUM",
+ "unified": "1FA98",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f9b4.png",
- "sheet_x": 43,
- "sheet_y": 31,
- "short_name": "bone",
- "short_names": ["bone"],
+ "image": "1fa98.png",
+ "sheet_x": 54,
+ "sheet_y": 17,
+ "short_name": "long_drum",
+ "short_names": ["long_drum"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 398,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "category": "Objects",
+ "subcategory": "musical-instrument",
+ "sort_order": 1196,
+ "added_in": "13.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
},
{
- "name": "LEG",
- "unified": "1F9B5",
+ "name": "COIN",
+ "unified": "1FA99",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f9b5.png",
- "sheet_x": 43,
- "sheet_y": 32,
- "short_name": "leg",
- "short_names": ["leg"],
+ "image": "1fa99.png",
+ "sheet_x": 54,
+ "sheet_y": 18,
+ "short_name": "coin",
+ "short_names": ["coin"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 358,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F9B5-1F3FB",
- "non_qualified": null,
- "image": "1f9b5-1f3fb.png",
- "sheet_x": 43,
- "sheet_y": 33,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F9B5-1F3FC",
- "non_qualified": null,
- "image": "1f9b5-1f3fc.png",
- "sheet_x": 43,
- "sheet_y": 34,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F9B5-1F3FD",
- "non_qualified": null,
- "image": "1f9b5-1f3fd.png",
- "sheet_x": 43,
- "sheet_y": 35,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F9B5-1F3FE",
- "non_qualified": null,
- "image": "1f9b5-1f3fe.png",
- "sheet_x": 43,
- "sheet_y": 36,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F9B5-1F3FF",
- "non_qualified": null,
- "image": "1f9b5-1f3ff.png",
- "sheet_x": 43,
- "sheet_y": 37,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- }
+ "category": "Objects",
+ "subcategory": "money",
+ "sort_order": 1253,
+ "added_in": "13.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
},
{
- "name": "FOOT",
- "unified": "1F9B6",
+ "name": "CARPENTRY SAW",
+ "unified": "1FA9A",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f9b6.png",
- "sheet_x": 43,
- "sheet_y": 38,
- "short_name": "foot",
- "short_names": ["foot"],
+ "image": "1fa9a.png",
+ "sheet_x": 54,
+ "sheet_y": 19,
+ "short_name": "carpentry_saw",
+ "short_names": ["carpentry_saw"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 359,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F9B6-1F3FB",
- "non_qualified": null,
- "image": "1f9b6-1f3fb.png",
- "sheet_x": 43,
- "sheet_y": 39,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F9B6-1F3FC",
- "non_qualified": null,
- "image": "1f9b6-1f3fc.png",
- "sheet_x": 43,
- "sheet_y": 40,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F9B6-1F3FD",
- "non_qualified": null,
- "image": "1f9b6-1f3fd.png",
- "sheet_x": 43,
- "sheet_y": 41,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F9B6-1F3FE",
- "non_qualified": null,
- "image": "1f9b6-1f3fe.png",
- "sheet_x": 43,
- "sheet_y": 42,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F9B6-1F3FF",
- "non_qualified": null,
- "image": "1f9b6-1f3ff.png",
- "sheet_x": 43,
- "sheet_y": 43,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- }
+ "category": "Objects",
+ "subcategory": "tool",
+ "sort_order": 1322,
+ "added_in": "13.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
},
{
- "name": "TOOTH",
- "unified": "1F9B7",
+ "name": "SCREWDRIVER",
+ "unified": "1FA9B",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f9b7.png",
- "sheet_x": 43,
- "sheet_y": 44,
- "short_name": "tooth",
- "short_names": ["tooth"],
+ "image": "1fa9b.png",
+ "sheet_x": 54,
+ "sheet_y": 20,
+ "short_name": "screwdriver",
+ "short_names": ["screwdriver"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 399,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "category": "Objects",
+ "subcategory": "tool",
+ "sort_order": 1324,
+ "added_in": "13.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
},
{
- "name": null,
- "unified": "1F9B8-200D-1F468",
+ "name": "LADDER",
+ "unified": "1FA9C",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f9b8-200d-1f468.png",
- "sheet_x": 43,
- "sheet_y": 45,
- "short_name": "man_superhero",
- "short_names": ["man_superhero"],
+ "image": "1fa9c.png",
+ "sheet_x": 54,
+ "sheet_y": 21,
+ "short_name": "ladder",
+ "short_names": ["ladder"],
"text": null,
"texts": null,
- "category": null,
- "sort_order": null,
- "added_in": null,
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F9B8-1F3FB-200D-1F468",
- "non_qualified": null,
- "image": "1f9b8-1f3fb-200d-1f468.png",
- "sheet_x": 43,
- "sheet_y": 46,
- "added_in": null,
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F9B8-1F3FC-200D-1F468",
- "non_qualified": null,
- "image": "1f9b8-1f3fc-200d-1f468.png",
- "sheet_x": 43,
- "sheet_y": 47,
- "added_in": null,
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F9B8-1F3FD-200D-1F468",
- "non_qualified": null,
- "image": "1f9b8-1f3fd-200d-1f468.png",
- "sheet_x": 43,
- "sheet_y": 48,
- "added_in": null,
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F9B8-1F3FE-200D-1F468",
- "non_qualified": null,
- "image": "1f9b8-1f3fe-200d-1f468.png",
- "sheet_x": 43,
- "sheet_y": 49,
- "added_in": null,
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F9B8-1F3FF-200D-1F468",
- "non_qualified": null,
- "image": "1f9b8-1f3ff-200d-1f468.png",
- "sheet_x": 43,
- "sheet_y": 50,
- "added_in": null,
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- }
+ "category": "Objects",
+ "subcategory": "tool",
+ "sort_order": 1335,
+ "added_in": "13.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
},
{
- "name": null,
- "unified": "1F9B8-200D-1F469",
+ "name": "HOOK",
+ "unified": "1FA9D",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f9b8-200d-1f469.png",
- "sheet_x": 43,
- "sheet_y": 51,
- "short_name": "woman_superhero",
- "short_names": ["woman_superhero"],
+ "image": "1fa9d.png",
+ "sheet_x": 54,
+ "sheet_y": 22,
+ "short_name": "hook",
+ "short_names": ["hook"],
"text": null,
"texts": null,
- "category": null,
- "sort_order": null,
- "added_in": null,
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F9B8-1F3FB-200D-1F469",
- "non_qualified": null,
- "image": "1f9b8-1f3fb-200d-1f469.png",
- "sheet_x": 43,
- "sheet_y": 52,
- "added_in": null,
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F9B8-1F3FC-200D-1F469",
- "non_qualified": null,
- "image": "1f9b8-1f3fc-200d-1f469.png",
- "sheet_x": 44,
- "sheet_y": 0,
- "added_in": null,
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F9B8-1F3FD-200D-1F469",
- "non_qualified": null,
- "image": "1f9b8-1f3fd-200d-1f469.png",
- "sheet_x": 44,
- "sheet_y": 1,
- "added_in": null,
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F9B8-1F3FE-200D-1F469",
- "non_qualified": null,
- "image": "1f9b8-1f3fe-200d-1f469.png",
- "sheet_x": 44,
- "sheet_y": 2,
- "added_in": null,
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F9B8-1F3FF-200D-1F469",
- "non_qualified": null,
- "image": "1f9b8-1f3ff-200d-1f469.png",
- "sheet_x": 44,
- "sheet_y": 3,
- "added_in": null,
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- }
+ "category": "Objects",
+ "subcategory": "tool",
+ "sort_order": 1332,
+ "added_in": "13.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
},
{
- "name": null,
- "unified": "1F9B9-200D-1F468",
+ "name": "MIRROR",
+ "unified": "1FA9E",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f9b9-200d-1f468.png",
- "sheet_x": 44,
- "sheet_y": 4,
- "short_name": "man_supervillain",
- "short_names": ["man_supervillain"],
- "text": null,
- "texts": null,
- "category": null,
- "sort_order": null,
- "added_in": null,
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F9B9-1F3FB-200D-1F468",
- "non_qualified": null,
- "image": "1f9b9-1f3fb-200d-1f468.png",
- "sheet_x": 44,
- "sheet_y": 5,
- "added_in": null,
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F9B9-1F3FC-200D-1F468",
- "non_qualified": null,
- "image": "1f9b9-1f3fc-200d-1f468.png",
- "sheet_x": 44,
- "sheet_y": 6,
- "added_in": null,
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F9B9-1F3FD-200D-1F468",
- "non_qualified": null,
- "image": "1f9b9-1f3fd-200d-1f468.png",
- "sheet_x": 44,
- "sheet_y": 7,
- "added_in": null,
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F9B9-1F3FE-200D-1F468",
- "non_qualified": null,
- "image": "1f9b9-1f3fe-200d-1f468.png",
- "sheet_x": 44,
- "sheet_y": 8,
- "added_in": null,
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F9B9-1F3FF-200D-1F468",
- "non_qualified": null,
- "image": "1f9b9-1f3ff-200d-1f468.png",
- "sheet_x": 44,
- "sheet_y": 9,
- "added_in": null,
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- }
+ "image": "1fa9e.png",
+ "sheet_x": 54,
+ "sheet_y": 23,
+ "short_name": "mirror",
+ "short_names": ["mirror"],
+ "text": null,
+ "texts": null,
+ "category": "Objects",
+ "subcategory": "household",
+ "sort_order": 1352,
+ "added_in": "13.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
},
{
- "name": null,
- "unified": "1F9B9-200D-1F469",
+ "name": "WINDOW",
+ "unified": "1FA9F",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f9b9-200d-1f469.png",
- "sheet_x": 44,
- "sheet_y": 10,
- "short_name": "woman_supervillain",
- "short_names": ["woman_supervillain"],
+ "image": "1fa9f.png",
+ "sheet_x": 54,
+ "sheet_y": 24,
+ "short_name": "window",
+ "short_names": ["window"],
"text": null,
"texts": null,
- "category": null,
- "sort_order": null,
- "added_in": null,
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F9B9-1F3FB-200D-1F469",
- "non_qualified": null,
- "image": "1f9b9-1f3fb-200d-1f469.png",
- "sheet_x": 44,
- "sheet_y": 11,
- "added_in": null,
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F9B9-1F3FC-200D-1F469",
- "non_qualified": null,
- "image": "1f9b9-1f3fc-200d-1f469.png",
- "sheet_x": 44,
- "sheet_y": 12,
- "added_in": null,
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F9B9-1F3FD-200D-1F469",
- "non_qualified": null,
- "image": "1f9b9-1f3fd-200d-1f469.png",
- "sheet_x": 44,
- "sheet_y": 13,
- "added_in": null,
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F9B9-1F3FE-200D-1F469",
- "non_qualified": null,
- "image": "1f9b9-1f3fe-200d-1f469.png",
- "sheet_x": 44,
- "sheet_y": 14,
- "added_in": null,
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F9B9-1F3FF-200D-1F469",
- "non_qualified": null,
- "image": "1f9b9-1f3ff-200d-1f469.png",
- "sheet_x": 44,
- "sheet_y": 15,
- "added_in": null,
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- }
+ "category": "Objects",
+ "subcategory": "household",
+ "sort_order": 1353,
+ "added_in": "13.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
},
{
- "name": "CHEESE WEDGE",
- "unified": "1F9C0",
+ "name": "PLUNGER",
+ "unified": "1FAA0",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f9c0.png",
- "sheet_x": 44,
- "sheet_y": 16,
- "short_name": "cheese_wedge",
- "short_names": ["cheese_wedge"],
+ "image": "1faa0.png",
+ "sheet_x": 54,
+ "sheet_y": 25,
+ "short_name": "plunger",
+ "short_names": ["plunger"],
"text": null,
"texts": null,
- "category": "Food & Drink",
- "sort_order": 36,
- "added_in": "8.0",
+ "category": "Objects",
+ "subcategory": "household",
+ "sort_order": 1358,
+ "added_in": "13.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
- "name": "CUPCAKE",
- "unified": "1F9C1",
+ "name": "SEWING NEEDLE",
+ "unified": "1FAA1",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f9c1.png",
- "sheet_x": 44,
- "sheet_y": 17,
- "short_name": "cupcake",
- "short_names": ["cupcake"],
+ "image": "1faa1.png",
+ "sheet_x": 54,
+ "sheet_y": 26,
+ "short_name": "sewing_needle",
+ "short_names": ["sewing_needle"],
"text": null,
"texts": null,
- "category": "Food & Drink",
- "sort_order": 82,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "category": "Activities",
+ "subcategory": "arts & crafts",
+ "sort_order": 1120,
+ "added_in": "13.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
},
{
- "name": "SALT SHAKER",
- "unified": "1F9C2",
+ "name": "KNOT",
+ "unified": "1FAA2",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f9c2.png",
- "sheet_x": 44,
- "sheet_y": 18,
- "short_name": "salt",
- "short_names": ["salt"],
+ "image": "1faa2.png",
+ "sheet_x": 54,
+ "sheet_y": 27,
+ "short_name": "knot",
+ "short_names": ["knot"],
"text": null,
"texts": null,
- "category": "Food & Drink",
- "sort_order": 56,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "category": "Activities",
+ "subcategory": "arts & crafts",
+ "sort_order": 1122,
+ "added_in": "13.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
},
{
- "name": "FACE WITH MONOCLE",
- "unified": "1F9D0",
+ "name": "BUCKET",
+ "unified": "1FAA3",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f9d0.png",
- "sheet_x": 44,
- "sheet_y": 19,
- "short_name": "face_with_monocle",
- "short_names": ["face_with_monocle"],
+ "image": "1faa3.png",
+ "sheet_x": 54,
+ "sheet_y": 28,
+ "short_name": "bucket",
+ "short_names": ["bucket"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 88,
- "added_in": "10.0",
+ "category": "Objects",
+ "subcategory": "household",
+ "sort_order": 1368,
+ "added_in": "13.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
- "name": "ADULT",
- "unified": "1F9D1",
+ "name": "MOUSE TRAP",
+ "unified": "1FAA4",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f9d1.png",
- "sheet_x": 44,
- "sheet_y": 20,
- "short_name": "adult",
- "short_names": ["adult"],
+ "image": "1faa4.png",
+ "sheet_x": 54,
+ "sheet_y": 29,
+ "short_name": "mouse_trap",
+ "short_names": ["mouse_trap"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 118,
- "added_in": "10.0",
+ "category": "Objects",
+ "subcategory": "household",
+ "sort_order": 1361,
+ "added_in": "13.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F9D1-1F3FB",
- "non_qualified": null,
- "image": "1f9d1-1f3fb.png",
- "sheet_x": 44,
- "sheet_y": 21,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F9D1-1F3FC",
- "non_qualified": null,
- "image": "1f9d1-1f3fc.png",
- "sheet_x": 44,
- "sheet_y": 22,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F9D1-1F3FD",
- "non_qualified": null,
- "image": "1f9d1-1f3fd.png",
- "sheet_x": 44,
- "sheet_y": 23,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F9D1-1F3FE",
- "non_qualified": null,
- "image": "1f9d1-1f3fe.png",
- "sheet_x": 44,
- "sheet_y": 24,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F9D1-1F3FF",
- "non_qualified": null,
- "image": "1f9d1-1f3ff.png",
- "sheet_x": 44,
- "sheet_y": 25,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- }
+ "has_img_facebook": true
},
{
- "name": "CHILD",
- "unified": "1F9D2",
+ "name": "TOOTHBRUSH",
+ "unified": "1FAA5",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f9d2.png",
- "sheet_x": 44,
- "sheet_y": 26,
- "short_name": "child",
- "short_names": ["child"],
+ "image": "1faa5.png",
+ "sheet_x": 54,
+ "sheet_y": 30,
+ "short_name": "toothbrush",
+ "short_names": ["toothbrush"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 115,
- "added_in": "10.0",
+ "category": "Objects",
+ "subcategory": "household",
+ "sort_order": 1371,
+ "added_in": "13.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F9D2-1F3FB",
- "non_qualified": null,
- "image": "1f9d2-1f3fb.png",
- "sheet_x": 44,
- "sheet_y": 27,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F9D2-1F3FC",
- "non_qualified": null,
- "image": "1f9d2-1f3fc.png",
- "sheet_x": 44,
- "sheet_y": 28,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F9D2-1F3FD",
- "non_qualified": null,
- "image": "1f9d2-1f3fd.png",
- "sheet_x": 44,
- "sheet_y": 29,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F9D2-1F3FE",
- "non_qualified": null,
- "image": "1f9d2-1f3fe.png",
- "sheet_x": 44,
- "sheet_y": 30,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F9D2-1F3FF",
- "non_qualified": null,
- "image": "1f9d2-1f3ff.png",
- "sheet_x": 44,
- "sheet_y": 31,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- }
+ "has_img_facebook": true
},
{
- "name": "OLDER ADULT",
- "unified": "1F9D3",
+ "name": "HEADSTONE",
+ "unified": "1FAA6",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f9d3.png",
- "sheet_x": 44,
- "sheet_y": 32,
- "short_name": "older_adult",
- "short_names": ["older_adult"],
+ "image": "1faa6.png",
+ "sheet_x": 54,
+ "sheet_y": 31,
+ "short_name": "headstone",
+ "short_names": ["headstone"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 121,
- "added_in": "10.0",
+ "category": "Objects",
+ "subcategory": "other-object",
+ "sort_order": 1377,
+ "added_in": "13.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F9D3-1F3FB",
- "non_qualified": null,
- "image": "1f9d3-1f3fb.png",
- "sheet_x": 44,
- "sheet_y": 33,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F9D3-1F3FC",
- "non_qualified": null,
- "image": "1f9d3-1f3fc.png",
- "sheet_x": 44,
- "sheet_y": 34,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F9D3-1F3FD",
- "non_qualified": null,
- "image": "1f9d3-1f3fd.png",
- "sheet_x": 44,
- "sheet_y": 35,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F9D3-1F3FE",
- "non_qualified": null,
- "image": "1f9d3-1f3fe.png",
- "sheet_x": 44,
- "sheet_y": 36,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F9D3-1F3FF",
- "non_qualified": null,
- "image": "1f9d3-1f3ff.png",
- "sheet_x": 44,
- "sheet_y": 37,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- }
+ "has_img_facebook": true
},
{
- "name": "BEARDED PERSON",
- "unified": "1F9D4",
+ "name": "PLACARD",
+ "unified": "1FAA7",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f9d4.png",
- "sheet_x": 44,
- "sheet_y": 38,
- "short_name": "bearded_person",
- "short_names": ["bearded_person"],
+ "image": "1faa7.png",
+ "sheet_x": 54,
+ "sheet_y": 32,
+ "short_name": "placard",
+ "short_names": ["placard"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 175,
- "added_in": "10.0",
+ "category": "Objects",
+ "subcategory": "other-object",
+ "sort_order": 1382,
+ "added_in": "13.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F9D4-1F3FB",
- "non_qualified": null,
- "image": "1f9d4-1f3fb.png",
- "sheet_x": 44,
- "sheet_y": 39,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F9D4-1F3FC",
- "non_qualified": null,
- "image": "1f9d4-1f3fc.png",
- "sheet_x": 44,
- "sheet_y": 40,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F9D4-1F3FD",
- "non_qualified": null,
- "image": "1f9d4-1f3fd.png",
- "sheet_x": 44,
- "sheet_y": 41,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F9D4-1F3FE",
- "non_qualified": null,
- "image": "1f9d4-1f3fe.png",
- "sheet_x": 44,
- "sheet_y": 42,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F9D4-1F3FF",
- "non_qualified": null,
- "image": "1f9d4-1f3ff.png",
- "sheet_x": 44,
- "sheet_y": 43,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- }
+ "has_img_facebook": true
},
{
- "name": "PERSON WITH HEADSCARF",
- "unified": "1F9D5",
+ "name": "ROCK",
+ "unified": "1FAA8",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f9d5.png",
- "sheet_x": 44,
- "sheet_y": 44,
- "short_name": "person_with_headscarf",
- "short_names": ["person_with_headscarf"],
+ "image": "1faa8.png",
+ "sheet_x": 54,
+ "sheet_y": 33,
+ "short_name": "rock",
+ "short_names": ["rock"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 174,
- "added_in": "10.0",
+ "category": "Travel & Places",
+ "subcategory": "place-building",
+ "sort_order": 840,
+ "added_in": "13.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F9D5-1F3FB",
- "non_qualified": null,
- "image": "1f9d5-1f3fb.png",
- "sheet_x": 44,
- "sheet_y": 45,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F9D5-1F3FC",
- "non_qualified": null,
- "image": "1f9d5-1f3fc.png",
- "sheet_x": 44,
- "sheet_y": 46,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F9D5-1F3FD",
- "non_qualified": null,
- "image": "1f9d5-1f3fd.png",
- "sheet_x": 44,
- "sheet_y": 47,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F9D5-1F3FE",
- "non_qualified": null,
- "image": "1f9d5-1f3fe.png",
- "sheet_x": 44,
- "sheet_y": 48,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F9D5-1F3FF",
- "non_qualified": null,
- "image": "1f9d5-1f3ff.png",
- "sheet_x": 44,
- "sheet_y": 49,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- }
- }
+ "has_img_facebook": true
},
{
- "name": null,
- "unified": "1F9D6-200D-2640-FE0F",
- "non_qualified": "1F9D6-200D-2640",
+ "name": "MIRROR BALL",
+ "unified": "1FAA9",
+ "non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f9d6-200d-2640-fe0f.png",
- "sheet_x": 44,
- "sheet_y": 50,
- "short_name": "woman_in_steamy_room",
- "short_names": ["woman_in_steamy_room"],
+ "image": "1faa9.png",
+ "sheet_x": 54,
+ "sheet_y": 34,
+ "short_name": "mirror_ball",
+ "short_names": ["mirror_ball"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 260,
- "added_in": "10.0",
+ "category": "Activities",
+ "subcategory": "game",
+ "sort_order": 1106,
+ "added_in": "14.0",
"has_img_apple": true,
"has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F9D6-1F3FB-200D-2640-FE0F",
- "non_qualified": "1F9D6-1F3FB-200D-2640",
- "image": "1f9d6-1f3fb-200d-2640-fe0f.png",
- "sheet_x": 44,
- "sheet_y": 51,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F9D6-1F3FC-200D-2640-FE0F",
- "non_qualified": "1F9D6-1F3FC-200D-2640",
- "image": "1f9d6-1f3fc-200d-2640-fe0f.png",
- "sheet_x": 44,
- "sheet_y": 52,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F9D6-1F3FD-200D-2640-FE0F",
- "non_qualified": "1F9D6-1F3FD-200D-2640",
- "image": "1f9d6-1f3fd-200d-2640-fe0f.png",
- "sheet_x": 45,
- "sheet_y": 0,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F9D6-1F3FE-200D-2640-FE0F",
- "non_qualified": "1F9D6-1F3FE-200D-2640",
- "image": "1f9d6-1f3fe-200d-2640-fe0f.png",
- "sheet_x": 45,
- "sheet_y": 1,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F9D6-1F3FF-200D-2640-FE0F",
- "non_qualified": "1F9D6-1F3FF-200D-2640",
- "image": "1f9d6-1f3ff-200d-2640-fe0f.png",
- "sheet_x": 45,
- "sheet_y": 2,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- }
+ "has_img_twitter": true,
+ "has_img_facebook": true
},
{
- "name": null,
- "unified": "1F9D6-200D-2642-FE0F",
- "non_qualified": "1F9D6-200D-2642",
+ "name": "IDENTIFICATION CARD",
+ "unified": "1FAAA",
+ "non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f9d6-200d-2642-fe0f.png",
- "sheet_x": 45,
- "sheet_y": 3,
- "short_name": "man_in_steamy_room",
- "short_names": ["man_in_steamy_room"],
+ "image": "1faaa.png",
+ "sheet_x": 54,
+ "sheet_y": 35,
+ "short_name": "identification_card",
+ "short_names": ["identification_card"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 261,
- "added_in": "10.0",
+ "category": "Objects",
+ "subcategory": "other-object",
+ "sort_order": 1383,
+ "added_in": "14.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F9D6-1F3FB-200D-2642-FE0F",
- "non_qualified": "1F9D6-1F3FB-200D-2642",
- "image": "1f9d6-1f3fb-200d-2642-fe0f.png",
- "sheet_x": 45,
- "sheet_y": 4,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false,
- "obsoletes": "1F9D6-1F3FB"
- },
- "1F3FC": {
- "unified": "1F9D6-1F3FC-200D-2642-FE0F",
- "non_qualified": "1F9D6-1F3FC-200D-2642",
- "image": "1f9d6-1f3fc-200d-2642-fe0f.png",
- "sheet_x": 45,
- "sheet_y": 5,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false,
- "obsoletes": "1F9D6-1F3FC"
- },
- "1F3FD": {
- "unified": "1F9D6-1F3FD-200D-2642-FE0F",
- "non_qualified": "1F9D6-1F3FD-200D-2642",
- "image": "1f9d6-1f3fd-200d-2642-fe0f.png",
- "sheet_x": 45,
- "sheet_y": 6,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false,
- "obsoletes": "1F9D6-1F3FD"
- },
- "1F3FE": {
- "unified": "1F9D6-1F3FE-200D-2642-FE0F",
- "non_qualified": "1F9D6-1F3FE-200D-2642",
- "image": "1f9d6-1f3fe-200d-2642-fe0f.png",
- "sheet_x": 45,
- "sheet_y": 7,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false,
- "obsoletes": "1F9D6-1F3FE"
- },
- "1F3FF": {
- "unified": "1F9D6-1F3FF-200D-2642-FE0F",
- "non_qualified": "1F9D6-1F3FF-200D-2642",
- "image": "1f9d6-1f3ff-200d-2642-fe0f.png",
- "sheet_x": 45,
- "sheet_y": 8,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false,
- "obsoletes": "1F9D6-1F3FF"
- }
- },
- "obsoletes": "1F9D6"
+ "has_img_facebook": true
},
{
- "name": "PERSON IN STEAMY ROOM",
- "unified": "1F9D6",
+ "name": "LOW BATTERY",
+ "unified": "1FAAB",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f9d6.png",
- "sheet_x": 45,
- "sheet_y": 9,
- "short_name": "person_in_steamy_room",
- "short_names": ["person_in_steamy_room"],
+ "image": "1faab.png",
+ "sheet_x": 54,
+ "sheet_y": 36,
+ "short_name": "low_battery",
+ "short_names": ["low_battery"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 259,
- "added_in": "10.0",
+ "category": "Objects",
+ "subcategory": "computer",
+ "sort_order": 1206,
+ "added_in": "14.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F9D6-1F3FB",
- "non_qualified": null,
- "image": "1f9d6-1f3fb.png",
- "sheet_x": 45,
- "sheet_y": 10,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "obsoleted_by": "1F9D6-1F3FB-200D-2642-FE0F"
- },
- "1F3FC": {
- "unified": "1F9D6-1F3FC",
- "non_qualified": null,
- "image": "1f9d6-1f3fc.png",
- "sheet_x": 45,
- "sheet_y": 11,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "obsoleted_by": "1F9D6-1F3FC-200D-2642-FE0F"
- },
- "1F3FD": {
- "unified": "1F9D6-1F3FD",
- "non_qualified": null,
- "image": "1f9d6-1f3fd.png",
- "sheet_x": 45,
- "sheet_y": 12,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "obsoleted_by": "1F9D6-1F3FD-200D-2642-FE0F"
- },
- "1F3FE": {
- "unified": "1F9D6-1F3FE",
- "non_qualified": null,
- "image": "1f9d6-1f3fe.png",
- "sheet_x": 45,
- "sheet_y": 13,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "obsoleted_by": "1F9D6-1F3FE-200D-2642-FE0F"
- },
- "1F3FF": {
- "unified": "1F9D6-1F3FF",
- "non_qualified": null,
- "image": "1f9d6-1f3ff.png",
- "sheet_x": 45,
- "sheet_y": 14,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "obsoleted_by": "1F9D6-1F3FF-200D-2642-FE0F"
- }
- },
- "obsoleted_by": "1F9D6-200D-2642-FE0F"
+ "has_img_facebook": true
},
{
- "name": null,
- "unified": "1F9D7-200D-2640-FE0F",
- "non_qualified": "1F9D7-200D-2640",
+ "name": "HAMSA",
+ "unified": "1FAAC",
+ "non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f9d7-200d-2640-fe0f.png",
- "sheet_x": 45,
- "sheet_y": 15,
- "short_name": "woman_climbing",
- "short_names": ["woman_climbing"],
+ "image": "1faac.png",
+ "sheet_x": 54,
+ "sheet_y": 37,
+ "short_name": "hamsa",
+ "short_names": ["hamsa"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 263,
- "added_in": "10.0",
+ "category": "Objects",
+ "subcategory": "other-object",
+ "sort_order": 1380,
+ "added_in": "14.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F9D7-1F3FB-200D-2640-FE0F",
- "non_qualified": "1F9D7-1F3FB-200D-2640",
- "image": "1f9d7-1f3fb-200d-2640-fe0f.png",
- "sheet_x": 45,
- "sheet_y": 16,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false,
- "obsoletes": "1F9D7-1F3FB"
- },
- "1F3FC": {
- "unified": "1F9D7-1F3FC-200D-2640-FE0F",
- "non_qualified": "1F9D7-1F3FC-200D-2640",
- "image": "1f9d7-1f3fc-200d-2640-fe0f.png",
- "sheet_x": 45,
- "sheet_y": 17,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false,
- "obsoletes": "1F9D7-1F3FC"
- },
- "1F3FD": {
- "unified": "1F9D7-1F3FD-200D-2640-FE0F",
- "non_qualified": "1F9D7-1F3FD-200D-2640",
- "image": "1f9d7-1f3fd-200d-2640-fe0f.png",
- "sheet_x": 45,
- "sheet_y": 18,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false,
- "obsoletes": "1F9D7-1F3FD"
- },
- "1F3FE": {
- "unified": "1F9D7-1F3FE-200D-2640-FE0F",
- "non_qualified": "1F9D7-1F3FE-200D-2640",
- "image": "1f9d7-1f3fe-200d-2640-fe0f.png",
- "sheet_x": 45,
- "sheet_y": 19,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false,
- "obsoletes": "1F9D7-1F3FE"
- },
- "1F3FF": {
- "unified": "1F9D7-1F3FF-200D-2640-FE0F",
- "non_qualified": "1F9D7-1F3FF-200D-2640",
- "image": "1f9d7-1f3ff-200d-2640-fe0f.png",
- "sheet_x": 45,
- "sheet_y": 20,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false,
- "obsoletes": "1F9D7-1F3FF"
- }
- },
- "obsoletes": "1F9D7"
+ "has_img_facebook": true
},
{
- "name": null,
- "unified": "1F9D7-200D-2642-FE0F",
- "non_qualified": "1F9D7-200D-2642",
+ "name": "FOLDING HAND FAN",
+ "unified": "1FAAD",
+ "non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f9d7-200d-2642-fe0f.png",
- "sheet_x": 45,
- "sheet_y": 21,
- "short_name": "man_climbing",
- "short_names": ["man_climbing"],
+ "image": "1faad.png",
+ "sheet_x": 54,
+ "sheet_y": 38,
+ "short_name": "folding_hand_fan",
+ "short_names": ["folding_hand_fan"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 264,
- "added_in": "10.0",
+ "category": "Objects",
+ "subcategory": "clothing",
+ "sort_order": 1143,
+ "added_in": "15.0",
"has_img_apple": true,
"has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F9D7-1F3FB-200D-2642-FE0F",
- "non_qualified": "1F9D7-1F3FB-200D-2642",
- "image": "1f9d7-1f3fb-200d-2642-fe0f.png",
- "sheet_x": 45,
- "sheet_y": 22,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F9D7-1F3FC-200D-2642-FE0F",
- "non_qualified": "1F9D7-1F3FC-200D-2642",
- "image": "1f9d7-1f3fc-200d-2642-fe0f.png",
- "sheet_x": 45,
- "sheet_y": 23,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F9D7-1F3FD-200D-2642-FE0F",
- "non_qualified": "1F9D7-1F3FD-200D-2642",
- "image": "1f9d7-1f3fd-200d-2642-fe0f.png",
- "sheet_x": 45,
- "sheet_y": 24,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F9D7-1F3FE-200D-2642-FE0F",
- "non_qualified": "1F9D7-1F3FE-200D-2642",
- "image": "1f9d7-1f3fe-200d-2642-fe0f.png",
- "sheet_x": 45,
- "sheet_y": 25,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F9D7-1F3FF-200D-2642-FE0F",
- "non_qualified": "1F9D7-1F3FF-200D-2642",
- "image": "1f9d7-1f3ff-200d-2642-fe0f.png",
- "sheet_x": 45,
- "sheet_y": 26,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- }
+ "has_img_twitter": false,
+ "has_img_facebook": false
},
{
- "name": "PERSON CLIMBING",
- "unified": "1F9D7",
+ "name": "HAIR PICK",
+ "unified": "1FAAE",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f9d7.png",
- "sheet_x": 45,
- "sheet_y": 27,
- "short_name": "person_climbing",
- "short_names": ["person_climbing"],
+ "image": "1faae.png",
+ "sheet_x": 54,
+ "sheet_y": 39,
+ "short_name": "hair_pick",
+ "short_names": ["hair_pick"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 262,
- "added_in": "10.0",
+ "category": "Objects",
+ "subcategory": "clothing",
+ "sort_order": 1158,
+ "added_in": "15.0",
"has_img_apple": true,
"has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F9D7-1F3FB",
- "non_qualified": null,
- "image": "1f9d7-1f3fb.png",
- "sheet_x": 45,
- "sheet_y": 28,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "obsoleted_by": "1F9D7-1F3FB-200D-2640-FE0F"
- },
- "1F3FC": {
- "unified": "1F9D7-1F3FC",
- "non_qualified": null,
- "image": "1f9d7-1f3fc.png",
- "sheet_x": 45,
- "sheet_y": 29,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "obsoleted_by": "1F9D7-1F3FC-200D-2640-FE0F"
- },
- "1F3FD": {
- "unified": "1F9D7-1F3FD",
- "non_qualified": null,
- "image": "1f9d7-1f3fd.png",
- "sheet_x": 45,
- "sheet_y": 30,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "obsoleted_by": "1F9D7-1F3FD-200D-2640-FE0F"
- },
- "1F3FE": {
- "unified": "1F9D7-1F3FE",
- "non_qualified": null,
- "image": "1f9d7-1f3fe.png",
- "sheet_x": 45,
- "sheet_y": 31,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "obsoleted_by": "1F9D7-1F3FE-200D-2640-FE0F"
- },
- "1F3FF": {
- "unified": "1F9D7-1F3FF",
- "non_qualified": null,
- "image": "1f9d7-1f3ff.png",
- "sheet_x": 45,
- "sheet_y": 32,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "obsoleted_by": "1F9D7-1F3FF-200D-2640-FE0F"
- }
- },
- "obsoleted_by": "1F9D7-200D-2640-FE0F"
+ "has_img_twitter": false,
+ "has_img_facebook": false
},
{
- "name": null,
- "unified": "1F9D8-200D-2640-FE0F",
- "non_qualified": "1F9D8-200D-2640",
+ "name": "KHANDA",
+ "unified": "1FAAF",
+ "non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f9d8-200d-2640-fe0f.png",
- "sheet_x": 45,
- "sheet_y": 33,
- "short_name": "woman_in_lotus_position",
- "short_names": ["woman_in_lotus_position"],
+ "image": "1faaf.png",
+ "sheet_x": 54,
+ "sheet_y": 40,
+ "short_name": "khanda",
+ "short_names": ["khanda"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 266,
- "added_in": "10.0",
+ "category": "Symbols",
+ "subcategory": "religion",
+ "sort_order": 1443,
+ "added_in": "15.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": false,
+ "has_img_facebook": false
+ },
+ {
+ "name": "FLY",
+ "unified": "1FAB0",
+ "non_qualified": null,
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1fab0.png",
+ "sheet_x": 54,
+ "sheet_y": 41,
+ "short_name": "fly",
+ "short_names": ["fly"],
+ "text": null,
+ "texts": null,
+ "category": "Animals & Nature",
+ "subcategory": "animal-bug",
+ "sort_order": 656,
+ "added_in": "13.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F9D8-1F3FB-200D-2640-FE0F",
- "non_qualified": "1F9D8-1F3FB-200D-2640",
- "image": "1f9d8-1f3fb-200d-2640-fe0f.png",
- "sheet_x": 45,
- "sheet_y": 34,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false,
- "obsoletes": "1F9D8-1F3FB"
- },
- "1F3FC": {
- "unified": "1F9D8-1F3FC-200D-2640-FE0F",
- "non_qualified": "1F9D8-1F3FC-200D-2640",
- "image": "1f9d8-1f3fc-200d-2640-fe0f.png",
- "sheet_x": 45,
- "sheet_y": 35,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false,
- "obsoletes": "1F9D8-1F3FC"
- },
- "1F3FD": {
- "unified": "1F9D8-1F3FD-200D-2640-FE0F",
- "non_qualified": "1F9D8-1F3FD-200D-2640",
- "image": "1f9d8-1f3fd-200d-2640-fe0f.png",
- "sheet_x": 45,
- "sheet_y": 36,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false,
- "obsoletes": "1F9D8-1F3FD"
- },
- "1F3FE": {
- "unified": "1F9D8-1F3FE-200D-2640-FE0F",
- "non_qualified": "1F9D8-1F3FE-200D-2640",
- "image": "1f9d8-1f3fe-200d-2640-fe0f.png",
- "sheet_x": 45,
- "sheet_y": 37,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false,
- "obsoletes": "1F9D8-1F3FE"
- },
- "1F3FF": {
- "unified": "1F9D8-1F3FF-200D-2640-FE0F",
- "non_qualified": "1F9D8-1F3FF-200D-2640",
- "image": "1f9d8-1f3ff-200d-2640-fe0f.png",
- "sheet_x": 45,
- "sheet_y": 38,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false,
- "obsoletes": "1F9D8-1F3FF"
- }
- },
- "obsoletes": "1F9D8"
+ "has_img_facebook": true
},
{
- "name": null,
- "unified": "1F9D8-200D-2642-FE0F",
- "non_qualified": "1F9D8-200D-2642",
+ "name": "WORM",
+ "unified": "1FAB1",
+ "non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f9d8-200d-2642-fe0f.png",
- "sheet_x": 45,
- "sheet_y": 39,
- "short_name": "man_in_lotus_position",
- "short_names": ["man_in_lotus_position"],
+ "image": "1fab1.png",
+ "sheet_x": 54,
+ "sheet_y": 42,
+ "short_name": "worm",
+ "short_names": ["worm"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 267,
- "added_in": "10.0",
+ "category": "Animals & Nature",
+ "subcategory": "animal-bug",
+ "sort_order": 657,
+ "added_in": "13.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F9D8-1F3FB-200D-2642-FE0F",
- "non_qualified": "1F9D8-1F3FB-200D-2642",
- "image": "1f9d8-1f3fb-200d-2642-fe0f.png",
- "sheet_x": 45,
- "sheet_y": 40,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F9D8-1F3FC-200D-2642-FE0F",
- "non_qualified": "1F9D8-1F3FC-200D-2642",
- "image": "1f9d8-1f3fc-200d-2642-fe0f.png",
- "sheet_x": 45,
- "sheet_y": 41,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F9D8-1F3FD-200D-2642-FE0F",
- "non_qualified": "1F9D8-1F3FD-200D-2642",
- "image": "1f9d8-1f3fd-200d-2642-fe0f.png",
- "sheet_x": 45,
- "sheet_y": 42,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F9D8-1F3FE-200D-2642-FE0F",
- "non_qualified": "1F9D8-1F3FE-200D-2642",
- "image": "1f9d8-1f3fe-200d-2642-fe0f.png",
- "sheet_x": 45,
- "sheet_y": 43,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F9D8-1F3FF-200D-2642-FE0F",
- "non_qualified": "1F9D8-1F3FF-200D-2642",
- "image": "1f9d8-1f3ff-200d-2642-fe0f.png",
- "sheet_x": 45,
- "sheet_y": 44,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- }
+ "has_img_facebook": true
+ },
+ {
+ "name": "BEETLE",
+ "unified": "1FAB2",
+ "non_qualified": null,
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1fab2.png",
+ "sheet_x": 54,
+ "sheet_y": 43,
+ "short_name": "beetle",
+ "short_names": ["beetle"],
+ "text": null,
+ "texts": null,
+ "category": "Animals & Nature",
+ "subcategory": "animal-bug",
+ "sort_order": 648,
+ "added_in": "13.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
},
{
- "name": "PERSON IN LOTUS POSITION",
- "unified": "1F9D8",
+ "name": "COCKROACH",
+ "unified": "1FAB3",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f9d8.png",
- "sheet_x": 45,
+ "image": "1fab3.png",
+ "sheet_x": 54,
+ "sheet_y": 44,
+ "short_name": "cockroach",
+ "short_names": ["cockroach"],
+ "text": null,
+ "texts": null,
+ "category": "Animals & Nature",
+ "subcategory": "animal-bug",
+ "sort_order": 651,
+ "added_in": "13.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "POTTED PLANT",
+ "unified": "1FAB4",
+ "non_qualified": null,
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1fab4.png",
+ "sheet_x": 54,
"sheet_y": 45,
- "short_name": "person_in_lotus_position",
- "short_names": ["person_in_lotus_position"],
+ "short_name": "potted_plant",
+ "short_names": ["potted_plant"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 265,
- "added_in": "10.0",
+ "category": "Animals & Nature",
+ "subcategory": "plant-other",
+ "sort_order": 672,
+ "added_in": "13.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F9D8-1F3FB",
- "non_qualified": null,
- "image": "1f9d8-1f3fb.png",
- "sheet_x": 45,
- "sheet_y": 46,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "obsoleted_by": "1F9D8-1F3FB-200D-2640-FE0F"
- },
- "1F3FC": {
- "unified": "1F9D8-1F3FC",
- "non_qualified": null,
- "image": "1f9d8-1f3fc.png",
- "sheet_x": 45,
- "sheet_y": 47,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "obsoleted_by": "1F9D8-1F3FC-200D-2640-FE0F"
- },
- "1F3FD": {
- "unified": "1F9D8-1F3FD",
- "non_qualified": null,
- "image": "1f9d8-1f3fd.png",
- "sheet_x": 45,
- "sheet_y": 48,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "obsoleted_by": "1F9D8-1F3FD-200D-2640-FE0F"
- },
- "1F3FE": {
- "unified": "1F9D8-1F3FE",
- "non_qualified": null,
- "image": "1f9d8-1f3fe.png",
- "sheet_x": 45,
- "sheet_y": 49,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "obsoleted_by": "1F9D8-1F3FE-200D-2640-FE0F"
- },
- "1F3FF": {
- "unified": "1F9D8-1F3FF",
- "non_qualified": null,
- "image": "1f9d8-1f3ff.png",
- "sheet_x": 45,
- "sheet_y": 50,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "obsoleted_by": "1F9D8-1F3FF-200D-2640-FE0F"
- }
- },
- "obsoleted_by": "1F9D8-200D-2640-FE0F"
+ "has_img_facebook": true
},
{
- "name": null,
- "unified": "1F9D9-200D-2640-FE0F",
- "non_qualified": "1F9D9-200D-2640",
+ "name": "WOOD",
+ "unified": "1FAB5",
+ "non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f9d9-200d-2640-fe0f.png",
- "sheet_x": 45,
- "sheet_y": 51,
- "short_name": "female_mage",
- "short_names": ["female_mage"],
+ "image": "1fab5.png",
+ "sheet_x": 54,
+ "sheet_y": 46,
+ "short_name": "wood",
+ "short_names": ["wood"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 195,
- "added_in": "10.0",
+ "category": "Travel & Places",
+ "subcategory": "place-building",
+ "sort_order": 841,
+ "added_in": "13.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F9D9-1F3FB-200D-2640-FE0F",
- "non_qualified": "1F9D9-1F3FB-200D-2640",
- "image": "1f9d9-1f3fb-200d-2640-fe0f.png",
- "sheet_x": 45,
- "sheet_y": 52,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false,
- "obsoletes": "1F9D9-1F3FB"
- },
- "1F3FC": {
- "unified": "1F9D9-1F3FC-200D-2640-FE0F",
- "non_qualified": "1F9D9-1F3FC-200D-2640",
- "image": "1f9d9-1f3fc-200d-2640-fe0f.png",
- "sheet_x": 46,
- "sheet_y": 0,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false,
- "obsoletes": "1F9D9-1F3FC"
- },
- "1F3FD": {
- "unified": "1F9D9-1F3FD-200D-2640-FE0F",
- "non_qualified": "1F9D9-1F3FD-200D-2640",
- "image": "1f9d9-1f3fd-200d-2640-fe0f.png",
- "sheet_x": 46,
- "sheet_y": 1,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false,
- "obsoletes": "1F9D9-1F3FD"
- },
- "1F3FE": {
- "unified": "1F9D9-1F3FE-200D-2640-FE0F",
- "non_qualified": "1F9D9-1F3FE-200D-2640",
- "image": "1f9d9-1f3fe-200d-2640-fe0f.png",
- "sheet_x": 46,
- "sheet_y": 2,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false,
- "obsoletes": "1F9D9-1F3FE"
- },
- "1F3FF": {
- "unified": "1F9D9-1F3FF-200D-2640-FE0F",
- "non_qualified": "1F9D9-1F3FF-200D-2640",
- "image": "1f9d9-1f3ff-200d-2640-fe0f.png",
- "sheet_x": 46,
- "sheet_y": 3,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false,
- "obsoletes": "1F9D9-1F3FF"
- }
- },
- "obsoletes": "1F9D9"
+ "has_img_facebook": true
},
{
- "name": null,
- "unified": "1F9D9-200D-2642-FE0F",
- "non_qualified": "1F9D9-200D-2642",
+ "name": "FEATHER",
+ "unified": "1FAB6",
+ "non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f9d9-200d-2642-fe0f.png",
- "sheet_x": 46,
- "sheet_y": 4,
- "short_name": "male_mage",
- "short_names": ["male_mage"],
+ "image": "1fab6.png",
+ "sheet_x": 54,
+ "sheet_y": 47,
+ "short_name": "feather",
+ "short_names": ["feather"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 196,
- "added_in": "10.0",
+ "category": "Animals & Nature",
+ "subcategory": "animal-bird",
+ "sort_order": 615,
+ "added_in": "13.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F9D9-1F3FB-200D-2642-FE0F",
- "non_qualified": "1F9D9-1F3FB-200D-2642",
- "image": "1f9d9-1f3fb-200d-2642-fe0f.png",
- "sheet_x": 46,
- "sheet_y": 5,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F9D9-1F3FC-200D-2642-FE0F",
- "non_qualified": "1F9D9-1F3FC-200D-2642",
- "image": "1f9d9-1f3fc-200d-2642-fe0f.png",
- "sheet_x": 46,
- "sheet_y": 6,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F9D9-1F3FD-200D-2642-FE0F",
- "non_qualified": "1F9D9-1F3FD-200D-2642",
- "image": "1f9d9-1f3fd-200d-2642-fe0f.png",
- "sheet_x": 46,
- "sheet_y": 7,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F9D9-1F3FE-200D-2642-FE0F",
- "non_qualified": "1F9D9-1F3FE-200D-2642",
- "image": "1f9d9-1f3fe-200d-2642-fe0f.png",
- "sheet_x": 46,
- "sheet_y": 8,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F9D9-1F3FF-200D-2642-FE0F",
- "non_qualified": "1F9D9-1F3FF-200D-2642",
- "image": "1f9d9-1f3ff-200d-2642-fe0f.png",
- "sheet_x": 46,
- "sheet_y": 9,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- }
+ "has_img_facebook": true
},
{
- "name": "MAGE",
- "unified": "1F9D9",
+ "name": "LOTUS",
+ "unified": "1FAB7",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f9d9.png",
- "sheet_x": 46,
- "sheet_y": 10,
- "short_name": "mage",
- "short_names": ["mage"],
+ "image": "1fab7.png",
+ "sheet_x": 54,
+ "sheet_y": 48,
+ "short_name": "lotus",
+ "short_names": ["lotus"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 194,
- "added_in": "10.0",
+ "category": "Animals & Nature",
+ "subcategory": "plant-flower",
+ "sort_order": 662,
+ "added_in": "14.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F9D9-1F3FB",
- "non_qualified": null,
- "image": "1f9d9-1f3fb.png",
- "sheet_x": 46,
- "sheet_y": 11,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "obsoleted_by": "1F9D9-1F3FB-200D-2640-FE0F"
- },
- "1F3FC": {
- "unified": "1F9D9-1F3FC",
- "non_qualified": null,
- "image": "1f9d9-1f3fc.png",
- "sheet_x": 46,
- "sheet_y": 12,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "obsoleted_by": "1F9D9-1F3FC-200D-2640-FE0F"
- },
- "1F3FD": {
- "unified": "1F9D9-1F3FD",
- "non_qualified": null,
- "image": "1f9d9-1f3fd.png",
- "sheet_x": 46,
- "sheet_y": 13,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "obsoleted_by": "1F9D9-1F3FD-200D-2640-FE0F"
- },
- "1F3FE": {
- "unified": "1F9D9-1F3FE",
- "non_qualified": null,
- "image": "1f9d9-1f3fe.png",
- "sheet_x": 46,
- "sheet_y": 14,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "obsoleted_by": "1F9D9-1F3FE-200D-2640-FE0F"
- },
- "1F3FF": {
- "unified": "1F9D9-1F3FF",
- "non_qualified": null,
- "image": "1f9d9-1f3ff.png",
- "sheet_x": 46,
- "sheet_y": 15,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "obsoleted_by": "1F9D9-1F3FF-200D-2640-FE0F"
- }
- },
- "obsoleted_by": "1F9D9-200D-2640-FE0F"
+ "has_img_facebook": true
},
{
- "name": null,
- "unified": "1F9DA-200D-2640-FE0F",
- "non_qualified": "1F9DA-200D-2640",
+ "name": "CORAL",
+ "unified": "1FAB8",
+ "non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f9da-200d-2640-fe0f.png",
- "sheet_x": 46,
- "sheet_y": 16,
- "short_name": "female_fairy",
- "short_names": ["female_fairy"],
+ "image": "1fab8.png",
+ "sheet_x": 54,
+ "sheet_y": 49,
+ "short_name": "coral",
+ "short_names": ["coral"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 198,
- "added_in": "10.0",
+ "category": "Animals & Nature",
+ "subcategory": "animal-marine",
+ "sort_order": 641,
+ "added_in": "14.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F9DA-1F3FB-200D-2640-FE0F",
- "non_qualified": "1F9DA-1F3FB-200D-2640",
- "image": "1f9da-1f3fb-200d-2640-fe0f.png",
- "sheet_x": 46,
- "sheet_y": 17,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false,
- "obsoletes": "1F9DA-1F3FB"
- },
- "1F3FC": {
- "unified": "1F9DA-1F3FC-200D-2640-FE0F",
- "non_qualified": "1F9DA-1F3FC-200D-2640",
- "image": "1f9da-1f3fc-200d-2640-fe0f.png",
- "sheet_x": 46,
- "sheet_y": 18,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false,
- "obsoletes": "1F9DA-1F3FC"
- },
- "1F3FD": {
- "unified": "1F9DA-1F3FD-200D-2640-FE0F",
- "non_qualified": "1F9DA-1F3FD-200D-2640",
- "image": "1f9da-1f3fd-200d-2640-fe0f.png",
- "sheet_x": 46,
- "sheet_y": 19,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false,
- "obsoletes": "1F9DA-1F3FD"
- },
- "1F3FE": {
- "unified": "1F9DA-1F3FE-200D-2640-FE0F",
- "non_qualified": "1F9DA-1F3FE-200D-2640",
- "image": "1f9da-1f3fe-200d-2640-fe0f.png",
- "sheet_x": 46,
- "sheet_y": 20,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false,
- "obsoletes": "1F9DA-1F3FE"
- },
- "1F3FF": {
- "unified": "1F9DA-1F3FF-200D-2640-FE0F",
- "non_qualified": "1F9DA-1F3FF-200D-2640",
- "image": "1f9da-1f3ff-200d-2640-fe0f.png",
- "sheet_x": 46,
- "sheet_y": 21,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false,
- "obsoletes": "1F9DA-1F3FF"
- }
- },
- "obsoletes": "1F9DA"
+ "has_img_facebook": true
},
{
- "name": null,
- "unified": "1F9DA-200D-2642-FE0F",
- "non_qualified": "1F9DA-200D-2642",
+ "name": "EMPTY NEST",
+ "unified": "1FAB9",
+ "non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f9da-200d-2642-fe0f.png",
- "sheet_x": 46,
- "sheet_y": 22,
- "short_name": "male_fairy",
- "short_names": ["male_fairy"],
+ "image": "1fab9.png",
+ "sheet_x": 54,
+ "sheet_y": 50,
+ "short_name": "empty_nest",
+ "short_names": ["empty_nest"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 199,
- "added_in": "10.0",
+ "category": "Animals & Nature",
+ "subcategory": "plant-other",
+ "sort_order": 684,
+ "added_in": "14.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F9DA-1F3FB-200D-2642-FE0F",
- "non_qualified": "1F9DA-1F3FB-200D-2642",
- "image": "1f9da-1f3fb-200d-2642-fe0f.png",
- "sheet_x": 46,
- "sheet_y": 23,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F9DA-1F3FC-200D-2642-FE0F",
- "non_qualified": "1F9DA-1F3FC-200D-2642",
- "image": "1f9da-1f3fc-200d-2642-fe0f.png",
- "sheet_x": 46,
- "sheet_y": 24,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F9DA-1F3FD-200D-2642-FE0F",
- "non_qualified": "1F9DA-1F3FD-200D-2642",
- "image": "1f9da-1f3fd-200d-2642-fe0f.png",
- "sheet_x": 46,
- "sheet_y": 25,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F9DA-1F3FE-200D-2642-FE0F",
- "non_qualified": "1F9DA-1F3FE-200D-2642",
- "image": "1f9da-1f3fe-200d-2642-fe0f.png",
- "sheet_x": 46,
- "sheet_y": 26,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F9DA-1F3FF-200D-2642-FE0F",
- "non_qualified": "1F9DA-1F3FF-200D-2642",
- "image": "1f9da-1f3ff-200d-2642-fe0f.png",
- "sheet_x": 46,
- "sheet_y": 27,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- }
+ "has_img_facebook": true
},
{
- "name": "FAIRY",
- "unified": "1F9DA",
+ "name": "NEST WITH EGGS",
+ "unified": "1FABA",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f9da.png",
- "sheet_x": 46,
- "sheet_y": 28,
- "short_name": "fairy",
- "short_names": ["fairy"],
+ "image": "1faba.png",
+ "sheet_x": 54,
+ "sheet_y": 51,
+ "short_name": "nest_with_eggs",
+ "short_names": ["nest_with_eggs"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 197,
- "added_in": "10.0",
+ "category": "Animals & Nature",
+ "subcategory": "plant-other",
+ "sort_order": 685,
+ "added_in": "14.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F9DA-1F3FB",
- "non_qualified": null,
- "image": "1f9da-1f3fb.png",
- "sheet_x": 46,
- "sheet_y": 29,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false,
- "obsoleted_by": "1F9DA-1F3FB-200D-2640-FE0F"
- },
- "1F3FC": {
- "unified": "1F9DA-1F3FC",
- "non_qualified": null,
- "image": "1f9da-1f3fc.png",
- "sheet_x": 46,
- "sheet_y": 30,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false,
- "obsoleted_by": "1F9DA-1F3FC-200D-2640-FE0F"
- },
- "1F3FD": {
- "unified": "1F9DA-1F3FD",
- "non_qualified": null,
- "image": "1f9da-1f3fd.png",
- "sheet_x": 46,
- "sheet_y": 31,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false,
- "obsoleted_by": "1F9DA-1F3FD-200D-2640-FE0F"
- },
- "1F3FE": {
- "unified": "1F9DA-1F3FE",
- "non_qualified": null,
- "image": "1f9da-1f3fe.png",
- "sheet_x": 46,
- "sheet_y": 32,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false,
- "obsoleted_by": "1F9DA-1F3FE-200D-2640-FE0F"
- },
- "1F3FF": {
- "unified": "1F9DA-1F3FF",
- "non_qualified": null,
- "image": "1f9da-1f3ff.png",
- "sheet_x": 46,
- "sheet_y": 33,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false,
- "obsoleted_by": "1F9DA-1F3FF-200D-2640-FE0F"
- }
- },
- "obsoleted_by": "1F9DA-200D-2640-FE0F"
+ "has_img_facebook": true
+ },
+ {
+ "name": "HYACINTH",
+ "unified": "1FABB",
+ "non_qualified": null,
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1fabb.png",
+ "sheet_x": 54,
+ "sheet_y": 52,
+ "short_name": "hyacinth",
+ "short_names": ["hyacinth"],
+ "text": null,
+ "texts": null,
+ "category": "Animals & Nature",
+ "subcategory": "plant-flower",
+ "sort_order": 670,
+ "added_in": "15.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": false,
+ "has_img_facebook": false
},
{
- "name": null,
- "unified": "1F9DB-200D-2640-FE0F",
- "non_qualified": "1F9DB-200D-2640",
+ "name": "JELLYFISH",
+ "unified": "1FABC",
+ "non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f9db-200d-2640-fe0f.png",
- "sheet_x": 46,
- "sheet_y": 34,
- "short_name": "female_vampire",
- "short_names": ["female_vampire"],
+ "image": "1fabc.png",
+ "sheet_x": 54,
+ "sheet_y": 53,
+ "short_name": "jellyfish",
+ "short_names": ["jellyfish"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 201,
- "added_in": "10.0",
+ "category": "Animals & Nature",
+ "subcategory": "animal-marine",
+ "sort_order": 642,
+ "added_in": "15.0",
"has_img_apple": true,
"has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F9DB-1F3FB-200D-2640-FE0F",
- "non_qualified": "1F9DB-1F3FB-200D-2640",
- "image": "1f9db-1f3fb-200d-2640-fe0f.png",
- "sheet_x": 46,
- "sheet_y": 35,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false,
- "obsoletes": "1F9DB-1F3FB"
- },
- "1F3FC": {
- "unified": "1F9DB-1F3FC-200D-2640-FE0F",
- "non_qualified": "1F9DB-1F3FC-200D-2640",
- "image": "1f9db-1f3fc-200d-2640-fe0f.png",
- "sheet_x": 46,
- "sheet_y": 36,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false,
- "obsoletes": "1F9DB-1F3FC"
- },
- "1F3FD": {
- "unified": "1F9DB-1F3FD-200D-2640-FE0F",
- "non_qualified": "1F9DB-1F3FD-200D-2640",
- "image": "1f9db-1f3fd-200d-2640-fe0f.png",
- "sheet_x": 46,
- "sheet_y": 37,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false,
- "obsoletes": "1F9DB-1F3FD"
- },
- "1F3FE": {
- "unified": "1F9DB-1F3FE-200D-2640-FE0F",
- "non_qualified": "1F9DB-1F3FE-200D-2640",
- "image": "1f9db-1f3fe-200d-2640-fe0f.png",
- "sheet_x": 46,
- "sheet_y": 38,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false,
- "obsoletes": "1F9DB-1F3FE"
- },
- "1F3FF": {
- "unified": "1F9DB-1F3FF-200D-2640-FE0F",
- "non_qualified": "1F9DB-1F3FF-200D-2640",
- "image": "1f9db-1f3ff-200d-2640-fe0f.png",
- "sheet_x": 46,
- "sheet_y": 39,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false,
- "obsoletes": "1F9DB-1F3FF"
- }
- },
- "obsoletes": "1F9DB"
+ "has_img_twitter": false,
+ "has_img_facebook": false
},
{
- "name": null,
- "unified": "1F9DB-200D-2642-FE0F",
- "non_qualified": "1F9DB-200D-2642",
+ "name": "WING",
+ "unified": "1FABD",
+ "non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f9db-200d-2642-fe0f.png",
- "sheet_x": 46,
- "sheet_y": 40,
- "short_name": "male_vampire",
- "short_names": ["male_vampire"],
+ "image": "1fabd.png",
+ "sheet_x": 54,
+ "sheet_y": 54,
+ "short_name": "wing",
+ "short_names": ["wing"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 202,
- "added_in": "10.0",
+ "category": "Animals & Nature",
+ "subcategory": "animal-bird",
+ "sort_order": 619,
+ "added_in": "15.0",
"has_img_apple": true,
"has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F9DB-1F3FB-200D-2642-FE0F",
- "non_qualified": "1F9DB-1F3FB-200D-2642",
- "image": "1f9db-1f3fb-200d-2642-fe0f.png",
- "sheet_x": 46,
- "sheet_y": 41,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F9DB-1F3FC-200D-2642-FE0F",
- "non_qualified": "1F9DB-1F3FC-200D-2642",
- "image": "1f9db-1f3fc-200d-2642-fe0f.png",
- "sheet_x": 46,
- "sheet_y": 42,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F9DB-1F3FD-200D-2642-FE0F",
- "non_qualified": "1F9DB-1F3FD-200D-2642",
- "image": "1f9db-1f3fd-200d-2642-fe0f.png",
- "sheet_x": 46,
- "sheet_y": 43,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F9DB-1F3FE-200D-2642-FE0F",
- "non_qualified": "1F9DB-1F3FE-200D-2642",
- "image": "1f9db-1f3fe-200d-2642-fe0f.png",
- "sheet_x": 46,
- "sheet_y": 44,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F9DB-1F3FF-200D-2642-FE0F",
- "non_qualified": "1F9DB-1F3FF-200D-2642",
- "image": "1f9db-1f3ff-200d-2642-fe0f.png",
- "sheet_x": 46,
- "sheet_y": 45,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- }
+ "has_img_twitter": false,
+ "has_img_facebook": false
},
{
- "name": "VAMPIRE",
- "unified": "1F9DB",
+ "name": "GOOSE",
+ "unified": "1FABF",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f9db.png",
- "sheet_x": 46,
- "sheet_y": 46,
- "short_name": "vampire",
- "short_names": ["vampire"],
+ "image": "1fabf.png",
+ "sheet_x": 54,
+ "sheet_y": 55,
+ "short_name": "goose",
+ "short_names": ["goose"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 200,
- "added_in": "10.0",
+ "category": "Animals & Nature",
+ "subcategory": "animal-bird",
+ "sort_order": 621,
+ "added_in": "15.0",
"has_img_apple": true,
"has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F9DB-1F3FB",
- "non_qualified": null,
- "image": "1f9db-1f3fb.png",
- "sheet_x": 46,
- "sheet_y": 47,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false,
- "obsoleted_by": "1F9DB-1F3FB-200D-2640-FE0F"
- },
- "1F3FC": {
- "unified": "1F9DB-1F3FC",
- "non_qualified": null,
- "image": "1f9db-1f3fc.png",
- "sheet_x": 46,
- "sheet_y": 48,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false,
- "obsoleted_by": "1F9DB-1F3FC-200D-2640-FE0F"
- },
- "1F3FD": {
- "unified": "1F9DB-1F3FD",
- "non_qualified": null,
- "image": "1f9db-1f3fd.png",
- "sheet_x": 46,
- "sheet_y": 49,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false,
- "obsoleted_by": "1F9DB-1F3FD-200D-2640-FE0F"
- },
- "1F3FE": {
- "unified": "1F9DB-1F3FE",
- "non_qualified": null,
- "image": "1f9db-1f3fe.png",
- "sheet_x": 46,
- "sheet_y": 50,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false,
- "obsoleted_by": "1F9DB-1F3FE-200D-2640-FE0F"
- },
- "1F3FF": {
- "unified": "1F9DB-1F3FF",
- "non_qualified": null,
- "image": "1f9db-1f3ff.png",
- "sheet_x": 46,
- "sheet_y": 51,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false,
- "obsoleted_by": "1F9DB-1F3FF-200D-2640-FE0F"
- }
- },
- "obsoleted_by": "1F9DB-200D-2640-FE0F"
+ "has_img_twitter": false,
+ "has_img_facebook": false
},
{
- "name": null,
- "unified": "1F9DC-200D-2640-FE0F",
- "non_qualified": "1F9DC-200D-2640",
+ "name": "ANATOMICAL HEART",
+ "unified": "1FAC0",
+ "non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f9dc-200d-2640-fe0f.png",
- "sheet_x": 46,
- "sheet_y": 52,
- "short_name": "mermaid",
- "short_names": ["mermaid"],
+ "image": "1fac0.png",
+ "sheet_x": 54,
+ "sheet_y": 56,
+ "short_name": "anatomical_heart",
+ "short_names": ["anatomical_heart"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 204,
- "added_in": "10.0",
+ "category": "People & Body",
+ "subcategory": "body-parts",
+ "sort_order": 219,
+ "added_in": "13.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F9DC-1F3FB-200D-2640-FE0F",
- "non_qualified": "1F9DC-1F3FB-200D-2640",
- "image": "1f9dc-1f3fb-200d-2640-fe0f.png",
- "sheet_x": 47,
- "sheet_y": 0,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FC": {
- "unified": "1F9DC-1F3FC-200D-2640-FE0F",
- "non_qualified": "1F9DC-1F3FC-200D-2640",
- "image": "1f9dc-1f3fc-200d-2640-fe0f.png",
- "sheet_x": 47,
- "sheet_y": 1,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FD": {
- "unified": "1F9DC-1F3FD-200D-2640-FE0F",
- "non_qualified": "1F9DC-1F3FD-200D-2640",
- "image": "1f9dc-1f3fd-200d-2640-fe0f.png",
- "sheet_x": 47,
- "sheet_y": 2,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FE": {
- "unified": "1F9DC-1F3FE-200D-2640-FE0F",
- "non_qualified": "1F9DC-1F3FE-200D-2640",
- "image": "1f9dc-1f3fe-200d-2640-fe0f.png",
- "sheet_x": 47,
- "sheet_y": 3,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- "1F3FF": {
- "unified": "1F9DC-1F3FF-200D-2640-FE0F",
- "non_qualified": "1F9DC-1F3FF-200D-2640",
- "image": "1f9dc-1f3ff-200d-2640-fe0f.png",
- "sheet_x": 47,
- "sheet_y": 4,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
- }
- }
+ "has_img_facebook": true
},
{
- "name": null,
- "unified": "1F9DC-200D-2642-FE0F",
- "non_qualified": "1F9DC-200D-2642",
+ "name": "LUNGS",
+ "unified": "1FAC1",
+ "non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f9dc-200d-2642-fe0f.png",
- "sheet_x": 47,
- "sheet_y": 5,
- "short_name": "merman",
- "short_names": ["merman"],
+ "image": "1fac1.png",
+ "sheet_x": 54,
+ "sheet_y": 57,
+ "short_name": "lungs",
+ "short_names": ["lungs"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 205,
- "added_in": "10.0",
+ "category": "People & Body",
+ "subcategory": "body-parts",
+ "sort_order": 220,
+ "added_in": "13.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F9DC-1F3FB-200D-2642-FE0F",
- "non_qualified": "1F9DC-1F3FB-200D-2642",
- "image": "1f9dc-1f3fb-200d-2642-fe0f.png",
- "sheet_x": 47,
- "sheet_y": 6,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false,
- "obsoletes": "1F9DC-1F3FB"
- },
- "1F3FC": {
- "unified": "1F9DC-1F3FC-200D-2642-FE0F",
- "non_qualified": "1F9DC-1F3FC-200D-2642",
- "image": "1f9dc-1f3fc-200d-2642-fe0f.png",
- "sheet_x": 47,
- "sheet_y": 7,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false,
- "obsoletes": "1F9DC-1F3FC"
- },
- "1F3FD": {
- "unified": "1F9DC-1F3FD-200D-2642-FE0F",
- "non_qualified": "1F9DC-1F3FD-200D-2642",
- "image": "1f9dc-1f3fd-200d-2642-fe0f.png",
- "sheet_x": 47,
- "sheet_y": 8,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false,
- "obsoletes": "1F9DC-1F3FD"
- },
- "1F3FE": {
- "unified": "1F9DC-1F3FE-200D-2642-FE0F",
- "non_qualified": "1F9DC-1F3FE-200D-2642",
- "image": "1f9dc-1f3fe-200d-2642-fe0f.png",
- "sheet_x": 47,
- "sheet_y": 9,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false,
- "obsoletes": "1F9DC-1F3FE"
- },
- "1F3FF": {
- "unified": "1F9DC-1F3FF-200D-2642-FE0F",
- "non_qualified": "1F9DC-1F3FF-200D-2642",
- "image": "1f9dc-1f3ff-200d-2642-fe0f.png",
- "sheet_x": 47,
- "sheet_y": 10,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false,
- "obsoletes": "1F9DC-1F3FF"
- }
- },
- "obsoletes": "1F9DC"
+ "has_img_facebook": true
},
{
- "name": "MERPERSON",
- "unified": "1F9DC",
+ "name": "PEOPLE HUGGING",
+ "unified": "1FAC2",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f9dc.png",
- "sheet_x": 47,
- "sheet_y": 11,
- "short_name": "merperson",
- "short_names": ["merperson"],
+ "image": "1fac2.png",
+ "sheet_x": 54,
+ "sheet_y": 58,
+ "short_name": "people_hugging",
+ "short_names": ["people_hugging"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 203,
- "added_in": "10.0",
+ "category": "People & Body",
+ "subcategory": "person-symbol",
+ "sort_order": 528,
+ "added_in": "13.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "skin_variations": {
- "1F3FB": {
- "unified": "1F9DC-1F3FB",
- "non_qualified": null,
- "image": "1f9dc-1f3fb.png",
- "sheet_x": 47,
- "sheet_y": 12,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "obsoleted_by": "1F9DC-1F3FB-200D-2642-FE0F"
- },
- "1F3FC": {
- "unified": "1F9DC-1F3FC",
- "non_qualified": null,
- "image": "1f9dc-1f3fc.png",
- "sheet_x": 47,
- "sheet_y": 13,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "obsoleted_by": "1F9DC-1F3FC-200D-2642-FE0F"
- },
- "1F3FD": {
- "unified": "1F9DC-1F3FD",
- "non_qualified": null,
- "image": "1f9dc-1f3fd.png",
- "sheet_x": 47,
- "sheet_y": 14,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "obsoleted_by": "1F9DC-1F3FD-200D-2642-FE0F"
- },
- "1F3FE": {
- "unified": "1F9DC-1F3FE",
- "non_qualified": null,
- "image": "1f9dc-1f3fe.png",
- "sheet_x": 47,
- "sheet_y": 15,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "obsoleted_by": "1F9DC-1F3FE-200D-2642-FE0F"
- },
- "1F3FF": {
- "unified": "1F9DC-1F3FF",
- "non_qualified": null,
- "image": "1f9dc-1f3ff.png",
- "sheet_x": 47,
- "sheet_y": 16,
- "added_in": "10.0",
- "has_img_apple": true,
- "has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "obsoleted_by": "1F9DC-1F3FF-200D-2642-FE0F"
- }
- },
- "obsoleted_by": "1F9DC-200D-2642-FE0F"
+ "has_img_facebook": true
},
{
- "name": null,
- "unified": "1F9DD-200D-2640-FE0F",
- "non_qualified": "1F9DD-200D-2640",
+ "name": "PREGNANT MAN",
+ "unified": "1FAC3",
+ "non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f9dd-200d-2640-fe0f.png",
- "sheet_x": 47,
- "sheet_y": 17,
- "short_name": "female_elf",
- "short_names": ["female_elf"],
+ "image": "1fac3.png",
+ "sheet_x": 54,
+ "sheet_y": 59,
+ "short_name": "pregnant_man",
+ "short_names": ["pregnant_man"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 207,
- "added_in": "10.0",
+ "category": "People & Body",
+ "subcategory": "person-role",
+ "sort_order": 362,
+ "added_in": "14.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": false,
"skin_variations": {
"1F3FB": {
- "unified": "1F9DD-1F3FB-200D-2640-FE0F",
- "non_qualified": "1F9DD-1F3FB-200D-2640",
- "image": "1f9dd-1f3fb-200d-2640-fe0f.png",
- "sheet_x": 47,
- "sheet_y": 18,
- "added_in": "10.0",
+ "unified": "1FAC3-1F3FB",
+ "non_qualified": null,
+ "image": "1fac3-1f3fb.png",
+ "sheet_x": 54,
+ "sheet_y": 60,
+ "added_in": "14.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FC": {
- "unified": "1F9DD-1F3FC-200D-2640-FE0F",
- "non_qualified": "1F9DD-1F3FC-200D-2640",
- "image": "1f9dd-1f3fc-200d-2640-fe0f.png",
- "sheet_x": 47,
- "sheet_y": 19,
- "added_in": "10.0",
+ "unified": "1FAC3-1F3FC",
+ "non_qualified": null,
+ "image": "1fac3-1f3fc.png",
+ "sheet_x": 55,
+ "sheet_y": 0,
+ "added_in": "14.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FD": {
- "unified": "1F9DD-1F3FD-200D-2640-FE0F",
- "non_qualified": "1F9DD-1F3FD-200D-2640",
- "image": "1f9dd-1f3fd-200d-2640-fe0f.png",
- "sheet_x": 47,
- "sheet_y": 20,
- "added_in": "10.0",
+ "unified": "1FAC3-1F3FD",
+ "non_qualified": null,
+ "image": "1fac3-1f3fd.png",
+ "sheet_x": 55,
+ "sheet_y": 1,
+ "added_in": "14.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FE": {
- "unified": "1F9DD-1F3FE-200D-2640-FE0F",
- "non_qualified": "1F9DD-1F3FE-200D-2640",
- "image": "1f9dd-1f3fe-200d-2640-fe0f.png",
- "sheet_x": 47,
- "sheet_y": 21,
- "added_in": "10.0",
+ "unified": "1FAC3-1F3FE",
+ "non_qualified": null,
+ "image": "1fac3-1f3fe.png",
+ "sheet_x": 55,
+ "sheet_y": 2,
+ "added_in": "14.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FF": {
- "unified": "1F9DD-1F3FF-200D-2640-FE0F",
- "non_qualified": "1F9DD-1F3FF-200D-2640",
- "image": "1f9dd-1f3ff-200d-2640-fe0f.png",
- "sheet_x": 47,
- "sheet_y": 22,
- "added_in": "10.0",
+ "unified": "1FAC3-1F3FF",
+ "non_qualified": null,
+ "image": "1fac3-1f3ff.png",
+ "sheet_x": 55,
+ "sheet_y": 3,
+ "added_in": "14.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
}
}
},
{
- "name": null,
- "unified": "1F9DD-200D-2642-FE0F",
- "non_qualified": "1F9DD-200D-2642",
+ "name": "PREGNANT PERSON",
+ "unified": "1FAC4",
+ "non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f9dd-200d-2642-fe0f.png",
- "sheet_x": 47,
- "sheet_y": 23,
- "short_name": "male_elf",
- "short_names": ["male_elf"],
+ "image": "1fac4.png",
+ "sheet_x": 55,
+ "sheet_y": 4,
+ "short_name": "pregnant_person",
+ "short_names": ["pregnant_person"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 208,
- "added_in": "10.0",
+ "category": "People & Body",
+ "subcategory": "person-role",
+ "sort_order": 363,
+ "added_in": "14.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": false,
"skin_variations": {
"1F3FB": {
- "unified": "1F9DD-1F3FB-200D-2642-FE0F",
- "non_qualified": "1F9DD-1F3FB-200D-2642",
- "image": "1f9dd-1f3fb-200d-2642-fe0f.png",
- "sheet_x": 47,
- "sheet_y": 24,
- "added_in": "10.0",
+ "unified": "1FAC4-1F3FB",
+ "non_qualified": null,
+ "image": "1fac4-1f3fb.png",
+ "sheet_x": 55,
+ "sheet_y": 5,
+ "added_in": "14.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false,
- "obsoletes": "1F9DD-1F3FB"
+ "has_img_facebook": true
},
"1F3FC": {
- "unified": "1F9DD-1F3FC-200D-2642-FE0F",
- "non_qualified": "1F9DD-1F3FC-200D-2642",
- "image": "1f9dd-1f3fc-200d-2642-fe0f.png",
- "sheet_x": 47,
- "sheet_y": 25,
- "added_in": "10.0",
+ "unified": "1FAC4-1F3FC",
+ "non_qualified": null,
+ "image": "1fac4-1f3fc.png",
+ "sheet_x": 55,
+ "sheet_y": 6,
+ "added_in": "14.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false,
- "obsoletes": "1F9DD-1F3FC"
+ "has_img_facebook": true
},
"1F3FD": {
- "unified": "1F9DD-1F3FD-200D-2642-FE0F",
- "non_qualified": "1F9DD-1F3FD-200D-2642",
- "image": "1f9dd-1f3fd-200d-2642-fe0f.png",
- "sheet_x": 47,
- "sheet_y": 26,
- "added_in": "10.0",
+ "unified": "1FAC4-1F3FD",
+ "non_qualified": null,
+ "image": "1fac4-1f3fd.png",
+ "sheet_x": 55,
+ "sheet_y": 7,
+ "added_in": "14.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false,
- "obsoletes": "1F9DD-1F3FD"
+ "has_img_facebook": true
},
"1F3FE": {
- "unified": "1F9DD-1F3FE-200D-2642-FE0F",
- "non_qualified": "1F9DD-1F3FE-200D-2642",
- "image": "1f9dd-1f3fe-200d-2642-fe0f.png",
- "sheet_x": 47,
- "sheet_y": 27,
- "added_in": "10.0",
+ "unified": "1FAC4-1F3FE",
+ "non_qualified": null,
+ "image": "1fac4-1f3fe.png",
+ "sheet_x": 55,
+ "sheet_y": 8,
+ "added_in": "14.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false,
- "obsoletes": "1F9DD-1F3FE"
- },
- "1F3FF": {
- "unified": "1F9DD-1F3FF-200D-2642-FE0F",
- "non_qualified": "1F9DD-1F3FF-200D-2642",
- "image": "1f9dd-1f3ff-200d-2642-fe0f.png",
- "sheet_x": 47,
- "sheet_y": 28,
- "added_in": "10.0",
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1FAC4-1F3FF",
+ "non_qualified": null,
+ "image": "1fac4-1f3ff.png",
+ "sheet_x": 55,
+ "sheet_y": 9,
+ "added_in": "14.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false,
- "obsoletes": "1F9DD-1F3FF"
+ "has_img_facebook": true
}
- },
- "obsoletes": "1F9DD"
+ }
},
{
- "name": "ELF",
- "unified": "1F9DD",
+ "name": "PERSON WITH CROWN",
+ "unified": "1FAC5",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f9dd.png",
- "sheet_x": 47,
- "sheet_y": 29,
- "short_name": "elf",
- "short_names": ["elf"],
+ "image": "1fac5.png",
+ "sheet_x": 55,
+ "sheet_y": 10,
+ "short_name": "person_with_crown",
+ "short_names": ["person_with_crown"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 206,
- "added_in": "10.0",
+ "category": "People & Body",
+ "subcategory": "person-role",
+ "sort_order": 347,
+ "added_in": "14.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": false,
"skin_variations": {
"1F3FB": {
- "unified": "1F9DD-1F3FB",
+ "unified": "1FAC5-1F3FB",
"non_qualified": null,
- "image": "1f9dd-1f3fb.png",
- "sheet_x": 47,
- "sheet_y": 30,
- "added_in": "10.0",
+ "image": "1fac5-1f3fb.png",
+ "sheet_x": 55,
+ "sheet_y": 11,
+ "added_in": "14.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "obsoleted_by": "1F9DD-1F3FB-200D-2642-FE0F"
+ "has_img_facebook": true
},
"1F3FC": {
- "unified": "1F9DD-1F3FC",
+ "unified": "1FAC5-1F3FC",
"non_qualified": null,
- "image": "1f9dd-1f3fc.png",
- "sheet_x": 47,
- "sheet_y": 31,
- "added_in": "10.0",
+ "image": "1fac5-1f3fc.png",
+ "sheet_x": 55,
+ "sheet_y": 12,
+ "added_in": "14.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "obsoleted_by": "1F9DD-1F3FC-200D-2642-FE0F"
+ "has_img_facebook": true
},
"1F3FD": {
- "unified": "1F9DD-1F3FD",
+ "unified": "1FAC5-1F3FD",
"non_qualified": null,
- "image": "1f9dd-1f3fd.png",
- "sheet_x": 47,
- "sheet_y": 32,
- "added_in": "10.0",
+ "image": "1fac5-1f3fd.png",
+ "sheet_x": 55,
+ "sheet_y": 13,
+ "added_in": "14.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "obsoleted_by": "1F9DD-1F3FD-200D-2642-FE0F"
+ "has_img_facebook": true
},
"1F3FE": {
- "unified": "1F9DD-1F3FE",
+ "unified": "1FAC5-1F3FE",
"non_qualified": null,
- "image": "1f9dd-1f3fe.png",
- "sheet_x": 47,
- "sheet_y": 33,
- "added_in": "10.0",
+ "image": "1fac5-1f3fe.png",
+ "sheet_x": 55,
+ "sheet_y": 14,
+ "added_in": "14.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "obsoleted_by": "1F9DD-1F3FE-200D-2642-FE0F"
+ "has_img_facebook": true
},
"1F3FF": {
- "unified": "1F9DD-1F3FF",
+ "unified": "1FAC5-1F3FF",
"non_qualified": null,
- "image": "1f9dd-1f3ff.png",
- "sheet_x": 47,
- "sheet_y": 34,
- "added_in": "10.0",
+ "image": "1fac5-1f3ff.png",
+ "sheet_x": 55,
+ "sheet_y": 15,
+ "added_in": "14.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "obsoleted_by": "1F9DD-1F3FF-200D-2642-FE0F"
+ "has_img_facebook": true
}
- },
- "obsoleted_by": "1F9DD-200D-2642-FE0F"
+ }
},
{
- "name": null,
- "unified": "1F9DE-200D-2640-FE0F",
- "non_qualified": "1F9DE-200D-2640",
+ "name": "MOOSE",
+ "unified": "1FACE",
+ "non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f9de-200d-2640-fe0f.png",
- "sheet_x": 47,
- "sheet_y": 35,
- "short_name": "female_genie",
- "short_names": ["female_genie"],
+ "image": "1face.png",
+ "sheet_x": 55,
+ "sheet_y": 16,
+ "short_name": "moose",
+ "short_names": ["moose"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 210,
- "added_in": "10.0",
+ "category": "Animals & Nature",
+ "subcategory": "animal-mammal",
+ "sort_order": 555,
+ "added_in": "15.0",
"has_img_apple": true,
"has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_twitter": false,
+ "has_img_facebook": false
},
{
- "name": null,
- "unified": "1F9DE-200D-2642-FE0F",
- "non_qualified": "1F9DE-200D-2642",
+ "name": "DONKEY",
+ "unified": "1FACF",
+ "non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f9de-200d-2642-fe0f.png",
- "sheet_x": 47,
- "sheet_y": 36,
- "short_name": "male_genie",
- "short_names": ["male_genie"],
+ "image": "1facf.png",
+ "sheet_x": 55,
+ "sheet_y": 17,
+ "short_name": "donkey",
+ "short_names": ["donkey"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 211,
- "added_in": "10.0",
+ "category": "Animals & Nature",
+ "subcategory": "animal-mammal",
+ "sort_order": 556,
+ "added_in": "15.0",
"has_img_apple": true,
"has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "obsoletes": "1F9DE"
+ "has_img_twitter": false,
+ "has_img_facebook": false
},
{
- "name": "GENIE",
- "unified": "1F9DE",
+ "name": "BLUEBERRIES",
+ "unified": "1FAD0",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f9de.png",
- "sheet_x": 47,
- "sheet_y": 37,
- "short_name": "genie",
- "short_names": ["genie"],
+ "image": "1fad0.png",
+ "sheet_x": 55,
+ "sheet_y": 18,
+ "short_name": "blueberries",
+ "short_names": ["blueberries"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 209,
- "added_in": "10.0",
+ "category": "Food & Drink",
+ "subcategory": "food-fruit",
+ "sort_order": 701,
+ "added_in": "13.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "obsoleted_by": "1F9DE-200D-2642-FE0F"
+ "has_img_facebook": true
},
{
- "name": null,
- "unified": "1F9DF-200D-2640-FE0F",
- "non_qualified": "1F9DF-200D-2640",
+ "name": "BELL PEPPER",
+ "unified": "1FAD1",
+ "non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f9df-200d-2640-fe0f.png",
- "sheet_x": 47,
- "sheet_y": 38,
- "short_name": "female_zombie",
- "short_names": ["female_zombie"],
+ "image": "1fad1.png",
+ "sheet_x": 55,
+ "sheet_y": 19,
+ "short_name": "bell_pepper",
+ "short_names": ["bell_pepper"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 213,
- "added_in": "10.0",
+ "category": "Food & Drink",
+ "subcategory": "food-vegetable",
+ "sort_order": 712,
+ "added_in": "13.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
- "name": null,
- "unified": "1F9DF-200D-2642-FE0F",
- "non_qualified": "1F9DF-200D-2642",
+ "name": "OLIVE",
+ "unified": "1FAD2",
+ "non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f9df-200d-2642-fe0f.png",
- "sheet_x": 47,
- "sheet_y": 39,
- "short_name": "male_zombie",
- "short_names": ["male_zombie"],
+ "image": "1fad2.png",
+ "sheet_x": 55,
+ "sheet_y": 20,
+ "short_name": "olive",
+ "short_names": ["olive"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 214,
- "added_in": "10.0",
+ "category": "Food & Drink",
+ "subcategory": "food-fruit",
+ "sort_order": 704,
+ "added_in": "13.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "obsoletes": "1F9DF"
+ "has_img_facebook": true
},
{
- "name": "ZOMBIE",
- "unified": "1F9DF",
+ "name": "FLATBREAD",
+ "unified": "1FAD3",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f9df.png",
- "sheet_x": 47,
- "sheet_y": 40,
- "short_name": "zombie",
- "short_names": ["zombie"],
+ "image": "1fad3.png",
+ "sheet_x": 55,
+ "sheet_y": 21,
+ "short_name": "flatbread",
+ "short_names": ["flatbread"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 212,
- "added_in": "10.0",
+ "category": "Food & Drink",
+ "subcategory": "food-prepared",
+ "sort_order": 726,
+ "added_in": "13.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false,
- "obsoleted_by": "1F9DF-200D-2642-FE0F"
+ "has_img_facebook": true
},
{
- "name": "BRAIN",
- "unified": "1F9E0",
+ "name": "TAMALE",
+ "unified": "1FAD4",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f9e0.png",
- "sheet_x": 47,
- "sheet_y": 41,
- "short_name": "brain",
- "short_names": ["brain"],
+ "image": "1fad4.png",
+ "sheet_x": 55,
+ "sheet_y": 22,
+ "short_name": "tamale",
+ "short_names": ["tamale"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 397,
- "added_in": "10.0",
+ "category": "Food & Drink",
+ "subcategory": "food-prepared",
+ "sort_order": 743,
+ "added_in": "13.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
- "name": "ORANGE HEART",
- "unified": "1F9E1",
+ "name": "FONDUE",
+ "unified": "1FAD5",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f9e1.png",
- "sheet_x": 47,
- "sheet_y": 42,
- "short_name": "orange_heart",
- "short_names": ["orange_heart"],
+ "image": "1fad5.png",
+ "sheet_x": 55,
+ "sheet_y": 23,
+ "short_name": "fondue",
+ "short_names": ["fondue"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 413,
- "added_in": "10.0",
+ "category": "Food & Drink",
+ "subcategory": "food-prepared",
+ "sort_order": 750,
+ "added_in": "13.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
- "name": "BILLED CAP",
- "unified": "1F9E2",
+ "name": "TEAPOT",
+ "unified": "1FAD6",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f9e2.png",
- "sheet_x": 47,
- "sheet_y": 43,
- "short_name": "billed_cap",
- "short_names": ["billed_cap"],
+ "image": "1fad6.png",
+ "sheet_x": 55,
+ "sheet_y": 24,
+ "short_name": "teapot",
+ "short_names": ["teapot"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 464,
- "added_in": "10.0",
+ "category": "Food & Drink",
+ "subcategory": "drink",
+ "sort_order": 796,
+ "added_in": "13.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
- "name": "SCARF",
- "unified": "1F9E3",
+ "name": "POURING LIQUID",
+ "unified": "1FAD7",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f9e3.png",
- "sheet_x": 47,
- "sheet_y": 44,
- "short_name": "scarf",
- "short_names": ["scarf"],
+ "image": "1fad7.png",
+ "sheet_x": 55,
+ "sheet_y": 25,
+ "short_name": "pouring_liquid",
+ "short_names": ["pouring_liquid"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 440,
- "added_in": "10.0",
+ "category": "Food & Drink",
+ "subcategory": "drink",
+ "sort_order": 807,
+ "added_in": "14.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
- "name": "GLOVES",
- "unified": "1F9E4",
+ "name": "BEANS",
+ "unified": "1FAD8",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f9e4.png",
- "sheet_x": 47,
- "sheet_y": 45,
- "short_name": "gloves",
- "short_names": ["gloves"],
+ "image": "1fad8.png",
+ "sheet_x": 55,
+ "sheet_y": 26,
+ "short_name": "beans",
+ "short_names": ["beans"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 441,
- "added_in": "10.0",
+ "category": "Food & Drink",
+ "subcategory": "food-vegetable",
+ "sort_order": 719,
+ "added_in": "14.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
- "name": "COAT",
- "unified": "1F9E5",
+ "name": "JAR",
+ "unified": "1FAD9",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f9e5.png",
- "sheet_x": 47,
- "sheet_y": 46,
- "short_name": "coat",
- "short_names": ["coat"],
+ "image": "1fad9.png",
+ "sheet_x": 55,
+ "sheet_y": 27,
+ "short_name": "jar",
+ "short_names": ["jar"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 442,
- "added_in": "10.0",
+ "category": "Food & Drink",
+ "subcategory": "dishware",
+ "sort_order": 818,
+ "added_in": "14.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
- "name": "SOCKS",
- "unified": "1F9E6",
+ "name": "GINGER ROOT",
+ "unified": "1FADA",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f9e6.png",
- "sheet_x": 47,
- "sheet_y": 47,
- "short_name": "socks",
- "short_names": ["socks"],
+ "image": "1fada.png",
+ "sheet_x": 55,
+ "sheet_y": 28,
+ "short_name": "ginger_root",
+ "short_names": ["ginger_root"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 443,
- "added_in": "10.0",
+ "category": "Food & Drink",
+ "subcategory": "food-vegetable",
+ "sort_order": 721,
+ "added_in": "15.0",
"has_img_apple": true,
"has_img_google": true,
- "has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
- },
- {
- "name": "RED GIFT ENVELOPE",
- "unified": "1F9E7",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f9e7.png",
- "sheet_x": 47,
- "sheet_y": 48,
- "short_name": "red_envelope",
- "short_names": ["red_envelope"],
- "text": null,
- "texts": null,
- "category": "Activities",
- "sort_order": 16,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- {
- "name": "FIRECRACKER",
- "unified": "1F9E8",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f9e8.png",
- "sheet_x": 47,
- "sheet_y": 49,
- "short_name": "firecracker",
- "short_names": ["firecracker"],
- "text": null,
- "texts": null,
- "category": "Activities",
- "sort_order": 5,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- {
- "name": "JIGSAW PUZZLE PIECE",
- "unified": "1F9E9",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f9e9.png",
- "sheet_x": 47,
- "sheet_y": 50,
- "short_name": "jigsaw",
- "short_names": ["jigsaw"],
- "text": null,
- "texts": null,
- "category": "Activities",
- "sort_order": 62,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- {
- "name": "TEST TUBE",
- "unified": "1F9EA",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f9ea.png",
- "sheet_x": 47,
- "sheet_y": 51,
- "short_name": "test_tube",
- "short_names": ["test_tube"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 155,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- {
- "name": "PETRI DISH",
- "unified": "1F9EB",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f9eb.png",
- "sheet_x": 47,
- "sheet_y": 52,
- "short_name": "petri_dish",
- "short_names": ["petri_dish"],
- "text": null,
- "texts": null,
- "category": "Objects",
- "sort_order": 156,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
"has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": false
},
{
- "name": "DNA DOUBLE HELIX",
- "unified": "1F9EC",
+ "name": "PEA POD",
+ "unified": "1FADB",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f9ec.png",
- "sheet_x": 48,
- "sheet_y": 0,
- "short_name": "dna",
- "short_names": ["dna"],
+ "image": "1fadb.png",
+ "sheet_x": 55,
+ "sheet_y": 29,
+ "short_name": "pea_pod",
+ "short_names": ["pea_pod"],
"text": null,
"texts": null,
- "category": "Objects",
- "sort_order": 157,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
+ "category": "Food & Drink",
+ "subcategory": "food-vegetable",
+ "sort_order": 722,
+ "added_in": "15.0",
+ "has_img_apple": true,
+ "has_img_google": true,
"has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": false
},
{
- "name": "COMPASS",
- "unified": "1F9ED",
+ "name": "MELTING FACE",
+ "unified": "1FAE0",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f9ed.png",
- "sheet_x": 48,
- "sheet_y": 1,
- "short_name": "compass",
- "short_names": ["compass"],
+ "image": "1fae0.png",
+ "sheet_x": 55,
+ "sheet_y": 30,
+ "short_name": "melting_face",
+ "short_names": ["melting_face"],
"text": null,
"texts": null,
- "category": "Travel & Places",
- "sort_order": 7,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "category": "Smileys & Emotion",
+ "subcategory": "face-smiling",
+ "sort_order": 11,
+ "added_in": "14.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
},
{
- "name": "ABACUS",
- "unified": "1F9EE",
+ "name": "SALUTING FACE",
+ "unified": "1FAE1",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f9ee.png",
- "sheet_x": 48,
- "sheet_y": 2,
- "short_name": "abacus",
- "short_names": ["abacus"],
+ "image": "1fae1.png",
+ "sheet_x": 55,
+ "sheet_y": 31,
+ "short_name": "saluting_face",
+ "short_names": ["saluting_face"],
"text": null,
"texts": null,
- "category": "Objects",
- "sort_order": 43,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "category": "Smileys & Emotion",
+ "subcategory": "face-hand",
+ "sort_order": 36,
+ "added_in": "14.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
},
{
- "name": "FIRE EXTINGUISHER",
- "unified": "1F9EF",
+ "name": "FACE WITH OPEN EYES AND HAND OVER MOUTH",
+ "unified": "1FAE2",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f9ef.png",
- "sheet_x": 48,
- "sheet_y": 3,
- "short_name": "fire_extinguisher",
- "short_names": ["fire_extinguisher"],
+ "image": "1fae2.png",
+ "sheet_x": 55,
+ "sheet_y": 32,
+ "short_name": "face_with_open_eyes_and_hand_over_mouth",
+ "short_names": ["face_with_open_eyes_and_hand_over_mouth"],
"text": null,
"texts": null,
- "category": "Objects",
- "sort_order": 176,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "category": "Smileys & Emotion",
+ "subcategory": "face-hand",
+ "sort_order": 32,
+ "added_in": "14.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
},
{
- "name": "TOOLBOX",
- "unified": "1F9F0",
+ "name": "FACE WITH PEEKING EYE",
+ "unified": "1FAE3",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f9f0.png",
- "sheet_x": 48,
- "sheet_y": 4,
- "short_name": "toolbox",
- "short_names": ["toolbox"],
+ "image": "1fae3.png",
+ "sheet_x": 55,
+ "sheet_y": 33,
+ "short_name": "face_with_peeking_eye",
+ "short_names": ["face_with_peeking_eye"],
"text": null,
"texts": null,
- "category": "Objects",
- "sort_order": 152,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "category": "Smileys & Emotion",
+ "subcategory": "face-hand",
+ "sort_order": 33,
+ "added_in": "14.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
},
{
- "name": "BRICK",
- "unified": "1F9F1",
+ "name": "FACE WITH DIAGONAL MOUTH",
+ "unified": "1FAE4",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f9f1.png",
- "sheet_x": 48,
- "sheet_y": 5,
- "short_name": "bricks",
- "short_names": ["bricks"],
+ "image": "1fae4.png",
+ "sheet_x": 55,
+ "sheet_y": 34,
+ "short_name": "face_with_diagonal_mouth",
+ "short_names": ["face_with_diagonal_mouth"],
"text": null,
"texts": null,
- "category": "Travel & Places",
- "sort_order": 20,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "category": "Smileys & Emotion",
+ "subcategory": "face-concerned",
+ "sort_order": 75,
+ "added_in": "14.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
},
{
- "name": "MAGNET",
- "unified": "1F9F2",
+ "name": "DOTTED LINE FACE",
+ "unified": "1FAE5",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f9f2.png",
- "sheet_x": 48,
- "sheet_y": 6,
- "short_name": "magnet",
- "short_names": ["magnet"],
+ "image": "1fae5.png",
+ "sheet_x": 55,
+ "sheet_y": 35,
+ "short_name": "dotted_line_face",
+ "short_names": ["dotted_line_face"],
"text": null,
"texts": null,
- "category": "Objects",
- "sort_order": 153,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "category": "Smileys & Emotion",
+ "subcategory": "face-neutral-skeptical",
+ "sort_order": 42,
+ "added_in": "14.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
},
{
- "name": "LUGGAGE",
- "unified": "1F9F3",
+ "name": "BITING LIP",
+ "unified": "1FAE6",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f9f3.png",
- "sheet_x": 48,
- "sheet_y": 7,
- "short_name": "luggage",
- "short_names": ["luggage"],
+ "image": "1fae6.png",
+ "sheet_x": 55,
+ "sheet_y": 36,
+ "short_name": "biting_lip",
+ "short_names": ["biting_lip"],
"text": null,
"texts": null,
- "category": "Travel & Places",
- "sort_order": 126,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "category": "People & Body",
+ "subcategory": "body-parts",
+ "sort_order": 227,
+ "added_in": "14.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
},
{
- "name": "LOTION BOTTLE",
- "unified": "1F9F4",
+ "name": "BUBBLES",
+ "unified": "1FAE7",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f9f4.png",
- "sheet_x": 48,
- "sheet_y": 8,
- "short_name": "lotion_bottle",
- "short_names": ["lotion_bottle"],
+ "image": "1fae7.png",
+ "sheet_x": 55,
+ "sheet_y": 37,
+ "short_name": "bubbles",
+ "short_names": ["bubbles"],
"text": null,
"texts": null,
"category": "Objects",
- "sort_order": 169,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
- },
- {
- "name": "SPOOL OF THREAD",
- "unified": "1F9F5",
- "non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f9f5.png",
- "sheet_x": 48,
- "sheet_y": 9,
- "short_name": "thread",
- "short_names": ["thread"],
- "text": null,
- "texts": null,
- "category": "Activities",
- "sort_order": 75,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "subcategory": "household",
+ "sort_order": 1370,
+ "added_in": "14.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
},
{
- "name": "BALL OF YARN",
- "unified": "1F9F6",
+ "name": "SHAKING FACE",
+ "unified": "1FAE8",
"non_qualified": null,
- "docomo": null,
- "au": null,
- "softbank": null,
- "google": null,
- "image": "1f9f6.png",
- "sheet_x": 48,
- "sheet_y": 10,
- "short_name": "yarn",
- "short_names": ["yarn"],
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "1fae8.png",
+ "sheet_x": 55,
+ "sheet_y": 38,
+ "short_name": "shaking_face",
+ "short_names": ["shaking_face"],
"text": null,
"texts": null,
- "category": "Activities",
- "sort_order": 76,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
+ "category": "Smileys & Emotion",
+ "subcategory": "face-neutral-skeptical",
+ "sort_order": 50,
+ "added_in": "15.0",
+ "has_img_apple": true,
+ "has_img_google": true,
"has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": false
},
{
- "name": "SAFETY PIN",
- "unified": "1F9F7",
+ "name": "HAND WITH INDEX FINGER AND THUMB CROSSED",
+ "unified": "1FAF0",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f9f7.png",
- "sheet_x": 48,
- "sheet_y": 11,
- "short_name": "safety_pin",
- "short_names": ["safety_pin"],
+ "image": "1faf0.png",
+ "sheet_x": 55,
+ "sheet_y": 39,
+ "short_name": "hand_with_index_finger_and_thumb_crossed",
+ "short_names": ["hand_with_index_finger_and_thumb_crossed"],
"text": null,
"texts": null,
- "category": "Objects",
- "sort_order": 170,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "category": "People & Body",
+ "subcategory": "hand-fingers-partial",
+ "sort_order": 183,
+ "added_in": "14.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true,
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1FAF0-1F3FB",
+ "non_qualified": null,
+ "image": "1faf0-1f3fb.png",
+ "sheet_x": 55,
+ "sheet_y": 40,
+ "added_in": "14.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1FAF0-1F3FC",
+ "non_qualified": null,
+ "image": "1faf0-1f3fc.png",
+ "sheet_x": 55,
+ "sheet_y": 41,
+ "added_in": "14.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1FAF0-1F3FD",
+ "non_qualified": null,
+ "image": "1faf0-1f3fd.png",
+ "sheet_x": 55,
+ "sheet_y": 42,
+ "added_in": "14.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1FAF0-1F3FE",
+ "non_qualified": null,
+ "image": "1faf0-1f3fe.png",
+ "sheet_x": 55,
+ "sheet_y": 43,
+ "added_in": "14.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1FAF0-1F3FF",
+ "non_qualified": null,
+ "image": "1faf0-1f3ff.png",
+ "sheet_x": 55,
+ "sheet_y": 44,
+ "added_in": "14.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ }
},
{
- "name": "TEDDY BEAR",
- "unified": "1F9F8",
+ "name": "RIGHTWARDS HAND",
+ "unified": "1FAF1",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f9f8.png",
- "sheet_x": 48,
- "sheet_y": 12,
- "short_name": "teddy_bear",
- "short_names": ["teddy_bear"],
+ "image": "1faf1.png",
+ "sheet_x": 55,
+ "sheet_y": 45,
+ "short_name": "rightwards_hand",
+ "short_names": ["rightwards_hand"],
"text": null,
"texts": null,
- "category": "Activities",
- "sort_order": 63,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "category": "People & Body",
+ "subcategory": "hand-fingers-open",
+ "sort_order": 172,
+ "added_in": "14.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true,
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1FAF1-1F3FB",
+ "non_qualified": null,
+ "image": "1faf1-1f3fb.png",
+ "sheet_x": 55,
+ "sheet_y": 46,
+ "added_in": "14.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1FAF1-1F3FC",
+ "non_qualified": null,
+ "image": "1faf1-1f3fc.png",
+ "sheet_x": 55,
+ "sheet_y": 47,
+ "added_in": "14.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1FAF1-1F3FD",
+ "non_qualified": null,
+ "image": "1faf1-1f3fd.png",
+ "sheet_x": 55,
+ "sheet_y": 48,
+ "added_in": "14.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1FAF1-1F3FE",
+ "non_qualified": null,
+ "image": "1faf1-1f3fe.png",
+ "sheet_x": 55,
+ "sheet_y": 49,
+ "added_in": "14.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1FAF1-1F3FF",
+ "non_qualified": null,
+ "image": "1faf1-1f3ff.png",
+ "sheet_x": 55,
+ "sheet_y": 50,
+ "added_in": "14.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ }
},
{
- "name": "BROOM",
- "unified": "1F9F9",
+ "name": "LEFTWARDS HAND",
+ "unified": "1FAF2",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f9f9.png",
- "sheet_x": 48,
- "sheet_y": 13,
- "short_name": "broom",
- "short_names": ["broom"],
+ "image": "1faf2.png",
+ "sheet_x": 55,
+ "sheet_y": 51,
+ "short_name": "leftwards_hand",
+ "short_names": ["leftwards_hand"],
"text": null,
"texts": null,
- "category": "Objects",
- "sort_order": 171,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "category": "People & Body",
+ "subcategory": "hand-fingers-open",
+ "sort_order": 173,
+ "added_in": "14.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true,
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1FAF2-1F3FB",
+ "non_qualified": null,
+ "image": "1faf2-1f3fb.png",
+ "sheet_x": 55,
+ "sheet_y": 52,
+ "added_in": "14.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1FAF2-1F3FC",
+ "non_qualified": null,
+ "image": "1faf2-1f3fc.png",
+ "sheet_x": 55,
+ "sheet_y": 53,
+ "added_in": "14.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1FAF2-1F3FD",
+ "non_qualified": null,
+ "image": "1faf2-1f3fd.png",
+ "sheet_x": 55,
+ "sheet_y": 54,
+ "added_in": "14.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1FAF2-1F3FE",
+ "non_qualified": null,
+ "image": "1faf2-1f3fe.png",
+ "sheet_x": 55,
+ "sheet_y": 55,
+ "added_in": "14.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1FAF2-1F3FF",
+ "non_qualified": null,
+ "image": "1faf2-1f3ff.png",
+ "sheet_x": 55,
+ "sheet_y": 56,
+ "added_in": "14.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ }
},
{
- "name": "BASKET",
- "unified": "1F9FA",
+ "name": "PALM DOWN HAND",
+ "unified": "1FAF3",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f9fa.png",
- "sheet_x": 48,
- "sheet_y": 14,
- "short_name": "basket",
- "short_names": ["basket"],
+ "image": "1faf3.png",
+ "sheet_x": 55,
+ "sheet_y": 57,
+ "short_name": "palm_down_hand",
+ "short_names": ["palm_down_hand"],
"text": null,
"texts": null,
- "category": "Objects",
- "sort_order": 172,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "category": "People & Body",
+ "subcategory": "hand-fingers-open",
+ "sort_order": 174,
+ "added_in": "14.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true,
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1FAF3-1F3FB",
+ "non_qualified": null,
+ "image": "1faf3-1f3fb.png",
+ "sheet_x": 55,
+ "sheet_y": 58,
+ "added_in": "14.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1FAF3-1F3FC",
+ "non_qualified": null,
+ "image": "1faf3-1f3fc.png",
+ "sheet_x": 55,
+ "sheet_y": 59,
+ "added_in": "14.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1FAF3-1F3FD",
+ "non_qualified": null,
+ "image": "1faf3-1f3fd.png",
+ "sheet_x": 55,
+ "sheet_y": 60,
+ "added_in": "14.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1FAF3-1F3FE",
+ "non_qualified": null,
+ "image": "1faf3-1f3fe.png",
+ "sheet_x": 56,
+ "sheet_y": 0,
+ "added_in": "14.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1FAF3-1F3FF",
+ "non_qualified": null,
+ "image": "1faf3-1f3ff.png",
+ "sheet_x": 56,
+ "sheet_y": 1,
+ "added_in": "14.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ }
},
{
- "name": "ROLL OF PAPER",
- "unified": "1F9FB",
+ "name": "PALM UP HAND",
+ "unified": "1FAF4",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f9fb.png",
- "sheet_x": 48,
- "sheet_y": 15,
- "short_name": "roll_of_paper",
- "short_names": ["roll_of_paper"],
+ "image": "1faf4.png",
+ "sheet_x": 56,
+ "sheet_y": 2,
+ "short_name": "palm_up_hand",
+ "short_names": ["palm_up_hand"],
"text": null,
"texts": null,
- "category": "Objects",
- "sort_order": 173,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "category": "People & Body",
+ "subcategory": "hand-fingers-open",
+ "sort_order": 175,
+ "added_in": "14.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true,
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1FAF4-1F3FB",
+ "non_qualified": null,
+ "image": "1faf4-1f3fb.png",
+ "sheet_x": 56,
+ "sheet_y": 3,
+ "added_in": "14.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1FAF4-1F3FC",
+ "non_qualified": null,
+ "image": "1faf4-1f3fc.png",
+ "sheet_x": 56,
+ "sheet_y": 4,
+ "added_in": "14.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1FAF4-1F3FD",
+ "non_qualified": null,
+ "image": "1faf4-1f3fd.png",
+ "sheet_x": 56,
+ "sheet_y": 5,
+ "added_in": "14.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1FAF4-1F3FE",
+ "non_qualified": null,
+ "image": "1faf4-1f3fe.png",
+ "sheet_x": 56,
+ "sheet_y": 6,
+ "added_in": "14.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1FAF4-1F3FF",
+ "non_qualified": null,
+ "image": "1faf4-1f3ff.png",
+ "sheet_x": 56,
+ "sheet_y": 7,
+ "added_in": "14.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ }
},
{
- "name": "BAR OF SOAP",
- "unified": "1F9FC",
+ "name": "INDEX POINTING AT THE VIEWER",
+ "unified": "1FAF5",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f9fc.png",
- "sheet_x": 48,
- "sheet_y": 16,
- "short_name": "soap",
- "short_names": ["soap"],
+ "image": "1faf5.png",
+ "sheet_x": 56,
+ "sheet_y": 8,
+ "short_name": "index_pointing_at_the_viewer",
+ "short_names": ["index_pointing_at_the_viewer"],
"text": null,
"texts": null,
- "category": "Objects",
- "sort_order": 174,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "category": "People & Body",
+ "subcategory": "hand-single-finger",
+ "sort_order": 193,
+ "added_in": "14.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true,
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1FAF5-1F3FB",
+ "non_qualified": null,
+ "image": "1faf5-1f3fb.png",
+ "sheet_x": 56,
+ "sheet_y": 9,
+ "added_in": "14.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1FAF5-1F3FC",
+ "non_qualified": null,
+ "image": "1faf5-1f3fc.png",
+ "sheet_x": 56,
+ "sheet_y": 10,
+ "added_in": "14.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1FAF5-1F3FD",
+ "non_qualified": null,
+ "image": "1faf5-1f3fd.png",
+ "sheet_x": 56,
+ "sheet_y": 11,
+ "added_in": "14.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1FAF5-1F3FE",
+ "non_qualified": null,
+ "image": "1faf5-1f3fe.png",
+ "sheet_x": 56,
+ "sheet_y": 12,
+ "added_in": "14.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1FAF5-1F3FF",
+ "non_qualified": null,
+ "image": "1faf5-1f3ff.png",
+ "sheet_x": 56,
+ "sheet_y": 13,
+ "added_in": "14.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ }
},
{
- "name": "SPONGE",
- "unified": "1F9FD",
+ "name": "HEART HANDS",
+ "unified": "1FAF6",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f9fd.png",
- "sheet_x": 48,
- "sheet_y": 17,
- "short_name": "sponge",
- "short_names": ["sponge"],
+ "image": "1faf6.png",
+ "sheet_x": 56,
+ "sheet_y": 14,
+ "short_name": "heart_hands",
+ "short_names": ["heart_hands"],
"text": null,
"texts": null,
- "category": "Objects",
- "sort_order": 175,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "category": "People & Body",
+ "subcategory": "hands",
+ "sort_order": 202,
+ "added_in": "14.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true,
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1FAF6-1F3FB",
+ "non_qualified": null,
+ "image": "1faf6-1f3fb.png",
+ "sheet_x": 56,
+ "sheet_y": 15,
+ "added_in": "14.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FC": {
+ "unified": "1FAF6-1F3FC",
+ "non_qualified": null,
+ "image": "1faf6-1f3fc.png",
+ "sheet_x": 56,
+ "sheet_y": 16,
+ "added_in": "14.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FD": {
+ "unified": "1FAF6-1F3FD",
+ "non_qualified": null,
+ "image": "1faf6-1f3fd.png",
+ "sheet_x": 56,
+ "sheet_y": 17,
+ "added_in": "14.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FE": {
+ "unified": "1FAF6-1F3FE",
+ "non_qualified": null,
+ "image": "1faf6-1f3fe.png",
+ "sheet_x": 56,
+ "sheet_y": 18,
+ "added_in": "14.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ "1F3FF": {
+ "unified": "1FAF6-1F3FF",
+ "non_qualified": null,
+ "image": "1faf6-1f3ff.png",
+ "sheet_x": 56,
+ "sheet_y": 19,
+ "added_in": "14.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ }
+ }
},
{
- "name": "RECEIPT",
- "unified": "1F9FE",
+ "name": "LEFTWARDS PUSHING HAND",
+ "unified": "1FAF7",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f9fe.png",
- "sheet_x": 48,
- "sheet_y": 18,
- "short_name": "receipt",
- "short_names": ["receipt"],
+ "image": "1faf7.png",
+ "sheet_x": 56,
+ "sheet_y": 20,
+ "short_name": "leftwards_pushing_hand",
+ "short_names": ["leftwards_pushing_hand"],
"text": null,
"texts": null,
- "category": "Objects",
- "sort_order": 83,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
+ "category": "People & Body",
+ "subcategory": "hand-fingers-open",
+ "sort_order": 176,
+ "added_in": "15.0",
+ "has_img_apple": true,
+ "has_img_google": true,
"has_img_twitter": false,
"has_img_facebook": false,
- "has_img_messenger": false
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1FAF7-1F3FB",
+ "non_qualified": null,
+ "image": "1faf7-1f3fb.png",
+ "sheet_x": 56,
+ "sheet_y": 21,
+ "added_in": "15.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": false,
+ "has_img_facebook": false
+ },
+ "1F3FC": {
+ "unified": "1FAF7-1F3FC",
+ "non_qualified": null,
+ "image": "1faf7-1f3fc.png",
+ "sheet_x": 56,
+ "sheet_y": 22,
+ "added_in": "15.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": false,
+ "has_img_facebook": false
+ },
+ "1F3FD": {
+ "unified": "1FAF7-1F3FD",
+ "non_qualified": null,
+ "image": "1faf7-1f3fd.png",
+ "sheet_x": 56,
+ "sheet_y": 23,
+ "added_in": "15.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": false,
+ "has_img_facebook": false
+ },
+ "1F3FE": {
+ "unified": "1FAF7-1F3FE",
+ "non_qualified": null,
+ "image": "1faf7-1f3fe.png",
+ "sheet_x": 56,
+ "sheet_y": 24,
+ "added_in": "15.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": false,
+ "has_img_facebook": false
+ },
+ "1F3FF": {
+ "unified": "1FAF7-1F3FF",
+ "non_qualified": null,
+ "image": "1faf7-1f3ff.png",
+ "sheet_x": 56,
+ "sheet_y": 25,
+ "added_in": "15.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": false,
+ "has_img_facebook": false
+ }
+ }
},
{
- "name": "NAZAR AMULET",
- "unified": "1F9FF",
+ "name": "RIGHTWARDS PUSHING HAND",
+ "unified": "1FAF8",
"non_qualified": null,
"docomo": null,
"au": null,
"softbank": null,
"google": null,
- "image": "1f9ff.png",
- "sheet_x": 48,
- "sheet_y": 19,
- "short_name": "nazar_amulet",
- "short_names": ["nazar_amulet"],
+ "image": "1faf8.png",
+ "sheet_x": 56,
+ "sheet_y": 26,
+ "short_name": "rightwards_pushing_hand",
+ "short_names": ["rightwards_pushing_hand"],
"text": null,
"texts": null,
- "category": "Activities",
- "sort_order": 57,
- "added_in": "11.0",
- "has_img_apple": false,
- "has_img_google": false,
+ "category": "People & Body",
+ "subcategory": "hand-fingers-open",
+ "sort_order": 177,
+ "added_in": "15.0",
+ "has_img_apple": true,
+ "has_img_google": true,
"has_img_twitter": false,
"has_img_facebook": false,
- "has_img_messenger": false
+ "skin_variations": {
+ "1F3FB": {
+ "unified": "1FAF8-1F3FB",
+ "non_qualified": null,
+ "image": "1faf8-1f3fb.png",
+ "sheet_x": 56,
+ "sheet_y": 27,
+ "added_in": "15.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": false,
+ "has_img_facebook": false
+ },
+ "1F3FC": {
+ "unified": "1FAF8-1F3FC",
+ "non_qualified": null,
+ "image": "1faf8-1f3fc.png",
+ "sheet_x": 56,
+ "sheet_y": 28,
+ "added_in": "15.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": false,
+ "has_img_facebook": false
+ },
+ "1F3FD": {
+ "unified": "1FAF8-1F3FD",
+ "non_qualified": null,
+ "image": "1faf8-1f3fd.png",
+ "sheet_x": 56,
+ "sheet_y": 29,
+ "added_in": "15.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": false,
+ "has_img_facebook": false
+ },
+ "1F3FE": {
+ "unified": "1FAF8-1F3FE",
+ "non_qualified": null,
+ "image": "1faf8-1f3fe.png",
+ "sheet_x": 56,
+ "sheet_y": 30,
+ "added_in": "15.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": false,
+ "has_img_facebook": false
+ },
+ "1F3FF": {
+ "unified": "1FAF8-1F3FF",
+ "non_qualified": null,
+ "image": "1faf8-1f3ff.png",
+ "sheet_x": 56,
+ "sheet_y": 31,
+ "added_in": "15.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": false,
+ "has_img_facebook": false
+ }
+ }
},
{
"name": "DOUBLE EXCLAMATION MARK",
@@ -50161,20 +62589,20 @@
"softbank": null,
"google": "FEB06",
"image": "203c-fe0f.png",
- "sheet_x": 48,
- "sheet_y": 20,
+ "sheet_x": 56,
+ "sheet_y": 32,
"short_name": "bangbang",
"short_names": ["bangbang"],
"text": null,
"texts": null,
"category": "Symbols",
- "sort_order": 122,
- "added_in": "1.1",
+ "subcategory": "punctuation",
+ "sort_order": 1491,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "EXCLAMATION QUESTION MARK",
@@ -50185,20 +62613,20 @@
"softbank": null,
"google": "FEB05",
"image": "2049-fe0f.png",
- "sheet_x": 48,
- "sheet_y": 21,
+ "sheet_x": 56,
+ "sheet_y": 33,
"short_name": "interrobang",
"short_names": ["interrobang"],
"text": null,
"texts": null,
- "category": "Symbols",
- "sort_order": 123,
- "added_in": "3.0",
+ "category": "Symbols",
+ "subcategory": "punctuation",
+ "sort_order": 1492,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "TRADE MARK SIGN",
@@ -50209,20 +62637,20 @@
"softbank": "E537",
"google": "FEB2A",
"image": "2122-fe0f.png",
- "sheet_x": 48,
- "sheet_y": 22,
+ "sheet_x": 56,
+ "sheet_y": 34,
"short_name": "tm",
"short_names": ["tm"],
"text": null,
"texts": null,
"category": "Symbols",
- "sort_order": 131,
- "added_in": "1.1",
+ "subcategory": "other-symbol",
+ "sort_order": 1520,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "INFORMATION SOURCE",
@@ -50233,20 +62661,20 @@
"softbank": null,
"google": "FEB47",
"image": "2139-fe0f.png",
- "sheet_x": 48,
- "sheet_y": 23,
+ "sheet_x": 56,
+ "sheet_y": 35,
"short_name": "information_source",
"short_names": ["information_source"],
"text": null,
"texts": null,
"category": "Symbols",
- "sort_order": 157,
- "added_in": "3.0",
+ "subcategory": "alphanum",
+ "sort_order": 1545,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "LEFT RIGHT ARROW",
@@ -50257,20 +62685,20 @@
"softbank": null,
"google": "FEAF6",
"image": "2194-fe0f.png",
- "sheet_x": 48,
- "sheet_y": 24,
+ "sheet_x": 56,
+ "sheet_y": 36,
"short_name": "left_right_arrow",
"short_names": ["left_right_arrow"],
"text": null,
"texts": null,
"category": "Symbols",
- "sort_order": 36,
- "added_in": "1.1",
+ "subcategory": "arrow",
+ "sort_order": 1419,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "UP DOWN ARROW",
@@ -50281,20 +62709,20 @@
"softbank": null,
"google": "FEAF7",
"image": "2195-fe0f.png",
- "sheet_x": 48,
- "sheet_y": 25,
+ "sheet_x": 56,
+ "sheet_y": 37,
"short_name": "arrow_up_down",
"short_names": ["arrow_up_down"],
"text": null,
"texts": null,
"category": "Symbols",
- "sort_order": 35,
- "added_in": "1.1",
+ "subcategory": "arrow",
+ "sort_order": 1418,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "NORTH WEST ARROW",
@@ -50305,20 +62733,20 @@
"softbank": "E237",
"google": "FEAF2",
"image": "2196-fe0f.png",
- "sheet_x": 48,
- "sheet_y": 26,
+ "sheet_x": 56,
+ "sheet_y": 38,
"short_name": "arrow_upper_left",
"short_names": ["arrow_upper_left"],
"text": null,
"texts": null,
"category": "Symbols",
- "sort_order": 34,
- "added_in": "1.1",
+ "subcategory": "arrow",
+ "sort_order": 1417,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "NORTH EAST ARROW",
@@ -50329,20 +62757,20 @@
"softbank": "E236",
"google": "FEAF0",
"image": "2197-fe0f.png",
- "sheet_x": 48,
- "sheet_y": 27,
+ "sheet_x": 56,
+ "sheet_y": 39,
"short_name": "arrow_upper_right",
"short_names": ["arrow_upper_right"],
"text": null,
"texts": null,
"category": "Symbols",
- "sort_order": 28,
- "added_in": "1.1",
+ "subcategory": "arrow",
+ "sort_order": 1411,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "SOUTH EAST ARROW",
@@ -50353,20 +62781,20 @@
"softbank": "E238",
"google": "FEAF1",
"image": "2198-fe0f.png",
- "sheet_x": 48,
- "sheet_y": 28,
+ "sheet_x": 56,
+ "sheet_y": 40,
"short_name": "arrow_lower_right",
"short_names": ["arrow_lower_right"],
"text": null,
"texts": null,
"category": "Symbols",
- "sort_order": 30,
- "added_in": "1.1",
+ "subcategory": "arrow",
+ "sort_order": 1413,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "SOUTH WEST ARROW",
@@ -50377,20 +62805,20 @@
"softbank": "E239",
"google": "FEAF3",
"image": "2199-fe0f.png",
- "sheet_x": 48,
- "sheet_y": 29,
+ "sheet_x": 56,
+ "sheet_y": 41,
"short_name": "arrow_lower_left",
"short_names": ["arrow_lower_left"],
"text": null,
"texts": null,
"category": "Symbols",
- "sort_order": 32,
- "added_in": "1.1",
+ "subcategory": "arrow",
+ "sort_order": 1415,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "LEFTWARDS ARROW WITH HOOK",
@@ -50401,20 +62829,20 @@
"softbank": null,
"google": "FEB83",
"image": "21a9-fe0f.png",
- "sheet_x": 48,
- "sheet_y": 30,
+ "sheet_x": 56,
+ "sheet_y": 42,
"short_name": "leftwards_arrow_with_hook",
"short_names": ["leftwards_arrow_with_hook"],
"text": null,
"texts": null,
"category": "Symbols",
- "sort_order": 37,
- "added_in": "1.1",
+ "subcategory": "arrow",
+ "sort_order": 1420,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "RIGHTWARDS ARROW WITH HOOK",
@@ -50425,20 +62853,20 @@
"softbank": null,
"google": "FEB88",
"image": "21aa-fe0f.png",
- "sheet_x": 48,
- "sheet_y": 31,
+ "sheet_x": 56,
+ "sheet_y": 43,
"short_name": "arrow_right_hook",
"short_names": ["arrow_right_hook"],
"text": null,
"texts": null,
"category": "Symbols",
- "sort_order": 38,
- "added_in": "1.1",
+ "subcategory": "arrow",
+ "sort_order": 1421,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "WATCH",
@@ -50449,20 +62877,20 @@
"softbank": null,
"google": "FE01D",
"image": "231a.png",
- "sheet_x": 48,
- "sheet_y": 32,
+ "sheet_x": 56,
+ "sheet_y": 44,
"short_name": "watch",
"short_names": ["watch"],
"text": null,
"texts": null,
"category": "Travel & Places",
- "sort_order": 129,
- "added_in": "1.1",
+ "subcategory": "time",
+ "sort_order": 962,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "HOURGLASS",
@@ -50473,23 +62901,23 @@
"softbank": null,
"google": "FE01C",
"image": "231b.png",
- "sheet_x": 48,
- "sheet_y": 33,
+ "sheet_x": 56,
+ "sheet_y": 45,
"short_name": "hourglass",
"short_names": ["hourglass"],
"text": null,
"texts": null,
"category": "Travel & Places",
- "sort_order": 127,
- "added_in": "1.1",
+ "subcategory": "time",
+ "sort_order": 960,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": null,
+ "name": "KEYBOARD",
"unified": "2328-FE0F",
"non_qualified": "2328",
"docomo": null,
@@ -50497,23 +62925,23 @@
"softbank": null,
"google": null,
"image": "2328-fe0f.png",
- "sheet_x": 48,
- "sheet_y": 34,
+ "sheet_x": 56,
+ "sheet_y": 46,
"short_name": "keyboard",
"short_names": ["keyboard"],
"text": null,
"texts": null,
"category": "Objects",
- "sort_order": 36,
- "added_in": "1.1",
+ "subcategory": "computer",
+ "sort_order": 1211,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
- "name": null,
+ "name": "EJECT BUTTON",
"unified": "23CF-FE0F",
"non_qualified": "23CF",
"docomo": null,
@@ -50521,20 +62949,20 @@
"softbank": null,
"google": null,
"image": "23cf-fe0f.png",
- "sheet_x": 48,
- "sheet_y": 35,
+ "sheet_x": 56,
+ "sheet_y": 47,
"short_name": "eject",
"short_names": ["eject"],
"text": null,
"texts": null,
"category": "Symbols",
- "sort_order": 90,
- "added_in": "4.0",
+ "subcategory": "av-symbol",
+ "sort_order": 1474,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
"name": "BLACK RIGHT-POINTING DOUBLE TRIANGLE",
@@ -50545,20 +62973,20 @@
"softbank": "E23C",
"google": "FEAFE",
"image": "23e9.png",
- "sheet_x": 48,
- "sheet_y": 36,
+ "sheet_x": 56,
+ "sheet_y": 48,
"short_name": "fast_forward",
"short_names": ["fast_forward"],
"text": null,
"texts": null,
"category": "Symbols",
- "sort_order": 77,
- "added_in": "6.0",
+ "subcategory": "av-symbol",
+ "sort_order": 1461,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "BLACK LEFT-POINTING DOUBLE TRIANGLE",
@@ -50569,20 +62997,20 @@
"softbank": "E23D",
"google": "FEAFF",
"image": "23ea.png",
- "sheet_x": 48,
- "sheet_y": 37,
+ "sheet_x": 56,
+ "sheet_y": 49,
"short_name": "rewind",
"short_names": ["rewind"],
"text": null,
"texts": null,
"category": "Symbols",
- "sort_order": 81,
- "added_in": "6.0",
+ "subcategory": "av-symbol",
+ "sort_order": 1465,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "BLACK UP-POINTING DOUBLE TRIANGLE",
@@ -50593,20 +63021,20 @@
"softbank": null,
"google": "FEB03",
"image": "23eb.png",
- "sheet_x": 48,
- "sheet_y": 38,
+ "sheet_x": 56,
+ "sheet_y": 50,
"short_name": "arrow_double_up",
"short_names": ["arrow_double_up"],
"text": null,
"texts": null,
"category": "Symbols",
- "sort_order": 84,
- "added_in": "6.0",
+ "subcategory": "av-symbol",
+ "sort_order": 1468,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "BLACK DOWN-POINTING DOUBLE TRIANGLE",
@@ -50617,23 +63045,23 @@
"softbank": null,
"google": "FEB02",
"image": "23ec.png",
- "sheet_x": 48,
- "sheet_y": 39,
+ "sheet_x": 56,
+ "sheet_y": 51,
"short_name": "arrow_double_down",
"short_names": ["arrow_double_down"],
"text": null,
"texts": null,
"category": "Symbols",
- "sort_order": 86,
- "added_in": "6.0",
+ "subcategory": "av-symbol",
+ "sort_order": 1470,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": null,
+ "name": "NEXT TRACK BUTTON",
"unified": "23ED-FE0F",
"non_qualified": "23ED",
"docomo": null,
@@ -50641,23 +63069,23 @@
"softbank": null,
"google": null,
"image": "23ed-fe0f.png",
- "sheet_x": 48,
- "sheet_y": 40,
+ "sheet_x": 56,
+ "sheet_y": 52,
"short_name": "black_right_pointing_double_triangle_with_vertical_bar",
"short_names": ["black_right_pointing_double_triangle_with_vertical_bar"],
"text": null,
"texts": null,
"category": "Symbols",
- "sort_order": 78,
- "added_in": "6.0",
+ "subcategory": "av-symbol",
+ "sort_order": 1462,
+ "added_in": "0.7",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
- "name": null,
+ "name": "LAST TRACK BUTTON",
"unified": "23EE-FE0F",
"non_qualified": "23EE",
"docomo": null,
@@ -50665,23 +63093,23 @@
"softbank": null,
"google": null,
"image": "23ee-fe0f.png",
- "sheet_x": 48,
- "sheet_y": 41,
+ "sheet_x": 56,
+ "sheet_y": 53,
"short_name": "black_left_pointing_double_triangle_with_vertical_bar",
"short_names": ["black_left_pointing_double_triangle_with_vertical_bar"],
"text": null,
"texts": null,
"category": "Symbols",
- "sort_order": 82,
- "added_in": "6.0",
+ "subcategory": "av-symbol",
+ "sort_order": 1466,
+ "added_in": "0.7",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
- "name": null,
+ "name": "PLAY OR PAUSE BUTTON",
"unified": "23EF-FE0F",
"non_qualified": "23EF",
"docomo": null,
@@ -50689,20 +63117,20 @@
"softbank": null,
"google": null,
"image": "23ef-fe0f.png",
- "sheet_x": 48,
- "sheet_y": 42,
+ "sheet_x": 56,
+ "sheet_y": 54,
"short_name": "black_right_pointing_triangle_with_double_vertical_bar",
"short_names": ["black_right_pointing_triangle_with_double_vertical_bar"],
"text": null,
"texts": null,
"category": "Symbols",
- "sort_order": 79,
- "added_in": "6.0",
+ "subcategory": "av-symbol",
+ "sort_order": 1463,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
"name": "ALARM CLOCK",
@@ -50713,23 +63141,23 @@
"softbank": null,
"google": "FE02A",
"image": "23f0.png",
- "sheet_x": 48,
- "sheet_y": 43,
+ "sheet_x": 56,
+ "sheet_y": 55,
"short_name": "alarm_clock",
"short_names": ["alarm_clock"],
"text": null,
"texts": null,
"category": "Travel & Places",
- "sort_order": 130,
- "added_in": "6.0",
+ "subcategory": "time",
+ "sort_order": 963,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": null,
+ "name": "STOPWATCH",
"unified": "23F1-FE0F",
"non_qualified": "23F1",
"docomo": null,
@@ -50737,23 +63165,23 @@
"softbank": null,
"google": null,
"image": "23f1-fe0f.png",
- "sheet_x": 48,
- "sheet_y": 44,
+ "sheet_x": 56,
+ "sheet_y": 56,
"short_name": "stopwatch",
"short_names": ["stopwatch"],
"text": null,
"texts": null,
"category": "Travel & Places",
- "sort_order": 131,
- "added_in": "6.0",
+ "subcategory": "time",
+ "sort_order": 964,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
- "name": null,
+ "name": "TIMER CLOCK",
"unified": "23F2-FE0F",
"non_qualified": "23F2",
"docomo": null,
@@ -50761,20 +63189,20 @@
"softbank": null,
"google": null,
"image": "23f2-fe0f.png",
- "sheet_x": 48,
- "sheet_y": 45,
+ "sheet_x": 56,
+ "sheet_y": 57,
"short_name": "timer_clock",
"short_names": ["timer_clock"],
"text": null,
"texts": null,
"category": "Travel & Places",
- "sort_order": 132,
- "added_in": "6.0",
+ "subcategory": "time",
+ "sort_order": 965,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
"name": "HOURGLASS WITH FLOWING SAND",
@@ -50785,23 +63213,23 @@
"softbank": null,
"google": "FE01B",
"image": "23f3.png",
- "sheet_x": 48,
- "sheet_y": 46,
+ "sheet_x": 56,
+ "sheet_y": 58,
"short_name": "hourglass_flowing_sand",
"short_names": ["hourglass_flowing_sand"],
"text": null,
"texts": null,
"category": "Travel & Places",
- "sort_order": 128,
- "added_in": "6.0",
+ "subcategory": "time",
+ "sort_order": 961,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": null,
+ "name": "PAUSE BUTTON",
"unified": "23F8-FE0F",
"non_qualified": "23F8",
"docomo": null,
@@ -50809,23 +63237,23 @@
"softbank": null,
"google": null,
"image": "23f8-fe0f.png",
- "sheet_x": 48,
- "sheet_y": 47,
+ "sheet_x": 56,
+ "sheet_y": 59,
"short_name": "double_vertical_bar",
"short_names": ["double_vertical_bar"],
"text": null,
"texts": null,
"category": "Symbols",
- "sort_order": 87,
- "added_in": "7.0",
+ "subcategory": "av-symbol",
+ "sort_order": 1471,
+ "added_in": "0.7",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
- "name": null,
+ "name": "STOP BUTTON",
"unified": "23F9-FE0F",
"non_qualified": "23F9",
"docomo": null,
@@ -50833,23 +63261,23 @@
"softbank": null,
"google": null,
"image": "23f9-fe0f.png",
- "sheet_x": 48,
- "sheet_y": 48,
+ "sheet_x": 56,
+ "sheet_y": 60,
"short_name": "black_square_for_stop",
"short_names": ["black_square_for_stop"],
"text": null,
"texts": null,
"category": "Symbols",
- "sort_order": 88,
- "added_in": "7.0",
+ "subcategory": "av-symbol",
+ "sort_order": 1472,
+ "added_in": "0.7",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
- "name": null,
+ "name": "RECORD BUTTON",
"unified": "23FA-FE0F",
"non_qualified": "23FA",
"docomo": null,
@@ -50857,20 +63285,20 @@
"softbank": null,
"google": null,
"image": "23fa-fe0f.png",
- "sheet_x": 48,
- "sheet_y": 49,
+ "sheet_x": 57,
+ "sheet_y": 0,
"short_name": "black_circle_for_record",
"short_names": ["black_circle_for_record"],
"text": null,
"texts": null,
"category": "Symbols",
- "sort_order": 89,
- "added_in": "7.0",
+ "subcategory": "av-symbol",
+ "sort_order": 1473,
+ "added_in": "0.7",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
"name": "CIRCLED LATIN CAPITAL LETTER M",
@@ -50881,20 +63309,20 @@
"softbank": null,
"google": "FE7E1",
"image": "24c2-fe0f.png",
- "sheet_x": 48,
- "sheet_y": 50,
+ "sheet_x": 57,
+ "sheet_y": 1,
"short_name": "m",
"short_names": ["m"],
"text": null,
"texts": null,
"category": "Symbols",
- "sort_order": 159,
- "added_in": "1.1",
+ "subcategory": "alphanum",
+ "sort_order": 1547,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "BLACK SMALL SQUARE",
@@ -50905,20 +63333,20 @@
"softbank": null,
"google": "FEB6E",
"image": "25aa-fe0f.png",
- "sheet_x": 48,
- "sheet_y": 51,
+ "sheet_x": 57,
+ "sheet_y": 2,
"short_name": "black_small_square",
"short_names": ["black_small_square"],
"text": null,
"texts": null,
"category": "Symbols",
- "sort_order": 185,
- "added_in": "1.1",
+ "subcategory": "geometric",
+ "sort_order": 1595,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "WHITE SMALL SQUARE",
@@ -50929,20 +63357,20 @@
"softbank": null,
"google": "FEB6D",
"image": "25ab-fe0f.png",
- "sheet_x": 48,
- "sheet_y": 52,
+ "sheet_x": 57,
+ "sheet_y": 3,
"short_name": "white_small_square",
"short_names": ["white_small_square"],
"text": null,
"texts": null,
"category": "Symbols",
- "sort_order": 186,
- "added_in": "1.1",
+ "subcategory": "geometric",
+ "sort_order": 1596,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "BLACK RIGHT-POINTING TRIANGLE",
@@ -50953,20 +63381,20 @@
"softbank": "E23A",
"google": "FEAFC",
"image": "25b6-fe0f.png",
- "sheet_x": 49,
- "sheet_y": 0,
+ "sheet_x": 57,
+ "sheet_y": 4,
"short_name": "arrow_forward",
"short_names": ["arrow_forward"],
"text": null,
"texts": null,
"category": "Symbols",
- "sort_order": 76,
- "added_in": "1.1",
+ "subcategory": "av-symbol",
+ "sort_order": 1460,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "BLACK LEFT-POINTING TRIANGLE",
@@ -50977,20 +63405,20 @@
"softbank": "E23B",
"google": "FEAFD",
"image": "25c0-fe0f.png",
- "sheet_x": 49,
- "sheet_y": 1,
+ "sheet_x": 57,
+ "sheet_y": 5,
"short_name": "arrow_backward",
"short_names": ["arrow_backward"],
"text": null,
"texts": null,
"category": "Symbols",
- "sort_order": 80,
- "added_in": "1.1",
+ "subcategory": "av-symbol",
+ "sort_order": 1464,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "WHITE MEDIUM SQUARE",
@@ -51001,20 +63429,20 @@
"softbank": null,
"google": "FEB71",
"image": "25fb-fe0f.png",
- "sheet_x": 49,
- "sheet_y": 2,
+ "sheet_x": 57,
+ "sheet_y": 6,
"short_name": "white_medium_square",
"short_names": ["white_medium_square"],
"text": null,
"texts": null,
"category": "Symbols",
- "sort_order": 187,
- "added_in": "3.2",
+ "subcategory": "geometric",
+ "sort_order": 1592,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "BLACK MEDIUM SQUARE",
@@ -51025,20 +63453,20 @@
"softbank": null,
"google": "FEB72",
"image": "25fc-fe0f.png",
- "sheet_x": 49,
- "sheet_y": 3,
+ "sheet_x": 57,
+ "sheet_y": 7,
"short_name": "black_medium_square",
"short_names": ["black_medium_square"],
"text": null,
"texts": null,
"category": "Symbols",
- "sort_order": 188,
- "added_in": "3.2",
+ "subcategory": "geometric",
+ "sort_order": 1591,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "WHITE MEDIUM SMALL SQUARE",
@@ -51049,20 +63477,20 @@
"softbank": null,
"google": "FEB6F",
"image": "25fd.png",
- "sheet_x": 49,
- "sheet_y": 4,
+ "sheet_x": 57,
+ "sheet_y": 8,
"short_name": "white_medium_small_square",
"short_names": ["white_medium_small_square"],
"text": null,
"texts": null,
"category": "Symbols",
- "sort_order": 189,
- "added_in": "3.2",
+ "subcategory": "geometric",
+ "sort_order": 1594,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "BLACK MEDIUM SMALL SQUARE",
@@ -51073,20 +63501,20 @@
"softbank": null,
"google": "FEB70",
"image": "25fe.png",
- "sheet_x": 49,
- "sheet_y": 5,
+ "sheet_x": 57,
+ "sheet_y": 9,
"short_name": "black_medium_small_square",
"short_names": ["black_medium_small_square"],
"text": null,
"texts": null,
"category": "Symbols",
- "sort_order": 190,
- "added_in": "3.2",
+ "subcategory": "geometric",
+ "sort_order": 1593,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "BLACK SUN WITH RAYS",
@@ -51097,20 +63525,20 @@
"softbank": "E04A",
"google": "FE000",
"image": "2600-fe0f.png",
- "sheet_x": 49,
- "sheet_y": 6,
+ "sheet_x": 57,
+ "sheet_y": 10,
"short_name": "sunny",
"short_names": ["sunny"],
"text": null,
"texts": null,
"category": "Travel & Places",
- "sort_order": 171,
- "added_in": "1.1",
+ "subcategory": "sky & weather",
+ "sort_order": 1004,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "CLOUD",
@@ -51121,23 +63549,23 @@
"softbank": "E049",
"google": "FE001",
"image": "2601-fe0f.png",
- "sheet_x": 49,
- "sheet_y": 7,
+ "sheet_x": 57,
+ "sheet_y": 11,
"short_name": "cloud",
"short_names": ["cloud"],
"text": null,
"texts": null,
"category": "Travel & Places",
- "sort_order": 177,
- "added_in": "1.1",
+ "subcategory": "sky & weather",
+ "sort_order": 1012,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": null,
+ "name": "UMBRELLA",
"unified": "2602-FE0F",
"non_qualified": "2602",
"docomo": null,
@@ -51145,23 +63573,23 @@
"softbank": null,
"google": null,
"image": "2602-fe0f.png",
- "sheet_x": 49,
- "sheet_y": 8,
+ "sheet_x": 57,
+ "sheet_y": 12,
"short_name": "umbrella",
"short_names": ["umbrella"],
"text": null,
"texts": null,
"category": "Travel & Places",
- "sort_order": 192,
- "added_in": "1.1",
+ "subcategory": "sky & weather",
+ "sort_order": 1027,
+ "added_in": "0.7",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
- "name": null,
+ "name": "SNOWMAN",
"unified": "2603-FE0F",
"non_qualified": "2603",
"docomo": null,
@@ -51169,23 +63597,23 @@
"softbank": null,
"google": null,
"image": "2603-fe0f.png",
- "sheet_x": 49,
- "sheet_y": 9,
+ "sheet_x": 57,
+ "sheet_y": 13,
"short_name": "snowman",
"short_names": ["snowman"],
"text": null,
"texts": null,
"category": "Travel & Places",
- "sort_order": 197,
- "added_in": "1.1",
+ "subcategory": "sky & weather",
+ "sort_order": 1032,
+ "added_in": "0.7",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
- "name": null,
+ "name": "COMET",
"unified": "2604-FE0F",
"non_qualified": "2604",
"docomo": null,
@@ -51193,20 +63621,20 @@
"softbank": null,
"google": null,
"image": "2604-fe0f.png",
- "sheet_x": 49,
- "sheet_y": 10,
+ "sheet_x": 57,
+ "sheet_y": 14,
"short_name": "comet",
"short_names": ["comet"],
"text": null,
"texts": null,
"category": "Travel & Places",
- "sort_order": 199,
- "added_in": "1.1",
+ "subcategory": "sky & weather",
+ "sort_order": 1034,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
"name": "BLACK TELEPHONE",
@@ -51217,20 +63645,20 @@
"softbank": "E009",
"google": "FE523",
"image": "260e-fe0f.png",
- "sheet_x": 49,
- "sheet_y": 11,
+ "sheet_x": 57,
+ "sheet_y": 15,
"short_name": "phone",
"short_names": ["phone", "telephone"],
"text": null,
"texts": null,
"category": "Objects",
- "sort_order": 27,
- "added_in": "1.1",
+ "subcategory": "phone",
+ "sort_order": 1201,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "BALLOT BOX WITH CHECK",
@@ -51241,20 +63669,20 @@
"softbank": null,
"google": "FEB8B",
"image": "2611-fe0f.png",
- "sheet_x": 49,
- "sheet_y": 12,
+ "sheet_x": 57,
+ "sheet_y": 16,
"short_name": "ballot_box_with_check",
"short_names": ["ballot_box_with_check"],
"text": null,
"texts": null,
"category": "Symbols",
- "sort_order": 108,
- "added_in": "1.1",
+ "subcategory": "other-symbol",
+ "sort_order": 1508,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "UMBRELLA WITH RAIN DROPS",
@@ -51265,20 +63693,20 @@
"softbank": "E04B",
"google": "FE002",
"image": "2614.png",
- "sheet_x": 49,
- "sheet_y": 13,
+ "sheet_x": 57,
+ "sheet_y": 17,
"short_name": "umbrella_with_rain_drops",
"short_names": ["umbrella_with_rain_drops"],
"text": null,
"texts": null,
"category": "Travel & Places",
- "sort_order": 193,
- "added_in": "4.0",
+ "subcategory": "sky & weather",
+ "sort_order": 1028,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "HOT BEVERAGE",
@@ -51289,23 +63717,23 @@
"softbank": "E045",
"google": "FE981",
"image": "2615.png",
- "sheet_x": 49,
- "sheet_y": 14,
+ "sheet_x": 57,
+ "sheet_y": 18,
"short_name": "coffee",
"short_names": ["coffee"],
"text": null,
"texts": null,
"category": "Food & Drink",
- "sort_order": 91,
- "added_in": "4.0",
+ "subcategory": "drink",
+ "sort_order": 795,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": null,
+ "name": "SHAMROCK",
"unified": "2618-FE0F",
"non_qualified": "2618",
"docomo": null,
@@ -51313,20 +63741,20 @@
"softbank": null,
"google": null,
"image": "2618-fe0f.png",
- "sheet_x": 49,
- "sheet_y": 15,
+ "sheet_x": 57,
+ "sheet_y": 19,
"short_name": "shamrock",
"short_names": ["shamrock"],
"text": null,
"texts": null,
"category": "Animals & Nature",
- "sort_order": 120,
- "added_in": "4.1",
+ "subcategory": "plant-other",
+ "sort_order": 679,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
"name": "WHITE UP POINTING INDEX",
@@ -51337,90 +63765,85 @@
"softbank": "E00F",
"google": "FEB98",
"image": "261d-fe0f.png",
- "sheet_x": 49,
- "sheet_y": 16,
+ "sheet_x": 57,
+ "sheet_y": 20,
"short_name": "point_up",
"short_names": ["point_up"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 362,
- "added_in": "1.1",
+ "category": "People & Body",
+ "subcategory": "hand-single-finger",
+ "sort_order": 192,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": true,
"skin_variations": {
"1F3FB": {
"unified": "261D-1F3FB",
"non_qualified": null,
"image": "261d-1f3fb.png",
- "sheet_x": 49,
- "sheet_y": 17,
- "added_in": "8.0",
+ "sheet_x": 57,
+ "sheet_y": 21,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
"1F3FC": {
"unified": "261D-1F3FC",
"non_qualified": null,
"image": "261d-1f3fc.png",
- "sheet_x": 49,
- "sheet_y": 18,
- "added_in": "8.0",
+ "sheet_x": 57,
+ "sheet_y": 22,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
"1F3FD": {
"unified": "261D-1F3FD",
"non_qualified": null,
"image": "261d-1f3fd.png",
- "sheet_x": 49,
- "sheet_y": 19,
- "added_in": "8.0",
+ "sheet_x": 57,
+ "sheet_y": 23,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
"1F3FE": {
"unified": "261D-1F3FE",
"non_qualified": null,
"image": "261d-1f3fe.png",
- "sheet_x": 49,
- "sheet_y": 20,
- "added_in": "8.0",
+ "sheet_x": 57,
+ "sheet_y": 24,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
"1F3FF": {
"unified": "261D-1F3FF",
"non_qualified": null,
"image": "261d-1f3ff.png",
- "sheet_x": 49,
- "sheet_y": 21,
- "added_in": "8.0",
+ "sheet_x": 57,
+ "sheet_y": 25,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
}
}
},
{
- "name": null,
+ "name": "SKULL AND CROSSBONES",
"unified": "2620-FE0F",
"non_qualified": "2620",
"docomo": null,
@@ -51428,23 +63851,23 @@
"softbank": null,
"google": null,
"image": "2620-fe0f.png",
- "sheet_x": 49,
- "sheet_y": 22,
+ "sheet_x": 57,
+ "sheet_y": 26,
"short_name": "skull_and_crossbones",
"short_names": ["skull_and_crossbones"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 96,
- "added_in": "1.1",
+ "category": "Smileys & Emotion",
+ "subcategory": "face-negative",
+ "sort_order": 107,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
- "name": null,
+ "name": "RADIOACTIVE",
"unified": "2622-FE0F",
"non_qualified": "2622",
"docomo": null,
@@ -51452,23 +63875,23 @@
"softbank": null,
"google": null,
"image": "2622-fe0f.png",
- "sheet_x": 49,
- "sheet_y": 23,
+ "sheet_x": 57,
+ "sheet_y": 27,
"short_name": "radioactive_sign",
"short_names": ["radioactive_sign"],
"text": null,
"texts": null,
"category": "Symbols",
- "sort_order": 25,
- "added_in": "1.1",
+ "subcategory": "warning",
+ "sort_order": 1408,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
- "name": null,
+ "name": "BIOHAZARD",
"unified": "2623-FE0F",
"non_qualified": "2623",
"docomo": null,
@@ -51476,23 +63899,23 @@
"softbank": null,
"google": null,
"image": "2623-fe0f.png",
- "sheet_x": 49,
- "sheet_y": 24,
+ "sheet_x": 57,
+ "sheet_y": 28,
"short_name": "biohazard_sign",
"short_names": ["biohazard_sign"],
"text": null,
"texts": null,
"category": "Symbols",
- "sort_order": 26,
- "added_in": "1.1",
+ "subcategory": "warning",
+ "sort_order": 1409,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
- "name": null,
+ "name": "ORTHODOX CROSS",
"unified": "2626-FE0F",
"non_qualified": "2626",
"docomo": null,
@@ -51500,23 +63923,23 @@
"softbank": null,
"google": null,
"image": "2626-fe0f.png",
- "sheet_x": 49,
- "sheet_y": 25,
+ "sheet_x": 57,
+ "sheet_y": 29,
"short_name": "orthodox_cross",
"short_names": ["orthodox_cross"],
"text": null,
"texts": null,
"category": "Symbols",
- "sort_order": 55,
- "added_in": "1.1",
+ "subcategory": "religion",
+ "sort_order": 1438,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
- "name": null,
+ "name": "STAR AND CRESCENT",
"unified": "262A-FE0F",
"non_qualified": "262A",
"docomo": null,
@@ -51524,23 +63947,23 @@
"softbank": null,
"google": null,
"image": "262a-fe0f.png",
- "sheet_x": 49,
- "sheet_y": 26,
+ "sheet_x": 57,
+ "sheet_y": 30,
"short_name": "star_and_crescent",
"short_names": ["star_and_crescent"],
"text": null,
"texts": null,
"category": "Symbols",
- "sort_order": 56,
- "added_in": "1.1",
+ "subcategory": "religion",
+ "sort_order": 1439,
+ "added_in": "0.7",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
- "name": null,
+ "name": "PEACE SYMBOL",
"unified": "262E-FE0F",
"non_qualified": "262E",
"docomo": null,
@@ -51548,23 +63971,23 @@
"softbank": null,
"google": null,
"image": "262e-fe0f.png",
- "sheet_x": 49,
- "sheet_y": 27,
+ "sheet_x": 57,
+ "sheet_y": 31,
"short_name": "peace_symbol",
"short_names": ["peace_symbol"],
"text": null,
"texts": null,
"category": "Symbols",
- "sort_order": 57,
- "added_in": "1.1",
+ "subcategory": "religion",
+ "sort_order": 1440,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
- "name": null,
+ "name": "YIN YANG",
"unified": "262F-FE0F",
"non_qualified": "262F",
"docomo": null,
@@ -51572,23 +63995,23 @@
"softbank": null,
"google": null,
"image": "262f-fe0f.png",
- "sheet_x": 49,
- "sheet_y": 28,
+ "sheet_x": 57,
+ "sheet_y": 32,
"short_name": "yin_yang",
"short_names": ["yin_yang"],
"text": null,
"texts": null,
"category": "Symbols",
- "sort_order": 53,
- "added_in": "1.1",
+ "subcategory": "religion",
+ "sort_order": 1436,
+ "added_in": "0.7",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
- "name": null,
+ "name": "WHEEL OF DHARMA",
"unified": "2638-FE0F",
"non_qualified": "2638",
"docomo": null,
@@ -51596,23 +64019,23 @@
"softbank": null,
"google": null,
"image": "2638-fe0f.png",
- "sheet_x": 49,
- "sheet_y": 29,
+ "sheet_x": 57,
+ "sheet_y": 33,
"short_name": "wheel_of_dharma",
"short_names": ["wheel_of_dharma"],
"text": null,
"texts": null,
"category": "Symbols",
- "sort_order": 52,
- "added_in": "1.1",
+ "subcategory": "religion",
+ "sort_order": 1435,
+ "added_in": "0.7",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
- "name": null,
+ "name": "FROWNING FACE",
"unified": "2639-FE0F",
"non_qualified": "2639",
"docomo": null,
@@ -51620,20 +64043,20 @@
"softbank": null,
"google": null,
"image": "2639-fe0f.png",
- "sheet_x": 49,
- "sheet_y": 30,
+ "sheet_x": 57,
+ "sheet_y": 34,
"short_name": "white_frowning_face",
"short_names": ["white_frowning_face"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 50,
- "added_in": "1.1",
+ "category": "Smileys & Emotion",
+ "subcategory": "face-concerned",
+ "sort_order": 78,
+ "added_in": "0.7",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
"name": "WHITE SMILING FACE",
@@ -51644,23 +64067,23 @@
"softbank": "E414",
"google": "FE336",
"image": "263a-fe0f.png",
- "sheet_x": 49,
- "sheet_y": 31,
+ "sheet_x": 57,
+ "sheet_y": 35,
"short_name": "relaxed",
"short_names": ["relaxed"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 19,
- "added_in": "1.1",
+ "category": "Smileys & Emotion",
+ "subcategory": "face-affection",
+ "sort_order": 20,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": null,
+ "name": "FEMALE SIGN",
"unified": "2640-FE0F",
"non_qualified": "2640",
"docomo": null,
@@ -51668,23 +64091,23 @@
"softbank": null,
"google": null,
"image": "2640-fe0f.png",
- "sheet_x": 49,
- "sheet_y": 32,
+ "sheet_x": 57,
+ "sheet_y": 36,
"short_name": "female_sign",
"short_names": ["female_sign"],
"text": null,
"texts": null,
"category": "Symbols",
- "sort_order": 97,
- "added_in": "1.1",
+ "subcategory": "gender",
+ "sort_order": 1482,
+ "added_in": "4.0",
"has_img_apple": false,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
- "name": null,
+ "name": "MALE SIGN",
"unified": "2642-FE0F",
"non_qualified": "2642",
"docomo": null,
@@ -51692,20 +64115,20 @@
"softbank": null,
"google": null,
"image": "2642-fe0f.png",
- "sheet_x": 49,
- "sheet_y": 33,
+ "sheet_x": 57,
+ "sheet_y": 37,
"short_name": "male_sign",
"short_names": ["male_sign"],
"text": null,
"texts": null,
"category": "Symbols",
- "sort_order": 98,
- "added_in": "1.1",
+ "subcategory": "gender",
+ "sort_order": 1483,
+ "added_in": "4.0",
"has_img_apple": false,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
"name": "ARIES",
@@ -51716,20 +64139,20 @@
"softbank": "E23F",
"google": "FE02B",
"image": "2648.png",
- "sheet_x": 49,
- "sheet_y": 34,
+ "sheet_x": 57,
+ "sheet_y": 38,
"short_name": "aries",
"short_names": ["aries"],
"text": null,
"texts": null,
"category": "Symbols",
- "sort_order": 60,
- "added_in": "1.1",
+ "subcategory": "zodiac",
+ "sort_order": 1444,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "TAURUS",
@@ -51740,20 +64163,20 @@
"softbank": "E240",
"google": "FE02C",
"image": "2649.png",
- "sheet_x": 49,
- "sheet_y": 35,
+ "sheet_x": 57,
+ "sheet_y": 39,
"short_name": "taurus",
"short_names": ["taurus"],
"text": null,
"texts": null,
"category": "Symbols",
- "sort_order": 61,
- "added_in": "1.1",
+ "subcategory": "zodiac",
+ "sort_order": 1445,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "GEMINI",
@@ -51764,20 +64187,20 @@
"softbank": "E241",
"google": "FE02D",
"image": "264a.png",
- "sheet_x": 49,
- "sheet_y": 36,
+ "sheet_x": 57,
+ "sheet_y": 40,
"short_name": "gemini",
"short_names": ["gemini"],
"text": null,
"texts": null,
"category": "Symbols",
- "sort_order": 62,
- "added_in": "1.1",
+ "subcategory": "zodiac",
+ "sort_order": 1446,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "CANCER",
@@ -51788,20 +64211,20 @@
"softbank": "E242",
"google": "FE02E",
"image": "264b.png",
- "sheet_x": 49,
- "sheet_y": 37,
+ "sheet_x": 57,
+ "sheet_y": 41,
"short_name": "cancer",
"short_names": ["cancer"],
"text": null,
"texts": null,
"category": "Symbols",
- "sort_order": 63,
- "added_in": "1.1",
+ "subcategory": "zodiac",
+ "sort_order": 1447,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "LEO",
@@ -51812,20 +64235,20 @@
"softbank": "E243",
"google": "FE02F",
"image": "264c.png",
- "sheet_x": 49,
- "sheet_y": 38,
+ "sheet_x": 57,
+ "sheet_y": 42,
"short_name": "leo",
"short_names": ["leo"],
"text": null,
"texts": null,
"category": "Symbols",
- "sort_order": 64,
- "added_in": "1.1",
+ "subcategory": "zodiac",
+ "sort_order": 1448,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "VIRGO",
@@ -51836,20 +64259,20 @@
"softbank": "E244",
"google": "FE030",
"image": "264d.png",
- "sheet_x": 49,
- "sheet_y": 39,
+ "sheet_x": 57,
+ "sheet_y": 43,
"short_name": "virgo",
"short_names": ["virgo"],
"text": null,
"texts": null,
"category": "Symbols",
- "sort_order": 65,
- "added_in": "1.1",
+ "subcategory": "zodiac",
+ "sort_order": 1449,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "LIBRA",
@@ -51860,20 +64283,20 @@
"softbank": "E245",
"google": "FE031",
"image": "264e.png",
- "sheet_x": 49,
- "sheet_y": 40,
+ "sheet_x": 57,
+ "sheet_y": 44,
"short_name": "libra",
"short_names": ["libra"],
"text": null,
"texts": null,
"category": "Symbols",
- "sort_order": 66,
- "added_in": "1.1",
+ "subcategory": "zodiac",
+ "sort_order": 1450,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "SCORPIUS",
@@ -51884,20 +64307,20 @@
"softbank": "E246",
"google": "FE032",
"image": "264f.png",
- "sheet_x": 49,
- "sheet_y": 41,
+ "sheet_x": 57,
+ "sheet_y": 45,
"short_name": "scorpius",
"short_names": ["scorpius"],
"text": null,
"texts": null,
"category": "Symbols",
- "sort_order": 67,
- "added_in": "1.1",
+ "subcategory": "zodiac",
+ "sort_order": 1451,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "SAGITTARIUS",
@@ -51908,20 +64331,20 @@
"softbank": "E247",
"google": "FE033",
"image": "2650.png",
- "sheet_x": 49,
- "sheet_y": 42,
+ "sheet_x": 57,
+ "sheet_y": 46,
"short_name": "sagittarius",
"short_names": ["sagittarius"],
"text": null,
"texts": null,
"category": "Symbols",
- "sort_order": 68,
- "added_in": "1.1",
+ "subcategory": "zodiac",
+ "sort_order": 1452,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "CAPRICORN",
@@ -51932,20 +64355,20 @@
"softbank": "E248",
"google": "FE034",
"image": "2651.png",
- "sheet_x": 49,
- "sheet_y": 43,
+ "sheet_x": 57,
+ "sheet_y": 47,
"short_name": "capricorn",
"short_names": ["capricorn"],
"text": null,
"texts": null,
"category": "Symbols",
- "sort_order": 69,
- "added_in": "1.1",
+ "subcategory": "zodiac",
+ "sort_order": 1453,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "AQUARIUS",
@@ -51956,20 +64379,20 @@
"softbank": "E249",
"google": "FE035",
"image": "2652.png",
- "sheet_x": 49,
- "sheet_y": 44,
+ "sheet_x": 57,
+ "sheet_y": 48,
"short_name": "aquarius",
"short_names": ["aquarius"],
"text": null,
"texts": null,
"category": "Symbols",
- "sort_order": 70,
- "added_in": "1.1",
+ "subcategory": "zodiac",
+ "sort_order": 1454,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "PISCES",
@@ -51980,23 +64403,23 @@
"softbank": "E24A",
"google": "FE036",
"image": "2653.png",
- "sheet_x": 49,
- "sheet_y": 45,
+ "sheet_x": 57,
+ "sheet_y": 49,
"short_name": "pisces",
"short_names": ["pisces"],
"text": null,
"texts": null,
"category": "Symbols",
- "sort_order": 71,
- "added_in": "1.1",
+ "subcategory": "zodiac",
+ "sort_order": 1455,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": null,
+ "name": "CHESS PAWN",
"unified": "265F-FE0F",
"non_qualified": "265F",
"docomo": null,
@@ -52004,20 +64427,20 @@
"softbank": null,
"google": null,
"image": "265f-fe0f.png",
- "sheet_x": 49,
- "sheet_y": 46,
+ "sheet_x": 57,
+ "sheet_y": 50,
"short_name": "chess_pawn",
"short_names": ["chess_pawn"],
"text": null,
"texts": null,
"category": "Activities",
- "sort_order": 68,
- "added_in": "1.1",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "subcategory": "game",
+ "sort_order": 1112,
+ "added_in": "11.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
},
{
"name": "BLACK SPADE SUIT",
@@ -52028,20 +64451,20 @@
"softbank": "E20E",
"google": "FEB1B",
"image": "2660-fe0f.png",
- "sheet_x": 49,
- "sheet_y": 47,
+ "sheet_x": 57,
+ "sheet_y": 51,
"short_name": "spades",
"short_names": ["spades"],
"text": null,
"texts": null,
"category": "Activities",
- "sort_order": 64,
- "added_in": "1.1",
+ "subcategory": "game",
+ "sort_order": 1108,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "BLACK CLUB SUIT",
@@ -52052,20 +64475,20 @@
"softbank": "E20F",
"google": "FEB1D",
"image": "2663-fe0f.png",
- "sheet_x": 49,
- "sheet_y": 48,
+ "sheet_x": 57,
+ "sheet_y": 52,
"short_name": "clubs",
"short_names": ["clubs"],
"text": null,
"texts": null,
"category": "Activities",
- "sort_order": 67,
- "added_in": "1.1",
+ "subcategory": "game",
+ "sort_order": 1111,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "BLACK HEART SUIT",
@@ -52076,20 +64499,20 @@
"softbank": "E20C",
"google": "FEB1A",
"image": "2665-fe0f.png",
- "sheet_x": 49,
- "sheet_y": 49,
+ "sheet_x": 57,
+ "sheet_y": 53,
"short_name": "hearts",
"short_names": ["hearts"],
"text": null,
"texts": null,
"category": "Activities",
- "sort_order": 65,
- "added_in": "1.1",
+ "subcategory": "game",
+ "sort_order": 1109,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "BLACK DIAMOND SUIT",
@@ -52100,20 +64523,20 @@
"softbank": "E20D",
"google": "FEB1C",
"image": "2666-fe0f.png",
- "sheet_x": 49,
- "sheet_y": 50,
+ "sheet_x": 57,
+ "sheet_y": 54,
"short_name": "diamonds",
"short_names": ["diamonds"],
"text": null,
"texts": null,
"category": "Activities",
- "sort_order": 66,
- "added_in": "1.1",
+ "subcategory": "game",
+ "sort_order": 1110,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "HOT SPRINGS",
@@ -52124,20 +64547,20 @@
"softbank": "E123",
"google": "FE7FA",
"image": "2668-fe0f.png",
- "sheet_x": 49,
- "sheet_y": 51,
+ "sheet_x": 57,
+ "sheet_y": 55,
"short_name": "hotsprings",
"short_names": ["hotsprings"],
"text": null,
"texts": null,
"category": "Travel & Places",
- "sort_order": 56,
- "added_in": "1.1",
+ "subcategory": "place-other",
+ "sort_order": 879,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "BLACK UNIVERSAL RECYCLING SYMBOL",
@@ -52148,23 +64571,23 @@
"softbank": null,
"google": "FEB2C",
"image": "267b-fe0f.png",
- "sheet_x": 49,
- "sheet_y": 52,
+ "sheet_x": 57,
+ "sheet_y": 56,
"short_name": "recycle",
"short_names": ["recycle"],
"text": null,
"texts": null,
"category": "Symbols",
- "sort_order": 101,
- "added_in": "3.2",
+ "subcategory": "other-symbol",
+ "sort_order": 1501,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": null,
+ "name": "INFINITY",
"unified": "267E-FE0F",
"non_qualified": "267E",
"docomo": null,
@@ -52172,20 +64595,20 @@
"softbank": null,
"google": null,
"image": "267e-fe0f.png",
- "sheet_x": 50,
- "sheet_y": 0,
+ "sheet_x": 57,
+ "sheet_y": 57,
"short_name": "infinity",
"short_names": ["infinity"],
"text": null,
"texts": null,
"category": "Symbols",
- "sort_order": 100,
- "added_in": "4.1",
- "has_img_apple": false,
- "has_img_google": false,
- "has_img_twitter": false,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "subcategory": "math",
+ "sort_order": 1490,
+ "added_in": "11.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
},
{
"name": "WHEELCHAIR SYMBOL",
@@ -52196,23 +64619,23 @@
"softbank": "E20A",
"google": "FEB20",
"image": "267f.png",
- "sheet_x": 50,
- "sheet_y": 1,
+ "sheet_x": 57,
+ "sheet_y": 58,
"short_name": "wheelchair",
"short_names": ["wheelchair"],
"text": null,
"texts": null,
"category": "Symbols",
- "sort_order": 4,
- "added_in": "4.1",
+ "subcategory": "transport-sign",
+ "sort_order": 1387,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": null,
+ "name": "HAMMER AND PICK",
"unified": "2692-FE0F",
"non_qualified": "2692",
"docomo": null,
@@ -52220,20 +64643,20 @@
"softbank": null,
"google": null,
"image": "2692-fe0f.png",
- "sheet_x": 50,
- "sheet_y": 2,
+ "sheet_x": 57,
+ "sheet_y": 59,
"short_name": "hammer_and_pick",
"short_names": ["hammer_and_pick"],
"text": null,
"texts": null,
"category": "Objects",
- "sort_order": 138,
- "added_in": "4.1",
+ "subcategory": "tool",
+ "sort_order": 1314,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
"name": "ANCHOR",
@@ -52244,23 +64667,23 @@
"softbank": null,
"google": "FE4C1",
"image": "2693.png",
- "sheet_x": 50,
- "sheet_y": 3,
+ "sheet_x": 57,
+ "sheet_y": 60,
"short_name": "anchor",
"short_names": ["anchor"],
"text": null,
"texts": null,
"category": "Travel & Places",
- "sort_order": 105,
- "added_in": "4.1",
+ "subcategory": "transport-water",
+ "sort_order": 936,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": null,
+ "name": "CROSSED SWORDS",
"unified": "2694-FE0F",
"non_qualified": "2694",
"docomo": null,
@@ -52268,23 +64691,23 @@
"softbank": null,
"google": null,
"image": "2694-fe0f.png",
- "sheet_x": 50,
- "sheet_y": 4,
+ "sheet_x": 58,
+ "sheet_y": 0,
"short_name": "crossed_swords",
"short_names": ["crossed_swords"],
"text": null,
"texts": null,
"category": "Objects",
- "sort_order": 141,
- "added_in": "4.1",
+ "subcategory": "tool",
+ "sort_order": 1317,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
- "name": null,
+ "name": "MEDICAL SYMBOL",
"unified": "2695-FE0F",
"non_qualified": "2695",
"docomo": null,
@@ -52292,23 +64715,23 @@
"softbank": null,
"google": null,
"image": "2695-fe0f.png",
- "sheet_x": 50,
- "sheet_y": 5,
+ "sheet_x": 58,
+ "sheet_y": 1,
"short_name": "medical_symbol",
"short_names": ["medical_symbol", "staff_of_aesculapius"],
"text": null,
"texts": null,
"category": "Symbols",
- "sort_order": 99,
- "added_in": "4.1",
+ "subcategory": "other-symbol",
+ "sort_order": 1500,
+ "added_in": "4.0",
"has_img_apple": false,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
- "name": null,
+ "name": "BALANCE SCALE",
"unified": "2696-FE0F",
"non_qualified": "2696",
"docomo": null,
@@ -52316,23 +64739,23 @@
"softbank": null,
"google": null,
"image": "2696-fe0f.png",
- "sheet_x": 50,
- "sheet_y": 6,
+ "sheet_x": 58,
+ "sheet_y": 2,
"short_name": "scales",
"short_names": ["scales"],
"text": null,
"texts": null,
"category": "Objects",
- "sort_order": 149,
- "added_in": "4.1",
+ "subcategory": "tool",
+ "sort_order": 1328,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
- "name": null,
+ "name": "ALEMBIC",
"unified": "2697-FE0F",
"non_qualified": "2697",
"docomo": null,
@@ -52340,23 +64763,23 @@
"softbank": null,
"google": null,
"image": "2697-fe0f.png",
- "sheet_x": 50,
- "sheet_y": 7,
+ "sheet_x": 58,
+ "sheet_y": 3,
"short_name": "alembic",
"short_names": ["alembic"],
"text": null,
"texts": null,
"category": "Objects",
- "sort_order": 154,
- "added_in": "4.1",
+ "subcategory": "science",
+ "sort_order": 1336,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
- "name": null,
+ "name": "GEAR",
"unified": "2699-FE0F",
"non_qualified": "2699",
"docomo": null,
@@ -52364,23 +64787,23 @@
"softbank": null,
"google": null,
"image": "2699-fe0f.png",
- "sheet_x": 50,
- "sheet_y": 8,
+ "sheet_x": 58,
+ "sheet_y": 4,
"short_name": "gear",
"short_names": ["gear"],
"text": null,
"texts": null,
"category": "Objects",
- "sort_order": 147,
- "added_in": "4.1",
+ "subcategory": "tool",
+ "sort_order": 1326,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
- "name": null,
+ "name": "ATOM SYMBOL",
"unified": "269B-FE0F",
"non_qualified": "269B",
"docomo": null,
@@ -52388,23 +64811,23 @@
"softbank": null,
"google": null,
"image": "269b-fe0f.png",
- "sheet_x": 50,
- "sheet_y": 9,
+ "sheet_x": 58,
+ "sheet_y": 5,
"short_name": "atom_symbol",
"short_names": ["atom_symbol"],
"text": null,
"texts": null,
"category": "Symbols",
- "sort_order": 49,
- "added_in": "4.1",
+ "subcategory": "religion",
+ "sort_order": 1432,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
- "name": null,
+ "name": "FLEUR-DE-LIS",
"unified": "269C-FE0F",
"non_qualified": "269C",
"docomo": null,
@@ -52412,20 +64835,20 @@
"softbank": null,
"google": null,
"image": "269c-fe0f.png",
- "sheet_x": 50,
- "sheet_y": 10,
+ "sheet_x": 58,
+ "sheet_y": 6,
"short_name": "fleur_de_lis",
"short_names": ["fleur_de_lis"],
"text": null,
"texts": null,
"category": "Symbols",
- "sort_order": 102,
- "added_in": "4.1",
+ "subcategory": "other-symbol",
+ "sort_order": 1502,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
"name": "WARNING SIGN",
@@ -52436,20 +64859,20 @@
"softbank": "E252",
"google": "FEB23",
"image": "26a0-fe0f.png",
- "sheet_x": 50,
- "sheet_y": 11,
+ "sheet_x": 58,
+ "sheet_y": 7,
"short_name": "warning",
"short_names": ["warning"],
"text": null,
"texts": null,
"category": "Symbols",
- "sort_order": 14,
- "added_in": "4.0",
+ "subcategory": "warning",
+ "sort_order": 1397,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "HIGH VOLTAGE SIGN",
@@ -52460,20 +64883,44 @@
"softbank": "E13D",
"google": "FE004",
"image": "26a1.png",
- "sheet_x": 50,
- "sheet_y": 12,
+ "sheet_x": 58,
+ "sheet_y": 8,
"short_name": "zap",
"short_names": ["zap"],
"text": null,
"texts": null,
"category": "Travel & Places",
- "sort_order": 195,
- "added_in": "4.0",
+ "subcategory": "sky & weather",
+ "sort_order": 1030,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
+ },
+ {
+ "name": "TRANSGENDER SYMBOL",
+ "unified": "26A7-FE0F",
+ "non_qualified": "26A7",
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "26a7-fe0f.png",
+ "sheet_x": 58,
+ "sheet_y": 9,
+ "short_name": "transgender_symbol",
+ "short_names": ["transgender_symbol"],
+ "text": null,
+ "texts": null,
+ "category": "Symbols",
+ "subcategory": "gender",
+ "sort_order": 1484,
+ "added_in": "13.0",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
},
{
"name": "MEDIUM WHITE CIRCLE",
@@ -52484,20 +64931,20 @@
"softbank": null,
"google": "FEB65",
"image": "26aa.png",
- "sheet_x": 50,
- "sheet_y": 13,
+ "sheet_x": 58,
+ "sheet_y": 10,
"short_name": "white_circle",
"short_names": ["white_circle"],
"text": null,
"texts": null,
"category": "Symbols",
- "sort_order": 203,
- "added_in": "4.1",
+ "subcategory": "geometric",
+ "sort_order": 1581,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "MEDIUM BLACK CIRCLE",
@@ -52508,23 +64955,23 @@
"softbank": null,
"google": "FEB66",
"image": "26ab.png",
- "sheet_x": 50,
- "sheet_y": 14,
+ "sheet_x": 58,
+ "sheet_y": 11,
"short_name": "black_circle",
"short_names": ["black_circle"],
"text": null,
"texts": null,
"category": "Symbols",
- "sort_order": 204,
- "added_in": "4.1",
+ "subcategory": "geometric",
+ "sort_order": 1580,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": null,
+ "name": "COFFIN",
"unified": "26B0-FE0F",
"non_qualified": "26B0",
"docomo": null,
@@ -52532,23 +64979,23 @@
"softbank": null,
"google": null,
"image": "26b0-fe0f.png",
- "sheet_x": 50,
- "sheet_y": 15,
+ "sheet_x": 58,
+ "sheet_y": 12,
"short_name": "coffin",
"short_names": ["coffin"],
"text": null,
"texts": null,
"category": "Objects",
- "sort_order": 179,
- "added_in": "4.1",
+ "subcategory": "other-object",
+ "sort_order": 1376,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
- "name": null,
+ "name": "FUNERAL URN",
"unified": "26B1-FE0F",
"non_qualified": "26B1",
"docomo": null,
@@ -52556,20 +65003,20 @@
"softbank": null,
"google": null,
"image": "26b1-fe0f.png",
- "sheet_x": 50,
- "sheet_y": 16,
+ "sheet_x": 58,
+ "sheet_y": 13,
"short_name": "funeral_urn",
"short_names": ["funeral_urn"],
"text": null,
"texts": null,
"category": "Objects",
- "sort_order": 180,
- "added_in": "4.1",
+ "subcategory": "other-object",
+ "sort_order": 1378,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
"name": "SOCCER BALL",
@@ -52580,20 +65027,20 @@
"softbank": "E018",
"google": "FE7D4",
"image": "26bd.png",
- "sheet_x": 50,
- "sheet_y": 17,
+ "sheet_x": 58,
+ "sheet_y": 14,
"short_name": "soccer",
"short_names": ["soccer"],
"text": null,
"texts": null,
"category": "Activities",
- "sort_order": 28,
- "added_in": "5.2",
+ "subcategory": "sport",
+ "sort_order": 1065,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "BASEBALL",
@@ -52604,20 +65051,20 @@
"softbank": "E016",
"google": "FE7D1",
"image": "26be.png",
- "sheet_x": 50,
- "sheet_y": 18,
+ "sheet_x": 58,
+ "sheet_y": 15,
"short_name": "baseball",
"short_names": ["baseball"],
"text": null,
"texts": null,
"category": "Activities",
- "sort_order": 29,
- "added_in": "5.2",
+ "subcategory": "sport",
+ "sort_order": 1066,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "SNOWMAN WITHOUT SNOW",
@@ -52628,20 +65075,20 @@
"softbank": "E048",
"google": "FE003",
"image": "26c4.png",
- "sheet_x": 50,
- "sheet_y": 19,
+ "sheet_x": 58,
+ "sheet_y": 16,
"short_name": "snowman_without_snow",
"short_names": ["snowman_without_snow"],
"text": null,
"texts": null,
"category": "Travel & Places",
- "sort_order": 198,
- "added_in": "5.2",
+ "subcategory": "sky & weather",
+ "sort_order": 1033,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "SUN BEHIND CLOUD",
@@ -52652,23 +65099,23 @@
"softbank": null,
"google": "FE00F",
"image": "26c5.png",
- "sheet_x": 50,
- "sheet_y": 20,
+ "sheet_x": 58,
+ "sheet_y": 17,
"short_name": "partly_sunny",
"short_names": ["partly_sunny"],
"text": null,
"texts": null,
"category": "Travel & Places",
- "sort_order": 178,
- "added_in": "5.2",
+ "subcategory": "sky & weather",
+ "sort_order": 1013,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": null,
+ "name": "CLOUD WITH LIGHTNING AND RAIN",
"unified": "26C8-FE0F",
"non_qualified": "26C8",
"docomo": null,
@@ -52676,20 +65123,20 @@
"softbank": null,
"google": null,
"image": "26c8-fe0f.png",
- "sheet_x": 50,
- "sheet_y": 21,
+ "sheet_x": 58,
+ "sheet_y": 18,
"short_name": "thunder_cloud_and_rain",
"short_names": ["thunder_cloud_and_rain"],
"text": null,
"texts": null,
"category": "Travel & Places",
- "sort_order": 179,
- "added_in": "5.2",
+ "subcategory": "sky & weather",
+ "sort_order": 1014,
+ "added_in": "0.7",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
"name": "OPHIUCHUS",
@@ -52700,23 +65147,23 @@
"softbank": "E24B",
"google": "FE037",
"image": "26ce.png",
- "sheet_x": 50,
- "sheet_y": 22,
+ "sheet_x": 58,
+ "sheet_y": 19,
"short_name": "ophiuchus",
"short_names": ["ophiuchus"],
"text": null,
"texts": null,
"category": "Symbols",
- "sort_order": 72,
- "added_in": "6.0",
+ "subcategory": "zodiac",
+ "sort_order": 1456,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": null,
+ "name": "PICK",
"unified": "26CF-FE0F",
"non_qualified": "26CF",
"docomo": null,
@@ -52724,23 +65171,23 @@
"softbank": null,
"google": null,
"image": "26cf-fe0f.png",
- "sheet_x": 50,
- "sheet_y": 23,
+ "sheet_x": 58,
+ "sheet_y": 20,
"short_name": "pick",
"short_names": ["pick"],
"text": null,
"texts": null,
"category": "Objects",
- "sort_order": 137,
- "added_in": "5.2",
+ "subcategory": "tool",
+ "sort_order": 1313,
+ "added_in": "0.7",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
- "name": null,
+ "name": "RESCUE WORKER\u2019S HELMET",
"unified": "26D1-FE0F",
"non_qualified": "26D1",
"docomo": null,
@@ -52748,23 +65195,23 @@
"softbank": null,
"google": null,
"image": "26d1-fe0f.png",
- "sheet_x": 50,
- "sheet_y": 24,
+ "sheet_x": 58,
+ "sheet_y": 21,
"short_name": "helmet_with_white_cross",
"short_names": ["helmet_with_white_cross"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 465,
- "added_in": "5.2",
+ "category": "Objects",
+ "subcategory": "clothing",
+ "sort_order": 1165,
+ "added_in": "0.7",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
- "name": null,
+ "name": "CHAINS",
"unified": "26D3-FE0F",
"non_qualified": "26D3",
"docomo": null,
@@ -52772,20 +65219,20 @@
"softbank": null,
"google": null,
"image": "26d3-fe0f.png",
- "sheet_x": 50,
- "sheet_y": 25,
+ "sheet_x": 58,
+ "sheet_y": 22,
"short_name": "chains",
"short_names": ["chains"],
"text": null,
"texts": null,
"category": "Objects",
- "sort_order": 151,
- "added_in": "5.2",
+ "subcategory": "tool",
+ "sort_order": 1331,
+ "added_in": "0.7",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
"name": "NO ENTRY",
@@ -52796,23 +65243,23 @@
"softbank": null,
"google": "FEB26",
"image": "26d4.png",
- "sheet_x": 50,
- "sheet_y": 26,
+ "sheet_x": 58,
+ "sheet_y": 23,
"short_name": "no_entry",
"short_names": ["no_entry"],
"text": null,
"texts": null,
"category": "Symbols",
- "sort_order": 16,
- "added_in": "5.2",
+ "subcategory": "warning",
+ "sort_order": 1399,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": null,
+ "name": "SHINTO SHRINE",
"unified": "26E9-FE0F",
"non_qualified": "26E9",
"docomo": null,
@@ -52820,20 +65267,20 @@
"softbank": null,
"google": null,
"image": "26e9-fe0f.png",
- "sheet_x": 50,
- "sheet_y": 27,
+ "sheet_x": 58,
+ "sheet_y": 24,
"short_name": "shinto_shrine",
"short_names": ["shinto_shrine"],
"text": null,
"texts": null,
"category": "Travel & Places",
- "sort_order": 44,
- "added_in": "5.2",
+ "subcategory": "place-religious",
+ "sort_order": 867,
+ "added_in": "0.7",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
"name": "CHURCH",
@@ -52844,23 +65291,23 @@
"softbank": "E037",
"google": "FE4BB",
"image": "26ea.png",
- "sheet_x": 50,
- "sheet_y": 28,
+ "sheet_x": 58,
+ "sheet_y": 25,
"short_name": "church",
"short_names": ["church"],
"text": null,
"texts": null,
"category": "Travel & Places",
- "sort_order": 41,
- "added_in": "5.2",
+ "subcategory": "place-religious",
+ "sort_order": 863,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": null,
+ "name": "MOUNTAIN",
"unified": "26F0-FE0F",
"non_qualified": "26F0",
"docomo": null,
@@ -52868,23 +65315,23 @@
"softbank": null,
"google": null,
"image": "26f0-fe0f.png",
- "sheet_x": 50,
- "sheet_y": 29,
+ "sheet_x": 58,
+ "sheet_y": 26,
"short_name": "mountain",
"short_names": ["mountain"],
"text": null,
"texts": null,
"category": "Travel & Places",
- "sort_order": 9,
- "added_in": "5.2",
+ "subcategory": "place-geographic",
+ "sort_order": 828,
+ "added_in": "0.7",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
- "name": null,
+ "name": "UMBRELLA ON GROUND",
"unified": "26F1-FE0F",
"non_qualified": "26F1",
"docomo": null,
@@ -52892,20 +65339,20 @@
"softbank": null,
"google": null,
"image": "26f1-fe0f.png",
- "sheet_x": 50,
- "sheet_y": 30,
+ "sheet_x": 58,
+ "sheet_y": 27,
"short_name": "umbrella_on_ground",
"short_names": ["umbrella_on_ground"],
"text": null,
"texts": null,
"category": "Travel & Places",
- "sort_order": 194,
- "added_in": "5.2",
+ "subcategory": "sky & weather",
+ "sort_order": 1029,
+ "added_in": "0.7",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
"name": "FOUNTAIN",
@@ -52916,20 +65363,20 @@
"softbank": "E121",
"google": "FE4BC",
"image": "26f2.png",
- "sheet_x": 50,
- "sheet_y": 31,
+ "sheet_x": 58,
+ "sheet_y": 28,
"short_name": "fountain",
"short_names": ["fountain"],
"text": null,
"texts": null,
"category": "Travel & Places",
- "sort_order": 46,
- "added_in": "5.2",
+ "subcategory": "place-other",
+ "sort_order": 869,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "FLAG IN HOLE",
@@ -52940,23 +65387,23 @@
"softbank": "E014",
"google": "FE7D2",
"image": "26f3.png",
- "sheet_x": 50,
- "sheet_y": 32,
+ "sheet_x": 58,
+ "sheet_y": 29,
"short_name": "golf",
"short_names": ["golf"],
"text": null,
"texts": null,
"category": "Activities",
- "sort_order": 47,
- "added_in": "5.2",
+ "subcategory": "sport",
+ "sort_order": 1084,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": null,
+ "name": "FERRY",
"unified": "26F4-FE0F",
"non_qualified": "26F4",
"docomo": null,
@@ -52964,20 +65411,20 @@
"softbank": null,
"google": null,
"image": "26f4-fe0f.png",
- "sheet_x": 50,
- "sheet_y": 33,
+ "sheet_x": 58,
+ "sheet_y": 30,
"short_name": "ferry",
"short_names": ["ferry"],
"text": null,
"texts": null,
"category": "Travel & Places",
- "sort_order": 110,
- "added_in": "5.2",
+ "subcategory": "transport-water",
+ "sort_order": 942,
+ "added_in": "0.7",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
"name": "SAILBOAT",
@@ -52988,23 +65435,23 @@
"softbank": "E01C",
"google": "FE7EA",
"image": "26f5.png",
- "sheet_x": 50,
- "sheet_y": 34,
+ "sheet_x": 58,
+ "sheet_y": 31,
"short_name": "boat",
"short_names": ["boat", "sailboat"],
"text": null,
"texts": null,
"category": "Travel & Places",
- "sort_order": 106,
- "added_in": "5.2",
+ "subcategory": "transport-water",
+ "sort_order": 938,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": null,
+ "name": "SKIER",
"unified": "26F7-FE0F",
"non_qualified": "26F7",
"docomo": null,
@@ -53012,23 +65459,23 @@
"softbank": null,
"google": null,
"image": "26f7-fe0f.png",
- "sheet_x": 50,
- "sheet_y": 35,
+ "sheet_x": 58,
+ "sheet_y": 32,
"short_name": "skier",
"short_names": ["skier"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 276,
- "added_in": "5.2",
+ "category": "People & Body",
+ "subcategory": "person-sport",
+ "sort_order": 441,
+ "added_in": "0.7",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
- "name": null,
+ "name": "ICE SKATE",
"unified": "26F8-FE0F",
"non_qualified": "26F8",
"docomo": null,
@@ -53036,23 +65483,23 @@
"softbank": null,
"google": null,
"image": "26f8-fe0f.png",
- "sheet_x": 50,
- "sheet_y": 36,
+ "sheet_x": 58,
+ "sheet_y": 33,
"short_name": "ice_skate",
"short_names": ["ice_skate"],
"text": null,
"texts": null,
"category": "Activities",
- "sort_order": 48,
- "added_in": "5.2",
+ "subcategory": "sport",
+ "sort_order": 1085,
+ "added_in": "0.7",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
- "name": null,
+ "name": "WOMAN BOUNCING BALL",
"unified": "26F9-FE0F-200D-2640-FE0F",
"non_qualified": null,
"docomo": null,
@@ -53060,90 +65507,85 @@
"softbank": null,
"google": null,
"image": "26f9-fe0f-200d-2640-fe0f.png",
- "sheet_x": 50,
- "sheet_y": 37,
+ "sheet_x": 58,
+ "sheet_y": 34,
"short_name": "woman-bouncing-ball",
"short_names": ["woman-bouncing-ball"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 292,
- "added_in": "5.2",
+ "category": "People & Body",
+ "subcategory": "person-sport",
+ "sort_order": 457,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": false,
- "has_img_messenger": false,
"skin_variations": {
"1F3FB": {
"unified": "26F9-1F3FB-200D-2640-FE0F",
"non_qualified": "26F9-1F3FB-200D-2640",
"image": "26f9-1f3fb-200d-2640-fe0f.png",
- "sheet_x": 50,
- "sheet_y": 38,
- "added_in": "8.0",
+ "sheet_x": 58,
+ "sheet_y": 35,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FC": {
"unified": "26F9-1F3FC-200D-2640-FE0F",
"non_qualified": "26F9-1F3FC-200D-2640",
"image": "26f9-1f3fc-200d-2640-fe0f.png",
- "sheet_x": 50,
- "sheet_y": 39,
- "added_in": "8.0",
+ "sheet_x": 58,
+ "sheet_y": 36,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FD": {
"unified": "26F9-1F3FD-200D-2640-FE0F",
"non_qualified": "26F9-1F3FD-200D-2640",
"image": "26f9-1f3fd-200d-2640-fe0f.png",
- "sheet_x": 50,
- "sheet_y": 40,
- "added_in": "8.0",
+ "sheet_x": 58,
+ "sheet_y": 37,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FE": {
"unified": "26F9-1F3FE-200D-2640-FE0F",
"non_qualified": "26F9-1F3FE-200D-2640",
"image": "26f9-1f3fe-200d-2640-fe0f.png",
- "sheet_x": 50,
- "sheet_y": 41,
- "added_in": "8.0",
+ "sheet_x": 58,
+ "sheet_y": 38,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FF": {
"unified": "26F9-1F3FF-200D-2640-FE0F",
"non_qualified": "26F9-1F3FF-200D-2640",
"image": "26f9-1f3ff-200d-2640-fe0f.png",
- "sheet_x": 50,
- "sheet_y": 42,
- "added_in": "8.0",
+ "sheet_x": 58,
+ "sheet_y": 39,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
}
}
},
{
- "name": null,
+ "name": "MAN BOUNCING BALL",
"unified": "26F9-FE0F-200D-2642-FE0F",
"non_qualified": null,
"docomo": null,
@@ -53151,91 +65593,86 @@
"softbank": null,
"google": null,
"image": "26f9-fe0f-200d-2642-fe0f.png",
- "sheet_x": 50,
- "sheet_y": 43,
+ "sheet_x": 58,
+ "sheet_y": 40,
"short_name": "man-bouncing-ball",
"short_names": ["man-bouncing-ball"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 291,
- "added_in": "5.2",
+ "category": "People & Body",
+ "subcategory": "person-sport",
+ "sort_order": 456,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": false,
- "has_img_messenger": false,
"skin_variations": {
"1F3FB": {
"unified": "26F9-1F3FB-200D-2642-FE0F",
"non_qualified": "26F9-1F3FB-200D-2642",
"image": "26f9-1f3fb-200d-2642-fe0f.png",
- "sheet_x": 50,
- "sheet_y": 44,
- "added_in": "8.0",
+ "sheet_x": 58,
+ "sheet_y": 41,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FC": {
"unified": "26F9-1F3FC-200D-2642-FE0F",
"non_qualified": "26F9-1F3FC-200D-2642",
"image": "26f9-1f3fc-200d-2642-fe0f.png",
- "sheet_x": 50,
- "sheet_y": 45,
- "added_in": "8.0",
+ "sheet_x": 58,
+ "sheet_y": 42,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FD": {
"unified": "26F9-1F3FD-200D-2642-FE0F",
"non_qualified": "26F9-1F3FD-200D-2642",
"image": "26f9-1f3fd-200d-2642-fe0f.png",
- "sheet_x": 50,
- "sheet_y": 46,
- "added_in": "8.0",
+ "sheet_x": 58,
+ "sheet_y": 43,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FE": {
"unified": "26F9-1F3FE-200D-2642-FE0F",
"non_qualified": "26F9-1F3FE-200D-2642",
"image": "26f9-1f3fe-200d-2642-fe0f.png",
- "sheet_x": 50,
- "sheet_y": 47,
- "added_in": "8.0",
+ "sheet_x": 58,
+ "sheet_y": 44,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FF": {
"unified": "26F9-1F3FF-200D-2642-FE0F",
"non_qualified": "26F9-1F3FF-200D-2642",
"image": "26f9-1f3ff-200d-2642-fe0f.png",
- "sheet_x": 50,
- "sheet_y": 48,
- "added_in": "8.0",
+ "sheet_x": 58,
+ "sheet_y": 45,
+ "added_in": "4.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
}
},
"obsoletes": "26F9-FE0F"
},
{
- "name": null,
+ "name": "PERSON BOUNCING BALL",
"unified": "26F9-FE0F",
"non_qualified": "26F9",
"docomo": null,
@@ -53243,85 +65680,80 @@
"softbank": null,
"google": null,
"image": "26f9-fe0f.png",
- "sheet_x": 50,
- "sheet_y": 49,
+ "sheet_x": 58,
+ "sheet_y": 46,
"short_name": "person_with_ball",
"short_names": ["person_with_ball"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 290,
- "added_in": "5.2",
+ "category": "People & Body",
+ "subcategory": "person-sport",
+ "sort_order": 455,
+ "added_in": "0.7",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false,
+ "has_img_facebook": true,
"skin_variations": {
"1F3FB": {
"unified": "26F9-1F3FB",
"non_qualified": null,
"image": "26f9-1f3fb.png",
- "sheet_x": 50,
- "sheet_y": 50,
- "added_in": "8.0",
+ "sheet_x": 58,
+ "sheet_y": 47,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FC": {
"unified": "26F9-1F3FC",
"non_qualified": null,
"image": "26f9-1f3fc.png",
- "sheet_x": 50,
- "sheet_y": 51,
- "added_in": "8.0",
+ "sheet_x": 58,
+ "sheet_y": 48,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FD": {
"unified": "26F9-1F3FD",
"non_qualified": null,
"image": "26f9-1f3fd.png",
- "sheet_x": 50,
- "sheet_y": 52,
- "added_in": "8.0",
+ "sheet_x": 58,
+ "sheet_y": 49,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FE": {
"unified": "26F9-1F3FE",
"non_qualified": null,
"image": "26f9-1f3fe.png",
- "sheet_x": 51,
- "sheet_y": 0,
- "added_in": "8.0",
+ "sheet_x": 58,
+ "sheet_y": 50,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FF": {
"unified": "26F9-1F3FF",
"non_qualified": null,
"image": "26f9-1f3ff.png",
- "sheet_x": 51,
- "sheet_y": 1,
- "added_in": "8.0",
+ "sheet_x": 58,
+ "sheet_y": 51,
+ "added_in": "2.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": false,
- "has_img_messenger": false
+ "has_img_facebook": true
}
},
"obsoleted_by": "26F9-FE0F-200D-2642-FE0F"
@@ -53335,20 +65767,20 @@
"softbank": "E122",
"google": "FE7FB",
"image": "26fa.png",
- "sheet_x": 51,
- "sheet_y": 2,
+ "sheet_x": 58,
+ "sheet_y": 52,
"short_name": "tent",
"short_names": ["tent"],
"text": null,
"texts": null,
"category": "Travel & Places",
- "sort_order": 47,
- "added_in": "5.2",
+ "subcategory": "place-other",
+ "sort_order": 870,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "FUEL PUMP",
@@ -53359,20 +65791,20 @@
"softbank": "E03A",
"google": "FE7F5",
"image": "26fd.png",
- "sheet_x": 51,
- "sheet_y": 3,
+ "sheet_x": 58,
+ "sheet_y": 53,
"short_name": "fuelpump",
"short_names": ["fuelpump"],
"text": null,
"texts": null,
"category": "Travel & Places",
- "sort_order": 99,
- "added_in": "5.2",
+ "subcategory": "transport-ground",
+ "sort_order": 929,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "BLACK SCISSORS",
@@ -53383,20 +65815,20 @@
"softbank": "E313",
"google": "FE53E",
"image": "2702-fe0f.png",
- "sheet_x": 51,
- "sheet_y": 4,
+ "sheet_x": 58,
+ "sheet_y": 54,
"short_name": "scissors",
"short_names": ["scissors"],
"text": null,
"texts": null,
"category": "Objects",
- "sort_order": 126,
- "added_in": "1.1",
+ "subcategory": "office",
+ "sort_order": 1301,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "WHITE HEAVY CHECK MARK",
@@ -53407,20 +65839,20 @@
"softbank": null,
"google": "FEB4A",
"image": "2705.png",
- "sheet_x": 51,
- "sheet_y": 5,
+ "sheet_x": 58,
+ "sheet_y": 55,
"short_name": "white_check_mark",
"short_names": ["white_check_mark"],
"text": null,
"texts": null,
"category": "Symbols",
- "sort_order": 107,
- "added_in": "6.0",
+ "subcategory": "other-symbol",
+ "sort_order": 1507,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "AIRPLANE",
@@ -53431,20 +65863,20 @@
"softbank": "E01D",
"google": "FE7E9",
"image": "2708-fe0f.png",
- "sheet_x": 51,
- "sheet_y": 6,
+ "sheet_x": 58,
+ "sheet_y": 56,
"short_name": "airplane",
"short_names": ["airplane"],
"text": null,
"texts": null,
"category": "Travel & Places",
- "sort_order": 113,
- "added_in": "1.1",
+ "subcategory": "transport-air",
+ "sort_order": 945,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "ENVELOPE",
@@ -53455,20 +65887,20 @@
"softbank": null,
"google": "FE529",
"image": "2709-fe0f.png",
- "sheet_x": 51,
- "sheet_y": 7,
+ "sheet_x": 58,
+ "sheet_y": 57,
"short_name": "email",
"short_names": ["email", "envelope"],
"text": null,
"texts": null,
"category": "Objects",
- "sort_order": 87,
- "added_in": "1.1",
+ "subcategory": "mail",
+ "sort_order": 1262,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "RAISED FIST",
@@ -53479,85 +65911,80 @@
"softbank": "E010",
"google": "FEB93",
"image": "270a.png",
- "sheet_x": 51,
- "sheet_y": 8,
+ "sheet_x": 58,
+ "sheet_y": 58,
"short_name": "fist",
"short_names": ["fist"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 376,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "hand-fingers-closed",
+ "sort_order": 196,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": true,
"skin_variations": {
"1F3FB": {
"unified": "270A-1F3FB",
"non_qualified": null,
"image": "270a-1f3fb.png",
- "sheet_x": 51,
- "sheet_y": 9,
- "added_in": "8.0",
+ "sheet_x": 58,
+ "sheet_y": 59,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
"1F3FC": {
"unified": "270A-1F3FC",
"non_qualified": null,
"image": "270a-1f3fc.png",
- "sheet_x": 51,
- "sheet_y": 10,
- "added_in": "8.0",
+ "sheet_x": 58,
+ "sheet_y": 60,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
"1F3FD": {
"unified": "270A-1F3FD",
"non_qualified": null,
"image": "270a-1f3fd.png",
- "sheet_x": 51,
- "sheet_y": 11,
- "added_in": "8.0",
+ "sheet_x": 59,
+ "sheet_y": 0,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
"1F3FE": {
"unified": "270A-1F3FE",
"non_qualified": null,
"image": "270a-1f3fe.png",
- "sheet_x": 51,
- "sheet_y": 12,
- "added_in": "8.0",
+ "sheet_x": 59,
+ "sheet_y": 1,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
"1F3FF": {
"unified": "270A-1F3FF",
"non_qualified": null,
"image": "270a-1f3ff.png",
- "sheet_x": 51,
- "sheet_y": 13,
- "added_in": "8.0",
+ "sheet_x": 59,
+ "sheet_y": 2,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
}
}
},
@@ -53570,85 +65997,80 @@
"softbank": "E012",
"google": "FEB95",
"image": "270b.png",
- "sheet_x": 51,
- "sheet_y": 14,
+ "sheet_x": 59,
+ "sheet_y": 3,
"short_name": "hand",
"short_names": ["hand", "raised_hand"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 372,
- "added_in": "6.0",
+ "category": "People & Body",
+ "subcategory": "hand-fingers-open",
+ "sort_order": 170,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": true,
"skin_variations": {
"1F3FB": {
"unified": "270B-1F3FB",
"non_qualified": null,
"image": "270b-1f3fb.png",
- "sheet_x": 51,
- "sheet_y": 15,
- "added_in": "8.0",
+ "sheet_x": 59,
+ "sheet_y": 4,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
"1F3FC": {
"unified": "270B-1F3FC",
"non_qualified": null,
"image": "270b-1f3fc.png",
- "sheet_x": 51,
- "sheet_y": 16,
- "added_in": "8.0",
+ "sheet_x": 59,
+ "sheet_y": 5,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
"1F3FD": {
"unified": "270B-1F3FD",
"non_qualified": null,
"image": "270b-1f3fd.png",
- "sheet_x": 51,
- "sheet_y": 17,
- "added_in": "8.0",
+ "sheet_x": 59,
+ "sheet_y": 6,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
"1F3FE": {
"unified": "270B-1F3FE",
"non_qualified": null,
"image": "270b-1f3fe.png",
- "sheet_x": 51,
- "sheet_y": 18,
- "added_in": "8.0",
+ "sheet_x": 59,
+ "sheet_y": 7,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
"1F3FF": {
"unified": "270B-1F3FF",
"non_qualified": null,
"image": "270b-1f3ff.png",
- "sheet_x": 51,
- "sheet_y": 19,
- "added_in": "8.0",
+ "sheet_x": 59,
+ "sheet_y": 8,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
}
}
},
@@ -53661,90 +66083,85 @@
"softbank": "E011",
"google": "FEB94",
"image": "270c-fe0f.png",
- "sheet_x": 51,
- "sheet_y": 20,
+ "sheet_x": 59,
+ "sheet_y": 9,
"short_name": "v",
"short_names": ["v"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 366,
- "added_in": "1.1",
+ "category": "People & Body",
+ "subcategory": "hand-fingers-partial",
+ "sort_order": 181,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": true,
"skin_variations": {
"1F3FB": {
"unified": "270C-1F3FB",
"non_qualified": null,
"image": "270c-1f3fb.png",
- "sheet_x": 51,
- "sheet_y": 21,
- "added_in": "8.0",
+ "sheet_x": 59,
+ "sheet_y": 10,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
"1F3FC": {
"unified": "270C-1F3FC",
"non_qualified": null,
"image": "270c-1f3fc.png",
- "sheet_x": 51,
- "sheet_y": 22,
- "added_in": "8.0",
+ "sheet_x": 59,
+ "sheet_y": 11,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
"1F3FD": {
"unified": "270C-1F3FD",
"non_qualified": null,
"image": "270c-1f3fd.png",
- "sheet_x": 51,
- "sheet_y": 23,
- "added_in": "8.0",
+ "sheet_x": 59,
+ "sheet_y": 12,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
"1F3FE": {
"unified": "270C-1F3FE",
"non_qualified": null,
"image": "270c-1f3fe.png",
- "sheet_x": 51,
- "sheet_y": 24,
- "added_in": "8.0",
+ "sheet_x": 59,
+ "sheet_y": 13,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
"1F3FF": {
"unified": "270C-1F3FF",
"non_qualified": null,
"image": "270c-1f3ff.png",
- "sheet_x": 51,
- "sheet_y": 25,
- "added_in": "8.0",
+ "sheet_x": 59,
+ "sheet_y": 14,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
}
}
},
{
- "name": null,
+ "name": "WRITING HAND",
"unified": "270D-FE0F",
"non_qualified": "270D",
"docomo": null,
@@ -53752,85 +66169,80 @@
"softbank": null,
"google": null,
"image": "270d-fe0f.png",
- "sheet_x": 51,
- "sheet_y": 26,
+ "sheet_x": 59,
+ "sheet_y": 15,
"short_name": "writing_hand",
"short_names": ["writing_hand"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 383,
- "added_in": "1.1",
+ "category": "People & Body",
+ "subcategory": "hand-prop",
+ "sort_order": 207,
+ "added_in": "0.7",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
"has_img_facebook": true,
- "has_img_messenger": false,
"skin_variations": {
"1F3FB": {
"unified": "270D-1F3FB",
"non_qualified": null,
"image": "270d-1f3fb.png",
- "sheet_x": 51,
- "sheet_y": 27,
- "added_in": "8.0",
+ "sheet_x": 59,
+ "sheet_y": 16,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FC": {
"unified": "270D-1F3FC",
"non_qualified": null,
"image": "270d-1f3fc.png",
- "sheet_x": 51,
- "sheet_y": 28,
- "added_in": "8.0",
+ "sheet_x": 59,
+ "sheet_y": 17,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FD": {
"unified": "270D-1F3FD",
"non_qualified": null,
"image": "270d-1f3fd.png",
- "sheet_x": 51,
- "sheet_y": 29,
- "added_in": "8.0",
+ "sheet_x": 59,
+ "sheet_y": 18,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FE": {
"unified": "270D-1F3FE",
"non_qualified": null,
"image": "270d-1f3fe.png",
- "sheet_x": 51,
- "sheet_y": 30,
- "added_in": "8.0",
+ "sheet_x": 59,
+ "sheet_y": 19,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
"1F3FF": {
"unified": "270D-1F3FF",
"non_qualified": null,
"image": "270d-1f3ff.png",
- "sheet_x": 51,
- "sheet_y": 31,
- "added_in": "8.0",
+ "sheet_x": 59,
+ "sheet_y": 20,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
}
}
},
@@ -53843,20 +66255,20 @@
"softbank": null,
"google": "FE539",
"image": "270f-fe0f.png",
- "sheet_x": 51,
- "sheet_y": 32,
+ "sheet_x": 59,
+ "sheet_y": 21,
"short_name": "pencil2",
"short_names": ["pencil2"],
"text": null,
"texts": null,
"category": "Objects",
- "sort_order": 100,
- "added_in": "1.1",
+ "subcategory": "writing",
+ "sort_order": 1275,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "BLACK NIB",
@@ -53867,20 +66279,20 @@
"softbank": null,
"google": "FE536",
"image": "2712-fe0f.png",
- "sheet_x": 51,
- "sheet_y": 33,
+ "sheet_x": 59,
+ "sheet_y": 22,
"short_name": "black_nib",
"short_names": ["black_nib"],
"text": null,
"texts": null,
"category": "Objects",
- "sort_order": 101,
- "added_in": "1.1",
+ "subcategory": "writing",
+ "sort_order": 1276,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "HEAVY CHECK MARK",
@@ -53891,20 +66303,20 @@
"softbank": null,
"google": "FEB49",
"image": "2714-fe0f.png",
- "sheet_x": 51,
- "sheet_y": 34,
+ "sheet_x": 59,
+ "sheet_y": 23,
"short_name": "heavy_check_mark",
"short_names": ["heavy_check_mark"],
"text": null,
"texts": null,
"category": "Symbols",
- "sort_order": 109,
- "added_in": "1.1",
+ "subcategory": "other-symbol",
+ "sort_order": 1509,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "HEAVY MULTIPLICATION X",
@@ -53915,23 +66327,23 @@
"softbank": null,
"google": "FEB53",
"image": "2716-fe0f.png",
- "sheet_x": 51,
- "sheet_y": 35,
+ "sheet_x": 59,
+ "sheet_y": 24,
"short_name": "heavy_multiplication_x",
"short_names": ["heavy_multiplication_x"],
"text": null,
"texts": null,
"category": "Symbols",
- "sort_order": 110,
- "added_in": "1.1",
+ "subcategory": "math",
+ "sort_order": 1485,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": null,
+ "name": "LATIN CROSS",
"unified": "271D-FE0F",
"non_qualified": "271D",
"docomo": null,
@@ -53939,23 +66351,23 @@
"softbank": null,
"google": null,
"image": "271d-fe0f.png",
- "sheet_x": 51,
- "sheet_y": 36,
+ "sheet_x": 59,
+ "sheet_y": 25,
"short_name": "latin_cross",
"short_names": ["latin_cross"],
"text": null,
"texts": null,
"category": "Symbols",
- "sort_order": 54,
- "added_in": "1.1",
+ "subcategory": "religion",
+ "sort_order": 1437,
+ "added_in": "0.7",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
- "name": null,
+ "name": "STAR OF DAVID",
"unified": "2721-FE0F",
"non_qualified": "2721",
"docomo": null,
@@ -53963,20 +66375,20 @@
"softbank": null,
"google": null,
"image": "2721-fe0f.png",
- "sheet_x": 51,
- "sheet_y": 37,
+ "sheet_x": 59,
+ "sheet_y": 26,
"short_name": "star_of_david",
"short_names": ["star_of_david"],
"text": null,
"texts": null,
"category": "Symbols",
- "sort_order": 51,
- "added_in": "1.1",
+ "subcategory": "religion",
+ "sort_order": 1434,
+ "added_in": "0.7",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
},
{
"name": "SPARKLES",
@@ -53987,20 +66399,20 @@
"softbank": "E32E",
"google": "FEB60",
"image": "2728.png",
- "sheet_x": 51,
- "sheet_y": 38,
+ "sheet_x": 59,
+ "sheet_y": 27,
"short_name": "sparkles",
"short_names": ["sparkles"],
"text": null,
"texts": null,
"category": "Activities",
- "sort_order": 6,
- "added_in": "6.0",
+ "subcategory": "event",
+ "sort_order": 1043,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "EIGHT SPOKED ASTERISK",
@@ -54011,20 +66423,20 @@
"softbank": "E206",
"google": "FEB62",
"image": "2733-fe0f.png",
- "sheet_x": 51,
- "sheet_y": 39,
+ "sheet_x": 59,
+ "sheet_y": 28,
"short_name": "eight_spoked_asterisk",
"short_names": ["eight_spoked_asterisk"],
"text": null,
"texts": null,
"category": "Symbols",
- "sort_order": 119,
- "added_in": "1.1",
+ "subcategory": "other-symbol",
+ "sort_order": 1515,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "EIGHT POINTED BLACK STAR",
@@ -54035,20 +66447,20 @@
"softbank": "E205",
"google": "FEB61",
"image": "2734-fe0f.png",
- "sheet_x": 51,
- "sheet_y": 40,
+ "sheet_x": 59,
+ "sheet_y": 29,
"short_name": "eight_pointed_black_star",
"short_names": ["eight_pointed_black_star"],
"text": null,
"texts": null,
"category": "Symbols",
- "sort_order": 120,
- "added_in": "1.1",
+ "subcategory": "other-symbol",
+ "sort_order": 1516,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "SNOWFLAKE",
@@ -54059,20 +66471,20 @@
"softbank": null,
"google": "FE00E",
"image": "2744-fe0f.png",
- "sheet_x": 51,
- "sheet_y": 41,
+ "sheet_x": 59,
+ "sheet_y": 30,
"short_name": "snowflake",
"short_names": ["snowflake"],
"text": null,
"texts": null,
"category": "Travel & Places",
- "sort_order": 196,
- "added_in": "1.1",
+ "subcategory": "sky & weather",
+ "sort_order": 1031,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "SPARKLE",
@@ -54083,20 +66495,20 @@
"softbank": null,
"google": "FEB77",
"image": "2747-fe0f.png",
- "sheet_x": 51,
- "sheet_y": 42,
+ "sheet_x": 59,
+ "sheet_y": 31,
"short_name": "sparkle",
"short_names": ["sparkle"],
"text": null,
"texts": null,
"category": "Symbols",
- "sort_order": 121,
- "added_in": "1.1",
+ "subcategory": "other-symbol",
+ "sort_order": 1517,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "CROSS MARK",
@@ -54107,20 +66519,20 @@
"softbank": "E333",
"google": "FEB45",
"image": "274c.png",
- "sheet_x": 51,
- "sheet_y": 43,
+ "sheet_x": 59,
+ "sheet_y": 32,
"short_name": "x",
"short_names": ["x"],
"text": null,
"texts": null,
"category": "Symbols",
- "sort_order": 111,
- "added_in": "6.0",
+ "subcategory": "other-symbol",
+ "sort_order": 1510,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "NEGATIVE SQUARED CROSS MARK",
@@ -54131,20 +66543,20 @@
"softbank": null,
"google": "FEB46",
"image": "274e.png",
- "sheet_x": 51,
- "sheet_y": 44,
+ "sheet_x": 59,
+ "sheet_y": 33,
"short_name": "negative_squared_cross_mark",
"short_names": ["negative_squared_cross_mark"],
"text": null,
"texts": null,
"category": "Symbols",
- "sort_order": 112,
- "added_in": "6.0",
+ "subcategory": "other-symbol",
+ "sort_order": 1511,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "BLACK QUESTION MARK ORNAMENT",
@@ -54155,20 +66567,20 @@
"softbank": "E020",
"google": "FEB09",
"image": "2753.png",
- "sheet_x": 51,
- "sheet_y": 45,
+ "sheet_x": 59,
+ "sheet_y": 34,
"short_name": "question",
"short_names": ["question"],
"text": null,
"texts": null,
"category": "Symbols",
- "sort_order": 124,
- "added_in": "6.0",
+ "subcategory": "punctuation",
+ "sort_order": 1493,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "WHITE QUESTION MARK ORNAMENT",
@@ -54179,20 +66591,20 @@
"softbank": "E336",
"google": "FEB0A",
"image": "2754.png",
- "sheet_x": 51,
- "sheet_y": 46,
+ "sheet_x": 59,
+ "sheet_y": 35,
"short_name": "grey_question",
"short_names": ["grey_question"],
"text": null,
"texts": null,
"category": "Symbols",
- "sort_order": 125,
- "added_in": "6.0",
+ "subcategory": "punctuation",
+ "sort_order": 1494,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "WHITE EXCLAMATION MARK ORNAMENT",
@@ -54203,20 +66615,20 @@
"softbank": "E337",
"google": "FEB0B",
"image": "2755.png",
- "sheet_x": 51,
- "sheet_y": 47,
+ "sheet_x": 59,
+ "sheet_y": 36,
"short_name": "grey_exclamation",
"short_names": ["grey_exclamation"],
"text": null,
"texts": null,
"category": "Symbols",
- "sort_order": 126,
- "added_in": "6.0",
+ "subcategory": "punctuation",
+ "sort_order": 1495,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "HEAVY EXCLAMATION MARK SYMBOL",
@@ -54227,23 +66639,23 @@
"softbank": "E021",
"google": "FEB04",
"image": "2757.png",
- "sheet_x": 51,
- "sheet_y": 48,
+ "sheet_x": 59,
+ "sheet_y": 37,
"short_name": "exclamation",
"short_names": ["exclamation", "heavy_exclamation_mark"],
"text": null,
"texts": null,
"category": "Symbols",
- "sort_order": 127,
- "added_in": "5.2",
+ "subcategory": "punctuation",
+ "sort_order": 1496,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
- "name": null,
+ "name": "HEART EXCLAMATION",
"unified": "2763-FE0F",
"non_qualified": "2763",
"docomo": null,
@@ -54251,20 +66663,68 @@
"softbank": null,
"google": null,
"image": "2763-fe0f.png",
- "sheet_x": 51,
- "sheet_y": 49,
+ "sheet_x": 59,
+ "sheet_y": 38,
"short_name": "heavy_heart_exclamation_mark_ornament",
"short_names": ["heavy_heart_exclamation_mark_ornament"],
"text": null,
"texts": null,
- "category": "Smileys & People",
- "sort_order": 419,
- "added_in": "1.1",
+ "category": "Smileys & Emotion",
+ "subcategory": "heart",
+ "sort_order": 137,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": false
+ "has_img_facebook": true
+ },
+ {
+ "name": "HEART ON FIRE",
+ "unified": "2764-FE0F-200D-1F525",
+ "non_qualified": "2764-200D-1F525",
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "2764-fe0f-200d-1f525.png",
+ "sheet_x": 59,
+ "sheet_y": 39,
+ "short_name": "heart_on_fire",
+ "short_names": ["heart_on_fire"],
+ "text": null,
+ "texts": null,
+ "category": "Smileys & Emotion",
+ "subcategory": "heart",
+ "sort_order": 139,
+ "added_in": "13.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
+ },
+ {
+ "name": "MENDING HEART",
+ "unified": "2764-FE0F-200D-1FA79",
+ "non_qualified": "2764-200D-1FA79",
+ "docomo": null,
+ "au": null,
+ "softbank": null,
+ "google": null,
+ "image": "2764-fe0f-200d-1fa79.png",
+ "sheet_x": 59,
+ "sheet_y": 40,
+ "short_name": "mending_heart",
+ "short_names": ["mending_heart"],
+ "text": null,
+ "texts": null,
+ "category": "Smileys & Emotion",
+ "subcategory": "heart",
+ "sort_order": 140,
+ "added_in": "13.1",
+ "has_img_apple": true,
+ "has_img_google": true,
+ "has_img_twitter": true,
+ "has_img_facebook": true
},
{
"name": "HEAVY BLACK HEART",
@@ -54275,20 +66735,20 @@
"softbank": "E022",
"google": "FEB0C",
"image": "2764-fe0f.png",
- "sheet_x": 51,
- "sheet_y": 50,
+ "sheet_x": 59,
+ "sheet_y": 41,
"short_name": "heart",
"short_names": ["heart"],
"text": "<3",
"texts": ["<3"],
- "category": "Smileys & People",
- "sort_order": 404,
- "added_in": "1.1",
+ "category": "Smileys & Emotion",
+ "subcategory": "heart",
+ "sort_order": 141,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "HEAVY PLUS SIGN",
@@ -54299,20 +66759,20 @@
"softbank": null,
"google": "FEB51",
"image": "2795.png",
- "sheet_x": 51,
- "sheet_y": 51,
+ "sheet_x": 59,
+ "sheet_y": 42,
"short_name": "heavy_plus_sign",
"short_names": ["heavy_plus_sign"],
"text": null,
"texts": null,
"category": "Symbols",
- "sort_order": 113,
- "added_in": "6.0",
+ "subcategory": "math",
+ "sort_order": 1486,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "HEAVY MINUS SIGN",
@@ -54323,20 +66783,20 @@
"softbank": null,
"google": "FEB52",
"image": "2796.png",
- "sheet_x": 51,
- "sheet_y": 52,
+ "sheet_x": 59,
+ "sheet_y": 43,
"short_name": "heavy_minus_sign",
"short_names": ["heavy_minus_sign"],
"text": null,
"texts": null,
"category": "Symbols",
- "sort_order": 114,
- "added_in": "6.0",
+ "subcategory": "math",
+ "sort_order": 1487,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "HEAVY DIVISION SIGN",
@@ -54347,20 +66807,20 @@
"softbank": null,
"google": "FEB54",
"image": "2797.png",
- "sheet_x": 52,
- "sheet_y": 0,
+ "sheet_x": 59,
+ "sheet_y": 44,
"short_name": "heavy_division_sign",
"short_names": ["heavy_division_sign"],
"text": null,
"texts": null,
"category": "Symbols",
- "sort_order": 115,
- "added_in": "6.0",
+ "subcategory": "math",
+ "sort_order": 1488,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "BLACK RIGHTWARDS ARROW",
@@ -54371,20 +66831,20 @@
"softbank": "E234",
"google": "FEAFA",
"image": "27a1-fe0f.png",
- "sheet_x": 52,
- "sheet_y": 1,
+ "sheet_x": 59,
+ "sheet_y": 45,
"short_name": "arrow_right",
"short_names": ["arrow_right"],
"text": null,
"texts": null,
"category": "Symbols",
- "sort_order": 29,
- "added_in": "1.1",
+ "subcategory": "arrow",
+ "sort_order": 1412,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "CURLY LOOP",
@@ -54395,20 +66855,20 @@
"softbank": null,
"google": "FEB08",
"image": "27b0.png",
- "sheet_x": 52,
- "sheet_y": 2,
+ "sheet_x": 59,
+ "sheet_y": 46,
"short_name": "curly_loop",
"short_names": ["curly_loop"],
"text": null,
"texts": null,
"category": "Symbols",
- "sort_order": 116,
- "added_in": "6.0",
+ "subcategory": "other-symbol",
+ "sort_order": 1512,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "DOUBLE CURLY LOOP",
@@ -54419,20 +66879,20 @@
"softbank": "E211",
"google": "FE82B",
"image": "27bf.png",
- "sheet_x": 52,
- "sheet_y": 3,
+ "sheet_x": 59,
+ "sheet_y": 47,
"short_name": "loop",
"short_names": ["loop"],
"text": null,
"texts": null,
"category": "Symbols",
- "sort_order": 117,
- "added_in": "6.0",
+ "subcategory": "other-symbol",
+ "sort_order": 1513,
+ "added_in": "1.0",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "ARROW POINTING RIGHTWARDS THEN CURVING UPWARDS",
@@ -54443,20 +66903,20 @@
"softbank": null,
"google": "FEAF4",
"image": "2934-fe0f.png",
- "sheet_x": 52,
- "sheet_y": 4,
+ "sheet_x": 59,
+ "sheet_y": 48,
"short_name": "arrow_heading_up",
"short_names": ["arrow_heading_up"],
"text": null,
"texts": null,
"category": "Symbols",
- "sort_order": 39,
- "added_in": "3.2",
+ "subcategory": "arrow",
+ "sort_order": 1422,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "ARROW POINTING RIGHTWARDS THEN CURVING DOWNWARDS",
@@ -54467,20 +66927,20 @@
"softbank": null,
"google": "FEAF5",
"image": "2935-fe0f.png",
- "sheet_x": 52,
- "sheet_y": 5,
+ "sheet_x": 59,
+ "sheet_y": 49,
"short_name": "arrow_heading_down",
"short_names": ["arrow_heading_down"],
"text": null,
"texts": null,
"category": "Symbols",
- "sort_order": 40,
- "added_in": "3.2",
+ "subcategory": "arrow",
+ "sort_order": 1423,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "LEFTWARDS BLACK ARROW",
@@ -54491,20 +66951,20 @@
"softbank": "E235",
"google": "FEAFB",
"image": "2b05-fe0f.png",
- "sheet_x": 52,
- "sheet_y": 6,
+ "sheet_x": 59,
+ "sheet_y": 50,
"short_name": "arrow_left",
"short_names": ["arrow_left"],
"text": null,
"texts": null,
"category": "Symbols",
- "sort_order": 33,
- "added_in": "4.0",
+ "subcategory": "arrow",
+ "sort_order": 1416,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "UPWARDS BLACK ARROW",
@@ -54515,20 +66975,20 @@
"softbank": "E232",
"google": "FEAF8",
"image": "2b06-fe0f.png",
- "sheet_x": 52,
- "sheet_y": 7,
+ "sheet_x": 59,
+ "sheet_y": 51,
"short_name": "arrow_up",
"short_names": ["arrow_up"],
"text": null,
"texts": null,
"category": "Symbols",
- "sort_order": 27,
- "added_in": "4.0",
+ "subcategory": "arrow",
+ "sort_order": 1410,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "DOWNWARDS BLACK ARROW",
@@ -54539,20 +66999,20 @@
"softbank": "E233",
"google": "FEAF9",
"image": "2b07-fe0f.png",
- "sheet_x": 52,
- "sheet_y": 8,
+ "sheet_x": 59,
+ "sheet_y": 52,
"short_name": "arrow_down",
"short_names": ["arrow_down"],
"text": null,
"texts": null,
"category": "Symbols",
- "sort_order": 31,
- "added_in": "4.0",
+ "subcategory": "arrow",
+ "sort_order": 1414,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "BLACK LARGE SQUARE",
@@ -54563,20 +67023,20 @@
"softbank": null,
"google": "FEB6C",
"image": "2b1b.png",
- "sheet_x": 52,
- "sheet_y": 9,
+ "sheet_x": 59,
+ "sheet_y": 53,
"short_name": "black_large_square",
"short_names": ["black_large_square"],
"text": null,
"texts": null,
"category": "Symbols",
- "sort_order": 191,
- "added_in": "5.1",
+ "subcategory": "geometric",
+ "sort_order": 1589,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "WHITE LARGE SQUARE",
@@ -54587,20 +67047,20 @@
"softbank": null,
"google": "FEB6B",
"image": "2b1c.png",
- "sheet_x": 52,
- "sheet_y": 10,
+ "sheet_x": 59,
+ "sheet_y": 54,
"short_name": "white_large_square",
"short_names": ["white_large_square"],
"text": null,
"texts": null,
"category": "Symbols",
- "sort_order": 192,
- "added_in": "5.1",
+ "subcategory": "geometric",
+ "sort_order": 1590,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "WHITE MEDIUM STAR",
@@ -54611,20 +67071,20 @@
"softbank": "E32F",
"google": "FEB68",
"image": "2b50.png",
- "sheet_x": 52,
- "sheet_y": 11,
+ "sheet_x": 59,
+ "sheet_y": 55,
"short_name": "star",
"short_names": ["star"],
"text": null,
"texts": null,
"category": "Travel & Places",
- "sort_order": 174,
- "added_in": "5.1",
+ "subcategory": "sky & weather",
+ "sort_order": 1008,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "HEAVY LARGE CIRCLE",
@@ -54635,20 +67095,20 @@
"softbank": "E332",
"google": "FEB44",
"image": "2b55.png",
- "sheet_x": 52,
- "sheet_y": 12,
+ "sheet_x": 59,
+ "sheet_y": 56,
"short_name": "o",
"short_names": ["o"],
"text": null,
"texts": null,
"category": "Symbols",
- "sort_order": 106,
- "added_in": "5.2",
+ "subcategory": "other-symbol",
+ "sort_order": 1506,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "WAVY DASH",
@@ -54659,20 +67119,20 @@
"softbank": null,
"google": "FEB07",
"image": "3030-fe0f.png",
- "sheet_x": 52,
- "sheet_y": 13,
+ "sheet_x": 59,
+ "sheet_y": 57,
"short_name": "wavy_dash",
"short_names": ["wavy_dash"],
"text": null,
"texts": null,
"category": "Symbols",
- "sort_order": 128,
- "added_in": "1.1",
+ "subcategory": "punctuation",
+ "sort_order": 1497,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "PART ALTERNATION MARK",
@@ -54683,20 +67143,20 @@
"softbank": "E12C",
"google": "FE81B",
"image": "303d-fe0f.png",
- "sheet_x": 52,
- "sheet_y": 14,
+ "sheet_x": 59,
+ "sheet_y": 58,
"short_name": "part_alternation_mark",
"short_names": ["part_alternation_mark"],
"text": null,
"texts": null,
"category": "Symbols",
- "sort_order": 118,
- "added_in": "3.2",
+ "subcategory": "other-symbol",
+ "sort_order": 1514,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "CIRCLED IDEOGRAPH CONGRATULATION",
@@ -54707,20 +67167,20 @@
"softbank": "E30D",
"google": "FEB43",
"image": "3297-fe0f.png",
- "sheet_x": 52,
- "sheet_y": 15,
+ "sheet_x": 59,
+ "sheet_y": 59,
"short_name": "congratulations",
"short_names": ["congratulations"],
"text": null,
"texts": null,
"category": "Symbols",
- "sort_order": 181,
- "added_in": "1.1",
+ "subcategory": "alphanum",
+ "sort_order": 1569,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
},
{
"name": "CIRCLED IDEOGRAPH SECRET",
@@ -54731,19 +67191,19 @@
"softbank": "E315",
"google": "FEB2B",
"image": "3299-fe0f.png",
- "sheet_x": 52,
- "sheet_y": 16,
+ "sheet_x": 59,
+ "sheet_y": 60,
"short_name": "secret",
"short_names": ["secret"],
"text": null,
"texts": null,
"category": "Symbols",
- "sort_order": 182,
- "added_in": "1.1",
+ "subcategory": "alphanum",
+ "sort_order": 1570,
+ "added_in": "0.6",
"has_img_apple": true,
"has_img_google": true,
"has_img_twitter": true,
- "has_img_facebook": true,
- "has_img_messenger": true
+ "has_img_facebook": true
}
]
diff --git a/src/emoji-data/index.js b/src/emoji-data/index.js
index d57c0ac..a9b8fe5 100644
--- a/src/emoji-data/index.js
+++ b/src/emoji-data/index.js
@@ -1,108 +1,117 @@
-import _ from 'lodash';
-import emoji from './emoji-data.json';
-import emojiSynonyms from './emojiSynonyms.json';
-import userInputEmojiSynonyms from './userInputtedSynonyms.json';
-import duplicates from './duplicates.json';
+import _ from "lodash";
+import emoji from "./emoji-data.json";
+import emojiSynonyms from "./emojiSynonyms.json";
+import userInputEmojiSynonyms from "./userInputtedSynonyms.json";
+import duplicates from "./duplicates.json";
-const filteredEmoji = _.filter(emoji, e => !_.includes(duplicates, e.unified));
+const filteredEmoji = _.filter(
+ emoji,
+ (e) => !_.includes(duplicates, e.unified)
+);
const categoryTitleToKey = {
- 'Frequently Used': 'fue',
- 'Smileys & People': 'people',
- 'Animals & Nature': 'animals_and_nature',
- 'Food & Drink': 'food_and_drink',
- Activities: 'activity',
- 'Travel & Places': 'travel_and_places',
- Objects: 'objects',
- Symbols: 'symbols',
- Flags: 'flags'
+ "Frequently Used": "fue",
+ "People & Body": "people",
+ "Smileys & People": "people",
+ "Smileys & Emotion": "people",
+ "Animals & Nature": "animals_and_nature",
+ "Food & Drink": "food_and_drink",
+ Activities: "activity",
+ "Travel & Places": "travel_and_places",
+ Objects: "objects",
+ Symbols: "symbols",
+ Flags: "flags",
};
let obsoletes = _(filteredEmoji)
- .filter('obsoletes')
- .map(v => v.obsoletes)
- .value();
+ .filter("obsoletes")
+ .map((v) => v.obsoletes)
+ .value();
// Adding in extra duplicates not marked in datasource
-obsoletes.push.apply(obsoletes, ['1F93D', '1F93E', '1F939', '1F938', '1F939']);
+obsoletes.push.apply(obsoletes, ["1F93D", "1F93E", "1F939", "1F938", "1F939"]);
let emojiLib = _(filteredEmoji)
- .filter(e => !obsoletes.includes(e.unified))
- .sortBy('sort_order')
- .mapKeys(({ short_name }) => short_name)
- .mapValues((v, k) => ({
- char: String.fromCodePoint.apply(
- null,
- v.unified.split('-').map(v => `0x${v}`)
- ),
- key: v.short_name,
- keywords: [v.short_name, v.name ? v.name : ''],
- category: categoryTitleToKey[v.category],
- lib: v
- }))
- .value();
+ .filter((e) => !obsoletes.includes(e.unified))
+ .sortBy("sort_order")
+ .mapKeys(({ short_name }) => short_name)
+ .mapValues((v, k) => ({
+ char: String.fromCodePoint.apply(
+ null,
+ v.unified.split("-").map((v) => `0x${v}`)
+ ),
+ key: v.short_name,
+ keywords: [v.short_name, v.name ? v.name : ""],
+ category: categoryTitleToKey[v.category],
+ lib: v,
+ }))
+ .value();
const category = [
- {
- key: 'fue',
- title: 'Frequently Used'
- },
- {
- key: 'people',
- title: 'Smileys & People'
- },
- {
- key: 'animals_and_nature',
- title: 'Animals & Nature'
- },
- {
- key: 'food_and_drink',
- title: 'Food & Drink'
- },
- {
- key: 'activity',
- title: 'Activities'
- },
- {
- key: 'travel_and_places',
- title: 'Travel & Places'
- },
- {
- key: 'objects',
- title: 'Objects'
- },
- {
- key: 'symbols',
- title: 'Symbols'
- },
- {
- key: 'flags',
- title: 'Flags'
- }
+ {
+ key: "fue",
+ title: "Frequently Used",
+ },
+ {
+ key: "people",
+ title: "Smileys & People",
+ },
+ {
+ key: "animals_and_nature",
+ title: "Animals & Nature",
+ },
+ {
+ key: "food_and_drink",
+ title: "Food & Drink",
+ },
+ {
+ key: "activity",
+ title: "Activities",
+ },
+ {
+ key: "travel_and_places",
+ title: "Travel & Places",
+ },
+ {
+ key: "objects",
+ title: "Objects",
+ },
+ {
+ key: "symbols",
+ title: "Symbols",
+ },
+ {
+ key: "flags",
+ title: "Flags",
+ },
];
const categoryIndexMap = _(category)
- .map((v, idx) => ({ ...v, idx }))
- .keyBy('key')
- .value();
+ .map((v, idx) => ({ ...v, idx }))
+ .keyBy("key")
+ .value();
_.each(emojiSynonyms, (v, k) => {
- emojiSynonyms[k] = _.uniq(
- emojiSynonyms[k].concat(userInputEmojiSynonyms[k])
- );
+ emojiSynonyms[k].keywords = _.uniq(
+ v.keywords.concat(userInputEmojiSynonyms[k])
+ ).filter((keyword) => !!keyword);
});
const emojiMap = _(emojiLib)
- .mapValues(
- (v, k) =>
- k +
- ' ' +
- v.keywords.map(v => v.replace(/_/g, ' ')).join(' ') +
- (emojiSynonyms[k] || []).map(v => v.replace(/_/g, ' ')).join(' ')
- )
- .invert()
- .value();
+ .mapValues(
+ (v, k) =>
+ k +
+ " " +
+ v.keywords.map((v) => v.replace(/_/g, " ")).join(" ") +
+ (emojiSynonyms.find((syn) => syn.emoji_key === k)?.keywords || [])
+ .map((v) => v.replace(/_/g, " "))
+ .join(" ")
+ )
+ .value();
-const emojiArray = _.keys(emojiMap);
+const emojiArray = _.keys(emojiMap).map((k) => ({
+ keywords: emojiMap[k].split(" "),
+ emoji_key: k,
+}));
-export { category, categoryIndexMap, emojiLib, emojiMap, emojiArray };
+export { category, categoryIndexMap, emojiLib, emojiArray };
diff --git a/yarn.lock b/yarn.lock
index 7ddbcb2..caff585 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -2,6 +2,1007 @@
# yarn lockfile v1
+"@ampproject/remapping@^2.2.0":
+ version "2.2.1"
+ resolved "https://registry.yarnpkg.com/@ampproject/remapping/-/remapping-2.2.1.tgz#99e8e11851128b8702cd57c33684f1d0f260b630"
+ integrity sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==
+ dependencies:
+ "@jridgewell/gen-mapping" "^0.3.0"
+ "@jridgewell/trace-mapping" "^0.3.9"
+
+"@babel/code-frame@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.22.5.tgz#234d98e1551960604f1246e6475891a570ad5658"
+ integrity sha512-Xmwn266vad+6DAqEB2A6V/CcZVp62BbwVmcOJc2RPuwih1kw02TjQvWVWlcKGbBPd+8/0V5DEkOcizRGYsspYQ==
+ dependencies:
+ "@babel/highlight" "^7.22.5"
+
+"@babel/compat-data@^7.22.5", "@babel/compat-data@^7.22.6", "@babel/compat-data@^7.22.9":
+ version "7.22.9"
+ resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.22.9.tgz#71cdb00a1ce3a329ce4cbec3a44f9fef35669730"
+ integrity sha512-5UamI7xkUcJ3i9qVDS+KFDEK8/7oJ55/sJMB1Ge7IEapr7KfdfV/HErR+koZwOfd+SgtFKOKRhRakdg++DcJpQ==
+
+"@babel/core@^7.22.9":
+ version "7.22.9"
+ resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.22.9.tgz#bd96492c68822198f33e8a256061da3cf391f58f"
+ integrity sha512-G2EgeufBcYw27U4hhoIwFcgc1XU7TlXJ3mv04oOv1WCuo900U/anZSPzEqNjwdjgffkk2Gs0AN0dW1CKVLcG7w==
+ dependencies:
+ "@ampproject/remapping" "^2.2.0"
+ "@babel/code-frame" "^7.22.5"
+ "@babel/generator" "^7.22.9"
+ "@babel/helper-compilation-targets" "^7.22.9"
+ "@babel/helper-module-transforms" "^7.22.9"
+ "@babel/helpers" "^7.22.6"
+ "@babel/parser" "^7.22.7"
+ "@babel/template" "^7.22.5"
+ "@babel/traverse" "^7.22.8"
+ "@babel/types" "^7.22.5"
+ convert-source-map "^1.7.0"
+ debug "^4.1.0"
+ gensync "^1.0.0-beta.2"
+ json5 "^2.2.2"
+ semver "^6.3.1"
+
+"@babel/generator@^7.22.7", "@babel/generator@^7.22.9":
+ version "7.22.9"
+ resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.22.9.tgz#572ecfa7a31002fa1de2a9d91621fd895da8493d"
+ integrity sha512-KtLMbmicyuK2Ak/FTCJVbDnkN1SlT8/kceFTiuDiiRUUSMnHMidxSCdG4ndkTOHHpoomWe/4xkvHkEOncwjYIw==
+ dependencies:
+ "@babel/types" "^7.22.5"
+ "@jridgewell/gen-mapping" "^0.3.2"
+ "@jridgewell/trace-mapping" "^0.3.17"
+ jsesc "^2.5.1"
+
+"@babel/helper-annotate-as-pure@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.22.5.tgz#e7f06737b197d580a01edf75d97e2c8be99d3882"
+ integrity sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==
+ dependencies:
+ "@babel/types" "^7.22.5"
+
+"@babel/helper-builder-binary-assignment-operator-visitor@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.22.5.tgz#a3f4758efdd0190d8927fcffd261755937c71878"
+ integrity sha512-m1EP3lVOPptR+2DwD125gziZNcmoNSHGmJROKoy87loWUQyJaVXDgpmruWqDARZSmtYQ+Dl25okU8+qhVzuykw==
+ dependencies:
+ "@babel/types" "^7.22.5"
+
+"@babel/helper-compilation-targets@^7.22.5", "@babel/helper-compilation-targets@^7.22.6", "@babel/helper-compilation-targets@^7.22.9":
+ version "7.22.9"
+ resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.22.9.tgz#f9d0a7aaaa7cd32a3f31c9316a69f5a9bcacb892"
+ integrity sha512-7qYrNM6HjpnPHJbopxmb8hSPoZ0gsX8IvUS32JGVoy+pU9e5N0nLr1VjJoR6kA4d9dmGLxNYOjeB8sUDal2WMw==
+ dependencies:
+ "@babel/compat-data" "^7.22.9"
+ "@babel/helper-validator-option" "^7.22.5"
+ browserslist "^4.21.9"
+ lru-cache "^5.1.1"
+ semver "^6.3.1"
+
+"@babel/helper-create-class-features-plugin@^7.22.5":
+ version "7.22.9"
+ resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.22.9.tgz#c36ea240bb3348f942f08b0fbe28d6d979fab236"
+ integrity sha512-Pwyi89uO4YrGKxL/eNJ8lfEH55DnRloGPOseaA8NFNL6jAUnn+KccaISiFazCj5IolPPDjGSdzQzXVzODVRqUQ==
+ dependencies:
+ "@babel/helper-annotate-as-pure" "^7.22.5"
+ "@babel/helper-environment-visitor" "^7.22.5"
+ "@babel/helper-function-name" "^7.22.5"
+ "@babel/helper-member-expression-to-functions" "^7.22.5"
+ "@babel/helper-optimise-call-expression" "^7.22.5"
+ "@babel/helper-replace-supers" "^7.22.9"
+ "@babel/helper-skip-transparent-expression-wrappers" "^7.22.5"
+ "@babel/helper-split-export-declaration" "^7.22.6"
+ semver "^6.3.1"
+
+"@babel/helper-create-regexp-features-plugin@^7.18.6", "@babel/helper-create-regexp-features-plugin@^7.22.5":
+ version "7.22.9"
+ resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.22.9.tgz#9d8e61a8d9366fe66198f57c40565663de0825f6"
+ integrity sha512-+svjVa/tFwsNSG4NEy1h85+HQ5imbT92Q5/bgtS7P0GTQlP8WuFdqsiABmQouhiFGyV66oGxZFpeYHza1rNsKw==
+ dependencies:
+ "@babel/helper-annotate-as-pure" "^7.22.5"
+ regexpu-core "^5.3.1"
+ semver "^6.3.1"
+
+"@babel/helper-define-polyfill-provider@^0.4.2":
+ version "0.4.2"
+ resolved "https://registry.yarnpkg.com/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.4.2.tgz#82c825cadeeeee7aad237618ebbe8fa1710015d7"
+ integrity sha512-k0qnnOqHn5dK9pZpfD5XXZ9SojAITdCKRn2Lp6rnDGzIbaP0rHyMPk/4wsSxVBVz4RfN0q6VpXWP2pDGIoQ7hw==
+ dependencies:
+ "@babel/helper-compilation-targets" "^7.22.6"
+ "@babel/helper-plugin-utils" "^7.22.5"
+ debug "^4.1.1"
+ lodash.debounce "^4.0.8"
+ resolve "^1.14.2"
+
+"@babel/helper-environment-visitor@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.5.tgz#f06dd41b7c1f44e1f8da6c4055b41ab3a09a7e98"
+ integrity sha512-XGmhECfVA/5sAt+H+xpSg0mfrHq6FzNr9Oxh7PSEBBRUb/mL7Kz3NICXb194rCqAEdxkhPT1a88teizAFyvk8Q==
+
+"@babel/helper-function-name@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.22.5.tgz#ede300828905bb15e582c037162f99d5183af1be"
+ integrity sha512-wtHSq6jMRE3uF2otvfuD3DIvVhOsSNshQl0Qrd7qC9oQJzHvOL4qQXlQn2916+CXGywIjpGuIkoyZRRxHPiNQQ==
+ dependencies:
+ "@babel/template" "^7.22.5"
+ "@babel/types" "^7.22.5"
+
+"@babel/helper-hoist-variables@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz#c01a007dac05c085914e8fb652b339db50d823bb"
+ integrity sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==
+ dependencies:
+ "@babel/types" "^7.22.5"
+
+"@babel/helper-member-expression-to-functions@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.22.5.tgz#0a7c56117cad3372fbf8d2fb4bf8f8d64a1e76b2"
+ integrity sha512-aBiH1NKMG0H2cGZqspNvsaBe6wNGjbJjuLy29aU+eDZjSbbN53BaxlpB02xm9v34pLTZ1nIQPFYn2qMZoa5BQQ==
+ dependencies:
+ "@babel/types" "^7.22.5"
+
+"@babel/helper-module-imports@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.22.5.tgz#1a8f4c9f4027d23f520bd76b364d44434a72660c"
+ integrity sha512-8Dl6+HD/cKifutF5qGd/8ZJi84QeAKh+CEe1sBzz8UayBBGg1dAIJrdHOcOM5b2MpzWL2yuotJTtGjETq0qjXg==
+ dependencies:
+ "@babel/types" "^7.22.5"
+
+"@babel/helper-module-transforms@^7.22.5", "@babel/helper-module-transforms@^7.22.9":
+ version "7.22.9"
+ resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.22.9.tgz#92dfcb1fbbb2bc62529024f72d942a8c97142129"
+ integrity sha512-t+WA2Xn5K+rTeGtC8jCsdAH52bjggG5TKRuRrAGNM/mjIbO4GxvlLMFOEz9wXY5I2XQ60PMFsAG2WIcG82dQMQ==
+ dependencies:
+ "@babel/helper-environment-visitor" "^7.22.5"
+ "@babel/helper-module-imports" "^7.22.5"
+ "@babel/helper-simple-access" "^7.22.5"
+ "@babel/helper-split-export-declaration" "^7.22.6"
+ "@babel/helper-validator-identifier" "^7.22.5"
+
+"@babel/helper-optimise-call-expression@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.22.5.tgz#f21531a9ccbff644fdd156b4077c16ff0c3f609e"
+ integrity sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==
+ dependencies:
+ "@babel/types" "^7.22.5"
+
+"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.14.5", "@babel/helper-plugin-utils@^7.18.6", "@babel/helper-plugin-utils@^7.22.5", "@babel/helper-plugin-utils@^7.8.0", "@babel/helper-plugin-utils@^7.8.3":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz#dd7ee3735e8a313b9f7b05a773d892e88e6d7295"
+ integrity sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==
+
+"@babel/helper-remap-async-to-generator@^7.22.5":
+ version "7.22.9"
+ resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.22.9.tgz#53a25b7484e722d7efb9c350c75c032d4628de82"
+ integrity sha512-8WWC4oR4Px+tr+Fp0X3RHDVfINGpF3ad1HIbrc8A77epiR6eMMc6jsgozkzT2uDiOOdoS9cLIQ+XD2XvI2WSmQ==
+ dependencies:
+ "@babel/helper-annotate-as-pure" "^7.22.5"
+ "@babel/helper-environment-visitor" "^7.22.5"
+ "@babel/helper-wrap-function" "^7.22.9"
+
+"@babel/helper-replace-supers@^7.22.5", "@babel/helper-replace-supers@^7.22.9":
+ version "7.22.9"
+ resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.22.9.tgz#cbdc27d6d8d18cd22c81ae4293765a5d9afd0779"
+ integrity sha512-LJIKvvpgPOPUThdYqcX6IXRuIcTkcAub0IaDRGCZH0p5GPUp7PhRU9QVgFcDDd51BaPkk77ZjqFwh6DZTAEmGg==
+ dependencies:
+ "@babel/helper-environment-visitor" "^7.22.5"
+ "@babel/helper-member-expression-to-functions" "^7.22.5"
+ "@babel/helper-optimise-call-expression" "^7.22.5"
+
+"@babel/helper-simple-access@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.22.5.tgz#4938357dc7d782b80ed6dbb03a0fba3d22b1d5de"
+ integrity sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==
+ dependencies:
+ "@babel/types" "^7.22.5"
+
+"@babel/helper-skip-transparent-expression-wrappers@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.22.5.tgz#007f15240b5751c537c40e77abb4e89eeaaa8847"
+ integrity sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==
+ dependencies:
+ "@babel/types" "^7.22.5"
+
+"@babel/helper-split-export-declaration@^7.22.6":
+ version "7.22.6"
+ resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.6.tgz#322c61b7310c0997fe4c323955667f18fcefb91c"
+ integrity sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==
+ dependencies:
+ "@babel/types" "^7.22.5"
+
+"@babel/helper-string-parser@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.22.5.tgz#533f36457a25814cf1df6488523ad547d784a99f"
+ integrity sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw==
+
+"@babel/helper-validator-identifier@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.5.tgz#9544ef6a33999343c8740fa51350f30eeaaaf193"
+ integrity sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ==
+
+"@babel/helper-validator-option@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.22.5.tgz#de52000a15a177413c8234fa3a8af4ee8102d0ac"
+ integrity sha512-R3oB6xlIVKUnxNUxbmgq7pKjxpru24zlimpE8WK47fACIlM0II/Hm1RS8IaOI7NgCr6LNS+jl5l75m20npAziw==
+
+"@babel/helper-wrap-function@^7.22.9":
+ version "7.22.9"
+ resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.22.9.tgz#189937248c45b0182c1dcf32f3444ca153944cb9"
+ integrity sha512-sZ+QzfauuUEfxSEjKFmi3qDSHgLsTPK/pEpoD/qonZKOtTPTLbf59oabPQ4rKekt9lFcj/hTZaOhWwFYrgjk+Q==
+ dependencies:
+ "@babel/helper-function-name" "^7.22.5"
+ "@babel/template" "^7.22.5"
+ "@babel/types" "^7.22.5"
+
+"@babel/helpers@^7.22.6":
+ version "7.22.6"
+ resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.22.6.tgz#8e61d3395a4f0c5a8060f309fb008200969b5ecd"
+ integrity sha512-YjDs6y/fVOYFV8hAf1rxd1QvR9wJe1pDBZ2AREKq/SDayfPzgk0PBnVuTCE5X1acEpMMNOVUqoe+OwiZGJ+OaA==
+ dependencies:
+ "@babel/template" "^7.22.5"
+ "@babel/traverse" "^7.22.6"
+ "@babel/types" "^7.22.5"
+
+"@babel/highlight@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.22.5.tgz#aa6c05c5407a67ebce408162b7ede789b4d22031"
+ integrity sha512-BSKlD1hgnedS5XRnGOljZawtag7H1yPfQp0tdNJCHoH6AZ+Pcm9VvkrK59/Yy593Ypg0zMxH2BxD1VPYUQ7UIw==
+ dependencies:
+ "@babel/helper-validator-identifier" "^7.22.5"
+ chalk "^2.0.0"
+ js-tokens "^4.0.0"
+
+"@babel/node@^7.22.6":
+ version "7.22.6"
+ resolved "https://registry.yarnpkg.com/@babel/node/-/node-7.22.6.tgz#a47b4f150f06bad1808823c4519690ded6c93911"
+ integrity sha512-Lt6v+RUQOTsEOXLv+KfjogLFkFfsLPPSoXZqmbngfVatkWjQPnFGHO0xjFRcN6XEvm3vsnZn+AWQiRpgZFsdIA==
+ dependencies:
+ "@babel/register" "^7.22.5"
+ commander "^4.0.1"
+ core-js "^3.30.2"
+ node-environment-flags "^1.0.5"
+ regenerator-runtime "^0.13.11"
+ v8flags "^3.1.1"
+
+"@babel/parser@^7.22.5", "@babel/parser@^7.22.7":
+ version "7.22.7"
+ resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.22.7.tgz#df8cf085ce92ddbdbf668a7f186ce848c9036cae"
+ integrity sha512-7NF8pOkHP5o2vpmGgNGcfAeCvOYhGLyA3Z4eBQkT1RJlWu47n63bCs93QfJ2hIAFCil7L5P2IWhs1oToVgrL0Q==
+
+"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.22.5.tgz#87245a21cd69a73b0b81bcda98d443d6df08f05e"
+ integrity sha512-NP1M5Rf+u2Gw9qfSO4ihjcTGW5zXTi36ITLd4/EoAcEhIZ0yjMqmftDNl3QC19CX7olhrjpyU454g/2W7X0jvQ==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.22.5"
+
+"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.22.5.tgz#fef09f9499b1f1c930da8a0c419db42167d792ca"
+ integrity sha512-31Bb65aZaUwqCbWMnZPduIZxCBngHFlzyN6Dq6KAJjtx+lx6ohKHubc61OomYi7XwVD4Ol0XCVz4h+pYFR048g==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.22.5"
+ "@babel/helper-skip-transparent-expression-wrappers" "^7.22.5"
+ "@babel/plugin-transform-optional-chaining" "^7.22.5"
+
+"@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2":
+ version "7.21.0-placeholder-for-preset-env.2"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.0-placeholder-for-preset-env.2.tgz#7844f9289546efa9febac2de4cfe358a050bd703"
+ integrity sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==
+
+"@babel/plugin-proposal-unicode-property-regex@^7.4.4":
+ version "7.18.6"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.18.6.tgz#af613d2cd5e643643b65cded64207b15c85cb78e"
+ integrity sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==
+ dependencies:
+ "@babel/helper-create-regexp-features-plugin" "^7.18.6"
+ "@babel/helper-plugin-utils" "^7.18.6"
+
+"@babel/plugin-syntax-async-generators@^7.8.4":
+ version "7.8.4"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz#a983fb1aeb2ec3f6ed042a210f640e90e786fe0d"
+ integrity sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.8.0"
+
+"@babel/plugin-syntax-class-properties@^7.12.13":
+ version "7.12.13"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz#b5c987274c4a3a82b89714796931a6b53544ae10"
+ integrity sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.12.13"
+
+"@babel/plugin-syntax-class-static-block@^7.14.5":
+ version "7.14.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz#195df89b146b4b78b3bf897fd7a257c84659d406"
+ integrity sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.14.5"
+
+"@babel/plugin-syntax-dynamic-import@^7.8.3":
+ version "7.8.3"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz#62bf98b2da3cd21d626154fc96ee5b3cb68eacb3"
+ integrity sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.8.0"
+
+"@babel/plugin-syntax-export-namespace-from@^7.8.3":
+ version "7.8.3"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz#028964a9ba80dbc094c915c487ad7c4e7a66465a"
+ integrity sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.8.3"
+
+"@babel/plugin-syntax-import-assertions@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.22.5.tgz#07d252e2aa0bc6125567f742cd58619cb14dce98"
+ integrity sha512-rdV97N7KqsRzeNGoWUOK6yUsWarLjE5Su/Snk9IYPU9CwkWHs4t+rTGOvffTR8XGkJMTAdLfO0xVnXm8wugIJg==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.22.5"
+
+"@babel/plugin-syntax-import-attributes@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.22.5.tgz#ab840248d834410b829f569f5262b9e517555ecb"
+ integrity sha512-KwvoWDeNKPETmozyFE0P2rOLqh39EoQHNjqizrI5B8Vt0ZNS7M56s7dAiAqbYfiAYOuIzIh96z3iR2ktgu3tEg==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.22.5"
+
+"@babel/plugin-syntax-import-meta@^7.10.4":
+ version "7.10.4"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz#ee601348c370fa334d2207be158777496521fd51"
+ integrity sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.10.4"
+
+"@babel/plugin-syntax-json-strings@^7.8.3":
+ version "7.8.3"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz#01ca21b668cd8218c9e640cb6dd88c5412b2c96a"
+ integrity sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.8.0"
+
+"@babel/plugin-syntax-logical-assignment-operators@^7.10.4":
+ version "7.10.4"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz#ca91ef46303530448b906652bac2e9fe9941f699"
+ integrity sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.10.4"
+
+"@babel/plugin-syntax-nullish-coalescing-operator@^7.8.3":
+ version "7.8.3"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz#167ed70368886081f74b5c36c65a88c03b66d1a9"
+ integrity sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.8.0"
+
+"@babel/plugin-syntax-numeric-separator@^7.10.4":
+ version "7.10.4"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz#b9b070b3e33570cd9fd07ba7fa91c0dd37b9af97"
+ integrity sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.10.4"
+
+"@babel/plugin-syntax-object-rest-spread@^7.8.3":
+ version "7.8.3"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz#60e225edcbd98a640332a2e72dd3e66f1af55871"
+ integrity sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.8.0"
+
+"@babel/plugin-syntax-optional-catch-binding@^7.8.3":
+ version "7.8.3"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz#6111a265bcfb020eb9efd0fdfd7d26402b9ed6c1"
+ integrity sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.8.0"
+
+"@babel/plugin-syntax-optional-chaining@^7.8.3":
+ version "7.8.3"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz#4f69c2ab95167e0180cd5336613f8c5788f7d48a"
+ integrity sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.8.0"
+
+"@babel/plugin-syntax-private-property-in-object@^7.14.5":
+ version "7.14.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz#0dc6671ec0ea22b6e94a1114f857970cd39de1ad"
+ integrity sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.14.5"
+
+"@babel/plugin-syntax-top-level-await@^7.14.5":
+ version "7.14.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz#c1cfdadc35a646240001f06138247b741c34d94c"
+ integrity sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.14.5"
+
+"@babel/plugin-syntax-unicode-sets-regex@^7.18.6":
+ version "7.18.6"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-unicode-sets-regex/-/plugin-syntax-unicode-sets-regex-7.18.6.tgz#d49a3b3e6b52e5be6740022317580234a6a47357"
+ integrity sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==
+ dependencies:
+ "@babel/helper-create-regexp-features-plugin" "^7.18.6"
+ "@babel/helper-plugin-utils" "^7.18.6"
+
+"@babel/plugin-transform-arrow-functions@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.22.5.tgz#e5ba566d0c58a5b2ba2a8b795450641950b71958"
+ integrity sha512-26lTNXoVRdAnsaDXPpvCNUq+OVWEVC6bx7Vvz9rC53F2bagUWW4u4ii2+h8Fejfh7RYqPxn+libeFBBck9muEw==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.22.5"
+
+"@babel/plugin-transform-async-generator-functions@^7.22.7":
+ version "7.22.7"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.22.7.tgz#053e76c0a903b72b573cb1ab7d6882174d460a1b"
+ integrity sha512-7HmE7pk/Fmke45TODvxvkxRMV9RazV+ZZzhOL9AG8G29TLrr3jkjwF7uJfxZ30EoXpO+LJkq4oA8NjO2DTnEDg==
+ dependencies:
+ "@babel/helper-environment-visitor" "^7.22.5"
+ "@babel/helper-plugin-utils" "^7.22.5"
+ "@babel/helper-remap-async-to-generator" "^7.22.5"
+ "@babel/plugin-syntax-async-generators" "^7.8.4"
+
+"@babel/plugin-transform-async-to-generator@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.22.5.tgz#c7a85f44e46f8952f6d27fe57c2ed3cc084c3775"
+ integrity sha512-b1A8D8ZzE/VhNDoV1MSJTnpKkCG5bJo+19R4o4oy03zM7ws8yEMK755j61Dc3EyvdysbqH5BOOTquJ7ZX9C6vQ==
+ dependencies:
+ "@babel/helper-module-imports" "^7.22.5"
+ "@babel/helper-plugin-utils" "^7.22.5"
+ "@babel/helper-remap-async-to-generator" "^7.22.5"
+
+"@babel/plugin-transform-block-scoped-functions@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.22.5.tgz#27978075bfaeb9fa586d3cb63a3d30c1de580024"
+ integrity sha512-tdXZ2UdknEKQWKJP1KMNmuF5Lx3MymtMN/pvA+p/VEkhK8jVcQ1fzSy8KM9qRYhAf2/lV33hoMPKI/xaI9sADA==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.22.5"
+
+"@babel/plugin-transform-block-scoping@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.22.5.tgz#8bfc793b3a4b2742c0983fadc1480d843ecea31b"
+ integrity sha512-EcACl1i5fSQ6bt+YGuU/XGCeZKStLmyVGytWkpyhCLeQVA0eu6Wtiw92V+I1T/hnezUv7j74dA/Ro69gWcU+hg==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.22.5"
+
+"@babel/plugin-transform-class-properties@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.22.5.tgz#97a56e31ad8c9dc06a0b3710ce7803d5a48cca77"
+ integrity sha512-nDkQ0NfkOhPTq8YCLiWNxp1+f9fCobEjCb0n8WdbNUBc4IB5V7P1QnX9IjpSoquKrXF5SKojHleVNs2vGeHCHQ==
+ dependencies:
+ "@babel/helper-create-class-features-plugin" "^7.22.5"
+ "@babel/helper-plugin-utils" "^7.22.5"
+
+"@babel/plugin-transform-class-static-block@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.22.5.tgz#3e40c46f048403472d6f4183116d5e46b1bff5ba"
+ integrity sha512-SPToJ5eYZLxlnp1UzdARpOGeC2GbHvr9d/UV0EukuVx8atktg194oe+C5BqQ8jRTkgLRVOPYeXRSBg1IlMoVRA==
+ dependencies:
+ "@babel/helper-create-class-features-plugin" "^7.22.5"
+ "@babel/helper-plugin-utils" "^7.22.5"
+ "@babel/plugin-syntax-class-static-block" "^7.14.5"
+
+"@babel/plugin-transform-classes@^7.22.6":
+ version "7.22.6"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.22.6.tgz#e04d7d804ed5b8501311293d1a0e6d43e94c3363"
+ integrity sha512-58EgM6nuPNG6Py4Z3zSuu0xWu2VfodiMi72Jt5Kj2FECmaYk1RrTXA45z6KBFsu9tRgwQDwIiY4FXTt+YsSFAQ==
+ dependencies:
+ "@babel/helper-annotate-as-pure" "^7.22.5"
+ "@babel/helper-compilation-targets" "^7.22.6"
+ "@babel/helper-environment-visitor" "^7.22.5"
+ "@babel/helper-function-name" "^7.22.5"
+ "@babel/helper-optimise-call-expression" "^7.22.5"
+ "@babel/helper-plugin-utils" "^7.22.5"
+ "@babel/helper-replace-supers" "^7.22.5"
+ "@babel/helper-split-export-declaration" "^7.22.6"
+ globals "^11.1.0"
+
+"@babel/plugin-transform-computed-properties@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.22.5.tgz#cd1e994bf9f316bd1c2dafcd02063ec261bb3869"
+ integrity sha512-4GHWBgRf0krxPX+AaPtgBAlTgTeZmqDynokHOX7aqqAB4tHs3U2Y02zH6ETFdLZGcg9UQSD1WCmkVrE9ErHeOg==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.22.5"
+ "@babel/template" "^7.22.5"
+
+"@babel/plugin-transform-destructuring@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.22.5.tgz#d3aca7438f6c26c78cdd0b0ba920a336001b27cc"
+ integrity sha512-GfqcFuGW8vnEqTUBM7UtPd5A4q797LTvvwKxXTgRsFjoqaJiEg9deBG6kWeQYkVEL569NpnmpC0Pkr/8BLKGnQ==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.22.5"
+
+"@babel/plugin-transform-dotall-regex@^7.22.5", "@babel/plugin-transform-dotall-regex@^7.4.4":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.22.5.tgz#dbb4f0e45766eb544e193fb00e65a1dd3b2a4165"
+ integrity sha512-5/Yk9QxCQCl+sOIB1WelKnVRxTJDSAIxtJLL2/pqL14ZVlbH0fUQUZa/T5/UnQtBNgghR7mfB8ERBKyKPCi7Vw==
+ dependencies:
+ "@babel/helper-create-regexp-features-plugin" "^7.22.5"
+ "@babel/helper-plugin-utils" "^7.22.5"
+
+"@babel/plugin-transform-duplicate-keys@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.22.5.tgz#b6e6428d9416f5f0bba19c70d1e6e7e0b88ab285"
+ integrity sha512-dEnYD+9BBgld5VBXHnF/DbYGp3fqGMsyxKbtD1mDyIA7AkTSpKXFhCVuj/oQVOoALfBs77DudA0BE4d5mcpmqw==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.22.5"
+
+"@babel/plugin-transform-dynamic-import@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.22.5.tgz#d6908a8916a810468c4edff73b5b75bda6ad393e"
+ integrity sha512-0MC3ppTB1AMxd8fXjSrbPa7LT9hrImt+/fcj+Pg5YMD7UQyWp/02+JWpdnCymmsXwIx5Z+sYn1bwCn4ZJNvhqQ==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.22.5"
+ "@babel/plugin-syntax-dynamic-import" "^7.8.3"
+
+"@babel/plugin-transform-exponentiation-operator@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.22.5.tgz#402432ad544a1f9a480da865fda26be653e48f6a"
+ integrity sha512-vIpJFNM/FjZ4rh1myqIya9jXwrwwgFRHPjT3DkUA9ZLHuzox8jiXkOLvwm1H+PQIP3CqfC++WPKeuDi0Sjdj1g==
+ dependencies:
+ "@babel/helper-builder-binary-assignment-operator-visitor" "^7.22.5"
+ "@babel/helper-plugin-utils" "^7.22.5"
+
+"@babel/plugin-transform-export-namespace-from@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.22.5.tgz#57c41cb1d0613d22f548fddd8b288eedb9973a5b"
+ integrity sha512-X4hhm7FRnPgd4nDA4b/5V280xCx6oL7Oob5+9qVS5C13Zq4bh1qq7LU0GgRU6b5dBWBvhGaXYVB4AcN6+ol6vg==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.22.5"
+ "@babel/plugin-syntax-export-namespace-from" "^7.8.3"
+
+"@babel/plugin-transform-for-of@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.22.5.tgz#ab1b8a200a8f990137aff9a084f8de4099ab173f"
+ integrity sha512-3kxQjX1dU9uudwSshyLeEipvrLjBCVthCgeTp6CzE/9JYrlAIaeekVxRpCWsDDfYTfRZRoCeZatCQvwo+wvK8A==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.22.5"
+
+"@babel/plugin-transform-function-name@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.22.5.tgz#935189af68b01898e0d6d99658db6b164205c143"
+ integrity sha512-UIzQNMS0p0HHiQm3oelztj+ECwFnj+ZRV4KnguvlsD2of1whUeM6o7wGNj6oLwcDoAXQ8gEqfgC24D+VdIcevg==
+ dependencies:
+ "@babel/helper-compilation-targets" "^7.22.5"
+ "@babel/helper-function-name" "^7.22.5"
+ "@babel/helper-plugin-utils" "^7.22.5"
+
+"@babel/plugin-transform-json-strings@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.22.5.tgz#14b64352fdf7e1f737eed68de1a1468bd2a77ec0"
+ integrity sha512-DuCRB7fu8MyTLbEQd1ew3R85nx/88yMoqo2uPSjevMj3yoN7CDM8jkgrY0wmVxfJZyJ/B9fE1iq7EQppWQmR5A==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.22.5"
+ "@babel/plugin-syntax-json-strings" "^7.8.3"
+
+"@babel/plugin-transform-literals@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.22.5.tgz#e9341f4b5a167952576e23db8d435849b1dd7920"
+ integrity sha512-fTLj4D79M+mepcw3dgFBTIDYpbcB9Sm0bpm4ppXPaO+U+PKFFyV9MGRvS0gvGw62sd10kT5lRMKXAADb9pWy8g==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.22.5"
+
+"@babel/plugin-transform-logical-assignment-operators@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.22.5.tgz#66ae5f068fd5a9a5dc570df16f56c2a8462a9d6c"
+ integrity sha512-MQQOUW1KL8X0cDWfbwYP+TbVbZm16QmQXJQ+vndPtH/BoO0lOKpVoEDMI7+PskYxH+IiE0tS8xZye0qr1lGzSA==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.22.5"
+ "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4"
+
+"@babel/plugin-transform-member-expression-literals@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.22.5.tgz#4fcc9050eded981a468347dd374539ed3e058def"
+ integrity sha512-RZEdkNtzzYCFl9SE9ATaUMTj2hqMb4StarOJLrZRbqqU4HSBE7UlBw9WBWQiDzrJZJdUWiMTVDI6Gv/8DPvfew==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.22.5"
+
+"@babel/plugin-transform-modules-amd@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.22.5.tgz#4e045f55dcf98afd00f85691a68fc0780704f526"
+ integrity sha512-R+PTfLTcYEmb1+kK7FNkhQ1gP4KgjpSO6HfH9+f8/yfp2Nt3ggBjiVpRwmwTlfqZLafYKJACy36yDXlEmI9HjQ==
+ dependencies:
+ "@babel/helper-module-transforms" "^7.22.5"
+ "@babel/helper-plugin-utils" "^7.22.5"
+
+"@babel/plugin-transform-modules-commonjs@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.22.5.tgz#7d9875908d19b8c0536085af7b053fd5bd651bfa"
+ integrity sha512-B4pzOXj+ONRmuaQTg05b3y/4DuFz3WcCNAXPLb2Q0GT0TrGKGxNKV4jwsXts+StaM0LQczZbOpj8o1DLPDJIiA==
+ dependencies:
+ "@babel/helper-module-transforms" "^7.22.5"
+ "@babel/helper-plugin-utils" "^7.22.5"
+ "@babel/helper-simple-access" "^7.22.5"
+
+"@babel/plugin-transform-modules-systemjs@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.22.5.tgz#18c31410b5e579a0092638f95c896c2a98a5d496"
+ integrity sha512-emtEpoaTMsOs6Tzz+nbmcePl6AKVtS1yC4YNAeMun9U8YCsgadPNxnOPQ8GhHFB2qdx+LZu9LgoC0Lthuu05DQ==
+ dependencies:
+ "@babel/helper-hoist-variables" "^7.22.5"
+ "@babel/helper-module-transforms" "^7.22.5"
+ "@babel/helper-plugin-utils" "^7.22.5"
+ "@babel/helper-validator-identifier" "^7.22.5"
+
+"@babel/plugin-transform-modules-umd@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.22.5.tgz#4694ae40a87b1745e3775b6a7fe96400315d4f98"
+ integrity sha512-+S6kzefN/E1vkSsKx8kmQuqeQsvCKCd1fraCM7zXm4SFoggI099Tr4G8U81+5gtMdUeMQ4ipdQffbKLX0/7dBQ==
+ dependencies:
+ "@babel/helper-module-transforms" "^7.22.5"
+ "@babel/helper-plugin-utils" "^7.22.5"
+
+"@babel/plugin-transform-named-capturing-groups-regex@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.22.5.tgz#67fe18ee8ce02d57c855185e27e3dc959b2e991f"
+ integrity sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ==
+ dependencies:
+ "@babel/helper-create-regexp-features-plugin" "^7.22.5"
+ "@babel/helper-plugin-utils" "^7.22.5"
+
+"@babel/plugin-transform-new-target@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.22.5.tgz#1b248acea54ce44ea06dfd37247ba089fcf9758d"
+ integrity sha512-AsF7K0Fx/cNKVyk3a+DW0JLo+Ua598/NxMRvxDnkpCIGFh43+h/v2xyhRUYf6oD8gE4QtL83C7zZVghMjHd+iw==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.22.5"
+
+"@babel/plugin-transform-nullish-coalescing-operator@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.22.5.tgz#f8872c65776e0b552e0849d7596cddd416c3e381"
+ integrity sha512-6CF8g6z1dNYZ/VXok5uYkkBBICHZPiGEl7oDnAx2Mt1hlHVHOSIKWJaXHjQJA5VB43KZnXZDIexMchY4y2PGdA==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.22.5"
+ "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3"
+
+"@babel/plugin-transform-numeric-separator@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.22.5.tgz#57226a2ed9e512b9b446517ab6fa2d17abb83f58"
+ integrity sha512-NbslED1/6M+sXiwwtcAB/nieypGw02Ejf4KtDeMkCEpP6gWFMX1wI9WKYua+4oBneCCEmulOkRpwywypVZzs/g==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.22.5"
+ "@babel/plugin-syntax-numeric-separator" "^7.10.4"
+
+"@babel/plugin-transform-object-rest-spread@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.22.5.tgz#9686dc3447df4753b0b2a2fae7e8bc33cdc1f2e1"
+ integrity sha512-Kk3lyDmEslH9DnvCDA1s1kkd3YWQITiBOHngOtDL9Pt6BZjzqb6hiOlb8VfjiiQJ2unmegBqZu0rx5RxJb5vmQ==
+ dependencies:
+ "@babel/compat-data" "^7.22.5"
+ "@babel/helper-compilation-targets" "^7.22.5"
+ "@babel/helper-plugin-utils" "^7.22.5"
+ "@babel/plugin-syntax-object-rest-spread" "^7.8.3"
+ "@babel/plugin-transform-parameters" "^7.22.5"
+
+"@babel/plugin-transform-object-super@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.22.5.tgz#794a8d2fcb5d0835af722173c1a9d704f44e218c"
+ integrity sha512-klXqyaT9trSjIUrcsYIfETAzmOEZL3cBYqOYLJxBHfMFFggmXOv+NYSX/Jbs9mzMVESw/WycLFPRx8ba/b2Ipw==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.22.5"
+ "@babel/helper-replace-supers" "^7.22.5"
+
+"@babel/plugin-transform-optional-catch-binding@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.22.5.tgz#842080be3076703be0eaf32ead6ac8174edee333"
+ integrity sha512-pH8orJahy+hzZje5b8e2QIlBWQvGpelS76C63Z+jhZKsmzfNaPQ+LaW6dcJ9bxTpo1mtXbgHwy765Ro3jftmUg==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.22.5"
+ "@babel/plugin-syntax-optional-catch-binding" "^7.8.3"
+
+"@babel/plugin-transform-optional-chaining@^7.22.5", "@babel/plugin-transform-optional-chaining@^7.22.6":
+ version "7.22.6"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.22.6.tgz#4bacfe37001fe1901117672875e931d439811564"
+ integrity sha512-Vd5HiWml0mDVtcLHIoEU5sw6HOUW/Zk0acLs/SAeuLzkGNOPc9DB4nkUajemhCmTIz3eiaKREZn2hQQqF79YTg==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.22.5"
+ "@babel/helper-skip-transparent-expression-wrappers" "^7.22.5"
+ "@babel/plugin-syntax-optional-chaining" "^7.8.3"
+
+"@babel/plugin-transform-parameters@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.22.5.tgz#c3542dd3c39b42c8069936e48717a8d179d63a18"
+ integrity sha512-AVkFUBurORBREOmHRKo06FjHYgjrabpdqRSwq6+C7R5iTCZOsM4QbcB27St0a4U6fffyAOqh3s/qEfybAhfivg==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.22.5"
+
+"@babel/plugin-transform-private-methods@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.22.5.tgz#21c8af791f76674420a147ae62e9935d790f8722"
+ integrity sha512-PPjh4gyrQnGe97JTalgRGMuU4icsZFnWkzicB/fUtzlKUqvsWBKEpPPfr5a2JiyirZkHxnAqkQMO5Z5B2kK3fA==
+ dependencies:
+ "@babel/helper-create-class-features-plugin" "^7.22.5"
+ "@babel/helper-plugin-utils" "^7.22.5"
+
+"@babel/plugin-transform-private-property-in-object@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.22.5.tgz#07a77f28cbb251546a43d175a1dda4cf3ef83e32"
+ integrity sha512-/9xnaTTJcVoBtSSmrVyhtSvO3kbqS2ODoh2juEU72c3aYonNF0OMGiaz2gjukyKM2wBBYJP38S4JiE0Wfb5VMQ==
+ dependencies:
+ "@babel/helper-annotate-as-pure" "^7.22.5"
+ "@babel/helper-create-class-features-plugin" "^7.22.5"
+ "@babel/helper-plugin-utils" "^7.22.5"
+ "@babel/plugin-syntax-private-property-in-object" "^7.14.5"
+
+"@babel/plugin-transform-property-literals@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.22.5.tgz#b5ddabd73a4f7f26cd0e20f5db48290b88732766"
+ integrity sha512-TiOArgddK3mK/x1Qwf5hay2pxI6wCZnvQqrFSqbtg1GLl2JcNMitVH/YnqjP+M31pLUeTfzY1HAXFDnUBV30rQ==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.22.5"
+
+"@babel/plugin-transform-regenerator@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.22.5.tgz#cd8a68b228a5f75fa01420e8cc2fc400f0fc32aa"
+ integrity sha512-rR7KePOE7gfEtNTh9Qw+iO3Q/e4DEsoQ+hdvM6QUDH7JRJ5qxq5AA52ZzBWbI5i9lfNuvySgOGP8ZN7LAmaiPw==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.22.5"
+ regenerator-transform "^0.15.1"
+
+"@babel/plugin-transform-reserved-words@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.22.5.tgz#832cd35b81c287c4bcd09ce03e22199641f964fb"
+ integrity sha512-DTtGKFRQUDm8svigJzZHzb/2xatPc6TzNvAIJ5GqOKDsGFYgAskjRulbR/vGsPKq3OPqtexnz327qYpP57RFyA==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.22.5"
+
+"@babel/plugin-transform-shorthand-properties@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.22.5.tgz#6e277654be82b5559fc4b9f58088507c24f0c624"
+ integrity sha512-vM4fq9IXHscXVKzDv5itkO1X52SmdFBFcMIBZ2FRn2nqVYqw6dBexUgMvAjHW+KXpPPViD/Yo3GrDEBaRC0QYA==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.22.5"
+
+"@babel/plugin-transform-spread@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.22.5.tgz#6487fd29f229c95e284ba6c98d65eafb893fea6b"
+ integrity sha512-5ZzDQIGyvN4w8+dMmpohL6MBo+l2G7tfC/O2Dg7/hjpgeWvUx8FzfeOKxGog9IimPa4YekaQ9PlDqTLOljkcxg==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.22.5"
+ "@babel/helper-skip-transparent-expression-wrappers" "^7.22.5"
+
+"@babel/plugin-transform-sticky-regex@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.22.5.tgz#295aba1595bfc8197abd02eae5fc288c0deb26aa"
+ integrity sha512-zf7LuNpHG0iEeiyCNwX4j3gDg1jgt1k3ZdXBKbZSoA3BbGQGvMiSvfbZRR3Dr3aeJe3ooWFZxOOG3IRStYp2Bw==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.22.5"
+
+"@babel/plugin-transform-template-literals@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.22.5.tgz#8f38cf291e5f7a8e60e9f733193f0bcc10909bff"
+ integrity sha512-5ciOehRNf+EyUeewo8NkbQiUs4d6ZxiHo6BcBcnFlgiJfu16q0bQUw9Jvo0b0gBKFG1SMhDSjeKXSYuJLeFSMA==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.22.5"
+
+"@babel/plugin-transform-typeof-symbol@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.22.5.tgz#5e2ba478da4b603af8673ff7c54f75a97b716b34"
+ integrity sha512-bYkI5lMzL4kPii4HHEEChkD0rkc+nvnlR6+o/qdqR6zrm0Sv/nodmyLhlq2DO0YKLUNd2VePmPRjJXSBh9OIdA==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.22.5"
+
+"@babel/plugin-transform-unicode-escapes@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.22.5.tgz#ce0c248522b1cb22c7c992d88301a5ead70e806c"
+ integrity sha512-biEmVg1IYB/raUO5wT1tgfacCef15Fbzhkx493D3urBI++6hpJ+RFG4SrWMn0NEZLfvilqKf3QDrRVZHo08FYg==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.22.5"
+
+"@babel/plugin-transform-unicode-property-regex@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.22.5.tgz#098898f74d5c1e86660dc112057b2d11227f1c81"
+ integrity sha512-HCCIb+CbJIAE6sXn5CjFQXMwkCClcOfPCzTlilJ8cUatfzwHlWQkbtV0zD338u9dZskwvuOYTuuaMaA8J5EI5A==
+ dependencies:
+ "@babel/helper-create-regexp-features-plugin" "^7.22.5"
+ "@babel/helper-plugin-utils" "^7.22.5"
+
+"@babel/plugin-transform-unicode-regex@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.22.5.tgz#ce7e7bb3ef208c4ff67e02a22816656256d7a183"
+ integrity sha512-028laaOKptN5vHJf9/Arr/HiJekMd41hOEZYvNsrsXqJ7YPYuX2bQxh31fkZzGmq3YqHRJzYFFAVYvKfMPKqyg==
+ dependencies:
+ "@babel/helper-create-regexp-features-plugin" "^7.22.5"
+ "@babel/helper-plugin-utils" "^7.22.5"
+
+"@babel/plugin-transform-unicode-sets-regex@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.22.5.tgz#77788060e511b708ffc7d42fdfbc5b37c3004e91"
+ integrity sha512-lhMfi4FC15j13eKrh3DnYHjpGj6UKQHtNKTbtc1igvAhRy4+kLhV07OpLcsN0VgDEw/MjAvJO4BdMJsHwMhzCg==
+ dependencies:
+ "@babel/helper-create-regexp-features-plugin" "^7.22.5"
+ "@babel/helper-plugin-utils" "^7.22.5"
+
+"@babel/preset-env@^7.22.9":
+ version "7.22.9"
+ resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.22.9.tgz#57f17108eb5dfd4c5c25a44c1977eba1df310ac7"
+ integrity sha512-wNi5H/Emkhll/bqPjsjQorSykrlfY5OWakd6AulLvMEytpKasMVUpVy8RL4qBIBs5Ac6/5i0/Rv0b/Fg6Eag/g==
+ dependencies:
+ "@babel/compat-data" "^7.22.9"
+ "@babel/helper-compilation-targets" "^7.22.9"
+ "@babel/helper-plugin-utils" "^7.22.5"
+ "@babel/helper-validator-option" "^7.22.5"
+ "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression" "^7.22.5"
+ "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining" "^7.22.5"
+ "@babel/plugin-proposal-private-property-in-object" "7.21.0-placeholder-for-preset-env.2"
+ "@babel/plugin-syntax-async-generators" "^7.8.4"
+ "@babel/plugin-syntax-class-properties" "^7.12.13"
+ "@babel/plugin-syntax-class-static-block" "^7.14.5"
+ "@babel/plugin-syntax-dynamic-import" "^7.8.3"
+ "@babel/plugin-syntax-export-namespace-from" "^7.8.3"
+ "@babel/plugin-syntax-import-assertions" "^7.22.5"
+ "@babel/plugin-syntax-import-attributes" "^7.22.5"
+ "@babel/plugin-syntax-import-meta" "^7.10.4"
+ "@babel/plugin-syntax-json-strings" "^7.8.3"
+ "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4"
+ "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3"
+ "@babel/plugin-syntax-numeric-separator" "^7.10.4"
+ "@babel/plugin-syntax-object-rest-spread" "^7.8.3"
+ "@babel/plugin-syntax-optional-catch-binding" "^7.8.3"
+ "@babel/plugin-syntax-optional-chaining" "^7.8.3"
+ "@babel/plugin-syntax-private-property-in-object" "^7.14.5"
+ "@babel/plugin-syntax-top-level-await" "^7.14.5"
+ "@babel/plugin-syntax-unicode-sets-regex" "^7.18.6"
+ "@babel/plugin-transform-arrow-functions" "^7.22.5"
+ "@babel/plugin-transform-async-generator-functions" "^7.22.7"
+ "@babel/plugin-transform-async-to-generator" "^7.22.5"
+ "@babel/plugin-transform-block-scoped-functions" "^7.22.5"
+ "@babel/plugin-transform-block-scoping" "^7.22.5"
+ "@babel/plugin-transform-class-properties" "^7.22.5"
+ "@babel/plugin-transform-class-static-block" "^7.22.5"
+ "@babel/plugin-transform-classes" "^7.22.6"
+ "@babel/plugin-transform-computed-properties" "^7.22.5"
+ "@babel/plugin-transform-destructuring" "^7.22.5"
+ "@babel/plugin-transform-dotall-regex" "^7.22.5"
+ "@babel/plugin-transform-duplicate-keys" "^7.22.5"
+ "@babel/plugin-transform-dynamic-import" "^7.22.5"
+ "@babel/plugin-transform-exponentiation-operator" "^7.22.5"
+ "@babel/plugin-transform-export-namespace-from" "^7.22.5"
+ "@babel/plugin-transform-for-of" "^7.22.5"
+ "@babel/plugin-transform-function-name" "^7.22.5"
+ "@babel/plugin-transform-json-strings" "^7.22.5"
+ "@babel/plugin-transform-literals" "^7.22.5"
+ "@babel/plugin-transform-logical-assignment-operators" "^7.22.5"
+ "@babel/plugin-transform-member-expression-literals" "^7.22.5"
+ "@babel/plugin-transform-modules-amd" "^7.22.5"
+ "@babel/plugin-transform-modules-commonjs" "^7.22.5"
+ "@babel/plugin-transform-modules-systemjs" "^7.22.5"
+ "@babel/plugin-transform-modules-umd" "^7.22.5"
+ "@babel/plugin-transform-named-capturing-groups-regex" "^7.22.5"
+ "@babel/plugin-transform-new-target" "^7.22.5"
+ "@babel/plugin-transform-nullish-coalescing-operator" "^7.22.5"
+ "@babel/plugin-transform-numeric-separator" "^7.22.5"
+ "@babel/plugin-transform-object-rest-spread" "^7.22.5"
+ "@babel/plugin-transform-object-super" "^7.22.5"
+ "@babel/plugin-transform-optional-catch-binding" "^7.22.5"
+ "@babel/plugin-transform-optional-chaining" "^7.22.6"
+ "@babel/plugin-transform-parameters" "^7.22.5"
+ "@babel/plugin-transform-private-methods" "^7.22.5"
+ "@babel/plugin-transform-private-property-in-object" "^7.22.5"
+ "@babel/plugin-transform-property-literals" "^7.22.5"
+ "@babel/plugin-transform-regenerator" "^7.22.5"
+ "@babel/plugin-transform-reserved-words" "^7.22.5"
+ "@babel/plugin-transform-shorthand-properties" "^7.22.5"
+ "@babel/plugin-transform-spread" "^7.22.5"
+ "@babel/plugin-transform-sticky-regex" "^7.22.5"
+ "@babel/plugin-transform-template-literals" "^7.22.5"
+ "@babel/plugin-transform-typeof-symbol" "^7.22.5"
+ "@babel/plugin-transform-unicode-escapes" "^7.22.5"
+ "@babel/plugin-transform-unicode-property-regex" "^7.22.5"
+ "@babel/plugin-transform-unicode-regex" "^7.22.5"
+ "@babel/plugin-transform-unicode-sets-regex" "^7.22.5"
+ "@babel/preset-modules" "^0.1.5"
+ "@babel/types" "^7.22.5"
+ babel-plugin-polyfill-corejs2 "^0.4.4"
+ babel-plugin-polyfill-corejs3 "^0.8.2"
+ babel-plugin-polyfill-regenerator "^0.5.1"
+ core-js-compat "^3.31.0"
+ semver "^6.3.1"
+
+"@babel/preset-modules@^0.1.5":
+ version "0.1.6"
+ resolved "https://registry.yarnpkg.com/@babel/preset-modules/-/preset-modules-0.1.6.tgz#31bcdd8f19538437339d17af00d177d854d9d458"
+ integrity sha512-ID2yj6K/4lKfhuU3+EX4UvNbIt7eACFbHmNUjzA+ep+B5971CknnA/9DEWKbRokfbbtblxxxXFJJrH47UEAMVg==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.0.0"
+ "@babel/plugin-proposal-unicode-property-regex" "^7.4.4"
+ "@babel/plugin-transform-dotall-regex" "^7.4.4"
+ "@babel/types" "^7.4.4"
+ esutils "^2.0.2"
+
+"@babel/register@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/register/-/register-7.22.5.tgz#e4d8d0f615ea3233a27b5c6ada6750ee59559939"
+ integrity sha512-vV6pm/4CijSQ8Y47RH5SopXzursN35RQINfGJkmOlcpAtGuf94miFvIPhCKGQN7WGIcsgG1BHEX2KVdTYwTwUQ==
+ dependencies:
+ clone-deep "^4.0.1"
+ find-cache-dir "^2.0.0"
+ make-dir "^2.1.0"
+ pirates "^4.0.5"
+ source-map-support "^0.5.16"
+
+"@babel/regjsgen@^0.8.0":
+ version "0.8.0"
+ resolved "https://registry.yarnpkg.com/@babel/regjsgen/-/regjsgen-0.8.0.tgz#f0ba69b075e1f05fb2825b7fad991e7adbb18310"
+ integrity sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==
+
+"@babel/runtime@^7.8.4":
+ version "7.22.6"
+ resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.22.6.tgz#57d64b9ae3cff1d67eb067ae117dac087f5bd438"
+ integrity sha512-wDb5pWm4WDdF6LFUde3Jl8WzPA+3ZbxYqkC6xAXuD3irdEHN1k0NfTRrJD8ZD378SJ61miMLCqIOXYhd8x+AJQ==
+ dependencies:
+ regenerator-runtime "^0.13.11"
+
+"@babel/template@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.22.5.tgz#0c8c4d944509875849bd0344ff0050756eefc6ec"
+ integrity sha512-X7yV7eiwAxdj9k94NEylvbVHLiVG1nvzCV2EAowhxLTwODV1jl9UzZ48leOC0sH7OnuHrIkllaBgneUykIcZaw==
+ dependencies:
+ "@babel/code-frame" "^7.22.5"
+ "@babel/parser" "^7.22.5"
+ "@babel/types" "^7.22.5"
+
+"@babel/traverse@^7.22.6", "@babel/traverse@^7.22.8":
+ version "7.22.8"
+ resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.22.8.tgz#4d4451d31bc34efeae01eac222b514a77aa4000e"
+ integrity sha512-y6LPR+wpM2I3qJrsheCTwhIinzkETbplIgPBbwvqPKc+uljeA5gP+3nP8irdYt1mjQaDnlIcG+dw8OjAco4GXw==
+ dependencies:
+ "@babel/code-frame" "^7.22.5"
+ "@babel/generator" "^7.22.7"
+ "@babel/helper-environment-visitor" "^7.22.5"
+ "@babel/helper-function-name" "^7.22.5"
+ "@babel/helper-hoist-variables" "^7.22.5"
+ "@babel/helper-split-export-declaration" "^7.22.6"
+ "@babel/parser" "^7.22.7"
+ "@babel/types" "^7.22.5"
+ debug "^4.1.0"
+ globals "^11.1.0"
+
+"@babel/types@^7.22.5", "@babel/types@^7.4.4":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.22.5.tgz#cd93eeaab025880a3a47ec881f4b096a5b786fbe"
+ integrity sha512-zo3MIHGOkPOfoRXitsgHLjEXmlDaD/5KU1Uzuc9GNiZPhSqVxVRtxuPaSBZDsYZ9qV88AjtMtWW7ww98loJ9KA==
+ dependencies:
+ "@babel/helper-string-parser" "^7.22.5"
+ "@babel/helper-validator-identifier" "^7.22.5"
+ to-fast-properties "^2.0.0"
+
+"@jridgewell/gen-mapping@^0.3.0", "@jridgewell/gen-mapping@^0.3.2":
+ version "0.3.3"
+ resolved "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz#7e02e6eb5df901aaedb08514203b096614024098"
+ integrity sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==
+ dependencies:
+ "@jridgewell/set-array" "^1.0.1"
+ "@jridgewell/sourcemap-codec" "^1.4.10"
+ "@jridgewell/trace-mapping" "^0.3.9"
+
+"@jridgewell/resolve-uri@3.1.0":
+ version "3.1.0"
+ resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz#2203b118c157721addfe69d47b70465463066d78"
+ integrity sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==
+
+"@jridgewell/set-array@^1.0.1":
+ version "1.1.2"
+ resolved "https://registry.yarnpkg.com/@jridgewell/set-array/-/set-array-1.1.2.tgz#7c6cf998d6d20b914c0a55a91ae928ff25965e72"
+ integrity sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==
+
+"@jridgewell/sourcemap-codec@1.4.14":
+ version "1.4.14"
+ resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz#add4c98d341472a289190b424efbdb096991bb24"
+ integrity sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==
+
+"@jridgewell/sourcemap-codec@^1.4.10":
+ version "1.4.15"
+ resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz#d7c6e6755c78567a951e04ab52ef0fd26de59f32"
+ integrity sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==
+
+"@jridgewell/trace-mapping@^0.3.17", "@jridgewell/trace-mapping@^0.3.9":
+ version "0.3.18"
+ resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.18.tgz#25783b2086daf6ff1dcb53c9249ae480e4dd4cd6"
+ integrity sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA==
+ dependencies:
+ "@jridgewell/resolve-uri" "3.1.0"
+ "@jridgewell/sourcemap-codec" "1.4.14"
+
ansi-regex@^2.0.0:
version "2.1.1"
resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df"
@@ -12,6 +1013,21 @@ ansi-regex@^3.0.0:
resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998"
integrity sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=
+ansi-styles@^3.2.1:
+ version "3.2.1"
+ resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d"
+ integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==
+ dependencies:
+ color-convert "^1.9.0"
+
+array-buffer-byte-length@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/array-buffer-byte-length/-/array-buffer-byte-length-1.0.0.tgz#fabe8bc193fea865f317fe7807085ee0dee5aead"
+ integrity sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==
+ dependencies:
+ call-bind "^1.0.2"
+ is-array-buffer "^3.0.1"
+
array-includes@^3.0.3:
version "3.0.3"
resolved "https://registry.yarnpkg.com/array-includes/-/array-includes-3.0.3.tgz#184b48f62d92d7452bb31b323165c7f8bd02266d"
@@ -20,16 +1036,105 @@ array-includes@^3.0.3:
define-properties "^1.1.2"
es-abstract "^1.7.0"
+array.prototype.reduce@^1.0.5:
+ version "1.0.5"
+ resolved "https://registry.yarnpkg.com/array.prototype.reduce/-/array.prototype.reduce-1.0.5.tgz#6b20b0daa9d9734dd6bc7ea66b5bbce395471eac"
+ integrity sha512-kDdugMl7id9COE8R7MHF5jWk7Dqt/fs4Pv+JXoICnYwqpjjjbUurz6w5fT5IG6brLdJhv6/VoHB0H7oyIBXd+Q==
+ dependencies:
+ call-bind "^1.0.2"
+ define-properties "^1.1.4"
+ es-abstract "^1.20.4"
+ es-array-method-boxes-properly "^1.0.0"
+ is-string "^1.0.7"
+
+arraybuffer.prototype.slice@^1.0.1:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.1.tgz#9b5ea3868a6eebc30273da577eb888381c0044bb"
+ integrity sha512-09x0ZWFEjj4WD8PDbykUwo3t9arLn8NIzmmYEJFpYekOAQjpkGSyrQhNoRTcwwcFRu+ycWF78QZ63oWTqSjBcw==
+ dependencies:
+ array-buffer-byte-length "^1.0.0"
+ call-bind "^1.0.2"
+ define-properties "^1.2.0"
+ get-intrinsic "^1.2.1"
+ is-array-buffer "^3.0.2"
+ is-shared-array-buffer "^1.0.2"
+
asap@~2.0.3:
version "2.0.6"
resolved "https://registry.yarnpkg.com/asap/-/asap-2.0.6.tgz#e50347611d7e690943208bbdafebcbc2fb866d46"
integrity sha1-5QNHYR1+aQlDIIu9r+vLwvuGbUY=
+available-typed-arrays@^1.0.5:
+ version "1.0.5"
+ resolved "https://registry.yarnpkg.com/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz#92f95616501069d07d10edb2fc37d3e1c65123b7"
+ integrity sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==
+
+babel-plugin-polyfill-corejs2@^0.4.4:
+ version "0.4.5"
+ resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.5.tgz#8097b4cb4af5b64a1d11332b6fb72ef5e64a054c"
+ integrity sha512-19hwUH5FKl49JEsvyTcoHakh6BE0wgXLLptIyKZ3PijHc/Ci521wygORCUCCred+E/twuqRyAkE02BAWPmsHOg==
+ dependencies:
+ "@babel/compat-data" "^7.22.6"
+ "@babel/helper-define-polyfill-provider" "^0.4.2"
+ semver "^6.3.1"
+
+babel-plugin-polyfill-corejs3@^0.8.2:
+ version "0.8.3"
+ resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.8.3.tgz#b4f719d0ad9bb8e0c23e3e630c0c8ec6dd7a1c52"
+ integrity sha512-z41XaniZL26WLrvjy7soabMXrfPWARN25PZoriDEiLMxAp50AUW3t35BGQUMg5xK3UrpVTtagIDklxYa+MhiNA==
+ dependencies:
+ "@babel/helper-define-polyfill-provider" "^0.4.2"
+ core-js-compat "^3.31.0"
+
+babel-plugin-polyfill-regenerator@^0.5.1:
+ version "0.5.2"
+ resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.5.2.tgz#80d0f3e1098c080c8b5a65f41e9427af692dc326"
+ integrity sha512-tAlOptU0Xj34V1Y2PNTL4Y0FOJMDB6bZmoW39FeCQIhigGLkqu3Fj6uiXpxIf6Ij274ENdYx64y6Au+ZKlb1IA==
+ dependencies:
+ "@babel/helper-define-polyfill-provider" "^0.4.2"
+
+browserslist@^4.21.9:
+ version "4.21.9"
+ resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.21.9.tgz#e11bdd3c313d7e2a9e87e8b4b0c7872b13897635"
+ integrity sha512-M0MFoZzbUrRU4KNfCrDLnvyE7gub+peetoTid3TBIqtunaDJyXlwhakT+/VkvSXcfIzFfK/nkCs4nmyTmxdNSg==
+ dependencies:
+ caniuse-lite "^1.0.30001503"
+ electron-to-chromium "^1.4.431"
+ node-releases "^2.0.12"
+ update-browserslist-db "^1.0.11"
+
+buffer-from@^1.0.0:
+ version "1.1.2"
+ resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.2.tgz#2b146a6fd72e80b4f55d255f35ed59a3a9a41bd5"
+ integrity sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==
+
+call-bind@^1.0.0, call-bind@^1.0.2:
+ version "1.0.2"
+ resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.2.tgz#b1d4e89e688119c3c9a903ad30abb2f6a919be3c"
+ integrity sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==
+ dependencies:
+ function-bind "^1.1.1"
+ get-intrinsic "^1.0.2"
+
camelcase@^4.1.0:
version "4.1.0"
resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd"
integrity sha1-1UVjW+HjPFQmScaRc+Xeas+uNN0=
+caniuse-lite@^1.0.30001503:
+ version "1.0.30001517"
+ resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001517.tgz#90fabae294215c3495807eb24fc809e11dc2f0a8"
+ integrity sha512-Vdhm5S11DaFVLlyiKu4hiUTkpZu+y1KA/rZZqVQfOD5YdDT/eQKlkt7NaE0WGOFgX32diqt9MiP9CAiFeRklaA==
+
+chalk@^2.0.0:
+ version "2.4.2"
+ resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424"
+ integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==
+ dependencies:
+ ansi-styles "^3.2.1"
+ escape-string-regexp "^1.0.5"
+ supports-color "^5.3.0"
+
cliui@^3.2.0:
version "3.2.0"
resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d"
@@ -39,16 +1144,64 @@ cliui@^3.2.0:
strip-ansi "^3.0.1"
wrap-ansi "^2.0.0"
+clone-deep@^4.0.1:
+ version "4.0.1"
+ resolved "https://registry.yarnpkg.com/clone-deep/-/clone-deep-4.0.1.tgz#c19fd9bdbbf85942b4fd979c84dcf7d5f07c2387"
+ integrity sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==
+ dependencies:
+ is-plain-object "^2.0.4"
+ kind-of "^6.0.2"
+ shallow-clone "^3.0.0"
+
code-point-at@^1.0.0:
version "1.1.0"
resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77"
integrity sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c=
+color-convert@^1.9.0:
+ version "1.9.3"
+ resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8"
+ integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==
+ dependencies:
+ color-name "1.1.3"
+
+color-name@1.1.3:
+ version "1.1.3"
+ resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25"
+ integrity sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==
+
+commander@^4.0.1:
+ version "4.1.1"
+ resolved "https://registry.yarnpkg.com/commander/-/commander-4.1.1.tgz#9fd602bd936294e9e9ef46a3f4d6964044b18068"
+ integrity sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==
+
+commondir@^1.0.1:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b"
+ integrity sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==
+
+convert-source-map@^1.7.0:
+ version "1.9.0"
+ resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.9.0.tgz#7faae62353fb4213366d0ca98358d22e8368b05f"
+ integrity sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==
+
+core-js-compat@^3.31.0:
+ version "3.31.1"
+ resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.31.1.tgz#5084ad1a46858df50ff89ace152441a63ba7aae0"
+ integrity sha512-wIDWd2s5/5aJSdpOJHfSibxNODxoGoWOBHt8JSPB41NOE94M7kuTPZCYLOlTtuoXTsBPKobpJ6T+y0SSy5L9SA==
+ dependencies:
+ browserslist "^4.21.9"
+
core-js@^1.0.0:
version "1.2.7"
resolved "https://registry.yarnpkg.com/core-js/-/core-js-1.2.7.tgz#652294c14651db28fa93bd2d5ff2983a4f08c636"
integrity sha1-ZSKUwUZR2yj6k70tX/KYOk8IxjY=
+core-js@^3.30.2:
+ version "3.31.1"
+ resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.31.1.tgz#f2b0eea9be9da0def2c5fece71064a7e5d687653"
+ integrity sha512-2sKLtfq1eFST7l7v62zaqXacPc7uG8ZAya8ogijLhTtaKNcpzpB4TMoTw2Si+8GYKRwFPMMtUT0263QFWFfqyQ==
+
create-react-class@^15.6.0:
version "15.6.3"
resolved "https://registry.yarnpkg.com/create-react-class/-/create-react-class-15.6.3.tgz#2d73237fb3f970ae6ebe011a9e66f46dbca80036"
@@ -67,6 +1220,13 @@ cross-spawn@^5.0.1:
shebang-command "^1.2.0"
which "^1.2.9"
+debug@^4.1.0, debug@^4.1.1:
+ version "4.3.4"
+ resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865"
+ integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==
+ dependencies:
+ ms "2.1.2"
+
decamelize@^1.1.1:
version "1.2.0"
resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290"
@@ -79,6 +1239,14 @@ define-properties@^1.1.2, define-properties@^1.1.3:
dependencies:
object-keys "^1.0.12"
+define-properties@^1.1.4, define-properties@^1.2.0:
+ version "1.2.0"
+ resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.2.0.tgz#52988570670c9eacedd8064f4a990f2405849bd5"
+ integrity sha512-xvqAVKGfT1+UAvPwKTVw/njhdQ8ZhXK4lI0bCIuCMrp2up9nPnaDftrLtmpTazqd1o+UY4zgzU+avtMbDP+ldA==
+ dependencies:
+ has-property-descriptors "^1.0.0"
+ object-keys "^1.1.1"
+
doctrine@^2.1.0:
version "2.1.0"
resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.1.0.tgz#5cd01fc101621b42c4cd7f5d1a66243716d3f39d"
@@ -86,15 +1254,20 @@ doctrine@^2.1.0:
dependencies:
esutils "^2.0.2"
-emoji-datasource-apple@^4.0.4:
- version "4.1.0"
- resolved "https://registry.yarnpkg.com/emoji-datasource-apple/-/emoji-datasource-apple-4.1.0.tgz#e6725311b115144a32fb60043416a755fea30bf5"
- integrity sha1-5nJTEbEVFEoy+2AENBanVf6jC/U=
+electron-to-chromium@^1.4.431:
+ version "1.4.470"
+ resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.470.tgz#0e932816be8d5f2b491ad2aa449ea47db4785398"
+ integrity sha512-zZM48Lmy2FKWgqyvsX9XK+J6FfP7aCDUFLmgooLJzA7v1agCs/sxSoBpTIwDLhmbhpx9yJIxj2INig/ncjJRqg==
-emoji-datasource@^4.0.4:
- version "4.1.0"
- resolved "https://registry.yarnpkg.com/emoji-datasource/-/emoji-datasource-4.1.0.tgz#b44557f78a2dfac2f350393391b170a567ec28ad"
- integrity sha1-tEVX94ot+sLzUDkzkbFwpWfsKK0=
+emoji-datasource-apple@^15.0.1:
+ version "15.0.1"
+ resolved "https://registry.yarnpkg.com/emoji-datasource-apple/-/emoji-datasource-apple-15.0.1.tgz#c89026ae6b91f8825b7b624f51312f023faa2a45"
+ integrity sha512-8HAp6NHycqZ0yCzzngeUUJAwQ6OiwXHNH22NbVBSzDMbebaap9zP5//mlRbwqyOfweq7foGAcCvnNH/aEOcjWw==
+
+emoji-datasource@^15.0.1:
+ version "15.0.1"
+ resolved "https://registry.yarnpkg.com/emoji-datasource/-/emoji-datasource-15.0.1.tgz#6cc7676e4d48d7559c2e068ffcacf84ec653584c"
+ integrity sha512-aF5Q6LCKXzJzpG4K0ETiItuzz0xLYxNexR9qWw45/shuuEDWZkOIbeGHA23uopOSYA/LmeZIXIFsySCx+YKg2g==
encoding@^0.1.11:
version "0.1.12"
@@ -126,6 +1299,65 @@ es-abstract@^1.12.0, es-abstract@^1.15.0, es-abstract@^1.7.0:
string.prototype.trimleft "^2.1.0"
string.prototype.trimright "^2.1.0"
+es-abstract@^1.19.0, es-abstract@^1.20.4, es-abstract@^1.21.2:
+ version "1.22.1"
+ resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.22.1.tgz#8b4e5fc5cefd7f1660f0f8e1a52900dfbc9d9ccc"
+ integrity sha512-ioRRcXMO6OFyRpyzV3kE1IIBd4WG5/kltnzdxSCqoP8CMGs/Li+M1uF5o7lOkZVFjDs+NLesthnF66Pg/0q0Lw==
+ dependencies:
+ array-buffer-byte-length "^1.0.0"
+ arraybuffer.prototype.slice "^1.0.1"
+ available-typed-arrays "^1.0.5"
+ call-bind "^1.0.2"
+ es-set-tostringtag "^2.0.1"
+ es-to-primitive "^1.2.1"
+ function.prototype.name "^1.1.5"
+ get-intrinsic "^1.2.1"
+ get-symbol-description "^1.0.0"
+ globalthis "^1.0.3"
+ gopd "^1.0.1"
+ has "^1.0.3"
+ has-property-descriptors "^1.0.0"
+ has-proto "^1.0.1"
+ has-symbols "^1.0.3"
+ internal-slot "^1.0.5"
+ is-array-buffer "^3.0.2"
+ is-callable "^1.2.7"
+ is-negative-zero "^2.0.2"
+ is-regex "^1.1.4"
+ is-shared-array-buffer "^1.0.2"
+ is-string "^1.0.7"
+ is-typed-array "^1.1.10"
+ is-weakref "^1.0.2"
+ object-inspect "^1.12.3"
+ object-keys "^1.1.1"
+ object.assign "^4.1.4"
+ regexp.prototype.flags "^1.5.0"
+ safe-array-concat "^1.0.0"
+ safe-regex-test "^1.0.0"
+ string.prototype.trim "^1.2.7"
+ string.prototype.trimend "^1.0.6"
+ string.prototype.trimstart "^1.0.6"
+ typed-array-buffer "^1.0.0"
+ typed-array-byte-length "^1.0.0"
+ typed-array-byte-offset "^1.0.0"
+ typed-array-length "^1.0.4"
+ unbox-primitive "^1.0.2"
+ which-typed-array "^1.1.10"
+
+es-array-method-boxes-properly@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/es-array-method-boxes-properly/-/es-array-method-boxes-properly-1.0.0.tgz#873f3e84418de4ee19c5be752990b2e44718d09e"
+ integrity sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA==
+
+es-set-tostringtag@^2.0.1:
+ version "2.0.1"
+ resolved "https://registry.yarnpkg.com/es-set-tostringtag/-/es-set-tostringtag-2.0.1.tgz#338d502f6f674301d710b80c8592de8a15f09cd8"
+ integrity sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==
+ dependencies:
+ get-intrinsic "^1.1.3"
+ has "^1.0.3"
+ has-tostringtag "^1.0.0"
+
es-to-primitive@^1.2.0:
version "1.2.0"
resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.0.tgz#edf72478033456e8dda8ef09e00ad9650707f377"
@@ -135,6 +1367,25 @@ es-to-primitive@^1.2.0:
is-date-object "^1.0.1"
is-symbol "^1.0.2"
+es-to-primitive@^1.2.1:
+ version "1.2.1"
+ resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.1.tgz#e55cd4c9cdc188bcefb03b366c736323fc5c898a"
+ integrity sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==
+ dependencies:
+ is-callable "^1.1.4"
+ is-date-object "^1.0.1"
+ is-symbol "^1.0.2"
+
+escalade@^3.1.1:
+ version "3.1.1"
+ resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40"
+ integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==
+
+escape-string-regexp@^1.0.5:
+ version "1.0.5"
+ resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"
+ integrity sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==
+
eslint-plugin-react@^7.8.2:
version "7.16.0"
resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.16.0.tgz#9928e4f3e2122ed3ba6a5b56d0303ba3e41d8c09"
@@ -181,6 +1432,15 @@ fbjs@^0.8.9:
setimmediate "^1.0.5"
ua-parser-js "^0.7.18"
+find-cache-dir@^2.0.0:
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-2.1.0.tgz#8d0f94cd13fe43c6c7c261a0d86115ca918c05f7"
+ integrity sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==
+ dependencies:
+ commondir "^1.0.1"
+ make-dir "^2.0.0"
+ pkg-dir "^3.0.0"
+
find-up@^2.0.0:
version "2.1.0"
resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7"
@@ -188,36 +1448,141 @@ find-up@^2.0.0:
dependencies:
locate-path "^2.0.0"
+find-up@^3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/find-up/-/find-up-3.0.0.tgz#49169f1d7993430646da61ecc5ae355c21c97b73"
+ integrity sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==
+ dependencies:
+ locate-path "^3.0.0"
+
+for-each@^0.3.3:
+ version "0.3.3"
+ resolved "https://registry.yarnpkg.com/for-each/-/for-each-0.3.3.tgz#69b447e88a0a5d32c3e7084f3f1710034b21376e"
+ integrity sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==
+ dependencies:
+ is-callable "^1.1.3"
+
function-bind@^1.1.1:
version "1.1.1"
resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d"
integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==
+function.prototype.name@^1.1.5:
+ version "1.1.5"
+ resolved "https://registry.yarnpkg.com/function.prototype.name/-/function.prototype.name-1.1.5.tgz#cce0505fe1ffb80503e6f9e46cc64e46a12a9621"
+ integrity sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==
+ dependencies:
+ call-bind "^1.0.2"
+ define-properties "^1.1.3"
+ es-abstract "^1.19.0"
+ functions-have-names "^1.2.2"
+
+functions-have-names@^1.2.2, functions-have-names@^1.2.3:
+ version "1.2.3"
+ resolved "https://registry.yarnpkg.com/functions-have-names/-/functions-have-names-1.2.3.tgz#0404fe4ee2ba2f607f0e0ec3c80bae994133b834"
+ integrity sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==
+
fuse.js@^3.4.4:
version "3.4.5"
resolved "https://registry.yarnpkg.com/fuse.js/-/fuse.js-3.4.5.tgz#8954fb43f9729bd5dbcb8c08f251db552595a7a6"
integrity sha512-s9PGTaQIkT69HaeoTVjwGsLfb8V8ScJLx5XGFcKHg0MqLUH/UZ4EKOtqtXX9k7AFqCGxD1aJmYb8Q5VYDibVRQ==
+gensync@^1.0.0-beta.2:
+ version "1.0.0-beta.2"
+ resolved "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.2.tgz#32a6ee76c3d7f52d46b2b1ae5d93fea8580a25e0"
+ integrity sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==
+
get-caller-file@^1.0.1:
version "1.0.3"
resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.3.tgz#f978fa4c90d1dfe7ff2d6beda2a515e713bdcf4a"
integrity sha512-3t6rVToeoZfYSGd8YoLFR2DJkiQrIiUrGcjvFX2mDw3bn6k2OtwHN0TNCLbBO+w8qTvimhDkv+LSscbJY1vE6w==
+get-intrinsic@^1.0.2, get-intrinsic@^1.1.1, get-intrinsic@^1.1.3, get-intrinsic@^1.2.0, get-intrinsic@^1.2.1:
+ version "1.2.1"
+ resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.2.1.tgz#d295644fed4505fc9cde952c37ee12b477a83d82"
+ integrity sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw==
+ dependencies:
+ function-bind "^1.1.1"
+ has "^1.0.3"
+ has-proto "^1.0.1"
+ has-symbols "^1.0.3"
+
get-stream@^3.0.0:
version "3.0.0"
resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14"
integrity sha1-jpQ9E1jcN1VQVOy+LtsFqhdO3hQ=
+get-symbol-description@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/get-symbol-description/-/get-symbol-description-1.0.0.tgz#7fdb81c900101fbd564dd5f1a30af5aadc1e58d6"
+ integrity sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==
+ dependencies:
+ call-bind "^1.0.2"
+ get-intrinsic "^1.1.1"
+
+globals@^11.1.0:
+ version "11.12.0"
+ resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e"
+ integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==
+
+globalthis@^1.0.3:
+ version "1.0.3"
+ resolved "https://registry.yarnpkg.com/globalthis/-/globalthis-1.0.3.tgz#5852882a52b80dc301b0660273e1ed082f0b6ccf"
+ integrity sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==
+ dependencies:
+ define-properties "^1.1.3"
+
+gopd@^1.0.1:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/gopd/-/gopd-1.0.1.tgz#29ff76de69dac7489b7c0918a5788e56477c332c"
+ integrity sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==
+ dependencies:
+ get-intrinsic "^1.1.3"
+
graceful-fs@^4.1.2:
version "4.2.2"
resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.2.tgz#6f0952605d0140c1cfdb138ed005775b92d67b02"
integrity sha512-IItsdsea19BoLC7ELy13q1iJFNmd7ofZH5+X/pJr90/nRoPEX0DJo1dHDbgtYWOhJhcCgMDTOw84RZ72q6lB+Q==
+has-bigints@^1.0.1, has-bigints@^1.0.2:
+ version "1.0.2"
+ resolved "https://registry.yarnpkg.com/has-bigints/-/has-bigints-1.0.2.tgz#0871bd3e3d51626f6ca0966668ba35d5602d6eaa"
+ integrity sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==
+
+has-flag@^3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd"
+ integrity sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==
+
+has-property-descriptors@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz#610708600606d36961ed04c196193b6a607fa861"
+ integrity sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==
+ dependencies:
+ get-intrinsic "^1.1.1"
+
+has-proto@^1.0.1:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/has-proto/-/has-proto-1.0.1.tgz#1885c1305538958aff469fef37937c22795408e0"
+ integrity sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==
+
has-symbols@^1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.0.tgz#ba1a8f1af2a0fc39650f5c850367704122063b44"
integrity sha1-uhqPGvKg/DllD1yFA2dwQSIGO0Q=
+has-symbols@^1.0.2, has-symbols@^1.0.3:
+ version "1.0.3"
+ resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.3.tgz#bb7b2c4349251dce87b125f7bdf874aa7c8b39f8"
+ integrity sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==
+
+has-tostringtag@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/has-tostringtag/-/has-tostringtag-1.0.0.tgz#7e133818a7d394734f941e73c3d3f9291e658b25"
+ integrity sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==
+ dependencies:
+ has-symbols "^1.0.2"
+
has@^1.0.1, has@^1.0.3:
version "1.0.3"
resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796"
@@ -225,6 +1590,13 @@ has@^1.0.1, has@^1.0.3:
dependencies:
function-bind "^1.1.1"
+homedir-polyfill@^1.0.1:
+ version "1.0.3"
+ resolved "https://registry.yarnpkg.com/homedir-polyfill/-/homedir-polyfill-1.0.3.tgz#743298cef4e5af3e194161fbadcc2151d3a058e8"
+ integrity sha512-eSmmWE5bZTK2Nou4g0AI3zZ9rswp7GRKoKXS1BLUkvPviOqs4YTN1djQIqrXy9k5gEtdLPy86JjRwsNM9tnDcA==
+ dependencies:
+ parse-passwd "^1.0.0"
+
hosted-git-info@^2.1.4:
version "2.8.4"
resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.8.4.tgz#44119abaf4bc64692a16ace34700fed9c03e2546"
@@ -237,21 +1609,66 @@ iconv-lite@~0.4.13:
dependencies:
safer-buffer ">= 2.1.2 < 3"
+internal-slot@^1.0.5:
+ version "1.0.5"
+ resolved "https://registry.yarnpkg.com/internal-slot/-/internal-slot-1.0.5.tgz#f2a2ee21f668f8627a4667f309dc0f4fb6674986"
+ integrity sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ==
+ dependencies:
+ get-intrinsic "^1.2.0"
+ has "^1.0.3"
+ side-channel "^1.0.4"
+
invert-kv@^1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6"
integrity sha1-EEqOSqym09jNFXqO+L+rLXo//bY=
+is-array-buffer@^3.0.1, is-array-buffer@^3.0.2:
+ version "3.0.2"
+ resolved "https://registry.yarnpkg.com/is-array-buffer/-/is-array-buffer-3.0.2.tgz#f2653ced8412081638ecb0ebbd0c41c6e0aecbbe"
+ integrity sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==
+ dependencies:
+ call-bind "^1.0.2"
+ get-intrinsic "^1.2.0"
+ is-typed-array "^1.1.10"
+
is-arrayish@^0.2.1:
version "0.2.1"
resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d"
integrity sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=
+is-bigint@^1.0.1:
+ version "1.0.4"
+ resolved "https://registry.yarnpkg.com/is-bigint/-/is-bigint-1.0.4.tgz#08147a1875bc2b32005d41ccd8291dffc6691df3"
+ integrity sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==
+ dependencies:
+ has-bigints "^1.0.1"
+
+is-boolean-object@^1.1.0:
+ version "1.1.2"
+ resolved "https://registry.yarnpkg.com/is-boolean-object/-/is-boolean-object-1.1.2.tgz#5c6dc200246dd9321ae4b885a114bb1f75f63719"
+ integrity sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==
+ dependencies:
+ call-bind "^1.0.2"
+ has-tostringtag "^1.0.0"
+
+is-callable@^1.1.3, is-callable@^1.2.7:
+ version "1.2.7"
+ resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.7.tgz#3bc2a85ea742d9e36205dcacdd72ca1fdc51b055"
+ integrity sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==
+
is-callable@^1.1.4:
version "1.1.4"
resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.1.4.tgz#1e1adf219e1eeb684d691f9d6a05ff0d30a24d75"
integrity sha512-r5p9sxJjYnArLjObpjA4xu5EKI3CuKHkJXMhT7kwbpUyIFD1n5PMAsoPvWnvtZiNz7LjkYDRZhd7FlI0eMijEA==
+is-core-module@^2.11.0:
+ version "2.12.1"
+ resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.12.1.tgz#0c0b6885b6f80011c71541ce15c8d66cf5a4f9fd"
+ integrity sha512-Q4ZuBAe2FUsKtyQJoQHlvP8OvBERxO3jEmy1I7hcRXcJBGGHFh/aJBswbXuS9sgrDH2QUO8ilkwNPHvHMd8clg==
+ dependencies:
+ has "^1.0.3"
+
is-date-object@^1.0.1:
version "1.0.1"
resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.1.tgz#9aa20eb6aeebbff77fbd33e74ca01b33581d3a16"
@@ -269,6 +1686,25 @@ is-fullwidth-code-point@^2.0.0:
resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f"
integrity sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=
+is-negative-zero@^2.0.2:
+ version "2.0.2"
+ resolved "https://registry.yarnpkg.com/is-negative-zero/-/is-negative-zero-2.0.2.tgz#7bf6f03a28003b8b3965de3ac26f664d765f3150"
+ integrity sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==
+
+is-number-object@^1.0.4:
+ version "1.0.7"
+ resolved "https://registry.yarnpkg.com/is-number-object/-/is-number-object-1.0.7.tgz#59d50ada4c45251784e9904f5246c742f07a42fc"
+ integrity sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==
+ dependencies:
+ has-tostringtag "^1.0.0"
+
+is-plain-object@^2.0.4:
+ version "2.0.4"
+ resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677"
+ integrity sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==
+ dependencies:
+ isobject "^3.0.1"
+
is-regex@^1.0.4:
version "1.0.4"
resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.0.4.tgz#5517489b547091b0930e095654ced25ee97e9491"
@@ -276,11 +1712,33 @@ is-regex@^1.0.4:
dependencies:
has "^1.0.1"
+is-regex@^1.1.4:
+ version "1.1.4"
+ resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.4.tgz#eef5663cd59fa4c0ae339505323df6854bb15958"
+ integrity sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==
+ dependencies:
+ call-bind "^1.0.2"
+ has-tostringtag "^1.0.0"
+
+is-shared-array-buffer@^1.0.2:
+ version "1.0.2"
+ resolved "https://registry.yarnpkg.com/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz#8f259c573b60b6a32d4058a1a07430c0a7344c79"
+ integrity sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==
+ dependencies:
+ call-bind "^1.0.2"
+
is-stream@^1.0.1, is-stream@^1.1.0:
version "1.1.0"
resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44"
integrity sha1-EtSj3U5o4Lec6428hBc66A2RykQ=
+is-string@^1.0.5, is-string@^1.0.7:
+ version "1.0.7"
+ resolved "https://registry.yarnpkg.com/is-string/-/is-string-1.0.7.tgz#0dd12bf2006f255bb58f695110eff7491eebc0fd"
+ integrity sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==
+ dependencies:
+ has-tostringtag "^1.0.0"
+
is-symbol@^1.0.2:
version "1.0.2"
resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.2.tgz#a055f6ae57192caee329e7a860118b497a950f38"
@@ -288,11 +1746,42 @@ is-symbol@^1.0.2:
dependencies:
has-symbols "^1.0.0"
+is-symbol@^1.0.3:
+ version "1.0.4"
+ resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.4.tgz#a6dac93b635b063ca6872236de88910a57af139c"
+ integrity sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==
+ dependencies:
+ has-symbols "^1.0.2"
+
+is-typed-array@^1.1.10, is-typed-array@^1.1.9:
+ version "1.1.12"
+ resolved "https://registry.yarnpkg.com/is-typed-array/-/is-typed-array-1.1.12.tgz#d0bab5686ef4a76f7a73097b95470ab199c57d4a"
+ integrity sha512-Z14TF2JNG8Lss5/HMqt0//T9JeHXttXy5pH/DBU4vi98ozO2btxzq9MwYDZYnKwU8nRsz/+GVFVRDq3DkVuSPg==
+ dependencies:
+ which-typed-array "^1.1.11"
+
+is-weakref@^1.0.2:
+ version "1.0.2"
+ resolved "https://registry.yarnpkg.com/is-weakref/-/is-weakref-1.0.2.tgz#9529f383a9338205e89765e0392efc2f100f06f2"
+ integrity sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==
+ dependencies:
+ call-bind "^1.0.2"
+
+isarray@^2.0.5:
+ version "2.0.5"
+ resolved "https://registry.yarnpkg.com/isarray/-/isarray-2.0.5.tgz#8af1e4c1221244cc62459faf38940d4e644a5723"
+ integrity sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==
+
isexe@^2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10"
integrity sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=
+isobject@^3.0.1:
+ version "3.0.1"
+ resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df"
+ integrity sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==
+
isomorphic-fetch@^2.1.1:
version "2.2.1"
resolved "https://registry.yarnpkg.com/isomorphic-fetch/-/isomorphic-fetch-2.2.1.tgz#611ae1acf14f5e81f729507472819fe9733558a9"
@@ -301,11 +1790,26 @@ isomorphic-fetch@^2.1.1:
node-fetch "^1.0.1"
whatwg-fetch ">=0.10.0"
-"js-tokens@^3.0.0 || ^4.0.0":
+"js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0:
version "4.0.0"
resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499"
integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==
+jsesc@^2.5.1:
+ version "2.5.2"
+ resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4"
+ integrity sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==
+
+jsesc@~0.5.0:
+ version "0.5.0"
+ resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d"
+ integrity sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==
+
+json5@^2.2.2:
+ version "2.2.3"
+ resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.3.tgz#78cd6f1a19bdc12b73db5ad0c61efd66c1e29283"
+ integrity sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==
+
jsx-ast-utils@^2.2.1:
version "2.2.1"
resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-2.2.1.tgz#4d4973ebf8b9d2837ee91a8208cc66f3a2776cfb"
@@ -314,6 +1818,11 @@ jsx-ast-utils@^2.2.1:
array-includes "^3.0.3"
object.assign "^4.1.0"
+kind-of@^6.0.2:
+ version "6.0.3"
+ resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.3.tgz#07c05034a6c349fa06e24fa35aa76db4580ce4dd"
+ integrity sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==
+
lcid@^1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835"
@@ -339,7 +1848,15 @@ locate-path@^2.0.0:
p-locate "^2.0.0"
path-exists "^3.0.0"
-lodash.debounce@4.0.8:
+locate-path@^3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-3.0.0.tgz#dbec3b3ab759758071b58fe59fc41871af21400e"
+ integrity sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==
+ dependencies:
+ p-locate "^3.0.0"
+ path-exists "^3.0.0"
+
+lodash.debounce@4.0.8, lodash.debounce@^4.0.8:
version "4.0.8"
resolved "https://registry.yarnpkg.com/lodash.debounce/-/lodash.debounce-4.0.8.tgz#82d79bff30a67c4005ffd5e2515300ad9ca4d7af"
integrity sha1-gteb/zCmfEAF/9XiUVMArZyk168=
@@ -364,6 +1881,21 @@ lru-cache@^4.0.1:
pseudomap "^1.0.2"
yallist "^2.1.2"
+lru-cache@^5.1.1:
+ version "5.1.1"
+ resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-5.1.1.tgz#1da27e6710271947695daf6848e847f01d84b920"
+ integrity sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==
+ dependencies:
+ yallist "^3.0.2"
+
+make-dir@^2.0.0, make-dir@^2.1.0:
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-2.1.0.tgz#5f0310e18b8be898cc07009295a30ae41e91e6f5"
+ integrity sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==
+ dependencies:
+ pify "^4.0.1"
+ semver "^5.6.0"
+
mem@^1.1.0:
version "1.1.0"
resolved "https://registry.yarnpkg.com/mem/-/mem-1.1.0.tgz#5edd52b485ca1d900fe64895505399a0dfa45f76"
@@ -376,6 +1908,19 @@ mimic-fn@^1.0.0:
resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.2.0.tgz#820c86a39334640e99516928bd03fca88057d022"
integrity sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ==
+ms@2.1.2:
+ version "2.1.2"
+ resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009"
+ integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==
+
+node-environment-flags@^1.0.5:
+ version "1.0.6"
+ resolved "https://registry.yarnpkg.com/node-environment-flags/-/node-environment-flags-1.0.6.tgz#a30ac13621f6f7d674260a54dede048c3982c088"
+ integrity sha512-5Evy2epuL+6TM0lCQGpFIj6KwiEsGh1SrHUhTbNX+sLbBtjidPZFAnVK9y5yU1+h//RitLbRHTIMyxQPtxMdHw==
+ dependencies:
+ object.getownpropertydescriptors "^2.0.3"
+ semver "^5.7.0"
+
node-fetch@^1.0.1:
version "1.7.3"
resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-1.7.3.tgz#980f6f72d85211a5347c6b2bc18c5b84c3eb47ef"
@@ -384,6 +1929,11 @@ node-fetch@^1.0.1:
encoding "^0.1.11"
is-stream "^1.0.1"
+node-releases@^2.0.12:
+ version "2.0.13"
+ resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.13.tgz#d5ed1627c23e3461e819b02e57b75e4899b1c81d"
+ integrity sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ==
+
normalize-package-data@^2.3.2:
version "2.5.0"
resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.5.0.tgz#e66db1838b200c1dfc233225d12cb36520e234a8"
@@ -411,6 +1961,11 @@ object-assign@^4.1.0, object-assign@^4.1.1:
resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863"
integrity sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=
+object-inspect@^1.12.3, object-inspect@^1.9.0:
+ version "1.12.3"
+ resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.12.3.tgz#ba62dffd67ee256c8c086dfae69e016cd1f198b9"
+ integrity sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==
+
object-inspect@^1.6.0:
version "1.6.0"
resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.6.0.tgz#c70b6cbf72f274aab4c34c0c82f5167bf82cf15b"
@@ -431,6 +1986,16 @@ object.assign@^4.1.0:
has-symbols "^1.0.0"
object-keys "^1.0.11"
+object.assign@^4.1.4:
+ version "4.1.4"
+ resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.4.tgz#9673c7c7c351ab8c4d0b516f4343ebf4dfb7799f"
+ integrity sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==
+ dependencies:
+ call-bind "^1.0.2"
+ define-properties "^1.1.4"
+ has-symbols "^1.0.3"
+ object-keys "^1.1.1"
+
object.entries@^1.1.0:
version "1.1.0"
resolved "https://registry.yarnpkg.com/object.entries/-/object.entries-1.1.0.tgz#2024fc6d6ba246aee38bdb0ffd5cfbcf371b7519"
@@ -451,6 +2016,17 @@ object.fromentries@^2.0.0:
function-bind "^1.1.1"
has "^1.0.3"
+object.getownpropertydescriptors@^2.0.3:
+ version "2.1.6"
+ resolved "https://registry.yarnpkg.com/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.6.tgz#5e5c384dd209fa4efffead39e3a0512770ccc312"
+ integrity sha512-lq+61g26E/BgHv0ZTFgRvi7NMEPuAxLkFU7rukXjc/AlwH4Am5xXVnIXy3un1bg/JPbXHrixRkK1itUzzPiIjQ==
+ dependencies:
+ array.prototype.reduce "^1.0.5"
+ call-bind "^1.0.2"
+ define-properties "^1.2.0"
+ es-abstract "^1.21.2"
+ safe-array-concat "^1.0.0"
+
object.values@^1.1.0:
version "1.1.0"
resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.1.0.tgz#bf6810ef5da3e5325790eaaa2be213ea84624da9"
@@ -482,6 +2058,13 @@ p-limit@^1.1.0:
dependencies:
p-try "^1.0.0"
+p-limit@^2.0.0:
+ version "2.3.0"
+ resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.3.0.tgz#3dd33c647a214fdfffd835933eb086da0dc21db1"
+ integrity sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==
+ dependencies:
+ p-try "^2.0.0"
+
p-locate@^2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43"
@@ -489,11 +2072,23 @@ p-locate@^2.0.0:
dependencies:
p-limit "^1.1.0"
+p-locate@^3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-3.0.0.tgz#322d69a05c0264b25997d9f40cd8a891ab0064a4"
+ integrity sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==
+ dependencies:
+ p-limit "^2.0.0"
+
p-try@^1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/p-try/-/p-try-1.0.0.tgz#cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3"
integrity sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M=
+p-try@^2.0.0:
+ version "2.2.0"
+ resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6"
+ integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==
+
parse-json@^2.2.0:
version "2.2.0"
resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9"
@@ -501,6 +2096,11 @@ parse-json@^2.2.0:
dependencies:
error-ex "^1.2.0"
+parse-passwd@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/parse-passwd/-/parse-passwd-1.0.0.tgz#6d5b934a456993b23d37f40a382d6f1666a8e5c6"
+ integrity sha512-1Y1A//QUXEZK7YKz+rD9WydcE1+EuPr6ZBgKecAB8tmoW6UFv0NREVJe1p+jRxtThkcbbKkfwIbWJe/IeE6m2Q==
+
path-exists@^3.0.0:
version "3.0.0"
resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515"
@@ -516,6 +2116,11 @@ path-parse@^1.0.6:
resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.6.tgz#d62dbb5679405d72c4737ec58600e9ddcf06d24c"
integrity sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw==
+path-parse@^1.0.7:
+ version "1.0.7"
+ resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735"
+ integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==
+
path-type@^2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/path-type/-/path-type-2.0.0.tgz#f012ccb8415b7096fc2daa1054c3d72389594c73"
@@ -523,11 +2128,33 @@ path-type@^2.0.0:
dependencies:
pify "^2.0.0"
+picocolors@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.0.0.tgz#cb5bdc74ff3f51892236eaf79d68bc44564ab81c"
+ integrity sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==
+
pify@^2.0.0:
version "2.3.0"
resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c"
integrity sha1-7RQaasBDqEnqWISY59yosVMw6Qw=
+pify@^4.0.1:
+ version "4.0.1"
+ resolved "https://registry.yarnpkg.com/pify/-/pify-4.0.1.tgz#4b2cd25c50d598735c50292224fd8c6df41e3231"
+ integrity sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==
+
+pirates@^4.0.5:
+ version "4.0.6"
+ resolved "https://registry.yarnpkg.com/pirates/-/pirates-4.0.6.tgz#3018ae32ecfcff6c29ba2267cbf21166ac1f36b9"
+ integrity sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==
+
+pkg-dir@^3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-3.0.0.tgz#2749020f239ed990881b1f71210d51eb6523bea3"
+ integrity sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==
+ dependencies:
+ find-up "^3.0.0"
+
promise@^7.1.1:
version "7.3.1"
resolved "https://registry.yarnpkg.com/promise/-/promise-7.3.1.tgz#064b72602b18f90f29192b8b1bc418ffd1ebd3bf"
@@ -616,6 +2243,58 @@ recyclerlistview@2.0.12:
prop-types "15.5.8"
ts-object-utils "0.0.5"
+regenerate-unicode-properties@^10.1.0:
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-10.1.0.tgz#7c3192cab6dd24e21cb4461e5ddd7dd24fa8374c"
+ integrity sha512-d1VudCLoIGitcU/hEg2QqvyGZQmdC0Lf8BqdOMXGFSvJP4bNV1+XqbPQeHHLD51Jh4QJJ225dlIFvY4Ly6MXmQ==
+ dependencies:
+ regenerate "^1.4.2"
+
+regenerate@^1.4.2:
+ version "1.4.2"
+ resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.2.tgz#b9346d8827e8f5a32f7ba29637d398b69014848a"
+ integrity sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==
+
+regenerator-runtime@^0.13.11:
+ version "0.13.11"
+ resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz#f6dca3e7ceec20590d07ada785636a90cdca17f9"
+ integrity sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==
+
+regenerator-transform@^0.15.1:
+ version "0.15.1"
+ resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.15.1.tgz#f6c4e99fc1b4591f780db2586328e4d9a9d8dc56"
+ integrity sha512-knzmNAcuyxV+gQCufkYcvOqX/qIIfHLv0u5x79kRxuGojfYVky1f15TzZEu2Avte8QGepvUNTnLskf8E6X6Vyg==
+ dependencies:
+ "@babel/runtime" "^7.8.4"
+
+regexp.prototype.flags@^1.5.0:
+ version "1.5.0"
+ resolved "https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.5.0.tgz#fe7ce25e7e4cca8db37b6634c8a2c7009199b9cb"
+ integrity sha512-0SutC3pNudRKgquxGoRGIz946MZVHqbNfPjBdxeOhBrdgDKlRoXmYLQN9xRbrR09ZXWeGAdPuif7egofn6v5LA==
+ dependencies:
+ call-bind "^1.0.2"
+ define-properties "^1.2.0"
+ functions-have-names "^1.2.3"
+
+regexpu-core@^5.3.1:
+ version "5.3.2"
+ resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-5.3.2.tgz#11a2b06884f3527aec3e93dbbf4a3b958a95546b"
+ integrity sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==
+ dependencies:
+ "@babel/regjsgen" "^0.8.0"
+ regenerate "^1.4.2"
+ regenerate-unicode-properties "^10.1.0"
+ regjsparser "^0.9.1"
+ unicode-match-property-ecmascript "^2.0.0"
+ unicode-match-property-value-ecmascript "^2.1.0"
+
+regjsparser@^0.9.1:
+ version "0.9.1"
+ resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.9.1.tgz#272d05aa10c7c1f67095b1ff0addae8442fc5709"
+ integrity sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==
+ dependencies:
+ jsesc "~0.5.0"
+
require-directory@^2.1.1:
version "2.1.1"
resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42"
@@ -633,6 +2312,34 @@ resolve@^1.10.0, resolve@^1.12.0:
dependencies:
path-parse "^1.0.6"
+resolve@^1.14.2:
+ version "1.22.2"
+ resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.2.tgz#0ed0943d4e301867955766c9f3e1ae6d01c6845f"
+ integrity sha512-Sb+mjNHOULsBv818T40qSPeRiuWLyaGMa5ewydRLFimneixmVy2zdivRl+AF6jaYPC8ERxGDmFSiqui6SfPd+g==
+ dependencies:
+ is-core-module "^2.11.0"
+ path-parse "^1.0.7"
+ supports-preserve-symlinks-flag "^1.0.0"
+
+safe-array-concat@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/safe-array-concat/-/safe-array-concat-1.0.0.tgz#2064223cba3c08d2ee05148eedbc563cd6d84060"
+ integrity sha512-9dVEFruWIsnie89yym+xWTAYASdpw3CJV7Li/6zBewGf9z2i1j31rP6jnY0pHEO4QZh6N0K11bFjWmdR8UGdPQ==
+ dependencies:
+ call-bind "^1.0.2"
+ get-intrinsic "^1.2.0"
+ has-symbols "^1.0.3"
+ isarray "^2.0.5"
+
+safe-regex-test@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/safe-regex-test/-/safe-regex-test-1.0.0.tgz#793b874d524eb3640d1873aad03596db2d4f2295"
+ integrity sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==
+ dependencies:
+ call-bind "^1.0.2"
+ get-intrinsic "^1.1.3"
+ is-regex "^1.1.4"
+
"safer-buffer@>= 2.1.2 < 3":
version "2.1.2"
resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a"
@@ -643,6 +2350,16 @@ resolve@^1.10.0, resolve@^1.12.0:
resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7"
integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==
+semver@^5.6.0, semver@^5.7.0:
+ version "5.7.2"
+ resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.2.tgz#48d55db737c3287cd4835e17fa13feace1c41ef8"
+ integrity sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==
+
+semver@^6.3.1:
+ version "6.3.1"
+ resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.1.tgz#556d2ef8689146e46dcea4bfdd095f3434dffcb4"
+ integrity sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==
+
set-blocking@^2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7"
@@ -653,6 +2370,13 @@ setimmediate@^1.0.5:
resolved "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285"
integrity sha1-KQy7Iy4waULX1+qbg3Mqt4VvgoU=
+shallow-clone@^3.0.0:
+ version "3.0.1"
+ resolved "https://registry.yarnpkg.com/shallow-clone/-/shallow-clone-3.0.1.tgz#8f2981ad92531f55035b01fb230769a40e02efa3"
+ integrity sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==
+ dependencies:
+ kind-of "^6.0.2"
+
shebang-command@^1.2.0:
version "1.2.0"
resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea"
@@ -665,11 +2389,33 @@ shebang-regex@^1.0.0:
resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3"
integrity sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=
+side-channel@^1.0.4:
+ version "1.0.4"
+ resolved "https://registry.yarnpkg.com/side-channel/-/side-channel-1.0.4.tgz#efce5c8fdc104ee751b25c58d4290011fa5ea2cf"
+ integrity sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==
+ dependencies:
+ call-bind "^1.0.0"
+ get-intrinsic "^1.0.2"
+ object-inspect "^1.9.0"
+
signal-exit@^3.0.0:
version "3.0.2"
resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d"
integrity sha1-tf3AjxKH6hF4Yo5BXiUTK3NkbG0=
+source-map-support@^0.5.16:
+ version "0.5.21"
+ resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.21.tgz#04fe7c7f9e1ed2d662233c28cb2b35b9f63f6e4f"
+ integrity sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==
+ dependencies:
+ buffer-from "^1.0.0"
+ source-map "^0.6.0"
+
+source-map@^0.6.0:
+ version "0.6.1"
+ resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263"
+ integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==
+
spdx-correct@^3.0.0:
version "3.1.0"
resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.1.0.tgz#fb83e504445268f154b074e218c87c003cd31df4"
@@ -713,6 +2459,24 @@ string-width@^2.0.0:
is-fullwidth-code-point "^2.0.0"
strip-ansi "^4.0.0"
+string.prototype.trim@^1.2.7:
+ version "1.2.7"
+ resolved "https://registry.yarnpkg.com/string.prototype.trim/-/string.prototype.trim-1.2.7.tgz#a68352740859f6893f14ce3ef1bb3037f7a90533"
+ integrity sha512-p6TmeT1T3411M8Cgg9wBTMRtY2q9+PNy9EV1i2lIXUN/btt763oIfxwN3RR8VU6wHX8j/1CFy0L+YuThm6bgOg==
+ dependencies:
+ call-bind "^1.0.2"
+ define-properties "^1.1.4"
+ es-abstract "^1.20.4"
+
+string.prototype.trimend@^1.0.6:
+ version "1.0.6"
+ resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.6.tgz#c4a27fa026d979d79c04f17397f250a462944533"
+ integrity sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ==
+ dependencies:
+ call-bind "^1.0.2"
+ define-properties "^1.1.4"
+ es-abstract "^1.20.4"
+
string.prototype.trimleft@^2.1.0:
version "2.1.0"
resolved "https://registry.yarnpkg.com/string.prototype.trimleft/-/string.prototype.trimleft-2.1.0.tgz#6cc47f0d7eb8d62b0f3701611715a3954591d634"
@@ -729,6 +2493,15 @@ string.prototype.trimright@^2.1.0:
define-properties "^1.1.3"
function-bind "^1.1.1"
+string.prototype.trimstart@^1.0.6:
+ version "1.0.6"
+ resolved "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.6.tgz#e90ab66aa8e4007d92ef591bbf3cd422c56bdcf4"
+ integrity sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA==
+ dependencies:
+ call-bind "^1.0.2"
+ define-properties "^1.1.4"
+ es-abstract "^1.20.4"
+
strip-ansi@^3.0.0, strip-ansi@^3.0.1:
version "3.0.1"
resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf"
@@ -753,16 +2526,120 @@ strip-eof@^1.0.0:
resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf"
integrity sha1-u0P/VZim6wXYm1n80SnJgzE2Br8=
+supports-color@^5.3.0:
+ version "5.5.0"
+ resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f"
+ integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==
+ dependencies:
+ has-flag "^3.0.0"
+
+supports-preserve-symlinks-flag@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09"
+ integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==
+
+to-fast-properties@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e"
+ integrity sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==
+
ts-object-utils@0.0.5:
version "0.0.5"
resolved "https://registry.yarnpkg.com/ts-object-utils/-/ts-object-utils-0.0.5.tgz#95361cdecd7e52167cfc5e634c76345e90a26077"
integrity sha1-lTYc3s1+UhZ8/F5jTHY0XpCiYHc=
+typed-array-buffer@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/typed-array-buffer/-/typed-array-buffer-1.0.0.tgz#18de3e7ed7974b0a729d3feecb94338d1472cd60"
+ integrity sha512-Y8KTSIglk9OZEr8zywiIHG/kmQ7KWyjseXs1CbSo8vC42w7hg2HgYTxSWwP0+is7bWDc1H+Fo026CpHFwm8tkw==
+ dependencies:
+ call-bind "^1.0.2"
+ get-intrinsic "^1.2.1"
+ is-typed-array "^1.1.10"
+
+typed-array-byte-length@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/typed-array-byte-length/-/typed-array-byte-length-1.0.0.tgz#d787a24a995711611fb2b87a4052799517b230d0"
+ integrity sha512-Or/+kvLxNpeQ9DtSydonMxCx+9ZXOswtwJn17SNLvhptaXYDJvkFFP5zbfU/uLmvnBJlI4yrnXRxpdWH/M5tNA==
+ dependencies:
+ call-bind "^1.0.2"
+ for-each "^0.3.3"
+ has-proto "^1.0.1"
+ is-typed-array "^1.1.10"
+
+typed-array-byte-offset@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/typed-array-byte-offset/-/typed-array-byte-offset-1.0.0.tgz#cbbe89b51fdef9cd6aaf07ad4707340abbc4ea0b"
+ integrity sha512-RD97prjEt9EL8YgAgpOkf3O4IF9lhJFr9g0htQkm0rchFp/Vx7LW5Q8fSXXub7BXAODyUQohRMyOc3faCPd0hg==
+ dependencies:
+ available-typed-arrays "^1.0.5"
+ call-bind "^1.0.2"
+ for-each "^0.3.3"
+ has-proto "^1.0.1"
+ is-typed-array "^1.1.10"
+
+typed-array-length@^1.0.4:
+ version "1.0.4"
+ resolved "https://registry.yarnpkg.com/typed-array-length/-/typed-array-length-1.0.4.tgz#89d83785e5c4098bec72e08b319651f0eac9c1bb"
+ integrity sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==
+ dependencies:
+ call-bind "^1.0.2"
+ for-each "^0.3.3"
+ is-typed-array "^1.1.9"
+
ua-parser-js@^0.7.18:
version "0.7.20"
resolved "https://registry.yarnpkg.com/ua-parser-js/-/ua-parser-js-0.7.20.tgz#7527178b82f6a62a0f243d1f94fd30e3e3c21098"
integrity sha512-8OaIKfzL5cpx8eCMAhhvTlft8GYF8b2eQr6JkCyVdrgjcytyOmPCXrqXFcUnhonRpLlh5yxEZVohm6mzaowUOw==
+unbox-primitive@^1.0.2:
+ version "1.0.2"
+ resolved "https://registry.yarnpkg.com/unbox-primitive/-/unbox-primitive-1.0.2.tgz#29032021057d5e6cdbd08c5129c226dff8ed6f9e"
+ integrity sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==
+ dependencies:
+ call-bind "^1.0.2"
+ has-bigints "^1.0.2"
+ has-symbols "^1.0.3"
+ which-boxed-primitive "^1.0.2"
+
+unicode-canonical-property-names-ecmascript@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz#301acdc525631670d39f6146e0e77ff6bbdebddc"
+ integrity sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==
+
+unicode-match-property-ecmascript@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz#54fd16e0ecb167cf04cf1f756bdcc92eba7976c3"
+ integrity sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==
+ dependencies:
+ unicode-canonical-property-names-ecmascript "^2.0.0"
+ unicode-property-aliases-ecmascript "^2.0.0"
+
+unicode-match-property-value-ecmascript@^2.1.0:
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.1.0.tgz#cb5fffdcd16a05124f5a4b0bf7c3770208acbbe0"
+ integrity sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==
+
+unicode-property-aliases-ecmascript@^2.0.0:
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz#43d41e3be698bd493ef911077c9b131f827e8ccd"
+ integrity sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==
+
+update-browserslist-db@^1.0.11:
+ version "1.0.11"
+ resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.0.11.tgz#9a2a641ad2907ae7b3616506f4b977851db5b940"
+ integrity sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==
+ dependencies:
+ escalade "^3.1.1"
+ picocolors "^1.0.0"
+
+v8flags@^3.1.1:
+ version "3.2.0"
+ resolved "https://registry.yarnpkg.com/v8flags/-/v8flags-3.2.0.tgz#b243e3b4dfd731fa774e7492128109a0fe66d656"
+ integrity sha512-mH8etigqMfiGWdeXpaaqGfs6BndypxusHHcv2qSHyZkGEznCd/qAXCWWRzeowtL54147cktFOC4P5y+kl8d8Jg==
+ dependencies:
+ homedir-polyfill "^1.0.1"
+
validate-npm-package-license@^3.0.1:
version "3.0.4"
resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz#fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a"
@@ -776,11 +2653,33 @@ whatwg-fetch@>=0.10.0:
resolved "https://registry.yarnpkg.com/whatwg-fetch/-/whatwg-fetch-3.0.0.tgz#fc804e458cc460009b1a2b966bc8817d2578aefb"
integrity sha512-9GSJUgz1D4MfyKU7KRqwOjXCXTqWdFNvEr7eUBYchQiVc744mqK/MzXPNR2WsPkmkOa4ywfg8C2n8h+13Bey1Q==
+which-boxed-primitive@^1.0.2:
+ version "1.0.2"
+ resolved "https://registry.yarnpkg.com/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz#13757bc89b209b049fe5d86430e21cf40a89a8e6"
+ integrity sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==
+ dependencies:
+ is-bigint "^1.0.1"
+ is-boolean-object "^1.1.0"
+ is-number-object "^1.0.4"
+ is-string "^1.0.5"
+ is-symbol "^1.0.3"
+
which-module@^2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a"
integrity sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho=
+which-typed-array@^1.1.10, which-typed-array@^1.1.11:
+ version "1.1.11"
+ resolved "https://registry.yarnpkg.com/which-typed-array/-/which-typed-array-1.1.11.tgz#99d691f23c72aab6768680805a271b69761ed61a"
+ integrity sha512-qe9UWWpkeG5yzZ0tNYxDmd7vo58HDBc39mZ0xWWpolAGADdFOzkfamWLDxkOWcvHQKVmdTyQdLD4NOfjLWTKew==
+ dependencies:
+ available-typed-arrays "^1.0.5"
+ call-bind "^1.0.2"
+ for-each "^0.3.3"
+ gopd "^1.0.1"
+ has-tostringtag "^1.0.0"
+
which@^1.2.9:
version "1.3.1"
resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a"
@@ -806,6 +2705,11 @@ yallist@^2.1.2:
resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52"
integrity sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI=
+yallist@^3.0.2:
+ version "3.1.1"
+ resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.1.1.tgz#dbb7daf9bfd8bac9ab45ebf602b8cbad0d5d08fd"
+ integrity sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==
+
yargs-parser@^7.0.0:
version "7.0.0"
resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-7.0.0.tgz#8d0ac42f16ea55debd332caf4c4038b3e3f5dfd9"