emoji-mart-lazyload/dist/emoji-picker.min.js

67 lines
544 KiB
JavaScript
Raw Normal View History

2016-07-11 19:21:13 +00:00
!function(e,o){"object"==typeof exports&&"object"==typeof module?module.exports=o(require("React")):"function"==typeof define&&define.amd?define(["React"],o):"object"==typeof exports?exports.EmojiPicker=o(require("React")):e.EmojiPicker=o(e.React)}(this,function(e){return function(e){function o(i){if(a[i])return a[i].exports;var t=a[i]={exports:{},id:i,loaded:!1};return e[i].call(t.exports,t,t.exports,o),t.loaded=!0,t.exports}var a={};return o.m=e,o.c=a,o.p="",o(0)}([function(e,o,a){"use strict";Object.defineProperty(o,"__esModule",{value:!0});var i=a(1);Object.defineProperty(o,"Picker",{enumerable:!0,get:function(){return i.Picker}}),Object.defineProperty(o,"Emoji",{enumerable:!0,get:function(){return i.Emoji}});var t=a(16);Object.defineProperty(o,"emojiIndex",{enumerable:!0,get:function(){return t.emojiIndex}})},function(e,o,a){"use strict";function i(e){return e&&e.__esModule?e:{"default":e}}Object.defineProperty(o,"__esModule",{value:!0});var t=a(2);Object.defineProperty(o,"Anchors",{enumerable:!0,get:function(){return i(t)["default"]}});var s=a(15);Object.defineProperty(o,"Category",{enumerable:!0,get:function(){return i(s)["default"]}});var _=a(22);Object.defineProperty(o,"Emoji",{enumerable:!0,get:function(){return i(_)["default"]}});var n=a(23);Object.defineProperty(o,"Picker",{enumerable:!0,get:function(){return i(n)["default"]}});var g=a(25);Object.defineProperty(o,"Preview",{enumerable:!0,get:function(){return i(g)["default"]}});var m=a(26);Object.defineProperty(o,"Search",{enumerable:!0,get:function(){return i(m)["default"]}});var r=a(27);Object.defineProperty(o,"Skins",{enumerable:!0,get:function(){return i(r)["default"]}})},function(e,o,a){"use strict";function i(e){if(e&&e.__esModule)return e;var o={};if(null!=e)for(var a in e)Object.prototype.hasOwnProperty.call(e,a)&&(o[a]=e[a]);return o["default"]=e,o}function t(e){return e&&e.__esModule?e:{"default":e}}function s(e,o){if(!(e instanceof o))throw new TypeError("Cannot call a class as a function")}function _(e,o){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!o||"object"!=typeof o&&"function"!=typeof o?e:o}function n(e,o){if("function"!=typeof o&&null!==o)throw new TypeError("Super expression must either be null or a function, not "+typeof o);e.prototype=Object.create(o&&o.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),o&&(Object.setPrototypeOf?Object.setPrototypeOf(e,o):e.__proto__=o)}Object.defineProperty(o,"__esModule",{value:!0});var g=function(){function e(e,o){for(var a=0;a<o.length;a++){var i=o[a];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}return function(o,a,i){return a&&e(o.prototype,a),i&&e(o,i),o}}(),m=a(3),r=t(m),l=a(4),h=t(l),u=a(5),f=i(u),c=function(e){function o(e){s(this,o);var a=_(this,Object.getPrototypeOf(o).call(this,e)),i=e.categories[0];return i.anchor&&(i=i.anchor),a.state={selected:i.name},a}return n(o,e),g(o,[{key:"render",value:function(){var e=this.props,o=e.categories,a=e.onAnchorClick,i=this.state.selected;return r["default"].createElement("div",{className:"emoji-picker-anchors"},o.map(function(e,o){var t=e.name,s=e.anchor;return s?null:r["default"].createElement("span",{key:t,title:t,onClick:function(){return a(e,o)},className:"emoji-picker-anchor "+(t==i?"emoji-picker-anchor-selected":"")},r["default"].createElement(h["default"],{src:f[t]}),r["default"].createElement("span",{className:"emoji-picker-anchor-bar"}))}))}}]),o}(r["default"].Component);o["default"]=c,c.propTypes={categories:r["default"].PropTypes.array,onAnchorClick:r["default"].PropTypes.func},c.defaultProps={categories:[],onAnchorClick:function(){}}},function(o,a){o.exports=e},function(e,o,a){"use strict";function i(e){return e&&e.__esModule?e:{"default":e}}function t(e,o){if(!(e instanceof o))throw new TypeError("Cannot call a class as a function")}function s(e,o){if("function"!=typeof o&&null!==o)throw new TypeError("Super expression must either be null or a function, not "+typeof o);e.prototype=Object.create(o&
2016-07-06 14:32:52 +00:00
* lunr.utils
* Copyright (C) 2016 Oliver Nightingale
*/
2016-07-11 18:22:39 +00:00
s.utils={},s.utils.warn=function(e){return function(o){e.console&&console.warn&&console.warn(o)}}(this),s.utils.asString=function(e){return void 0===e||null===e?"":e.toString()},/*!
2016-07-06 14:32:52 +00:00
* lunr.EventEmitter
* Copyright (C) 2016 Oliver Nightingale
*/
2016-07-11 18:22:39 +00:00
s.EventEmitter=function(){this.events={}},s.EventEmitter.prototype.addListener=function(){var e=Array.prototype.slice.call(arguments),o=e.pop(),a=e;if("function"!=typeof o)throw new TypeError("last argument must be a function");a.forEach(function(e){this.hasHandler(e)||(this.events[e]=[]),this.events[e].push(o)},this)},s.EventEmitter.prototype.removeListener=function(e,o){if(this.hasHandler(e)){var a=this.events[e].indexOf(o);this.events[e].splice(a,1),this.events[e].length||delete this.events[e]}},s.EventEmitter.prototype.emit=function(e){if(this.hasHandler(e)){var o=Array.prototype.slice.call(arguments,1);this.events[e].forEach(function(e){e.apply(void 0,o)})}},s.EventEmitter.prototype.hasHandler=function(e){return e in this.events},/*!
2016-07-06 14:32:52 +00:00
* lunr.tokenizer
* Copyright (C) 2016 Oliver Nightingale
*/
2016-07-11 18:22:39 +00:00
s.tokenizer=function(e){return arguments.length&&null!=e&&void 0!=e?Array.isArray(e)?e.map(function(e){return s.utils.asString(e).toLowerCase()}):e.toString().trim().toLowerCase().split(s.tokenizer.seperator):[]},s.tokenizer.seperator=/[\s\-]+/,s.tokenizer.load=function(e){var o=this.registeredFunctions[e];if(!o)throw new Error("Cannot load un-registered function: "+e);return o},s.tokenizer.label="default",s.tokenizer.registeredFunctions={"default":s.tokenizer},s.tokenizer.registerFunction=function(e,o){o in this.registeredFunctions&&s.utils.warn("Overwriting existing tokenizer: "+o),e.label=o,this.registeredFunctions[o]=e},/*!
2016-07-06 14:32:52 +00:00
* lunr.Pipeline
* Copyright (C) 2016 Oliver Nightingale
*/
2016-07-11 18:22:39 +00:00
s.Pipeline=function(){this._stack=[]},s.Pipeline.registeredFunctions={},s.Pipeline.registerFunction=function(e,o){o in this.registeredFunctions&&s.utils.warn("Overwriting existing registered function: "+o),e.label=o,s.Pipeline.registeredFunctions[e.label]=e},s.Pipeline.warnIfFunctionNotRegistered=function(e){var o=e.label&&e.label in this.registeredFunctions;o||s.utils.warn("Function is not registered with pipeline. This may cause problems when serialising the index.\n",e)},s.Pipeline.load=function(e){var o=new s.Pipeline;return e.forEach(function(e){var a=s.Pipeline.registeredFunctions[e];if(!a)throw new Error("Cannot load un-registered function: "+e);o.add(a)}),o},s.Pipeline.prototype.add=function(){var e=Array.prototype.slice.call(arguments);e.forEach(function(e){s.Pipeline.warnIfFunctionNotRegistered(e),this._stack.push(e)},this)},s.Pipeline.prototype.after=function(e,o){s.Pipeline.warnIfFunctionNotRegistered(o);var a=this._stack.indexOf(e);if(-1==a)throw new Error("Cannot find existingFn");a+=1,this._stack.splice(a,0,o)},s.Pipeline.prototype.before=function(e,o){s.Pipeline.warnIfFunctionNotRegistered(o);var a=this._stack.indexOf(e);if(-1==a)throw new Error("Cannot find existingFn");this._stack.splice(a,0,o)},s.Pipeline.prototype.remove=function(e){var o=this._stack.indexOf(e);-1!=o&&this._stack.splice(o,1)},s.Pipeline.prototype.run=function(e){for(var o=[],a=e.length,i=this._stack.length,t=0;a>t;t++){for(var s=e[t],_=0;i>_&&(s=this._stack[_](s,t,e),void 0!==s&&""!==s);_++);void 0!==s&&""!==s&&o.push(s)}return o},s.Pipeline.prototype.reset=function(){this._stack=[]},s.Pipeline.prototype.toJSON=function(){return this._stack.map(function(e){return s.Pipeline.warnIfFunctionNotRegistered(e),e.label})},/*!
2016-07-06 14:32:52 +00:00
* lunr.Vector
* Copyright (C) 2016 Oliver Nightingale
*/
2016-07-11 18:22:39 +00:00
s.Vector=function(){this._magnitude=null,this.list=void 0,this.length=0},s.Vector.Node=function(e,o,a){this.idx=e,this.val=o,this.next=a},s.Vector.prototype.insert=function(e,o){this._magnitude=void 0;var a=this.list;if(!a)return this.list=new s.Vector.Node(e,o,a),this.length++;if(e<a.idx)return this.list=new s.Vector.Node(e,o,a),this.length++;for(var i=a,t=a.next;void 0!=t;){if(e<t.idx)return i.next=new s.Vector.Node(e,o,t),this.length++;i=t,t=t.next}return i.next=new s.Vector.Node(e,o,t),this.length++},s.Vector.prototype.magnitude=function(){if(this._magnitude)return this._magnitude;for(var e,o=this.list,a=0;o;)e=o.val,a+=e*e,o=o.next;return this._magnitude=Math.sqrt(a)},s.Vector.prototype.dot=function(e){for(var o=this.list,a=e.list,i=0;o&&a;)o.idx<a.idx?o=o.next:o.idx>a.idx?a=a.next:(i+=o.val*a.val,o=o.next,a=a.next);return i},s.Vector.prototype.similarity=function(e){return this.dot(e)/(this.magnitude()*e.magnitude())},/*!
2016-07-06 14:32:52 +00:00
* lunr.SortedSet
* Copyright (C) 2016 Oliver Nightingale
*/
2016-07-11 18:22:39 +00:00
s.SortedSet=function(){this.length=0,this.elements=[]},s.SortedSet.load=function(e){var o=new this;return o.elements=e,o.length=e.length,o},s.SortedSet.prototype.add=function(){var e,o;for(e=0;e<arguments.length;e++)o=arguments[e],~this.indexOf(o)||this.elements.splice(this.locationFor(o),0,o);this.length=this.elements.length},s.SortedSet.prototype.toArray=function(){return this.elements.slice()},s.SortedSet.prototype.map=function(e,o){return this.elements.map(e,o)},s.SortedSet.prototype.forEach=function(e,o){return this.elements.forEach(e,o)},s.SortedSet.prototype.indexOf=function(e){for(var o=0,a=this.elements.length,i=a-o,t=o+Math.floor(i/2),s=this.elements[t];i>1;){if(s===e)return t;e>s&&(o=t),s>e&&(a=t),i=a-o,t=o+Math.floor(i/2),s=this.elements[t]}return s===e?t:-1},s.SortedSet.prototype.locationFor=function(e){for(var o=0,a=this.elements.length,i=a-o,t=o+Math.floor(i/2),s=this.elements[t];i>1;)e>s&&(o=t),s>e&&(a=t),i=a-o,t=o+Math.floor(i/2),s=this.elements[t];return s>e?t:e>s?t+1:void 0},s.SortedSet.prototype.intersect=function(e){for(var o=new s.SortedSet,a=0,i=0,t=this.length,_=e.length,n=this.elements,g=e.elements;;){if(a>t-1||i>_-1)break;n[a]!==g[i]?n[a]<g[i]?a++:n[a]>g[i]&&i++:(o.add(n[a]),a++,i++)}return o},s.SortedSet.prototype.clone=function(){var e=new s.SortedSet;return e.elements=this.toArray(),e.length=e.elements.length,e},s.SortedSet.prototype.union=function(e){var o,a,i;this.length>=e.length?(o=this,a=e):(o=e,a=this),i=o.clone();for(var t=0,s=a.toArray();t<s.length;t++)i.add(s[t]);return i},s.SortedSet.prototype.toJSON=function(){return this.toArray()},/*!
2016-07-06 14:32:52 +00:00
* lunr.Index
* Copyright (C) 2016 Oliver Nightingale
*/
2016-07-11 18:22:39 +00:00
s.Index=function(){this._fields=[],this._ref="id",this.pipeline=new s.Pipeline,this.documentStore=new s.Store,this.tokenStore=new s.TokenStore,this.corpusTokens=new s.SortedSet,this.eventEmitter=new s.EventEmitter,this.tokenizerFn=s.tokenizer,this._idfCache={},this.on("add","remove","update",function(){this._idfCache={}}.bind(this))},s.Index.prototype.on=function(){var e=Array.prototype.slice.call(arguments);return this.eventEmitter.addListener.apply(this.eventEmitter,e)},s.Index.prototype.off=function(e,o){return this.eventEmitter.removeListener(e,o)},s.Index.load=function(e){e.version!==s.version&&s.utils.warn("version mismatch: current "+s.version+" importing "+e.version);var o=new this;return o._fields=e.fields,o._ref=e.ref,o.tokenizer=s.tokenizer.load(e.tokenizer),o.documentStore=s.Store.load(e.documentStore),o.tokenStore=s.TokenStore.load(e.tokenStore),o.corpusTokens=s.SortedSet.load(e.corpusTokens),o.pipeline=s.Pipeline.load(e.pipeline),o},s.Index.prototype.field=function(e,o){var o=o||{},a={name:e,boost:o.boost||1};return this._fields.push(a),this},s.Index.prototype.ref=function(e){return this._ref=e,this},s.Index.prototype.tokenizer=function(e){var o=e.label&&e.label in s.tokenizer.registeredFunctions;return o||s.utils.warn("Function is not a registered tokenizer. This may cause problems when serialising the index"),this.tokenizerFn=e,this},s.Index.prototype.add=function(e,o){var a={},i=new s.SortedSet,t=e[this._ref],o=void 0===o?!0:o;this._fields.forEach(function(o){var t=this.pipeline.run(this.tokenizerFn(e[o.name]));a[o.name]=t;for(var s=0;s<t.length;s++){var _=t[s];i.add(_),this.corpusTokens.add(_)}},this),this.documentStore.set(t,i);for(var _=0;_<i.length;_++){for(var n=i.elements[_],g=0,m=0;m<this._fields.length;m++){var r=this._fields[m],l=a[r.name],h=l.length;if(h){for(var u=0,f=0;h>f;f++)l[f]===n&&u++;g+=u/h*r.boost}}this.tokenStore.add(n,{ref:t,tf:g})}o&&this.eventEmitter.emit("add",e,this)},s.Index.prototype.remove=function(e,o){var a=e[this._ref],o=void 0===o?!0:o;if(this.documentStore.has(a)){var i=this.documentStore.get(a);this.documentStore.remove(a),i.forEach(function(e){this.tokenStore.remove(e,a)},this),o&&this.eventEmitter.emit("remove",e,this)}},s.Index.prototype.update=function(e,o){var o=void 0===o?!0:o;this.remove(e,!1),this.add(e,!1),o&&this.eventEmitter.emit("update",e,this)},s.Index.prototype.idf=function(e){var o="@"+e;if(Object.prototype.hasOwnProperty.call(this._idfCache,o))return this._idfCache[o];var a=this.tokenStore.count(e),i=1;return a>0&&(i=1+Math.log(this.documentStore.length/a)),this._idfCache[o]=i},s.Index.prototype.search=function(e){var o=this.pipeline.run(this.tokenizerFn(e)),a=new s.Vector,i=[],t=this._fields.reduce(function(e,o){return e+o.boost},0),_=o.some(function(e){return this.tokenStore.has(e)},this);if(!_)return[];o.forEach(function(e,o,_){var n=1/_.length*this._fields.length*t,g=this,m=this.tokenStore.expand(e).reduce(function(o,i){var t=g.corpusTokens.indexOf(i),_=g.idf(i),m=1,r=new s.SortedSet;if(i!==e){var l=Math.max(3,i.length-e.length);m=1/Math.log(l)}t>-1&&a.insert(t,n*_*m);for(var h=g.tokenStore.get(i),u=Object.keys(h),f=u.length,c=0;f>c;c++)r.add(h[u[c]].ref);return o.union(r)},new s.SortedSet);i.push(m)},this);var n=i.reduce(function(e,o){return e.intersect(o)});return n.map(function(e){return{ref:e,score:a.similarity(this.documentVector(e))}},this).sort(function(e,o){return o.score-e.score})},s.Index.prototype.documentVector=function(e){for(var o=this.documentStore.get(e),a=o.length,i=new s.Vector,t=0;a>t;t++){var _=o.elements[t],n=this.tokenStore.get(_)[e].tf,g=this.idf(_);i.insert(this.corpusTokens.indexOf(_),n*g)}return i},s.Index.prototype.toJSON=function(){return{version:s.version,fields:this._fields,ref:this._ref,tokenizer:this.tokenizerFn.label,documentStore:this.documentStore.toJSON(),tokenStore:this.tokenStore.toJSON(),corpusTokens:this.corpusTokens.toJSON(),pipeline:this.pipeline.toJSON()}},s.Index.prototype.use=function(e){var o=Array.prototype.slice.call(arguments,1);o.unshift(this),e.apply(this,o)},/*!
2016-07-06 14:32:52 +00:00
* lunr.Store
* Copyright (C) 2016 Oliver Nightingale
*/
2016-07-11 18:22:39 +00:00
s.Store=function(){this.store={},this.length=0},s.Store.load=function(e){var o=new this;return o.length=e.length,o.store=Object.keys(e.store).reduce(function(o,a){return o[a]=s.SortedSet.load(e.store[a]),o},{}),o},s.Store.prototype.set=function(e,o){this.has(e)||this.length++,this.store[e]=o},s.Store.prototype.get=function(e){return this.store[e]},s.Store.prototype.has=function(e){return e in this.store},s.Store.prototype.remove=function(e){this.has(e)&&(delete this.store[e],this.length--)},s.Store.prototype.toJSON=function(){return{store:this.store,length:this.length}},/*!
2016-07-06 14:32:52 +00:00
* lunr.stemmer
* Copyright (C) 2016 Oliver Nightingale
* Includes code from - http://tartarus.org/~martin/PorterStemmer/js.txt
*/
2016-07-11 18:22:39 +00:00
s.stemmer=function(){var e={ational:"ate",tional:"tion",enci:"ence",anci:"ance",izer:"ize",bli:"ble",alli:"al",entli:"ent",eli:"e",ousli:"ous",ization:"ize",ation:"ate",ator:"ate",alism:"al",iveness:"ive",fulness:"ful",ousness:"ous",aliti:"al",iviti:"ive",biliti:"ble",logi:"log"},o={icate:"ic",ative:"",alize:"al",iciti:"ic",ical:"ic",ful:"",ness:""},a="[^aeiou]",i="[aeiouy]",t=a+"[^aeiouy]*",s=i+"[aeiou]*",_="^("+t+")?"+s+t,n="^("+t+")?"+s+t+"("+s+")?$",g="^("+t+")?"+s+t+s+t,m="^("+t+")?"+i,r=new RegExp(_),l=new RegExp(g),h=new RegExp(n),u=new RegExp(m),f=/^(.+?)(ss|i)es$/,c=/^(.+?)([^s])s$/,p=/^(.+?)eed$/,d=/^(.+?)(ed|ing)$/,F=/.$/,y=/(at|bl|iz)$/,b=new RegExp("([^aeiouylsz])\\1$"),E=new RegExp("^"+t+i+"[^aeiouwxy]$"),w=/^(.+?[^aeiou])y$/,k=/^(.+?)(ational|tional|enci|anci|izer|bli|alli|entli|eli|ousli|ization|ation|ator|alism|iveness|fulness|ousness|aliti|iviti|biliti|logi)$/,v=/^(.+?)(icate|ative|alize|iciti|ical|ful|ness)$/,j=/^(.+?)(al|ance|ence|er|ic|able|ible|ant|ement|ment|ent|ou|ism|ate|iti|ous|ive|ize)$/,x=/^(.+?)(s|t)(ion)$/,B=/^(.+?)e$/,S=/ll$/,C=new RegExp("^"+t+i+"[^aeiouwxy]$"),A=function(a){var i,t,s,_,n,g,m;if(a.length<3)return a;if(s=a.substr(0,1),"y"==s&&(a=s.toUpperCase()+a.substr(1)),_=f,n=c,_.test(a)?a=a.replace(_,"$1$2"):n.test(a)&&(a=a.replace(n,"$1$2")),_=p,n=d,_.test(a)){var A=_.exec(a);_=r,_.test(A[1])&&(_=F,a=a.replace(_,""))}else if(n.test(a)){var A=n.exec(a);i=A[1],n=u,n.test(i)&&(a=i,n=y,g=b,m=E,n.test(a)?a+="e":g.test(a)?(_=F,a=a.replace(_,"")):m.test(a)&&(a+="e"))}if(_=w,_.test(a)){var A=_.exec(a);i=A[1],a=i+"i"}if(_=k,_.test(a)){var A=_.exec(a);i=A[1],t=A[2],_=r,_.test(i)&&(a=i+e[t])}if(_=v,_.test(a)){var A=_.exec(a);i=A[1],t=A[2],_=r,_.test(i)&&(a=i+o[t])}if(_=j,n=x,_.test(a)){var A=_.exec(a);i=A[1],_=l,_.test(i)&&(a=i)}else if(n.test(a)){var A=n.exec(a);i=A[1]+A[2],n=l,n.test(i)&&(a=i)}if(_=B,_.test(a)){var A=_.exec(a);i=A[1],_=l,n=h,g=C,(_.test(i)||n.test(i)&&!g.test(i))&&(a=i)}return _=S,n=l,_.test(a)&&n.test(a)&&(_=F,a=a.replace(_,"")),"y"==s&&(a=s.toLowerCase()+a.substr(1)),a};return A}(),s.Pipeline.registerFunction(s.stemmer,"stemmer"),/*!
2016-07-06 14:32:52 +00:00
* lunr.stopWordFilter
* Copyright (C) 2016 Oliver Nightingale
*/
2016-07-11 18:22:39 +00:00
s.generateStopWordFilter=function(e){var o=e.reduce(function(e,o){return e[o]=o,e},{});return function(e){return e&&o[e]!==e?e:void 0}},s.stopWordFilter=s.generateStopWordFilter(["a","able","about","across","after","all","almost","also","am","among","an","and","any","are","as","at","be","because","been","but","by","can","cannot","could","dear","did","do","does","either","else","ever","every","for","from","get","got","had","has","have","he","her","hers","him","his","how","however","i","if","in","into","is","it","its","just","least","let","like","likely","may","me","might","most","must","my","neither","no","nor","not","of","off","often","on","only","or","other","our","own","rather","said","say","says","she","should","since","so","some","than","that","the","their","them","then","there","these","they","this","tis","to","too","twas","us","wants","was","we","were","what","when","where","which","while","who","whom","why","will","with","would","yet","you","your"]),s.Pipeline.registerFunction(s.stopWordFilter,"stopWordFilter"),/*!
2016-07-06 14:32:52 +00:00
* lunr.trimmer
* Copyright (C) 2016 Oliver Nightingale
*/
2016-07-11 18:22:39 +00:00
s.trimmer=function(e){return e.replace(/^\W+/,"").replace(/\W+$/,"")},s.Pipeline.registerFunction(s.trimmer,"trimmer"),/*!
2016-07-06 14:32:52 +00:00
* lunr.stemmer
* Copyright (C) 2016 Oliver Nightingale
* Includes code from - http://tartarus.org/~martin/PorterStemmer/js.txt
*/
2016-07-11 18:22:39 +00:00
s.TokenStore=function(){this.root={docs:{}},this.length=0},s.TokenStore.load=function(e){var o=new this;return o.root=e.root,o.length=e.length,o},s.TokenStore.prototype.add=function(e,o,a){var a=a||this.root,i=e.charAt(0),t=e.slice(1);return i in a||(a[i]={docs:{}}),0===t.length?(a[i].docs[o.ref]=o,void(this.length+=1)):this.add(t,o,a[i])},s.TokenStore.prototype.has=function(e){if(!e)return!1;for(var o=this.root,a=0;a<e.length;a++){if(!o[e.charAt(a)])return!1;o=o[e.charAt(a)]}return!0},s.TokenStore.prototype.getNode=function(e){if(!e)return{};for(var o=this.root,a=0;a<e.length;a++){if(!o[e.charAt(a)])return{};o=o[e.charAt(a)]}return o},s.TokenStore.prototype.get=function(e,o){return this.getNode(e,o).docs||{}},s.TokenStore.prototype.count=function(e,o){return Object.keys(this.get(e,o)).length},s.TokenStore.prototype.remove=function(e,o){if(e){for(var a=this.root,i=0;i<e.length;i++){if(!(e.charAt(i)in a))return;a=a[e.charAt(i)]}delete a.docs[o]}},s.TokenStore.prototype.expand=function(e,o){var a=this.getNode(e),i=a.docs||{},o=o||[];return Object.keys(i).length&&o.push(e),Object.keys(a).forEach(function(a){"docs"!==a&&o.concat(this.expand(e+a,o))},this),o},s.TokenStore.prototype.toJSON=function(){return{root:this.root,length:this.length}},function(s,_){i=_,t="function"==typeof i?i.call(o,a,o,e):i,!(void 0!==t&&(e.exports=t))}(this,function(){return s})}()},function(e,o){"use strict";Object.defineProperty(o,"__esModule",{value:!0}),o["default"]={categories:[{name:"People",emojis:["grinning","grimacing","grin","joy","smiley","smile","sweat_smile","laughing","innocent","wink","blush","slightly_smiling_face","upside_down_face","relaxed","yum","relieved","heart_eyes","kissing_heart","kissing","kissing_smiling_eyes","kissing_closed_eyes","stuck_out_tongue_winking_eye","stuck_out_tongue_closed_eyes","stuck_out_tongue","money_mouth_face","nerd_face","sunglasses","hugging_face","smirk","no_mouth","neutral_face","expressionless","unamused","face_with_rolling_eyes","thinking_face","flushed","disappointed","worried","angry","rage","pensive","confused","slightly_frowning_face","white_frowning_face","persevere","confounded","tired_face","weary","triumph","open_mouth","scream","fearful","cold_sweat","hushed","frowning","anguished","cry","disappointed_relieved","sleepy","sweat","sob","dizzy_face","astonished","zipper_mouth_face","mask","face_with_thermometer","face_with_head_bandage","sleeping","zzz","hankey","smiling_imp","imp","japanese_ogre","japanese_goblin","skull","ghost","alien","robot_face","smiley_cat","smile_cat","joy_cat","heart_eyes_cat","smirk_cat","kissing_cat","scream_cat","crying_cat_face","pouting_cat","raised_hands","clap","wave","+1","-1","facepunch","fist","v","ok_hand","hand","open_hands","muscle","pray","point_up","point_up_2","point_down","point_left","point_right","middle_finger","raised_hand_with_fingers_splayed","the_horns","spock-hand","writing_hand","nail_care","lips","tongue","ear","nose","eye","eyes","bust_in_silhouette","busts_in_silhouette","speaking_head_in_silhouette","baby","boy","girl","man","woman","person_with_blond_hair","older_man","older_woman","man_with_gua_pi_mao","man_with_turban","cop","construction_worker","guardsman","sleuth_or_spy","santa","angel","princess","bride_with_veil","walking","runner","dancer","dancers","couple","two_men_holding_hands","two_women_holding_hands","bow","information_desk_person","no_good","ok_woman","raising_hand","person_with_pouting_face","person_frowning","haircut","massage","couple_with_heart","woman-heart-woman","man-heart-man","couplekiss","woman-kiss-woman","man-kiss-man","family","man-woman-girl","man-woman-girl-boy","man-woman-boy-boy","man-woman-girl-girl","woman-woman-boy","woman-woman-girl","woman-woman-girl-boy","woman-woman-boy-boy","woman-woman-girl-girl","man-man-boy","man-man-girl","man-man-girl-boy","man-man-boy-boy","man-man-girl-girl","womans_clothes","shirt","jeans","necktie","dress","bikini","kimono","lipstick","kiss","footprints","high_heel","sandal","boot","mans_shoe","athletic_shoe","womans_hat","tophat","helmet_with_white_cross","mortar_boar
short_names:["racing_car"],category:"Places",sort_order:6,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},volleyball:{name:"Volleyball",unified:"1F3D0",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f3d0.png",sheet_x:11,sheet_y:1,short_name:"volleyball",short_names:["volleyball"],category:"Activity",sort_order:6,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},banana:{name:"Banana",unified:"1F34C",variations:[],docomo:"E744",au:"EB35",softbank:null,google:"FE050",image:"1f34c.png",sheet_x:7,sheet_y:13,short_name:"banana",short_names:["banana"],category:"Foods",sort_order:6,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},bear:{name:"Bear Face",unified:"1F43B",variations:[],docomo:null,au:"E5C1",softbank:"E051",google:"FE1C1",image:"1f43b.png",sheet_x:13,sheet_y:23,short_name:"bear",short_names:["bear"],category:"Nature",sort_order:6,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},smile:{name:"Smiling Face with Open Mouth and Smiling Eyes",unified:"1F604",variations:[],docomo:"E6F0",au:"E471",softbank:"E415",google:"FE338",image:"1f604.png",sheet_x:26,sheet_y:19,short_name:"smile",short_names:["smile"],category:"People",sort_order:6,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:["C:","c:",":D",":-D"]},"flag-ad":{name:"Regional Indicator Symbol Letters AD",unified:"1F1E6-1F1E9",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1e6-1f1e9.png",sheet_x:32,sheet_y:34,short_name:"flag-ad",short_names:["flag-ad"],category:"Flags",sort_order:6,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},broken_heart:{name:"Broken Heart",unified:"1F494",variations:[],docomo:"E6EE",au:"E477",softbank:"E023",google:"FEB0E",image:"1f494.png",sheet_x:19,sheet_y:36,short_name:"broken_heart",short_names:["broken_heart"],category:"Symbols",sort_order:6,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:["</3"]},sweat_smile:{name:"Smiling Face with Open Mouth and Cold Sweat",unified:"1F605",variations:[],docomo:"E722",au:"E471-E5B1",softbank:"E415-E331",google:"FE331",image:"1f605.png",sheet_x:26,sheet_y:20,short_name:"sweat_smile",short_names:["sweat_smile"],category:"People",sort_order:7,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},printer:{name:"Printer",unified:"1F5A8",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f5a8.png",sheet_x:25,sheet_y:32,short_name:"printer",short_names:["printer"],category:"Objects",sort_order:7,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},rugby_football:{name:"Rugby Football",unified:"1F3C9",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f3c9.png",sheet_x:10,sheet_y:25,short_name:"rugby_football",short_names:["rugby_football"],category:"Activity",sort_order:7,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},heavy_heart_exclamation_mark_ornament:{name:"Heavy Heart Exclamation Mark Ornament",unified:"2763",variations:["2763-FE0F"],docomo:null,au:null,softbank:null,google:null,image:"2763.png",sheet_x:4,sheet_y:9,short_name:"heavy_heart_exclamation_mark_ornament",short_names:["heavy_heart_exclamation_mark_ornament"],category:"Symbols",sort_order:7,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-ao":{name:"Regional Indicator Symbol Letters AO",unified:"1F1E6-1F1F4",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1e6-1f1f4.png",sheet_x:33,sheet_y:0,short_name:"flag-ao",short_names:["flag-ao"],category:"Flags",sort_order:7,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},watermelon:{name:"Watermelon",unified:"1F349",variations:[],docomo:null,au:"E4CD",softbank:"E348",google:"FE054",image:"1f349.png",sheet_x:7,sheet_y:10,short_name:"watermelon",short_name
short_name:"sweet_potato",short_names:["sweet_potato"],category:"Foods",sort_order:18,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},hear_no_evil:{name:"Hear-No-Evil Monkey",unified:"1F649",variations:[],docomo:null,au:"EB52",softbank:null,google:"FE356",image:"1f649.png",sheet_x:28,sheet_y:21,short_name:"hear_no_evil",short_names:["hear_no_evil"],category:"Nature",sort_order:18,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-bh":{name:"Regional Indicator Symbol Letters BH",unified:"1F1E7-1F1ED",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1e7-1f1ed.png",sheet_x:33,sheet_y:15,short_name:"flag-bh",short_names:["flag-bh"],category:"Flags",sort_order:18,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},star_and_crescent:{name:"Star and Crescent",unified:"262A",variations:["262A-FE0F"],docomo:null,au:null,softbank:null,google:null,image:"262a.png",sheet_x:1,sheet_y:20,short_name:"star_and_crescent",short_names:["star_and_crescent"],category:"Symbols",sort_order:18,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},kissing_heart:{name:"Face Throwing a Kiss",unified:"1F618",variations:[],docomo:"E726",au:"EACF",softbank:"E418",google:"FE32C",image:"1f618.png",sheet_x:26,sheet_y:39,short_name:"kissing_heart",short_names:["kissing_heart"],category:"People",sort_order:18,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},camera_with_flash:{name:"Camera with Flash",unified:"1F4F8",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f4f8.png",sheet_x:22,sheet_y:18,short_name:"camera_with_flash",short_names:["camera_with_flash"],category:"Objects",sort_order:18,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},ice_skate:{name:"Ice Skate",unified:"26F8",variations:[],docomo:null,au:null,softbank:null,google:null,image:"26f8.png",sheet_x:2,sheet_y:37,short_name:"ice_skate",short_names:["ice_skate"],category:"Activity",sort_order:19,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},oncoming_automobile:{name:"Oncoming Automobile",unified:"1F698",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f698.png",sheet_x:29,sheet_y:36,short_name:"oncoming_automobile",short_names:["oncoming_automobile"],category:"Places",sort_order:19,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},speak_no_evil:{name:"Speak-No-Evil Monkey",unified:"1F64A",variations:[],docomo:null,au:"EB51",softbank:null,google:"FE355",image:"1f64a.png",sheet_x:28,sheet_y:22,short_name:"speak_no_evil",short_names:["speak_no_evil"],category:"Nature",sort_order:19,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},honey_pot:{name:"Honey Pot",unified:"1F36F",variations:[],docomo:null,au:"EB59",softbank:null,google:"FE97E",image:"1f36f.png",sheet_x:8,sheet_y:7,short_name:"honey_pot",short_names:["honey_pot"],category:"Foods",sort_order:19,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},kissing:{name:"Kissing Face",unified:"1F617",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f617.png",sheet_x:26,sheet_y:38,short_name:"kissing",short_names:["kissing"],category:"People",sort_order:19,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},video_camera:{name:"Video Camera",unified:"1F4F9",variations:[],docomo:"E677",au:"E57E",softbank:"E03D",google:"FE4F9",image:"1f4f9.png",sheet_x:22,sheet_y:19,short_name:"video_camera",short_names:["video_camera"],category:"Objects",sort_order:19,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},om_symbol:{name:"Om Symbol",unified:"1F549",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f549.png",sheet_x:24,sheet_y:5,short_name:"om_symbol",short_names:["om_symbol"],category:"Symbols",sort_order:19,h
google:"FE02B",image:"2648.png",sheet_x:1,sheet_y:26,short_name:"aries",short_names:["aries"],category:"Symbols",sort_order:28,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},hugging_face:{name:"Hugging Face",unified:"1F917",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f917.png",sheet_x:32,sheet_y:8,short_name:"hugging_face",short_names:["hugging_face"],category:"People",sort_order:28,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-bq":{name:"Regional Indicator Symbol Letters BQ",unified:"1F1E7-1F1F6",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1e7-1f1f6.png",sheet_x:33,sheet_y:22,short_name:"flag-bq",short_names:["flag-bq"],category:"Flags",sort_order:28,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},bullettrain_front:{name:"High-Speed Train with Bullet Nose",unified:"1F685",variations:[],docomo:"E65D",au:"E4B0",softbank:"E01F",google:"FE7E3",image:"1f685.png",sheet_x:29,sheet_y:17,short_name:"bullettrain_front",short_names:["bullettrain_front"],category:"Places",sort_order:28,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},radio:{name:"Radio",unified:"1F4FB",variations:[],docomo:null,au:"E5B9",softbank:"E128",google:"FE81F",image:"1f4fb.png",sheet_x:22,sheet_y:21,short_name:"radio",short_names:["radio"],category:"Objects",sort_order:28,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},hotdog:{name:"Hot Dog",unified:"1F32D",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f32d.png",sheet_x:6,sheet_y:23,short_name:"hotdog",short_names:["hotdog"],category:"Foods",sort_order:28,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},boar:{name:"Boar",unified:"1F417",variations:[],docomo:null,au:"EB24",softbank:"E52F",google:"FE1D5",image:"1f417.png",sheet_x:12,sheet_y:28,short_name:"boar",short_names:["boar"],category:"Nature",sort_order:28,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},studio_microphone:{name:"Studio Microphone",unified:"1F399",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f399.png",sheet_x:9,sheet_y:10,short_name:"studio_microphone",short_names:["studio_microphone"],category:"Objects",sort_order:29,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},pizza:{name:"Slice of Pizza",unified:"1F355",variations:[],docomo:null,au:"EB3B",softbank:null,google:"FE975",image:"1f355.png",sheet_x:7,sheet_y:22,short_name:"pizza",short_names:["pizza"],category:"Foods",sort_order:29,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-ba":{name:"Regional Indicator Symbol Letters BA",unified:"1F1E7-1F1E6",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1e7-1f1e6.png",sheet_x:33,sheet_y:9,short_name:"flag-ba",short_names:["flag-ba"],category:"Flags",sort_order:29,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},mountain_bicyclist:{name:"Mountain Bicyclist",unified:"1F6B5",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f6b5.png",sheet_x:30,sheet_y:34,short_name:"mountain_bicyclist",short_names:["mountain_bicyclist"],category:"Activity",sort_order:29,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,skin_variations:{"1F6B5-1F3FB":{unified:"1F6B5-1F3FB",image:"1f6b5-1f3fb.png",sheet_x:30,sheet_y:35,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F6B5-1F3FC":{unified:"1F6B5-1F3FC",image:"1f6b5-1f3fc.png",sheet_x:30,sheet_y:36,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F6B5-1F3FD":{unified:"1F6B5-1F3FD",image:"1f6b5-1f3fd.png",sheet_x:30,sheet_y:37,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F6B5-1F3FE":{unified:"1F6B5-1F3FE",image:"1f6b5-1f3fe.png",sheet_x:30,sheet_y:38,has_img_apple:!0,has_im
variations:[],docomo:"E724",au:"EB5D",softbank:"E416",google:"FE33D",image:"1f621.png",sheet_x:27,sheet_y:7,short_name:"rage",short_names:["rage"],category:"People",sort_order:40,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},rice:{name:"Cooked Rice",unified:"1F35A",variations:[],docomo:"E74C",au:"EAB4",softbank:"E33E",google:"FE96A",image:"1f35a.png",sheet_x:7,sheet_y:27,short_name:"rice",short_names:["rice"],category:"Foods",sort_order:40,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},airplane_arriving:{name:"Airplane Arriving",unified:"1F6EC",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f6ec.png",sheet_x:31,sheet_y:39,short_name:"airplane_arriving",short_names:["airplane_arriving"],category:"Places",sort_order:40,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},id:{name:"Squared Id",unified:"1F194",variations:[],docomo:"E6D8",au:"EA88",softbank:"E229",google:"FEB81",image:"1f194.png",sheet_x:4,sheet_y:40,short_name:"id",short_names:["id"],category:"Symbols",sort_order:40,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-cm":{name:"Regional Indicator Symbol Letters CM",unified:"1F1E8-1F1F2",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1e8-1f1f2.png",sheet_x:33,sheet_y:39,short_name:"flag-cm",short_names:["flag-cm"],category:"Flags",sort_order:40,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},turtle:{name:"Turtle",unified:"1F422",variations:[],docomo:null,au:"E5D4",softbank:null,google:"FE1DC",image:"1f422.png",sheet_x:12,sheet_y:39,short_name:"turtle",short_names:["turtle"],category:"Nature",sort_order:40,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},electric_plug:{name:"Electric Plug",unified:"1F50C",variations:[],docomo:null,au:"E589",softbank:null,google:"FE4FE",image:"1f50c.png",sheet_x:22,sheet_y:37,short_name:"electric_plug",short_names:["electric_plug"],category:"Objects",sort_order:40,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},tropical_fish:{name:"Tropical Fish",unified:"1F420",variations:[],docomo:"E751",au:"EB1D",softbank:"E522",google:"FE1C9",image:"1f420.png",sheet_x:12,sheet_y:37,short_name:"tropical_fish",short_names:["tropical_fish"],category:"Nature",sort_order:41,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},bulb:{name:"Electric Light Bulb",unified:"1F4A1",variations:[],docomo:"E6FB",au:"E476",softbank:"E10F",google:"FEB56",image:"1f4a1.png",sheet_x:20,sheet_y:8,short_name:"bulb",short_names:["bulb"],category:"Objects",sort_order:41,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},pensive:{name:"Pensive Face",unified:"1F614",variations:[],docomo:"E720",au:"EAC0",softbank:"E403",google:"FE340",image:"1f614.png",sheet_x:26,sheet_y:35,short_name:"pensive",short_names:["pensive"],category:"People",sort_order:41,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},rice_cracker:{name:"Rice Cracker",unified:"1F358",variations:[],docomo:null,au:"EAB3",softbank:"E33D",google:"FE969",image:"1f358.png",sheet_x:7,sheet_y:25,short_name:"rice_cracker",short_names:["rice_cracker"],category:"Foods",sort_order:41,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},art:{name:"Artist Palette",unified:"1F3A8",variations:[],docomo:"E67B",au:"E59C",softbank:"E502",google:"FE804",image:"1f3a8.png",sheet_x:9,sheet_y:23,short_name:"art",short_names:["art"],category:"Activity",sort_order:41,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},boat:{name:"Sailboat",unified:"26F5",variations:["26F5-FE0F"],docomo:"E6A3",au:"E4B4",softbank:"E01C",google:"FE7EA",image:"26f5.png",sheet_x:2,sheet_y:35,short_name:"boat",short_names:["boat","sailboat"],category:"Places",sort_order:41,has_img_apple:!0,has_img_google:!0,
has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},chocolate_bar:{name:"Chocolate Bar",unified:"1F36B",variations:[],docomo:null,au:"EB4D",softbank:null,google:"FE97A",image:"1f36b.png",sheet_x:8,sheet_y:3,short_name:"chocolate_bar",short_names:["chocolate_bar"],category:"Foods",sort_order:52,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},u6708:{name:"Squared Cjk Unified Ideograph-6708",unified:"1F237",variations:["1F237-FE0F"],docomo:null,au:null,softbank:"E217",google:"FEB3B",image:"1f237.png",sheet_x:5,sheet_y:15,short_name:"u6708",short_names:["u6708"],category:"Symbols",sort_order:52,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},fearful:{name:"Fearful Face",unified:"1F628",variations:[],docomo:"E757",au:"EAC6",softbank:"E40B",google:"FE33B",image:"1f628.png",sheet_x:27,sheet_y:14,short_name:"fearful",short_names:["fearful"],category:"People",sort_order:52,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-cg":{name:"Regional Indicator Symbol Letters CG",unified:"1F1E8-1F1EC",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1e8-1f1ec.png",sheet_x:33,sheet_y:34,short_name:"flag-cg",short_names:["flag-cg"],category:"Flags",sort_order:52,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},dromedary_camel:{name:"Dromedary Camel",unified:"1F42A",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f42a.png",sheet_x:13,sheet_y:6,short_name:"dromedary_camel",short_names:["dromedary_camel"],category:"Nature",sort_order:53,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},popcorn:{name:"Popcorn",unified:"1F37F",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f37f.png",sheet_x:8,sheet_y:23,short_name:"popcorn",short_names:["popcorn"],category:"Foods",sort_order:53,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},eight_pointed_black_star:{name:"Eight Pointed Black Star",unified:"2734",variations:["2734-FE0F"],docomo:"E6F8",au:"E479",softbank:"E205",google:"FEB61",image:"2734.png",sheet_x:4,sheet_y:0,short_name:"eight_pointed_black_star",short_names:["eight_pointed_black_star"],category:"Symbols",sort_order:53,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},gem:{name:"Gem Stone",unified:"1F48E",variations:[],docomo:"E71B",au:"E514",softbank:"E035",google:"FE826",image:"1f48e.png",sheet_x:19,sheet_y:30,short_name:"gem",short_names:["gem"],category:"Objects",sort_order:53,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},space_invader:{name:"Alien Monster",unified:"1F47E",variations:[],docomo:null,au:"E4EC",softbank:"E12B",google:"FE1B1",image:"1f47e.png",sheet_x:18,sheet_y:25,short_name:"space_invader",short_names:["space_invader"],category:"Activity",sort_order:53,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},vertical_traffic_light:{name:"Vertical Traffic Light",unified:"1F6A6",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f6a6.png",sheet_x:30,sheet_y:14,short_name:"vertical_traffic_light",short_names:["vertical_traffic_light"],category:"Places",sort_order:53,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},cold_sweat:{name:"Face with Open Mouth and Cold Sweat",unified:"1F630",variations:[],docomo:"E723",au:"EACB",softbank:"E40F",google:"FE325",image:"1f630.png",sheet_x:27,sheet_y:22,short_name:"cold_sweat",short_names:["cold_sweat"],category:"People",sort_order:53,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-cd":{name:"Regional Indicator Symbol Letters CD",unified:"1F1E8-1F1E9",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1e8-1f1e9.png",sheet_x:33,sheet_y:32,short_name:"flag-cd",short_names:["flag-cd"],category:"Flags",sort_order:53,has_img_apple:!0,has
emoticons:[]},hocho:{name:"Hocho",unified:"1F52A",variations:[],docomo:null,au:"E57F",softbank:null,google:"FE4FA",image:"1f52a.png",sheet_x:23,sheet_y:26,short_name:"hocho",short_names:["hocho","knife"],category:"Objects",sort_order:65,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},dove_of_peace:{name:"Dove of Peace",unified:"1F54A",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f54a.png",sheet_x:24,sheet_y:6,short_name:"dove_of_peace",short_names:["dove_of_peace"],category:"Nature",sort_order:65,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},cl:{name:"Squared Cl",unified:"1F191",variations:[],docomo:"E6DB",au:"E5AB",softbank:null,google:"FEB84",image:"1f191.png",sheet_x:4,sheet_y:37,short_name:"cl",short_names:["cl"],category:"Symbols",sort_order:66,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},dog2:{name:"Dog",unified:"1F415",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f415.png",sheet_x:12,sheet_y:26,short_name:"dog2",short_names:["dog2"],category:"Nature",sort_order:66,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},fork_and_knife:{name:"Fork and Knife",unified:"1F374",variations:[],docomo:"E66F",au:"E4AC",softbank:"E043",google:"FE980",image:"1f374.png",sheet_x:8,sheet_y:12,short_name:"fork_and_knife",short_names:["fork_and_knife"],category:"Foods",sort_order:66,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},dagger_knife:{name:"Dagger Knife",unified:"1F5E1",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f5e1.png",sheet_x:26,sheet_y:4,short_name:"dagger_knife",short_names:["dagger_knife"],category:"Objects",sort_order:66,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},mountain:{name:"Mountain",unified:"26F0",variations:[],docomo:null,au:null,softbank:null,google:null,image:"26f0.png",sheet_x:2,sheet_y:30,short_name:"mountain",short_names:["mountain"],category:"Places",sort_order:66,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},face_with_thermometer:{name:"Face with Thermometer",unified:"1F912",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f912.png",sheet_x:32,sheet_y:3,short_name:"face_with_thermometer",short_names:["face_with_thermometer"],category:"People",sort_order:66,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-eg":{name:"Regional Indicator Symbol Letters EG",unified:"1F1EA-1F1EC",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1ea-1f1ec.png",sheet_x:34,sheet_y:19,short_name:"flag-eg",short_names:["flag-eg"],category:"Flags",sort_order:66,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},poodle:{name:"Poodle",unified:"1F429",variations:[],docomo:"E6A1",au:"E4DF",softbank:"E052",google:"FE1D8",image:"1f429.png",sheet_x:13,sheet_y:5,short_name:"poodle",short_names:["poodle"],category:"Nature",sort_order:67,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-sv":{name:"Regional Indicator Symbol Letters SV",unified:"1F1F8-1F1FB",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f8-1f1fb.png",sheet_x:38,sheet_y:2,short_name:"flag-sv",short_names:["flag-sv"],category:"Flags",sort_order:67,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},snow_capped_mountain:{name:"Snow Capped Mountain",unified:"1F3D4",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f3d4.png",sheet_x:11,sheet_y:5,short_name:"snow_capped_mountain",short_names:["snow_capped_mountain"],category:"Places",sort_order:67,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},face_with_head_bandage:{name:"Face with Head-Bandage",unified:"1F915",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f915.png",sheet_x:32,sh
unified:"1F639",variations:[],docomo:"E72A",au:"EB63",softbank:"E412",google:"FE34A",image:"1f639.png",sheet_x:27,sheet_y:31,short_name:"joy_cat",short_names:["joy_cat"],category:"People",sort_order:81,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},no_mobile_phones:{name:"No Mobile Phones",unified:"1F4F5",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f4f5.png",sheet_x:22,sheet_y:15,short_name:"no_mobile_phones",short_names:["no_mobile_phones"],category:"Symbols",sort_order:81,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},heart_eyes_cat:{name:"Smiling Cat Face with Heart-Shaped Eyes",unified:"1F63B",variations:[],docomo:"E726",au:"EB65",softbank:"E106",google:"FE34C",image:"1f63b.png",sheet_x:27,sheet_y:33,short_name:"heart_eyes_cat",short_names:["heart_eyes_cat"],category:"People",sort_order:82,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},syringe:{name:"Syringe",unified:"1F489",variations:[],docomo:null,au:"E510",softbank:"E13B",google:"FE509",image:"1f489.png",sheet_x:19,sheet_y:25,short_name:"syringe",short_names:["syringe"],category:"Objects",sort_order:82,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},exclamation:{name:"Heavy Exclamation Mark Symbol",unified:"2757",variations:["2757-FE0F"],docomo:"E702",au:"E482",softbank:"E021",google:"FEB04",image:"2757.png",sheet_x:4,sheet_y:8,short_name:"exclamation",short_names:["exclamation","heavy_exclamation_mark"],category:"Symbols",sort_order:82,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},city_sunset:{name:"Cityscape at Dusk",unified:"1F306",variations:[],docomo:null,au:"E5DA",softbank:"E146",google:"FE00B",image:"1f306.png",sheet_x:5,sheet_y:27,short_name:"city_sunset",short_names:["city_sunset"],category:"Places",sort_order:82,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-gm":{name:"Regional Indicator Symbol Letters GM",unified:"1F1EC-1F1F2",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1ec-1f1f2.png",sheet_x:34,sheet_y:40,short_name:"flag-gm",short_names:["flag-gm"],category:"Flags",sort_order:82,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},four_leaf_clover:{name:"Four Leaf Clover",unified:"1F340",variations:[],docomo:"E741",au:"E513",softbank:"E110",google:"FE03C",image:"1f340.png",sheet_x:7,sheet_y:1,short_name:"four_leaf_clover",short_names:["four_leaf_clover"],category:"Nature",sort_order:82,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},grey_exclamation:{name:"White Exclamation Mark Ornament",unified:"2755",variations:[],docomo:"E702",au:"E482",softbank:"E337",google:"FEB0B",image:"2755.png",sheet_x:4,sheet_y:7,short_name:"grey_exclamation",short_names:["grey_exclamation"],category:"Symbols",sort_order:83,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},smirk_cat:{name:"Cat Face with Wry Smile",unified:"1F63C",variations:[],docomo:"E753",au:"EB6A",softbank:"E404",google:"FE34F",image:"1f63c.png",sheet_x:27,sheet_y:34,short_name:"smirk_cat",short_names:["smirk_cat"],category:"People",sort_order:83,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},thermometer:{name:"Thermometer",unified:"1F321",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f321.png",sheet_x:6,sheet_y:13,short_name:"thermometer",short_names:["thermometer"],category:"Objects",sort_order:83,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},cityscape:{name:"Cityscape",unified:"1F3D9",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f3d9.png",sheet_x:11,sheet_y:10,short_name:"cityscape",short_names:["cityscape"],category:"Places",sort_order:83,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-ge":{name:"Regional Indicator Symbol
sort_order:95,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},v:{name:"Victory Hand",unified:"270C",variations:["270C-FE0F"],docomo:"E694",au:"E5A6",softbank:"E011",google:"FEB94",image:"270c.png",sheet_x:3,sheet_y:21,short_name:"v",short_names:["v"],category:"People",sort_order:95,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,skin_variations:{"270C-1F3FB":{unified:"270C-1F3FB",image:"270c-1f3fb.png",sheet_x:3,sheet_y:22,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"270C-1F3FC":{unified:"270C-1F3FC",image:"270c-1f3fc.png",sheet_x:3,sheet_y:23,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"270C-1F3FD":{unified:"270C-1F3FD",image:"270c-1f3fd.png",sheet_x:3,sheet_y:24,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"270C-1F3FE":{unified:"270C-1F3FE",image:"270c-1f3fe.png",sheet_x:3,sheet_y:25,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"270C-1F3FF":{unified:"270C-1F3FF",image:"270c-1f3ff.png",sheet_x:3,sheet_y:26,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0}},emoticons:[]},children_crossing:{name:"Children Crossing",unified:"1F6B8",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f6b8.png",sheet_x:31,sheet_y:6,short_name:"children_crossing",short_names:["children_crossing"],category:"Symbols",sort_order:95,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},bouquet:{name:"Bouquet",unified:"1F490",variations:[],docomo:null,au:"EA95",softbank:"E306",google:"FE828",image:"1f490.png",sheet_x:19,sheet_y:32,short_name:"bouquet",short_names:["bouquet"],category:"Nature",sort_order:95,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},bellhop_bell:{name:"Bellhop Bell",unified:"1F6CE",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f6ce.png",sheet_x:31,sheet_y:28,short_name:"bellhop_bell",short_names:["bellhop_bell"],category:"Objects",sort_order:95,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-gw":{name:"Regional Indicator Symbol Letters GW",unified:"1F1EC-1F1FC",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1ec-1f1fc.png",sheet_x:35,sheet_y:7,short_name:"flag-gw",short_names:["flag-gw"],category:"Flags",sort_order:95,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},beginner:{name:"Japanese Symbol for Beginner",unified:"1F530",variations:[],docomo:null,au:"E480",softbank:"E209",google:"FE044",image:"1f530.png",sheet_x:23,sheet_y:32,short_name:"beginner",short_names:["beginner"],category:"Symbols",sort_order:96,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},house:{name:"House Building",unified:"1F3E0",variations:[],docomo:"E663",au:"E4AB",softbank:"E036",google:"FE4B0",image:"1f3e0.png",sheet_x:11,sheet_y:17,short_name:"house",short_names:["house"],category:"Places",sort_order:96,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},mushroom:{name:"Mushroom",unified:"1F344",variations:[],docomo:null,au:"EB37",softbank:null,google:"FE04B",image:"1f344.png",sheet_x:7,sheet_y:5,short_name:"mushroom",short_names:["mushroom"],category:"Nature",sort_order:96,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},frame_with_picture:{name:"Frame with Picture",unified:"1F5BC",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f5bc.png",sheet_x:25,sheet_y:35,short_name:"frame_with_picture",short_names:["frame_with_picture"],category:"Objects",sort_order:96,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},ok_hand:{name:"Ok Hand Sign",unified:"1F44C",variations:[],docomo:"E70B",au:"EAD4",softbank:"E420",google:"FEB9F",image:"1f44c.png",sheet_x:14,sheet_y:39,short_name:"ok_hand",short_names:["ok_hand"],category:"People",sort_order:96,has_img_apple:!0,has_i
has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},middle_finger:{name:"Reversed Hand with Middle Finger Extended",unified:"1F595",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f595.png",sheet_x:25,sheet_y:19,short_name:"middle_finger",short_names:["middle_finger","reversed_hand_with_middle_finger_extended"],category:"People",sort_order:106,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,skin_variations:{"1F595-1F3FB":{unified:"1F595-1F3FB",image:"1f595-1f3fb.png",sheet_x:25,sheet_y:20,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F595-1F3FC":{unified:"1F595-1F3FC",image:"1f595-1f3fc.png",sheet_x:25,sheet_y:21,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F595-1F3FD":{unified:"1F595-1F3FD",image:"1f595-1f3fd.png",sheet_x:25,sheet_y:22,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F595-1F3FE":{unified:"1F595-1F3FE",image:"1f595-1f3fe.png",sheet_x:25,sheet_y:23,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F595-1F3FF":{unified:"1F595-1F3FF",image:"1f595-1f3ff.png",sheet_x:25,sheet_y:24,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0}},emoticons:[]},"flag-ie":{name:"Regional Indicator Symbol Letters IE",unified:"1F1EE-1F1EA",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1ee-1f1ea.png",sheet_x:35,sheet_y:17,short_name:"flag-ie",short_names:["flag-ie"],category:"Flags",sort_order:106,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},dolls:{name:"Japanese Dolls",unified:"1F38E",variations:[],docomo:null,au:"EAE4",softbank:"E438",google:"FE519",image:"1f38e.png",sheet_x:9,sheet_y:2,short_name:"dolls",short_names:["dolls"],category:"Objects",sort_order:107,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},globe_with_meridians:{name:"Globe with Meridians",unified:"1F310",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f310.png",sheet_x:5,sheet_y:37,short_name:"globe_with_meridians",short_names:["globe_with_meridians"],category:"Symbols",sort_order:107,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-im":{name:"Regional Indicator Symbol Letters IM",unified:"1F1EE-1F1F2",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1ee-1f1f2.png",sheet_x:35,sheet_y:19,short_name:"flag-im",short_names:["flag-im"],category:"Flags",sort_order:107,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},waning_crescent_moon:{name:"Waning Crescent Moon Symbol",unified:"1F318",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f318.png",sheet_x:6,sheet_y:4,short_name:"waning_crescent_moon",short_names:["waning_crescent_moon"],category:"Nature",sort_order:107,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},raised_hand_with_fingers_splayed:{name:"Raised Hand with Fingers Splayed",unified:"1F590",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f590.png",sheet_x:25,sheet_y:13,short_name:"raised_hand_with_fingers_splayed",short_names:["raised_hand_with_fingers_splayed"],category:"People",sort_order:107,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,skin_variations:{"1F590-1F3FB":{unified:"1F590-1F3FB",image:"1f590-1f3fb.png",sheet_x:25,sheet_y:14,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F590-1F3FC":{unified:"1F590-1F3FC",image:"1f590-1f3fc.png",sheet_x:25,sheet_y:15,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F590-1F3FD":{unified:"1F590-1F3FD",image:"1f590-1f3fd.png",sheet_x:25,sheet_y:16,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F590-1F3FE":{unified:"1F590-1F3FE",image:"1f590-1f3fe.png",sheet_x:25,sheet_y:17,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F590-1F3FF":{unified:"1F590-1F3FF",image:
google:null,image:"1f1f0-1f1fc.png",sheet_x:35,sheet_y:38,short_name:"flag-kw",short_names:["flag-kw"],category:"Flags",sort_order:119,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},mens:{name:"Mens Symbol",unified:"1F6B9",variations:[],docomo:null,au:null,softbank:"E138",google:"FEB33",image:"1f6b9.png",sheet_x:31,sheet_y:7,short_name:"mens",short_names:["mens"],category:"Symbols",sort_order:120,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},dizzy:{name:"Dizzy Symbol",unified:"1F4AB",variations:[],docomo:null,au:"EB5C",softbank:"E407",google:"FEB5F",image:"1f4ab.png",sheet_x:20,sheet_y:23,short_name:"dizzy",short_names:["dizzy"],category:"Nature",sort_order:120,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},speaking_head_in_silhouette:{name:"Speaking Head in Silhouette",unified:"1F5E3",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f5e3.png",sheet_x:26,sheet_y:5,short_name:"speaking_head_in_silhouette",short_names:["speaking_head_in_silhouette"],category:"People",sort_order:120,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-kg":{name:"Regional Indicator Symbol Letters KG",unified:"1F1F0-1F1EC",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f0-1f1ec.png",sheet_x:35,sheet_y:31,short_name:"flag-kg",short_names:["flag-kg"],category:"Flags",sort_order:120,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},mailbox_with_no_mail:{name:"Open Mailbox with Lowered Flag",unified:"1F4ED",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f4ed.png",sheet_x:22,sheet_y:7,short_name:"mailbox_with_no_mail",short_names:["mailbox_with_no_mail"],category:"Objects",sort_order:120,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},sparkles:{name:"Sparkles",unified:"2728",variations:[],docomo:"E6FA",au:"EAAB",softbank:"E32E",google:"FEB60",image:"2728.png",sheet_x:3,sheet_y:39,short_name:"sparkles",short_names:["sparkles"],category:"Nature",sort_order:121,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},baby:{name:"Baby",unified:"1F476",variations:[],docomo:null,au:"EB18",softbank:"E51A",google:"FE1A9",image:"1f476.png",sheet_x:17,sheet_y:38,short_name:"baby",short_names:["baby"],category:"People",sort_order:121,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,skin_variations:{"1F476-1F3FB":{unified:"1F476-1F3FB",image:"1f476-1f3fb.png",sheet_x:17,sheet_y:39,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F476-1F3FC":{unified:"1F476-1F3FC",image:"1f476-1f3fc.png",sheet_x:17,sheet_y:40,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F476-1F3FD":{unified:"1F476-1F3FD",image:"1f476-1f3fd.png",sheet_x:18,sheet_y:0,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F476-1F3FE":{unified:"1F476-1F3FE",image:"1f476-1f3fe.png",sheet_x:18,sheet_y:1,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F476-1F3FF":{unified:"1F476-1F3FF",image:"1f476-1f3ff.png",sheet_x:18,sheet_y:2,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0}},emoticons:[]},"package":{name:"Package",unified:"1F4E6",variations:[],docomo:"E685",au:"E51F",softbank:"E112",google:"FE535",image:"1f4e6.png",sheet_x:22,sheet_y:0,short_name:"package",short_names:["package"],category:"Objects",sort_order:121,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},womens:{name:"Womens Symbol",unified:"1F6BA",variations:[],docomo:null,au:null,softbank:"E139",google:"FEB34",image:"1f6ba.png",sheet_x:31,sheet_y:8,short_name:"womens",short_names:["womens"],category:"Symbols",sort_order:121,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-la":{name:"Regional Indicator Symbol Letters LA",unified:"1F1F1-1F1E6",variations:[],docomo:nu
sheet_x:18,sheet_y:35,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F482-1F3FC":{unified:"1F482-1F3FC",image:"1f482-1f3fc.png",sheet_x:18,sheet_y:36,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F482-1F3FD":{unified:"1F482-1F3FD",image:"1f482-1f3fd.png",sheet_x:18,sheet_y:37,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F482-1F3FE":{unified:"1F482-1F3FE",image:"1f482-1f3fe.png",sheet_x:18,sheet_y:38,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F482-1F3FF":{unified:"1F482-1F3FF",image:"1f482-1f3ff.png",sheet_x:18,sheet_y:39,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0}},emoticons:[]},fire:{name:"Fire",unified:"1F525",variations:[],docomo:null,au:"E47B",softbank:"E11D",google:"FE4F6",image:"1f525.png",sheet_x:23,sheet_y:21,short_name:"fire",short_names:["fire"],category:"Nature",sort_order:133,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},free:{name:"Squared Free",unified:"1F193",variations:[],docomo:"E6D7",au:"E578",softbank:null,google:"FEB21",image:"1f193.png",sheet_x:4,sheet_y:39,short_name:"free",short_names:["free"],category:"Symbols",sort_order:133,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-mw":{name:"Regional Indicator Symbol Letters MW",unified:"1F1F2-1F1FC",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f2-1f1fc.png",sheet_x:36,sheet_y:30,short_name:"flag-mw",short_names:["flag-mw"],category:"Flags",sort_order:133,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},calendar:{name:"Tear-off Calendar",unified:"1F4C6",variations:[],docomo:null,au:"E56A",softbank:null,google:"FE549",image:"1f4c6.png",sheet_x:21,sheet_y:9,short_name:"calendar",short_names:["calendar"],category:"Objects",sort_order:133,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},spiral_calendar_pad:{name:"Spiral Calendar Pad",unified:"1F5D3",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f5d3.png",sheet_x:26,sheet_y:0,short_name:"spiral_calendar_pad",short_names:["spiral_calendar_pad"],category:"Objects",sort_order:134,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},boom:{name:"Collision Symbol",unified:"1F4A5",variations:[],docomo:"E705",au:"E5B0",softbank:null,google:"FEB5A",image:"1f4a5.png",sheet_x:20,sheet_y:12,short_name:"boom",short_names:["boom","collision"],category:"Nature",sort_order:134,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-my":{name:"Regional Indicator Symbol Letters MY",unified:"1F1F2-1F1FE",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f2-1f1fe.png",sheet_x:36,sheet_y:32,short_name:"flag-my",short_names:["flag-my"],category:"Flags",sort_order:134,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},zero:{name:"Keycap 0",unified:"0030-20E3",variations:["0030-FE0F-20E3"],docomo:"E6EB",au:"E5AC",softbank:"E225",google:"FE837",image:"0030-20e3.png",sheet_x:32,sheet_y:23,short_name:"zero",short_names:["zero"],category:"Symbols",sort_order:134,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},sleuth_or_spy:{name:"Sleuth or Spy",unified:"1F575",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f575.png",sheet_x:24,sheet_y:39,short_name:"sleuth_or_spy",short_names:["sleuth_or_spy"],category:"People",sort_order:134,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,skin_variations:{"1F575-1F3FB":{unified:"1F575-1F3FB",image:"1f575-1f3fb.png",sheet_x:24,sheet_y:40,has_img_apple:!0,has_img_google:!1,has_img_twitter:!1,has_img_emojione:!0},"1F575-1F3FC":{unified:"1F575-1F3FC",image:"1f575-1f3fc.png",sheet_x:25,sheet_y:0,has_img_apple:!0,has_img_google:!1,has_img_twitter:!1,has_img_emojione:!0},"1F575-1F3FD":{unified:"1F575-1F3FD",image:"1f575-1f3fd.png",s
short_names:["information_desk_person"],category:"People",sort_order:147,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,skin_variations:{"1F481-1F3FB":{unified:"1F481-1F3FB",image:"1f481-1f3fb.png",sheet_x:18,sheet_y:29,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F481-1F3FC":{unified:"1F481-1F3FC",image:"1f481-1f3fc.png",sheet_x:18,sheet_y:30,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F481-1F3FD":{unified:"1F481-1F3FD",image:"1f481-1f3fd.png",sheet_x:18,sheet_y:31,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F481-1F3FE":{unified:"1F481-1F3FE",image:"1f481-1f3fe.png",sheet_x:18,sheet_y:32,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F481-1F3FF":{unified:"1F481-1F3FF",image:"1f481-1f3ff.png",sheet_x:18,sheet_y:33,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0}},emoticons:[]},ocean:{name:"Water Wave",unified:"1F30A",variations:[],docomo:"E73F",au:"EB7C",softbank:"E43E",google:"FE038",image:"1f30a.png",sheet_x:5,sheet_y:31,short_name:"ocean",short_names:["ocean"],category:"Nature",sort_order:147,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},double_vertical_bar:{name:"Double Vertical Bar",unified:"23F8",variations:[],docomo:null,au:null,softbank:null,google:null,image:"23f8.png",sheet_x:0,sheet_y:29,short_name:"double_vertical_bar",short_names:["double_vertical_bar"],category:"Symbols",sort_order:148,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},green_book:{name:"Green Book",unified:"1F4D7",variations:[],docomo:"E683",au:"E565",softbank:"E148",google:"FE4FF",image:"1f4d7.png",sheet_x:21,sheet_y:26,short_name:"green_book",short_names:["green_book"],category:"Objects",sort_order:148,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},no_good:{name:"Face with No Good Gesture",unified:"1F645",variations:[],docomo:"E72F",au:"EAD7",softbank:"E423",google:"FE351",image:"1f645.png",sheet_x:28,sheet_y:2,short_name:"no_good",short_names:["no_good"],category:"People",sort_order:148,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,skin_variations:{"1F645-1F3FB":{unified:"1F645-1F3FB",image:"1f645-1f3fb.png",sheet_x:28,sheet_y:3,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F645-1F3FC":{unified:"1F645-1F3FC",image:"1f645-1f3fc.png",sheet_x:28,sheet_y:4,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F645-1F3FD":{unified:"1F645-1F3FD",image:"1f645-1f3fd.png",sheet_x:28,sheet_y:5,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F645-1F3FE":{unified:"1F645-1F3FE",image:"1f645-1f3fe.png",sheet_x:28,sheet_y:6,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F645-1F3FF":{unified:"1F645-1F3FF",image:"1f645-1f3ff.png",sheet_x:28,sheet_y:7,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0}},emoticons:[]},"flag-me":{name:"Regional Indicator Symbol Letters ME",unified:"1F1F2-1F1EA",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f2-1f1ea.png",sheet_x:36,sheet_y:14,short_name:"flag-me",short_names:["flag-me"],category:"Flags",sort_order:148,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-ms":{name:"Regional Indicator Symbol Letters MS",unified:"1F1F2-1F1F8",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f2-1f1f8.png",sheet_x:36,sheet_y:26,short_name:"flag-ms",short_names:["flag-ms"],category:"Flags",sort_order:149,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},ok_woman:{name:"Face with Ok Gesture",unified:"1F646",variations:[],docomo:"E70B",au:"EAD8",softbank:"E424",google:"FE352",image:"1f646.png",sheet_x:28,sheet_y:8,short_name:"ok_woman",short_names:["ok_woman"],category:"People",sort_order:149,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_
name:"Waving Black Flag",unified:"1F3F4",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f3f4.png",sheet_x:11,sheet_y:35,short_name:"waving_black_flag",short_names:["waving_black_flag"],category:"Objects",sort_order:165,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},arrow_right:{name:"Black Rightwards Arrow",unified:"27A1",variations:["27A1-FE0F"],docomo:null,au:"E552",softbank:"E234",google:"FEAFA",image:"27a1.png",sheet_x:4,sheet_y:14,short_name:"arrow_right",short_names:["arrow_right"],category:"Symbols",sort_order:165,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-no":{name:"Regional Indicator Symbol Letters NO",unified:"1F1F3-1F1F4",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f3-1f1f4.png",sheet_x:37,sheet_y:0,short_name:"flag-no",short_names:["flag-no"],category:"Flags",sort_order:166,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"woman-woman-boy":{name:"Woman Woman Boy",unified:"1F469-200D-1F469-200D-1F466",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f469-200d-1f469-200d-1f466.png",sheet_x:39,sheet_y:14,short_name:"woman-woman-boy",short_names:["woman-woman-boy"],category:"People",sort_order:166,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},arrow_left:{name:"Leftwards Black Arrow",unified:"2B05",variations:["2B05-FE0F"],docomo:null,au:"E553",softbank:"E235",google:"FEAFB",image:"2b05.png",sheet_x:4,sheet_y:19,short_name:"arrow_left",short_names:["arrow_left"],category:"Symbols",sort_order:166,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},closed_lock_with_key:{name:"Closed Lock with Key",unified:"1F510",variations:[],docomo:"E6D9",au:"EAFC",softbank:"E144",google:"FEB8A",image:"1f510.png",sheet_x:23,sheet_y:0,short_name:"closed_lock_with_key",short_names:["closed_lock_with_key"],category:"Objects",sort_order:166,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-om":{name:"Regional Indicator Symbol Letters OM",unified:"1F1F4-1F1F2",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f4-1f1f2.png",sheet_x:37,sheet_y:5,short_name:"flag-om",short_names:["flag-om"],category:"Flags",sort_order:167,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},lock:{name:"Lock",unified:"1F512",variations:[],docomo:"E6D9",au:"E51C",softbank:"E144",google:"FEB86",image:"1f512.png",sheet_x:23,sheet_y:2,short_name:"lock",short_names:["lock"],category:"Objects",sort_order:167,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},arrow_up:{name:"Upwards Black Arrow",unified:"2B06",variations:["2B06-FE0F"],docomo:null,au:"E53F",softbank:"E232",google:"FEAF8",image:"2b06.png",sheet_x:4,sheet_y:20,short_name:"arrow_up",short_names:["arrow_up"],category:"Symbols",sort_order:167,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"woman-woman-girl":{name:"Woman Woman Girl",unified:"1F469-200D-1F469-200D-1F467",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f469-200d-1f469-200d-1f467.png",sheet_x:39,sheet_y:16,short_name:"woman-woman-girl",short_names:["woman-woman-girl"],category:"People",sort_order:167,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},arrow_down:{name:"Downwards Black Arrow",unified:"2B07",variations:["2B07-FE0F"],docomo:null,au:"E540",softbank:"E233",google:"FEAF9",image:"2b07.png",sheet_x:4,sheet_y:21,short_name:"arrow_down",short_names:["arrow_down"],category:"Symbols",sort_order:168,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-pk":{name:"Regional Indicator Symbol Letters PK",unified:"1F1F5-1F1F0",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f5-1f1f0.png",sheet_x:37,sheet_y:11,short_name:"flag-pk",short_names:["flag-pk"],category:"Flags",sort_order
sort_order:191,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},arrows_clockwise:{name:"Clockwise Downwards and Upwards Open Circle Arrows",unified:"1F503",variations:[],docomo:"E735",au:"EB0D",softbank:null,google:"FEB91",image:"1f503.png",sheet_x:22,sheet_y:28,short_name:"arrows_clockwise",short_names:["arrows_clockwise"],category:"Symbols",sort_order:191,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},heavy_plus_sign:{name:"Heavy Plus Sign",unified:"2795",variations:[],docomo:null,au:"E53C",softbank:null,google:"FEB51",image:"2795.png",sheet_x:4,sheet_y:11,short_name:"heavy_plus_sign",short_names:["heavy_plus_sign"],category:"Symbols",sort_order:192,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},tophat:{name:"Top Hat",unified:"1F3A9",variations:[],docomo:"E67C",au:"EAF5",softbank:"E503",google:"FE805",image:"1f3a9.png",sheet_x:9,sheet_y:24,short_name:"tophat",short_names:["tophat"],category:"People",sort_order:192,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-sm":{name:"Regional Indicator Symbol Letters SM",unified:"1F1F8-1F1F2",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f8-1f1f2.png",sheet_x:37,sheet_y:37,short_name:"flag-sm",short_names:["flag-sm"],category:"Flags",sort_order:192,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},helmet_with_white_cross:{name:"Helmet with White Cross",unified:"26D1",variations:[],docomo:null,au:null,softbank:null,google:null,image:"26d1.png",sheet_x:2,sheet_y:25,short_name:"helmet_with_white_cross",short_names:["helmet_with_white_cross"],category:"People",sort_order:193,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},heavy_minus_sign:{name:"Heavy Minus Sign",unified:"2796",variations:[],docomo:null,au:"E53D",softbank:null,google:"FEB52",image:"2796.png",sheet_x:4,sheet_y:12,short_name:"heavy_minus_sign",short_names:["heavy_minus_sign"],category:"Symbols",sort_order:193,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-st":{name:"Regional Indicator Symbol Letters ST",unified:"1F1F8-1F1F9",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f8-1f1f9.png",sheet_x:38,sheet_y:1,short_name:"flag-st",short_names:["flag-st"],category:"Flags",sort_order:193,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-sa":{name:"Regional Indicator Symbol Letters SA",unified:"1F1F8-1F1E6",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f8-1f1e6.png",sheet_x:37,sheet_y:26,short_name:"flag-sa",short_names:["flag-sa"],category:"Flags",sort_order:194,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},heavy_division_sign:{name:"Heavy Division Sign",unified:"2797",variations:[],docomo:null,au:"E554",softbank:null,google:"FEB54",image:"2797.png",sheet_x:4,sheet_y:13,short_name:"heavy_division_sign",short_names:["heavy_division_sign"],category:"Symbols",sort_order:194,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},mortar_board:{name:"Graduation Cap",unified:"1F393",variations:[],docomo:null,au:"EAE5",softbank:"E439",google:"FE51A",image:"1f393.png",sheet_x:9,sheet_y:7,short_name:"mortar_board",short_names:["mortar_board"],category:"People",sort_order:194,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-sn":{name:"Regional Indicator Symbol Letters SN",unified:"1F1F8-1F1F3",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f8-1f1f3.png",sheet_x:37,sheet_y:38,short_name:"flag-sn",short_names:["flag-sn"],category:"Flags",sort_order:195,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},heavy_multiplication_x:{name:"Heavy Multiplication X",unified:"2716",variations:["2716-FE0F"],docomo:null,au:"E54F",softbank:"E333",google:"FEB53",image:"2716.png"
emoticons:[]},mute:{name:"Speaker with Cancellation Stroke",unified:"1F507",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f507.png",sheet_x:22,sheet_y:32,short_name:"mute",short_names:["mute"],category:"Symbols",sort_order:231,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-ug":{name:"Regional Indicator Symbol Letters UG",unified:"1F1FA-1F1EC",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1fa-1f1ec.png",sheet_x:38,sheet_y:24,short_name:"flag-ug",short_names:["flag-ug"],category:"Flags",sort_order:231,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-ua":{name:"Regional Indicator Symbol Letters UA",unified:"1F1FA-1F1E6",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1fa-1f1e6.png",sheet_x:38,sheet_y:23,short_name:"flag-ua",short_names:["flag-ua"],category:"Flags",sort_order:232,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},mega:{name:"Cheering Megaphone",unified:"1F4E3",variations:[],docomo:null,au:"E511",softbank:"E317",google:"FE530",image:"1f4e3.png",sheet_x:21,sheet_y:38,short_name:"mega",short_names:["mega"],category:"Symbols",sort_order:232,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-ae":{name:"Regional Indicator Symbol Letters AE",unified:"1F1E6-1F1EA",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1e6-1f1ea.png",sheet_x:32,sheet_y:35,short_name:"flag-ae",short_names:["flag-ae"],category:"Flags",sort_order:233,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},loudspeaker:{name:"Public Address Loudspeaker",unified:"1F4E2",variations:[],docomo:null,au:"E511",softbank:"E142",google:"FE52F",image:"1f4e2.png",sheet_x:21,sheet_y:37,short_name:"loudspeaker",short_names:["loudspeaker"],category:"Symbols",sort_order:233,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},bell:{name:"Bell",unified:"1F514",variations:[],docomo:"E713",au:"E512",softbank:"E325",google:"FE4F2",image:"1f514.png",sheet_x:23,sheet_y:4,short_name:"bell",short_names:["bell"],category:"Symbols",sort_order:234,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-gb":{name:"Regional Indicator Symbol Letters GB",unified:"1F1EC-1F1E7",variations:[],docomo:null,au:"EB10",softbank:"E510",google:"FE4EA",image:"1f1ec-1f1e7.png",sheet_x:34,sheet_y:32,short_name:"flag-gb",short_names:["flag-gb","gb","uk"],category:"Flags",sort_order:234,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-us":{name:"Regional Indicator Symbol Letters US",unified:"1F1FA-1F1F8",variations:[],docomo:null,au:"E573",softbank:"E50C",google:"FE4E6",image:"1f1fa-1f1f8.png",sheet_x:38,sheet_y:26,short_name:"flag-us",short_names:["flag-us","us"],category:"Flags",sort_order:235,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},no_bell:{name:"Bell with Cancellation Stroke",unified:"1F515",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f515.png",sheet_x:23,sheet_y:5,short_name:"no_bell",short_names:["no_bell"],category:"Symbols",sort_order:235,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-vi":{name:"Regional Indicator Symbol Letters VI",unified:"1F1FB-1F1EE",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1fb-1f1ee.png",sheet_x:38,sheet_y:33,short_name:"flag-vi",short_names:["flag-vi"],category:"Flags",sort_order:236,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},black_joker:{name:"Playing Card Black Joker",unified:"1F0CF",variations:[],docomo:null,au:"EB6F",softbank:null,google:"FE812",image:"1f0cf.png",sheet_x:4,sheet_y:31,short_name:"black_joker",short_names:["black_joker"],category:"Symbols",sort_order:236,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},mahjong:{
2016-07-11 19:04:58 +00:00
key:"render",value:function(){var e=this,o=this.props,a=o.perLine,i=o.emojiSize,t=o.sheetURL,s=o.style,_=this.state.skin,g=a*(i+12)+12+2;return r["default"].createElement("div",{style:n({},s,{width:g}),className:"emoji-picker"},r["default"].createElement("div",{className:"emoji-picker-bar"},r["default"].createElement(f.Anchors,{ref:"anchors",categories:d,onAnchorClick:this.handleAnchorClick.bind(this)})),r["default"].createElement("div",{ref:"scroll",className:"emoji-picker-scroll",onScroll:this.handleScroll.bind(this)},r["default"].createElement(f.Search,{ref:"search",onSearch:this.handleSearch.bind(this)}),d.map(function(o,s){return r["default"].createElement(f.Category,{ref:"category-"+s,key:o.name,name:o.name,emojis:o.emojis,perLine:a,hasStickyPosition:e.hasStickyPosition,emojiProps:{skin:_,size:i,sheetURL:t,onOver:e.handleEmojiOver.bind(e),onLeave:e.handleEmojiLeave.bind(e),onClick:e.handleEmojiClick.bind(e)}})})),r["default"].createElement("div",{className:"emoji-picker-bar"},r["default"].createElement(f.Preview,{ref:"preview",emojiProps:{size:38,sheetURL:t},skinsProps:{skin:_,onChange:this.handleSkinChange.bind(this)}})))}}]),o}(r["default"].Component);o["default"]=F,F.propTypes={onClick:r["default"].PropTypes.func,skin:r["default"].PropTypes.number,perLine:r["default"].PropTypes.number,emojiSize:r["default"].PropTypes.number,style:r["default"].PropTypes.object,sheetURL:r["default"].PropTypes.string.isRequired},F.defaultProps={onClick:function(){},emojiSize:24,perLine:9,style:{},skin:1}},function(e,o){"use strict";!function(){for(var e=0,o=["ms","moz","webkit","o"],a=0;a<o.length&&!window.requestAnimationFrame;++a)window.requestAnimationFrame=window[o[a]+"RequestAnimationFrame"],window.cancelAnimationFrame=window[o[a]+"CancelAnimationFrame"]||window[o[a]+"CancelRequestAnimationFrame"];window.requestAnimationFrame||(window.requestAnimationFrame=function(o,a){var i=(new Date).getTime(),t=Math.max(0,16-(i-e)),s=window.setTimeout(function(){o(i+t)},t);return e=i+t,s}),window.cancelAnimationFrame||(window.cancelAnimationFrame=function(e){clearTimeout(e)})}()},function(e,o,a){"use strict";function i(e){return e&&e.__esModule?e:{"default":e}}function t(e,o){if(!(e instanceof o))throw new TypeError("Cannot call a class as a function")}function s(e,o){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!o||"object"!=typeof o&&"function"!=typeof o?e:o}function _(e,o){if("function"!=typeof o&&null!==o)throw new TypeError("Super expression must either be null or a function, not "+typeof o);e.prototype=Object.create(o&&o.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),o&&(Object.setPrototypeOf?Object.setPrototypeOf(e,o):e.__proto__=o)}Object.defineProperty(o,"__esModule",{value:!0});var n=Object.assign||function(e){for(var o=1;o<arguments.length;o++){var a=arguments[o];for(var i in a)Object.prototype.hasOwnProperty.call(a,i)&&(e[i]=a[i])}return e},g=function(){function e(e,o){for(var a=0;a<o.length;a++){var i=o[a];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}return function(o,a,i){return a&&e(o.prototype,a),i&&e(o,i),o}}(),m=a(3),r=i(m),l=a(1),h=function(e){function o(e){t(this,o);var a=s(this,Object.getPrototypeOf(o).call(this,e));return a.state={emoji:null},a}return _(o,e),g(o,[{key:"render",value:function(){var e=this.state.emoji,o=this.props,a=o.emojiProps,i=o.skinsProps;if(e){var t=e.emoticons,s=[],_=[],g=!0,m=!1,h=void 0;try{for(var u,f=t[Symbol.iterator]();!(g=(u=f.next()).done);g=!0){var c=u.value;-1==s.indexOf(c.toLowerCase())&&(s.push(c.toLowerCase()),_.push(c))}}catch(p){m=!0,h=p}finally{try{!g&&f["return"]&&f["return"]()}finally{if(m)throw h}}return r["default"].createElement("div",{className:"emoji-picker-preview"},r["default"].createElement("div",{className:"emoji-picker-preview-emoji"},r["default"].createElement(l.Emoji,n({key:e.short_name||e,emoji:e},a))),r["default"].createElement("div",{className:"emoji-picker-preview-data"},r["default"].createElement("span",{className: