WP Live Chat Support - Version 9.0.19

Version Description

  • 2020-09-01 =
  • Fix Gravatar url constuction.
  • Fix agent's set online top bar button functionality.
  • Fix PHP warnings on empty fields.
Download this release

Release Info

Developer wpdev3cx
Plugin Icon 128x128 WP Live Chat Support
Version 9.0.19
Comparing to
See all releases

Code changes from version 9.0.18 to 9.0.19

ajax/user.php CHANGED
@@ -113,7 +113,14 @@ function wplc_init_session() {
113
  $result['available'] = TCXAgentsHelper::exist_available_agent();
114
  $result['enabled'] = $wplc_settings->wplc_settings_enabled == 1 && TCXUtilsHelper::wplc_check_chatbox_enabled_business_hours();
115
  $result['name'] = $chat->name;
116
- $result['wplc_operator'] = $agent->display_name;
 
 
 
 
 
 
 
117
  $result['nonce'] = wp_create_nonce( "wplc" );
118
  $result['chat_started_at'] = $chat->timestamp;
119
  $result['departments'] = TCXDepartmentsData::get_departments( $wpdb );
@@ -212,7 +219,12 @@ function wplc_get_chat_history() {
212
  TCXPhpSessionHelper::clean_session();
213
  }
214
  $result["Messages"] = $messages;
215
- $result["Operator"] = $agent != null ? $agent->display_name : 'Support';
 
 
 
 
 
216
  die( TCXChatAjaxResponse::success_ajax_respose( $result, $chat->status ) );
217
  } else {
218
  die( TCXChatAjaxResponse::error_ajax_respose( "CID NOT PROVIDED" ) );
@@ -340,7 +352,12 @@ function wplc_client_polling() {
340
  }
341
  $result["Messages"] = $messages;
342
  $result["ActionCodes"] = $codes;
343
- $result["Operator"] = $agent != null ? $agent->display_name : 'Support';
 
 
 
 
 
344
  die( TCXChatAjaxResponse::success_ajax_respose( $result, $last_status ) );
345
  }
346
  }
113
  $result['available'] = TCXAgentsHelper::exist_available_agent();
114
  $result['enabled'] = $wplc_settings->wplc_settings_enabled == 1 && TCXUtilsHelper::wplc_check_chatbox_enabled_business_hours();
115
  $result['name'] = $chat->name;
116
+ //$result['wplc_operator'] = $agent->display_name;
117
+
118
+ $operator = new stdClass();
119
+ $operator->Name= $agent != null ? $agent->display_name: 'Support';
120
+ $operator->EmailTag = $agent != null ? md5($agent->user_email): '';
121
+
122
+ $result["operator"] = $operator;
123
+
124
  $result['nonce'] = wp_create_nonce( "wplc" );
125
  $result['chat_started_at'] = $chat->timestamp;
126
  $result['departments'] = TCXDepartmentsData::get_departments( $wpdb );
219
  TCXPhpSessionHelper::clean_session();
220
  }
221
  $result["Messages"] = $messages;
222
+
223
+ $operator = new stdClass();
224
+ $operator->Name= $agent != null ? $agent->display_name: 'Support';
225
+ $operator->EmailTag = $agent != null ? md5($agent->user_email): '';
226
+
227
+ $result["Operator"] = $operator;
228
  die( TCXChatAjaxResponse::success_ajax_respose( $result, $chat->status ) );
229
  } else {
230
  die( TCXChatAjaxResponse::error_ajax_respose( "CID NOT PROVIDED" ) );
352
  }
353
  $result["Messages"] = $messages;
354
  $result["ActionCodes"] = $codes;
355
+
356
+ $operator = new stdClass();
357
+ $operator->Name= $agent != null ? $agent->display_name: 'Support';
358
+ $operator->EmailTag = $agent != null ? md5($agent->user_email): '';
359
+
360
+ $result["Operator"] = $operator;
361
  die( TCXChatAjaxResponse::success_ajax_respose( $result, $last_status ) );
362
  }
363
  }
changelog.txt CHANGED
@@ -1,3 +1,8 @@
 
 
 
 
 
1
  = 9.0.18 - 2020-08-31 =
2
  * Getting started wizard new design.
3
  * Fix auto redirects to chat page on admin.
1
+ = 9.0.19 - 2020-09-01 =
2
+ * Fix Gravatar url constuction.
3
+ * Fix agent's set online top bar button functionality.
4
+ * Fix PHP warnings on empty fields.
5
+
6
  = 9.0.18 - 2020-08-31 =
7
  * Getting started wizard new design.
8
  * Fix auto redirects to chat page on admin.
config.php CHANGED
@@ -9,7 +9,7 @@ if ( ! defined( 'ABSPATH' ) ) {
9
 
10
  define('WPLC_MIN_WP_VERSION', "5.3");
11
  define('WPLC_MIN_PHP_VERSION', "5.4");
12
- define('WPLC_PLUGIN_VERSION', "9.0.18");
13
  define('WPLC_PLUGIN_DIR', dirname(__FILE__));
14
  define('WPLC_PLUGIN_URL', wplc_plugins_url( '/', __FILE__ ) );
15
  define('WPLC_PLUGIN', plugin_basename( __FILE__ ) );
9
 
10
  define('WPLC_MIN_WP_VERSION', "5.3");
11
  define('WPLC_MIN_PHP_VERSION', "5.4");
12
+ define('WPLC_PLUGIN_VERSION', "9.0.19");
13
  define('WPLC_PLUGIN_DIR', dirname(__FILE__));
14
  define('WPLC_PLUGIN_URL', wplc_plugins_url( '/', __FILE__ ) );
15
  define('WPLC_PLUGIN', plugin_basename( __FILE__ ) );
css/vendor/bootstrap/{wplc_bootstrap_9_0_18.css → wplc_bootstrap_9_0_19.css} RENAMED
File without changes
modules/agent_chat/js/agent_chat_chatbox.js CHANGED
@@ -255,7 +255,7 @@ function wplc_create_message_html(message_data, type, chat) {
255
  let template = senderType == "user" ? templateIncoming : templateOutgoing;
256
 
257
  let avatarName = wplc_isDoubleByte(sender) ? 'Visitor' : sender;
258
- let avatarEmail = senderType === "user" ? md5(chat.email) : localization_data.agent_email;
259
 
260
  let data = {
261
  sender: sender,
255
  let template = senderType == "user" ? templateIncoming : templateOutgoing;
256
 
257
  let avatarName = wplc_isDoubleByte(sender) ? 'Visitor' : sender;
258
+ let avatarEmail = senderType === "user" ? md5(chat.email) : md5(localization_data.agent_email);
259
 
260
  let data = {
261
  sender: sender,
modules/agent_chat/js/mcu_websocket.js CHANGED
@@ -193,7 +193,8 @@ function wplc_joinChat(sessionID, agentID) {
193
  pid: localization_data.portal_id,
194
  tick: wplc_convertDateToTicks(new Date()),
195
  from: agentID,
196
- agentName: localization_data.agent_name
 
197
  };
198
 
199
  socket.send(JSON.stringify(messageToSend));
193
  pid: localization_data.portal_id,
194
  tick: wplc_convertDateToTicks(new Date()),
195
  from: agentID,
196
+ agentName: localization_data.agent_name,
197
+ agentEmail: localization_data.agent_email
198
  };
199
 
200
  socket.send(JSON.stringify(messageToSend));
modules/chat_client/js/callus.js CHANGED
@@ -4,26 +4,26 @@
4
  * (c) 2014-2019 Evan You
5
  * Released under the MIT License.
6
  */
7
- var n=Object.freeze({});function i(e){return null==e}function r(e){return null!=e}function a(e){return!0===e}function l(e){return"string"==typeof e||"number"==typeof e||"symbol"==typeof e||"boolean"==typeof e}function s(e){return null!==e&&"object"==typeof e}var d=Object.prototype.toString;function m(e){return"[object Object]"===d.call(e)}function f(e){return"[object RegExp]"===d.call(e)}function _(e){var t=parseFloat(String(e));return t>=0&&Math.floor(t)===t&&isFinite(e)}function c(e){return r(e)&&"function"==typeof e.then&&"function"==typeof e.catch}function g(e){return null==e?"":Array.isArray(e)||m(e)&&e.toString===d?JSON.stringify(e,null,2):String(e)}function p(e){var t=parseFloat(e);return isNaN(t)?e:t}function u(e,t){for(var o=Object.create(null),n=e.split(","),i=0;i<n.length;i++)o[n[i]]=!0;return t?function(e){return o[e.toLowerCase()]}:function(e){return o[e]}}u("slot,component",!0);var h=u("key,ref,slot,slot-scope,is");function b(e,t){if(e.length){var o=e.indexOf(t);if(o>-1)return e.splice(o,1)}}var x=Object.prototype.hasOwnProperty;function y(e,t){return x.call(e,t)}function w(e){var t=Object.create(null);return function(o){return t[o]||(t[o]=e(o))}}var v=/-(\w)/g,F=w((function(e){return e.replace(v,(function(e,t){return t?t.toUpperCase():""}))})),k=w((function(e){return e.charAt(0).toUpperCase()+e.slice(1)})),j=/\B([A-Z])/g,C=w((function(e){return e.replace(j,"-$1").toLowerCase()}));var D=Function.prototype.bind?function(e,t){return e.bind(t)}:function(e,t){function o(o){var n=arguments.length;return n?n>1?e.apply(t,arguments):e.call(t,o):e.call(t)}return o._length=e.length,o};function E(e,t){t=t||0;for(var o=e.length-t,n=new Array(o);o--;)n[o]=e[o+t];return n}function A(e,t){for(var o in t)e[o]=t[o];return e}function S(e){for(var t={},o=0;o<e.length;o++)e[o]&&A(t,e[o]);return t}function T(e,t,o){}var M=function(e,t,o){return!1},q=function(e){return e};function z(e,t){if(e===t)return!0;var o=s(e),n=s(t);if(!o||!n)return!o&&!n&&String(e)===String(t);try{var i=Array.isArray(e),r=Array.isArray(t);if(i&&r)return e.length===t.length&&e.every((function(e,o){return z(e,t[o])}));if(e instanceof Date&&t instanceof Date)return e.getTime()===t.getTime();if(i||r)return!1;var a=Object.keys(e),l=Object.keys(t);return a.length===l.length&&a.every((function(o){return z(e[o],t[o])}))}catch(e){return!1}}function B(e,t){for(var o=0;o<e.length;o++)if(z(e[o],t))return o;return-1}function N(e){var t=!1;return function(){t||(t=!0,e.apply(this,arguments))}}var O="data-server-rendered",P=["component","directive","filter"],I=["beforeCreate","created","beforeMount","mounted","beforeUpdate","updated","beforeDestroy","destroyed","activated","deactivated","errorCaptured","serverPrefetch"],R={optionMergeStrategies:Object.create(null),silent:!1,productionTip:!1,devtools:!1,performance:!1,errorHandler:null,warnHandler:null,ignoredElements:[],keyCodes:Object.create(null),isReservedTag:M,isReservedAttr:M,isUnknownElement:M,getTagNamespace:T,parsePlatformTagName:q,mustUseProp:M,async:!0,_lifecycleHooks:I},L=/a-zA-Z\u00B7\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u037D\u037F-\u1FFF\u200C-\u200D\u203F-\u2040\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD/;function U(e,t,o,n){Object.defineProperty(e,t,{value:o,enumerable:!!n,writable:!0,configurable:!0})}var G=new RegExp("[^"+L.source+".$_\\d]");var K,W="__proto__"in{},V="undefined"!=typeof window,H="undefined"!=typeof WXEnvironment&&!!WXEnvironment.platform,Y=H&&WXEnvironment.platform.toLowerCase(),Q=V&&window.navigator.userAgent.toLowerCase(),Z=Q&&/msie|trident/.test(Q),J=Q&&Q.indexOf("msie 9.0")>0,X=Q&&Q.indexOf("edge/")>0,$=(Q&&Q.indexOf("android"),Q&&/iphone|ipad|ipod|ios/.test(Q)||"ios"===Y),ee=(Q&&/chrome\/\d+/.test(Q),Q&&/phantomjs/.test(Q),Q&&Q.match(/firefox\/(\d+)/)),te={}.watch,oe=!1;if(V)try{var ne={};Object.defineProperty(ne,"passive",{get:function(){oe=!0}}),window.addEventListener("test-passive",null,ne)}catch(e){}var ie=function(){return void 0===K&&(K=!V&&!H&&void 0!==e&&(e.process&&"server"===e.process.env.VUE_ENV)),K},re=V&&window.__VUE_DEVTOOLS_GLOBAL_HOOK__;function ae(e){return"function"==typeof e&&/native code/.test(e.toString())}var le,se="undefined"!=typeof Symbol&&ae(Symbol)&&"undefined"!=typeof Reflect&&ae(Reflect.ownKeys);le="undefined"!=typeof Set&&ae(Set)?Set:function(){function e(){this.set=Object.create(null)}return e.prototype.has=function(e){return!0===this.set[e]},e.prototype.add=function(e){this.set[e]=!0},e.prototype.clear=function(){this.set=Object.create(null)},e}();var de=T,me=0,fe=function(){this.id=me++,this.subs=[]};fe.prototype.addSub=function(e){this.subs.push(e)},fe.prototype.removeSub=function(e){b(this.subs,e)},fe.prototype.depend=function(){fe.target&&fe.target.addDep(this)},fe.prototype.notify=function(){var e=this.subs.slice();for(var t=0,o=e.length;t<o;t++)e[t].update()},fe.target=null;var _e=[];function ce(e){_e.push(e),fe.target=e}function ge(){_e.pop(),fe.target=_e[_e.length-1]}var pe=function(e,t,o,n,i,r,a,l){this.tag=e,this.data=t,this.children=o,this.text=n,this.elm=i,this.ns=void 0,this.context=r,this.fnContext=void 0,this.fnOptions=void 0,this.fnScopeId=void 0,this.key=t&&t.key,this.componentOptions=a,this.componentInstance=void 0,this.parent=void 0,this.raw=!1,this.isStatic=!1,this.isRootInsert=!0,this.isComment=!1,this.isCloned=!1,this.isOnce=!1,this.asyncFactory=l,this.asyncMeta=void 0,this.isAsyncPlaceholder=!1},ue={child:{configurable:!0}};ue.child.get=function(){return this.componentInstance},Object.defineProperties(pe.prototype,ue);var he=function(e){void 0===e&&(e="");var t=new pe;return t.text=e,t.isComment=!0,t};function be(e){return new pe(void 0,void 0,void 0,String(e))}function xe(e){var t=new pe(e.tag,e.data,e.children&&e.children.slice(),e.text,e.elm,e.context,e.componentOptions,e.asyncFactory);return t.ns=e.ns,t.isStatic=e.isStatic,t.key=e.key,t.isComment=e.isComment,t.fnContext=e.fnContext,t.fnOptions=e.fnOptions,t.fnScopeId=e.fnScopeId,t.asyncMeta=e.asyncMeta,t.isCloned=!0,t}var ye=Array.prototype,we=Object.create(ye);["push","pop","shift","unshift","splice","sort","reverse"].forEach((function(e){var t=ye[e];U(we,e,(function(){for(var o=[],n=arguments.length;n--;)o[n]=arguments[n];var i,r=t.apply(this,o),a=this.__ob__;switch(e){case"push":case"unshift":i=o;break;case"splice":i=o.slice(2)}return i&&a.observeArray(i),a.dep.notify(),r}))}));var ve=Object.getOwnPropertyNames(we),Fe=!0;function ke(e){Fe=e}var je=function(e){this.value=e,this.dep=new fe,this.vmCount=0,U(e,"__ob__",this),Array.isArray(e)?(W?function(e,t){e.__proto__=t}(e,we):function(e,t,o){for(var n=0,i=o.length;n<i;n++){var r=o[n];U(e,r,t[r])}}(e,we,ve),this.observeArray(e)):this.walk(e)};function Ce(e,t){var o;if(s(e)&&!(e instanceof pe))return y(e,"__ob__")&&e.__ob__ instanceof je?o=e.__ob__:Fe&&!ie()&&(Array.isArray(e)||m(e))&&Object.isExtensible(e)&&!e._isVue&&(o=new je(e)),t&&o&&o.vmCount++,o}function De(e,t,o,n,i){var r=new fe,a=Object.getOwnPropertyDescriptor(e,t);if(!a||!1!==a.configurable){var l=a&&a.get,s=a&&a.set;l&&!s||2!==arguments.length||(o=e[t]);var d=!i&&Ce(o);Object.defineProperty(e,t,{enumerable:!0,configurable:!0,get:function(){var t=l?l.call(e):o;return fe.target&&(r.depend(),d&&(d.dep.depend(),Array.isArray(t)&&function e(t){for(var o=void 0,n=0,i=t.length;n<i;n++)(o=t[n])&&o.__ob__&&o.__ob__.dep.depend(),Array.isArray(o)&&e(o)}(t))),t},set:function(t){var n=l?l.call(e):o;t===n||t!=t&&n!=n||l&&!s||(s?s.call(e,t):o=t,d=!i&&Ce(t),r.notify())}})}}function Ee(e,t,o){if(Array.isArray(e)&&_(t))return e.length=Math.max(e.length,t),e.splice(t,1,o),o;if(t in e&&!(t in Object.prototype))return e[t]=o,o;var n=e.__ob__;return e._isVue||n&&n.vmCount?o:n?(De(n.value,t,o),n.dep.notify(),o):(e[t]=o,o)}function Ae(e,t){if(Array.isArray(e)&&_(t))e.splice(t,1);else{var o=e.__ob__;e._isVue||o&&o.vmCount||y(e,t)&&(delete e[t],o&&o.dep.notify())}}je.prototype.walk=function(e){for(var t=Object.keys(e),o=0;o<t.length;o++)De(e,t[o])},je.prototype.observeArray=function(e){for(var t=0,o=e.length;t<o;t++)Ce(e[t])};var Se=R.optionMergeStrategies;function Te(e,t){if(!t)return e;for(var o,n,i,r=se?Reflect.ownKeys(t):Object.keys(t),a=0;a<r.length;a++)"__ob__"!==(o=r[a])&&(n=e[o],i=t[o],y(e,o)?n!==i&&m(n)&&m(i)&&Te(n,i):Ee(e,o,i));return e}function Me(e,t,o){return o?function(){var n="function"==typeof t?t.call(o,o):t,i="function"==typeof e?e.call(o,o):e;return n?Te(n,i):i}:t?e?function(){return Te("function"==typeof t?t.call(this,this):t,"function"==typeof e?e.call(this,this):e)}:t:e}function qe(e,t){var o=t?e?e.concat(t):Array.isArray(t)?t:[t]:e;return o?function(e){for(var t=[],o=0;o<e.length;o++)-1===t.indexOf(e[o])&&t.push(e[o]);return t}(o):o}function ze(e,t,o,n){var i=Object.create(e||null);return t?A(i,t):i}Se.data=function(e,t,o){return o?Me(e,t,o):t&&"function"!=typeof t?e:Me(e,t)},I.forEach((function(e){Se[e]=qe})),P.forEach((function(e){Se[e+"s"]=ze})),Se.watch=function(e,t,o,n){if(e===te&&(e=void 0),t===te&&(t=void 0),!t)return Object.create(e||null);if(!e)return t;var i={};for(var r in A(i,e),t){var a=i[r],l=t[r];a&&!Array.isArray(a)&&(a=[a]),i[r]=a?a.concat(l):Array.isArray(l)?l:[l]}return i},Se.props=Se.methods=Se.inject=Se.computed=function(e,t,o,n){if(!e)return t;var i=Object.create(null);return A(i,e),t&&A(i,t),i},Se.provide=Me;var Be=function(e,t){return void 0===t?e:t};function Ne(e,t,o){if("function"==typeof t&&(t=t.options),function(e,t){var o=e.props;if(o){var n,i,r={};if(Array.isArray(o))for(n=o.length;n--;)"string"==typeof(i=o[n])&&(r[F(i)]={type:null});else if(m(o))for(var a in o)i=o[a],r[F(a)]=m(i)?i:{type:i};else 0;e.props=r}}(t),function(e,t){var o=e.inject;if(o){var n=e.inject={};if(Array.isArray(o))for(var i=0;i<o.length;i++)n[o[i]]={from:o[i]};else if(m(o))for(var r in o){var a=o[r];n[r]=m(a)?A({from:r},a):{from:a}}else 0}}(t),function(e){var t=e.directives;if(t)for(var o in t){var n=t[o];"function"==typeof n&&(t[o]={bind:n,update:n})}}(t),!t._base&&(t.extends&&(e=Ne(e,t.extends,o)),t.mixins))for(var n=0,i=t.mixins.length;n<i;n++)e=Ne(e,t.mixins[n],o);var r,a={};for(r in e)l(r);for(r in t)y(e,r)||l(r);function l(n){var i=Se[n]||Be;a[n]=i(e[n],t[n],o,n)}return a}function Oe(e,t,o,n){if("string"==typeof o){var i=e[t];if(y(i,o))return i[o];var r=F(o);if(y(i,r))return i[r];var a=k(r);return y(i,a)?i[a]:i[o]||i[r]||i[a]}}function Pe(e,t,o,n){var i=t[e],r=!y(o,e),a=o[e],l=Le(Boolean,i.type);if(l>-1)if(r&&!y(i,"default"))a=!1;else if(""===a||a===C(e)){var s=Le(String,i.type);(s<0||l<s)&&(a=!0)}if(void 0===a){a=function(e,t,o){if(!y(t,"default"))return;var n=t.default;0;if(e&&e.$options.propsData&&void 0===e.$options.propsData[o]&&void 0!==e._props[o])return e._props[o];return"function"==typeof n&&"Function"!==Ie(t.type)?n.call(e):n}(n,i,e);var d=Fe;ke(!0),Ce(a),ke(d)}return a}function Ie(e){var t=e&&e.toString().match(/^\s*function (\w+)/);return t?t[1]:""}function Re(e,t){return Ie(e)===Ie(t)}function Le(e,t){if(!Array.isArray(t))return Re(t,e)?0:-1;for(var o=0,n=t.length;o<n;o++)if(Re(t[o],e))return o;return-1}function Ue(e,t,o){ce();try{if(t)for(var n=t;n=n.$parent;){var i=n.$options.errorCaptured;if(i)for(var r=0;r<i.length;r++)try{if(!1===i[r].call(n,e,t,o))return}catch(e){Ke(e,n,"errorCaptured hook")}}Ke(e,t,o)}finally{ge()}}function Ge(e,t,o,n,i){var r;try{(r=o?e.apply(t,o):e.call(t))&&!r._isVue&&c(r)&&!r._handled&&(r.catch((function(e){return Ue(e,n,i+" (Promise/async)")})),r._handled=!0)}catch(e){Ue(e,n,i)}return r}function Ke(e,t,o){if(R.errorHandler)try{return R.errorHandler.call(null,e,t,o)}catch(t){t!==e&&We(t,null,"config.errorHandler")}We(e,t,o)}function We(e,t,o){if(!V&&!H||"undefined"==typeof console)throw e;console.error(e)}var Ve,He=!1,Ye=[],Qe=!1;function Ze(){Qe=!1;var e=Ye.slice(0);Ye.length=0;for(var t=0;t<e.length;t++)e[t]()}if("undefined"!=typeof Promise&&ae(Promise)){var Je=Promise.resolve();Ve=function(){Je.then(Ze),$&&setTimeout(T)},He=!0}else if(Z||"undefined"==typeof MutationObserver||!ae(MutationObserver)&&"[object MutationObserverConstructor]"!==MutationObserver.toString())Ve=void 0!==o&&ae(o)?function(){o(Ze)}:function(){setTimeout(Ze,0)};else{var Xe=1,$e=new MutationObserver(Ze),et=document.createTextNode(String(Xe));$e.observe(et,{characterData:!0}),Ve=function(){Xe=(Xe+1)%2,et.data=String(Xe)},He=!0}function tt(e,t){var o;if(Ye.push((function(){if(e)try{e.call(t)}catch(e){Ue(e,t,"nextTick")}else o&&o(t)})),Qe||(Qe=!0,Ve()),!e&&"undefined"!=typeof Promise)return new Promise((function(e){o=e}))}var ot=new le;function nt(e){!function e(t,o){var n,i;var r=Array.isArray(t);if(!r&&!s(t)||Object.isFrozen(t)||t instanceof pe)return;if(t.__ob__){var a=t.__ob__.dep.id;if(o.has(a))return;o.add(a)}if(r)for(n=t.length;n--;)e(t[n],o);else for(i=Object.keys(t),n=i.length;n--;)e(t[i[n]],o)}(e,ot),ot.clear()}var it=w((function(e){var t="&"===e.charAt(0),o="~"===(e=t?e.slice(1):e).charAt(0),n="!"===(e=o?e.slice(1):e).charAt(0);return{name:e=n?e.slice(1):e,once:o,capture:n,passive:t}}));function rt(e,t){function o(){var e=arguments,n=o.fns;if(!Array.isArray(n))return Ge(n,null,arguments,t,"v-on handler");for(var i=n.slice(),r=0;r<i.length;r++)Ge(i[r],null,e,t,"v-on handler")}return o.fns=e,o}function at(e,t,o,n,r,l){var s,d,m,f;for(s in e)d=e[s],m=t[s],f=it(s),i(d)||(i(m)?(i(d.fns)&&(d=e[s]=rt(d,l)),a(f.once)&&(d=e[s]=r(f.name,d,f.capture)),o(f.name,d,f.capture,f.passive,f.params)):d!==m&&(m.fns=d,e[s]=m));for(s in t)i(e[s])&&n((f=it(s)).name,t[s],f.capture)}function lt(e,t,o){var n;e instanceof pe&&(e=e.data.hook||(e.data.hook={}));var l=e[t];function s(){o.apply(this,arguments),b(n.fns,s)}i(l)?n=rt([s]):r(l.fns)&&a(l.merged)?(n=l).fns.push(s):n=rt([l,s]),n.merged=!0,e[t]=n}function st(e,t,o,n,i){if(r(t)){if(y(t,o))return e[o]=t[o],i||delete t[o],!0;if(y(t,n))return e[o]=t[n],i||delete t[n],!0}return!1}function dt(e){return l(e)?[be(e)]:Array.isArray(e)?function e(t,o){var n=[];var s,d,m,f;for(s=0;s<t.length;s++)i(d=t[s])||"boolean"==typeof d||(m=n.length-1,f=n[m],Array.isArray(d)?d.length>0&&(mt((d=e(d,(o||"")+"_"+s))[0])&&mt(f)&&(n[m]=be(f.text+d[0].text),d.shift()),n.push.apply(n,d)):l(d)?mt(f)?n[m]=be(f.text+d):""!==d&&n.push(be(d)):mt(d)&&mt(f)?n[m]=be(f.text+d.text):(a(t._isVList)&&r(d.tag)&&i(d.key)&&r(o)&&(d.key="__vlist"+o+"_"+s+"__"),n.push(d)));return n}(e):void 0}function mt(e){return r(e)&&r(e.text)&&!1===e.isComment}function ft(e,t){if(e){for(var o=Object.create(null),n=se?Reflect.ownKeys(e):Object.keys(e),i=0;i<n.length;i++){var r=n[i];if("__ob__"!==r){for(var a=e[r].from,l=t;l;){if(l._provided&&y(l._provided,a)){o[r]=l._provided[a];break}l=l.$parent}if(!l)if("default"in e[r]){var s=e[r].default;o[r]="function"==typeof s?s.call(t):s}else 0}}return o}}function _t(e,t){if(!e||!e.length)return{};for(var o={},n=0,i=e.length;n<i;n++){var r=e[n],a=r.data;if(a&&a.attrs&&a.attrs.slot&&delete a.attrs.slot,r.context!==t&&r.fnContext!==t||!a||null==a.slot)(o.default||(o.default=[])).push(r);else{var l=a.slot,s=o[l]||(o[l]=[]);"template"===r.tag?s.push.apply(s,r.children||[]):s.push(r)}}for(var d in o)o[d].every(ct)&&delete o[d];return o}function ct(e){return e.isComment&&!e.asyncFactory||" "===e.text}function gt(e,t,o){var i,r=Object.keys(t).length>0,a=e?!!e.$stable:!r,l=e&&e.$key;if(e){if(e._normalized)return e._normalized;if(a&&o&&o!==n&&l===o.$key&&!r&&!o.$hasNormal)return o;for(var s in i={},e)e[s]&&"$"!==s[0]&&(i[s]=pt(t,s,e[s]))}else i={};for(var d in t)d in i||(i[d]=ut(t,d));return e&&Object.isExtensible(e)&&(e._normalized=i),U(i,"$stable",a),U(i,"$key",l),U(i,"$hasNormal",r),i}function pt(e,t,o){var n=function(){var e=arguments.length?o.apply(null,arguments):o({});return(e=e&&"object"==typeof e&&!Array.isArray(e)?[e]:dt(e))&&(0===e.length||1===e.length&&e[0].isComment)?void 0:e};return o.proxy&&Object.defineProperty(e,t,{get:n,enumerable:!0,configurable:!0}),n}function ut(e,t){return function(){return e[t]}}function ht(e,t){var o,n,i,a,l;if(Array.isArray(e)||"string"==typeof e)for(o=new Array(e.length),n=0,i=e.length;n<i;n++)o[n]=t(e[n],n);else if("number"==typeof e)for(o=new Array(e),n=0;n<e;n++)o[n]=t(n+1,n);else if(s(e))if(se&&e[Symbol.iterator]){o=[];for(var d=e[Symbol.iterator](),m=d.next();!m.done;)o.push(t(m.value,o.length)),m=d.next()}else for(a=Object.keys(e),o=new Array(a.length),n=0,i=a.length;n<i;n++)l=a[n],o[n]=t(e[l],l,n);return r(o)||(o=[]),o._isVList=!0,o}function bt(e,t,o,n){var i,r=this.$scopedSlots[e];r?(o=o||{},n&&(o=A(A({},n),o)),i=r(o)||t):i=this.$slots[e]||t;var a=o&&o.slot;return a?this.$createElement("template",{slot:a},i):i}function xt(e){return Oe(this.$options,"filters",e)||q}function yt(e,t){return Array.isArray(e)?-1===e.indexOf(t):e!==t}function wt(e,t,o,n,i){var r=R.keyCodes[t]||o;return i&&n&&!R.keyCodes[t]?yt(i,n):r?yt(r,e):n?C(n)!==t:void 0}function vt(e,t,o,n,i){if(o)if(s(o)){var r;Array.isArray(o)&&(o=S(o));var a=function(a){if("class"===a||"style"===a||h(a))r=e;else{var l=e.attrs&&e.attrs.type;r=n||R.mustUseProp(t,l,a)?e.domProps||(e.domProps={}):e.attrs||(e.attrs={})}var s=F(a),d=C(a);s in r||d in r||(r[a]=o[a],i&&((e.on||(e.on={}))["update:"+a]=function(e){o[a]=e}))};for(var l in o)a(l)}else;return e}function Ft(e,t){var o=this._staticTrees||(this._staticTrees=[]),n=o[e];return n&&!t?n:(jt(n=o[e]=this.$options.staticRenderFns[e].call(this._renderProxy,null,this),"__static__"+e,!1),n)}function kt(e,t,o){return jt(e,"__once__"+t+(o?"_"+o:""),!0),e}function jt(e,t,o){if(Array.isArray(e))for(var n=0;n<e.length;n++)e[n]&&"string"!=typeof e[n]&&Ct(e[n],t+"_"+n,o);else Ct(e,t,o)}function Ct(e,t,o){e.isStatic=!0,e.key=t,e.isOnce=o}function Dt(e,t){if(t)if(m(t)){var o=e.on=e.on?A({},e.on):{};for(var n in t){var i=o[n],r=t[n];o[n]=i?[].concat(i,r):r}}else;return e}function Et(e,t,o,n){t=t||{$stable:!o};for(var i=0;i<e.length;i++){var r=e[i];Array.isArray(r)?Et(r,t,o):r&&(r.proxy&&(r.fn.proxy=!0),t[r.key]=r.fn)}return n&&(t.$key=n),t}function At(e,t){for(var o=0;o<t.length;o+=2){var n=t[o];"string"==typeof n&&n&&(e[t[o]]=t[o+1])}return e}function St(e,t){return"string"==typeof e?t+e:e}function Tt(e){e._o=kt,e._n=p,e._s=g,e._l=ht,e._t=bt,e._q=z,e._i=B,e._m=Ft,e._f=xt,e._k=wt,e._b=vt,e._v=be,e._e=he,e._u=Et,e._g=Dt,e._d=At,e._p=St}function Mt(e,t,o,i,r){var l,s=this,d=r.options;y(i,"_uid")?(l=Object.create(i))._original=i:(l=i,i=i._original);var m=a(d._compiled),f=!m;this.data=e,this.props=t,this.children=o,this.parent=i,this.listeners=e.on||n,this.injections=ft(d.inject,i),this.slots=function(){return s.$slots||gt(e.scopedSlots,s.$slots=_t(o,i)),s.$slots},Object.defineProperty(this,"scopedSlots",{enumerable:!0,get:function(){return gt(e.scopedSlots,this.slots())}}),m&&(this.$options=d,this.$slots=this.slots(),this.$scopedSlots=gt(e.scopedSlots,this.$slots)),d._scopeId?this._c=function(e,t,o,n){var r=Lt(l,e,t,o,n,f);return r&&!Array.isArray(r)&&(r.fnScopeId=d._scopeId,r.fnContext=i),r}:this._c=function(e,t,o,n){return Lt(l,e,t,o,n,f)}}function qt(e,t,o,n,i){var r=xe(e);return r.fnContext=o,r.fnOptions=n,t.slot&&((r.data||(r.data={})).slot=t.slot),r}function zt(e,t){for(var o in t)e[F(o)]=t[o]}Tt(Mt.prototype);var Bt={init:function(e,t){if(e.componentInstance&&!e.componentInstance._isDestroyed&&e.data.keepAlive){var o=e;Bt.prepatch(o,o)}else{(e.componentInstance=function(e,t){var o={_isComponent:!0,_parentVnode:e,parent:t},n=e.data.inlineTemplate;r(n)&&(o.render=n.render,o.staticRenderFns=n.staticRenderFns);return new e.componentOptions.Ctor(o)}(e,Jt)).$mount(t?e.elm:void 0,t)}},prepatch:function(e,t){var o=t.componentOptions;!function(e,t,o,i,r){0;var a=i.data.scopedSlots,l=e.$scopedSlots,s=!!(a&&!a.$stable||l!==n&&!l.$stable||a&&e.$scopedSlots.$key!==a.$key),d=!!(r||e.$options._renderChildren||s);e.$options._parentVnode=i,e.$vnode=i,e._vnode&&(e._vnode.parent=i);if(e.$options._renderChildren=r,e.$attrs=i.data.attrs||n,e.$listeners=o||n,t&&e.$options.props){ke(!1);for(var m=e._props,f=e.$options._propKeys||[],_=0;_<f.length;_++){var c=f[_],g=e.$options.props;m[c]=Pe(c,g,t,e)}ke(!0),e.$options.propsData=t}o=o||n;var p=e.$options._parentListeners;e.$options._parentListeners=o,Zt(e,o,p),d&&(e.$slots=_t(r,i.context),e.$forceUpdate());0}(t.componentInstance=e.componentInstance,o.propsData,o.listeners,t,o.children)},insert:function(e){var t,o=e.context,n=e.componentInstance;n._isMounted||(n._isMounted=!0,to(n,"mounted")),e.data.keepAlive&&(o._isMounted?((t=n)._inactive=!1,no.push(t)):eo(n,!0))},destroy:function(e){var t=e.componentInstance;t._isDestroyed||(e.data.keepAlive?function e(t,o){if(o&&(t._directInactive=!0,$t(t)))return;if(!t._inactive){t._inactive=!0;for(var n=0;n<t.$children.length;n++)e(t.$children[n]);to(t,"deactivated")}}(t,!0):t.$destroy())}},Nt=Object.keys(Bt);function Ot(e,t,o,l,d){if(!i(e)){var m=o.$options._base;if(s(e)&&(e=m.extend(e)),"function"==typeof e){var f;if(i(e.cid)&&void 0===(e=function(e,t){if(a(e.error)&&r(e.errorComp))return e.errorComp;if(r(e.resolved))return e.resolved;var o=Gt;o&&r(e.owners)&&-1===e.owners.indexOf(o)&&e.owners.push(o);if(a(e.loading)&&r(e.loadingComp))return e.loadingComp;if(o&&!r(e.owners)){var n=e.owners=[o],l=!0,d=null,m=null;o.$on("hook:destroyed",(function(){return b(n,o)}));var f=function(e){for(var t=0,o=n.length;t<o;t++)n[t].$forceUpdate();e&&(n.length=0,null!==d&&(clearTimeout(d),d=null),null!==m&&(clearTimeout(m),m=null))},_=N((function(o){e.resolved=Kt(o,t),l?n.length=0:f(!0)})),g=N((function(t){r(e.errorComp)&&(e.error=!0,f(!0))})),p=e(_,g);return s(p)&&(c(p)?i(e.resolved)&&p.then(_,g):c(p.component)&&(p.component.then(_,g),r(p.error)&&(e.errorComp=Kt(p.error,t)),r(p.loading)&&(e.loadingComp=Kt(p.loading,t),0===p.delay?e.loading=!0:d=setTimeout((function(){d=null,i(e.resolved)&&i(e.error)&&(e.loading=!0,f(!1))}),p.delay||200)),r(p.timeout)&&(m=setTimeout((function(){m=null,i(e.resolved)&&g(null)}),p.timeout)))),l=!1,e.loading?e.loadingComp:e.resolved}}(f=e,m)))return function(e,t,o,n,i){var r=he();return r.asyncFactory=e,r.asyncMeta={data:t,context:o,children:n,tag:i},r}(f,t,o,l,d);t=t||{},ko(e),r(t.model)&&function(e,t){var o=e.model&&e.model.prop||"value",n=e.model&&e.model.event||"input";(t.attrs||(t.attrs={}))[o]=t.model.value;var i=t.on||(t.on={}),a=i[n],l=t.model.callback;r(a)?(Array.isArray(a)?-1===a.indexOf(l):a!==l)&&(i[n]=[l].concat(a)):i[n]=l}(e.options,t);var _=function(e,t,o){var n=t.options.props;if(!i(n)){var a={},l=e.attrs,s=e.props;if(r(l)||r(s))for(var d in n){var m=C(d);st(a,s,d,m,!0)||st(a,l,d,m,!1)}return a}}(t,e);if(a(e.options.functional))return function(e,t,o,i,a){var l=e.options,s={},d=l.props;if(r(d))for(var m in d)s[m]=Pe(m,d,t||n);else r(o.attrs)&&zt(s,o.attrs),r(o.props)&&zt(s,o.props);var f=new Mt(o,s,a,i,e),_=l.render.call(null,f._c,f);if(_ instanceof pe)return qt(_,o,f.parent,l,f);if(Array.isArray(_)){for(var c=dt(_)||[],g=new Array(c.length),p=0;p<c.length;p++)g[p]=qt(c[p],o,f.parent,l,f);return g}}(e,_,t,o,l);var g=t.on;if(t.on=t.nativeOn,a(e.options.abstract)){var p=t.slot;t={},p&&(t.slot=p)}!function(e){for(var t=e.hook||(e.hook={}),o=0;o<Nt.length;o++){var n=Nt[o],i=t[n],r=Bt[n];i===r||i&&i._merged||(t[n]=i?Pt(r,i):r)}}(t);var u=e.options.name||d;return new pe("vue-component-"+e.cid+(u?"-"+u:""),t,void 0,void 0,void 0,o,{Ctor:e,propsData:_,listeners:g,tag:d,children:l},f)}}}function Pt(e,t){var o=function(o,n){e(o,n),t(o,n)};return o._merged=!0,o}var It=1,Rt=2;function Lt(e,t,o,n,d,m){return(Array.isArray(o)||l(o))&&(d=n,n=o,o=void 0),a(m)&&(d=Rt),function(e,t,o,n,l){if(r(o)&&r(o.__ob__))return he();r(o)&&r(o.is)&&(t=o.is);if(!t)return he();0;Array.isArray(n)&&"function"==typeof n[0]&&((o=o||{}).scopedSlots={default:n[0]},n.length=0);l===Rt?n=dt(n):l===It&&(n=function(e){for(var t=0;t<e.length;t++)if(Array.isArray(e[t]))return Array.prototype.concat.apply([],e);return e}(n));var d,m;if("string"==typeof t){var f;m=e.$vnode&&e.$vnode.ns||R.getTagNamespace(t),d=R.isReservedTag(t)?new pe(R.parsePlatformTagName(t),o,n,void 0,void 0,e):o&&o.pre||!r(f=Oe(e.$options,"components",t))?new pe(t,o,n,void 0,void 0,e):Ot(f,o,e,n,t)}else d=Ot(t,o,e,n);return Array.isArray(d)?d:r(d)?(r(m)&&function e(t,o,n){t.ns=o;"foreignObject"===t.tag&&(o=void 0,n=!0);if(r(t.children))for(var l=0,s=t.children.length;l<s;l++){var d=t.children[l];r(d.tag)&&(i(d.ns)||a(n)&&"svg"!==d.tag)&&e(d,o,n)}}(d,m),r(o)&&function(e){s(e.style)&&nt(e.style);s(e.class)&&nt(e.class)}(o),d):he()}(e,t,o,n,d)}var Ut,Gt=null;function Kt(e,t){return(e.__esModule||se&&"Module"===e[Symbol.toStringTag])&&(e=e.default),s(e)?t.extend(e):e}function Wt(e){return e.isComment&&e.asyncFactory}function Vt(e){if(Array.isArray(e))for(var t=0;t<e.length;t++){var o=e[t];if(r(o)&&(r(o.componentOptions)||Wt(o)))return o}}function Ht(e,t){Ut.$on(e,t)}function Yt(e,t){Ut.$off(e,t)}function Qt(e,t){var o=Ut;return function n(){var i=t.apply(null,arguments);null!==i&&o.$off(e,n)}}function Zt(e,t,o){Ut=e,at(t,o||{},Ht,Yt,Qt,e),Ut=void 0}var Jt=null;function Xt(e){var t=Jt;return Jt=e,function(){Jt=t}}function $t(e){for(;e&&(e=e.$parent);)if(e._inactive)return!0;return!1}function eo(e,t){if(t){if(e._directInactive=!1,$t(e))return}else if(e._directInactive)return;if(e._inactive||null===e._inactive){e._inactive=!1;for(var o=0;o<e.$children.length;o++)eo(e.$children[o]);to(e,"activated")}}function to(e,t){ce();var o=e.$options[t],n=t+" hook";if(o)for(var i=0,r=o.length;i<r;i++)Ge(o[i],e,null,e,n);e._hasHookEvent&&e.$emit("hook:"+t),ge()}var oo=[],no=[],io={},ro=!1,ao=!1,lo=0;var so=0,mo=Date.now;if(V&&!Z){var fo=window.performance;fo&&"function"==typeof fo.now&&mo()>document.createEvent("Event").timeStamp&&(mo=function(){return fo.now()})}function _o(){var e,t;for(so=mo(),ao=!0,oo.sort((function(e,t){return e.id-t.id})),lo=0;lo<oo.length;lo++)(e=oo[lo]).before&&e.before(),t=e.id,io[t]=null,e.run();var o=no.slice(),n=oo.slice();lo=oo.length=no.length=0,io={},ro=ao=!1,function(e){for(var t=0;t<e.length;t++)e[t]._inactive=!0,eo(e[t],!0)}(o),function(e){var t=e.length;for(;t--;){var o=e[t],n=o.vm;n._watcher===o&&n._isMounted&&!n._isDestroyed&&to(n,"updated")}}(n),re&&R.devtools&&re.emit("flush")}var co=0,go=function(e,t,o,n,i){this.vm=e,i&&(e._watcher=this),e._watchers.push(this),n?(this.deep=!!n.deep,this.user=!!n.user,this.lazy=!!n.lazy,this.sync=!!n.sync,this.before=n.before):this.deep=this.user=this.lazy=this.sync=!1,this.cb=o,this.id=++co,this.active=!0,this.dirty=this.lazy,this.deps=[],this.newDeps=[],this.depIds=new le,this.newDepIds=new le,this.expression="","function"==typeof t?this.getter=t:(this.getter=function(e){if(!G.test(e)){var t=e.split(".");return function(e){for(var o=0;o<t.length;o++){if(!e)return;e=e[t[o]]}return e}}}(t),this.getter||(this.getter=T)),this.value=this.lazy?void 0:this.get()};go.prototype.get=function(){var e;ce(this);var t=this.vm;try{e=this.getter.call(t,t)}catch(e){if(!this.user)throw e;Ue(e,t,'getter for watcher "'+this.expression+'"')}finally{this.deep&&nt(e),ge(),this.cleanupDeps()}return e},go.prototype.addDep=function(e){var t=e.id;this.newDepIds.has(t)||(this.newDepIds.add(t),this.newDeps.push(e),this.depIds.has(t)||e.addSub(this))},go.prototype.cleanupDeps=function(){for(var e=this.deps.length;e--;){var t=this.deps[e];this.newDepIds.has(t.id)||t.removeSub(this)}var o=this.depIds;this.depIds=this.newDepIds,this.newDepIds=o,this.newDepIds.clear(),o=this.deps,this.deps=this.newDeps,this.newDeps=o,this.newDeps.length=0},go.prototype.update=function(){this.lazy?this.dirty=!0:this.sync?this.run():function(e){var t=e.id;if(null==io[t]){if(io[t]=!0,ao){for(var o=oo.length-1;o>lo&&oo[o].id>e.id;)o--;oo.splice(o+1,0,e)}else oo.push(e);ro||(ro=!0,tt(_o))}}(this)},go.prototype.run=function(){if(this.active){var e=this.get();if(e!==this.value||s(e)||this.deep){var t=this.value;if(this.value=e,this.user)try{this.cb.call(this.vm,e,t)}catch(e){Ue(e,this.vm,'callback for watcher "'+this.expression+'"')}else this.cb.call(this.vm,e,t)}}},go.prototype.evaluate=function(){this.value=this.get(),this.dirty=!1},go.prototype.depend=function(){for(var e=this.deps.length;e--;)this.deps[e].depend()},go.prototype.teardown=function(){if(this.active){this.vm._isBeingDestroyed||b(this.vm._watchers,this);for(var e=this.deps.length;e--;)this.deps[e].removeSub(this);this.active=!1}};var po={enumerable:!0,configurable:!0,get:T,set:T};function uo(e,t,o){po.get=function(){return this[t][o]},po.set=function(e){this[t][o]=e},Object.defineProperty(e,o,po)}function ho(e){e._watchers=[];var t=e.$options;t.props&&function(e,t){var o=e.$options.propsData||{},n=e._props={},i=e.$options._propKeys=[];e.$parent&&ke(!1);var r=function(r){i.push(r);var a=Pe(r,t,o,e);De(n,r,a),r in e||uo(e,"_props",r)};for(var a in t)r(a);ke(!0)}(e,t.props),t.methods&&function(e,t){e.$options.props;for(var o in t)e[o]="function"!=typeof t[o]?T:D(t[o],e)}(e,t.methods),t.data?function(e){var t=e.$options.data;m(t=e._data="function"==typeof t?function(e,t){ce();try{return e.call(t,t)}catch(e){return Ue(e,t,"data()"),{}}finally{ge()}}(t,e):t||{})||(t={});var o=Object.keys(t),n=e.$options.props,i=(e.$options.methods,o.length);for(;i--;){var r=o[i];0,n&&y(n,r)||(a=void 0,36!==(a=(r+"").charCodeAt(0))&&95!==a&&uo(e,"_data",r))}var a;Ce(t,!0)}(e):Ce(e._data={},!0),t.computed&&function(e,t){var o=e._computedWatchers=Object.create(null),n=ie();for(var i in t){var r=t[i],a="function"==typeof r?r:r.get;0,n||(o[i]=new go(e,a||T,T,bo)),i in e||xo(e,i,r)}}(e,t.computed),t.watch&&t.watch!==te&&function(e,t){for(var o in t){var n=t[o];if(Array.isArray(n))for(var i=0;i<n.length;i++)vo(e,o,n[i]);else vo(e,o,n)}}(e,t.watch)}var bo={lazy:!0};function xo(e,t,o){var n=!ie();"function"==typeof o?(po.get=n?yo(t):wo(o),po.set=T):(po.get=o.get?n&&!1!==o.cache?yo(t):wo(o.get):T,po.set=o.set||T),Object.defineProperty(e,t,po)}function yo(e){return function(){var t=this._computedWatchers&&this._computedWatchers[e];if(t)return t.dirty&&t.evaluate(),fe.target&&t.depend(),t.value}}function wo(e){return function(){return e.call(this,this)}}function vo(e,t,o,n){return m(o)&&(n=o,o=o.handler),"string"==typeof o&&(o=e[o]),e.$watch(t,o,n)}var Fo=0;function ko(e){var t=e.options;if(e.super){var o=ko(e.super);if(o!==e.superOptions){e.superOptions=o;var n=function(e){var t,o=e.options,n=e.sealedOptions;for(var i in o)o[i]!==n[i]&&(t||(t={}),t[i]=o[i]);return t}(e);n&&A(e.extendOptions,n),(t=e.options=Ne(o,e.extendOptions)).name&&(t.components[t.name]=e)}}return t}function jo(e){this._init(e)}function Co(e){e.cid=0;var t=1;e.extend=function(e){e=e||{};var o=this,n=o.cid,i=e._Ctor||(e._Ctor={});if(i[n])return i[n];var r=e.name||o.options.name;var a=function(e){this._init(e)};return(a.prototype=Object.create(o.prototype)).constructor=a,a.cid=t++,a.options=Ne(o.options,e),a.super=o,a.options.props&&function(e){var t=e.options.props;for(var o in t)uo(e.prototype,"_props",o)}(a),a.options.computed&&function(e){var t=e.options.computed;for(var o in t)xo(e.prototype,o,t[o])}(a),a.extend=o.extend,a.mixin=o.mixin,a.use=o.use,P.forEach((function(e){a[e]=o[e]})),r&&(a.options.components[r]=a),a.superOptions=o.options,a.extendOptions=e,a.sealedOptions=A({},a.options),i[n]=a,a}}function Do(e){return e&&(e.Ctor.options.name||e.tag)}function Eo(e,t){return Array.isArray(e)?e.indexOf(t)>-1:"string"==typeof e?e.split(",").indexOf(t)>-1:!!f(e)&&e.test(t)}function Ao(e,t){var o=e.cache,n=e.keys,i=e._vnode;for(var r in o){var a=o[r];if(a){var l=Do(a.componentOptions);l&&!t(l)&&So(o,r,n,i)}}}function So(e,t,o,n){var i=e[t];!i||n&&i.tag===n.tag||i.componentInstance.$destroy(),e[t]=null,b(o,t)}!function(e){e.prototype._init=function(e){var t=this;t._uid=Fo++,t._isVue=!0,e&&e._isComponent?function(e,t){var o=e.$options=Object.create(e.constructor.options),n=t._parentVnode;o.parent=t.parent,o._parentVnode=n;var i=n.componentOptions;o.propsData=i.propsData,o._parentListeners=i.listeners,o._renderChildren=i.children,o._componentTag=i.tag,t.render&&(o.render=t.render,o.staticRenderFns=t.staticRenderFns)}(t,e):t.$options=Ne(ko(t.constructor),e||{},t),t._renderProxy=t,t._self=t,function(e){var t=e.$options,o=t.parent;if(o&&!t.abstract){for(;o.$options.abstract&&o.$parent;)o=o.$parent;o.$children.push(e)}e.$parent=o,e.$root=o?o.$root:e,e.$children=[],e.$refs={},e._watcher=null,e._inactive=null,e._directInactive=!1,e._isMounted=!1,e._isDestroyed=!1,e._isBeingDestroyed=!1}(t),function(e){e._events=Object.create(null),e._hasHookEvent=!1;var t=e.$options._parentListeners;t&&Zt(e,t)}(t),function(e){e._vnode=null,e._staticTrees=null;var t=e.$options,o=e.$vnode=t._parentVnode,i=o&&o.context;e.$slots=_t(t._renderChildren,i),e.$scopedSlots=n,e._c=function(t,o,n,i){return Lt(e,t,o,n,i,!1)},e.$createElement=function(t,o,n,i){return Lt(e,t,o,n,i,!0)};var r=o&&o.data;De(e,"$attrs",r&&r.attrs||n,null,!0),De(e,"$listeners",t._parentListeners||n,null,!0)}(t),to(t,"beforeCreate"),function(e){var t=ft(e.$options.inject,e);t&&(ke(!1),Object.keys(t).forEach((function(o){De(e,o,t[o])})),ke(!0))}(t),ho(t),function(e){var t=e.$options.provide;t&&(e._provided="function"==typeof t?t.call(e):t)}(t),to(t,"created"),t.$options.el&&t.$mount(t.$options.el)}}(jo),function(e){var t={get:function(){return this._data}},o={get:function(){return this._props}};Object.defineProperty(e.prototype,"$data",t),Object.defineProperty(e.prototype,"$props",o),e.prototype.$set=Ee,e.prototype.$delete=Ae,e.prototype.$watch=function(e,t,o){if(m(t))return vo(this,e,t,o);(o=o||{}).user=!0;var n=new go(this,e,t,o);if(o.immediate)try{t.call(this,n.value)}catch(e){Ue(e,this,'callback for immediate watcher "'+n.expression+'"')}return function(){n.teardown()}}}(jo),function(e){var t=/^hook:/;e.prototype.$on=function(e,o){var n=this;if(Array.isArray(e))for(var i=0,r=e.length;i<r;i++)n.$on(e[i],o);else(n._events[e]||(n._events[e]=[])).push(o),t.test(e)&&(n._hasHookEvent=!0);return n},e.prototype.$once=function(e,t){var o=this;function n(){o.$off(e,n),t.apply(o,arguments)}return n.fn=t,o.$on(e,n),o},e.prototype.$off=function(e,t){var o=this;if(!arguments.length)return o._events=Object.create(null),o;if(Array.isArray(e)){for(var n=0,i=e.length;n<i;n++)o.$off(e[n],t);return o}var r,a=o._events[e];if(!a)return o;if(!t)return o._events[e]=null,o;for(var l=a.length;l--;)if((r=a[l])===t||r.fn===t){a.splice(l,1);break}return o},e.prototype.$emit=function(e){var t=this,o=t._events[e];if(o){o=o.length>1?E(o):o;for(var n=E(arguments,1),i='event handler for "'+e+'"',r=0,a=o.length;r<a;r++)Ge(o[r],t,n,t,i)}return t}}(jo),function(e){e.prototype._update=function(e,t){var o=this,n=o.$el,i=o._vnode,r=Xt(o);o._vnode=e,o.$el=i?o.__patch__(i,e):o.__patch__(o.$el,e,t,!1),r(),n&&(n.__vue__=null),o.$el&&(o.$el.__vue__=o),o.$vnode&&o.$parent&&o.$vnode===o.$parent._vnode&&(o.$parent.$el=o.$el)},e.prototype.$forceUpdate=function(){this._watcher&&this._watcher.update()},e.prototype.$destroy=function(){var e=this;if(!e._isBeingDestroyed){to(e,"beforeDestroy"),e._isBeingDestroyed=!0;var t=e.$parent;!t||t._isBeingDestroyed||e.$options.abstract||b(t.$children,e),e._watcher&&e._watcher.teardown();for(var o=e._watchers.length;o--;)e._watchers[o].teardown();e._data.__ob__&&e._data.__ob__.vmCount--,e._isDestroyed=!0,e.__patch__(e._vnode,null),to(e,"destroyed"),e.$off(),e.$el&&(e.$el.__vue__=null),e.$vnode&&(e.$vnode.parent=null)}}}(jo),function(e){Tt(e.prototype),e.prototype.$nextTick=function(e){return tt(e,this)},e.prototype._render=function(){var e,t=this,o=t.$options,n=o.render,i=o._parentVnode;i&&(t.$scopedSlots=gt(i.data.scopedSlots,t.$slots,t.$scopedSlots)),t.$vnode=i;try{Gt=t,e=n.call(t._renderProxy,t.$createElement)}catch(o){Ue(o,t,"render"),e=t._vnode}finally{Gt=null}return Array.isArray(e)&&1===e.length&&(e=e[0]),e instanceof pe||(e=he()),e.parent=i,e}}(jo);var To=[String,RegExp,Array],Mo={KeepAlive:{name:"keep-alive",abstract:!0,props:{include:To,exclude:To,max:[String,Number]},created:function(){this.cache=Object.create(null),this.keys=[]},destroyed:function(){for(var e in this.cache)So(this.cache,e,this.keys)},mounted:function(){var e=this;this.$watch("include",(function(t){Ao(e,(function(e){return Eo(t,e)}))})),this.$watch("exclude",(function(t){Ao(e,(function(e){return!Eo(t,e)}))}))},render:function(){var e=this.$slots.default,t=Vt(e),o=t&&t.componentOptions;if(o){var n=Do(o),i=this.include,r=this.exclude;if(i&&(!n||!Eo(i,n))||r&&n&&Eo(r,n))return t;var a=this.cache,l=this.keys,s=null==t.key?o.Ctor.cid+(o.tag?"::"+o.tag:""):t.key;a[s]?(t.componentInstance=a[s].componentInstance,b(l,s),l.push(s)):(a[s]=t,l.push(s),this.max&&l.length>parseInt(this.max)&&So(a,l[0],l,this._vnode)),t.data.keepAlive=!0}return t||e&&e[0]}}};!function(e){var t={get:function(){return R}};Object.defineProperty(e,"config",t),e.util={warn:de,extend:A,mergeOptions:Ne,defineReactive:De},e.set=Ee,e.delete=Ae,e.nextTick=tt,e.observable=function(e){return Ce(e),e},e.options=Object.create(null),P.forEach((function(t){e.options[t+"s"]=Object.create(null)})),e.options._base=e,A(e.options.components,Mo),function(e){e.use=function(e){var t=this._installedPlugins||(this._installedPlugins=[]);if(t.indexOf(e)>-1)return this;var o=E(arguments,1);return o.unshift(this),"function"==typeof e.install?e.install.apply(e,o):"function"==typeof e&&e.apply(null,o),t.push(e),this}}(e),function(e){e.mixin=function(e){return this.options=Ne(this.options,e),this}}(e),Co(e),function(e){P.forEach((function(t){e[t]=function(e,o){return o?("component"===t&&m(o)&&(o.name=o.name||e,o=this.options._base.extend(o)),"directive"===t&&"function"==typeof o&&(o={bind:o,update:o}),this.options[t+"s"][e]=o,o):this.options[t+"s"][e]}}))}(e)}(jo),Object.defineProperty(jo.prototype,"$isServer",{get:ie}),Object.defineProperty(jo.prototype,"$ssrContext",{get:function(){return this.$vnode&&this.$vnode.ssrContext}}),Object.defineProperty(jo,"FunctionalRenderContext",{value:Mt}),jo.version="2.6.10";var qo=u("style,class"),zo=u("input,textarea,option,select,progress"),Bo=u("contenteditable,draggable,spellcheck"),No=u("events,caret,typing,plaintext-only"),Oo=function(e,t){return Uo(t)||"false"===t?"false":"contenteditable"===e&&No(t)?t:"true"},Po=u("allowfullscreen,async,autofocus,autoplay,checked,compact,controls,declare,default,defaultchecked,defaultmuted,defaultselected,defer,disabled,enabled,formnovalidate,hidden,indeterminate,inert,ismap,itemscope,loop,multiple,muted,nohref,noresize,noshade,novalidate,nowrap,open,pauseonexit,readonly,required,reversed,scoped,seamless,selected,sortable,translate,truespeed,typemustmatch,visible"),Io="http://www.w3.org/1999/xlink",Ro=function(e){return":"===e.charAt(5)&&"xlink"===e.slice(0,5)},Lo=function(e){return Ro(e)?e.slice(6,e.length):""},Uo=function(e){return null==e||!1===e};function Go(e){for(var t=e.data,o=e,n=e;r(n.componentInstance);)(n=n.componentInstance._vnode)&&n.data&&(t=Ko(n.data,t));for(;r(o=o.parent);)o&&o.data&&(t=Ko(t,o.data));return function(e,t){if(r(e)||r(t))return Wo(e,Vo(t));return""}(t.staticClass,t.class)}function Ko(e,t){return{staticClass:Wo(e.staticClass,t.staticClass),class:r(e.class)?[e.class,t.class]:t.class}}function Wo(e,t){return e?t?e+" "+t:e:t||""}function Vo(e){return Array.isArray(e)?function(e){for(var t,o="",n=0,i=e.length;n<i;n++)r(t=Vo(e[n]))&&""!==t&&(o&&(o+=" "),o+=t);return o}(e):s(e)?function(e){var t="";for(var o in e)e[o]&&(t&&(t+=" "),t+=o);return t}(e):"string"==typeof e?e:""}var Ho={svg:"http://www.w3.org/2000/svg",math:"http://www.w3.org/1998/Math/MathML"},Yo=u("html,body,base,head,link,meta,style,title,address,article,aside,footer,header,h1,h2,h3,h4,h5,h6,hgroup,nav,section,div,dd,dl,dt,figcaption,figure,picture,hr,img,li,main,ol,p,pre,ul,a,b,abbr,bdi,bdo,br,cite,code,data,dfn,em,i,kbd,mark,q,rp,rt,rtc,ruby,s,samp,small,span,strong,sub,sup,time,u,var,wbr,area,audio,map,track,video,embed,object,param,source,canvas,script,noscript,del,ins,caption,col,colgroup,table,thead,tbody,td,th,tr,button,datalist,fieldset,form,input,label,legend,meter,optgroup,option,output,progress,select,textarea,details,dialog,menu,menuitem,summary,content,element,shadow,template,blockquote,iframe,tfoot"),Qo=u("svg,animate,circle,clippath,cursor,defs,desc,ellipse,filter,font-face,foreignObject,g,glyph,image,line,marker,mask,missing-glyph,path,pattern,polygon,polyline,rect,switch,symbol,text,textpath,tspan,use,view",!0),Zo=function(e){return Yo(e)||Qo(e)};var Jo=Object.create(null);var Xo=u("text,number,password,search,email,tel,url");var $o=Object.freeze({createElement:function(e,t){var o=document.createElement(e);return"select"!==e?o:(t.data&&t.data.attrs&&void 0!==t.data.attrs.multiple&&o.setAttribute("multiple","multiple"),o)},createElementNS:function(e,t){return document.createElementNS(Ho[e],t)},createTextNode:function(e){return document.createTextNode(e)},createComment:function(e){return document.createComment(e)},insertBefore:function(e,t,o){e.insertBefore(t,o)},removeChild:function(e,t){e.removeChild(t)},appendChild:function(e,t){e.appendChild(t)},parentNode:function(e){return e.parentNode},nextSibling:function(e){return e.nextSibling},tagName:function(e){return e.tagName},setTextContent:function(e,t){e.textContent=t},setStyleScope:function(e,t){e.setAttribute(t,"")}}),en={create:function(e,t){tn(t)},update:function(e,t){e.data.ref!==t.data.ref&&(tn(e,!0),tn(t))},destroy:function(e){tn(e,!0)}};function tn(e,t){var o=e.data.ref;if(r(o)){var n=e.context,i=e.componentInstance||e.elm,a=n.$refs;t?Array.isArray(a[o])?b(a[o],i):a[o]===i&&(a[o]=void 0):e.data.refInFor?Array.isArray(a[o])?a[o].indexOf(i)<0&&a[o].push(i):a[o]=[i]:a[o]=i}}var on=new pe("",{},[]),nn=["create","activate","update","remove","destroy"];function rn(e,t){return e.key===t.key&&(e.tag===t.tag&&e.isComment===t.isComment&&r(e.data)===r(t.data)&&function(e,t){if("input"!==e.tag)return!0;var o,n=r(o=e.data)&&r(o=o.attrs)&&o.type,i=r(o=t.data)&&r(o=o.attrs)&&o.type;return n===i||Xo(n)&&Xo(i)}(e,t)||a(e.isAsyncPlaceholder)&&e.asyncFactory===t.asyncFactory&&i(t.asyncFactory.error))}function an(e,t,o){var n,i,a={};for(n=t;n<=o;++n)r(i=e[n].key)&&(a[i]=n);return a}var ln={create:sn,update:sn,destroy:function(e){sn(e,on)}};function sn(e,t){(e.data.directives||t.data.directives)&&function(e,t){var o,n,i,r=e===on,a=t===on,l=mn(e.data.directives,e.context),s=mn(t.data.directives,t.context),d=[],m=[];for(o in s)n=l[o],i=s[o],n?(i.oldValue=n.value,i.oldArg=n.arg,_n(i,"update",t,e),i.def&&i.def.componentUpdated&&m.push(i)):(_n(i,"bind",t,e),i.def&&i.def.inserted&&d.push(i));if(d.length){var f=function(){for(var o=0;o<d.length;o++)_n(d[o],"inserted",t,e)};r?lt(t,"insert",f):f()}m.length&&lt(t,"postpatch",(function(){for(var o=0;o<m.length;o++)_n(m[o],"componentUpdated",t,e)}));if(!r)for(o in l)s[o]||_n(l[o],"unbind",e,e,a)}(e,t)}var dn=Object.create(null);function mn(e,t){var o,n,i=Object.create(null);if(!e)return i;for(o=0;o<e.length;o++)(n=e[o]).modifiers||(n.modifiers=dn),i[fn(n)]=n,n.def=Oe(t.$options,"directives",n.name);return i}function fn(e){return e.rawName||e.name+"."+Object.keys(e.modifiers||{}).join(".")}function _n(e,t,o,n,i){var r=e.def&&e.def[t];if(r)try{r(o.elm,e,o,n,i)}catch(n){Ue(n,o.context,"directive "+e.name+" "+t+" hook")}}var cn=[en,ln];function gn(e,t){var o=t.componentOptions;if(!(r(o)&&!1===o.Ctor.options.inheritAttrs||i(e.data.attrs)&&i(t.data.attrs))){var n,a,l=t.elm,s=e.data.attrs||{},d=t.data.attrs||{};for(n in r(d.__ob__)&&(d=t.data.attrs=A({},d)),d)a=d[n],s[n]!==a&&pn(l,n,a);for(n in(Z||X)&&d.value!==s.value&&pn(l,"value",d.value),s)i(d[n])&&(Ro(n)?l.removeAttributeNS(Io,Lo(n)):Bo(n)||l.removeAttribute(n))}}function pn(e,t,o){e.tagName.indexOf("-")>-1?un(e,t,o):Po(t)?Uo(o)?e.removeAttribute(t):(o="allowfullscreen"===t&&"EMBED"===e.tagName?"true":t,e.setAttribute(t,o)):Bo(t)?e.setAttribute(t,Oo(t,o)):Ro(t)?Uo(o)?e.removeAttributeNS(Io,Lo(t)):e.setAttributeNS(Io,t,o):un(e,t,o)}function un(e,t,o){if(Uo(o))e.removeAttribute(t);else{if(Z&&!J&&"TEXTAREA"===e.tagName&&"placeholder"===t&&""!==o&&!e.__ieph){var n=function(t){t.stopImmediatePropagation(),e.removeEventListener("input",n)};e.addEventListener("input",n),e.__ieph=!0}e.setAttribute(t,o)}}var hn={create:gn,update:gn};function bn(e,t){var o=t.elm,n=t.data,a=e.data;if(!(i(n.staticClass)&&i(n.class)&&(i(a)||i(a.staticClass)&&i(a.class)))){var l=Go(t),s=o._transitionClasses;r(s)&&(l=Wo(l,Vo(s))),l!==o._prevClass&&(o.setAttribute("class",l),o._prevClass=l)}}var xn,yn={create:bn,update:bn},wn="__r",vn="__c";function Fn(e,t,o){var n=xn;return function i(){var r=t.apply(null,arguments);null!==r&&Cn(e,i,o,n)}}var kn=He&&!(ee&&Number(ee[1])<=53);function jn(e,t,o,n){if(kn){var i=so,r=t;t=r._wrapper=function(e){if(e.target===e.currentTarget||e.timeStamp>=i||e.timeStamp<=0||e.target.ownerDocument!==document)return r.apply(this,arguments)}}xn.addEventListener(e,t,oe?{capture:o,passive:n}:o)}function Cn(e,t,o,n){(n||xn).removeEventListener(e,t._wrapper||t,o)}function Dn(e,t){if(!i(e.data.on)||!i(t.data.on)){var o=t.data.on||{},n=e.data.on||{};xn=t.elm,function(e){if(r(e[wn])){var t=Z?"change":"input";e[t]=[].concat(e[wn],e[t]||[]),delete e[wn]}r(e[vn])&&(e.change=[].concat(e[vn],e.change||[]),delete e[vn])}(o),at(o,n,jn,Cn,Fn,t.context),xn=void 0}}var En,An={create:Dn,update:Dn};function Sn(e,t){if(!i(e.data.domProps)||!i(t.data.domProps)){var o,n,a=t.elm,l=e.data.domProps||{},s=t.data.domProps||{};for(o in r(s.__ob__)&&(s=t.data.domProps=A({},s)),l)o in s||(a[o]="");for(o in s){if(n=s[o],"textContent"===o||"innerHTML"===o){if(t.children&&(t.children.length=0),n===l[o])continue;1===a.childNodes.length&&a.removeChild(a.childNodes[0])}if("value"===o&&"PROGRESS"!==a.tagName){a._value=n;var d=i(n)?"":String(n);Tn(a,d)&&(a.value=d)}else if("innerHTML"===o&&Qo(a.tagName)&&i(a.innerHTML)){(En=En||document.createElement("div")).innerHTML="<svg>"+n+"</svg>";for(var m=En.firstChild;a.firstChild;)a.removeChild(a.firstChild);for(;m.firstChild;)a.appendChild(m.firstChild)}else if(n!==l[o])try{a[o]=n}catch(e){}}}}function Tn(e,t){return!e.composing&&("OPTION"===e.tagName||function(e,t){var o=!0;try{o=document.activeElement!==e}catch(e){}return o&&e.value!==t}(e,t)||function(e,t){var o=e.value,n=e._vModifiers;if(r(n)){if(n.number)return p(o)!==p(t);if(n.trim)return o.trim()!==t.trim()}return o!==t}(e,t))}var Mn={create:Sn,update:Sn},qn=w((function(e){var t={},o=/:(.+)/;return e.split(/;(?![^(]*\))/g).forEach((function(e){if(e){var n=e.split(o);n.length>1&&(t[n[0].trim()]=n[1].trim())}})),t}));function zn(e){var t=Bn(e.style);return e.staticStyle?A(e.staticStyle,t):t}function Bn(e){return Array.isArray(e)?S(e):"string"==typeof e?qn(e):e}var Nn,On=/^--/,Pn=/\s*!important$/,In=function(e,t,o){if(On.test(t))e.style.setProperty(t,o);else if(Pn.test(o))e.style.setProperty(C(t),o.replace(Pn,""),"important");else{var n=Ln(t);if(Array.isArray(o))for(var i=0,r=o.length;i<r;i++)e.style[n]=o[i];else e.style[n]=o}},Rn=["Webkit","Moz","ms"],Ln=w((function(e){if(Nn=Nn||document.createElement("div").style,"filter"!==(e=F(e))&&e in Nn)return e;for(var t=e.charAt(0).toUpperCase()+e.slice(1),o=0;o<Rn.length;o++){var n=Rn[o]+t;if(n in Nn)return n}}));function Un(e,t){var o=t.data,n=e.data;if(!(i(o.staticStyle)&&i(o.style)&&i(n.staticStyle)&&i(n.style))){var a,l,s=t.elm,d=n.staticStyle,m=n.normalizedStyle||n.style||{},f=d||m,_=Bn(t.data.style)||{};t.data.normalizedStyle=r(_.__ob__)?A({},_):_;var c=function(e,t){var o,n={};if(t)for(var i=e;i.componentInstance;)(i=i.componentInstance._vnode)&&i.data&&(o=zn(i.data))&&A(n,o);(o=zn(e.data))&&A(n,o);for(var r=e;r=r.parent;)r.data&&(o=zn(r.data))&&A(n,o);return n}(t,!0);for(l in f)i(c[l])&&In(s,l,"");for(l in c)(a=c[l])!==f[l]&&In(s,l,null==a?"":a)}}var Gn={create:Un,update:Un},Kn=/\s+/;function Wn(e,t){if(t&&(t=t.trim()))if(e.classList)t.indexOf(" ")>-1?t.split(Kn).forEach((function(t){return e.classList.add(t)})):e.classList.add(t);else{var o=" "+(e.getAttribute("class")||"")+" ";o.indexOf(" "+t+" ")<0&&e.setAttribute("class",(o+t).trim())}}function Vn(e,t){if(t&&(t=t.trim()))if(e.classList)t.indexOf(" ")>-1?t.split(Kn).forEach((function(t){return e.classList.remove(t)})):e.classList.remove(t),e.classList.length||e.removeAttribute("class");else{for(var o=" "+(e.getAttribute("class")||"")+" ",n=" "+t+" ";o.indexOf(n)>=0;)o=o.replace(n," ");(o=o.trim())?e.setAttribute("class",o):e.removeAttribute("class")}}function Hn(e){if(e){if("object"==typeof e){var t={};return!1!==e.css&&A(t,Yn(e.name||"v")),A(t,e),t}return"string"==typeof e?Yn(e):void 0}}var Yn=w((function(e){return{enterClass:e+"-enter",enterToClass:e+"-enter-to",enterActiveClass:e+"-enter-active",leaveClass:e+"-leave",leaveToClass:e+"-leave-to",leaveActiveClass:e+"-leave-active"}})),Qn=V&&!J,Zn="transition",Jn="animation",Xn="transition",$n="transitionend",ei="animation",ti="animationend";Qn&&(void 0===window.ontransitionend&&void 0!==window.onwebkittransitionend&&(Xn="WebkitTransition",$n="webkitTransitionEnd"),void 0===window.onanimationend&&void 0!==window.onwebkitanimationend&&(ei="WebkitAnimation",ti="webkitAnimationEnd"));var oi=V?window.requestAnimationFrame?window.requestAnimationFrame.bind(window):setTimeout:function(e){return e()};function ni(e){oi((function(){oi(e)}))}function ii(e,t){var o=e._transitionClasses||(e._transitionClasses=[]);o.indexOf(t)<0&&(o.push(t),Wn(e,t))}function ri(e,t){e._transitionClasses&&b(e._transitionClasses,t),Vn(e,t)}function ai(e,t,o){var n=si(e,t),i=n.type,r=n.timeout,a=n.propCount;if(!i)return o();var l=i===Zn?$n:ti,s=0,d=function(){e.removeEventListener(l,m),o()},m=function(t){t.target===e&&++s>=a&&d()};setTimeout((function(){s<a&&d()}),r+1),e.addEventListener(l,m)}var li=/\b(transform|all)(,|$)/;function si(e,t){var o,n=window.getComputedStyle(e),i=(n[Xn+"Delay"]||"").split(", "),r=(n[Xn+"Duration"]||"").split(", "),a=di(i,r),l=(n[ei+"Delay"]||"").split(", "),s=(n[ei+"Duration"]||"").split(", "),d=di(l,s),m=0,f=0;return t===Zn?a>0&&(o=Zn,m=a,f=r.length):t===Jn?d>0&&(o=Jn,m=d,f=s.length):f=(o=(m=Math.max(a,d))>0?a>d?Zn:Jn:null)?o===Zn?r.length:s.length:0,{type:o,timeout:m,propCount:f,hasTransform:o===Zn&&li.test(n[Xn+"Property"])}}function di(e,t){for(;e.length<t.length;)e=e.concat(e);return Math.max.apply(null,t.map((function(t,o){return mi(t)+mi(e[o])})))}function mi(e){return 1e3*Number(e.slice(0,-1).replace(",","."))}function fi(e,t){var o=e.elm;r(o._leaveCb)&&(o._leaveCb.cancelled=!0,o._leaveCb());var n=Hn(e.data.transition);if(!i(n)&&!r(o._enterCb)&&1===o.nodeType){for(var a=n.css,l=n.type,d=n.enterClass,m=n.enterToClass,f=n.enterActiveClass,_=n.appearClass,c=n.appearToClass,g=n.appearActiveClass,u=n.beforeEnter,h=n.enter,b=n.afterEnter,x=n.enterCancelled,y=n.beforeAppear,w=n.appear,v=n.afterAppear,F=n.appearCancelled,k=n.duration,j=Jt,C=Jt.$vnode;C&&C.parent;)j=C.context,C=C.parent;var D=!j._isMounted||!e.isRootInsert;if(!D||w||""===w){var E=D&&_?_:d,A=D&&g?g:f,S=D&&c?c:m,T=D&&y||u,M=D&&"function"==typeof w?w:h,q=D&&v||b,z=D&&F||x,B=p(s(k)?k.enter:k);0;var O=!1!==a&&!J,P=gi(M),I=o._enterCb=N((function(){O&&(ri(o,S),ri(o,A)),I.cancelled?(O&&ri(o,E),z&&z(o)):q&&q(o),o._enterCb=null}));e.data.show||lt(e,"insert",(function(){var t=o.parentNode,n=t&&t._pending&&t._pending[e.key];n&&n.tag===e.tag&&n.elm._leaveCb&&n.elm._leaveCb(),M&&M(o,I)})),T&&T(o),O&&(ii(o,E),ii(o,A),ni((function(){ri(o,E),I.cancelled||(ii(o,S),P||(ci(B)?setTimeout(I,B):ai(o,l,I)))}))),e.data.show&&(t&&t(),M&&M(o,I)),O||P||I()}}}function _i(e,t){var o=e.elm;r(o._enterCb)&&(o._enterCb.cancelled=!0,o._enterCb());var n=Hn(e.data.transition);if(i(n)||1!==o.nodeType)return t();if(!r(o._leaveCb)){var a=n.css,l=n.type,d=n.leaveClass,m=n.leaveToClass,f=n.leaveActiveClass,_=n.beforeLeave,c=n.leave,g=n.afterLeave,u=n.leaveCancelled,h=n.delayLeave,b=n.duration,x=!1!==a&&!J,y=gi(c),w=p(s(b)?b.leave:b);0;var v=o._leaveCb=N((function(){o.parentNode&&o.parentNode._pending&&(o.parentNode._pending[e.key]=null),x&&(ri(o,m),ri(o,f)),v.cancelled?(x&&ri(o,d),u&&u(o)):(t(),g&&g(o)),o._leaveCb=null}));h?h(F):F()}function F(){v.cancelled||(!e.data.show&&o.parentNode&&((o.parentNode._pending||(o.parentNode._pending={}))[e.key]=e),_&&_(o),x&&(ii(o,d),ii(o,f),ni((function(){ri(o,d),v.cancelled||(ii(o,m),y||(ci(w)?setTimeout(v,w):ai(o,l,v)))}))),c&&c(o,v),x||y||v())}}function ci(e){return"number"==typeof e&&!isNaN(e)}function gi(e){if(i(e))return!1;var t=e.fns;return r(t)?gi(Array.isArray(t)?t[0]:t):(e._length||e.length)>1}function pi(e,t){!0!==t.data.show&&fi(t)}var ui=function(e){var t,o,n={},s=e.modules,d=e.nodeOps;for(t=0;t<nn.length;++t)for(n[nn[t]]=[],o=0;o<s.length;++o)r(s[o][nn[t]])&&n[nn[t]].push(s[o][nn[t]]);function m(e){var t=d.parentNode(e);r(t)&&d.removeChild(t,e)}function f(e,t,o,i,l,s,m){if(r(e.elm)&&r(s)&&(e=s[m]=xe(e)),e.isRootInsert=!l,!function(e,t,o,i){var l=e.data;if(r(l)){var s=r(e.componentInstance)&&l.keepAlive;if(r(l=l.hook)&&r(l=l.init)&&l(e,!1),r(e.componentInstance))return _(e,t),c(o,e.elm,i),a(s)&&function(e,t,o,i){var a,l=e;for(;l.componentInstance;)if(l=l.componentInstance._vnode,r(a=l.data)&&r(a=a.transition)){for(a=0;a<n.activate.length;++a)n.activate[a](on,l);t.push(l);break}c(o,e.elm,i)}(e,t,o,i),!0}}(e,t,o,i)){var f=e.data,p=e.children,u=e.tag;r(u)?(e.elm=e.ns?d.createElementNS(e.ns,u):d.createElement(u,e),b(e),g(e,p,t),r(f)&&h(e,t),c(o,e.elm,i)):a(e.isComment)?(e.elm=d.createComment(e.text),c(o,e.elm,i)):(e.elm=d.createTextNode(e.text),c(o,e.elm,i))}}function _(e,t){r(e.data.pendingInsert)&&(t.push.apply(t,e.data.pendingInsert),e.data.pendingInsert=null),e.elm=e.componentInstance.$el,p(e)?(h(e,t),b(e)):(tn(e),t.push(e))}function c(e,t,o){r(e)&&(r(o)?d.parentNode(o)===e&&d.insertBefore(e,t,o):d.appendChild(e,t))}function g(e,t,o){if(Array.isArray(t)){0;for(var n=0;n<t.length;++n)f(t[n],o,e.elm,null,!0,t,n)}else l(e.text)&&d.appendChild(e.elm,d.createTextNode(String(e.text)))}function p(e){for(;e.componentInstance;)e=e.componentInstance._vnode;return r(e.tag)}function h(e,o){for(var i=0;i<n.create.length;++i)n.create[i](on,e);r(t=e.data.hook)&&(r(t.create)&&t.create(on,e),r(t.insert)&&o.push(e))}function b(e){var t;if(r(t=e.fnScopeId))d.setStyleScope(e.elm,t);else for(var o=e;o;)r(t=o.context)&&r(t=t.$options._scopeId)&&d.setStyleScope(e.elm,t),o=o.parent;r(t=Jt)&&t!==e.context&&t!==e.fnContext&&r(t=t.$options._scopeId)&&d.setStyleScope(e.elm,t)}function x(e,t,o,n,i,r){for(;n<=i;++n)f(o[n],r,e,t,!1,o,n)}function y(e){var t,o,i=e.data;if(r(i))for(r(t=i.hook)&&r(t=t.destroy)&&t(e),t=0;t<n.destroy.length;++t)n.destroy[t](e);if(r(t=e.children))for(o=0;o<e.children.length;++o)y(e.children[o])}function w(e,t,o,n){for(;o<=n;++o){var i=t[o];r(i)&&(r(i.tag)?(v(i),y(i)):m(i.elm))}}function v(e,t){if(r(t)||r(e.data)){var o,i=n.remove.length+1;for(r(t)?t.listeners+=i:t=function(e,t){function o(){0==--o.listeners&&m(e)}return o.listeners=t,o}(e.elm,i),r(o=e.componentInstance)&&r(o=o._vnode)&&r(o.data)&&v(o,t),o=0;o<n.remove.length;++o)n.remove[o](e,t);r(o=e.data.hook)&&r(o=o.remove)?o(e,t):t()}else m(e.elm)}function F(e,t,o,n){for(var i=o;i<n;i++){var a=t[i];if(r(a)&&rn(e,a))return i}}function k(e,t,o,l,s,m){if(e!==t){r(t.elm)&&r(l)&&(t=l[s]=xe(t));var _=t.elm=e.elm;if(a(e.isAsyncPlaceholder))r(t.asyncFactory.resolved)?D(e.elm,t,o):t.isAsyncPlaceholder=!0;else if(a(t.isStatic)&&a(e.isStatic)&&t.key===e.key&&(a(t.isCloned)||a(t.isOnce)))t.componentInstance=e.componentInstance;else{var c,g=t.data;r(g)&&r(c=g.hook)&&r(c=c.prepatch)&&c(e,t);var u=e.children,h=t.children;if(r(g)&&p(t)){for(c=0;c<n.update.length;++c)n.update[c](e,t);r(c=g.hook)&&r(c=c.update)&&c(e,t)}i(t.text)?r(u)&&r(h)?u!==h&&function(e,t,o,n,a){var l,s,m,_=0,c=0,g=t.length-1,p=t[0],u=t[g],h=o.length-1,b=o[0],y=o[h],v=!a;for(0;_<=g&&c<=h;)i(p)?p=t[++_]:i(u)?u=t[--g]:rn(p,b)?(k(p,b,n,o,c),p=t[++_],b=o[++c]):rn(u,y)?(k(u,y,n,o,h),u=t[--g],y=o[--h]):rn(p,y)?(k(p,y,n,o,h),v&&d.insertBefore(e,p.elm,d.nextSibling(u.elm)),p=t[++_],y=o[--h]):rn(u,b)?(k(u,b,n,o,c),v&&d.insertBefore(e,u.elm,p.elm),u=t[--g],b=o[++c]):(i(l)&&(l=an(t,_,g)),i(s=r(b.key)?l[b.key]:F(b,t,_,g))?f(b,n,e,p.elm,!1,o,c):rn(m=t[s],b)?(k(m,b,n,o,c),t[s]=void 0,v&&d.insertBefore(e,m.elm,p.elm)):f(b,n,e,p.elm,!1,o,c),b=o[++c]);_>g?x(e,i(o[h+1])?null:o[h+1].elm,o,c,h,n):c>h&&w(0,t,_,g)}(_,u,h,o,m):r(h)?(r(e.text)&&d.setTextContent(_,""),x(_,null,h,0,h.length-1,o)):r(u)?w(0,u,0,u.length-1):r(e.text)&&d.setTextContent(_,""):e.text!==t.text&&d.setTextContent(_,t.text),r(g)&&r(c=g.hook)&&r(c=c.postpatch)&&c(e,t)}}}function j(e,t,o){if(a(o)&&r(e.parent))e.parent.data.pendingInsert=t;else for(var n=0;n<t.length;++n)t[n].data.hook.insert(t[n])}var C=u("attrs,class,staticClass,staticStyle,key");function D(e,t,o,n){var i,l=t.tag,s=t.data,d=t.children;if(n=n||s&&s.pre,t.elm=e,a(t.isComment)&&r(t.asyncFactory))return t.isAsyncPlaceholder=!0,!0;if(r(s)&&(r(i=s.hook)&&r(i=i.init)&&i(t,!0),r(i=t.componentInstance)))return _(t,o),!0;if(r(l)){if(r(d))if(e.hasChildNodes())if(r(i=s)&&r(i=i.domProps)&&r(i=i.innerHTML)){if(i!==e.innerHTML)return!1}else{for(var m=!0,f=e.firstChild,c=0;c<d.length;c++){if(!f||!D(f,d[c],o,n)){m=!1;break}f=f.nextSibling}if(!m||f)return!1}else g(t,d,o);if(r(s)){var p=!1;for(var u in s)if(!C(u)){p=!0,h(t,o);break}!p&&s.class&&nt(s.class)}}else e.data!==t.text&&(e.data=t.text);return!0}return function(e,t,o,l){if(!i(t)){var s,m=!1,_=[];if(i(e))m=!0,f(t,_);else{var c=r(e.nodeType);if(!c&&rn(e,t))k(e,t,_,null,null,l);else{if(c){if(1===e.nodeType&&e.hasAttribute(O)&&(e.removeAttribute(O),o=!0),a(o)&&D(e,t,_))return j(t,_,!0),e;s=e,e=new pe(d.tagName(s).toLowerCase(),{},[],void 0,s)}var g=e.elm,u=d.parentNode(g);if(f(t,_,g._leaveCb?null:u,d.nextSibling(g)),r(t.parent))for(var h=t.parent,b=p(t);h;){for(var x=0;x<n.destroy.length;++x)n.destroy[x](h);if(h.elm=t.elm,b){for(var v=0;v<n.create.length;++v)n.create[v](on,h);var F=h.data.hook.insert;if(F.merged)for(var C=1;C<F.fns.length;C++)F.fns[C]()}else tn(h);h=h.parent}r(u)?w(0,[e],0,0):r(e.tag)&&y(e)}}return j(t,_,m),t.elm}r(e)&&y(e)}}({nodeOps:$o,modules:[hn,yn,An,Mn,Gn,V?{create:pi,activate:pi,remove:function(e,t){!0!==e.data.show?_i(e,t):t()}}:{}].concat(cn)});J&&document.addEventListener("selectionchange",(function(){var e=document.activeElement;e&&e.vmodel&&ki(e,"input")}));var hi={inserted:function(e,t,o,n){"select"===o.tag?(n.elm&&!n.elm._vOptions?lt(o,"postpatch",(function(){hi.componentUpdated(e,t,o)})):bi(e,t,o.context),e._vOptions=[].map.call(e.options,wi)):("textarea"===o.tag||Xo(e.type))&&(e._vModifiers=t.modifiers,t.modifiers.lazy||(e.addEventListener("compositionstart",vi),e.addEventListener("compositionend",Fi),e.addEventListener("change",Fi),J&&(e.vmodel=!0)))},componentUpdated:function(e,t,o){if("select"===o.tag){bi(e,t,o.context);var n=e._vOptions,i=e._vOptions=[].map.call(e.options,wi);if(i.some((function(e,t){return!z(e,n[t])})))(e.multiple?t.value.some((function(e){return yi(e,i)})):t.value!==t.oldValue&&yi(t.value,i))&&ki(e,"change")}}};function bi(e,t,o){xi(e,t,o),(Z||X)&&setTimeout((function(){xi(e,t,o)}),0)}function xi(e,t,o){var n=t.value,i=e.multiple;if(!i||Array.isArray(n)){for(var r,a,l=0,s=e.options.length;l<s;l++)if(a=e.options[l],i)r=B(n,wi(a))>-1,a.selected!==r&&(a.selected=r);else if(z(wi(a),n))return void(e.selectedIndex!==l&&(e.selectedIndex=l));i||(e.selectedIndex=-1)}}function yi(e,t){return t.every((function(t){return!z(t,e)}))}function wi(e){return"_value"in e?e._value:e.value}function vi(e){e.target.composing=!0}function Fi(e){e.target.composing&&(e.target.composing=!1,ki(e.target,"input"))}function ki(e,t){var o=document.createEvent("HTMLEvents");o.initEvent(t,!0,!0),e.dispatchEvent(o)}function ji(e){return!e.componentInstance||e.data&&e.data.transition?e:ji(e.componentInstance._vnode)}var Ci={model:hi,show:{bind:function(e,t,o){var n=t.value,i=(o=ji(o)).data&&o.data.transition,r=e.__vOriginalDisplay="none"===e.style.display?"":e.style.display;n&&i?(o.data.show=!0,fi(o,(function(){e.style.display=r}))):e.style.display=n?r:"none"},update:function(e,t,o){var n=t.value;!n!=!t.oldValue&&((o=ji(o)).data&&o.data.transition?(o.data.show=!0,n?fi(o,(function(){e.style.display=e.__vOriginalDisplay})):_i(o,(function(){e.style.display="none"}))):e.style.display=n?e.__vOriginalDisplay:"none")},unbind:function(e,t,o,n,i){i||(e.style.display=e.__vOriginalDisplay)}}},Di={name:String,appear:Boolean,css:Boolean,mode:String,type:String,enterClass:String,leaveClass:String,enterToClass:String,leaveToClass:String,enterActiveClass:String,leaveActiveClass:String,appearClass:String,appearActiveClass:String,appearToClass:String,duration:[Number,String,Object]};function Ei(e){var t=e&&e.componentOptions;return t&&t.Ctor.options.abstract?Ei(Vt(t.children)):e}function Ai(e){var t={},o=e.$options;for(var n in o.propsData)t[n]=e[n];var i=o._parentListeners;for(var r in i)t[F(r)]=i[r];return t}function Si(e,t){if(/\d-keep-alive$/.test(t.tag))return e("keep-alive",{props:t.componentOptions.propsData})}var Ti=function(e){return e.tag||Wt(e)},Mi=function(e){return"show"===e.name},qi={name:"transition",props:Di,abstract:!0,render:function(e){var t=this,o=this.$slots.default;if(o&&(o=o.filter(Ti)).length){0;var n=this.mode;0;var i=o[0];if(function(e){for(;e=e.parent;)if(e.data.transition)return!0}(this.$vnode))return i;var r=Ei(i);if(!r)return i;if(this._leaving)return Si(e,i);var a="__transition-"+this._uid+"-";r.key=null==r.key?r.isComment?a+"comment":a+r.tag:l(r.key)?0===String(r.key).indexOf(a)?r.key:a+r.key:r.key;var s=(r.data||(r.data={})).transition=Ai(this),d=this._vnode,m=Ei(d);if(r.data.directives&&r.data.directives.some(Mi)&&(r.data.show=!0),m&&m.data&&!function(e,t){return t.key===e.key&&t.tag===e.tag}(r,m)&&!Wt(m)&&(!m.componentInstance||!m.componentInstance._vnode.isComment)){var f=m.data.transition=A({},s);if("out-in"===n)return this._leaving=!0,lt(f,"afterLeave",(function(){t._leaving=!1,t.$forceUpdate()})),Si(e,i);if("in-out"===n){if(Wt(r))return d;var _,c=function(){_()};lt(s,"afterEnter",c),lt(s,"enterCancelled",c),lt(f,"delayLeave",(function(e){_=e}))}}return i}}},zi=A({tag:String,moveClass:String},Di);function Bi(e){e.elm._moveCb&&e.elm._moveCb(),e.elm._enterCb&&e.elm._enterCb()}function Ni(e){e.data.newPos=e.elm.getBoundingClientRect()}function Oi(e){var t=e.data.pos,o=e.data.newPos,n=t.left-o.left,i=t.top-o.top;if(n||i){e.data.moved=!0;var r=e.elm.style;r.transform=r.WebkitTransform="translate("+n+"px,"+i+"px)",r.transitionDuration="0s"}}delete zi.mode;var Pi={Transition:qi,TransitionGroup:{props:zi,beforeMount:function(){var e=this,t=this._update;this._update=function(o,n){var i=Xt(e);e.__patch__(e._vnode,e.kept,!1,!0),e._vnode=e.kept,i(),t.call(e,o,n)}},render:function(e){for(var t=this.tag||this.$vnode.data.tag||"span",o=Object.create(null),n=this.prevChildren=this.children,i=this.$slots.default||[],r=this.children=[],a=Ai(this),l=0;l<i.length;l++){var s=i[l];if(s.tag)if(null!=s.key&&0!==String(s.key).indexOf("__vlist"))r.push(s),o[s.key]=s,(s.data||(s.data={})).transition=a;else;}if(n){for(var d=[],m=[],f=0;f<n.length;f++){var _=n[f];_.data.transition=a,_.data.pos=_.elm.getBoundingClientRect(),o[_.key]?d.push(_):m.push(_)}this.kept=e(t,null,d),this.removed=m}return e(t,null,r)},updated:function(){var e=this.prevChildren,t=this.moveClass||(this.name||"v")+"-move";e.length&&this.hasMove(e[0].elm,t)&&(e.forEach(Bi),e.forEach(Ni),e.forEach(Oi),this._reflow=document.body.offsetHeight,e.forEach((function(e){if(e.data.moved){var o=e.elm,n=o.style;ii(o,t),n.transform=n.WebkitTransform=n.transitionDuration="",o.addEventListener($n,o._moveCb=function e(n){n&&n.target!==o||n&&!/transform$/.test(n.propertyName)||(o.removeEventListener($n,e),o._moveCb=null,ri(o,t))})}})))},methods:{hasMove:function(e,t){if(!Qn)return!1;if(this._hasMove)return this._hasMove;var o=e.cloneNode();e._transitionClasses&&e._transitionClasses.forEach((function(e){Vn(o,e)})),Wn(o,t),o.style.display="none",this.$el.appendChild(o);var n=si(o);return this.$el.removeChild(o),this._hasMove=n.hasTransform}}}};jo.config.mustUseProp=function(e,t,o){return"value"===o&&zo(e)&&"button"!==t||"selected"===o&&"option"===e||"checked"===o&&"input"===e||"muted"===o&&"video"===e},jo.config.isReservedTag=Zo,jo.config.isReservedAttr=qo,jo.config.getTagNamespace=function(e){return Qo(e)?"svg":"math"===e?"math":void 0},jo.config.isUnknownElement=function(e){if(!V)return!0;if(Zo(e))return!1;if(e=e.toLowerCase(),null!=Jo[e])return Jo[e];var t=document.createElement(e);return e.indexOf("-")>-1?Jo[e]=t.constructor===window.HTMLUnknownElement||t.constructor===window.HTMLElement:Jo[e]=/HTMLUnknownElement/.test(t.toString())},A(jo.options.directives,Ci),A(jo.options.components,Pi),jo.prototype.__patch__=V?ui:T,jo.prototype.$mount=function(e,t){return function(e,t,o){var n;return e.$el=t,e.$options.render||(e.$options.render=he),to(e,"beforeMount"),n=function(){e._update(e._render(),o)},new go(e,n,T,{before:function(){e._isMounted&&!e._isDestroyed&&to(e,"beforeUpdate")}},!0),o=!1,null==e.$vnode&&(e._isMounted=!0,to(e,"mounted")),e}(this,e=e&&V?function(e){if("string"==typeof e){var t=document.querySelector(e);return t||document.createElement("div")}return e}(e):void 0,t)},V&&setTimeout((function(){R.devtools&&re&&re.emit("init",jo)}),0),t.a=jo}).call(this,o(7),o(60).setImmediate)},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var n=o(119),i=(0,n.withParams)({type:"required"},n.req);t.default=i},function(e,t){var o;o=function(){return this}();try{o=o||new Function("return this")()}catch(e){"object"==typeof window&&(o=window)}e.exports=o},function(e,t,o){"use strict";var n=o(124),i=o(125),r=o(126),a=o(47),l=o(127),s=o(129);e.exports=g,g.escape=function(e){return g(e,{escapeOnly:!0,useNamedReferences:!0})};var d={}.hasOwnProperty,m=function(){var e,t={};for(e in n)t[n[e]]=e;return t}(),f=h(['"',"'","<",">","&","`"]),_=/[\uD800-\uDBFF][\uDC00-\uDFFF]/g,c=/[\x01-\t\x0B\f\x0E-\x1F\x7F\x81\x8D\x8F\x90\x9D\xA0-\uFFFF]/g;function g(e,t){var o=t||{},n=o.subset,r=n?h(n):f,a=o.escapeOnly,g=o.omitOptionalSemicolons;return e=e.replace(r,b),n||a?e:e.replace(_,(function(e,t,o){return p(1024*(e.charCodeAt(0)-55296)+e.charCodeAt(1)-56320+65536,o.charAt(t+2),g)})).replace(c,b);function b(e,t,n){return function(e,t,o){var n,r,a,f,_=o.useShortestReferences,c=o.omitOptionalSemicolons;(_||o.useNamedReferences)&&d.call(m,e)&&(n=function(e,t,o,n){var r="&"+e;if(o&&d.call(i,e)&&-1===s.indexOf(e)&&(!n||t&&"="!==t&&!l(t)))return r;return r+";"}(m[e],t,c,o.attribute));!_&&n||(r=e.charCodeAt(0),a=p(r,t,c),_&&(f=u(r,t,c)).length<a.length&&(a=f));if(n&&(!_||n.length<a.length))return n;return a}(e,n.charAt(t+1),o)}}function p(e,t,o){var n="&#x"+e.toString(16).toUpperCase();return o&&t&&!r(t)?n:n+";"}function u(e,t,o){var n="&#"+String(e);return o&&t&&!a(t)?n:n+";"}function h(e){return new RegExp("["+e.join("")+"]","g")}},function(e,t,o){"use strict";(function(e){var n=t;function i(e,t,o){for(var n=Object.keys(t),i=0;i<n.length;++i)void 0!==e[n[i]]&&o||(e[n[i]]=t[n[i]]);return e}function r(e){function t(e,o){if(!(this instanceof t))return new t(e,o);Object.defineProperty(this,"message",{get:function(){return e}}),Error.captureStackTrace?Error.captureStackTrace(this,t):Object.defineProperty(this,"stack",{value:(new Error).stack||""}),o&&i(this,o)}return(t.prototype=Object.create(Error.prototype)).constructor=t,Object.defineProperty(t.prototype,"name",{get:function(){return e}}),t.prototype.toString=function(){return this.name+": "+this.message},t}n.asPromise=o(64),n.base64=o(65),n.EventEmitter=o(66),n.float=o(67),n.inquire=o(68),n.utf8=o(69),n.pool=o(70),n.LongBits=o(71),n.global="undefined"!=typeof window&&window||void 0!==e&&e||"undefined"!=typeof self&&self||this,n.emptyArray=Object.freeze?Object.freeze([]):[],n.emptyObject=Object.freeze?Object.freeze({}):{},n.isNode=Boolean(n.global.process&&n.global.process.versions&&n.global.process.versions.node),n.isInteger=Number.isInteger||function(e){return"number"==typeof e&&isFinite(e)&&Math.floor(e)===e},n.isString=function(e){return"string"==typeof e||e instanceof String},n.isObject=function(e){return e&&"object"==typeof e},n.isset=n.isSet=function(e,t){var o=e[t];return!(null==o||!e.hasOwnProperty(t))&&("object"!=typeof o||(Array.isArray(o)?o.length:Object.keys(o).length)>0)},n.Buffer=function(){try{var e=n.inquire("buffer").Buffer;return e.prototype.utf8Write?e:null}catch(e){return null}}(),n._Buffer_from=null,n._Buffer_allocUnsafe=null,n.newBuffer=function(e){return"number"==typeof e?n.Buffer?n._Buffer_allocUnsafe(e):new n.Array(e):n.Buffer?n._Buffer_from(e):"undefined"==typeof Uint8Array?e:new Uint8Array(e)},n.Array="undefined"!=typeof Uint8Array?Uint8Array:Array,n.Long=n.global.dcodeIO&&n.global.dcodeIO.Long||n.global.Long||n.inquire("long"),n.key2Re=/^true|false|0|1$/,n.key32Re=/^-?(?:0|[1-9][0-9]*)$/,n.key64Re=/^(?:[\\x00-\\xff]{8}|-?(?:0|[1-9][0-9]*))$/,n.longToHash=function(e){return e?n.LongBits.from(e).toHash():n.LongBits.zeroHash},n.longFromHash=function(e,t){var o=n.LongBits.fromHash(e);return n.Long?n.Long.fromBits(o.lo,o.hi,t):o.toNumber(Boolean(t))},n.merge=i,n.lcFirst=function(e){return e.charAt(0).toLowerCase()+e.substring(1)},n.newError=r,n.ProtocolError=r("ProtocolError"),n.oneOfGetter=function(e){for(var t={},o=0;o<e.length;++o)t[e[o]]=1;return function(){for(var e=Object.keys(this),o=e.length-1;o>-1;--o)if(1===t[e[o]]&&void 0!==this[e[o]]&&null!==this[e[o]])return e[o]}},n.oneOfSetter=function(e){return function(t){for(var o=0;o<e.length;++o)e[o]!==t&&delete this[e[o]]}},n.toJSONOptions={longs:String,enums:String,bytes:String,json:!0},n._configure=function(){var e=n.Buffer;e?(n._Buffer_from=e.from!==Uint8Array.from&&e.from||function(t,o){return new e(t,o)},n._Buffer_allocUnsafe=e.allocUnsafe||function(t){return new e(t)}):n._Buffer_from=n._Buffer_allocUnsafe=null}}).call(this,o(7))},function(e,t,o){e.exports=function(e){var t={};function o(n){if(t[n])return t[n].exports;var i=t[n]={i:n,l:!1,exports:{}};return e[n].call(i.exports,i,i.exports,o),i.l=!0,i.exports}return o.m=e,o.c=t,o.d=function(e,t,n){o.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:n})},o.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},o.t=function(e,t){if(1&t&&(e=o(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var n=Object.create(null);if(o.r(n),Object.defineProperty(n,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var i in e)o.d(n,i,function(t){return e[t]}.bind(null,i));return n},o.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return o.d(t,"a",t),t},o.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},o.p="",o(o.s=90)}({17:function(e,t,o){"use strict";t.__esModule=!0,t.default=void 0;var n=o(18),i=function(){function e(){}return e.getFirstMatch=function(e,t){var o=t.match(e);return o&&o.length>0&&o[1]||""},e.getSecondMatch=function(e,t){var o=t.match(e);return o&&o.length>1&&o[2]||""},e.matchAndReturnConst=function(e,t,o){if(e.test(t))return o},e.getWindowsVersionName=function(e){switch(e){case"NT":return"NT";case"XP":return"XP";case"NT 5.0":return"2000";case"NT 5.1":return"XP";case"NT 5.2":return"2003";case"NT 6.0":return"Vista";case"NT 6.1":return"7";case"NT 6.2":return"8";case"NT 6.3":return"8.1";case"NT 10.0":return"10";default:return}},e.getMacOSVersionName=function(e){var t=e.split(".").splice(0,2).map((function(e){return parseInt(e,10)||0}));if(t.push(0),10===t[0])switch(t[1]){case 5:return"Leopard";case 6:return"Snow Leopard";case 7:return"Lion";case 8:return"Mountain Lion";case 9:return"Mavericks";case 10:return"Yosemite";case 11:return"El Capitan";case 12:return"Sierra";case 13:return"High Sierra";case 14:return"Mojave";case 15:return"Catalina";default:return}},e.getAndroidVersionName=function(e){var t=e.split(".").splice(0,2).map((function(e){return parseInt(e,10)||0}));if(t.push(0),!(1===t[0]&&t[1]<5))return 1===t[0]&&t[1]<6?"Cupcake":1===t[0]&&t[1]>=6?"Donut":2===t[0]&&t[1]<2?"Eclair":2===t[0]&&2===t[1]?"Froyo":2===t[0]&&t[1]>2?"Gingerbread":3===t[0]?"Honeycomb":4===t[0]&&t[1]<1?"Ice Cream Sandwich":4===t[0]&&t[1]<4?"Jelly Bean":4===t[0]&&t[1]>=4?"KitKat":5===t[0]?"Lollipop":6===t[0]?"Marshmallow":7===t[0]?"Nougat":8===t[0]?"Oreo":9===t[0]?"Pie":void 0},e.getVersionPrecision=function(e){return e.split(".").length},e.compareVersions=function(t,o,n){void 0===n&&(n=!1);var i=e.getVersionPrecision(t),r=e.getVersionPrecision(o),a=Math.max(i,r),l=0,s=e.map([t,o],(function(t){var o=a-e.getVersionPrecision(t),n=t+new Array(o+1).join(".0");return e.map(n.split("."),(function(e){return new Array(20-e.length).join("0")+e})).reverse()}));for(n&&(l=a-Math.min(i,r)),a-=1;a>=l;){if(s[0][a]>s[1][a])return 1;if(s[0][a]===s[1][a]){if(a===l)return 0;a-=1}else if(s[0][a]<s[1][a])return-1}},e.map=function(e,t){var o,n=[];if(Array.prototype.map)return Array.prototype.map.call(e,t);for(o=0;o<e.length;o+=1)n.push(t(e[o]));return n},e.getBrowserAlias=function(e){return n.BROWSER_ALIASES_MAP[e]},e.getBrowserTypeByAlias=function(e){return n.BROWSER_MAP[e]||""},e}();t.default=i,e.exports=t.default},18:function(e,t,o){"use strict";t.__esModule=!0,t.ENGINE_MAP=t.OS_MAP=t.PLATFORMS_MAP=t.BROWSER_MAP=t.BROWSER_ALIASES_MAP=void 0,t.BROWSER_ALIASES_MAP={"Amazon Silk":"amazon_silk","Android Browser":"android",Bada:"bada",BlackBerry:"blackberry",Chrome:"chrome",Chromium:"chromium",Epiphany:"epiphany",Firefox:"firefox",Focus:"focus",Generic:"generic","Google Search":"google_search",Googlebot:"googlebot","Internet Explorer":"ie","K-Meleon":"k_meleon",Maxthon:"maxthon","Microsoft Edge":"edge","MZ Browser":"mz","NAVER Whale Browser":"naver",Opera:"opera","Opera Coast":"opera_coast",PhantomJS:"phantomjs",Puffin:"puffin",QupZilla:"qupzilla",QQ:"qq",QQLite:"qqlite",Safari:"safari",Sailfish:"sailfish","Samsung Internet for Android":"samsung_internet",SeaMonkey:"seamonkey",Sleipnir:"sleipnir",Swing:"swing",Tizen:"tizen","UC Browser":"uc",Vivaldi:"vivaldi","WebOS Browser":"webos",WeChat:"wechat","Yandex Browser":"yandex",Roku:"roku"},t.BROWSER_MAP={amazon_silk:"Amazon Silk",android:"Android Browser",bada:"Bada",blackberry:"BlackBerry",chrome:"Chrome",chromium:"Chromium",epiphany:"Epiphany",firefox:"Firefox",focus:"Focus",generic:"Generic",googlebot:"Googlebot",google_search:"Google Search",ie:"Internet Explorer",k_meleon:"K-Meleon",maxthon:"Maxthon",edge:"Microsoft Edge",mz:"MZ Browser",naver:"NAVER Whale Browser",opera:"Opera",opera_coast:"Opera Coast",phantomjs:"PhantomJS",puffin:"Puffin",qupzilla:"QupZilla",qq:"QQ Browser",qqlite:"QQ Browser Lite",safari:"Safari",sailfish:"Sailfish",samsung_internet:"Samsung Internet for Android",seamonkey:"SeaMonkey",sleipnir:"Sleipnir",swing:"Swing",tizen:"Tizen",uc:"UC Browser",vivaldi:"Vivaldi",webos:"WebOS Browser",wechat:"WeChat",yandex:"Yandex Browser"},t.PLATFORMS_MAP={tablet:"tablet",mobile:"mobile",desktop:"desktop",tv:"tv"},t.OS_MAP={WindowsPhone:"Windows Phone",Windows:"Windows",MacOS:"macOS",iOS:"iOS",Android:"Android",WebOS:"WebOS",BlackBerry:"BlackBerry",Bada:"Bada",Tizen:"Tizen",Linux:"Linux",ChromeOS:"Chrome OS",PlayStation4:"PlayStation 4",Roku:"Roku"},t.ENGINE_MAP={EdgeHTML:"EdgeHTML",Blink:"Blink",Trident:"Trident",Presto:"Presto",Gecko:"Gecko",WebKit:"WebKit"}},90:function(e,t,o){"use strict";t.__esModule=!0,t.default=void 0;var n,i=(n=o(91))&&n.__esModule?n:{default:n},r=o(18);function a(e,t){for(var o=0;o<t.length;o++){var n=t[o];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}var l=function(){function e(){}var t,o;return e.getParser=function(e,t){if(void 0===t&&(t=!1),"string"!=typeof e)throw new Error("UserAgent should be a string");return new i.default(e,t)},e.parse=function(e){return new i.default(e).getResult()},t=e,(o=[{key:"BROWSER_MAP",get:function(){return r.BROWSER_MAP}},{key:"ENGINE_MAP",get:function(){return r.ENGINE_MAP}},{key:"OS_MAP",get:function(){return r.OS_MAP}},{key:"PLATFORMS_MAP",get:function(){return r.PLATFORMS_MAP}}])&&a(t,o),e}();t.default=l,e.exports=t.default},91:function(e,t,o){"use strict";t.__esModule=!0,t.default=void 0;var n=s(o(92)),i=s(o(93)),r=s(o(94)),a=s(o(95)),l=s(o(17));function s(e){return e&&e.__esModule?e:{default:e}}var d=function(){function e(e,t){if(void 0===t&&(t=!1),null==e||""===e)throw new Error("UserAgent parameter can't be empty");this._ua=e,this.parsedResult={},!0!==t&&this.parse()}var t=e.prototype;return t.getUA=function(){return this._ua},t.test=function(e){return e.test(this._ua)},t.parseBrowser=function(){var e=this;this.parsedResult.browser={};var t=n.default.find((function(t){if("function"==typeof t.test)return t.test(e);if(t.test instanceof Array)return t.test.some((function(t){return e.test(t)}));throw new Error("Browser's test function is not valid")}));return t&&(this.parsedResult.browser=t.describe(this.getUA())),this.parsedResult.browser},t.getBrowser=function(){return this.parsedResult.browser?this.parsedResult.browser:this.parseBrowser()},t.getBrowserName=function(e){return e?String(this.getBrowser().name).toLowerCase()||"":this.getBrowser().name||""},t.getBrowserVersion=function(){return this.getBrowser().version},t.getOS=function(){return this.parsedResult.os?this.parsedResult.os:this.parseOS()},t.parseOS=function(){var e=this;this.parsedResult.os={};var t=i.default.find((function(t){if("function"==typeof t.test)return t.test(e);if(t.test instanceof Array)return t.test.some((function(t){return e.test(t)}));throw new Error("Browser's test function is not valid")}));return t&&(this.parsedResult.os=t.describe(this.getUA())),this.parsedResult.os},t.getOSName=function(e){var t=this.getOS().name;return e?String(t).toLowerCase()||"":t||""},t.getOSVersion=function(){return this.getOS().version},t.getPlatform=function(){return this.parsedResult.platform?this.parsedResult.platform:this.parsePlatform()},t.getPlatformType=function(e){void 0===e&&(e=!1);var t=this.getPlatform().type;return e?String(t).toLowerCase()||"":t||""},t.parsePlatform=function(){var e=this;this.parsedResult.platform={};var t=r.default.find((function(t){if("function"==typeof t.test)return t.test(e);if(t.test instanceof Array)return t.test.some((function(t){return e.test(t)}));throw new Error("Browser's test function is not valid")}));return t&&(this.parsedResult.platform=t.describe(this.getUA())),this.parsedResult.platform},t.getEngine=function(){return this.parsedResult.engine?this.parsedResult.engine:this.parseEngine()},t.getEngineName=function(e){return e?String(this.getEngine().name).toLowerCase()||"":this.getEngine().name||""},t.parseEngine=function(){var e=this;this.parsedResult.engine={};var t=a.default.find((function(t){if("function"==typeof t.test)return t.test(e);if(t.test instanceof Array)return t.test.some((function(t){return e.test(t)}));throw new Error("Browser's test function is not valid")}));return t&&(this.parsedResult.engine=t.describe(this.getUA())),this.parsedResult.engine},t.parse=function(){return this.parseBrowser(),this.parseOS(),this.parsePlatform(),this.parseEngine(),this},t.getResult=function(){return Object.assign({},this.parsedResult)},t.satisfies=function(e){var t=this,o={},n=0,i={},r=0;if(Object.keys(e).forEach((function(t){var a=e[t];"string"==typeof a?(i[t]=a,r+=1):"object"==typeof a&&(o[t]=a,n+=1)})),n>0){var a=Object.keys(o),l=a.find((function(e){return t.isOS(e)}));if(l){var s=this.satisfies(o[l]);if(void 0!==s)return s}var d=a.find((function(e){return t.isPlatform(e)}));if(d){var m=this.satisfies(o[d]);if(void 0!==m)return m}}if(r>0){var f=Object.keys(i).find((function(e){return t.isBrowser(e,!0)}));if(void 0!==f)return this.compareVersion(i[f])}},t.isBrowser=function(e,t){void 0===t&&(t=!1);var o=this.getBrowserName().toLowerCase(),n=e.toLowerCase(),i=l.default.getBrowserTypeByAlias(n);return t&&i&&(n=i.toLowerCase()),n===o},t.compareVersion=function(e){var t=[0],o=e,n=!1,i=this.getBrowserVersion();if("string"==typeof i)return">"===e[0]||"<"===e[0]?(o=e.substr(1),"="===e[1]?(n=!0,o=e.substr(2)):t=[],">"===e[0]?t.push(1):t.push(-1)):"="===e[0]?o=e.substr(1):"~"===e[0]&&(n=!0,o=e.substr(1)),t.indexOf(l.default.compareVersions(i,o,n))>-1},t.isOS=function(e){return this.getOSName(!0)===String(e).toLowerCase()},t.isPlatform=function(e){return this.getPlatformType(!0)===String(e).toLowerCase()},t.isEngine=function(e){return this.getEngineName(!0)===String(e).toLowerCase()},t.is=function(e){return this.isBrowser(e)||this.isOS(e)||this.isPlatform(e)},t.some=function(e){var t=this;return void 0===e&&(e=[]),e.some((function(e){return t.is(e)}))},e}();t.default=d,e.exports=t.default},92:function(e,t,o){"use strict";t.__esModule=!0,t.default=void 0;var n,i=(n=o(17))&&n.__esModule?n:{default:n},r=/version\/(\d+(\.?_?\d+)+)/i,a=[{test:[/googlebot/i],describe:function(e){var t={name:"Googlebot"},o=i.default.getFirstMatch(/googlebot\/(\d+(\.\d+))/i,e)||i.default.getFirstMatch(r,e);return o&&(t.version=o),t}},{test:[/opera/i],describe:function(e){var t={name:"Opera"},o=i.default.getFirstMatch(r,e)||i.default.getFirstMatch(/(?:opera)[\s/](\d+(\.?_?\d+)+)/i,e);return o&&(t.version=o),t}},{test:[/opr\/|opios/i],describe:function(e){var t={name:"Opera"},o=i.default.getFirstMatch(/(?:opr|opios)[\s/](\S+)/i,e)||i.default.getFirstMatch(r,e);return o&&(t.version=o),t}},{test:[/SamsungBrowser/i],describe:function(e){var t={name:"Samsung Internet for Android"},o=i.default.getFirstMatch(r,e)||i.default.getFirstMatch(/(?:SamsungBrowser)[\s/](\d+(\.?_?\d+)+)/i,e);return o&&(t.version=o),t}},{test:[/Whale/i],describe:function(e){var t={name:"NAVER Whale Browser"},o=i.default.getFirstMatch(r,e)||i.default.getFirstMatch(/(?:whale)[\s/](\d+(?:\.\d+)+)/i,e);return o&&(t.version=o),t}},{test:[/MZBrowser/i],describe:function(e){var t={name:"MZ Browser"},o=i.default.getFirstMatch(/(?:MZBrowser)[\s/](\d+(?:\.\d+)+)/i,e)||i.default.getFirstMatch(r,e);return o&&(t.version=o),t}},{test:[/focus/i],describe:function(e){var t={name:"Focus"},o=i.default.getFirstMatch(/(?:focus)[\s/](\d+(?:\.\d+)+)/i,e)||i.default.getFirstMatch(r,e);return o&&(t.version=o),t}},{test:[/swing/i],describe:function(e){var t={name:"Swing"},o=i.default.getFirstMatch(/(?:swing)[\s/](\d+(?:\.\d+)+)/i,e)||i.default.getFirstMatch(r,e);return o&&(t.version=o),t}},{test:[/coast/i],describe:function(e){var t={name:"Opera Coast"},o=i.default.getFirstMatch(r,e)||i.default.getFirstMatch(/(?:coast)[\s/](\d+(\.?_?\d+)+)/i,e);return o&&(t.version=o),t}},{test:[/yabrowser/i],describe:function(e){var t={name:"Yandex Browser"},o=i.default.getFirstMatch(/(?:yabrowser)[\s/](\d+(\.?_?\d+)+)/i,e)||i.default.getFirstMatch(r,e);return o&&(t.version=o),t}},{test:[/ucbrowser/i],describe:function(e){var t={name:"UC Browser"},o=i.default.getFirstMatch(r,e)||i.default.getFirstMatch(/(?:ucbrowser)[\s/](\d+(\.?_?\d+)+)/i,e);return o&&(t.version=o),t}},{test:[/Maxthon|mxios/i],describe:function(e){var t={name:"Maxthon"},o=i.default.getFirstMatch(r,e)||i.default.getFirstMatch(/(?:Maxthon|mxios)[\s/](\d+(\.?_?\d+)+)/i,e);return o&&(t.version=o),t}},{test:[/epiphany/i],describe:function(e){var t={name:"Epiphany"},o=i.default.getFirstMatch(r,e)||i.default.getFirstMatch(/(?:epiphany)[\s/](\d+(\.?_?\d+)+)/i,e);return o&&(t.version=o),t}},{test:[/puffin/i],describe:function(e){var t={name:"Puffin"},o=i.default.getFirstMatch(r,e)||i.default.getFirstMatch(/(?:puffin)[\s/](\d+(\.?_?\d+)+)/i,e);return o&&(t.version=o),t}},{test:[/sleipnir/i],describe:function(e){var t={name:"Sleipnir"},o=i.default.getFirstMatch(r,e)||i.default.getFirstMatch(/(?:sleipnir)[\s/](\d+(\.?_?\d+)+)/i,e);return o&&(t.version=o),t}},{test:[/k-meleon/i],describe:function(e){var t={name:"K-Meleon"},o=i.default.getFirstMatch(r,e)||i.default.getFirstMatch(/(?:k-meleon)[\s/](\d+(\.?_?\d+)+)/i,e);return o&&(t.version=o),t}},{test:[/micromessenger/i],describe:function(e){var t={name:"WeChat"},o=i.default.getFirstMatch(/(?:micromessenger)[\s/](\d+(\.?_?\d+)+)/i,e)||i.default.getFirstMatch(r,e);return o&&(t.version=o),t}},{test:[/qqbrowser/i],describe:function(e){var t={name:/qqbrowserlite/i.test(e)?"QQ Browser Lite":"QQ Browser"},o=i.default.getFirstMatch(/(?:qqbrowserlite|qqbrowser)[/](\d+(\.?_?\d+)+)/i,e)||i.default.getFirstMatch(r,e);return o&&(t.version=o),t}},{test:[/msie|trident/i],describe:function(e){var t={name:"Internet Explorer"},o=i.default.getFirstMatch(/(?:msie |rv:)(\d+(\.?_?\d+)+)/i,e);return o&&(t.version=o),t}},{test:[/\sedg\//i],describe:function(e){var t={name:"Microsoft Edge"},o=i.default.getFirstMatch(/\sedg\/(\d+(\.?_?\d+)+)/i,e);return o&&(t.version=o),t}},{test:[/edg([ea]|ios)/i],describe:function(e){var t={name:"Microsoft Edge"},o=i.default.getSecondMatch(/edg([ea]|ios)\/(\d+(\.?_?\d+)+)/i,e);return o&&(t.version=o),t}},{test:[/vivaldi/i],describe:function(e){var t={name:"Vivaldi"},o=i.default.getFirstMatch(/vivaldi\/(\d+(\.?_?\d+)+)/i,e);return o&&(t.version=o),t}},{test:[/seamonkey/i],describe:function(e){var t={name:"SeaMonkey"},o=i.default.getFirstMatch(/seamonkey\/(\d+(\.?_?\d+)+)/i,e);return o&&(t.version=o),t}},{test:[/sailfish/i],describe:function(e){var t={name:"Sailfish"},o=i.default.getFirstMatch(/sailfish\s?browser\/(\d+(\.\d+)?)/i,e);return o&&(t.version=o),t}},{test:[/silk/i],describe:function(e){var t={name:"Amazon Silk"},o=i.default.getFirstMatch(/silk\/(\d+(\.?_?\d+)+)/i,e);return o&&(t.version=o),t}},{test:[/phantom/i],describe:function(e){var t={name:"PhantomJS"},o=i.default.getFirstMatch(/phantomjs\/(\d+(\.?_?\d+)+)/i,e);return o&&(t.version=o),t}},{test:[/slimerjs/i],describe:function(e){var t={name:"SlimerJS"},o=i.default.getFirstMatch(/slimerjs\/(\d+(\.?_?\d+)+)/i,e);return o&&(t.version=o),t}},{test:[/blackberry|\bbb\d+/i,/rim\stablet/i],describe:function(e){var t={name:"BlackBerry"},o=i.default.getFirstMatch(r,e)||i.default.getFirstMatch(/blackberry[\d]+\/(\d+(\.?_?\d+)+)/i,e);return o&&(t.version=o),t}},{test:[/(web|hpw)[o0]s/i],describe:function(e){var t={name:"WebOS Browser"},o=i.default.getFirstMatch(r,e)||i.default.getFirstMatch(/w(?:eb)?[o0]sbrowser\/(\d+(\.?_?\d+)+)/i,e);return o&&(t.version=o),t}},{test:[/bada/i],describe:function(e){var t={name:"Bada"},o=i.default.getFirstMatch(/dolfin\/(\d+(\.?_?\d+)+)/i,e);return o&&(t.version=o),t}},{test:[/tizen/i],describe:function(e){var t={name:"Tizen"},o=i.default.getFirstMatch(/(?:tizen\s?)?browser\/(\d+(\.?_?\d+)+)/i,e)||i.default.getFirstMatch(r,e);return o&&(t.version=o),t}},{test:[/qupzilla/i],describe:function(e){var t={name:"QupZilla"},o=i.default.getFirstMatch(/(?:qupzilla)[\s/](\d+(\.?_?\d+)+)/i,e)||i.default.getFirstMatch(r,e);return o&&(t.version=o),t}},{test:[/firefox|iceweasel|fxios/i],describe:function(e){var t={name:"Firefox"},o=i.default.getFirstMatch(/(?:firefox|iceweasel|fxios)[\s/](\d+(\.?_?\d+)+)/i,e);return o&&(t.version=o),t}},{test:[/chromium/i],describe:function(e){var t={name:"Chromium"},o=i.default.getFirstMatch(/(?:chromium)[\s/](\d+(\.?_?\d+)+)/i,e)||i.default.getFirstMatch(r,e);return o&&(t.version=o),t}},{test:[/chrome|crios|crmo/i],describe:function(e){var t={name:"Chrome"},o=i.default.getFirstMatch(/(?:chrome|crios|crmo)\/(\d+(\.?_?\d+)+)/i,e);return o&&(t.version=o),t}},{test:[/GSA/i],describe:function(e){var t={name:"Google Search"},o=i.default.getFirstMatch(/(?:GSA)\/(\d+(\.?_?\d+)+)/i,e);return o&&(t.version=o),t}},{test:function(e){var t=!e.test(/like android/i),o=e.test(/android/i);return t&&o},describe:function(e){var t={name:"Android Browser"},o=i.default.getFirstMatch(r,e);return o&&(t.version=o),t}},{test:[/playstation 4/i],describe:function(e){var t={name:"PlayStation 4"},o=i.default.getFirstMatch(r,e);return o&&(t.version=o),t}},{test:[/safari|applewebkit/i],describe:function(e){var t={name:"Safari"},o=i.default.getFirstMatch(r,e);return o&&(t.version=o),t}},{test:[/.*/i],describe:function(e){var t=-1!==e.search("\\(")?/^(.*)\/(.*)[ \t]\((.*)/:/^(.*)\/(.*) /;return{name:i.default.getFirstMatch(t,e),version:i.default.getSecondMatch(t,e)}}}];t.default=a,e.exports=t.default},93:function(e,t,o){"use strict";t.__esModule=!0,t.default=void 0;var n,i=(n=o(17))&&n.__esModule?n:{default:n},r=o(18),a=[{test:[/Roku\/DVP/],describe:function(e){var t=i.default.getFirstMatch(/Roku\/DVP-(\d+\.\d+)/i,e);return{name:r.OS_MAP.Roku,version:t}}},{test:[/windows phone/i],describe:function(e){var t=i.default.getFirstMatch(/windows phone (?:os)?\s?(\d+(\.\d+)*)/i,e);return{name:r.OS_MAP.WindowsPhone,version:t}}},{test:[/windows/i],describe:function(e){var t=i.default.getFirstMatch(/Windows ((NT|XP)( \d\d?.\d)?)/i,e),o=i.default.getWindowsVersionName(t);return{name:r.OS_MAP.Windows,version:t,versionName:o}}},{test:[/macintosh/i],describe:function(e){var t=i.default.getFirstMatch(/mac os x (\d+(\.?_?\d+)+)/i,e).replace(/[_\s]/g,"."),o=i.default.getMacOSVersionName(t),n={name:r.OS_MAP.MacOS,version:t};return o&&(n.versionName=o),n}},{test:[/(ipod|iphone|ipad)/i],describe:function(e){var t=i.default.getFirstMatch(/os (\d+([_\s]\d+)*) like mac os x/i,e).replace(/[_\s]/g,".");return{name:r.OS_MAP.iOS,version:t}}},{test:function(e){var t=!e.test(/like android/i),o=e.test(/android/i);return t&&o},describe:function(e){var t=i.default.getFirstMatch(/android[\s/-](\d+(\.\d+)*)/i,e),o=i.default.getAndroidVersionName(t),n={name:r.OS_MAP.Android,version:t};return o&&(n.versionName=o),n}},{test:[/(web|hpw)[o0]s/i],describe:function(e){var t=i.default.getFirstMatch(/(?:web|hpw)[o0]s\/(\d+(\.\d+)*)/i,e),o={name:r.OS_MAP.WebOS};return t&&t.length&&(o.version=t),o}},{test:[/blackberry|\bbb\d+/i,/rim\stablet/i],describe:function(e){var t=i.default.getFirstMatch(/rim\stablet\sos\s(\d+(\.\d+)*)/i,e)||i.default.getFirstMatch(/blackberry\d+\/(\d+([_\s]\d+)*)/i,e)||i.default.getFirstMatch(/\bbb(\d+)/i,e);return{name:r.OS_MAP.BlackBerry,version:t}}},{test:[/bada/i],describe:function(e){var t=i.default.getFirstMatch(/bada\/(\d+(\.\d+)*)/i,e);return{name:r.OS_MAP.Bada,version:t}}},{test:[/tizen/i],describe:function(e){var t=i.default.getFirstMatch(/tizen[/\s](\d+(\.\d+)*)/i,e);return{name:r.OS_MAP.Tizen,version:t}}},{test:[/linux/i],describe:function(){return{name:r.OS_MAP.Linux}}},{test:[/CrOS/],describe:function(){return{name:r.OS_MAP.ChromeOS}}},{test:[/PlayStation 4/],describe:function(e){var t=i.default.getFirstMatch(/PlayStation 4[/\s](\d+(\.\d+)*)/i,e);return{name:r.OS_MAP.PlayStation4,version:t}}}];t.default=a,e.exports=t.default},94:function(e,t,o){"use strict";t.__esModule=!0,t.default=void 0;var n,i=(n=o(17))&&n.__esModule?n:{default:n},r=o(18),a=[{test:[/googlebot/i],describe:function(){return{type:"bot",vendor:"Google"}}},{test:[/huawei/i],describe:function(e){var t=i.default.getFirstMatch(/(can-l01)/i,e)&&"Nova",o={type:r.PLATFORMS_MAP.mobile,vendor:"Huawei"};return t&&(o.model=t),o}},{test:[/nexus\s*(?:7|8|9|10).*/i],describe:function(){return{type:r.PLATFORMS_MAP.tablet,vendor:"Nexus"}}},{test:[/ipad/i],describe:function(){return{type:r.PLATFORMS_MAP.tablet,vendor:"Apple",model:"iPad"}}},{test:[/kftt build/i],describe:function(){return{type:r.PLATFORMS_MAP.tablet,vendor:"Amazon",model:"Kindle Fire HD 7"}}},{test:[/silk/i],describe:function(){return{type:r.PLATFORMS_MAP.tablet,vendor:"Amazon"}}},{test:[/tablet(?! pc)/i],describe:function(){return{type:r.PLATFORMS_MAP.tablet}}},{test:function(e){var t=e.test(/ipod|iphone/i),o=e.test(/like (ipod|iphone)/i);return t&&!o},describe:function(e){var t=i.default.getFirstMatch(/(ipod|iphone)/i,e);return{type:r.PLATFORMS_MAP.mobile,vendor:"Apple",model:t}}},{test:[/nexus\s*[0-6].*/i,/galaxy nexus/i],describe:function(){return{type:r.PLATFORMS_MAP.mobile,vendor:"Nexus"}}},{test:[/[^-]mobi/i],describe:function(){return{type:r.PLATFORMS_MAP.mobile}}},{test:function(e){return"blackberry"===e.getBrowserName(!0)},describe:function(){return{type:r.PLATFORMS_MAP.mobile,vendor:"BlackBerry"}}},{test:function(e){return"bada"===e.getBrowserName(!0)},describe:function(){return{type:r.PLATFORMS_MAP.mobile}}},{test:function(e){return"windows phone"===e.getBrowserName()},describe:function(){return{type:r.PLATFORMS_MAP.mobile,vendor:"Microsoft"}}},{test:function(e){var t=Number(String(e.getOSVersion()).split(".")[0]);return"android"===e.getOSName(!0)&&t>=3},describe:function(){return{type:r.PLATFORMS_MAP.tablet}}},{test:function(e){return"android"===e.getOSName(!0)},describe:function(){return{type:r.PLATFORMS_MAP.mobile}}},{test:function(e){return"macos"===e.getOSName(!0)},describe:function(){return{type:r.PLATFORMS_MAP.desktop,vendor:"Apple"}}},{test:function(e){return"windows"===e.getOSName(!0)},describe:function(){return{type:r.PLATFORMS_MAP.desktop}}},{test:function(e){return"linux"===e.getOSName(!0)},describe:function(){return{type:r.PLATFORMS_MAP.desktop}}},{test:function(e){return"playstation 4"===e.getOSName(!0)},describe:function(){return{type:r.PLATFORMS_MAP.tv}}},{test:function(e){return"roku"===e.getOSName(!0)},describe:function(){return{type:r.PLATFORMS_MAP.tv}}}];t.default=a,e.exports=t.default},95:function(e,t,o){"use strict";t.__esModule=!0,t.default=void 0;var n,i=(n=o(17))&&n.__esModule?n:{default:n},r=o(18),a=[{test:function(e){return"microsoft edge"===e.getBrowserName(!0)},describe:function(e){if(/\sedg\//i.test(e))return{name:r.ENGINE_MAP.Blink};var t=i.default.getFirstMatch(/edge\/(\d+(\.?_?\d+)+)/i,e);return{name:r.ENGINE_MAP.EdgeHTML,version:t}}},{test:[/trident/i],describe:function(e){var t={name:r.ENGINE_MAP.Trident},o=i.default.getFirstMatch(/trident\/(\d+(\.?_?\d+)+)/i,e);return o&&(t.version=o),t}},{test:function(e){return e.test(/presto/i)},describe:function(e){var t={name:r.ENGINE_MAP.Presto},o=i.default.getFirstMatch(/presto\/(\d+(\.?_?\d+)+)/i,e);return o&&(t.version=o),t}},{test:function(e){var t=e.test(/gecko/i),o=e.test(/like gecko/i);return t&&!o},describe:function(e){var t={name:r.ENGINE_MAP.Gecko},o=i.default.getFirstMatch(/gecko\/(\d+(\.?_?\d+)+)/i,e);return o&&(t.version=o),t}},{test:[/(apple)?webkit\/537\.36/i],describe:function(){return{name:r.ENGINE_MAP.Blink}}},{test:[/(apple)?webkit/i],describe:function(e){var t={name:r.ENGINE_MAP.WebKit},o=i.default.getFirstMatch(/webkit\/(\d+(\.?_?\d+)+)/i,e);return o&&(t.version=o),t}}];t.default=a,e.exports=t.default}})},function(e,t,o){"use strict";e.exports=o(63)},function(e,t,o){var n,i,r,a,l;n=o(99),i=o(44).utf8,r=o(100),a=o(44).bin,(l=function(e,t){e.constructor==String?e=t&&"binary"===t.encoding?a.stringToBytes(e):i.stringToBytes(e):r(e)?e=Array.prototype.slice.call(e,0):Array.isArray(e)||(e=e.toString());for(var o=n.bytesToWords(e),s=8*e.length,d=1732584193,m=-271733879,f=-1732584194,_=271733878,c=0;c<o.length;c++)o[c]=16711935&(o[c]<<8|o[c]>>>24)|4278255360&(o[c]<<24|o[c]>>>8);o[s>>>5]|=128<<s%32,o[14+(s+64>>>9<<4)]=s;var g=l._ff,p=l._gg,u=l._hh,h=l._ii;for(c=0;c<o.length;c+=16){var b=d,x=m,y=f,w=_;d=g(d,m,f,_,o[c+0],7,-680876936),_=g(_,d,m,f,o[c+1],12,-389564586),f=g(f,_,d,m,o[c+2],17,606105819),m=g(m,f,_,d,o[c+3],22,-1044525330),d=g(d,m,f,_,o[c+4],7,-176418897),_=g(_,d,m,f,o[c+5],12,1200080426),f=g(f,_,d,m,o[c+6],17,-1473231341),m=g(m,f,_,d,o[c+7],22,-45705983),d=g(d,m,f,_,o[c+8],7,1770035416),_=g(_,d,m,f,o[c+9],12,-1958414417),f=g(f,_,d,m,o[c+10],17,-42063),m=g(m,f,_,d,o[c+11],22,-1990404162),d=g(d,m,f,_,o[c+12],7,1804603682),_=g(_,d,m,f,o[c+13],12,-40341101),f=g(f,_,d,m,o[c+14],17,-1502002290),d=p(d,m=g(m,f,_,d,o[c+15],22,1236535329),f,_,o[c+1],5,-165796510),_=p(_,d,m,f,o[c+6],9,-1069501632),f=p(f,_,d,m,o[c+11],14,643717713),m=p(m,f,_,d,o[c+0],20,-373897302),d=p(d,m,f,_,o[c+5],5,-701558691),_=p(_,d,m,f,o[c+10],9,38016083),f=p(f,_,d,m,o[c+15],14,-660478335),m=p(m,f,_,d,o[c+4],20,-405537848),d=p(d,m,f,_,o[c+9],5,568446438),_=p(_,d,m,f,o[c+14],9,-1019803690),f=p(f,_,d,m,o[c+3],14,-187363961),m=p(m,f,_,d,o[c+8],20,1163531501),d=p(d,m,f,_,o[c+13],5,-1444681467),_=p(_,d,m,f,o[c+2],9,-51403784),f=p(f,_,d,m,o[c+7],14,1735328473),d=u(d,m=p(m,f,_,d,o[c+12],20,-1926607734),f,_,o[c+5],4,-378558),_=u(_,d,m,f,o[c+8],11,-2022574463),f=u(f,_,d,m,o[c+11],16,1839030562),m=u(m,f,_,d,o[c+14],23,-35309556),d=u(d,m,f,_,o[c+1],4,-1530992060),_=u(_,d,m,f,o[c+4],11,1272893353),f=u(f,_,d,m,o[c+7],16,-155497632),m=u(m,f,_,d,o[c+10],23,-1094730640),d=u(d,m,f,_,o[c+13],4,681279174),_=u(_,d,m,f,o[c+0],11,-358537222),f=u(f,_,d,m,o[c+3],16,-722521979),m=u(m,f,_,d,o[c+6],23,76029189),d=u(d,m,f,_,o[c+9],4,-640364487),_=u(_,d,m,f,o[c+12],11,-421815835),f=u(f,_,d,m,o[c+15],16,530742520),d=h(d,m=u(m,f,_,d,o[c+2],23,-995338651),f,_,o[c+0],6,-198630844),_=h(_,d,m,f,o[c+7],10,1126891415),f=h(f,_,d,m,o[c+14],15,-1416354905),m=h(m,f,_,d,o[c+5],21,-57434055),d=h(d,m,f,_,o[c+12],6,1700485571),_=h(_,d,m,f,o[c+3],10,-1894986606),f=h(f,_,d,m,o[c+10],15,-1051523),m=h(m,f,_,d,o[c+1],21,-2054922799),d=h(d,m,f,_,o[c+8],6,1873313359),_=h(_,d,m,f,o[c+15],10,-30611744),f=h(f,_,d,m,o[c+6],15,-1560198380),m=h(m,f,_,d,o[c+13],21,1309151649),d=h(d,m,f,_,o[c+4],6,-145523070),_=h(_,d,m,f,o[c+11],10,-1120210379),f=h(f,_,d,m,o[c+2],15,718787259),m=h(m,f,_,d,o[c+9],21,-343485551),d=d+b>>>0,m=m+x>>>0,f=f+y>>>0,_=_+w>>>0}return n.endian([d,m,f,_])})._ff=function(e,t,o,n,i,r,a){var l=e+(t&o|~t&n)+(i>>>0)+a;return(l<<r|l>>>32-r)+t},l._gg=function(e,t,o,n,i,r,a){var l=e+(t&n|o&~n)+(i>>>0)+a;return(l<<r|l>>>32-r)+t},l._hh=function(e,t,o,n,i,r,a){var l=e+(t^o^n)+(i>>>0)+a;return(l<<r|l>>>32-r)+t},l._ii=function(e,t,o,n,i,r,a){var l=e+(o^(t|~n))+(i>>>0)+a;return(l<<r|l>>>32-r)+t},l._blocksize=16,l._digestsize=16,e.exports=function(e,t){if(null==e)throw new Error("Illegal argument "+e);var o=n.wordsToBytes(l(e,t));return t&&t.asBytes?o:t&&t.asString?a.bytesToString(o):n.bytesToHex(o)}},function(e,t,o){var n=o(102);"string"==typeof n&&(n=[[e.i,n,""]]),n.locals&&(e.exports=n.locals);var i=o(1).default;e.exports.__inject__=function(e){i("4464014f",n,e)}},function(e,t,o){var n=o(104);"string"==typeof n&&(n=[[e.i,n,""]]),n.locals&&(e.exports=n.locals);var i=o(1).default;e.exports.__inject__=function(e){i("1f609eec",n,e)}},function(e,t,o){var n=o(106);"string"==typeof n&&(n=[[e.i,n,""]]),n.locals&&(e.exports=n.locals);var i=o(1).default;e.exports.__inject__=function(e){i("369c3aea",n,e)}},function(e,t,o){var n=o(108);"string"==typeof n&&(n=[[e.i,n,""]]),n.locals&&(e.exports=n.locals);var i=o(1).default;e.exports.__inject__=function(e){i("48f7b5a5",n,e)}},function(e,t,o){var n=o(110);"string"==typeof n&&(n=[[e.i,n,""]]),n.locals&&(e.exports=n.locals);var i=o(1).default;e.exports.__inject__=function(e){i("7a0a8e89",n,e)}},function(e,t,o){var n=o(111);"string"==typeof n&&(n=[[e.i,n,""]]),n.locals&&(e.exports=n.locals);var i=o(1).default;e.exports.__inject__=function(e){i("73451fe6",n,e)}},function(e,t,o){var n=o(113);"string"==typeof n&&(n=[[e.i,n,""]]),n.locals&&(e.exports=n.locals);var i=o(1).default;e.exports.__inject__=function(e){i("17694448",n,e)}},function(e,t,o){var n=o(115);"string"==typeof n&&(n=[[e.i,n,""]]),n.locals&&(e.exports=n.locals);var i=o(1).default;e.exports.__inject__=function(e){i("5bd8624a",n,e)}},function(e,t,o){var n=o(117);"string"==typeof n&&(n=[[e.i,n,""]]),n.locals&&(e.exports=n.locals);var i=o(1).default;e.exports.__inject__=function(e){i("635bb418",n,e)}},function(e,t,o){var n=o(123);"string"==typeof n&&(n=[[e.i,n,""]]),n.locals&&(e.exports=n.locals);var i=o(1).default;e.exports.__inject__=function(e){i("a7787088",n,e)}},function(e,t,o){var n=o(132);"string"==typeof n&&(n=[[e.i,n,""]]),n.locals&&(e.exports=n.locals);var i=o(1).default;e.exports.__inject__=function(e){i("23708ece",n,e)}},function(e,t,o){var n=o(134);"string"==typeof n&&(n=[[e.i,n,""]]),n.locals&&(e.exports=n.locals);var i=o(1).default;e.exports.__inject__=function(e){i("acfc5118",n,e)}},function(e,t,o){var n=o(136);"string"==typeof n&&(n=[[e.i,n,""]]),n.locals&&(e.exports=n.locals);var i=o(1).default;e.exports.__inject__=function(e){i("1305f53a",n,e)}},function(e,t,o){var n=o(138);"string"==typeof n&&(n=[[e.i,n,""]]),n.locals&&(e.exports=n.locals);var i=o(1).default;e.exports.__inject__=function(e){i("91f4a714",n,e)}},function(e,t,o){var n=o(140);"string"==typeof n&&(n=[[e.i,n,""]]),n.locals&&(e.exports=n.locals);var i=o(1).default;e.exports.__inject__=function(e){i("4198683c",n,e)}},function(e,t,o){var n=o(142);"string"==typeof n&&(n=[[e.i,n,""]]),n.locals&&(e.exports=n.locals);var i=o(1).default;e.exports.__inject__=function(e){i("1d719c0c",n,e)}},function(e,t,o){var n=o(144);"string"==typeof n&&(n=[[e.i,n,""]]),n.locals&&(e.exports=n.locals);var i=o(1).default;e.exports.__inject__=function(e){i("3bc564ae",n,e)}},function(e,t,o){var n=o(146);"string"==typeof n&&(n=[[e.i,n,""]]),n.locals&&(e.exports=n.locals);var i=o(1).default;e.exports.__inject__=function(e){i("1a82fb20",n,e)}},function(e,t,o){var n=o(148);"string"==typeof n&&(n=[[e.i,n,""]]),n.locals&&(e.exports=n.locals);var i=o(1).default;e.exports.__inject__=function(e){i("745b40d0",n,e)}},function(e,t,o){var n=o(150);"string"==typeof n&&(n=[[e.i,n,""]]),n.locals&&(e.exports=n.locals);var i=o(1).default;e.exports.__inject__=function(e){i("ee9d2de0",n,e)}},function(e,t){e.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAOEAAADhCAMAAAAJbSJIAAAANlBMVEXz9Pa5vsq2u8jN0dnV2N/o6u7FydPi5Onw8fS+ws3f4ee6v8v29/jY2+Hu7/Ly9PbJztbQ1dxJagBAAAAC60lEQVR4nO3b2ZaCMBREUQbDJOP//2wbEGVIFCHKTa+zH7uVRVmBBJQgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMCpdOzvQQqaq2KmuSrOzQ02lSeRem8rpsQq/ozg72Kj4UkAxEev8awnzs7P1yiIadsfpQXjfZCHhUCzbfmeurdNz6bDRsBWRsB+k0cXxdHjpa0wkTBn3hKnjzRZyEgYk3IeEv2RKWCt1cN9EJ0zjfm7Mq/rAVgUnbLpwnK/zA2tnuQmzJHquuqJq91blJuwmAW8rHbV3q2ITFrOAt7Xz3l2UmrBMlpcHe9fOUhOqRYVhFO/cqtSEy0H6bh/tJ1uhCctqlTB/NSnG9pOt1ISXjxLq825laVFowo9GaRPrF9talJqw3n6macaZ09yi1ISG2cLyriwePwxzi1ITru4s2naxma59TC2KTRjE83FqmQ6yeDaUDS3KTRhMV96h5TTSLD4HQ4uCE9bxePUU5pYL/3mD5o9CcMKgTONc39NNLrV5iK4aNLUoOWHQ38RQtW3nsm6db92i8ISvGBtct+hvwqyzBFxE9DehrcHlQPU1YWNvcNGirwlfNThv0ZOE9eJG1OsGZy36kVBdczU9e7RvAz5b9CFhqfIwSp4XwG+OwUWLPiRUV/33Z4tbGtTvGK635CfUDfb/SO5rt20N9t8m65fLT9g3GD5abDY2qC+lvEg4NjhEvLW4tUFvEj4a7OXq3TzoW8Jpg0PEzfk8SThv8EMeJFw1+O8SHmrQg4QHG/Qg4cEGxSc83KD4hIcblJ6w3L508TXh+vtDEpLw3GwDEpKQhOdznVD2fRr9tdpRw/1HqQndIeEvkXCXUlDC+1NBndsnge/fwyVnp9PGH3p95dm1WMKza4/fI37j+UPXR/c+2X9/hjQI0uO3LsyuMioM9A8Sjy/W1iIhY7Sn2tzpUahdWyXiNDNSxcWtSlCBAAAAAAAAAAAAAAAAAAAAAAAAAAAAwCn+AEXGNosxDBhFAAAAAElFTkSuQmCC"},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.Vuelidate=j,Object.defineProperty(t,"withParams",{enumerable:!0,get:function(){return i.withParams}}),t.default=t.validationMixin=void 0;var n=o(118),i=o(46);function r(e){return function(e){if(Array.isArray(e)){for(var t=0,o=new Array(e.length);t<e.length;t++)o[t]=e[t];return o}}(e)||function(e){if(Symbol.iterator in Object(e)||"[object Arguments]"===Object.prototype.toString.call(e))return Array.from(e)}(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance")}()}function a(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{},n=Object.keys(o);"function"==typeof Object.getOwnPropertySymbols&&(n=n.concat(Object.getOwnPropertySymbols(o).filter((function(e){return Object.getOwnPropertyDescriptor(o,e).enumerable})))),n.forEach((function(t){l(e,t,o[t])}))}return e}function l(e,t,o){return t in e?Object.defineProperty(e,t,{value:o,enumerable:!0,configurable:!0,writable:!0}):e[t]=o,e}function s(e){return(s="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}var d=function(){return null},m=function(e,t,o){return e.reduce((function(e,n){return e[o?o(n):n]=t(n),e}),{})};function f(e){return"function"==typeof e}function _(e){return null!==e&&("object"===s(e)||f(e))}var c=function(e,t,o,n){if("function"==typeof o)return o.call(e,t,n);o=Array.isArray(o)?o:o.split(".");for(var i=0;i<o.length;i++){if(!t||"object"!==s(t))return n;t=t[o[i]]}return void 0===t?n:t},g="__isVuelidateAsyncVm";var p={$invalid:function(){var e=this,t=this.proxy;return this.nestedKeys.some((function(t){return e.refProxy(t).$invalid}))||this.ruleKeys.some((function(e){return!t[e]}))},$dirty:function(){var e=this;return!!this.dirty||0!==this.nestedKeys.length&&this.nestedKeys.every((function(t){return e.refProxy(t).$dirty}))},$anyDirty:function(){var e=this;return!!this.dirty||0!==this.nestedKeys.length&&this.nestedKeys.some((function(t){return e.refProxy(t).$anyDirty}))},$error:function(){return this.$dirty&&!this.$pending&&this.$invalid},$anyError:function(){return this.$anyDirty&&!this.$pending&&this.$invalid},$pending:function(){var e=this;return this.ruleKeys.some((function(t){return e.getRef(t).$pending}))||this.nestedKeys.some((function(t){return e.refProxy(t).$pending}))},$params:function(){var e=this,t=this.validations;return a({},m(this.nestedKeys,(function(e){return t[e]&&t[e].$params||null})),m(this.ruleKeys,(function(t){return e.getRef(t).$params})))}};function u(e){this.dirty=e;var t=this.proxy,o=e?"$touch":"$reset";this.nestedKeys.forEach((function(e){t[e][o]()}))}var h={$touch:function(){u.call(this,!0)},$reset:function(){u.call(this,!1)},$flattenParams:function(){var e=this.proxy,t=[];for(var o in this.$params)if(this.isNested(o)){for(var n=e[o].$flattenParams(),i=0;i<n.length;i++)n[i].path.unshift(o);t=t.concat(n)}else t.push({path:[],name:o,params:this.$params[o]});return t}},b=Object.keys(p),x=Object.keys(h),y=null,w=function(e){if(y)return y;var t=e.extend({computed:{refs:function(){var e=this._vval;this._vval=this.children,(0,n.patchChildren)(e,this._vval);var t={};return this._vval.forEach((function(e){t[e.key]=e.vm})),t}},beforeCreate:function(){this._vval=null},beforeDestroy:function(){this._vval&&((0,n.patchChildren)(this._vval),this._vval=null)},methods:{getModel:function(){return this.lazyModel?this.lazyModel(this.prop):this.model},getModelKey:function(e){var t=this.getModel();if(t)return t[e]},hasIter:function(){return!1}}}),o=t.extend({data:function(){return{rule:null,lazyModel:null,model:null,lazyParentModel:null,rootModel:null}},methods:{runRule:function(t){var o=this.getModel();(0,i.pushParams)();var n,r=this.rule.call(this.rootModel,o,t),a=_(n=r)&&f(n.then)?function(e,t){var o=new e({data:{p:!0,v:!1}});return t.then((function(e){o.p=!1,o.v=e}),(function(e){throw o.p=!1,o.v=!1,e})),o[g]=!0,o}(e,r):r,l=(0,i.popParams)();return{output:a,params:l&&l.$sub?l.$sub.length>1?l:l.$sub[0]:null}}},computed:{run:function(){var e=this,t=this.lazyParentModel();if(Array.isArray(t)&&t.__ob__){var o=t.__ob__.dep;o.depend();var n=o.constructor.target;if(!this._indirectWatcher){var i=n.constructor;this._indirectWatcher=new i(this,(function(){return e.runRule(t)}),null,{lazy:!0})}var r=this.getModel();if(!this._indirectWatcher.dirty&&this._lastModel===r)return this._indirectWatcher.depend(),n.value;this._lastModel=r,this._indirectWatcher.evaluate(),this._indirectWatcher.depend()}else this._indirectWatcher&&(this._indirectWatcher.teardown(),this._indirectWatcher=null);return this._indirectWatcher?this._indirectWatcher.value:this.runRule(t)},$params:function(){return this.run.params},proxy:function(){var e=this.run.output;return e[g]?!!e.v:!!e},$pending:function(){var e=this.run.output;return!!e[g]&&e.p}},destroyed:function(){this._indirectWatcher&&(this._indirectWatcher.teardown(),this._indirectWatcher=null)}}),l=t.extend({data:function(){return{dirty:!1,validations:null,lazyModel:null,model:null,prop:null,lazyParentModel:null,rootModel:null}},methods:a({},h,{refProxy:function(e){return this.getRef(e).proxy},getRef:function(e){return this.refs[e]},isNested:function(e){return"function"!=typeof this.validations[e]}}),computed:a({},p,{nestedKeys:function(){return this.keys.filter(this.isNested)},ruleKeys:function(){var e=this;return this.keys.filter((function(t){return!e.isNested(t)}))},keys:function(){return Object.keys(this.validations).filter((function(e){return"$params"!==e}))},proxy:function(){var e=this,t=m(this.keys,(function(t){return{enumerable:!0,configurable:!0,get:function(){return e.refProxy(t)}}})),o=m(b,(function(t){return{enumerable:!0,configurable:!0,get:function(){return e[t]}}})),n=m(x,(function(t){return{enumerable:!1,configurable:!0,get:function(){return e[t]}}})),i=this.hasIter()?{$iter:{enumerable:!0,value:Object.defineProperties({},a({},t))}}:{};return Object.defineProperties({},a({},t,i,{$model:{enumerable:!0,get:function(){var t=e.lazyParentModel();return null!=t?t[e.prop]:null},set:function(t){var o=e.lazyParentModel();null!=o&&(o[e.prop]=t,e.$touch())}}},o,n))},children:function(){var e=this;return r(this.nestedKeys.map((function(t){return w(e,t)}))).concat(r(this.ruleKeys.map((function(t){return v(e,t)})))).filter(Boolean)}})}),s=l.extend({methods:{isNested:function(e){return void 0!==this.validations[e]()},getRef:function(e){var t=this;return{get proxy(){return t.validations[e]()||!1}}}}}),u=l.extend({computed:{keys:function(){var e=this.getModel();return _(e)?Object.keys(e):[]},tracker:function(){var e=this,t=this.validations.$trackBy;return t?function(o){return"".concat(c(e.rootModel,e.getModelKey(o),t))}:function(e){return"".concat(e)}},getModelLazy:function(){var e=this;return function(){return e.getModel()}},children:function(){var e=this,t=this.validations,o=this.getModel(),i=a({},t);delete i.$trackBy;var r={};return this.keys.map((function(t){var a=e.tracker(t);return r.hasOwnProperty(a)?null:(r[a]=!0,(0,n.h)(l,a,{validations:i,prop:t,lazyParentModel:e.getModelLazy,model:o[t],rootModel:e.rootModel}))})).filter(Boolean)}},methods:{isNested:function(){return!0},getRef:function(e){return this.refs[this.tracker(e)]},hasIter:function(){return!0}}}),w=function(e,t){if("$each"===t)return(0,n.h)(u,t,{validations:e.validations[t],lazyParentModel:e.lazyParentModel,prop:t,lazyModel:e.getModel,rootModel:e.rootModel});var o=e.validations[t];if(Array.isArray(o)){var i=e.rootModel,r=m(o,(function(e){return function(){return c(i,i.$v,e)}}),(function(e){return Array.isArray(e)?e.join("."):e}));return(0,n.h)(s,t,{validations:r,lazyParentModel:d,prop:t,lazyModel:d,rootModel:i})}return(0,n.h)(l,t,{validations:o,lazyParentModel:e.getModel,prop:t,lazyModel:e.getModelKey,rootModel:e.rootModel})},v=function(e,t){return(0,n.h)(o,t,{rule:e.validations[t],lazyParentModel:e.lazyParentModel,lazyModel:e.getModel,rootModel:e.rootModel})};return y={VBase:t,Validation:l}},v=null;var F=function(e,t){var o=function(e){if(v)return v;for(var t=e.constructor;t.super;)t=t.super;return v=t,t}(e),i=w(o),r=i.Validation;return new(0,i.VBase)({computed:{children:function(){var o="function"==typeof t?t.call(e):t;return[(0,n.h)(r,"$v",{validations:o,lazyParentModel:d,prop:"$v",model:e,rootModel:e})]}}})},k={data:function(){var e=this.$options.validations;return e&&(this._vuelidate=F(this,e)),{}},beforeCreate:function(){var e=this.$options;e.validations&&(e.computed||(e.computed={}),e.computed.$v||(e.computed.$v=function(){return this._vuelidate?this._vuelidate.refs.$v.proxy:null}))},beforeDestroy:function(){this._vuelidate&&(this._vuelidate.$destroy(),this._vuelidate=null)}};function j(e){e.mixin(k)}t.validationMixin=k;var C=j;t.default=C},function(e,t,o){var n=o(79).Symbol;e.exports=n},function(e){e.exports=JSON.parse('{"Auth":{"Submit":"Iniciar chat","Name":"Nome","Email":"Email","NameRequired":"Nome é obrigatório","EmailRequired":"Email é obrigatório","EnterValidEmail":"Email inválido","FieldValidation":"Campo obrigatório","OfflineSubmit":"Enviar","CloseButton":"Fechar","PhoneText":"Telefone","EnterValidPhone":"Número de telefone inválido","EnterValidName":"Caracteres permitidos: A-Z a-z 0-9 espaço _ -","MaxCharactersReached":"Número máximo de caracteres atingido"},"Chat":{"TypeYourMessage":"Escreva sua mensagem..."},"MessageBox":{"Ok":"Ok","TryAgain":"Tente novamente"},"Inputs":{"InviteMessage":"Olá! Como podemos te ajudar hoje?","EndingMessage":"Sua sessão terminou. Por favor, sinta-se à vontade para nos contatar novamente!","NotAllowedError":"Permitir acesso ao microfone pelo seu navegador","NotFoundError":"Microfone não encontrado","ServiceUnavailable":"Serviço indisponível","UnavailableMessage":"Não existem Agentes disponíveis no momento. Por favor complete o formulário abaixo e entraremos em contato brevemente","OperatorName":"Suporte","WindowTitle":"Live Chat & Talk","CallTitle":"Entre em contato","PoweredBy":"Fornecidos por 3CX","OfflineMessageSent":"Sua mensagem foi enviada. Entraremos em contato em breve por meio do email fornecido. Obrigado e até logo!","InvalidIdErrorMessage":"ID inválido. Entre em contato com o administrador do site. O ID deve corresponder ao apelido usado no Click2Talk","IsTyping":"Digitando...","NewMessageTitleNotification":"Nova mensagem recebida!","ChatIsDisabled":"Chat is not available at the moment."}}')},function(e,t,o){"use strict";o.r(t);var n=o(18),i=o.n(n);for(var r in n)"default"!==r&&function(e){o.d(t,e,(function(){return n[e]}))}(r);t.default=i.a},function(e,t){e.exports="data:image/png;base64,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"},function(e,t,o){"use strict";e.exports=f;var n,i=o(9),r=i.LongBits,a=i.base64,l=i.utf8;function s(e,t,o){this.fn=e,this.len=t,this.next=void 0,this.val=o}function d(){}function m(e){this.head=e.head,this.tail=e.tail,this.len=e.len,this.next=e.states}function f(){this.len=0,this.head=new s(d,0,0),this.tail=this.head,this.states=null}function _(e,t,o){t[o]=255&e}function c(e,t){this.len=e,this.next=void 0,this.val=t}function g(e,t,o){for(;e.hi;)t[o++]=127&e.lo|128,e.lo=(e.lo>>>7|e.hi<<25)>>>0,e.hi>>>=7;for(;e.lo>127;)t[o++]=127&e.lo|128,e.lo=e.lo>>>7;t[o++]=e.lo}function p(e,t,o){t[o]=255&e,t[o+1]=e>>>8&255,t[o+2]=e>>>16&255,t[o+3]=e>>>24}f.create=i.Buffer?function(){return(f.create=function(){return new n})()}:function(){return new f},f.alloc=function(e){return new i.Array(e)},i.Array!==Array&&(f.alloc=i.pool(f.alloc,i.Array.prototype.subarray)),f.prototype._push=function(e,t,o){return this.tail=this.tail.next=new s(e,t,o),this.len+=t,this},c.prototype=Object.create(s.prototype),c.prototype.fn=function(e,t,o){for(;e>127;)t[o++]=127&e|128,e>>>=7;t[o]=e},f.prototype.uint32=function(e){return this.len+=(this.tail=this.tail.next=new c((e>>>=0)<128?1:e<16384?2:e<2097152?3:e<268435456?4:5,e)).len,this},f.prototype.int32=function(e){return e<0?this._push(g,10,r.fromNumber(e)):this.uint32(e)},f.prototype.sint32=function(e){return this.uint32((e<<1^e>>31)>>>0)},f.prototype.uint64=function(e){var t=r.from(e);return this._push(g,t.length(),t)},f.prototype.int64=f.prototype.uint64,f.prototype.sint64=function(e){var t=r.from(e).zzEncode();return this._push(g,t.length(),t)},f.prototype.bool=function(e){return this._push(_,1,e?1:0)},f.prototype.fixed32=function(e){return this._push(p,4,e>>>0)},f.prototype.sfixed32=f.prototype.fixed32,f.prototype.fixed64=function(e){var t=r.from(e);return this._push(p,4,t.lo)._push(p,4,t.hi)},f.prototype.sfixed64=f.prototype.fixed64,f.prototype.float=function(e){return this._push(i.float.writeFloatLE,4,e)},f.prototype.double=function(e){return this._push(i.float.writeDoubleLE,8,e)};var u=i.Array.prototype.set?function(e,t,o){t.set(e,o)}:function(e,t,o){for(var n=0;n<e.length;++n)t[o+n]=e[n]};f.prototype.bytes=function(e){var t=e.length>>>0;if(!t)return this._push(_,1,0);if(i.isString(e)){var o=f.alloc(t=a.length(e));a.decode(e,o,0),e=o}return this.uint32(t)._push(u,t,e)},f.prototype.string=function(e){var t=l.length(e);return t?this.uint32(t)._push(l.write,t,e):this._push(_,1,0)},f.prototype.fork=function(){return this.states=new m(this),this.head=this.tail=new s(d,0,0),this.len=0,this},f.prototype.reset=function(){return this.states?(this.head=this.states.head,this.tail=this.states.tail,this.len=this.states.len,this.states=this.states.next):(this.head=this.tail=new s(d,0,0),this.len=0),this},f.prototype.ldelim=function(){var e=this.head,t=this.tail,o=this.len;return this.reset().uint32(o),o&&(this.tail.next=e.next,this.tail=t,this.len+=o),this},f.prototype.finish=function(){for(var e=this.head.next,t=this.constructor.alloc(this.len),o=0;e;)e.fn(e.val,t,o),o+=e.len,e=e.next;return t},f._configure=function(e){n=e}},function(e,t,o){"use strict";e.exports=s;var n,i=o(9),r=i.LongBits,a=i.utf8;function l(e,t){return RangeError("index out of range: "+e.pos+" + "+(t||1)+" > "+e.len)}function s(e){this.buf=e,this.pos=0,this.len=e.length}var d,m="undefined"!=typeof Uint8Array?function(e){if(e instanceof Uint8Array||Array.isArray(e))return new s(e);throw Error("illegal buffer")}:function(e){if(Array.isArray(e))return new s(e);throw Error("illegal buffer")};function f(){var e=new r(0,0),t=0;if(!(this.len-this.pos>4)){for(;t<3;++t){if(this.pos>=this.len)throw l(this);if(e.lo=(e.lo|(127&this.buf[this.pos])<<7*t)>>>0,this.buf[this.pos++]<128)return e}return e.lo=(e.lo|(127&this.buf[this.pos++])<<7*t)>>>0,e}for(;t<4;++t)if(e.lo=(e.lo|(127&this.buf[this.pos])<<7*t)>>>0,this.buf[this.pos++]<128)return e;if(e.lo=(e.lo|(127&this.buf[this.pos])<<28)>>>0,e.hi=(e.hi|(127&this.buf[this.pos])>>4)>>>0,this.buf[this.pos++]<128)return e;if(t=0,this.len-this.pos>4){for(;t<5;++t)if(e.hi=(e.hi|(127&this.buf[this.pos])<<7*t+3)>>>0,this.buf[this.pos++]<128)return e}else for(;t<5;++t){if(this.pos>=this.len)throw l(this);if(e.hi=(e.hi|(127&this.buf[this.pos])<<7*t+3)>>>0,this.buf[this.pos++]<128)return e}throw Error("invalid varint encoding")}function _(e,t){return(e[t-4]|e[t-3]<<8|e[t-2]<<16|e[t-1]<<24)>>>0}function c(){if(this.pos+8>this.len)throw l(this,8);return new r(_(this.buf,this.pos+=4),_(this.buf,this.pos+=4))}s.create=i.Buffer?function(e){return(s.create=function(e){return i.Buffer.isBuffer(e)?new n(e):m(e)})(e)}:m,s.prototype._slice=i.Array.prototype.subarray||i.Array.prototype.slice,s.prototype.uint32=(d=4294967295,function(){if(d=(127&this.buf[this.pos])>>>0,this.buf[this.pos++]<128)return d;if(d=(d|(127&this.buf[this.pos])<<7)>>>0,this.buf[this.pos++]<128)return d;if(d=(d|(127&this.buf[this.pos])<<14)>>>0,this.buf[this.pos++]<128)return d;if(d=(d|(127&this.buf[this.pos])<<21)>>>0,this.buf[this.pos++]<128)return d;if(d=(d|(15&this.buf[this.pos])<<28)>>>0,this.buf[this.pos++]<128)return d;if((this.pos+=5)>this.len)throw this.pos=this.len,l(this,10);return d}),s.prototype.int32=function(){return 0|this.uint32()},s.prototype.sint32=function(){var e=this.uint32();return e>>>1^-(1&e)|0},s.prototype.bool=function(){return 0!==this.uint32()},s.prototype.fixed32=function(){if(this.pos+4>this.len)throw l(this,4);return _(this.buf,this.pos+=4)},s.prototype.sfixed32=function(){if(this.pos+4>this.len)throw l(this,4);return 0|_(this.buf,this.pos+=4)},s.prototype.float=function(){if(this.pos+4>this.len)throw l(this,4);var e=i.float.readFloatLE(this.buf,this.pos);return this.pos+=4,e},s.prototype.double=function(){if(this.pos+8>this.len)throw l(this,4);var e=i.float.readDoubleLE(this.buf,this.pos);return this.pos+=8,e},s.prototype.bytes=function(){var e=this.uint32(),t=this.pos,o=this.pos+e;if(o>this.len)throw l(this,e);return this.pos+=e,Array.isArray(this.buf)?this.buf.slice(t,o):t===o?new this.buf.constructor(0):this._slice.call(this.buf,t,o)},s.prototype.string=function(){var e=this.bytes();return a.read(e,0,e.length)},s.prototype.skip=function(e){if("number"==typeof e){if(this.pos+e>this.len)throw l(this,e);this.pos+=e}else do{if(this.pos>=this.len)throw l(this)}while(128&this.buf[this.pos++]);return this},s.prototype.skipType=function(e){switch(e){case 0:this.skip();break;case 1:this.skip(8);break;case 2:this.skip(this.uint32());break;case 3:for(;4!=(e=7&this.uint32());)this.skipType(e);break;case 5:this.skip(4);break;default:throw Error("invalid wire type "+e+" at offset "+this.pos)}return this},s._configure=function(e){n=e;var t=i.Long?"toLong":"toNumber";i.merge(s.prototype,{int64:function(){return f.call(this)[t](!1)},uint64:function(){return f.call(this)[t](!0)},sint64:function(){return f.call(this).zzDecode()[t](!1)},fixed64:function(){return c.call(this)[t](!0)},sfixed64:function(){return c.call(this)[t](!1)}})}},function(e,t,o){var n=o(35),i=o(81),r=o(82),a=o(42),l=1/0,s=n?n.prototype:void 0,d=s?s.toString:void 0;e.exports=function e(t){if("string"==typeof t)return t;if(r(t))return i(t,e)+"";if(a(t))return d?d.call(t):"";var o=t+"";return"0"==o&&1/t==-l?"-0":o}},function(e,t,o){var n=o(83),i=o(86),r="[object Symbol]";e.exports=function(e){return"symbol"==typeof e||i(e)&&n(e)==r}},function(e){e.exports=JSON.parse('{"Auth":{"Submit":"开始聊天","Name":"姓名","Email":"邮箱","NameRequired":"姓名为必填项","EmailRequired":"邮箱为必填项","EnterValidEmail":"无效的邮箱","FieldValidation":"必填字段","OfflineSubmit":"提交","CloseButton":"关闭","PhoneText":"电话","EnterValidPhone":"无效的电话号码","EnterValidName":"允许的字符:A-Z a-z 0-9空格 _ -","MaxCharactersReached":"已达到最大字符限制"},"Chat":{"TypeYourMessage":"输入您的消息..."},"MessageBox":{"Ok":"OK","TryAgain":"再次尝试"},"Inputs":{"InviteMessage":"您好!请问有什么可以帮到您的?","EndingMessage":"您的会话结束了。请随时与我们联系!","NotAllowedError":"允许通过浏览器访问麦克风","NotFoundError":"未发现麦克风","ServiceUnavailable":"服务不可用","UnavailableMessage":"目前没有可用的座席。请填写下面的表格,我们会尽快与您联系","OperatorName":"支持","WindowTitle":"在线聊天和通话","CallTitle":"致电我们","PoweredBy":"由3CX提供支持","OfflineMessageSent":"您的消息已送达。我们将尽快通过您提供的电子邮件地址与您联系。谢谢,再见!","InvalidIdErrorMessage":"无效的ID。联系网站管理员。ID必须与Click2Talk友好名称匹配","IsTyping":"正在输入...","NewMessageTitleNotification":"收到新消息!","ChatIsDisabled":"Chat is not available at the moment."}}')},function(e,t){var o={utf8:{stringToBytes:function(e){return o.bin.stringToBytes(unescape(encodeURIComponent(e)))},bytesToString:function(e){return decodeURIComponent(escape(o.bin.bytesToString(e)))}},bin:{stringToBytes:function(e){for(var t=[],o=0;o<e.length;o++)t.push(255&e.charCodeAt(o));return t},bytesToString:function(e){for(var t=[],o=0;o<e.length;o++)t.push(String.fromCharCode(e[o]));return t.join("")}}};e.exports=o},function(e,t){e.exports="data:audio/mpeg;base64,//uQxAAAAAAAAAAAAAAAAAAAAAAAWGluZwAAAA8AAABeAAAreQACBwsOERQYGx0gIyYqLTAzMzY5Oz5AQ0VISk1PUlZYXF9fYmVpbG5xc3Z5e36BhIeJjIyOkZSXmpyfoaSmqautsLKytbe6vL/BxMbJy87Q09XY2trd3+Lk5+ns7vHz9vj7/f8AAAAbTEFNRTMuOTlyA5UAAAAAAAAAABQgJAJAQQABrgAAK3nRrtihAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA//sQxAAAAkwDAgAAQAC9ACG2giAA///////9v6L+76OXf//5POCdFboVskk0IAIC63rQ50nMPvqutN0Lr1dH6/zmp0/c3j3UijGYq0y3/u2403A7QWEihDAEFoDHw4HoQBAJBA1/9Er/+1DECIAKaJMfubaAAXyPZWc80ABUzsV/n4GJBhxil/88wALDBe7LEnAo/vLQM8aK9tQlAjBAN36/kAe5uPNS/b6zQECjdnSH0kNaPnLX7fs9n11//uoAAQAgggAAAAAMJcFoxqBBDCzEaNGjnwwKhSDPL+sMUES0wRAfzFED8FQDzikHeC4F5gAgQkgCA0F3LA4J6nA9Q7JPgYwEGBSvwdJLBURMOrwqIwgthxEt/50KgF31KVUAADiDPWqjAcBXMHYLkwjAQDFBFmMrm0g6//swxAyCCigjI13ggADkA6X1r2RMVjfD9gQDMtwjUxBAKjASCUMN0K4wiQ8DArAsCAMnGm5aCx4q7Vrs0T3nvT0lt/n/+39SP6//1fpBdia3zbiXwiDhUkZauYQZtxugsampwAaYG4AYGIR4TLLHCTUvFdtSq/vt+r/V/Q19e3+3///p/1qVAAAIACQDAAsY2emsWBi2ognk7UuZ//sgxAqDBpAfKQ37InDOg+XNv2RMpQ3ZgUBBHT6baIPMOlIMVY5aM/b///////////+nXpQFAbDAAOCRoQHoFpDBSRrNHpi8ylRTzAYBaM2MBNiVhunlZDUL7v+r/7f////b/0f///SqADoQEKgo6IqA7UTMK2C8jb0DdEzmME3MB//7IMQMggc8Hx5N/2JBEIRkHc9sSCAQDEwEt2AAgxHJZ1GJeCZSqrqV01////f/1f2////7HhAErchMXjwxUWzG6wM6ZcxCbKDN6HWPiciwxJAozNyAwYZM5MjQMsz0RGgqM1saMWuZbosV83/t1f9n+qWc13//3/0KAAAopStJExv/+yDEBALHzCEnTftCYMAEJSG/YEwYMoHzUzA6Z1Mh0jQ+ldHDZLGwMNgFUrhjhcx6A01EAjWTTN8mmnda6z6Pf/u/3fR//d//p/0AapSVAYZKTDpAwb1zTWz8qM1oO4wEQDWkQIwczYJkXsrYQVXs/////0f/////9v2VAE0AYMoE//swxAMCBzQfIm3/YkD3g+V1v2hMzPxg3gdPzZDCzBKU0JYzSMzkA7DBdwEU5RKMuUDA08wzAABA6dwkP/+7/Z/X/2//////cAnGlBEo1+GDgZkxQazLmKEl4bKjhZvoAVGGOBicxYZJIYc2DMhhQj94C11Sy24uvlf3///f1ff/t/9PqNalBEsbSMVDjHh801MOUxTCVyI41Ytp//sgxAqCiFgfHm3/QkDCA6Z1r2BMBMi2B7QCAnGDNgUSPMTW6ghnang3FhfS5KrMVjPo/31Ktt9mrfT65/+r/v/2LAsHFwaOFgRhy5qrRhfk+mtasOY+4eJghAgHnZnOBqGtKVsID11H////5/0f/kP/+tVwV9IekMBgUsJwQfZtqP/7EMQHAgM4HT4M9eKg3oOk6a/oSIZgQAyQ7Ex+AM6BmBsQAAANmBZcyyY7OEwXoMsNAuDBjJBQMAwFQA7GASLAGBGA5otRYYplyWK9rpv///////////1qAEAJYG0YxIRiwzmN2QZe//sgxAeCSEglIO57YkCwhCSVv+RI3piM27GdvsYcypoRhhB2ki4TLBrY8bRCgKPIg6Mz17NulH9K/7/6+zr//3eM3//0/QjFxkMZFDJBk0MoOScTCMQUA0c1CAMG2CBDAaAIEwwkMTdCD8AqGv6xfM9G30UVAEMACgAABwV5IyisQv/7EMQGgMREHTtM9wJgpAPk1b9sTCdM1x4Y4+AQmCJUEGPSVENpZT//9oAzHBczUcNiIzu2gyQDFz0uHNOrAJEDEpGyDxhRsOnYJmAILNZmBZvHKgAg0IBIEGKQuZQMhsGSmEkFTxmO//sgxAoDB7AfHm5/YkD0hCPJv+hIzQqZhwDFiwVcbwgGRIgVQzG7Ay0aXfLgWU/xarZ3s9//1f6v//9Pb/6kA+wyESM6DzczI/SNML3HYDVjW/ExT8JvMDiAlD41zawzULjkxzGlYAhdgHF6qNzLFqQj///0f70a////TQCEzHhQM//7MMQDAgaAIR4Of2JBFYPkHc/sSOqU4RlDDHyh00eMyRM8tC/zB0gRo9W7NtfzZmY2HrM4KQ4Ih+kBwM2iJVimq5oYIfcjRg4OmBx8YGPZi2hGCfEp5oshOEZw+B0mB3AORr6CZOQmRFRieSEKqfFOERmUXRGkWXu2e39Sev/+huzOPZ//+7KqAEQJmXCOhIwaPTISGNf0EwrAd//7MMQJgghwIx7uf2JA6ARjid/sSoNmKRZjKvwv4Ggc5mjcaESEU2a5Eg5WRalkOUhMhvXeqqmr83+u1/9/9XZt7f/+rqAJADD0XjDImzDtCjGCZTBWTr4y8tWgMFwEoB0F3NIpjZiYXIw88A2ORE7QZdRDzFDrEr2dRn/+1n6KAAQgA4GAAAD/OKroWiYL4E5ovmAH2B8X/ZhCIf/7EMQOAASQHzuse4IhDAPkHc9sSGIgBAc/z9X+oAwAAjYRigZmJSwY4VJmPFGGZXmaz8FB9lC0mJaDYaMFmBjhkR6ZHrGcByEMqCSWovcu2l7O7//1/b/s0t////r+LroAAACUMACw//sgxAOARvgdMa17ImCMA6f0zuQMCAICYsAZ4adFcYjQppulLEmi4FiYPICgloOCAw0w7kbIqes2e3////9f37v/////qBADDlwoAOAvW8xAwiTo1A6k6hWQprum159nz0s+TrD5oQeiAW9EzHR014zNHZDG9Iyq0fjUROmNt3c4sf/7IMQMgwgILyRt+4IAxINijJwEIAjTYmMBEEGC4EicDEl1mUyB/oex5rdKdwVdE37/b/p/7//2f+//+0h+ElCI0/yRxnQHCbKXJbx/XJsM7qErnSszU0rO/win+U/lrF3RX9rDvRSq2Vcv//N1CAgHX//3///+n+roa45VmtCFf///+xDECgBDOAMQoARAAK+AYbQQiAD61IBU+IIABAwJJ4C+6z6nt1df9V3/Y5q+GOxYGSfc02ppIotcSnTL6Kf8ypaqhQ8NSpRGAg232gAAeed/7+R65f6//r/6/1P95TOa31IHZqRzGf/7EMQQgEcBeQughHfAWIBi/ACIAJEEwMqqOLQ3Nhzatfn/89ZFOVmOme49BwAAAIABwAr/T/t///////1////s9NXD6z2i+4MAADYQepbrKt9AwO3+//+Q/6H2f2MDh8DcUiu7//RZ//sQxBKABNgBEaCEQAB2gGK8AIgAWBQhWAFVgXABkACQu1P3btP//9b6v9n+3////1Y24sofjceADAAAAUDLFbHf/t///+n/c30oU78y///6bY/WW0CWTeJzzRdPqKa9vRGo/uXogFf/+xDEGYBDwAEToIRNwMKAYbQAiAD7dhqlSiRURsQoQFDh1iiKtu2qy3psGPiMdB1d/////////9+7////8XQ7NCODsi3fIgIMW5aVVKfbv3MbXGfqUijZ2al/v/pez7t5N3R/1rUxxv/7EMQbgAHEAxQAAEAAq4AiPBCJuIkT9troEdupAAB3end/+vR6kK4v1//yqf/n/84sd++B75tuI/7qRZnmXff//8z6syv7gy2m6GAQhABTLattTruc//////6v6933I//05oyqgAQA//sQxCiABmlxDaCEV8hngGKugCAAAAAFgbaCSAI5ruwExMaa5/OHQUHgca/fjQxxItIXcvktX85DmIp9Hv2e7lOb2W/0Xe5b+z/T/aAAA1SAgAAYOh0ZwKEIxKMTbuMIANNcWjNDBcT/+xDEKwAHTFcfWaGAAL4E59M6EABdOgBUQInjACIuttE414QGl5HaUwAAKgAwDACxGCSYbgjpiEDRmZIQ6fDVTZwkFQmK4MKYqAbphChjGEmCQYJ4ORgIAQLljMVER3IVxe70gBxAwP/7EMQfggdkISUd4QAg3wPlNb9wRNJpughATDhwy2DML5ZA2xvfTMcBMQhpOhMhnJQFxYJRe+7X1zDO6N+//6v9X/9Vv+3/1dgxsOMyBTVyQ8JrMk9Lw+Aejzn3EnMSAD43E7MlQTCD//sQxA+CRXgfJA37YmDdhCTpv2xM4w+PMBFYKpwTIf6PvAIgCoLmMCho6Sc9fGOivGcwqqR1LhdmI4C8binm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LAMNoARAAF2AYvQACACBAAAqq4UrvoW+l7kVNVfp//P9yOt8SOQau3OQp9JiFZEVSz/3rFksKPLFBLwAABmAEMv1////xX9X//2/9X+v+r7lpQCHcAAAAcVkAjW9v//s///7EMQHgAPoARPgBEAA1y6htBCKudPb9//Zq0JU49/6P/8UpQXv1kFgtvpAAEzKcnP5ev75/L/y/8rEY5/+v/h355T9tMZnI593oqeTnGam0///1V9nd3Om42V3WGV1RWt8YAId5O5p//sgxAaABgV9EeCEV8DKruG0EIq5xyLLz0eUvP+///zy9///yP1TL89V9P9WX/7///l9P92J2BMNe5cLXegAANuGdSPz89jqI8uf9v//8v/y/r+fThIVTnGKZB/OP7if+v///+u6rTlyjIEUSRhiWZAAAc93ql8H9ctf5ary/+X/7//7IMQLgEaxdwughFfIwq8htBCK+f/zr2uRpxkTU2UQ4E6KRBA24///f/z8tmWgMzJYKTsGlmgknik+51vNSv9f3X5Zy//3/mX/m5/9fLk95y53MlKXF+p7///4NXRn5keQGoSql4eERUcMPkAAGDFGniliMc3lh3qV+tyvZ92jsQj/+xDEDoPF2AMP4ARAAFqAIcAACbjdIqcKtSNZT25j/qryBNQkKEf//////937qZAO5JFej+v//NqSk8UCFZZLbYFpoQAAbQ9ZRjXhI96U2d6G/6P1/ygUQvjiJ5wRYtGVKuhxhUaum//7EMQVAgZ0AQughEuAOwBjvACIAHu1a4seEhIuYIAEwAAECAH/hX////1f/Wp6aiWuW+IAAWdSAA/Wd5/u6+v3l//xf/Y//8jXkfsoasnRuRHGLvI8DyWft///k6eizndbOwNwwGAJ//sQxB0ARtF9DaCEV8DGACF0EIm4Gp2Ipu92jdsf33f2ev7BNPKIkSIcf4CGBgOgc6PQ1KSZeeV/32GyJUJhEoIkENaMNbtboAAAiFqcjemxPVb6f6///encoVMJ3sUl6yDf//psuVH/+xDEEoAFDAMPoIRAALgAYfQAiAAx4VNeQb2SXbtEABjnIOi591NUjRYii5bf0fq/jn1RO21+igktSwKspMM+3/stoGAFVXZZVVVFC31gAAkzV7Wiux/Sxjfdo939qu7zbrUkqgtDzP/7EMQQgEXwAw/ghEAAooAh9BCJuCZU4YS04Kdn/rb33NNhvDf2SW28JEVMGmsoGabapD06f/0P36g6xfI00U6c/f0VJ//Y0k8DhQeq2w0tt13yAADSO2CBjF0V2vzddq/239+inXpr//sQxA2DxeQDD6CEQABJgGIAAAgAeSS2XdDfM5WVfa5Gj6OeoMk3FQD////////6PR4a0fp//0z8gKkaZXaGhkZaPWACHEhOmOY+hRJd+r7v6/7/u/36u691+uyj/p+TDTlQDQsKzKn/+xDEFgAEzAMR4ARAAKqAYjwAiAB3yQADyyBSBLkrt11ae7+r3+PpWXou798jvoQ/uQ7/9PLtOuJoAIlwiFcOBgQEKlXXjr6O///3f+z///p/R//6LxUIv/////5f6/+l0dbYuQ/0///7EMQXAwOgAxfgBEAAXYBiBAAIAPVsWgWS8dW2CVySwdIAAKzvpLeWDXc/z/3///l/fa/y8Swryfn0x+v0/wFERMOyX//89511eSihXyBkBGSDMzKPwprHPE667q37GX+xdu/Z9Wqz//sQxCYARnF1DaCEV8jggCF8EIm4IPPhkmsI4sHUBQMsW1oq0qErI5cr1bUULSTALUGwWGL////////9n/p/T/91vtIkJdxZJLN4hKSx1qnVNXRc/pu/3YszFvsXbQhE49rAiBdgSND/+xDEGYBCCAMSAABAAMMAYbQQiAD33HI1sfkP+KoEswFGGPN7tdrvugQQ14GWTvudLm6RQ+hY9Tlf6F+xn/c2cvedqum/fvr/+U0LUeWLCYIsEKqqqKG2qIBBMQHVoRTYv3j37KP9nf/7EMQigAXMAxGgBEAAmoBiPBCIAN/9nrd3ddxv9bKv/utywugACAAA/f//////V6NX/6/er//98cXAtoEklArxqO9Oqni3/9nSmEv2UX2tukEeRGPUsWT6P/o9I1TEVbqI3GpHmQAA//sQxCGAQqgDEwAAQBCTgGH0AIgAnPatdl19zNFvVX9PmdjrKaFUUsYlqDyYu1iWvYgSBdVFYt26etrFhAHBQEQy6vCu7MrXDMgEC6HrS9yHor2uo7f/u+d9X13f9lrP//o7E5CKKpL/+xDELYAGnAMLoIRAAJEAInwAiADbBYxJ4AAAtIacYbttY/088VH/2I/Wb3v0UtrDjBpFQ14wCDCrCjJ9zlPd3W6W8eXICYqLGCDAAU6swBhwCAAupVSHJZ8X+///7urUz/TUYT/////7EMQqAAbcAQughE3AgoBivBCIAP7xWYr3Ua2iWeIAAKMCDEsYkVWfoqvt/t21o0JrZvzjx1Ckqeh740XRW3UTWllqov6uxDkkBGeNms4Jq2AJgBqXUMtZd/rUyKf//1JlJPJixxBA//sQxCeARqADDaCEQACwgCG0EIm4dnjl2hMHHMJ9/9VOiXBIVBIK1f////////7vr/2f/9WFGFjevmFult9RAIeLJQNpeqxlO7a/p/3+3/s7N+xn1p/Win/0WkDwnUpVZZQFRCl0IAL/+xDEIAACFAESAABAAJcAIjQQiAADSzRZzJ/chGjmer/G+uzdqavtumVuNGypGK9F9E9kNSa3rVCg8mKhgur//////////////9mi+Au31v3jIACDfN1pPiyGp0EtHZ/u9X/T/R32M//7EMQuA8ZgAw3gBEAAMwBiwAAIAN/p//p96ExxyyNyXMAAArR6kIpvnNFtKi1atv0/u8whgnxo2tgsFSePHtFjoGCwjFXMFtSq6f1wG+MAASoPe6wC2+kAAWJPIWt6PmXYl9+j93R1//sQxDeABFQDE6CEQADXgGF0EIgA+zoZEAMEkNcZvNnRcmKkGHWxZ3T288m4HDAiLBoIAGBH/////9df+939/fs/7qnav1eXE1WADAAADgMAAN7f/60X//+oTf6dLvb/X093//fVMA//+xDENIMGhAENoIRNwFgAYkgACAAgAO4O34AACFjOi/ke7Sv////v/kEXf/zn/6F3lgdmZ3+HaAQFCjnWvreKJl9cx/9FH2Dnfynro/T/9qv//Xd/t7tb/mQAHHBd5BybWb379TLf1f/7EMQ4gAOcAROghEuAb4BivACIAK+kv+r9SuL60U6dN9X/7OytiQB9RMALwCAB1MVot/9t////U711uu/e31LfV/9XNm40u4Qrq6qiO6EAAJZzs5vuMlrnPl/P+v/15f/6f6/RbKuT//sQxEWABGwBFeAEQACagGJ0EIgApdxptoH3C2lokJXH3Cn/fH6XhEFBAI1nkABwcFGAAAAal/us9Xv///////7///+jItem//8XXUeggAKUwKtTTKJfbbGeq3/Z/+hf/emu1g59Cf//+xDESgAEFAERoARAANycYbwQiXj/frdSIFL//////2+y2Oteac20M2B6+i+7MPJ/+awKgYRE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"},function(e,t,o){"use strict";function n(e,t,o){return t in e?Object.defineProperty(e,t,{value:o,enumerable:!0,configurable:!0,writable:!0}):e[t]=o,e}function i(e){return(i="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}Object.defineProperty(t,"__esModule",{value:!0}),t.pushParams=l,t.popParams=s,t.withParams=function(e,t){if("object"===i(e)&&void 0!==t)return o=e,n=t,m((function(e){return function(){e(o);for(var t=arguments.length,i=new Array(t),r=0;r<t;r++)i[r]=arguments[r];return n.apply(this,i)}}));var o,n;return m(e)},t._setTarget=t.target=void 0;var r=[],a=null;t.target=a;function l(){null!==a&&r.push(a),t.target=a={}}function s(){var e=a,o=t.target=a=r.pop()||null;return o&&(Array.isArray(o.$sub)||(o.$sub=[]),o.$sub.push(e)),e}function d(e){if("object"!==i(e)||Array.isArray(e))throw new Error("params must be an object");t.target=a=function(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{},i=Object.keys(o);"function"==typeof Object.getOwnPropertySymbols&&(i=i.concat(Object.getOwnPropertySymbols(o).filter((function(e){return Object.getOwnPropertyDescriptor(o,e).enumerable})))),i.forEach((function(t){n(e,t,o[t])}))}return e}({},a,e)}function m(e){var t=e(d);return function(){l();try{for(var e=arguments.length,o=new Array(e),n=0;n<e;n++)o[n]=arguments[n];return t.apply(this,o)}finally{s()}}}t._setTarget=function(e){t.target=a=e}},function(e,t,o){"use strict";e.exports=function(e){var t="string"==typeof e?e.charCodeAt(0):e;return t>=48&&t<=57}},function(e,t){e.exports="data:audio/mpeg;base64,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vU6mOmxyicmJdOTkoic9eq2+Z67et5fX0dBwSigneD4MBoLDf4usrfqgAZfLZdGgpatSbUJRPLhQaXsNrSXGLEokQNF1TIcQnfq0ctfoQjQ4s6u2JtqBQSPhYGOvEpOGLSdAwUQH1hG2Rvf97S7zH00kKk+oBRFRjZdRy1TeODQKdHNRx5TexLatjbfkEgVcRpCQJZl2rN+N00DY//qSwKaH/4AbLR1NrWtLusUeqXWs5XbQRFrD/TdGwqVwdHKF5GuxFt77zPS19nUbcnt/DUpmMo1do/5jnUs9x/W9c3+GOrQYJjjjmChWl+v////////////////////////////////////////////////////////////////96iAbc5bNGA9jwqLJ504GAX2IAU1jNMCCxYQlgFNERyNCoG1xuzdUm3GKo0FPatBGC+qUjjNwi0tfQLRBQMl+CQjXY4/yw0YUVacoWWpRwZPArjJERiRpwjt5hvsUhObSRlc4zUAwZm161Dhc0MSXWklK8ZfXrYdjU680Sd2DY/K4U5clfxrbXI9E+UD7wDDsjp5TL5fSyKL0PbGs/s95yfxx/eX5ZXsosyrOxQ66sACTqSytgSbPpUAYmAgFwRCDGJwSYwsIw6Aax6mH0FrfvxDbHLSbhfVf+bNEd1nlCCi8fxkhUwYApcu+A4sriHnfcBdy2h0U6rmp6wFOR1maWyxTCjC8TQayi5kmRjzIboMCNGhC/ZaFQ4ONlYtJl54TIv/6ksDtYf+AG7EFTa1rK7K2IGl1vWV392pukqzEP2JmfoM41P3+w/F57OUz8EUd6a5q3XpcrdLjr/1+OeOt8xpdfv9XLeJWzRrmv////////////////////////////////////////////////////////////////////////////////////////++oABzqW2xgUX3DAg4AFALiIzljewAWJwGOduXSFAtjObmL8ykoX+pr06hJb9WExxKt+Qg2gOBdR+p6BIjg6bwPNMIVq2qBBzKAKQPS9LxMgEIjgxnFsBV+KyzcCYEs9/IoZx68SzzWWLQXIL9XCSSptX6zm5Lu7hn3HPKB6aXZxOCKGCvwp8JbTWs9xruf7qZZ93r+959/eHMs/x7l95K22qAAk0tsrYDmtieFCSXHEASGxQEZD0X3DCT/mCAkyeGC+eXuPGWpuO14HA5dEGDKLKEqBl1m7tlYCY0UYWEWwBxIaHJgqwKZhw1IBB0WFMMlpruSkmTUxdJ6goOFxRgp7OPStgMICFTMgBzjyRx/XQMMkWL/+pLAKIz/gB1JBUmt50u6gqKpdazld9xYflk5ANfPUWgF3qm7NHqJ1+x+OQ3J7WFr6evbr5ZVNWP/9d7zPWWsMamUMVdBX3g6hqr/////////////////////////////////////////////////////////////////////////////eHMQEmaLvtrAH4hlRZH+GgqNcoUAmltvwTALggXJdR0ZBZ8YI96FkHINjqx5mSNaYIQBDABxIG30YC4MxpQ6xtIJQsuipu7KeKWaD7rJ3FvwxZb0UTbUWUbjiK9UxyUNJ6Zhow4CAE7lRMVTWsnKmouJFYepgpgNEzqpfylNNGYTjn9mvbyry61LqtqznGozTTvKe7Zu4VrFNur+NZAQVSRjYGSQOdQUo7ogAHM3ba0A9lNGAqGdhBFAoBAHi+OEAiLKDH+FpLQkbe5TzUPUzdwd6zV3V+r0EAKlDbQymUKjpKm2SSKGSFS0FmLRNt3fFiApQIwC2gOLeFesHMMICjVbBIBcF5YihiIzjh2P9M3jGlOy3QQimgaDUg5F//qSwEFL/4AcQPVJrWsruqMdKn2tZW+CIpSOFVq0OUkpjt3U8zmFV7laApC3Z+KKOe4UAwNM1OzF3LK5+eNbWPcK/CMpwOjTmO/8bd////////////////////////////////////////////////////////////////////////////////////9oVBABR4l22jAhFVjaPDuocIYQ9PbJEYQiL2wqLIgNMhHa5Sbl3EJbK0oWluqnS30DMVuwuHjOODnKGgBhyqxlkU83ezLEs0xB4goYuJgJfOdVTQAiMkZ04TAYtD9kRozNSjEihZbLWjpPEgUkFlUW0OhaG3WH71C6ESkTx55bnYFlFi7nKtS21NWIbuyKZ33PU5N7y7njcyRlj+86Y7+JVWve0AK7uSStgN5L3kAIxiIQLQ1S0PMSGCIGJPWIN111RgrLOjlSYsLcM2/1nP5OsSVla6dr87EmtnO8gSVwYATDG6s1n4zTOir6PpQwUo5OQRLHkAwaFzIGc01io25hdiA8SSlUfZk0FWVK+KzVDQcp+ZVJRP/6ksBulP+AHSDtRa1nK3qHHKn9rWlvYhu9KcLc9hYp6Wk7hGK32squFnPDlzX56t41KcrhLejjZzUPeEf//////////////////////////////////////////////////////////////////////////////////////////////////////////////7w6gAErO7ttGA3jsF22eI8mAEiMNmB+z9ETmK/SgewBhaTOLwwrG1xRZeCTURe553oecQCYRqImVWNDO2MooGvItyUvhDzhtWS3a7mW2XlZbisMYxx7CBBaKT9PotsKvmTuD9wh5nNRcgYkgHJr25XF4uO5awkv+AmmwPeoLtNSP5Kb0oqyKbwqSSM4RnLLKdt2GeFNH+6rXdNP5fX93qABl7ttsYDaQSy0xodfpcN2EA5zkbJAgbBg44rFdHjreFJG5BTOCY4ELuMIBwKToKHRCnNPsY6w+HEwzRrbyKuZQt5KxrymqWjV0lSEBsT2w+sEm4MgkzTAKKIR8KBxU59C8LI+u4BA0+DRHZvQ0r7xKWX/+pLA0U7/gB2k40mtZyt6d5qp/ZzlbzXpZD9avjZwmp+T9yryqYpLdyVW98nbXbFyXzVLlX5vK/Zg0thPcxB9ygz1lf///////////////////////////////////////////////////////////////////////////////////////////////////////esAGbza2xgQc+DIwsE7IkQ0sYKPXBBMNLzQhGTgrhwln7FM/FIIAmlQCzaC08VZQQSplOPM3E20TgEBQ5oIBYNB1WpmSvWilp7oYAsRnKyC4amryqrBY9kAyM5M5psiFBq8GGqRNLqtydDMRAlrnqsR+/bpZ/C/SzuONzWFBZ3NZXa/OffnrX6z5Yoatnmeu/+8LIj+XzfZ935vId8iArvLdtGBCK7dC3bRgEBVE/TTIEEAocDTYjFThmguXNfGpanFEmxHHSTBzNlD6MF8kZrsMxM7FTObh8OGUIZo5FdPqXxdt3nijvt3gqGHdpgsgBlAu6mHJ5pf4Y8ckJ09F1J6WvYCgTDVFjmIrvcCIW6m//qSwMq0/4Ad0OlLrWcrenGdabWc5W9tgpXCicpsS+GnhpLsonbVmni1SXTtrLu7E3S4WQS4e28A/W7Sa1/1Kf/////////////////////////////////////////////////////////////////////////////////////////////////////7xAAy9y21sB8pQw8oAO2gSfsRAjI5FbxIxAIo6rHdBR1PhuCZAzAkJPMpNekU0GAhkRphbmdjrxnPMdZhMUwdfjKMqrd2OPo0JO8MAJ0uAuh41hljl8gcLBRx/4PicCGISHDKlY9IlX8YpTEiFxqgSIZZTzkzRXo9L3hmLVahrRWUZ0d2WTlHVs2bOO9Yd12/V1hr61qzoyjSlGRzSMw6GHfeMACTy3atgPJNsoGR8FJKsIEY0cqqUCRWsCAiYaiTYvfT3JK/TVQEBZwVhS+SFEYapYzDVUD0mSIFRjIi5eymDH5RVl7EeKYIKpoMpZcmtZcAgAoWla4SZUbWy+hlThgNJghwCGTz+NOHh4IPBxBH1+o43v/6ksD+4v+AHSzXTa3nK3qFHCk1rOlvsksRe4tnLChpbmVnfatWVzt/PmUzQNo0Cq7rfp5vRDX+F2y/Xf////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////aFMQAVWJddowIO7DAcBfpJuUoTjCbFTIRzRCpMZIb3/fyDYUzGSBcuQ0sGLQL/qKI4RjJygrcfATsM4SRau2zzPDGX1QTA1FI9uiMpdh9XAg9ClU6VD8Va7sDox7qFYrQYNp1XKZgUoANF2mYx7CRTlFLZ15ZBUqVIhfkcpqYRGMVamEoxqWa3jQxOjqpS7o3thz5Lf/P0Z3QQEmaJv9pAJNen0/E8iIO7IIBmbn1USvR+JiImX2p8IYdMmArhcIxUHWm6TaBJbBaGUwC9IN2RRWIponDLk2I6shnG0l5YzctUTPr8a1MRwHXq2mEKna3SRKdA7MxwzSiKh7/tLWQhzESIQWsM97uw3LL/+pLA/y3/gB5wx0utZ0t6XZmp/azlb0M7Nz8Qv0tTvKWlq9lMu1LdznZrG1f/CzjAuqsf42jzj9SftuICjv///////////////////////////////////////////////////////////////////////////////////////////////////////////////////76gAHM7bI0BCbb0swZeHBX+FAhzLxKLBRByRHCNAzQsLhnK70WdtJ5AW9VG+znF34MS4klClsaCAPpFgCYSXdgSQKYl2qQSFpzkQlCNjQcFUjCKNMEvYDBYCIFlJ/CSGNSgs6dgOCA5fiZkGbCFdPvI8bNNytlaj1Nd+kxzwnKu8+9y5jV5nzHPPPuFQBiSRXGSvu9SbzP/82hjEAJVibfaMCQcfovYwwsvEknzqvUOA8B2QFt/cDF6b56AYGgRiYkFUtSIsqVQFfFpoBj0aO1UehlACNY/FF7MhZusJcEigcI1inUgsZ8m6J9pzAY412QoC01lQYMESg807jRAGga7smLNBRJIlT09fkcZ//qSwDeX/4AeQNNR7WcremQbKLWs6W+nwzvwzK7lWe5GKSrNU03TZdqc3rK2dAYoG02IMLS1kW20f////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////fmQDb3drWwJNkzQHAbTC60JRqOeNGYiQHPK9KCpSn5jyJxpIGNiI0eUlv0j1OMQFl+s8VlktIGPY4sVBV2kyWvstlzbpihA5flTBDQMhgC8MghBZQsaILEYKgdn5mznguOZoOMThDEF5GKEOnNzo4CqTdLUpolVrZ1qlqmrye7STvMsrUrme7v/xjXvx/Tjr76JJ+zuwre/MAG3za2tASbjLgYAaIYAExMIKFMpTYSLRocYV9eQdsfC2qMnaoKAiVTmxRgSCyVgoWIB7DMF9m0wQXA5sBOgkJWIHHIAhGC8ygcMDKSAxwhCIiopS/xcQGipVJ9Kx55Q6SvnNMETCS0Ko3EbAgNT2furM//6ksDdGf+AHnTLT+1nK3JdGak1vOVvAk5EpvCnjVa9TfZ1awq5RvLdXX5/ew/X2w8bBdBB7OxtdwD///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////fMgLX27WtgPJNoTC8ZggEgAZQgjOIOzAA0aAKIVDN50eDUfGSKdu/DiHUOiRWgjjFGwKqgwLYUyZEgwZOixYFNwlmT9yZxIbcFtxwWNp/OAkQv2JJvAQ4eAYiuaXw43IqICuI2erFI8FDhkYiCfWXw5L6eT/vKpdq1ssd7yxtY3J7X5XMAoiWOroY5f9Ya/1N9W87SvzIL28u1rYEh9qSKiPA6ANLKgUcK9GAhRemdAoUiCyswwCxYa9kX5Zgo4AnLSHFkCEhSIIApd14GmjDhAmkhAuxnb3rjbGr51lrjxYYS7TSS37aqWNAVkEYZlLFAqSbTJIt0QyCE4zuFSy2ykMtchAgOgmr/+pLAwhT/gB7I00etZytyUZipdb1lb+TtStGJqpbu6r4X8J3WN67lq//y7qefxFEskhz8IFP0Ytd+T+//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////3VABXeXa1oCTbiiFbXC7biCMGbS22gsTi44VbeoAhMszmXchTOiwDZi01hiwa2FGEZhY9AU0/ogmCSSRGWBrHht9rDjwRKV1AQ26LNmEobqZKaN1CwoHdSJwPI5bEi3AMPDNIy0EiGRuLSJXZAAQqrOHSxuNY08tmrdNTTnb9/c9ll2pY5lWt9tWsjRA+VJSpx8wxFOsvyABm+21rQEhmFKy6CO4gENbEAIytxc4QOn1IIxYjwbP7fYxSki81h5iDbKaopqGssAyxwyzwURGhgGDZjQ8yAEmRUOBGeMVZYgPZaxyFMfW6wdx2tEJKR5ijFzwEFGKjOhyo2BTdpSSWVPPoIgVNlIPLL6S//qQwH5c/4AehMdJresrelaZqPWtaW6aYz7Vn4jM1Obq2qfLHmFNT97yvnvV3neWepIvOXx0Z3af////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////Z1MQAlWNttYwIpdj12oXtkhABBGlIkeAYEg0axEjKv0U9OtwGAbEswiKzWBphImtqutqhgSGD+nKYaatiwkid5QJWh8U7AumkA5CUc0xaelCJgjHCoEghySuUDVhNoLAImSO81hQ6LMYhMY5AMttVbMZrWt8+5dvc3rL+5dywxrVs6ntBSglGRG/o+bttfFf/b8yAtvtva0BJsn1SUdotlYEIMYJII9BwLLBCATwtFz7WLhL5XtKUsBYUnhEmvozplpCIpKSHRoqAL2GXrEy0mdFUOoI7axkGVmNNQ7BAxUsw8KdbV2Aus1c0JoOLvmw2oIkZwRhszQQ9DzrKGmMAWFVwqZe//qSwMzH/4AfQNdHrWsrckQaKb2s5W+0sirY/jKa3db7Z3nzO13W8alnU8CShEKPdGmWH/6P//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////9oYxATZou/1bAk3YcXfEUL7CH5pcqDCF+YVLok05gwkvqRWnVYzluQYZVzPPyqd3UJbV7MneIAwjTgi3oCHe/CCm7o9wLgmMhEAlFdOyyZk0Te5JFbyJqLL+wwrSLCDbhzUl4nXdlpLS5EpY/3LU/rV6vTx3suHAXQgLHz+R6qnnm1aBa+sgG73b2tAUWLZRwA1kFBGqjAg7noZFlvo+MKuvUSZvZvu7EPukm0mGt2Kvc0hmwwCFhorNR4+4jkAFtRQIocnq+67FIs9U0Z5BLP4JLlqbua+cWEiYGggEQniy100WgoeO4iN8xHnSZsUcBZTrKWNcf6Yv/6ksA1+/+AIODFSa3rS3IQFKm9rWVu5Xne42J2lsb3e7jjjrufP7lVB8ICwRYi90w/6P/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////1dTAAFWi7a1oCcxfpVVQxPVwi0px2L4ERCwv1AnUQH5brylK9514GNCtih5TYQCAQCSJFhkrcaHjDrjpEDBCACGTcWBVXZ8oQiSjeuUwACGG6tosCvieehOwePhYK/048KxQCWDVwJHAEMtV67UIYIkwzmjyyless8Zi5hh232/cwwpqYLB4IDg+5wdXSXI3U+ls0miABlzl0aIEmzcBKVnwkDt4JARzhAkKBhF0BlUrE9YJDV9U0XahdKoUZEL0ldaCE4y/6nphdigZgY5shTXx4cmZLn9xhh3Yy4QhFpoMqeSHpDHI0hPXYwFBVqkRIQKtxgwhiKphgCmrGajwtlbDA0xWxrb7/+pLAyw7/gB7wxUmtZ0tyTZdo/a1pbvJil3rvP13uta3z6n1sYPh00GiSAAs57Pr/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////78yCZfLtY0BRXE51VER0GFzomHRjBgIkgfaTWVZ0WFvffwn4jEwQS6tDClhXXhlQOBonFjm8En0XDCBdB039gqG4VKm4KCqFJLKPP43CCGIBAalo8681SbggKJCBg6XQETD+6RnbHG8o5TYoqaM16lq9lW/mt2ctdqbMLYQEiw/cnd9H05sgAZcpbGiBJs2WFUHBgQ47iDIGcorgANAwdHyFl1Y8NJy7PUtcqoIQD9hW8/z+uszhYjl25Zs33QwiGFlMliM887wM+xyW/F2EryU1ceJX0cAEimApzOW15mSeZdxuqIxzlG3e4z9mvbteUUtnO7Xt4/fm//qSwP2q/4AgyMc/retLchKXaPW85W7pdvF7h0XR52t3M7r9/fXf////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////vyIL28u0iQEhpG/CgAXTfuH0Jhx80EASFk6FlpN0owSzlG42qEsEFdHOyV9PSuyXHYaHEpoKZ6ayWZwOnuFhqxcH+kUaijvIAoaYsxMeAL1hLkMfCgZHEtAvu3TLCkxARLwqgEi9uDdO/ujk2tV76VgrLzwSDoTHkDNrN3WRGKR2IGeaEAmXS2xkgSCuwwKgMYBoDMCMBNouSYBLqx4AZD0zkCxNj33gp+6MGbHweq+IPjNrzTQQYrqojBxkcGekBEC8iZKYCBz7lqUpUmWNq6Ze7qmSoqVpbD1zCygQamdIJ1QJSskMSJGmI9P4Txd6qxynzrUmVP/6ksDB3/+AIQClP63nK3oKkyi1vGkufLQaJBMeKBUThYsqtq43dSMp9WY/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////5oQAJNLdGiBIbjcxwAVvFAKnQ8MrokziMcaIdQ5knH3kFROH4yIyKTgapYbG/jO38lr4ykHPghQZACUGHVcldzGFKLT8uErCxeIKLMNcFqVpdwGjrKgGTQTeA3I3IUTDGaDjwSfjzXZMtOZmM9VsseVa4PJhEDEylghQGzqSTp5+d13LmpBJt0tsaIE5myAu+vAvzNEACKVKCpATICuI0Q2Xg3x1H7VBGBQgzJ1obbizdZ6dgkJ0l0JKiDkOvvCT8Jk1JG2JNq4TCh1AIGdBVZtHKgN705QxJqrFbEFpUmMoIBwMey2AKWAm4r1ZPGbPOYXPwzvvPEn/+pLAq1P/gCDooT2t5ylyDxRn9bxpLu1VFwUFHBc+eIL6lfq//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////+akAG3O2xkASHCNoTVVwuGTZYBDMrwu+Ncd0Q9T5iSCG5i0JqKI6xxiAO82l9rKtbvllsKjquCZdwsWgkCJWctZZwul9lw3mVLQTocBl6lUMR17WTz6uI1ei5IAFDhGWW6U7wjbPmXOFLaOUzdJkIT6CICA4cqOBHbPU5sQCZdLa2SBOZzyAt0QuAx5Kc2mpEQcW9rgR+LK6UOLX/1NvDAjABUOwO0wRiLGCwBXnDbjMDNQENtDGoDIkaE5YBcoZC6jBIdK5pANjha6WgS+OCMIhRF01ZVGZoiuaxo3DymXTGVt77H2f7n3W8v/meFc//qSwDPf/4AiCKM/reMpceqTJ7W8ZS7jgAYLAsxLM9+LX/Sr///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////+/MAK77bSIASHNlIjArVLXQKWyOlIXyTA7TEEYrIspRdeGtIGeBRwbHcNaLWmbwUvFH4LhOioabtZ0+C6JMk1ZiReWA0bS6TqpWqWsLflN+RuLGYgxiRA4RTmjtL6JTQ+UHeDwa/5VSu7H4Yy/mOX9/mHcMd3FiQnEk81+peesEq73bSIAXuLDlvFvqNw+kAdk6sMXajwpYta4DQb/JqvDz/iEc+Vl+tkrN8OBrxTogp2m5GOofYIGNX4WYirrNDUIQhU5o1lp4VXTvuVD7T18rcHBJwTlEn8zgvHKEiZVnqNSp2cdVOWNbyz3vD+7/D9f//6ksCMWv+AIbitPa3rC3H0lah1rOVu4d+7m/crnzH/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////NGATbpbo0AKLOWMP4rVEC85+AgoBHgJYYLREZDZea3yHG5p4PjDIPZVBOto3d/WeqMshi7FTlpH50FS3MXjE/bgx/Gcu80BkLqrldOR9YyoWKpByDox2OiIQwRgvoYsDIo5OQqddeU0lvLG/dPmsc/D7oPXmX7uZn763m7BJt0u0aAFF8rfgAB0JD6p/B7tApB2GTBpUjKkBtj3Hli/rI6Uwd7Ixuyt2eiUE9cIwkUyIRDdqj/UEGR15HFetAQJFYjJCQCvWkhp7UukwF0zMORhRQwJkwQ4zo1cDNsar/Pk6wcFwMOC56PTSyqJjuWf/+pLAkif/gCH8w0OtZwtx7BNn9azlL8Bf////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////9+gJV/u2kQAk3Z1nbNS7rVi/5Py3UaPjYUlQvmCgOt3CruUGCOAAnut26OH6kQeCNlQs2YE5rqRJfBcTRpdA64mXLKepmjcWTOW/kzmtVljB6SvblIYCA0AcQUAPx2YlVBIrwkDoAXWQGpedUuhfqr8wVPvdtIgBRVHLXQstM2hLcAeqHlhsjEQIxodHCITfZ6/6miUijh1HKeZa7r5vS9osDIIgVQYgiEIdljUkaWtOvMtZbrx1k0Idl7LWDupAjI3eS2dqzFrKiqfIhFPQ2VmsxqV3YHteKM4Vy17wt6uB2vv6//qSwMUn/4AjbI9BrWdJcb2SKLWc5S7/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////81QAW2ttjRAnM3YRnnBoPEkQzmJ0eSIyMFhZ+sC7OtPFLmbruY2eZKEFShb92Etoy01cqIgFhBpMeMSGHfeJtlzr2nXAmk6YbbOv6VxvajYsVaHGr+MfbgGCmn8s1bM9II1R57yzw/d78eKLBJtChR9T1vc499WbQFLbTbSAAXvlcISVLqLBkhR0yK3KG1DFoInIuhFbwZx14HFFDw7x3YNpqlPuO0MEN2MYgNwewyRH6f1gkPN2Um9DORAC+8sWexJr0KhDLi/zkcz9hwcQYYIlWrRbmpTEHgiAFYqBtt+I2V8u3//////////6ksAGef+AIoyTRaznSXnaFGf1rOku/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////81YBW2tukQAvfOv/gXViAyCcm7sps04XRV7XSZz4+spetxQIClrMupajD/RGTwStJgAPWFrkVmlT8Rl0apY1Ho7FvuQ9HpqpOuCysHDyCep12o9Bw4+ciQsyduxWNTFj7+8Mv5vWf613Wtfr+bwwxrfTS/XmrBT/110aAF7kvbg+6Oz1iAY0+HXUMlZhZiU8oajSW3HZIsswwwY2LYqXsG41d0qd35ZEXuNSU5lCaMGiyplkPvKsMzdo0ahcB12wWZHRQHLxpNm0M3aKNIJx1MZJDGX1h2IVKfdTosF1oQ17rWMnEptXJ3/+pLAYZ3/gCLkj0Os5yl5zxjoNZzlbl///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////zVAF/aa2RACxuYcKEIC4KSXAkNqBMDAGMJpUpQul6l236mrDSx0rRjKZJpwodf3kELbNcI5B0ghUhIB53LgNBI+i8IjOQ1I6SGpmphKll4SjdarDQsSn1yXblkblV6H66Ui9MVFuk1FKYMS/Pf/rJswSttbbGgBZ1BbDn1guCx0UFpDXk7YYKtEGbHgN6ciD3FWCAAAKNeRyJRSzdiCY68hVEnOImEDkRF1mm4v9Ujb3wungGmpYHl1us+9x5YYncqk9VS1Rir2uYQ7GZUPMgAAAgNWLm/XUYO26f////////////qSwP9c/4AjfJNBrOcpcbuSaDWsZS////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////+XMAvfS2yAAXv3yGC9WhgU1fWyIt5BUATDKYIH2vnoi9TwAl4Bq6mzyznLkBNnkUFzQ5ETnbm6b6xOGqanfyXe61f52P2MojOVWivZ9ySDCV/r2/fK1q1+Ge9XdZ56xqxEL2vy6GGbwFT/zbSIAXvxnlqgpFxJw6YbCyqZBsI8jLwUtR6wdN1VyojgGKwymB5Y7D/trL7LZQTWRFxx0HWde0/0NQDONRZbafSKPxLakLXyzzOzhKnaT1Y2oe70zhqkud5eS1A0VvzqTZ9bNH/////////////////6ksAS6/+AJKCPQa1nSXGWlKg1nWFv//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////zWAFXaW1sAC9u+7PowNeVpPN1uhMBVFLWD4ExvM5XSWmMtcB1rTZVK5JD7ZYIksMtLOwQ1wViqyzEw6EzDTWJuGY1nWs35blKXbUPgSU4beF10EqfTTKl+p5s4m7bcgPwum0BS2810iAF752GmfCQbkIxnABVZ7cCAk4pxLv9y+tKo9ABTOLwbnATX3BYhazeEz6BYNGkRAPC9k42rqxZos47NBWxpp+pR4tAjMPUuEEMVQ5iosCyqiuWZunFqVjDwUjTioxopR///////////////////+pLADnD/gCU0k0WsZylxhRFn9ZzlLv//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////zWAF7a21sAC9qVuw84oEhLLeB960kW6Ycwy6UghEO6mGVNWYgpyASMncWRwlyoq1i62zPDhITRl0HQgW6bjWIhEn8dOed6RzcPSCvnDkzSqCRTLBmD/vWtSDpdUwAoHCLh58iWs8l5tAU99LbGgBe3SUywCGbMEtwWitFhHR3QaomgYDRdfeu98pUpNRBmqxsMLcEyKpcaIY7R0lKgmmp1obxbFZvWJvOHY5YnPmKr+Sa93TtX1YU8G+wu6p7FUOHBOIwpFkWI1tyzXpxf////////////////////qSwObV/4AkhI9DrOMpcZoRJ/WcaS7//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////m8BL22tsYAF77cUT8LkNfFEDhKfYmTJlPlFbRFaR0j4R+SOcSHWDaY4Paaidl9HSZUwcLtGjmJQQS38arVr05P0GcP0tyVcucl0hi9r9SOaaG4MLltzPCrdyexx0g+R31h3MErayytgAXvvSJgRQk6gNBO6eEJDxEKwRYDkhR3cG2V+rzLMjx9iLdPzsTb95wBFErT3KFQV1O820vhUjxhy1N71ake8N3U0mDz1SYgFlJa5py9bFi3lnb3TCs/rGgvfy6V////////////////////////6ksBhVP+AJTiPQaznKXGDkig1nGUu///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////lzAL30trYAFnVfFY6WzS0GDRgeZRGnAjKJcoWFjG3HZw0KfaYFZE4V14vnIoeh+r3wrMWaaouSAo8/9mW5zk7eg+zDM9+Msl8jl17DUNv+7634RLOY0mRtom5el1TdqBKt1lrYAHPmHpXYKA0iHUyP1hVZI0DIB4KlJkt6nZfAcGoCywD2llTtQt8F+yFfTED2yDOn3heMYtdxppU/DXG3f13q8Vzkjc3khyXZaqIJFnsvZzDmsd07Brtg0sDQEZG////////////////////////+pLArx3/gCWokTus6yl5dZGn9ZzlLv///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////83YJW21tjAAvfNvuuJMilQIDnomRIlgXI0DNCDfw5Gn4ZCOpQnRaAOv7Aj7S1wn6R0NvGRwEi0CSqtS3rcvn5ykmK9FQVLVaksVLeGqCDGasVu18cat6XfDVYDKdvv7fXcwU9tba2ABz8o6yBoWlUTHlbEqWyY+40i3IcDjXZE/rnK7EA4bC1aWyJd6YS7NaQ7BiAwj/FMa2RHqZLxmtSTs7C/WK0UTkd9XWqt68P470E/EwwNUQzHFkQC9X/////////////////////////////////qSwAxl/4AlZI07rOcpcX+SKDWMaS///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////u6AlXWyRsAC9+4CWBWBU1QaOlpkmDj4pql3gJJZfO0Uy/wVKIrnFZzlO5T8Jh91C95m8hwKEGsa2WE3F8tTeFetdtbyyhyM2ublM28D93+/ldGnu3z3czP7erJSwEm22OJAAc/5hgZeF7wMId78edB5hpwnCiqWF723hqWsoS6iClsYuQ3FnLh1kzTBGjOIFNm2R5VgqTEi3KZiX7obVynvfu510GufrVSWuzDrfXO6v5AwGqhdVadx5X/////////////////////////////6ksAuxf+AJfyFPazl6TFskWd1jOUv/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////7mgJd1skaAAvfn1uSA+OIZHAVH0YJodqYl4svh2UXZqJF2xKB7Gf516kRfZlUuRtAUTwxX8zS43/pafOxSaytVMrkzEYvM1NflD1NB1qr+8bVqs0rynv7szVtBUutkiQAHPu1PUOglUIHPX1BcYNMhvjtseafMSCXvk9SHcy5dqAs5TKbGDpPOoACYGLYhImZRT1n63cc6tNMynKd5zGx9DlvCOw003KzX8wjtrKdf/////////////////////////////////////////+pLA/R7/gCZEjTWs50lxYxHnNZzhL//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////+7oCXbZJEiAL33rSuS+rooxh5rSRq8yF/oW1hdFbsWnMmKNHeDKGq1S3MUE5EYfEHZlAJQQ9Zy3X+ltU8ESep21vXKe3ugxxmpayN9Z6x5kLq9nbtXpqfolKwSrZI2kABz68sXEmI2cCEHqw35fZ6wZ2jXKAw+xuU1HeYkQjkT9uGc7eH3Kz2tGNL44j34eNrFBG4rVuR/O1/d591y9Krdn/1f+fwpAzX3ql/Kqf+/3f///////////////////////////////////////qSwF4m/4AmXIk5rOMJcV+Q5zWcZSb//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////qVgB22NtIADn1K6aCN60BCGdWKuR8koLqKushQ0O1qefWLD6YI9mLvFEIAwlbsUEPtgB2hnixJdhrLl7DeVWrX/ffy7dvYf+FSXwWScAz3dDLWr2gR3QFO62SNAAc/tA7q4IUIyjLiWkobBAF2YJQIAZ3vJVPU5VALJ50fJBrHkvdlshqEHQyvaM38OY3NWM6lSc/G9jlhhLa/M5VEbcjk+JEWhpA/s31/////////////////////////////////////////////6ksC8xP+AJryBNaznKTlUkCa1nGEm//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////+5mCltbJGwAOfz26F/8knwZPLCdc+oGUFnyYd/4IfekflR0Rqpms9i/Zm5Sx96DTcJuEJdKW5b3zdPztmtzPW+V69Se/eqfLGzieU/biKcwk7dna+kdrBTuskiQAHPzjjxoyQSIhBjJc6c1CgyxWCQECxfpKkUZ+SxGHuq0TVSeq0mqZsg5CEVT9LVtfjMztzOxS7sZY4aospmtb+3S00LEDzrZSx+9d6/////////////////////////////////////////////+pLAgkv/gCbEhTus5ykxUpCndZxhJ//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////3cwZLrZI2ABz8rsSX7HEpTBjpCZvC0D8uIYFxS3XnJq8WpS3dt++Vd509yKw8YJlM1gZNljlcmd16uffwx5v+zv2+61TtZoybAwLqi2nSaDIXcsBcttkiAAHP/V6NwADQHLlV+aQKbKQrAZqRTmOqaazhh7ojhnWzopp9psYjGiRIxubFN5UtbWX0X7uapvwu/MY/rdeTQVgHqv////////////////////////////////////////////////////////////qQwKgL/4AnEIE5rOMpMUYQJ3WcYSb////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////3NQVbbZIkABz/3A6QzzFqT298Em8hCQiRm12E0ti370Q9LKeGtU1y9PRtpT+pHh/qX9yU3vs9+7qMb5lS5dy7yzhzOrKI7DtL1ru1jMXdq1LQVLbZIkABz89x3aySqQcAzVXSqr7Im3y+cWwr8pICl0le546t2p+FHhEgHABObK5ed292Gc79agnLVPf/eerdLd/G5k/svncBw1reherR//////////////////////////////////////////////////qSwJiF/4AncIM5rGdJMT0QpzWMZSb//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////qWgmWyRtIADn7mIfSQU2ByB7gsyHk4JPrh2jdzC5TTDdobUMk8QTSWpaSYfwioDMIAKWJhzpgTCSFJdSS1spB84pRHmjECzXtHKmKRRGK5SwAyWRtpAAc/C08CE9ahlige1ltm6VU0tQJDDl3HLO41VBWpDTKTUXkz41gblAYLjjMTykpxBJA4t6K6kD7p1JnVmx884SXDHufsi6TX////////////////////////////////////////////////////6ksBiG/+AJ3yFOazjCTE7EGa1nEUm//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////6lQJUsjbRAA5+coXfFH3RAPWZMIePPF8HuwRaw3T8yjLQAABz2jsxw4aJj6cG4wOcFxsZqMGL55lppIa6lIJKZJF0jMtxzGmEmRrNGUrBLtkbaAAHPwrwhlbwCoZsYsNWtLh2y9KGJSnKkl0Ya+QABQW+hzeZIu2duUgLUXYcbbG3jTX6akxJrGv/SbGvXD2We/n1XOV1/////////////////////////////////////////////////////////+pLAasz/gCfcgzWs4mkxLxCmdZxJJv/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////6lYJcsjbSAA59e5G0Ejpighi9PekxJmXE2LQ9W3r99vEgAUZ+oKZqLF1JICDABDKBsgihPKSZJkPVo7tPmQeeyvoQtY1DKVMwU7bG2kABz8KFBovm6AqCOZvws3YJxElZUXTkXLEplUtVucS3BJuTKiikXEjUCuAW5SkF1qsmgy3dV66fc0L7qt1DeAqv//////////////////////////////////////////////////////////////qSwD1q/4AolIU1rOHpORmQJrWcNSb////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////1KwU7bI2kABz98iLhStFwGaPcx+6CLUa+DAHO2+SmrWdqxAGX1YN8Q3QQcC0jI14tPDiT6k3rGf/94+9fMM1pW/f0a0NSsFS2SNhAAc/7tK/FRD0y8Ygt603pRq8IFvZbtVM4MqN7RSNmeeMDqQAMAu4eRsL7nVkibpbupey7KqUimZmv+O/////////////////////////////////////////////////////////////////////6ksBoHv+AKNCBN6zmSTEQj+b1nL0m///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////1LAVZZG2kABz96oZY6aMxwXNHZJwcYkFsGOjVJjrG8qRK6cdlIxdNj5dJoAfgXIbAXj/Lik6mWu9NBaNaSlE6g5NJ+1lmZjwNUjBVlkbaQAHP1dyuVk3TrhaIu2sMqaZmiS3t/Xc/dtdU40ZK2S5oMcWoDfCqH3XmzKqd1rR3n01prMkkD2o04XJ2I41S1f//////////////////////////////////////////////////////////////+pLA++f/gChQgzes4akxIZAmtZxFJv//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////6loJksjbSAA5+Gocpk+BIc8kG6r+2hPaj1APnz7vaBN0iJIHTmqSCjcwG6AtACsIrUtpZ6mepXo63ZEqMox566MdkVLAVJZI2gABz91Iu0Bu5cQTTcKOVSCed2jtO9/Lm52A5ZDlGqbJxCgNJJwekXZzBNVBvrUdqqugbej///////////////////////////////////////////////////////////////////////////////qSwDj3/4ApDIU1rOGpMQqQZrWcSSb//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////1KwVLZG2gABz8K8AOG8AhDOgFiLNdggdaiMxZ2niOFqVTUYisNMykkDpiSoBKA+yHGitiwy5z+7qVOVmmzY1g5OsEySfygHP/UBqUOGIijrgYc8dYkM1DBHbC/a1ulqT9eDeJeysgRRBU1Jic851z0qEAGe+qfd3SNfvx3////////////////////////////////////////////////////////////////////////////6ksAFLP+AKWCDN6zmSTEAECa1nEkm///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////+XGCW4+pQDn4ZyhsdQdHN699VCpUlsUErhB5X/7/j4L8poo902RNx9A0AqjeqquupqaHod0Vnh6MbilmuNpgDRnl/tqAAGvHeM8MeBSMeC0sJDIFdGicwcRa73Dnm8M66OxjMtrSL8FCNR6wAcMOVDDWzJdKqE0Bb////////////////////////////////////////////////////////////////////////////+pLAcOX/gCncYTGM4Wkw74/l8Zw1Jv////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////yaGAkZ4f66QADn63SQXAAjFAFr5JwykKYhyeBceWf+Mqu08NTsZsmYrRTPDYG+aUpxnRQaeUr1Ghc0sNHhu/621i4wVJH1KAa+4CtXSfB6EOzTlh5cYQg99GUtIOq48vSNwrMA9/62Uw8JxIKe4UbEi3yx+kHnsCWngFL+j/////////////////////////////////////////////////////////////////////////////qSwPdX/4ApOE8x6GXnIQSOJf2ctST/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////8whwM3iI+/tAAbuYmAJAQDUpOEynaIPQFdTft4YZbsXO7ldNAw6ZcXCdeY+rixtX3WsRr6kkAdiU1LvG26w2dwI4eH+1EAAbWoqJMBUGlUwlKiTA4oiol5IM31Spvea8D/2qdxLwpsaorSxseYvNsEgKBl8+aoFxzv8jV0/////////////////////////////////////////////////////////////////////////6ksBdof+AKbBNL4flJzD1D+Z9TCEk////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////+SvAAKs7WSNgAa98sigHKUpzwsiFgaUdZHge0ks/6aUh6Ex8vbf7db+GpS+tLw8/XjQPU19OlulHJXgDN2dtbZAANfHcXI1ACs3BOBx8vCkbL7xeetvwm4iJKL/d2O6oOmQwBELAo8b+LNDRZ9PQptj1f///////////////////////////////////////////////////////////////////////////////+pLA2m7/gCpUUS/m5ecg4AklfPyw3P///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////5m4T11skbAA5/6r4wOmYdIcFByosgAHhS0qgtX/3zmMKyhiGsV5a4DQeluetTu1R0bCdQu05TJuCNTOFDdwp77Y4GABr0zAYz8HOEmL5cSwK4K82pCdtb1qsbgiHR38733SYUhy3/6uebyxoXhN7v7dCriX//////////////////////////////////////////////////////////////////////////////////qSwAlL/4Ap5Est5+Um4O+L5TWcLST///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////+HuFNdI2wgANf4iog3QJwfWcJPGwJPla0PJG3+x2aEAcOFvz3wYiwm5BSCA1+8z0/736oO4JWWxtggAa/3ZjYAA+dxbusbjY5KvXQcNf7u97xPkrZSsFr6yaAZ59RuBmnEBzQZZ/9qP//////////////////////////////////////////////////////////////////////////////////////6ksBdCP+AKwRZKaflZyDKiWT0/Kzc///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////DvCdmkbZIAHP78/k3cGBHG85Q0KjCh047xfnnd/3CCWhyt96oYp5kFwEEtLTrss53po2kosbe/6PrAvClmkaZQAHoG4pACNNq1iJeilEQREFYWdn38/4fJJbKC29Y/zZXMrJa98+CnssOIFDqKsduH7JcX///////////////////////////////////////////////////////////////////////////////+pLAOyz/gCooSyWn5Ybg5w8ktZwpJP//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////xLglrbG2AAB1MaEmAUhk4MuazSDhFbjPrOG+COJ3TWM3WVtkoQcSlEXrXaxs0ARoAzdXa2RsADqWZkCBDgQTkQEAyaCZASSI5PanhYVkwIn1Rqx8H9zePMF006Y5jro2xSf6v/////////////////////////////////////////////////////////////////////////////////////qSwLQQ/4ArqFclqOXnILWJZPTcpNz/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////wNg777rI2AB6aBWBDCkETT6xLXDQttl0/l+/4NQijYfPsg4Vg3mzK0TNS7bGpZZTVhB/sYkTcOa62SNgAdi4XTIBMgH9gvRVJapd5Ldy/8daMB8gvmfNCcCCIfeVdBOb2KKEt+QlEKoj3DQt///////////////////////////////////////////////////////////////////////////////////6ksAnu/+AKshZK+hQ5yDTCuV03LTk/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////+HcE7LOpQD/For50BeN6SIqw3i5pRVgi1ex/DmBUjmId3bz1xxtvsPZOimqw/v621fSAtLlln8QA3A4sPBDxRVWTrjxgUCxUpiEh3STNeFNh/oBx9aSwBW9tjen/C9dov//////////////////////////////////////////////////////////////////////////////////////////////+pLA/sz/gCssWSmm4OcgxgmkcPyk5P/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////+BKFK5OpQDyxxgIYmY6LfZGbEqC0oDjloiFgcjSmooaBSKl6Hz1lqTLS1Xvv8jA5QpXH1IAdjzBWAIHjP9KpkqwwDEmnT2NZyI4dfR7qHAMF2w3IxeXDS0X6dqv////////////////////////////////////////////////////////////////////////////////////////////////qSwMAy/4ArnEclguTm4LcJZHCslNz/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////8CUFxRyoAHmxfEsA7nYi1lpniAUebwZFzfzolzBG41K+Dgxe+pit8507Fp7+y5MIQKNRSoAHXjvDAfcO03e2KAH9UsG852Go0NCPobxMErj6VKf3jmJT///////////////////////////////////////////////////////////////////////////////////////////////////////6ksCkiv+AK5BJI4PkpuC5iWPw3Kzc/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////+FFxNIoB5Z2EIGcSjpDjiJBAUC3qRn6sQCdLuMDAbHskRrI/+7TWz8oBiln4OpbMOgDKphzgJYQQCsCGG9m1HzIirFdEr0DzaJWUuxRzbXMdSy5PGc5V///////////////////////////////////////////////////////////////////////////////////////////////+pLALiX/gCxMSx+G4ObgogsjZHoU4P///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////4CYUSSpVAPLqIgBZjVt40mlMvdCGXQjm6QgIXEnKoN87AQfCZJrClujU25F9mmvrQVA3G1KgAeqTwrBHU9w8NExSlb+DO9ZrdUBnCur5QGF2TXujLX6VFttjFNd6v////////////////////////////////////////////////////////////////////////////////////////////////qSwMZ8/4ArZF8ZCkjpAL6JI3B8iNj///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////AkCjUdUAB4qpwFCH5qVkgtYDai6ePv3k6Qn41v6Uj16yOIbJZK4hf/3+kBQtxtsoAHvHQJAix4QwSWBcKBNM473Jlo0ADEbKHBAVMgFavc1H7l///////////////////////////////////////////////////////////////////////////////////////////////////////6ksDJd/+ALBBLH4bkpuCqCyQwWaDk////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////gQ0roH5gHmbKxgSBsKposaafzn//XmKr8TNFF3yOhc16GMWgD5per6UXGmpVADddgXHDEiFh2mfowbiGOm3WUIxZ0LxIWNnERvqWRjXq6f//////////////////////////////////////////////////////////////////////////////////////////////////////////+pDAdjf/gCwkOx+D5GbgoosjIHyM4P/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////wsJZwDyxAbAEnKfDyF1tJ1OHCS6/+/5o8wUOLMnWb0dik/tVW5f1KALCiKO4fUJCY+IqqXQuqUuXMSrufVyFFt7Khoz9CGe+5XxdClf//////////////////////////////////////////////////////////////////////////////////////////////////////////+pLAHPL/gCxwSxsj4KbAngsjIHyc4P////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////4MMs8h6TwgOURhw8LYQ4NS/Dn7/HUoaFXOe3OI+0quMu7f/vv3rwAg0QR64PGftwIXHpFKpRmO/7BRC8NdzPrHmv/9NY3///////////////////////////////////////////////////////////////////////////////////////////////////////////////////qSwGh//4AsnDcbYuRGwJeK4yB8nOD////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////wAgSAB7oJYGAMimIkFpR8fxvTb+7C2ev2b3CW/F1m3DwAkokEfP5KBLX9ZpneouAX97AL/SQ/aQAv///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////6ksDhb/+ALVA1FoDg5MCBCyKQqgjg////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////+AtIqAfxBDpEYjCWFWbP/YIZE9NKM41nN+qpAARQBHJ8CKMji/FeWdOfasB9nZQn//o2fr//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////+pLAWNL/gC4UNRaA5KTAaIsjIBmU4P///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////wTpV0Dx8B3iZIkgJAaTH7cAnji7k0mPt1/qrwCWkQBlveIFrWEsAaHdCp7vnraK1rcy5NVP//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////qSwI2L/4AuADcWgNCmwGsG4yAZiNj/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////gAMEAj+QHMUayGp/2VoR/VKP/6YACEgEAKuOc9R/++gCf6q////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////6ksCLgf+ALuQfFoBhIoBOhuLQGJTY//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////AJYIAG84lCJYcIKd5E7drrAAIAAHAGt/lf////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////+pLAuhD/gC9QNxiASKbAQgOi0AeIUP////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////+wBLH/////cv////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////qSwFVf/4AwYBUUgAUiYAAAJcAAAAT///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP/6ksBYY/+AMWABLgAAACAAACXAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA="},function(e,t,o){"use strict";var n=o(4);function i(e,t,o,i,r){var a=n.writeRtpDescription(e.kind,t);if(a+=n.writeIceParameters(e.iceGatherer.getLocalParameters()),a+=n.writeDtlsParameters(e.dtlsTransport.getLocalParameters(),"offer"===o?"actpass":r||"active"),a+="a=mid:"+e.mid+"\r\n",e.rtpSender&&e.rtpReceiver?a+="a=sendrecv\r\n":e.rtpSender?a+="a=sendonly\r\n":e.rtpReceiver?a+="a=recvonly\r\n":a+="a=inactive\r\n",e.rtpSender){var l=e.rtpSender._initialTrackId||e.rtpSender.track.id;e.rtpSender._initialTrackId=l;var s="msid:"+(i?i.id:"-")+" "+l+"\r\n";a+="a="+s,a+="a=ssrc:"+e.sendEncodingParameters[0].ssrc+" "+s,e.sendEncodingParameters[0].rtx&&(a+="a=ssrc:"+e.sendEncodingParameters[0].rtx.ssrc+" "+s,a+="a=ssrc-group:FID "+e.sendEncodingParameters[0].ssrc+" "+e.sendEncodingParameters[0].rtx.ssrc+"\r\n")}return a+="a=ssrc:"+e.sendEncodingParameters[0].ssrc+" cname:"+n.localCName+"\r\n",e.rtpSender&&e.sendEncodingParameters[0].rtx&&(a+="a=ssrc:"+e.sendEncodingParameters[0].rtx.ssrc+" cname:"+n.localCName+"\r\n"),a}function r(e,t){var o={codecs:[],headerExtensions:[],fecMechanisms:[]},n=function(e,t){e=parseInt(e,10);for(var o=0;o<t.length;o++)if(t[o].payloadType===e||t[o].preferredPayloadType===e)return t[o]},i=function(e,t,o,i){var r=n(e.parameters.apt,o),a=n(t.parameters.apt,i);return r&&a&&r.name.toLowerCase()===a.name.toLowerCase()};return e.codecs.forEach((function(n){for(var r=0;r<t.codecs.length;r++){var a=t.codecs[r];if(n.name.toLowerCase()===a.name.toLowerCase()&&n.clockRate===a.clockRate){if("rtx"===n.name.toLowerCase()&&n.parameters&&a.parameters.apt&&!i(n,a,e.codecs,t.codecs))continue;(a=JSON.parse(JSON.stringify(a))).numChannels=Math.min(n.numChannels,a.numChannels),o.codecs.push(a),a.rtcpFeedback=a.rtcpFeedback.filter((function(e){for(var t=0;t<n.rtcpFeedback.length;t++)if(n.rtcpFeedback[t].type===e.type&&n.rtcpFeedback[t].parameter===e.parameter)return!0;return!1}));break}}})),e.headerExtensions.forEach((function(e){for(var n=0;n<t.headerExtensions.length;n++){var i=t.headerExtensions[n];if(e.uri===i.uri){o.headerExtensions.push(i);break}}})),o}function a(e,t,o){return-1!=={offer:{setLocalDescription:["stable","have-local-offer"],setRemoteDescription:["stable","have-remote-offer"]},answer:{setLocalDescription:["have-remote-offer","have-local-pranswer"],setRemoteDescription:["have-local-offer","have-remote-pranswer"]}}[t][e].indexOf(o)}function l(e,t){var o=e.getRemoteCandidates().find((function(e){return t.foundation===e.foundation&&t.ip===e.ip&&t.port===e.port&&t.priority===e.priority&&t.protocol===e.protocol&&t.type===e.type}));return o||e.addRemoteCandidate(t),!o}function s(e,t){var o=new Error(t);return o.name=e,o.code={NotSupportedError:9,InvalidStateError:11,InvalidAccessError:15,TypeError:void 0,OperationError:void 0}[e],o}e.exports=function(e,t){function o(t,o){o.addTrack(t),o.dispatchEvent(new e.MediaStreamTrackEvent("addtrack",{track:t}))}function d(t,o,n,i){var r=new Event("track");r.track=o,r.receiver=n,r.transceiver={receiver:n},r.streams=i,e.setTimeout((function(){t._dispatchEvent("track",r)}))}var m=function(o){var i=this,r=document.createDocumentFragment();if(["addEventListener","removeEventListener","dispatchEvent"].forEach((function(e){i[e]=r[e].bind(r)})),this.canTrickleIceCandidates=null,this.needNegotiation=!1,this.localStreams=[],this.remoteStreams=[],this._localDescription=null,this._remoteDescription=null,this.signalingState="stable",this.iceConnectionState="new",this.connectionState="new",this.iceGatheringState="new",o=JSON.parse(JSON.stringify(o||{})),this.usingBundle="max-bundle"===o.bundlePolicy,"negotiate"===o.rtcpMuxPolicy)throw s("NotSupportedError","rtcpMuxPolicy 'negotiate' is not supported");switch(o.rtcpMuxPolicy||(o.rtcpMuxPolicy="require"),o.iceTransportPolicy){case"all":case"relay":break;default:o.iceTransportPolicy="all"}switch(o.bundlePolicy){case"balanced":case"max-compat":case"max-bundle":break;default:o.bundlePolicy="balanced"}if(o.iceServers=function(e,t){var o=!1;return(e=JSON.parse(JSON.stringify(e))).filter((function(e){if(e&&(e.urls||e.url)){var n=e.urls||e.url;e.url&&!e.urls&&console.warn("RTCIceServer.url is deprecated! Use urls instead.");var i="string"==typeof n;return i&&(n=[n]),n=n.filter((function(e){return 0===e.indexOf("turn:")&&-1!==e.indexOf("transport=udp")&&-1===e.indexOf("turn:[")&&!o?(o=!0,!0):0===e.indexOf("stun:")&&t>=14393&&-1===e.indexOf("?transport=udp")})),delete e.url,e.urls=i?n[0]:n,!!n.length}}))}(o.iceServers||[],t),this._iceGatherers=[],o.iceCandidatePoolSize)for(var a=o.iceCandidatePoolSize;a>0;a--)this._iceGatherers.push(new e.RTCIceGatherer({iceServers:o.iceServers,gatherPolicy:o.iceTransportPolicy}));else o.iceCandidatePoolSize=0;this._config=o,this.transceivers=[],this._sdpSessionId=n.generateSessionId(),this._sdpSessionVersion=0,this._dtlsRole=void 0,this._isClosed=!1};Object.defineProperty(m.prototype,"localDescription",{configurable:!0,get:function(){return this._localDescription}}),Object.defineProperty(m.prototype,"remoteDescription",{configurable:!0,get:function(){return this._remoteDescription}}),m.prototype.onicecandidate=null,m.prototype.onaddstream=null,m.prototype.ontrack=null,m.prototype.onremovestream=null,m.prototype.onsignalingstatechange=null,m.prototype.oniceconnectionstatechange=null,m.prototype.onconnectionstatechange=null,m.prototype.onicegatheringstatechange=null,m.prototype.onnegotiationneeded=null,m.prototype.ondatachannel=null,m.prototype._dispatchEvent=function(e,t){this._isClosed||(this.dispatchEvent(t),"function"==typeof this["on"+e]&&this["on"+e](t))},m.prototype._emitGatheringStateChange=function(){var e=new Event("icegatheringstatechange");this._dispatchEvent("icegatheringstatechange",e)},m.prototype.getConfiguration=function(){return this._config},m.prototype.getLocalStreams=function(){return this.localStreams},m.prototype.getRemoteStreams=function(){return this.remoteStreams},m.prototype._createTransceiver=function(e,t){var o=this.transceivers.length>0,n={track:null,iceGatherer:null,iceTransport:null,dtlsTransport:null,localCapabilities:null,remoteCapabilities:null,rtpSender:null,rtpReceiver:null,kind:e,mid:null,sendEncodingParameters:null,recvEncodingParameters:null,stream:null,associatedRemoteMediaStreams:[],wantReceive:!0};if(this.usingBundle&&o)n.iceTransport=this.transceivers[0].iceTransport,n.dtlsTransport=this.transceivers[0].dtlsTransport;else{var i=this._createIceAndDtlsTransports();n.iceTransport=i.iceTransport,n.dtlsTransport=i.dtlsTransport}return t||this.transceivers.push(n),n},m.prototype.addTrack=function(t,o){if(this._isClosed)throw s("InvalidStateError","Attempted to call addTrack on a closed peerconnection.");var n;if(this.transceivers.find((function(e){return e.track===t})))throw s("InvalidAccessError","Track already exists.");for(var i=0;i<this.transceivers.length;i++)this.transceivers[i].track||this.transceivers[i].kind!==t.kind||(n=this.transceivers[i]);return n||(n=this._createTransceiver(t.kind)),this._maybeFireNegotiationNeeded(),-1===this.localStreams.indexOf(o)&&this.localStreams.push(o),n.track=t,n.stream=o,n.rtpSender=new e.RTCRtpSender(t,n.dtlsTransport),n.rtpSender},m.prototype.addStream=function(e){var o=this;if(t>=15025)e.getTracks().forEach((function(t){o.addTrack(t,e)}));else{var n=e.clone();e.getTracks().forEach((function(e,t){var o=n.getTracks()[t];e.addEventListener("enabled",(function(e){o.enabled=e.enabled}))})),n.getTracks().forEach((function(e){o.addTrack(e,n)}))}},m.prototype.removeTrack=function(t){if(this._isClosed)throw s("InvalidStateError","Attempted to call removeTrack on a closed peerconnection.");if(!(t instanceof e.RTCRtpSender))throw new TypeError("Argument 1 of RTCPeerConnection.removeTrack does not implement interface RTCRtpSender.");var o=this.transceivers.find((function(e){return e.rtpSender===t}));if(!o)throw s("InvalidAccessError","Sender was not created by this connection.");var n=o.stream;o.rtpSender.stop(),o.rtpSender=null,o.track=null,o.stream=null,-1===this.transceivers.map((function(e){return e.stream})).indexOf(n)&&this.localStreams.indexOf(n)>-1&&this.localStreams.splice(this.localStreams.indexOf(n),1),this._maybeFireNegotiationNeeded()},m.prototype.removeStream=function(e){var t=this;e.getTracks().forEach((function(e){var o=t.getSenders().find((function(t){return t.track===e}));o&&t.removeTrack(o)}))},m.prototype.getSenders=function(){return this.transceivers.filter((function(e){return!!e.rtpSender})).map((function(e){return e.rtpSender}))},m.prototype.getReceivers=function(){return this.transceivers.filter((function(e){return!!e.rtpReceiver})).map((function(e){return e.rtpReceiver}))},m.prototype._createIceGatherer=function(t,o){var n=this;if(o&&t>0)return this.transceivers[0].iceGatherer;if(this._iceGatherers.length)return this._iceGatherers.shift();var i=new e.RTCIceGatherer({iceServers:this._config.iceServers,gatherPolicy:this._config.iceTransportPolicy});return Object.defineProperty(i,"state",{value:"new",writable:!0}),this.transceivers[t].bufferedCandidateEvents=[],this.transceivers[t].bufferCandidates=function(e){var o=!e.candidate||0===Object.keys(e.candidate).length;i.state=o?"completed":"gathering",null!==n.transceivers[t].bufferedCandidateEvents&&n.transceivers[t].bufferedCandidateEvents.push(e)},i.addEventListener("localcandidate",this.transceivers[t].bufferCandidates),i},m.prototype._gather=function(t,o){var i=this,r=this.transceivers[o].iceGatherer;if(!r.onlocalcandidate){var a=this.transceivers[o].bufferedCandidateEvents;this.transceivers[o].bufferedCandidateEvents=null,r.removeEventListener("localcandidate",this.transceivers[o].bufferCandidates),r.onlocalcandidate=function(e){if(!(i.usingBundle&&o>0)){var a=new Event("icecandidate");a.candidate={sdpMid:t,sdpMLineIndex:o};var l=e.candidate,s=!l||0===Object.keys(l).length;if(s)"new"!==r.state&&"gathering"!==r.state||(r.state="completed");else{"new"===r.state&&(r.state="gathering"),l.component=1,l.ufrag=r.getLocalParameters().usernameFragment;var d=n.writeCandidate(l);a.candidate=Object.assign(a.candidate,n.parseCandidate(d)),a.candidate.candidate=d,a.candidate.toJSON=function(){return{candidate:a.candidate.candidate,sdpMid:a.candidate.sdpMid,sdpMLineIndex:a.candidate.sdpMLineIndex,usernameFragment:a.candidate.usernameFragment}}}var m=n.getMediaSections(i._localDescription.sdp);m[a.candidate.sdpMLineIndex]+=s?"a=end-of-candidates\r\n":"a="+a.candidate.candidate+"\r\n",i._localDescription.sdp=n.getDescription(i._localDescription.sdp)+m.join("");var f=i.transceivers.every((function(e){return e.iceGatherer&&"completed"===e.iceGatherer.state}));"gathering"!==i.iceGatheringState&&(i.iceGatheringState="gathering",i._emitGatheringStateChange()),s||i._dispatchEvent("icecandidate",a),f&&(i._dispatchEvent("icecandidate",new Event("icecandidate")),i.iceGatheringState="complete",i._emitGatheringStateChange())}},e.setTimeout((function(){a.forEach((function(e){r.onlocalcandidate(e)}))}),0)}},m.prototype._createIceAndDtlsTransports=function(){var t=this,o=new e.RTCIceTransport(null);o.onicestatechange=function(){t._updateIceConnectionState(),t._updateConnectionState()};var n=new e.RTCDtlsTransport(o);return n.ondtlsstatechange=function(){t._updateConnectionState()},n.onerror=function(){Object.defineProperty(n,"state",{value:"failed",writable:!0}),t._updateConnectionState()},{iceTransport:o,dtlsTransport:n}},m.prototype._disposeIceAndDtlsTransports=function(e){var t=this.transceivers[e].iceGatherer;t&&(delete t.onlocalcandidate,delete this.transceivers[e].iceGatherer);var o=this.transceivers[e].iceTransport;o&&(delete o.onicestatechange,delete this.transceivers[e].iceTransport);var n=this.transceivers[e].dtlsTransport;n&&(delete n.ondtlsstatechange,delete n.onerror,delete this.transceivers[e].dtlsTransport)},m.prototype._transceive=function(e,o,i){var a=r(e.localCapabilities,e.remoteCapabilities);o&&e.rtpSender&&(a.encodings=e.sendEncodingParameters,a.rtcp={cname:n.localCName,compound:e.rtcpParameters.compound},e.recvEncodingParameters.length&&(a.rtcp.ssrc=e.recvEncodingParameters[0].ssrc),e.rtpSender.send(a)),i&&e.rtpReceiver&&a.codecs.length>0&&("video"===e.kind&&e.recvEncodingParameters&&t<15019&&e.recvEncodingParameters.forEach((function(e){delete e.rtx})),e.recvEncodingParameters.length?a.encodings=e.recvEncodingParameters:a.encodings=[{}],a.rtcp={compound:e.rtcpParameters.compound},e.rtcpParameters.cname&&(a.rtcp.cname=e.rtcpParameters.cname),e.sendEncodingParameters.length&&(a.rtcp.ssrc=e.sendEncodingParameters[0].ssrc),e.rtpReceiver.receive(a))},m.prototype.setLocalDescription=function(e){var t,o,i=this;if(-1===["offer","answer"].indexOf(e.type))return Promise.reject(s("TypeError",'Unsupported type "'+e.type+'"'));if(!a("setLocalDescription",e.type,i.signalingState)||i._isClosed)return Promise.reject(s("InvalidStateError","Can not set local "+e.type+" in state "+i.signalingState));if("offer"===e.type)t=n.splitSections(e.sdp),o=t.shift(),t.forEach((function(e,t){var o=n.parseRtpParameters(e);i.transceivers[t].localCapabilities=o})),i.transceivers.forEach((function(e,t){i._gather(e.mid,t)}));else if("answer"===e.type){t=n.splitSections(i._remoteDescription.sdp),o=t.shift();var l=n.matchPrefix(o,"a=ice-lite").length>0;t.forEach((function(e,t){var a=i.transceivers[t],s=a.iceGatherer,d=a.iceTransport,m=a.dtlsTransport,f=a.localCapabilities,_=a.remoteCapabilities;if(!(n.isRejected(e)&&0===n.matchPrefix(e,"a=bundle-only").length)&&!a.rejected){var c=n.getIceParameters(e,o),g=n.getDtlsParameters(e,o);l&&(g.role="server"),i.usingBundle&&0!==t||(i._gather(a.mid,t),"new"===d.state&&d.start(s,c,l?"controlling":"controlled"),"new"===m.state&&m.start(g));var p=r(f,_);i._transceive(a,p.codecs.length>0,!1)}}))}return i._localDescription={type:e.type,sdp:e.sdp},"offer"===e.type?i._updateSignalingState("have-local-offer"):i._updateSignalingState("stable"),Promise.resolve()},m.prototype.setRemoteDescription=function(i){var m=this;if(-1===["offer","answer"].indexOf(i.type))return Promise.reject(s("TypeError",'Unsupported type "'+i.type+'"'));if(!a("setRemoteDescription",i.type,m.signalingState)||m._isClosed)return Promise.reject(s("InvalidStateError","Can not set remote "+i.type+" in state "+m.signalingState));var f={};m.remoteStreams.forEach((function(e){f[e.id]=e}));var _=[],c=n.splitSections(i.sdp),g=c.shift(),p=n.matchPrefix(g,"a=ice-lite").length>0,u=n.matchPrefix(g,"a=group:BUNDLE ").length>0;m.usingBundle=u;var h=n.matchPrefix(g,"a=ice-options:")[0];return m.canTrickleIceCandidates=!!h&&h.substr(14).split(" ").indexOf("trickle")>=0,c.forEach((function(a,s){var d=n.splitLines(a),c=n.getKind(a),h=n.isRejected(a)&&0===n.matchPrefix(a,"a=bundle-only").length,b=d[0].substr(2).split(" ")[2],x=n.getDirection(a,g),y=n.parseMsid(a),w=n.getMid(a)||n.generateIdentifier();if(h||"application"===c&&("DTLS/SCTP"===b||"UDP/DTLS/SCTP"===b))m.transceivers[s]={mid:w,kind:c,protocol:b,rejected:!0};else{var v,F,k,j,C,D,E,A,S;!h&&m.transceivers[s]&&m.transceivers[s].rejected&&(m.transceivers[s]=m._createTransceiver(c,!0));var T,M,q=n.parseRtpParameters(a);h||(T=n.getIceParameters(a,g),(M=n.getDtlsParameters(a,g)).role="client"),E=n.parseRtpEncodingParameters(a);var z=n.parseRtcpParameters(a),B=n.matchPrefix(a,"a=end-of-candidates",g).length>0,N=n.matchPrefix(a,"a=candidate:").map((function(e){return n.parseCandidate(e)})).filter((function(e){return 1===e.component}));if(("offer"===i.type||"answer"===i.type)&&!h&&u&&s>0&&m.transceivers[s]&&(m._disposeIceAndDtlsTransports(s),m.transceivers[s].iceGatherer=m.transceivers[0].iceGatherer,m.transceivers[s].iceTransport=m.transceivers[0].iceTransport,m.transceivers[s].dtlsTransport=m.transceivers[0].dtlsTransport,m.transceivers[s].rtpSender&&m.transceivers[s].rtpSender.setTransport(m.transceivers[0].dtlsTransport),m.transceivers[s].rtpReceiver&&m.transceivers[s].rtpReceiver.setTransport(m.transceivers[0].dtlsTransport)),"offer"!==i.type||h){if("answer"===i.type&&!h){F=(v=m.transceivers[s]).iceGatherer,k=v.iceTransport,j=v.dtlsTransport,C=v.rtpReceiver,D=v.sendEncodingParameters,A=v.localCapabilities,m.transceivers[s].recvEncodingParameters=E,m.transceivers[s].remoteCapabilities=q,m.transceivers[s].rtcpParameters=z,N.length&&"new"===k.state&&(!p&&!B||u&&0!==s?N.forEach((function(e){l(v.iceTransport,e)})):k.setRemoteCandidates(N)),u&&0!==s||("new"===k.state&&k.start(F,T,"controlling"),"new"===j.state&&j.start(M)),!r(v.localCapabilities,v.remoteCapabilities).codecs.filter((function(e){return"rtx"===e.name.toLowerCase()})).length&&v.sendEncodingParameters[0].rtx&&delete v.sendEncodingParameters[0].rtx,m._transceive(v,"sendrecv"===x||"recvonly"===x,"sendrecv"===x||"sendonly"===x),!C||"sendrecv"!==x&&"sendonly"!==x?delete v.rtpReceiver:(S=C.track,y?(f[y.stream]||(f[y.stream]=new e.MediaStream),o(S,f[y.stream]),_.push([S,C,f[y.stream]])):(f.default||(f.default=new e.MediaStream),o(S,f.default),_.push([S,C,f.default])))}}else{(v=m.transceivers[s]||m._createTransceiver(c)).mid=w,v.iceGatherer||(v.iceGatherer=m._createIceGatherer(s,u)),N.length&&"new"===v.iceTransport.state&&(!B||u&&0!==s?N.forEach((function(e){l(v.iceTransport,e)})):v.iceTransport.setRemoteCandidates(N)),A=e.RTCRtpReceiver.getCapabilities(c),t<15019&&(A.codecs=A.codecs.filter((function(e){return"rtx"!==e.name}))),D=v.sendEncodingParameters||[{ssrc:1001*(2*s+2)}];var O,P=!1;if("sendrecv"===x||"sendonly"===x){if(P=!v.rtpReceiver,C=v.rtpReceiver||new e.RTCRtpReceiver(v.dtlsTransport,c),P)S=C.track,y&&"-"===y.stream||(y?(f[y.stream]||(f[y.stream]=new e.MediaStream,Object.defineProperty(f[y.stream],"id",{get:function(){return y.stream}})),Object.defineProperty(S,"id",{get:function(){return y.track}}),O=f[y.stream]):(f.default||(f.default=new e.MediaStream),O=f.default)),O&&(o(S,O),v.associatedRemoteMediaStreams.push(O)),_.push([S,C,O])}else v.rtpReceiver&&v.rtpReceiver.track&&(v.associatedRemoteMediaStreams.forEach((function(t){var o=t.getTracks().find((function(e){return e.id===v.rtpReceiver.track.id}));o&&function(t,o){o.removeTrack(t),o.dispatchEvent(new e.MediaStreamTrackEvent("removetrack",{track:t}))}(o,t)})),v.associatedRemoteMediaStreams=[]);v.localCapabilities=A,v.remoteCapabilities=q,v.rtpReceiver=C,v.rtcpParameters=z,v.sendEncodingParameters=D,v.recvEncodingParameters=E,m._transceive(m.transceivers[s],!1,P)}}})),void 0===m._dtlsRole&&(m._dtlsRole="offer"===i.type?"active":"passive"),m._remoteDescription={type:i.type,sdp:i.sdp},"offer"===i.type?m._updateSignalingState("have-remote-offer"):m._updateSignalingState("stable"),Object.keys(f).forEach((function(t){var o=f[t];if(o.getTracks().length){if(-1===m.remoteStreams.indexOf(o)){m.remoteStreams.push(o);var n=new Event("addstream");n.stream=o,e.setTimeout((function(){m._dispatchEvent("addstream",n)}))}_.forEach((function(e){var t=e[0],n=e[1];o.id===e[2].id&&d(m,t,n,[o])}))}})),_.forEach((function(e){e[2]||d(m,e[0],e[1],[])})),e.setTimeout((function(){m&&m.transceivers&&m.transceivers.forEach((function(e){e.iceTransport&&"new"===e.iceTransport.state&&e.iceTransport.getRemoteCandidates().length>0&&(console.warn("Timeout for addRemoteCandidate. Consider sending an end-of-candidates notification"),e.iceTransport.addRemoteCandidate({}))}))}),4e3),Promise.resolve()},m.prototype.close=function(){this.transceivers.forEach((function(e){e.iceTransport&&e.iceTransport.stop(),e.dtlsTransport&&e.dtlsTransport.stop(),e.rtpSender&&e.rtpSender.stop(),e.rtpReceiver&&e.rtpReceiver.stop()})),this._isClosed=!0,this._updateSignalingState("closed")},m.prototype._updateSignalingState=function(e){this.signalingState=e;var t=new Event("signalingstatechange");this._dispatchEvent("signalingstatechange",t)},m.prototype._maybeFireNegotiationNeeded=function(){var t=this;"stable"===this.signalingState&&!0!==this.needNegotiation&&(this.needNegotiation=!0,e.setTimeout((function(){if(t.needNegotiation){t.needNegotiation=!1;var e=new Event("negotiationneeded");t._dispatchEvent("negotiationneeded",e)}}),0))},m.prototype._updateIceConnectionState=function(){var e,t={new:0,closed:0,checking:0,connected:0,completed:0,disconnected:0,failed:0};if(this.transceivers.forEach((function(e){e.iceTransport&&!e.rejected&&t[e.iceTransport.state]++})),e="new",t.failed>0?e="failed":t.checking>0?e="checking":t.disconnected>0?e="disconnected":t.new>0?e="new":t.connected>0?e="connected":t.completed>0&&(e="completed"),e!==this.iceConnectionState){this.iceConnectionState=e;var o=new Event("iceconnectionstatechange");this._dispatchEvent("iceconnectionstatechange",o)}},m.prototype._updateConnectionState=function(){var e,t={new:0,closed:0,connecting:0,connected:0,completed:0,disconnected:0,failed:0};if(this.transceivers.forEach((function(e){e.iceTransport&&e.dtlsTransport&&!e.rejected&&(t[e.iceTransport.state]++,t[e.dtlsTransport.state]++)})),t.connected+=t.completed,e="new",t.failed>0?e="failed":t.connecting>0?e="connecting":t.disconnected>0?e="disconnected":t.new>0?e="new":t.connected>0&&(e="connected"),e!==this.connectionState){this.connectionState=e;var o=new Event("connectionstatechange");this._dispatchEvent("connectionstatechange",o)}},m.prototype.createOffer=function(){var o=this;if(o._isClosed)return Promise.reject(s("InvalidStateError","Can not call createOffer after close"));var r=o.transceivers.filter((function(e){return"audio"===e.kind})).length,a=o.transceivers.filter((function(e){return"video"===e.kind})).length,l=arguments[0];if(l){if(l.mandatory||l.optional)throw new TypeError("Legacy mandatory/optional constraints not supported.");void 0!==l.offerToReceiveAudio&&(r=!0===l.offerToReceiveAudio?1:!1===l.offerToReceiveAudio?0:l.offerToReceiveAudio),void 0!==l.offerToReceiveVideo&&(a=!0===l.offerToReceiveVideo?1:!1===l.offerToReceiveVideo?0:l.offerToReceiveVideo)}for(o.transceivers.forEach((function(e){"audio"===e.kind?--r<0&&(e.wantReceive=!1):"video"===e.kind&&--a<0&&(e.wantReceive=!1)}));r>0||a>0;)r>0&&(o._createTransceiver("audio"),r--),a>0&&(o._createTransceiver("video"),a--);var d=n.writeSessionBoilerplate(o._sdpSessionId,o._sdpSessionVersion++);o.transceivers.forEach((function(i,r){var a=i.track,l=i.kind,s=i.mid||n.generateIdentifier();i.mid=s,i.iceGatherer||(i.iceGatherer=o._createIceGatherer(r,o.usingBundle));var d=e.RTCRtpSender.getCapabilities(l);t<15019&&(d.codecs=d.codecs.filter((function(e){return"rtx"!==e.name}))),d.codecs.forEach((function(e){"H264"===e.name&&void 0===e.parameters["level-asymmetry-allowed"]&&(e.parameters["level-asymmetry-allowed"]="1"),i.remoteCapabilities&&i.remoteCapabilities.codecs&&i.remoteCapabilities.codecs.forEach((function(t){e.name.toLowerCase()===t.name.toLowerCase()&&e.clockRate===t.clockRate&&(e.preferredPayloadType=t.payloadType)}))})),d.headerExtensions.forEach((function(e){(i.remoteCapabilities&&i.remoteCapabilities.headerExtensions||[]).forEach((function(t){e.uri===t.uri&&(e.id=t.id)}))}));var m=i.sendEncodingParameters||[{ssrc:1001*(2*r+1)}];a&&t>=15019&&"video"===l&&!m[0].rtx&&(m[0].rtx={ssrc:m[0].ssrc+1}),i.wantReceive&&(i.rtpReceiver=new e.RTCRtpReceiver(i.dtlsTransport,l)),i.localCapabilities=d,i.sendEncodingParameters=m})),"max-compat"!==o._config.bundlePolicy&&(d+="a=group:BUNDLE "+o.transceivers.map((function(e){return e.mid})).join(" ")+"\r\n"),d+="a=ice-options:trickle\r\n",o.transceivers.forEach((function(e,t){d+=i(e,e.localCapabilities,"offer",e.stream,o._dtlsRole),d+="a=rtcp-rsize\r\n",!e.iceGatherer||"new"===o.iceGatheringState||0!==t&&o.usingBundle||(e.iceGatherer.getLocalCandidates().forEach((function(e){e.component=1,d+="a="+n.writeCandidate(e)+"\r\n"})),"completed"===e.iceGatherer.state&&(d+="a=end-of-candidates\r\n"))}));var m=new e.RTCSessionDescription({type:"offer",sdp:d});return Promise.resolve(m)},m.prototype.createAnswer=function(){var o=this;if(o._isClosed)return Promise.reject(s("InvalidStateError","Can not call createAnswer after close"));if("have-remote-offer"!==o.signalingState&&"have-local-pranswer"!==o.signalingState)return Promise.reject(s("InvalidStateError","Can not call createAnswer in signalingState "+o.signalingState));var a=n.writeSessionBoilerplate(o._sdpSessionId,o._sdpSessionVersion++);o.usingBundle&&(a+="a=group:BUNDLE "+o.transceivers.map((function(e){return e.mid})).join(" ")+"\r\n"),a+="a=ice-options:trickle\r\n";var l=n.getMediaSections(o._remoteDescription.sdp).length;o.transceivers.forEach((function(e,n){if(!(n+1>l)){if(e.rejected)return"application"===e.kind?"DTLS/SCTP"===e.protocol?a+="m=application 0 DTLS/SCTP 5000\r\n":a+="m=application 0 "+e.protocol+" webrtc-datachannel\r\n":"audio"===e.kind?a+="m=audio 0 UDP/TLS/RTP/SAVPF 0\r\na=rtpmap:0 PCMU/8000\r\n":"video"===e.kind&&(a+="m=video 0 UDP/TLS/RTP/SAVPF 120\r\na=rtpmap:120 VP8/90000\r\n"),void(a+="c=IN IP4 0.0.0.0\r\na=inactive\r\na=mid:"+e.mid+"\r\n");var s;if(e.stream)"audio"===e.kind?s=e.stream.getAudioTracks()[0]:"video"===e.kind&&(s=e.stream.getVideoTracks()[0]),s&&t>=15019&&"video"===e.kind&&!e.sendEncodingParameters[0].rtx&&(e.sendEncodingParameters[0].rtx={ssrc:e.sendEncodingParameters[0].ssrc+1});var d=r(e.localCapabilities,e.remoteCapabilities);!d.codecs.filter((function(e){return"rtx"===e.name.toLowerCase()})).length&&e.sendEncodingParameters[0].rtx&&delete e.sendEncodingParameters[0].rtx,a+=i(e,d,"answer",e.stream,o._dtlsRole),e.rtcpParameters&&e.rtcpParameters.reducedSize&&(a+="a=rtcp-rsize\r\n")}}));var d=new e.RTCSessionDescription({type:"answer",sdp:a});return Promise.resolve(d)},m.prototype.addIceCandidate=function(e){var t,o=this;return e&&void 0===e.sdpMLineIndex&&!e.sdpMid?Promise.reject(new TypeError("sdpMLineIndex or sdpMid required")):new Promise((function(i,r){if(!o._remoteDescription)return r(s("InvalidStateError","Can not add ICE candidate without a remote description"));if(e&&""!==e.candidate){var a=e.sdpMLineIndex;if(e.sdpMid)for(var d=0;d<o.transceivers.length;d++)if(o.transceivers[d].mid===e.sdpMid){a=d;break}var m=o.transceivers[a];if(!m)return r(s("OperationError","Can not add ICE candidate"));if(m.rejected)return i();var f=Object.keys(e.candidate).length>0?n.parseCandidate(e.candidate):{};if("tcp"===f.protocol&&(0===f.port||9===f.port))return i();if(f.component&&1!==f.component)return i();if((0===a||a>0&&m.iceTransport!==o.transceivers[0].iceTransport)&&!l(m.iceTransport,f))return r(s("OperationError","Can not add ICE candidate"));var _=e.candidate.trim();0===_.indexOf("a=")&&(_=_.substr(2)),(t=n.getMediaSections(o._remoteDescription.sdp))[a]+="a="+(f.type?_:"end-of-candidates")+"\r\n",o._remoteDescription.sdp=n.getDescription(o._remoteDescription.sdp)+t.join("")}else for(var c=0;c<o.transceivers.length&&(o.transceivers[c].rejected||(o.transceivers[c].iceTransport.addRemoteCandidate({}),(t=n.getMediaSections(o._remoteDescription.sdp))[c]+="a=end-of-candidates\r\n",o._remoteDescription.sdp=n.getDescription(o._remoteDescription.sdp)+t.join(""),!o.usingBundle));c++);i()}))},m.prototype.getStats=function(t){if(t&&t instanceof e.MediaStreamTrack){var o=null;if(this.transceivers.forEach((function(e){e.rtpSender&&e.rtpSender.track===t?o=e.rtpSender:e.rtpReceiver&&e.rtpReceiver.track===t&&(o=e.rtpReceiver)})),!o)throw s("InvalidAccessError","Invalid selector.");return o.getStats()}var n=[];return this.transceivers.forEach((function(e){["rtpSender","rtpReceiver","iceGatherer","iceTransport","dtlsTransport"].forEach((function(t){e[t]&&n.push(e[t].getStats())}))})),Promise.all(n).then((function(e){var t=new Map;return e.forEach((function(e){e.forEach((function(e){t.set(e.id,e)}))})),t}))};["RTCRtpSender","RTCRtpReceiver","RTCIceGatherer","RTCIceTransport","RTCDtlsTransport"].forEach((function(t){var o=e[t];if(o&&o.prototype&&o.prototype.getStats){var n=o.prototype.getStats;o.prototype.getStats=function(){return n.apply(this).then((function(e){var t=new Map;return Object.keys(e).forEach((function(o){var n;e[o].type={inboundrtp:"inbound-rtp",outboundrtp:"outbound-rtp",candidatepair:"candidate-pair",localcandidate:"local-candidate",remotecandidate:"remote-candidate"}[(n=e[o]).type]||n.type,t.set(o,e[o])})),t}))}}}));var f=["createOffer","createAnswer"];return f.forEach((function(e){var t=m.prototype[e];m.prototype[e]=function(){var e=arguments;return"function"==typeof e[0]||"function"==typeof e[1]?t.apply(this,[arguments[2]]).then((function(t){"function"==typeof e[0]&&e[0].apply(null,[t])}),(function(t){"function"==typeof e[1]&&e[1].apply(null,[t])})):t.apply(this,arguments)}})),(f=["setLocalDescription","setRemoteDescription","addIceCandidate"]).forEach((function(e){var t=m.prototype[e];m.prototype[e]=function(){var e=arguments;return"function"==typeof e[1]||"function"==typeof e[2]?t.apply(this,arguments).then((function(){"function"==typeof e[1]&&e[1].apply(null)}),(function(t){"function"==typeof e[2]&&e[2].apply(null,[t])})):t.apply(this,arguments)}})),["getStats"].forEach((function(e){var t=m.prototype[e];m.prototype[e]=function(){var e=arguments;return"function"==typeof e[1]?t.apply(this,arguments).then((function(){"function"==typeof e[1]&&e[1].apply(null)})):t.apply(this,arguments)}})),m}},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var n,i=o(77),r=(n=i)&&n.__esModule?n:{default:n};function a(){return"undefined"==typeof window?null:window.navigator.languages&&window.navigator.languages[0]||window.navigator.language||window.navigator.browserLanguage||window.navigator.userLanguage||window.navigator.systemLanguage||null}function l(e){return e.toLowerCase().replace(/-/,"_")}t.default=function(e){if(!e)return a();var t=e.languages,o=e.fallback;if(!e.languages)return o;var n=l(a());if(!n)return o;var i=t.filter((function(e){return l(e)===n}));return i.length>0?i[0]||o:t.filter((function(e){return(0,r.default)(n,e)}))[0]||o}},function(e,t){e.exports="data:image/png;base64,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"},function(e,t,o){e.exports=function(){"use strict";function e(e){return e&&e.__esModule&&Object.prototype.hasOwnProperty.call(e,"default")?e.default:e}function t(e,t){return e(t={exports:{}},t.exports),t.exports}var o=t((function(e,t){Object.defineProperty(t,"__esModule",{value:!0}),t.defaultOptions=function(e){return e||(e={attributes:[],ips:!0,emails:!0,urls:!0,files:!0,truncate:1/0,defaultProtocol:"http://",list:!1,customTlds:[],displayText:""}),"object"!=typeof e.attributes&&(e.attributes=[]),"boolean"!=typeof e.ips&&(e.ips=!0),"boolean"!=typeof e.emails&&(e.emails=!0),"boolean"!=typeof e.urls&&(e.urls=!0),"boolean"!=typeof e.files&&(e.files=!0),"boolean"!=typeof e.list&&(e.list=!1),"string"!=typeof e.defaultProtocol&&"function"!=typeof e.defaultProtocol&&(e.defaultProtocol="http://"),"number"==typeof e.truncate||"object"==typeof e.truncate&&null!==e.truncate||(e.truncate=1/0),"object"!=typeof e.customTlds&&(e.customTlds=[]),"string"!=typeof e.displayText&&"function"!=typeof e.displayText&&(e.displayText=""),e},t.isPort=function(e){return!(isNaN(Number(e))||Number(e)>65535)}}));e(o);var n=t((function(e,t){Object.defineProperty(t,"__esModule",{value:!0}),t.tlds=["com","org","net","uk","gov","edu","io","cc","co","aaa","aarp","abarth","abb","abbott","abbvie","abc","able","abogado","abudhabi","ac","academy","accenture","accountant","accountants","aco","active","actor","ad","adac","ads","adult","ae","aeg","aero","aetna","af","afamilycompany","afl","africa","ag","agakhan","agency","ai","aig","aigo","airbus","airforce","airtel","akdn","al","alfaromeo","alibaba","alipay","allfinanz","allstate","ally","alsace","alstom","am","americanexpress","americanfamily","amex","amfam","amica","amsterdam","analytics","android","anquan","anz","ao","aol","apartments","app","apple","aq","aquarelle","ar","aramco","archi","army","arpa","art","arte","as","asda","asia","associates","at","athleta","attorney","au","auction","audi","audible","audio","auspost","author","auto","autos","avianca","aw","aws","ax","axa","az","azure","ba","baby","baidu","banamex","bananarepublic","band","bank","bar","barcelona","barclaycard","barclays","barefoot","bargains","baseball","basketball","bauhaus","bayern","bb","bbc","bbt","bbva","bcg","bcn","bd","be","beats","beauty","beer","bentley","berlin","best","bestbuy","bet","bf","bg","bh","bharti","bi","bible","bid","bike","bing","bingo","bio","biz","bj","black","blackfriday","blanco","blockbuster","blog","bloomberg","blue","bm","bms","bmw","bn","bnl","bnpparibas","bo","boats","boehringer","bofa","bom","bond","boo","book","booking","boots","bosch","bostik","boston","bot","boutique","box","br","bradesco","bridgestone","broadway","broker","brother","brussels","bs","bt","budapest","bugatti","build","builders","business","buy","buzz","bv","bw","by","bz","bzh","ca","cab","cafe","cal","call","calvinklein","cam","camera","camp","cancerresearch","canon","capetown","capital","capitalone","car","caravan","cards","care","career","careers","cars","cartier","casa","case","caseih","cash","casino","cat","catering","catholic","cba","cbn","cbre","cbs","cd","ceb","center","ceo","cern","cf","cfa","cfd","cg","ch","chanel","channel","chase","chat","cheap","chintai","chloe","christmas","chrome","chrysler","church","ci","cipriani","circle","cisco","citadel","citi","citic","city","cityeats","ck","cl","claims","cleaning","click","clinic","clinique","clothing","cloud","club","clubmed","cm","cn","coach","codes","coffee","college","cologne","comcast","commbank","community","company","compare","computer","comsec","condos","construction","consulting","contact","contractors","cooking","cookingchannel","cool","coop","corsica","country","coupon","coupons","courses","cr","credit","creditcard","creditunion","cricket","crown","crs","cruise","cruises","csc","cu","cuisinella","cv","cw","cx","cy","cymru","cyou","cz","dabur","dad","dance","data","date","dating","datsun","day","dclk","dds","de","deal","dealer","deals","degree","delivery","dell","deloitte","delta","democrat","dental","dentist","desi","design","dev","dhl","diamonds","diet","digital","direct","directory","discount","discover","dish","diy","dj","dk","dm","dnp","do","docs","doctor","dodge","dog","doha","domains","dot","download","drive","dtv","dubai","duck","dunlop","duns","dupont","durban","dvag","dvr","dz","earth","eat","ec","eco","edeka","education","ee","eg","email","emerck","energy","engineer","engineering","enterprises","epost","epson","equipment","er","ericsson","erni","es","esq","estate","esurance","et","eu","eurovision","eus","events","everbank","exchange","expert","exposed","express","extraspace","fage","fail","fairwinds","faith","family","fan","fans","farm","farmers","fashion","fast","fedex","feedback","ferrari","ferrero","fi","fiat","fidelity","fido","film","final","finance","financial","fire","firestone","firmdale","fish","fishing","fit","fitness","fj","fk","flickr","flights","flir","florist","flowers","fly","fm","fo","foo","food","foodnetwork","football","ford","forex","forsale","forum","foundation","fox","fr","free","fresenius","frl","frogans","frontdoor","frontier","ftr","fujitsu","fujixerox","fun","fund","furniture","futbol","fyi","ga","gal","gallery","gallo","gallup","game","games","gap","garden","gb","gbiz","gd","gdn","ge","gea","gent","genting","george","gf","gg","ggee","gh","gi","gift","gifts","gives","giving","gl","glade","glass","gle","global","globo","gm","gmail","gmbh","gmo","gmx","gn","godaddy","gold","goldpoint","golf","goo","goodhands","goodyear","goog","google","gop","got","gp","gq","gr","grainger","graphics","gratis","green","gripe","group","gs","gt","gu","guardian","gucci","guge","guide","guitars","guru","gw","gy","hair","hamburg","hangout","haus","hbo","hdfc","hdfcbank","health","healthcare","help","helsinki","here","hermes","hgtv","hiphop","hisamitsu","hitachi","hiv","hk","hkt","hm","hn","hockey","holdings","holiday","homedepot","homegoods","homes","homesense","honda","honeywell","horse","hospital","host","hosting","hot","hoteles","hotmail","house","how","hr","hsbc","ht","htc","hu","hughes","hyatt","hyundai","ibm","icbc","ice","icu","id","ie","ieee","ifm","ikano","il","im","imamat","imdb","immo","immobilien","in","industries","infiniti","info","ing","ink","institute","insurance","insure","int","intel","international","intuit","investments","ipiranga","iq","ir","irish","is","iselect","ismaili","ist","istanbul","it","itau","itv","iveco","iwc","jaguar","java","jcb","jcp","je","jeep","jetzt","jewelry","jio","jlc","jll","jm","jmp","jnj","jo","jobs","joburg","jot","joy","jp","jpmorgan","jprs","juegos","juniper","kaufen","kddi","ke","kerryhotels","kerrylogistics","kerryproperties","kfh","kg","kh","ki","kia","kim","kinder","kindle","kitchen","kiwi","km","kn","koeln","komatsu","kosher","kp","kpmg","kpn","kr","krd","kred","kuokgroup","kw","ky","kyoto","kz","la","lacaixa","ladbrokes","lamborghini","lamer","lancaster","lancia","lancome","land","landrover","lanxess","lasalle","lat","latino","latrobe","law","lawyer","lb","lc","lds","lease","leclerc","lefrak","legal","lego","lexus","lgbt","li","liaison","lidl","life","lifeinsurance","lifestyle","lighting","like","lilly","limited","limo","lincoln","linde","link","lipsy","live","living","lixil","lk","loan","loans","locker","locus","loft","lol","london","lotte","lotto","love","lpl","lplfinancial","lr","ls","lt","ltd","ltda","lu","lundbeck","lupin","luxe","luxury","lv","ly","ma","macys","madrid","maif","maison","makeup","man","management","mango","market","marketing","markets","marriott","marshalls","maserati","mattel","mba","mc","mcd","mcdonalds","mckinsey","md","me","med","media","meet","melbourne","meme","memorial","men","menu","meo","metlife","mg","mh","miami","microsoft","mil","mini","mint","mit","mitsubishi","mk","ml","mlb","mls","mm","mma","mn","mo","mobi","mobile","mobily","moda","moe","moi","mom","monash","money","monster","montblanc","mopar","mormon","mortgage","moscow","moto","motorcycles","mov","movie","movistar","mp","mq","mr","ms","msd","mt","mtn","mtpc","mtr","mu","museum","mutual","mv","mw","mx","my","mz","na","nab","nadex","nagoya","name","nationwide","natura","navy","nba","nc","ne","nec","netbank","netflix","network","neustar","new","newholland","news","next","nextdirect","nexus","nf","nfl","ng","ngo","nhk","ni","nico","nike","nikon","ninja","nissan","nissay","nl","no","nokia","northwesternmutual","norton","now","nowruz","nowtv","np","nr","nra","nrw","ntt","nu","nyc","nz","obi","observer","off","office","okinawa","olayan","olayangroup","oldnavy","ollo","om","omega","one","ong","onl","online","onyourside","ooo","open","oracle","orange","organic","orientexpress","origins","osaka","otsuka","ott","ovh","pa","page","pamperedchef","panasonic","panerai","paris","pars","partners","parts","party","passagens","pay","pccw","pe","pet","pf","pfizer","pg","ph","pharmacy","philips","phone","photo","photography","photos","physio","piaget","pics","pictet","pictures","pid","pin","ping","pink","pioneer","pizza","pk","pl","place","play","playstation","plumbing","plus","pm","pn","pnc","pohl","poker","politie","porn","post","pr","pramerica","praxi","press","prime","pro","prod","productions","prof","progressive","promo","properties","property","protection","pru","prudential","ps","pt","pub","pw","pwc","py","qa","qpon","quebec","quest","qvc","racing","radio","raid","re","read","realestate","realtor","realty","recipes","red","redstone","redumbrella","rehab","reise","reisen","reit","reliance","ren","rent","rentals","repair","report","republican","rest","restaurant","review","reviews","rexroth","rich","richardli","ricoh","rightathome","ril","rio","rip","rmit","ro","rocher","rocks","rodeo","rogers","room","rs","rsvp","ru","ruhr","run","rw","rwe","ryukyu","sa","saarland","safe","safety","sakura","sale","salon","samsclub","samsung","sandvik","sandvikcoromant","sanofi","sap","sapo","sarl","sas","save","saxo","sb","sbi","sbs","sc","sca","scb","schaeffler","schmidt","scholarships","school","schule","schwarz","science","scjohnson","scor","scot","sd","se","seat","secure","security","seek","select","sener","services","ses","seven","sew","sex","sexy","sfr","sg","sh","shangrila","sharp","shaw","shell","shia","shiksha","shoes","shop","shopping","shouji","show","showtime","shriram","si","silk","sina","singles","site","sj","sk","ski","skin","sky","skype","sl","sling","sm","smart","smile","sn","sncf","so","soccer","social","softbank","software","sohu","solar","solutions","song","sony","soy","space","spiegel","spot","spreadbetting","sr","srl","srt","st","stada","staples","star","starhub","statebank","statefarm","statoil","stc","stcgroup","stockholm","storage","store","stream","studio","study","style","su","sucks","supplies","supply","support","surf","surgery","suzuki","sv","swatch","swiftcover","swiss","sx","sy","sydney","symantec","systems","sz","tab","taipei","talk","taobao","target","tatamotors","tatar","tattoo","tax","taxi","tc","tci","td","tdk","team","tech","technology","tel","telecity","telefonica","temasek","tennis","teva","tf","tg","th","thd","theater","theatre","tiaa","tickets","tienda","tiffany","tips","tires","tirol","tj","tjmaxx","tjx","tk","tkmaxx","tl","tm","tmall","tn","to","today","tokyo","tools","top","toray","toshiba","total","tours","town","toyota","toys","tr","trade","trading","training","travel","travelchannel","travelers","travelersinsurance","trust","trv","tt","tube","tui","tunes","tushu","tv","tvs","tw","tz","ua","ubank","ubs","uconnect","ug","unicom","university","uno","uol","ups","us","uy","uz","va","vacations","vana","vanguard","vc","ve","vegas","ventures","verisign","versicherung","vet","vg","vi","viajes","video","vig","viking","villas","vin","vip","virgin","visa","vision","vista","vistaprint","viva","vivo","vlaanderen","vn","vodka","volkswagen","volvo","vote","voting","voto","voyage","vu","vuelos","wales","walmart","walter","wang","wanggou","warman","watch","watches","weather","weatherchannel","webcam","weber","website","wed","wedding","weibo","weir","wf","whoswho","wien","wiki","williamhill","win","windows","wine","winners","wme","wolterskluwer","woodside","work","works","world","wow","ws","wtc","wtf","xbox","xerox","xfinity","xihuan","xin","xn--11b4c3d","xn--1ck2e1b","xn--1qqw23a","xn--30rr7y","xn--3bst00m","xn--3ds443g","xn--3e0b707e","xn--3oq18vl8pn36a","xn--3pxu8k","xn--42c2d9a","xn--45brj9c","xn--45q11c","xn--4gbrim","xn--54b7fta0cc","xn--55qw42g","xn--55qx5d","xn--5su34j936bgsg","xn--5tzm5g","xn--6frz82g","xn--6qq986b3xl","xn--80adxhks","xn--80ao21a","xn--80aqecdr1a","xn--80asehdb","xn--80aswg","xn--8y0a063a","xn--90a3ac","xn--90ae","xn--90ais","xn--9dbq2a","xn--9et52u","xn--9krt00a","xn--b4w605ferd","xn--bck1b9a5dre4c","xn--c1avg","xn--c2br7g","xn--cck2b3b","xn--cg4bki","xn--clchc0ea0b2g2a9gcd","xn--czr694b","xn--czrs0t","xn--czru2d","xn--d1acj3b","xn--d1alf","xn--e1a4c","xn--eckvdtc9d","xn--efvy88h","xn--estv75g","xn--fct429k","xn--fhbei","xn--fiq228c5hs","xn--fiq64b","xn--fiqs8s","xn--fiqz9s","xn--fjq720a","xn--flw351e","xn--fpcrj9c3d","xn--fzc2c9e2c","xn--fzys8d69uvgm","xn--g2xx48c","xn--gckr3f0f","xn--gecrj9c","xn--gk3at1e","xn--h2brj9c","xn--hxt814e","xn--i1b6b1a6a2e","xn--imr513n","xn--io0a7i","xn--j1aef","xn--j1amh","xn--j6w193g","xn--jlq61u9w7b","xn--jvr189m","xn--kcrx77d1x4a","xn--kprw13d","xn--kpry57d","xn--kpu716f","xn--kput3i","xn--l1acc","xn--lgbbat1ad8j","xn--mgb9awbf","xn--mgba3a3ejt","xn--mgba3a4f16a","xn--mgba7c0bbn0a","xn--mgbaam7a8h","xn--mgbab2bd","xn--mgbai9azgqp6j","xn--mgbayh7gpa","xn--mgbb9fbpob","xn--mgbbh1a71e","xn--mgbc0a9azcg","xn--mgbca7dzdo","xn--mgberp4a5d4ar","xn--mgbi4ecexp","xn--mgbpl2fh","xn--mgbt3dhd","xn--mgbtx2b","xn--mgbx4cd0ab","xn--mix891f","xn--mk1bu44c","xn--mxtq1m","xn--ngbc5azd","xn--ngbe9e0a","xn--node","xn--nqv7f","xn--nqv7fs00ema","xn--nyqy26a","xn--o3cw4h","xn--ogbpf8fl","xn--p1acf","xn--p1ai","xn--pbt977c","xn--pgbs0dh","xn--pssy2u","xn--q9jyb4c","xn--qcka1pmc","xn--qxam","xn--rhqv96g","xn--rovu88b","xn--s9brj9c","xn--ses554g","xn--t60b56a","xn--tckwe","xn--tiq49xqyj","xn--unup4y","xn--vermgensberater-ctb","xn--vermgensberatung-pwb","xn--vhquv","xn--vuq861b","xn--w4r85el8fhu5dnra","xn--w4rs40l","xn--wgbh1c","xn--wgbl6a","xn--xhq521b","xn--xkc2al3hye2a","xn--xkc2dl3a5ee0h","xn--y9a3aq","xn--yfro4i67o","xn--ygbi2ammx","xn--zfr164b","xperia","xxx","xyz","yachts","yahoo","yamaxun","yandex","ye","yodobashi","yoga","yokohama","you","youtube","yt","yun","za","zappos","zara","zero","zip","zippo","zm","zone","zuerich","zw"],t.htmlAttrs=["src=","data=","href=","cite=","formaction=","icon=","manifest=","poster=","codebase=","background=","profile=","usemap="]}));e(n);var i=t((function(e,t){Object.defineProperty(t,"__esModule",{value:!0});var o=/^[a-z0-9!#$%&'*+\-/=?^_`{|}~.]+@([a-z0-9%\-]+\.){1,}([a-z0-9\-]+)?$/i,i=[/^[!#$%&'*+\-/=?^_`{|}~.]/,/[.]{2,}[a-z0-9!#$%&'*+\-/=?^_`{|}~.]+@/i,/\.@/];t.default=function(e){var t=e.match(o);if(null===t)return!1;for(var r=i.length-1;r>=0;r--)if(i[r].test(e))return!1;var a=t[2];return!!a&&-1!==n.tlds.indexOf(a)}}));e(i);var r=t((function(e,t){Object.defineProperty(t,"__esModule",{value:!0});var n=/^(\d{1,3}\.){3}\d{1,3}(:\d{1,5})?(\/([a-z0-9\-._~:\/\?#\[\]@!$&'\(\)\*\+,;=%]+)?)?$/i;t.default=function(e){if(!n.test(e))return!1;var t=e.split("."),i=Number(t[0]);if(isNaN(i)||i>255||i<0)return!1;var r=Number(t[1]);if(isNaN(r)||r>255||r<0)return!1;var a=Number(t[2]);if(isNaN(a)||a>255||a<0)return!1;var l=Number((t[3].match(/^\d+/)||[])[0]);if(isNaN(l)||l>255||l<0)return!1;var s=(t[3].match(/(^\d+)(:)(\d+)/)||[])[3];return!(s&&!o.isPort(s))}}));e(r);var a=t((function(e,t){Object.defineProperty(t,"__esModule",{value:!0});var i=/^(https?:\/\/|ftps?:\/\/)?([a-z0-9%\-]+\.){1,}([a-z0-9\-]+)?(:(\d{1,5}))?(\/([a-z0-9\-._~:\/\?#\[\]@!$&'\(\)\*\+,;=%]+)?)?$/i;t.default=function(e,t){void 0===t&&(t=[]);var r=e.match(i);return null!==r&&"string"==typeof r[3]&&-1!==(t.length>0?n.tlds.concat(t):n.tlds).indexOf(r[3].toLowerCase())&&!(r[5]&&!o.isPort(r[5]))}}));e(a);var l=t((function(e,t){function o(e,t,n){return e.forEach((function(i,r){!(i.indexOf(".")>-1)||e[r-1]===t&&e[r+1]===n||e[r+1]!==t&&e[r+1]!==n||(e[r]=e[r]+e[r+1],"string"==typeof e[r+2]&&(e[r]=e[r]+e[r+2]),"string"==typeof e[r+3]&&(e[r]=e[r]+e[r+3]),"string"==typeof e[r+4]&&(e[r]=e[r]+e[r+4]),e.splice(r+1,4),o(e,t,n))})),e}Object.defineProperty(t,"__esModule",{value:!0}),t.fixSeparators=o,t.default=function(e){return e=o(e,"(",")"),e=o(e,"[","]"),e=o(e,'"','"'),e=o(e,"'","'")}}));e(l);var s=t((function(e,t){Object.defineProperty(t,"__esModule",{value:!0}),t.separate=function(e){var t=e.replace(/([\s\(\)\[\]<>"'])/g,"\0$1\0").replace(/([?;:,.!]+)(?=(\0|$|\s))/g,"\0$1\0").split("\0");return l.default(t)},t.deSeparate=function(e){return e.join("")}}));e(s);var d=t((function(e,t){Object.defineProperty(t,"__esModule",{value:!0}),t.default=function(e){return 0===(e=e.toLowerCase()).indexOf("http://")?"http://":0===e.indexOf("https://")?"https://":0===e.indexOf("ftp://")?"ftp://":0===e.indexOf("ftps://")?"ftps://":0===e.indexOf("file:///")?"file:///":0===e.indexOf("mailto:")&&"mailto:"}}));e(d);var m=t((function(e,t){Object.defineProperty(t,"__esModule",{value:!0}),t.default=function(e,t){return e.map((function(o,l){var s=encodeURI(o);if(s.indexOf(".")<1&&!d.default(s))return o;var m=null,f=d.default(s)||"";return f&&(s=s.substr(f.length)),t.files&&"file:///"===f&&s.split(/\/|\\/).length-1&&(m={reason:"file",protocol:f,raw:o,encoded:s}),!m&&t.urls&&a.default(s,t.customTlds)&&(m={reason:"url",protocol:f||("function"==typeof t.defaultProtocol?t.defaultProtocol(o):t.defaultProtocol),raw:o,encoded:s}),!m&&t.emails&&i.default(s)&&(m={reason:"email",protocol:"mailto:",raw:o,encoded:s}),!m&&t.ips&&r.default(s)&&(m={reason:"ip",protocol:f||("function"==typeof t.defaultProtocol?t.defaultProtocol(o):t.defaultProtocol),raw:o,encoded:s}),m&&("'"!==e[l-1]&&'"'!==e[l-1]||!~n.htmlAttrs.indexOf(e[l-2]))?m:o}))}}));e(m);var f=t((function(e,t){Object.defineProperty(t,"__esModule",{value:!0});var o=s;t.default=function(e,t){var n=o.separate(e),i=m.default(n,t);if(t.exclude)for(var r=0;r<i.length;r++){var a=i[r];"object"==typeof a&&t.exclude(a)&&(i[r]=a.raw)}if(t.list){for(var l=[],d=0;d<i.length;d++){var f=i[d];"string"!=typeof f&&l.push(f)}return l}return i=i.map((function(e){return"string"==typeof e?e:function(e,t){var o=e.protocol+e.encoded,n=""!==t.displayText?t.displayText:e.raw;return"number"==typeof t.truncate&&n.length>t.truncate&&(n=n.substring(0,t.truncate)+"..."),"object"==typeof t.truncate&&n.length>t.truncate[0]+t.truncate[1]&&(n=n.substr(0,t.truncate[0])+"..."+n.substr(n.length-t.truncate[1])),void 0===t.attributes&&(t.attributes=[]),'<a href="'+o+'" '+t.attributes.map((function(t){if("function"!=typeof t)return" "+t.name+'="'+t.value+'" ';var o=(t(e)||{}).name,n=(t(e)||{}).value;return o&&!n?" name ":o&&n?" "+o+'="'+n+'" ':void 0})).join("")+">"+n+"</a>"}(e,t)})),s.deSeparate(i)}}));return e(f),e(t((function(e,t){Object.defineProperty(t,"__esModule",{value:!0});var n=function(e,t){return t=o.defaultOptions(t),f.default(e,t)};n.validate={ip:r.default,url:function(e,t){void 0===t&&(t=[]);var o=d.default(e)||"";return e=e.substr(o.length),e=encodeURI(e),a.default(e,t)},email:i.default},t.default=n})))}()},function(e,t,o){"use strict";(function(o){(function(){var o=this,n=o.EmojiConvertor,i=function(){return this.img_set="apple",this.img_sets={apple:{path:"/emoji-data/img-apple-64/",sheet:"/emoji-data/sheet_apple_64.png",sheet_size:64,mask:1},google:{path:"/emoji-data/img-google-64/",sheet:"/emoji-data/sheet_google_64.png",sheet_size:64,mask:2},twitter:{path:"/emoji-data/img-twitter-64/",sheet:"/emoji-data/sheet_twitter_64.png",sheet_size:64,mask:4},facebook:{path:"/emoji-data/img-facebook-64/",sheet:"/emoji-data/sheet_facebook_64.png",sheet_size:64,mask:8},messenger:{path:"/emoji-data/img-messenger-64/",sheet:"/emoji-data/sheet_messenger_64.png",sheet_size:64,mask:16}},this.use_css_imgs=!1,this.colons_mode=!1,this.text_mode=!1,this.include_title=!1,this.include_text=!1,this.allow_native=!0,this.wrap_native=!1,this.use_sheet=!1,this.avoid_ms_emoji=!0,this.allow_caps=!1,this.img_suffix="",this.inits={},this.map={},this.init_env(),this};i.prototype.noConflict=function(){return o.EmojiConvertor=n,i},i.prototype.replace_emoticons=function(e){var t=this.replace_emoticons_with_colons(e);return this.replace_colons(t)},i.prototype.replace_emoticons_with_colons=function(e){var t=this;t.init_emoticons();var o=0,n=[],i=e.replace(t.rx_emoticons,(function(i,r,a,l){var s=o;o=l+i.length;var d=-1!==a.indexOf("("),m=-1!==a.indexOf(")");if((d||m)&&-1==n.indexOf(a)&&n.push(a),m&&!d){var f=e.substring(s,l);if(-1!==f.indexOf("(")&&-1===f.indexOf(")"))return i}if("\n8)"===i){var _=e.substring(0,l);if(/\n?(6\)|7\))/.test(_))return i}var c=t.data[t.map.emoticons[a]][3][0];return c?r+":"+c+":":i}));if(n.length){var r=n.map(t.escape_rx),a=new RegExp("(\\(.+)("+r.join("|")+")(.+\\))","g");i=i.replace(a,(function(e,o,n,i){var r=t.data[t.map.emoticons[n]][3][0];return r?o+":"+r+":"+i:e}))}return i},i.prototype.replace_colons=function(e){var t=this;return t.init_colons(),e.replace(t.rx_colons,(function(e){var o=e.substr(1,e.length-2);if(t.allow_caps&&(o=o.toLowerCase()),o.indexOf("::skin-tone-")>-1){var n,i="skin-tone-"+o.substr(-1,1),r=t.map.colons[i];return o=o.substr(0,o.length-13),(n=t.map.colons[o])?t.replacement(n,o,":",{idx:r,actual:i,wrapper:":"}):":"+o+":"+t.replacement(r,i,":")}return(n=t.map.colons[o])?t.replacement(n,o,":"):e}))},i.prototype.replace_unified=function(e){var t=this;return t.init_unified(),e.replace(t.rx_unified,(function(e,o,n){var i=t.map.unified[o];if(i){var r=null;return"🏻"==n&&(r="1f3fb"),"🏼"==n&&(r="1f3fc"),"🏽"==n&&(r="1f3fd"),"🏾"==n&&(r="1f3fe"),"🏿"==n&&(r="1f3ff"),r?t.replacement(i,null,null,{idx:r,actual:n,wrapper:""}):t.replacement(i)}return(i=t.map.unified_vars[o])?t.replacement(i[0],null,null,{idx:i[1],actual:"",wrapper:""}):e}))},i.prototype.addAliases=function(e){for(var t in this.init_colons(),e)this.map.colons[t]=e[t]},i.prototype.removeAliases=function(e){for(var t=0;t<e.length;t++){var o=e[t];delete this.map.colons[o];e:for(var n in this.data)for(var i=0;i<this.data[n][3].length;i++)if(o==this.data[n][3][i]){this.map.colons[o]=n;break e}}},i.prototype.replacement=function(e,t,o,n,i){var r="",a=null;if("object"==typeof n&&(r=this.replacement(n.idx,n.actual,n.wrapper,void 0,!0),a=n.idx),o=o||"",this.colons_mode)return":"+this.data[e][3][0]+":"+r;var l=t?o+t+o:this.data[e][8]||o+this.data[e][3][0]+o;if(this.text_mode)return l+r;var s=this.find_image(e,a);if(this.init_env(),"softbank"==this.replace_mode&&this.allow_native&&this.data[e][1])return this.format_native(this.data[e][1]+r,!i);if("google"==this.replace_mode&&this.allow_native&&this.data[e][2])return this.format_native(this.data[e][2]+r,!i);if(s.is_var&&(r=""),"unified"==this.replace_mode&&this.allow_native)return this.format_native(s.unified+r,!i);var d=this.include_title?' title="'+(t||this.data[e][3][0])+'"':"",m=this.include_text?o+(t||this.data[e][3][0])+o:"";if(this.data[e][7]&&(s.path=this.data[e][7],s.px=null,s.py=null,s.is_var=!1),s.is_var&&this.include_text&&n&&n.actual&&n.wrapper&&(m+=n.wrapper+n.actual+n.wrapper),this.supports_css){if(this.use_sheet&&null!=s.px&&null!=s.py){var f=this.sheet_size*(s.sheet_size+2),_=(s.px*(s.sheet_size+2)+1)/(f-s.sheet_size)*100,c=(s.py*(s.sheet_size+2)+1)/(f-s.sheet_size)*100,g=f/s.sheet_size*100;return'<span class="emoji-outer emoji-sizer"><span class="emoji-inner" style="'+("background: url("+s.sheet+");background-position:"+_+"% "+c+"%;background-size:"+g+"% "+g+"%")+'"'+d+' data-codepoints="'+s.full_idx+'">'+m+"</span></span>"+r}return this.use_css_imgs?'<span class="emoji emoji-'+e+'"'+d+' data-codepoints="'+s.full_idx+'">'+m+"</span>"+r:'<span class="emoji emoji-sizer" style="background-image:url('+s.path+')"'+d+' data-codepoints="'+s.full_idx+'">'+m+"</span>"+r}return'<img src="'+s.path+'" class="emoji" data-codepoints="'+s.full_idx+'" '+d+"/>"+r},i.prototype.format_native=function(e,t){return this.wrap_native&&t?'<span class="emoji-native">'+e+"</span>":e},i.prototype.find_image=function(e,t){var o={path:"",sheet:"",sheet_size:0,px:this.data[e][4],py:this.data[e][5],full_idx:e,is_var:!1,unified:this.data[e][0][0]},n=this.data[e][6];if(t&&this.variations_data[e]&&this.variations_data[e][t]){var i=this.variations_data[e][t];o.px=i[1],o.py=i[2],o.full_idx=i[0],o.is_var=!0,o.unified=i[4],n=i[3]}for(var r=[this.img_set,"apple","google","twitter","facebook","messenger"],a=0;a<r.length;a++){if(n&this.img_sets[r[a]].mask)return o.path=this.img_sets[r[a]].path+o.full_idx+".png"+this.img_suffix,o.sheet=this.img_sets[this.img_set].sheet,o.sheet_size=this.img_sets[this.img_set].sheet_size,o;if(this.obsoletes_data[o.full_idx]){var l=this.obsoletes_data[o.full_idx];if(l[3]&this.img_sets[r[a]].mask)return o.path=this.img_sets[r[a]].path+l[0]+".png"+this.img_suffix,o.sheet=this.img_sets[r[a]].sheet,o.sheet_size=this.img_sets[r[a]].sheet_size,o.px=l[1],o.py=l[2],o}}return o},i.prototype.init_emoticons=function(){if(!this.inits.emoticons){this.init_colons(),this.inits.emoticons=1;var e=[];for(var t in this.map.emoticons={},this.emoticons_data){var o=t.replace(/\&/g,"&amp;").replace(/\</g,"&lt;").replace(/\>/g,"&gt;");this.map.colons[this.emoticons_data[t]]&&(this.map.emoticons[o]=this.map.colons[this.emoticons_data[t]],e.push(this.escape_rx(o)))}this.rx_emoticons=new RegExp("(^|\\s)("+e.join("|")+")(?=$|[\\s|\\?\\.,!])","g")}},i.prototype.init_colons=function(){if(!this.inits.colons)for(var e in this.inits.colons=1,this.rx_colons=new RegExp(":[a-zA-Z0-9-_+]+:(:skin-tone-[2-6]:)?","g"),this.map.colons={},this.data)for(var t=0;t<this.data[e][3].length;t++)this.map.colons[this.data[e][3][t]]=e},i.prototype.init_unified=function(){if(!this.inits.unified){this.inits.unified=1;var e=[];for(var t in this.map.unified={},this.map.unified_vars={},this.data)for(var o=0;o<this.data[t][0].length;o++)e.push(this.data[t][0][o].replace("*","\\*")),this.map.unified[this.data[t][0][o]]=t;for(var t in this.variations_data)if(this.variations_data[t]["1f3fb"][0]!=t+"-1f3fb")for(var n in this.variations_data[t])for(o=0;o<this.variations_data[t][n][4].length;o++)e.push(this.variations_data[t][n][4][o].replace("*","\\*")),this.map.unified_vars[this.variations_data[t][n][4][o]]=[t,n];e=e.sort((function(e,t){return t.length-e.length})),this.rx_unified=new RegExp("("+e.join("|")+")(\ud83c[\udffb-\udfff])?","g")}},i.prototype.init_env=function(){if(!this.inits.env){if(this.inits.env=1,this.replace_mode="img",this.supports_css=!1,"undefined"!=typeof navigator){var e=navigator.userAgent;if("undefined"!=typeof window&&window.getComputedStyle)try{var t=window.getComputedStyle(document.body);(t["background-size"]||t.backgroundSize)&&(this.supports_css=!0)}catch(t){e.match(/Firefox/i)&&(this.supports_css=!0)}if(navigator.product.match(/ReactNative/i))return void(this.replace_mode="unified");if(e.match(/(iPhone|iPod|iPad|iPhone\s+Simulator)/i)){if(e.match(/OS\s+[12345]/i))return void(this.replace_mode="softbank");if(e.match(/OS\s+[6789]/i))return void(this.replace_mode="unified")}if(e.match(/Mac OS X 10[._ ](?:[789]|1\d)/i))return void(this.replace_mode="unified");if(!this.avoid_ms_emoji&&(e.match(/Windows NT 6.[1-9]/i)||e.match(/Windows NT 10.[0-9]/i))&&!e.match(/Chrome/i)&&!e.match(/MSIE 8/i))return void(this.replace_mode="unified")}0,this.supports_css&&(this.replace_mode="css")}},i.prototype.escape_rx=function(e){return e.replace(/[-[\]{}()*+?.,\\^$|#\s]/g,"\\$&")},i.prototype.sheet_size=52,i.prototype.data={"0023-fe0f-20e3":[["#️⃣","#⃣"],"","󾠬",["hash"],0,0,7,0],"002a-fe0f-20e3":[["*️⃣","*⃣"],"","",["keycap_star"],0,1,7,0],"0030-fe0f-20e3":[["0️⃣","0⃣"],"","󾠷",["zero"],0,2,7,0],"0031-fe0f-20e3":[["1️⃣","1⃣"],"","󾠮",["one"],0,3,7,0],"0032-fe0f-20e3":[["2️⃣","2⃣"],"","󾠯",["two"],0,4,7,0],"0033-fe0f-20e3":[["3️⃣","3⃣"],"","󾠰",["three"],0,5,7,0],"0034-fe0f-20e3":[["4️⃣","4⃣"],"","󾠱",["four"],0,6,7,0],"0035-fe0f-20e3":[["5️⃣","5⃣"],"","󾠲",["five"],0,7,7,0],"0036-fe0f-20e3":[["6️⃣","6⃣"],"","󾠳",["six"],0,8,7,0],"0037-fe0f-20e3":[["7️⃣","7⃣"],"","󾠴",["seven"],0,9,7,0],"0038-fe0f-20e3":[["8️⃣","8⃣"],"","󾠵",["eight"],0,10,7,0],"0039-fe0f-20e3":[["9️⃣","9⃣"],"","󾠶",["nine"],0,11,7,0],"00a9-fe0f":[["©️","©"],"","󾬩",["copyright"],0,12,3,0],"00ae-fe0f":[["®️","®"],"","󾬭",["registered"],0,13,3,0],"1f004":[["🀄"],"","󾠋",["mahjong"],0,14,31,0],"1f0cf":[["🃏"],"","󾠒",["black_joker"],0,15,31,0],"1f170-fe0f":[["🅰️","🅰"],"","󾔋",["a"],0,16,31,0],"1f171-fe0f":[["🅱️","🅱"],"","󾔌",["b"],0,17,31,0],"1f17e-fe0f":[["🅾️","🅾"],"","󾔎",["o2"],0,18,31,0],"1f17f-fe0f":[["🅿️","🅿"],"","󾟶",["parking"],0,19,31,0],"1f18e":[["🆎"],"","󾔍",["ab"],0,20,31,0],"1f191":[["🆑"],"","󾮄",["cl"],0,21,31,0],"1f192":[["🆒"],"","󾬸",["cool"],0,22,31,0],"1f193":[["🆓"],"","󾬡",["free"],0,23,31,0],"1f194":[["🆔"],"","󾮁",["id"],0,24,31,0],"1f195":[["🆕"],"","󾬶",["new"],0,25,31,0],"1f196":[["🆖"],"","󾬨",["ng"],0,26,31,0],"1f197":[["🆗"],"","󾬧",["ok"],0,27,31,0],"1f198":[["🆘"],"","󾭏",["sos"],0,28,31,0],"1f199":[["🆙"],"","󾬷",["up"],0,29,31,0],"1f19a":[["🆚"],"","󾬲",["vs"],0,30,31,0],"1f1e6-1f1e8":[["🇦🇨"],"","",["flag-ac"],0,31,31,0],"1f1e6-1f1e9":[["🇦🇩"],"","",["flag-ad"],0,32,31,0],"1f1e6-1f1ea":[["🇦🇪"],"","",["flag-ae"],0,33,31,0],"1f1e6-1f1eb":[["🇦🇫"],"","",["flag-af"],0,34,31,0],"1f1e6-1f1ec":[["🇦🇬"],"","",["flag-ag"],0,35,31,0],"1f1e6-1f1ee":[["🇦🇮"],"","",["flag-ai"],0,36,31,0],"1f1e6-1f1f1":[["🇦🇱"],"","",["flag-al"],0,37,31,0],"1f1e6-1f1f2":[["🇦🇲"],"","",["flag-am"],0,38,31,0],"1f1e6-1f1f4":[["🇦🇴"],"","",["flag-ao"],0,39,31,0],"1f1e6-1f1f6":[["🇦🇶"],"","",["flag-aq"],0,40,31,0],"1f1e6-1f1f7":[["🇦🇷"],"","",["flag-ar"],0,41,31,0],"1f1e6-1f1f8":[["🇦🇸"],"","",["flag-as"],0,42,31,0],"1f1e6-1f1f9":[["🇦🇹"],"","",["flag-at"],0,43,31,0],"1f1e6-1f1fa":[["🇦🇺"],"","",["flag-au"],0,44,31,0],"1f1e6-1f1fc":[["🇦🇼"],"","",["flag-aw"],0,45,31,0],"1f1e6-1f1fd":[["🇦🇽"],"","",["flag-ax"],0,46,31,0],"1f1e6-1f1ff":[["🇦🇿"],"","",["flag-az"],0,47,31,0],"1f1e7-1f1e6":[["🇧🇦"],"","",["flag-ba"],0,48,15,0],"1f1e7-1f1e7":[["🇧🇧"],"","",["flag-bb"],0,49,31,0],"1f1e7-1f1e9":[["🇧🇩"],"","",["flag-bd"],0,50,31,0],"1f1e7-1f1ea":[["🇧🇪"],"","",["flag-be"],0,51,31,0],"1f1e7-1f1eb":[["🇧🇫"],"","",["flag-bf"],1,0,31,0],"1f1e7-1f1ec":[["🇧🇬"],"","",["flag-bg"],1,1,31,0],"1f1e7-1f1ed":[["🇧🇭"],"","",["flag-bh"],1,2,31,0],"1f1e7-1f1ee":[["🇧🇮"],"","",["flag-bi"],1,3,31,0],"1f1e7-1f1ef":[["🇧🇯"],"","",["flag-bj"],1,4,31,0],"1f1e7-1f1f1":[["🇧🇱"],"","",["flag-bl"],1,5,29,0],"1f1e7-1f1f2":[["🇧🇲"],"","",["flag-bm"],1,6,31,0],"1f1e7-1f1f3":[["🇧🇳"],"","",["flag-bn"],1,7,15,0],"1f1e7-1f1f4":[["🇧🇴"],"","",["flag-bo"],1,8,31,0],"1f1e7-1f1f6":[["🇧🇶"],"","",["flag-bq"],1,9,29,0],"1f1e7-1f1f7":[["🇧🇷"],"","",["flag-br"],1,10,31,0],"1f1e7-1f1f8":[["🇧🇸"],"","",["flag-bs"],1,11,31,0],"1f1e7-1f1f9":[["🇧🇹"],"","",["flag-bt"],1,12,31,0],"1f1e7-1f1fb":[["🇧🇻"],"","",["flag-bv"],1,13,31,0],"1f1e7-1f1fc":[["🇧🇼"],"","",["flag-bw"],1,14,31,0],"1f1e7-1f1fe":[["🇧🇾"],"","",["flag-by"],1,15,31,0],"1f1e7-1f1ff":[["🇧🇿"],"","",["flag-bz"],1,16,31,0],"1f1e8-1f1e6":[["🇨🇦"],"","",["flag-ca"],1,17,31,0],"1f1e8-1f1e8":[["🇨🇨"],"","",["flag-cc"],1,18,31,0],"1f1e8-1f1e9":[["🇨🇩"],"","",["flag-cd"],1,19,31,0],"1f1e8-1f1eb":[["🇨🇫"],"","",["flag-cf"],1,20,31,0],"1f1e8-1f1ec":[["🇨🇬"],"","",["flag-cg"],1,21,31,0],"1f1e8-1f1ed":[["🇨🇭"],"","",["flag-ch"],1,22,31,0],"1f1e8-1f1ee":[["🇨🇮"],"","",["flag-ci"],1,23,31,0],"1f1e8-1f1f0":[["🇨🇰"],"","",["flag-ck"],1,24,31,0],"1f1e8-1f1f1":[["🇨🇱"],"","",["flag-cl"],1,25,31,0],"1f1e8-1f1f2":[["🇨🇲"],"","",["flag-cm"],1,26,31,0],"1f1e8-1f1f3":[["🇨🇳"],"","󾓭",["cn","flag-cn"],1,27,31,0],"1f1e8-1f1f4":[["🇨🇴"],"","",["flag-co"],1,28,31,0],"1f1e8-1f1f5":[["🇨🇵"],"","",["flag-cp"],1,29,15,0],"1f1e8-1f1f7":[["🇨🇷"],"","",["flag-cr"],1,30,31,0],"1f1e8-1f1fa":[["🇨🇺"],"","",["flag-cu"],1,31,31,0],"1f1e8-1f1fb":[["🇨🇻"],"","",["flag-cv"],1,32,31,0],"1f1e8-1f1fc":[["🇨🇼"],"","",["flag-cw"],1,33,31,0],"1f1e8-1f1fd":[["🇨🇽"],"","",["flag-cx"],1,34,31,0],"1f1e8-1f1fe":[["🇨🇾"],"","",["flag-cy"],1,35,31,0],"1f1e8-1f1ff":[["🇨🇿"],"","",["flag-cz"],1,36,31,0],"1f1e9-1f1ea":[["🇩🇪"],"","󾓨",["de","flag-de"],1,37,31,0],"1f1e9-1f1ec":[["🇩🇬"],"","",["flag-dg"],1,38,29,0],"1f1e9-1f1ef":[["🇩🇯"],"","",["flag-dj"],1,39,31,0],"1f1e9-1f1f0":[["🇩🇰"],"","",["flag-dk"],1,40,31,0],"1f1e9-1f1f2":[["🇩🇲"],"","",["flag-dm"],1,41,31,0],"1f1e9-1f1f4":[["🇩🇴"],"","",["flag-do"],1,42,31,0],"1f1e9-1f1ff":[["🇩🇿"],"","",["flag-dz"],1,43,31,0],"1f1ea-1f1e6":[["🇪🇦"],"","",["flag-ea"],1,44,29,0],"1f1ea-1f1e8":[["🇪🇨"],"","",["flag-ec"],1,45,31,0],"1f1ea-1f1ea":[["🇪🇪"],"","",["flag-ee"],1,46,31,0],"1f1ea-1f1ec":[["🇪🇬"],"","",["flag-eg"],1,47,31,0],"1f1ea-1f1ed":[["🇪🇭"],"","",["flag-eh"],1,48,29,0],"1f1ea-1f1f7":[["🇪🇷"],"","",["flag-er"],1,49,31,0],"1f1ea-1f1f8":[["🇪🇸"],"","󾓫",["es","flag-es"],1,50,31,0],"1f1ea-1f1f9":[["🇪🇹"],"","",["flag-et"],1,51,31,0],"1f1ea-1f1fa":[["🇪🇺"],"","",["flag-eu"],2,0,31,0],"1f1eb-1f1ee":[["🇫🇮"],"","",["flag-fi"],2,1,31,0],"1f1eb-1f1ef":[["🇫🇯"],"","",["flag-fj"],2,2,31,0],"1f1eb-1f1f0":[["🇫🇰"],"","",["flag-fk"],2,3,29,0],"1f1eb-1f1f2":[["🇫🇲"],"","",["flag-fm"],2,4,31,0],"1f1eb-1f1f4":[["🇫🇴"],"","",["flag-fo"],2,5,31,0],"1f1eb-1f1f7":[["🇫🇷"],"","󾓧",["fr","flag-fr"],2,6,31,0],"1f1ec-1f1e6":[["🇬🇦"],"","",["flag-ga"],2,7,31,0],"1f1ec-1f1e7":[["🇬🇧"],"","󾓪",["gb","uk","flag-gb"],2,8,31,0],"1f1ec-1f1e9":[["🇬🇩"],"","",["flag-gd"],2,9,31,0],"1f1ec-1f1ea":[["🇬🇪"],"","",["flag-ge"],2,10,31,0],"1f1ec-1f1eb":[["🇬🇫"],"","",["flag-gf"],2,11,29,0],"1f1ec-1f1ec":[["🇬🇬"],"","",["flag-gg"],2,12,31,0],"1f1ec-1f1ed":[["🇬🇭"],"","",["flag-gh"],2,13,31,0],"1f1ec-1f1ee":[["🇬🇮"],"","",["flag-gi"],2,14,31,0],"1f1ec-1f1f1":[["🇬🇱"],"","",["flag-gl"],2,15,31,0],"1f1ec-1f1f2":[["🇬🇲"],"","",["flag-gm"],2,16,31,0],"1f1ec-1f1f3":[["🇬🇳"],"","",["flag-gn"],2,17,31,0],"1f1ec-1f1f5":[["🇬🇵"],"","",["flag-gp"],2,18,29,0],"1f1ec-1f1f6":[["🇬🇶"],"","",["flag-gq"],2,19,31,0],"1f1ec-1f1f7":[["🇬🇷"],"","",["flag-gr"],2,20,31,0],"1f1ec-1f1f8":[["🇬🇸"],"","",["flag-gs"],2,21,29,0],"1f1ec-1f1f9":[["🇬🇹"],"","",["flag-gt"],2,22,31,0],"1f1ec-1f1fa":[["🇬🇺"],"","",["flag-gu"],2,23,31,0],"1f1ec-1f1fc":[["🇬🇼"],"","",["flag-gw"],2,24,31,0],"1f1ec-1f1fe":[["🇬🇾"],"","",["flag-gy"],2,25,31,0],"1f1ed-1f1f0":[["🇭🇰"],"","",["flag-hk"],2,26,31,0],"1f1ed-1f1f2":[["🇭🇲"],"","",["flag-hm"],2,27,31,0],"1f1ed-1f1f3":[["🇭🇳"],"","",["flag-hn"],2,28,31,0],"1f1ed-1f1f7":[["🇭🇷"],"","",["flag-hr"],2,29,31,0],"1f1ed-1f1f9":[["🇭🇹"],"","",["flag-ht"],2,30,31,0],"1f1ed-1f1fa":[["🇭🇺"],"","",["flag-hu"],2,31,31,0],"1f1ee-1f1e8":[["🇮🇨"],"","",["flag-ic"],2,32,31,0],"1f1ee-1f1e9":[["🇮🇩"],"","",["flag-id"],2,33,31,0],"1f1ee-1f1ea":[["🇮🇪"],"","",["flag-ie"],2,34,31,0],"1f1ee-1f1f1":[["🇮🇱"],"","",["flag-il"],2,35,31,0],"1f1ee-1f1f2":[["🇮🇲"],"","",["flag-im"],2,36,31,0],"1f1ee-1f1f3":[["🇮🇳"],"","",["flag-in"],2,37,31,0],"1f1ee-1f1f4":[["🇮🇴"],"","",["flag-io"],2,38,31,0],"1f1ee-1f1f6":[["🇮🇶"],"","",["flag-iq"],2,39,31,0],"1f1ee-1f1f7":[["🇮🇷"],"","",["flag-ir"],2,40,31,0],"1f1ee-1f1f8":[["🇮🇸"],"","",["flag-is"],2,41,31,0],"1f1ee-1f1f9":[["🇮🇹"],"","󾓩",["it","flag-it"],2,42,31,0],"1f1ef-1f1ea":[["🇯🇪"],"","",["flag-je"],2,43,31,0],"1f1ef-1f1f2":[["🇯🇲"],"","",["flag-jm"],2,44,31,0],"1f1ef-1f1f4":[["🇯🇴"],"","",["flag-jo"],2,45,31,0],"1f1ef-1f1f5":[["🇯🇵"],"","󾓥",["jp","flag-jp"],2,46,31,0],"1f1f0-1f1ea":[["🇰🇪"],"","",["flag-ke"],2,47,31,0],"1f1f0-1f1ec":[["🇰🇬"],"","",["flag-kg"],2,48,31,0],"1f1f0-1f1ed":[["🇰🇭"],"","",["flag-kh"],2,49,31,0],"1f1f0-1f1ee":[["🇰🇮"],"","",["flag-ki"],2,50,31,0],"1f1f0-1f1f2":[["🇰🇲"],"","",["flag-km"],2,51,31,0],"1f1f0-1f1f3":[["🇰🇳"],"","",["flag-kn"],3,0,31,0],"1f1f0-1f1f5":[["🇰🇵"],"","",["flag-kp"],3,1,31,0],"1f1f0-1f1f7":[["🇰🇷"],"","󾓮",["kr","flag-kr"],3,2,31,0],"1f1f0-1f1fc":[["🇰🇼"],"","",["flag-kw"],3,3,31,0],"1f1f0-1f1fe":[["🇰🇾"],"","",["flag-ky"],3,4,31,0],"1f1f0-1f1ff":[["🇰🇿"],"","",["flag-kz"],3,5,31,0],"1f1f1-1f1e6":[["🇱🇦"],"","",["flag-la"],3,6,31,0],"1f1f1-1f1e7":[["🇱🇧"],"","",["flag-lb"],3,7,31,0],"1f1f1-1f1e8":[["🇱🇨"],"","",["flag-lc"],3,8,31,0],"1f1f1-1f1ee":[["🇱🇮"],"","",["flag-li"],3,9,31,0],"1f1f1-1f1f0":[["🇱🇰"],"","",["flag-lk"],3,10,31,0],"1f1f1-1f1f7":[["🇱🇷"],"","",["flag-lr"],3,11,31,0],"1f1f1-1f1f8":[["🇱🇸"],"","",["flag-ls"],3,12,31,0],"1f1f1-1f1f9":[["🇱🇹"],"","",["flag-lt"],3,13,31,0],"1f1f1-1f1fa":[["🇱🇺"],"","",["flag-lu"],3,14,31,0],"1f1f1-1f1fb":[["🇱🇻"],"","",["flag-lv"],3,15,31,0],"1f1f1-1f1fe":[["🇱🇾"],"","",["flag-ly"],3,16,31,0],"1f1f2-1f1e6":[["🇲🇦"],"","",["flag-ma"],3,17,31,0],"1f1f2-1f1e8":[["🇲🇨"],"","",["flag-mc"],3,18,31,0],"1f1f2-1f1e9":[["🇲🇩"],"","",["flag-md"],3,19,31,0],"1f1f2-1f1ea":[["🇲🇪"],"","",["flag-me"],3,20,31,0],"1f1f2-1f1eb":[["🇲🇫"],"","",["flag-mf"],3,21,29,0],"1f1f2-1f1ec":[["🇲🇬"],"","",["flag-mg"],3,22,31,0],"1f1f2-1f1ed":[["🇲🇭"],"","",["flag-mh"],3,23,31,0],"1f1f2-1f1f0":[["🇲🇰"],"","",["flag-mk"],3,24,31,0],"1f1f2-1f1f1":[["🇲🇱"],"","",["flag-ml"],3,25,31,0],"1f1f2-1f1f2":[["🇲🇲"],"","",["flag-mm"],3,26,31,0],"1f1f2-1f1f3":[["🇲🇳"],"","",["flag-mn"],3,27,31,0],"1f1f2-1f1f4":[["🇲🇴"],"","",["flag-mo"],3,28,31,0],"1f1f2-1f1f5":[["🇲🇵"],"","",["flag-mp"],3,29,31,0],"1f1f2-1f1f6":[["🇲🇶"],"","",["flag-mq"],3,30,29,0],"1f1f2-1f1f7":[["🇲🇷"],"","",["flag-mr"],3,31,31,0],"1f1f2-1f1f8":[["🇲🇸"],"","",["flag-ms"],3,32,31,0],"1f1f2-1f1f9":[["🇲🇹"],"","",["flag-mt"],3,33,31,0],"1f1f2-1f1fa":[["🇲🇺"],"","",["flag-mu"],3,34,31,0],"1f1f2-1f1fb":[["🇲🇻"],"","",["flag-mv"],3,35,31,0],"1f1f2-1f1fc":[["🇲🇼"],"","",["flag-mw"],3,36,31,0],"1f1f2-1f1fd":[["🇲🇽"],"","",["flag-mx"],3,37,31,0],"1f1f2-1f1fe":[["🇲🇾"],"","",["flag-my"],3,38,31,0],"1f1f2-1f1ff":[["🇲🇿"],"","",["flag-mz"],3,39,31,0],"1f1f3-1f1e6":[["🇳🇦"],"","",["flag-na"],3,40,31,0],"1f1f3-1f1e8":[["🇳🇨"],"","",["flag-nc"],3,41,29,0],"1f1f3-1f1ea":[["🇳🇪"],"","",["flag-ne"],3,42,31,0],"1f1f3-1f1eb":[["🇳🇫"],"","",["flag-nf"],3,43,31,0],"1f1f3-1f1ec":[["🇳🇬"],"","",["flag-ng"],3,44,31,0],"1f1f3-1f1ee":[["🇳🇮"],"","",["flag-ni"],3,45,31,0],"1f1f3-1f1f1":[["🇳🇱"],"","",["flag-nl"],3,46,31,0],"1f1f3-1f1f4":[["🇳🇴"],"","",["flag-no"],3,47,31,0],"1f1f3-1f1f5":[["🇳🇵"],"","",["flag-np"],3,48,31,0],"1f1f3-1f1f7":[["🇳🇷"],"","",["flag-nr"],3,49,31,0],"1f1f3-1f1fa":[["🇳🇺"],"","",["flag-nu"],3,50,31,0],"1f1f3-1f1ff":[["🇳🇿"],"","",["flag-nz"],3,51,31,0],"1f1f4-1f1f2":[["🇴🇲"],"","",["flag-om"],4,0,31,0],"1f1f5-1f1e6":[["🇵🇦"],"","",["flag-pa"],4,1,31,0],"1f1f5-1f1ea":[["🇵🇪"],"","",["flag-pe"],4,2,31,0],"1f1f5-1f1eb":[["🇵🇫"],"","",["flag-pf"],4,3,31,0],"1f1f5-1f1ec":[["🇵🇬"],"","",["flag-pg"],4,4,31,0],"1f1f5-1f1ed":[["🇵🇭"],"","",["flag-ph"],4,5,31,0],"1f1f5-1f1f0":[["🇵🇰"],"","",["flag-pk"],4,6,31,0],"1f1f5-1f1f1":[["🇵🇱"],"","",["flag-pl"],4,7,31,0],"1f1f5-1f1f2":[["🇵🇲"],"","",["flag-pm"],4,8,29,0],"1f1f5-1f1f3":[["🇵🇳"],"","",["flag-pn"],4,9,31,0],"1f1f5-1f1f7":[["🇵🇷"],"","",["flag-pr"],4,10,31,0],"1f1f5-1f1f8":[["🇵🇸"],"","",["flag-ps"],4,11,31,0],"1f1f5-1f1f9":[["🇵🇹"],"","",["flag-pt"],4,12,31,0],"1f1f5-1f1fc":[["🇵🇼"],"","",["flag-pw"],4,13,31,0],"1f1f5-1f1fe":[["🇵🇾"],"","",["flag-py"],4,14,31,0],"1f1f6-1f1e6":[["🇶🇦"],"","",["flag-qa"],4,15,31,0],"1f1f7-1f1ea":[["🇷🇪"],"","",["flag-re"],4,16,29,0],"1f1f7-1f1f4":[["🇷🇴"],"","",["flag-ro"],4,17,31,0],"1f1f7-1f1f8":[["🇷🇸"],"","",["flag-rs"],4,18,31,0],"1f1f7-1f1fa":[["🇷🇺"],"","󾓬",["ru","flag-ru"],4,19,31,0],"1f1f7-1f1fc":[["🇷🇼"],"","",["flag-rw"],4,20,31,0],"1f1f8-1f1e6":[["🇸🇦"],"","",["flag-sa"],4,21,31,0],"1f1f8-1f1e7":[["🇸🇧"],"","",["flag-sb"],4,22,31,0],"1f1f8-1f1e8":[["🇸🇨"],"","",["flag-sc"],4,23,31,0],"1f1f8-1f1e9":[["🇸🇩"],"","",["flag-sd"],4,24,31,0],"1f1f8-1f1ea":[["🇸🇪"],"","",["flag-se"],4,25,31,0],"1f1f8-1f1ec":[["🇸🇬"],"","",["flag-sg"],4,26,31,0],"1f1f8-1f1ed":[["🇸🇭"],"","",["flag-sh"],4,27,31,0],"1f1f8-1f1ee":[["🇸🇮"],"","",["flag-si"],4,28,31,0],"1f1f8-1f1ef":[["🇸🇯"],"","",["flag-sj"],4,29,31,0],"1f1f8-1f1f0":[["🇸🇰"],"","",["flag-sk"],4,30,31,0],"1f1f8-1f1f1":[["🇸🇱"],"","",["flag-sl"],4,31,31,0],"1f1f8-1f1f2":[["🇸🇲"],"","",["flag-sm"],4,32,31,0],"1f1f8-1f1f3":[["🇸🇳"],"","",["flag-sn"],4,33,31,0],"1f1f8-1f1f4":[["🇸🇴"],"","",["flag-so"],4,34,31,0],"1f1f8-1f1f7":[["🇸🇷"],"","",["flag-sr"],4,35,31,0],"1f1f8-1f1f8":[["🇸🇸"],"","",["flag-ss"],4,36,31,0],"1f1f8-1f1f9":[["🇸🇹"],"","",["flag-st"],4,37,31,0],"1f1f8-1f1fb":[["🇸🇻"],"","",["flag-sv"],4,38,31,0],"1f1f8-1f1fd":[["🇸🇽"],"","",["flag-sx"],4,39,31,0],"1f1f8-1f1fe":[["🇸🇾"],"","",["flag-sy"],4,40,31,0],"1f1f8-1f1ff":[["🇸🇿"],"","",["flag-sz"],4,41,31,0],"1f1f9-1f1e6":[["🇹🇦"],"","",["flag-ta"],4,42,31,0],"1f1f9-1f1e8":[["🇹🇨"],"","",["flag-tc"],4,43,31,0],"1f1f9-1f1e9":[["🇹🇩"],"","",["flag-td"],4,44,31,0],"1f1f9-1f1eb":[["🇹🇫"],"","",["flag-tf"],4,45,29,0],"1f1f9-1f1ec":[["🇹🇬"],"","",["flag-tg"],4,46,31,0],"1f1f9-1f1ed":[["🇹🇭"],"","",["flag-th"],4,47,31,0],"1f1f9-1f1ef":[["🇹🇯"],"","",["flag-tj"],4,48,31,0],"1f1f9-1f1f0":[["🇹🇰"],"","",["flag-tk"],4,49,31,0],"1f1f9-1f1f1":[["🇹🇱"],"","",["flag-tl"],4,50,31,0],"1f1f9-1f1f2":[["🇹🇲"],"","",["flag-tm"],4,51,31,0],"1f1f9-1f1f3":[["🇹🇳"],"","",["flag-tn"],5,0,31,0],"1f1f9-1f1f4":[["🇹🇴"],"","",["flag-to"],5,1,31,0],"1f1f9-1f1f7":[["🇹🇷"],"","",["flag-tr"],5,2,31,0],"1f1f9-1f1f9":[["🇹🇹"],"","",["flag-tt"],5,3,31,0],"1f1f9-1f1fb":[["🇹🇻"],"","",["flag-tv"],5,4,31,0],"1f1f9-1f1fc":[["🇹🇼"],"","",["flag-tw"],5,5,31,0],"1f1f9-1f1ff":[["🇹🇿"],"","",["flag-tz"],5,6,31,0],"1f1fa-1f1e6":[["🇺🇦"],"","",["flag-ua"],5,7,31,0],"1f1fa-1f1ec":[["🇺🇬"],"","",["flag-ug"],5,8,31,0],"1f1fa-1f1f2":[["🇺🇲"],"","",["flag-um"],5,9,31,0],"1f1fa-1f1f3":[["🇺🇳"],"","",["flag-un"],5,10,14,0],"1f1fa-1f1f8":[["🇺🇸"],"","󾓦",["us","flag-us"],5,11,31,0],"1f1fa-1f1fe":[["🇺🇾"],"","",["flag-uy"],5,12,31,0],"1f1fa-1f1ff":[["🇺🇿"],"","",["flag-uz"],5,13,31,0],"1f1fb-1f1e6":[["🇻🇦"],"","",["flag-va"],5,14,31,0],"1f1fb-1f1e8":[["🇻🇨"],"","",["flag-vc"],5,15,31,0],"1f1fb-1f1ea":[["🇻🇪"],"","",["flag-ve"],5,16,31,0],"1f1fb-1f1ec":[["🇻🇬"],"","",["flag-vg"],5,17,31,0],"1f1fb-1f1ee":[["🇻🇮"],"","",["flag-vi"],5,18,31,0],"1f1fb-1f1f3":[["🇻🇳"],"","",["flag-vn"],5,19,31,0],"1f1fb-1f1fa":[["🇻🇺"],"","",["flag-vu"],5,20,31,0],"1f1fc-1f1eb":[["🇼🇫"],"","",["flag-wf"],5,21,29,0],"1f1fc-1f1f8":[["🇼🇸"],"","",["flag-ws"],5,22,31,0],"1f1fd-1f1f0":[["🇽🇰"],"","",["flag-xk"],5,23,29,0],"1f1fe-1f1ea":[["🇾🇪"],"","",["flag-ye"],5,24,31,0],"1f1fe-1f1f9":[["🇾🇹"],"","",["flag-yt"],5,25,29,0],"1f1ff-1f1e6":[["🇿🇦"],"","",["flag-za"],5,26,31,0],"1f1ff-1f1f2":[["🇿🇲"],"","",["flag-zm"],5,27,31,0],"1f1ff-1f1fc":[["🇿🇼"],"","",["flag-zw"],5,28,31,0],"1f201":[["🈁"],"","󾬤",["koko"],5,29,31,0],"1f202-fe0f":[["🈂️","🈂"],"","󾬿",["sa"],5,30,31,0],"1f21a":[["🈚"],"","󾬺",["u7121"],5,31,31,0],"1f22f":[["🈯"],"","󾭀",["u6307"],5,32,31,0],"1f232":[["🈲"],"","󾬮",["u7981"],5,33,31,0],"1f233":[["🈳"],"","󾬯",["u7a7a"],5,34,31,0],"1f234":[["🈴"],"","󾬰",["u5408"],5,35,31,0],"1f235":[["🈵"],"","󾬱",["u6e80"],5,36,31,0],"1f236":[["🈶"],"","󾬹",["u6709"],5,37,31,0],"1f237-fe0f":[["🈷️","🈷"],"","󾬻",["u6708"],5,38,31,0],"1f238":[["🈸"],"","󾬼",["u7533"],5,39,31,0],"1f239":[["🈹"],"","󾬾",["u5272"],5,40,31,0],"1f23a":[["🈺"],"","󾭁",["u55b6"],5,41,31,0],"1f250":[["🉐"],"","󾬽",["ideograph_advantage"],5,42,31,0],"1f251":[["🉑"],"","󾭐",["accept"],5,43,31,0],"1f300":[["🌀"],"","󾀅",["cyclone"],5,44,31,0],"1f301":[["🌁"],"","󾀆",["foggy"],5,45,31,0],"1f302":[["🌂"],"","󾀇",["closed_umbrella"],5,46,31,0],"1f303":[["🌃"],"","󾀈",["night_with_stars"],5,47,31,0],"1f304":[["🌄"],"","󾀉",["sunrise_over_mountains"],5,48,31,0],"1f305":[["🌅"],"","󾀊",["sunrise"],5,49,31,0],"1f306":[["🌆"],"","󾀋",["city_sunset"],5,50,31,0],"1f307":[["🌇"],"","󾀌",["city_sunrise"],5,51,31,0],"1f308":[["🌈"],"","󾀍",["rainbow"],6,0,31,0],"1f309":[["🌉"],"","󾀐",["bridge_at_night"],6,1,31,0],"1f30a":[["🌊"],"","󾀸",["ocean"],6,2,31,0],"1f30b":[["🌋"],"","󾀺",["volcano"],6,3,31,0],"1f30c":[["🌌"],"","󾀻",["milky_way"],6,4,31,0],"1f30d":[["🌍"],"","",["earth_africa"],6,5,31,0],"1f30e":[["🌎"],"","",["earth_americas"],6,6,31,0],"1f30f":[["🌏"],"","󾀹",["earth_asia"],6,7,31,0],"1f310":[["🌐"],"","",["globe_with_meridians"],6,8,31,0],"1f311":[["🌑"],"","󾀑",["new_moon"],6,9,31,0],"1f312":[["🌒"],"","",["waxing_crescent_moon"],6,10,31,0],"1f313":[["🌓"],"","󾀓",["first_quarter_moon"],6,11,31,0],"1f314":[["🌔"],"","󾀒",["moon","waxing_gibbous_moon"],6,12,31,0],"1f315":[["🌕"],"","󾀕",["full_moon"],6,13,31,0],"1f316":[["🌖"],"","",["waning_gibbous_moon"],6,14,31,0],"1f317":[["🌗"],"","",["last_quarter_moon"],6,15,31,0],"1f318":[["🌘"],"","",["waning_crescent_moon"],6,16,31,0],"1f319":[["🌙"],"","󾀔",["crescent_moon"],6,17,31,0],"1f31a":[["🌚"],"","",["new_moon_with_face"],6,18,31,0],"1f31b":[["🌛"],"","󾀖",["first_quarter_moon_with_face"],6,19,31,0],"1f31c":[["🌜"],"","",["last_quarter_moon_with_face"],6,20,31,0],"1f31d":[["🌝"],"","",["full_moon_with_face"],6,21,31,0],"1f31e":[["🌞"],"","",["sun_with_face"],6,22,31,0],"1f31f":[["🌟"],"","󾭩",["star2"],6,23,31,0],"1f320":[["🌠"],"","󾭪",["stars"],6,24,31,0],"1f321-fe0f":[["🌡️","🌡"],"","",["thermometer"],6,25,15,0],"1f324-fe0f":[["🌤️","🌤"],"","",["mostly_sunny","sun_small_cloud"],6,26,15,0],"1f325-fe0f":[["🌥️","🌥"],"","",["barely_sunny","sun_behind_cloud"],6,27,15,0],"1f326-fe0f":[["🌦️","🌦"],"","",["partly_sunny_rain","sun_behind_rain_cloud"],6,28,15,0],"1f327-fe0f":[["🌧️","🌧"],"","",["rain_cloud"],6,29,15,0],"1f328-fe0f":[["🌨️","🌨"],"","",["snow_cloud"],6,30,15,0],"1f329-fe0f":[["🌩️","🌩"],"","",["lightning","lightning_cloud"],6,31,15,0],"1f32a-fe0f":[["🌪️","🌪"],"","",["tornado","tornado_cloud"],6,32,15,0],"1f32b-fe0f":[["🌫️","🌫"],"","",["fog"],6,33,15,0],"1f32c-fe0f":[["🌬️","🌬"],"","",["wind_blowing_face"],6,34,15,0],"1f32d":[["🌭"],"","",["hotdog"],6,35,15,0],"1f32e":[["🌮"],"","",["taco"],6,36,15,0],"1f32f":[["🌯"],"","",["burrito"],6,37,15,0],"1f330":[["🌰"],"","󾁌",["chestnut"],6,38,31,0],"1f331":[["🌱"],"","󾀾",["seedling"],6,39,31,0],"1f332":[["🌲"],"","",["evergreen_tree"],6,40,31,0],"1f333":[["🌳"],"","",["deciduous_tree"],6,41,31,0],"1f334":[["🌴"],"","󾁇",["palm_tree"],6,42,31,0],"1f335":[["🌵"],"","󾁈",["cactus"],6,43,31,0],"1f336-fe0f":[["🌶️","🌶"],"","",["hot_pepper"],6,44,15,0],"1f337":[["🌷"],"","󾀽",["tulip"],6,45,31,0],"1f338":[["🌸"],"","󾁀",["cherry_blossom"],6,46,31,0],"1f339":[["🌹"],"","󾁁",["rose"],6,47,31,0],"1f33a":[["🌺"],"","󾁅",["hibiscus"],6,48,31,0],"1f33b":[["🌻"],"","󾁆",["sunflower"],6,49,31,0],"1f33c":[["🌼"],"","󾁍",["blossom"],6,50,31,0],"1f33d":[["🌽"],"","󾁊",["corn"],6,51,31,0],"1f33e":[["🌾"],"","󾁉",["ear_of_rice"],7,0,31,0],"1f33f":[["🌿"],"","󾁎",["herb"],7,1,31,0],"1f340":[["🍀"],"","󾀼",["four_leaf_clover"],7,2,31,0],"1f341":[["🍁"],"","󾀿",["maple_leaf"],7,3,31,0],"1f342":[["🍂"],"","󾁂",["fallen_leaf"],7,4,31,0],"1f343":[["🍃"],"","󾁃",["leaves"],7,5,31,0],"1f344":[["🍄"],"","󾁋",["mushroom"],7,6,31,0],"1f345":[["🍅"],"","󾁕",["tomato"],7,7,31,0],"1f346":[["🍆"],"","󾁖",["eggplant"],7,8,31,0],"1f347":[["🍇"],"","󾁙",["grapes"],7,9,31,0],"1f348":[["🍈"],"","󾁗",["melon"],7,10,31,0],"1f349":[["🍉"],"","󾁔",["watermelon"],7,11,31,0],"1f34a":[["🍊"],"","󾁒",["tangerine"],7,12,31,0],"1f34b":[["🍋"],"","",["lemon"],7,13,31,0],"1f34c":[["🍌"],"","󾁐",["banana"],7,14,31,0],"1f34d":[["🍍"],"","󾁘",["pineapple"],7,15,31,0],"1f34e":[["🍎"],"","󾁑",["apple"],7,16,31,0],"1f34f":[["🍏"],"","󾁛",["green_apple"],7,17,31,0],"1f350":[["🍐"],"","",["pear"],7,18,31,0],"1f351":[["🍑"],"","󾁚",["peach"],7,19,31,0],"1f352":[["🍒"],"","󾁏",["cherries"],7,20,31,0],"1f353":[["🍓"],"","󾁓",["strawberry"],7,21,31,0],"1f354":[["🍔"],"","󾥠",["hamburger"],7,22,31,0],"1f355":[["🍕"],"","󾥵",["pizza"],7,23,31,0],"1f356":[["🍖"],"","󾥲",["meat_on_bone"],7,24,31,0],"1f357":[["🍗"],"","󾥶",["poultry_leg"],7,25,31,0],"1f358":[["🍘"],"","󾥩",["rice_cracker"],7,26,31,0],"1f359":[["🍙"],"","󾥡",["rice_ball"],7,27,31,0],"1f35a":[["🍚"],"","󾥪",["rice"],7,28,31,0],"1f35b":[["🍛"],"","󾥬",["curry"],7,29,31,0],"1f35c":[["🍜"],"","󾥣",["ramen"],7,30,31,0],"1f35d":[["🍝"],"","󾥫",["spaghetti"],7,31,31,0],"1f35e":[["🍞"],"","󾥤",["bread"],7,32,31,0],"1f35f":[["🍟"],"","󾥧",["fries"],7,33,31,0],"1f360":[["🍠"],"","󾥴",["sweet_potato"],7,34,31,0],"1f361":[["🍡"],"","󾥨",["dango"],7,35,31,0],"1f362":[["🍢"],"","󾥭",["oden"],7,36,31,0],"1f363":[["🍣"],"","󾥮",["sushi"],7,37,31,0],"1f364":[["🍤"],"","󾥿",["fried_shrimp"],7,38,31,0],"1f365":[["🍥"],"","󾥳",["fish_cake"],7,39,31,0],"1f366":[["🍦"],"","󾥦",["icecream"],7,40,31,0],"1f367":[["🍧"],"","󾥱",["shaved_ice"],7,41,31,0],"1f368":[["🍨"],"","󾥷",["ice_cream"],7,42,31,0],"1f369":[["🍩"],"","󾥸",["doughnut"],7,43,31,0],"1f36a":[["🍪"],"","󾥹",["cookie"],7,44,31,0],"1f36b":[["🍫"],"","󾥺",["chocolate_bar"],7,45,31,0],"1f36c":[["🍬"],"","󾥻",["candy"],7,46,31,0],"1f36d":[["🍭"],"","󾥼",["lollipop"],7,47,31,0],"1f36e":[["🍮"],"","󾥽",["custard"],7,48,31,0],"1f36f":[["🍯"],"","󾥾",["honey_pot"],7,49,31,0],"1f370":[["🍰"],"","󾥢",["cake"],7,50,31,0],"1f371":[["🍱"],"","󾥯",["bento"],7,51,31,0],"1f372":[["🍲"],"","󾥰",["stew"],8,0,31,0],"1f373":[["🍳"],"","󾥥",["fried_egg","cooking"],8,1,31,0],"1f374":[["🍴"],"","󾦀",["fork_and_knife"],8,2,31,0],"1f375":[["🍵"],"","󾦄",["tea"],8,3,31,0],"1f376":[["🍶"],"","󾦅",["sake"],8,4,31,0],"1f377":[["🍷"],"","󾦆",["wine_glass"],8,5,31,0],"1f378":[["🍸"],"","󾦂",["cocktail"],8,6,31,0],"1f379":[["🍹"],"","󾦈",["tropical_drink"],8,7,31,0],"1f37a":[["🍺"],"","󾦃",["beer"],8,8,31,0],"1f37b":[["🍻"],"","󾦇",["beers"],8,9,31,0],"1f37c":[["🍼"],"","",["baby_bottle"],8,10,31,0],"1f37d-fe0f":[["🍽️","🍽"],"","",["knife_fork_plate"],8,11,15,0],"1f37e":[["🍾"],"","",["champagne"],8,12,15,0],"1f37f":[["🍿"],"","",["popcorn"],8,13,15,0],"1f380":[["🎀"],"","󾔏",["ribbon"],8,14,31,0],"1f381":[["🎁"],"","󾔐",["gift"],8,15,31,0],"1f382":[["🎂"],"","󾔑",["birthday"],8,16,31,0],"1f383":[["🎃"],"","󾔟",["jack_o_lantern"],8,17,31,0],"1f384":[["🎄"],"","󾔒",["christmas_tree"],8,18,31,0],"1f385":[["🎅"],"","󾔓",["santa"],8,19,31,0],"1f386":[["🎆"],"","󾔕",["fireworks"],8,25,31,0],"1f387":[["🎇"],"","󾔝",["sparkler"],8,26,31,0],"1f388":[["🎈"],"","󾔖",["balloon"],8,27,31,0],"1f389":[["🎉"],"","󾔗",["tada"],8,28,31,0],"1f38a":[["🎊"],"","󾔠",["confetti_ball"],8,29,31,0],"1f38b":[["🎋"],"","󾔡",["tanabata_tree"],8,30,31,0],"1f38c":[["🎌"],"","󾔔",["crossed_flags"],8,31,31,0],"1f38d":[["🎍"],"","󾔘",["bamboo"],8,32,31,0],"1f38e":[["🎎"],"","󾔙",["dolls"],8,33,31,0],"1f38f":[["🎏"],"","󾔜",["flags"],8,34,31,0],"1f390":[["🎐"],"","󾔞",["wind_chime"],8,35,31,0],"1f391":[["🎑"],"","󾀗",["rice_scene"],8,36,31,0],"1f392":[["🎒"],"","󾔛",["school_satchel"],8,37,31,0],"1f393":[["🎓"],"","󾔚",["mortar_board"],8,38,31,0],"1f396-fe0f":[["🎖️","🎖"],"","",["medal"],8,39,15,0],"1f397-fe0f":[["🎗️","🎗"],"","",["reminder_ribbon"],8,40,15,0],"1f399-fe0f":[["🎙️","🎙"],"","",["studio_microphone"],8,41,15,0],"1f39a-fe0f":[["🎚️","🎚"],"","",["level_slider"],8,42,15,0],"1f39b-fe0f":[["🎛️","🎛"],"","",["control_knobs"],8,43,15,0],"1f39e-fe0f":[["🎞️","🎞"],"","",["film_frames"],8,44,15,0],"1f39f-fe0f":[["🎟️","🎟"],"","",["admission_tickets"],8,45,15,0],"1f3a0":[["🎠"],"","󾟼",["carousel_horse"],8,46,31,0],"1f3a1":[["🎡"],"","󾟽",["ferris_wheel"],8,47,31,0],"1f3a2":[["🎢"],"","󾟾",["roller_coaster"],8,48,31,0],"1f3a3":[["🎣"],"","󾟿",["fishing_pole_and_fish"],8,49,31,0],"1f3a4":[["🎤"],"","󾠀",["microphone"],8,50,31,0],"1f3a5":[["🎥"],"","󾠁",["movie_camera"],8,51,31,0],"1f3a6":[["🎦"],"","󾠂",["cinema"],9,0,31,0],"1f3a7":[["🎧"],"","󾠃",["headphones"],9,1,31,0],"1f3a8":[["🎨"],"","󾠄",["art"],9,2,31,0],"1f3a9":[["🎩"],"","󾠅",["tophat"],9,3,31,0],"1f3aa":[["🎪"],"","󾠆",["circus_tent"],9,4,31,0],"1f3ab":[["🎫"],"","󾠇",["ticket"],9,5,31,0],"1f3ac":[["🎬"],"","󾠈",["clapper"],9,6,31,0],"1f3ad":[["🎭"],"","󾠉",["performing_arts"],9,7,31,0],"1f3ae":[["🎮"],"","󾠊",["video_game"],9,8,31,0],"1f3af":[["🎯"],"","󾠌",["dart"],9,9,31,0],"1f3b0":[["🎰"],"","󾠍",["slot_machine"],9,10,31,0],"1f3b1":[["🎱"],"","󾠎",["8ball"],9,11,31,0],"1f3b2":[["🎲"],"","󾠏",["game_die"],9,12,31,0],"1f3b3":[["🎳"],"","󾠐",["bowling"],9,13,31,0],"1f3b4":[["🎴"],"","󾠑",["flower_playing_cards"],9,14,31,0],"1f3b5":[["🎵"],"","󾠓",["musical_note"],9,15,31,0],"1f3b6":[["🎶"],"","󾠔",["notes"],9,16,31,0],"1f3b7":[["🎷"],"","󾠕",["saxophone"],9,17,31,0],"1f3b8":[["🎸"],"","󾠖",["guitar"],9,18,31,0],"1f3b9":[["🎹"],"","󾠗",["musical_keyboard"],9,19,31,0],"1f3ba":[["🎺"],"","󾠘",["trumpet"],9,20,31,0],"1f3bb":[["🎻"],"","󾠙",["violin"],9,21,31,0],"1f3bc":[["🎼"],"","󾠚",["musical_score"],9,22,31,0],"1f3bd":[["🎽"],"","󾟐",["running_shirt_with_sash"],9,23,31,0],"1f3be":[["🎾"],"","󾟓",["tennis"],9,24,31,0],"1f3bf":[["🎿"],"","󾟕",["ski"],9,25,31,0],"1f3c0":[["🏀"],"","󾟖",["basketball"],9,26,31,0],"1f3c1":[["🏁"],"","󾟗",["checkered_flag"],9,27,31,0],"1f3c2":[["🏂"],"","󾟘",["snowboarder"],9,28,31,0],"1f3c3-200d-2640-fe0f":[["🏃‍♀️","🏃‍♀"],"","",["woman-running"],9,34,15,0],"1f3c3-200d-2642-fe0f":[["🏃‍♂️","🏃‍♂","🏃"],"","",["man-running","runner","running"],9,40,15,0],"1f3c4-200d-2640-fe0f":[["🏄‍♀️","🏄‍♀"],"","",["woman-surfing"],10,0,15,0],"1f3c4-200d-2642-fe0f":[["🏄‍♂️","🏄‍♂","🏄"],"","",["man-surfing","surfer"],10,6,15,0],"1f3c5":[["🏅"],"","",["sports_medal"],10,18,15,0],"1f3c6":[["🏆"],"","󾟛",["trophy"],10,19,31,0],"1f3c7":[["🏇"],"","",["horse_racing"],10,20,31,0],"1f3c8":[["🏈"],"","󾟝",["football"],10,26,31,0],"1f3c9":[["🏉"],"","",["rugby_football"],10,27,31,0],"1f3ca-200d-2640-fe0f":[["🏊‍♀️","🏊‍♀"],"","",["woman-swimming"],10,28,15,0],"1f3ca-200d-2642-fe0f":[["🏊‍♂️","🏊‍♂","🏊"],"","",["man-swimming","swimmer"],10,34,15,0],"1f3cb-fe0f-200d-2640-fe0f":[["🏋️‍♀️"],"","",["woman-lifting-weights"],10,46,7,0],"1f3cb-fe0f-200d-2642-fe0f":[["🏋️‍♂️","🏋️","🏋"],"","",["man-lifting-weights","weight_lifter"],11,0,7,0],"1f3cc-fe0f-200d-2640-fe0f":[["🏌️‍♀️"],"","",["woman-golfing"],11,12,7,0],"1f3cc-fe0f-200d-2642-fe0f":[["🏌️‍♂️","🏌️","🏌"],"","",["man-golfing","golfer"],11,18,7,0],"1f3cd-fe0f":[["🏍️","🏍"],"","",["racing_motorcycle"],11,30,15,0],"1f3ce-fe0f":[["🏎️","🏎"],"","",["racing_car"],11,31,15,0],"1f3cf":[["🏏"],"","",["cricket_bat_and_ball"],11,32,15,0],"1f3d0":[["🏐"],"","",["volleyball"],11,33,15,0],"1f3d1":[["🏑"],"","",["field_hockey_stick_and_ball"],11,34,15,0],"1f3d2":[["🏒"],"","",["ice_hockey_stick_and_puck"],11,35,15,0],"1f3d3":[["🏓"],"","",["table_tennis_paddle_and_ball"],11,36,15,0],"1f3d4-fe0f":[["🏔️","🏔"],"","",["snow_capped_mountain"],11,37,15,0],"1f3d5-fe0f":[["🏕️","🏕"],"","",["camping"],11,38,15,0],"1f3d6-fe0f":[["🏖️","🏖"],"","",["beach_with_umbrella"],11,39,15,0],"1f3d7-fe0f":[["🏗️","🏗"],"","",["building_construction"],11,40,15,0],"1f3d8-fe0f":[["🏘️","🏘"],"","",["house_buildings"],11,41,15,0],"1f3d9-fe0f":[["🏙️","🏙"],"","",["cityscape"],11,42,15,0],"1f3da-fe0f":[["🏚️","🏚"],"","",["derelict_house_building"],11,43,15,0],"1f3db-fe0f":[["🏛️","🏛"],"","",["classical_building"],11,44,15,0],"1f3dc-fe0f":[["🏜️","🏜"],"","",["desert"],11,45,15,0],"1f3dd-fe0f":[["🏝️","🏝"],"","",["desert_island"],11,46,15,0],"1f3de-fe0f":[["🏞️","🏞"],"","",["national_park"],11,47,15,0],"1f3df-fe0f":[["🏟️","🏟"],"","",["stadium"],11,48,15,0],"1f3e0":[["🏠"],"","󾒰",["house"],11,49,31,0],"1f3e1":[["🏡"],"","󾒱",["house_with_garden"],11,50,31,0],"1f3e2":[["🏢"],"","󾒲",["office"],11,51,31,0],"1f3e3":[["🏣"],"","󾒳",["post_office"],12,0,31,0],"1f3e4":[["🏤"],"","",["european_post_office"],12,1,31,0],"1f3e5":[["🏥"],"","󾒴",["hospital"],12,2,31,0],"1f3e6":[["🏦"],"","󾒵",["bank"],12,3,31,0],"1f3e7":[["🏧"],"","󾒶",["atm"],12,4,31,0],"1f3e8":[["🏨"],"","󾒷",["hotel"],12,5,31,0],"1f3e9":[["🏩"],"","󾒸",["love_hotel"],12,6,31,0],"1f3ea":[["🏪"],"","󾒹",["convenience_store"],12,7,31,0],"1f3eb":[["🏫"],"","󾒺",["school"],12,8,31,0],"1f3ec":[["🏬"],"","󾒽",["department_store"],12,9,31,0],"1f3ed":[["🏭"],"","󾓀",["factory"],12,10,31,0],"1f3ee":[["🏮"],"","󾓂",["izakaya_lantern","lantern"],12,11,31,0],"1f3ef":[["🏯"],"","󾒾",["japanese_castle"],12,12,31,0],"1f3f0":[["🏰"],"","󾒿",["european_castle"],12,13,31,0],"1f3f3-fe0f-200d-1f308":[["🏳️‍🌈","🏳‍🌈"],"","",["rainbow-flag"],12,14,31,0],"1f3f3-fe0f":[["🏳️","🏳"],"","",["waving_white_flag"],12,15,15,0],"1f3f4-e0067-e0062-e0065-e006e-e0067-e007f":[["🏴󠁧󠁢󠁥󠁮󠁧󠁿"],"","",["flag-england"],12,16,15,0],"1f3f4-e0067-e0062-e0073-e0063-e0074-e007f":[["🏴󠁧󠁢󠁳󠁣󠁴󠁿"],"","",["flag-scotland"],12,17,15,0],"1f3f4-e0067-e0062-e0077-e006c-e0073-e007f":[["🏴󠁧󠁢󠁷󠁬󠁳󠁿"],"","",["flag-wales"],12,18,15,0],"1f3f4":[["🏴"],"","",["waving_black_flag"],12,19,15,0],"1f3f5-fe0f":[["🏵️","🏵"],"","",["rosette"],12,20,15,0],"1f3f7-fe0f":[["🏷️","🏷"],"","",["label"],12,21,15,0],"1f3f8":[["🏸"],"","",["badminton_racquet_and_shuttlecock"],12,22,15,0],"1f3f9":[["🏹"],"","",["bow_and_arrow"],12,23,15,0],"1f3fa":[["🏺"],"","",["amphora"],12,24,15,0],"1f3fb":[["🏻"],"","",["skin-tone-2"],12,25,15,0],"1f3fc":[["🏼"],"","",["skin-tone-3"],12,26,15,0],"1f3fd":[["🏽"],"","",["skin-tone-4"],12,27,15,0],"1f3fe":[["🏾"],"","",["skin-tone-5"],12,28,15,0],"1f3ff":[["🏿"],"","",["skin-tone-6"],12,29,15,0],"1f400":[["🐀"],"","",["rat"],12,30,31,0],"1f401":[["🐁"],"","",["mouse2"],12,31,31,0],"1f402":[["🐂"],"","",["ox"],12,32,31,0],"1f403":[["🐃"],"","",["water_buffalo"],12,33,31,0],"1f404":[["🐄"],"","",["cow2"],12,34,31,0],"1f405":[["🐅"],"","",["tiger2"],12,35,31,0],"1f406":[["🐆"],"","",["leopard"],12,36,31,0],"1f407":[["🐇"],"","",["rabbit2"],12,37,31,0],"1f408":[["🐈"],"","",["cat2"],12,38,31,0],"1f409":[["🐉"],"","",["dragon"],12,39,31,0],"1f40a":[["🐊"],"","",["crocodile"],12,40,31,0],"1f40b":[["🐋"],"","",["whale2"],12,41,31,0],"1f40c":[["🐌"],"","󾆹",["snail"],12,42,31,0],"1f40d":[["🐍"],"","󾇓",["snake"],12,43,31,0],"1f40e":[["🐎"],"","󾟜",["racehorse"],12,44,31,0],"1f40f":[["🐏"],"","",["ram"],12,45,31,0],"1f410":[["🐐"],"","",["goat"],12,46,31,0],"1f411":[["🐑"],"","󾇏",["sheep"],12,47,31,0],"1f412":[["🐒"],"","󾇎",["monkey"],12,48,31,0],"1f413":[["🐓"],"","",["rooster"],12,49,31,0],"1f414":[["🐔"],"","󾇔",["chicken"],12,50,31,0],"1f415":[["🐕"],"","",["dog2"],12,51,31,0],"1f416":[["🐖"],"","",["pig2"],13,0,31,0],"1f417":[["🐗"],"","󾇕",["boar"],13,1,31,0],"1f418":[["🐘"],"","󾇌",["elephant"],13,2,31,0],"1f419":[["🐙"],"","󾇅",["octopus"],13,3,31,0],"1f41a":[["🐚"],"","󾇆",["shell"],13,4,31,0],"1f41b":[["🐛"],"","󾇋",["bug"],13,5,31,0],"1f41c":[["🐜"],"","󾇚",["ant"],13,6,31,0],"1f41d":[["🐝"],"","󾇡",["bee","honeybee"],13,7,31,0],"1f41e":[["🐞"],"","󾇢",["beetle"],13,8,31,0],"1f41f":[["🐟"],"","󾆽",["fish"],13,9,31,0],"1f420":[["🐠"],"","󾇉",["tropical_fish"],13,10,31,0],"1f421":[["🐡"],"","󾇙",["blowfish"],13,11,31,0],"1f422":[["🐢"],"","󾇜",["turtle"],13,12,31,0],"1f423":[["🐣"],"","󾇝",["hatching_chick"],13,13,31,0],"1f424":[["🐤"],"","󾆺",["baby_chick"],13,14,31,0],"1f425":[["🐥"],"","󾆻",["hatched_chick"],13,15,31,0],"1f426":[["🐦"],"","󾇈",["bird"],13,16,31,0],"1f427":[["🐧"],"","󾆼",["penguin"],13,17,31,0],"1f428":[["🐨"],"","󾇍",["koala"],13,18,31,0],"1f429":[["🐩"],"","󾇘",["poodle"],13,19,31,0],"1f42a":[["🐪"],"","",["dromedary_camel"],13,20,31,0],"1f42b":[["🐫"],"","󾇖",["camel"],13,21,31,0],"1f42c":[["🐬"],"","󾇇",["dolphin","flipper"],13,22,31,0],"1f42d":[["🐭"],"","󾇂",["mouse"],13,23,31,0],"1f42e":[["🐮"],"","󾇑",["cow"],13,24,31,0],"1f42f":[["🐯"],"","󾇀",["tiger"],13,25,31,0],"1f430":[["🐰"],"","󾇒",["rabbit"],13,26,31,0],"1f431":[["🐱"],"","󾆸",["cat"],13,27,31,0],"1f432":[["🐲"],"","󾇞",["dragon_face"],13,28,31,0],"1f433":[["🐳"],"","󾇃",["whale"],13,29,31,0],"1f434":[["🐴"],"","󾆾",["horse"],13,30,31,0],"1f435":[["🐵"],"","󾇄",["monkey_face"],13,31,31,0],"1f436":[["🐶"],"","󾆷",["dog"],13,32,31,0],"1f437":[["🐷"],"","󾆿",["pig"],13,33,31,0],"1f438":[["🐸"],"","󾇗",["frog"],13,34,31,0],"1f439":[["🐹"],"","󾇊",["hamster"],13,35,31,0],"1f43a":[["🐺"],"","󾇐",["wolf"],13,36,31,0],"1f43b":[["🐻"],"","󾇁",["bear"],13,37,31,0],"1f43c":[["🐼"],"","󾇟",["panda_face"],13,38,31,0],"1f43d":[["🐽"],"","󾇠",["pig_nose"],13,39,31,0],"1f43e":[["🐾"],"","󾇛",["feet","paw_prints"],13,40,31,0],"1f43f-fe0f":[["🐿️","🐿"],"","",["chipmunk"],13,41,15,0],"1f440":[["👀"],"","󾆐",["eyes"],13,42,31,0],"1f441-fe0f-200d-1f5e8-fe0f":[["👁️‍🗨️"],"","",["eye-in-speech-bubble"],13,43,3,0],"1f441-fe0f":[["👁️","👁"],"","",["eye"],13,44,15,0],"1f442":[["👂"],"","󾆑",["ear"],13,45,31,0],"1f443":[["👃"],"","󾆒",["nose"],13,51,31,0],"1f444":[["👄"],"","󾆓",["lips"],14,5,31,0],"1f445":[["👅"],"","󾆔",["tongue"],14,6,31,0],"1f446":[["👆"],"","󾮙",["point_up_2"],14,7,31,0],"1f447":[["👇"],"","󾮚",["point_down"],14,13,31,0],"1f448":[["👈"],"","󾮛",["point_left"],14,19,31,0],"1f449":[["👉"],"","󾮜",["point_right"],14,25,31,0],"1f44a":[["👊"],"","󾮖",["facepunch","punch"],14,31,31,0],"1f44b":[["👋"],"","󾮝",["wave"],14,37,31,0],"1f44c":[["👌"],"","󾮟",["ok_hand"],14,43,31,0],"1f44d":[["👍"],"","󾮗",["+1","thumbsup"],14,49,31,0],"1f44e":[["👎"],"","󾮠",["-1","thumbsdown"],15,3,31,0],"1f44f":[["👏"],"","󾮞",["clap"],15,9,31,0],"1f450":[["👐"],"","󾮡",["open_hands"],15,15,31,0],"1f451":[["👑"],"","󾓑",["crown"],15,21,31,0],"1f452":[["👒"],"","󾓔",["womans_hat"],15,22,31,0],"1f453":[["👓"],"","󾓎",["eyeglasses"],15,23,31,0],"1f454":[["👔"],"","󾓓",["necktie"],15,24,31,0],"1f455":[["👕"],"","󾓏",["shirt","tshirt"],15,25,31,0],"1f456":[["👖"],"","󾓐",["jeans"],15,26,31,0],"1f457":[["👗"],"","󾓕",["dress"],15,27,31,0],"1f458":[["👘"],"","󾓙",["kimono"],15,28,31,0],"1f459":[["👙"],"","󾓚",["bikini"],15,29,31,0],"1f45a":[["👚"],"","󾓛",["womans_clothes"],15,30,31,0],"1f45b":[["👛"],"","󾓜",["purse"],15,31,31,0],"1f45c":[["👜"],"","󾓰",["handbag"],15,32,31,0],"1f45d":[["👝"],"","󾓱",["pouch"],15,33,31,0],"1f45e":[["👞"],"","󾓌",["mans_shoe","shoe"],15,34,31,0],"1f45f":[["👟"],"","󾓍",["athletic_shoe"],15,35,31,0],"1f460":[["👠"],"","󾓖",["high_heel"],15,36,31,0],"1f461":[["👡"],"","󾓗",["sandal"],15,37,31,0],"1f462":[["👢"],"","󾓘",["boot"],15,38,31,0],"1f463":[["👣"],"","󾕓",["footprints"],15,39,31,0],"1f464":[["👤"],"","󾆚",["bust_in_silhouette"],15,40,31,0],"1f465":[["👥"],"","",["busts_in_silhouette"],15,41,31,0],"1f466":[["👦"],"","󾆛",["boy"],15,42,31,0],"1f467":[["👧"],"","󾆜",["girl"],15,48,31,0],"1f468-200d-1f33e":[["👨‍🌾"],"","",["male-farmer"],16,2,15,0],"1f468-200d-1f373":[["👨‍🍳"],"","",["male-cook"],16,8,15,0],"1f468-200d-1f393":[["👨‍🎓"],"","",["male-student"],16,14,15,0],"1f468-200d-1f3a4":[["👨‍🎤"],"","",["male-singer"],16,20,15,0],"1f468-200d-1f3a8":[["👨‍🎨"],"","",["male-artist"],16,26,15,0],"1f468-200d-1f3eb":[["👨‍🏫"],"","",["male-teacher"],16,32,15,0],"1f468-200d-1f3ed":[["👨‍🏭"],"","",["male-factory-worker"],16,38,15,0],"1f468-200d-1f466-200d-1f466":[["👨‍👦‍👦"],"","",["man-boy-boy"],16,44,15,0],"1f468-200d-1f466":[["👨‍👦"],"","",["man-boy"],16,45,15,0],"1f468-200d-1f467-200d-1f466":[["👨‍👧‍👦"],"","",["man-girl-boy"],16,46,15,0],"1f468-200d-1f467-200d-1f467":[["👨‍👧‍👧"],"","",["man-girl-girl"],16,47,15,0],"1f468-200d-1f467":[["👨‍👧"],"","",["man-girl"],16,48,15,0],"1f468-200d-1f468-200d-1f466":[["👨‍👨‍👦"],"","",["man-man-boy"],16,49,31,0],"1f468-200d-1f468-200d-1f466-200d-1f466":[["👨‍👨‍👦‍👦"],"","",["man-man-boy-boy"],16,50,31,0],"1f468-200d-1f468-200d-1f467":[["👨‍👨‍👧"],"","",["man-man-girl"],16,51,31,0],"1f468-200d-1f468-200d-1f467-200d-1f466":[["👨‍👨‍👧‍👦"],"","",["man-man-girl-boy"],17,0,31,0],"1f468-200d-1f468-200d-1f467-200d-1f467":[["👨‍👨‍👧‍👧"],"","",["man-man-girl-girl"],17,1,31,0],"1f468-200d-1f469-200d-1f466":[["👨‍👩‍👦","👪"],"","",["man-woman-boy","family"],17,2,31,0],"1f468-200d-1f469-200d-1f466-200d-1f466":[["👨‍👩‍👦‍👦"],"","",["man-woman-boy-boy"],17,3,31,0],"1f468-200d-1f469-200d-1f467":[["👨‍👩‍👧"],"","",["man-woman-girl"],17,4,31,0],"1f468-200d-1f469-200d-1f467-200d-1f466":[["👨‍👩‍👧‍👦"],"","",["man-woman-girl-boy"],17,5,31,0],"1f468-200d-1f469-200d-1f467-200d-1f467":[["👨‍👩‍👧‍👧"],"","",["man-woman-girl-girl"],17,6,31,0],"1f468-200d-1f4bb":[["👨‍💻"],"","",["male-technologist"],17,7,15,0],"1f468-200d-1f4bc":[["👨‍💼"],"","",["male-office-worker"],17,13,15,0],"1f468-200d-1f527":[["👨‍🔧"],"","",["male-mechanic"],17,19,15,0],"1f468-200d-1f52c":[["👨‍🔬"],"","",["male-scientist"],17,25,15,0],"1f468-200d-1f680":[["👨‍🚀"],"","",["male-astronaut"],17,31,15,0],"1f468-200d-1f692":[["👨‍🚒"],"","",["male-firefighter"],17,37,15,0],"1f468-200d-2695-fe0f":[["👨‍⚕️","👨‍⚕"],"","",["male-doctor"],17,43,15,0],"1f468-200d-2696-fe0f":[["👨‍⚖️","👨‍⚖"],"","",["male-judge"],17,49,15,0],"1f468-200d-2708-fe0f":[["👨‍✈️","👨‍✈"],"","",["male-pilot"],18,3,15,0],"1f468-200d-2764-fe0f-200d-1f468":[["👨‍❤️‍👨","👨‍❤‍👨"],"","",["man-heart-man"],18,9,31,0],"1f468-200d-2764-fe0f-200d-1f48b-200d-1f468":[["👨‍❤️‍💋‍👨","👨‍❤‍💋‍👨"],"","",["man-kiss-man"],18,10,31,0],"1f468":[["👨"],"","󾆝",["man"],18,11,31,0],"1f469-200d-1f33e":[["👩‍🌾"],"","",["female-farmer"],18,17,15,0],"1f469-200d-1f373":[["👩‍🍳"],"","",["female-cook"],18,23,15,0],"1f469-200d-1f393":[["👩‍🎓"],"","",["female-student"],18,29,15,0],"1f469-200d-1f3a4":[["👩‍🎤"],"","",["female-singer"],18,35,15,0],"1f469-200d-1f3a8":[["👩‍🎨"],"","",["female-artist"],18,41,15,0],"1f469-200d-1f3eb":[["👩‍🏫"],"","",["female-teacher"],18,47,15,0],"1f469-200d-1f3ed":[["👩‍🏭"],"","",["female-factory-worker"],19,1,15,0],"1f469-200d-1f466-200d-1f466":[["👩‍👦‍👦"],"","",["woman-boy-boy"],19,7,15,0],"1f469-200d-1f466":[["👩‍👦"],"","",["woman-boy"],19,8,15,0],"1f469-200d-1f467-200d-1f466":[["👩‍👧‍👦"],"","",["woman-girl-boy"],19,9,15,0],"1f469-200d-1f467-200d-1f467":[["👩‍👧‍👧"],"","",["woman-girl-girl"],19,10,15,0],"1f469-200d-1f467":[["👩‍👧"],"","",["woman-girl"],19,11,15,0],"1f469-200d-1f469-200d-1f466":[["👩‍👩‍👦"],"","",["woman-woman-boy"],19,12,31,0],"1f469-200d-1f469-200d-1f466-200d-1f466":[["👩‍👩‍👦‍👦"],"","",["woman-woman-boy-boy"],19,13,31,0],"1f469-200d-1f469-200d-1f467":[["👩‍👩‍👧"],"","",["woman-woman-girl"],19,14,31,0],"1f469-200d-1f469-200d-1f467-200d-1f466":[["👩‍👩‍👧‍👦"],"","",["woman-woman-girl-boy"],19,15,31,0],"1f469-200d-1f469-200d-1f467-200d-1f467":[["👩‍👩‍👧‍👧"],"","",["woman-woman-girl-girl"],19,16,31,0],"1f469-200d-1f4bb":[["👩‍💻"],"","",["female-technologist"],19,17,15,0],"1f469-200d-1f4bc":[["👩‍💼"],"","",["female-office-worker"],19,23,15,0],"1f469-200d-1f527":[["👩‍🔧"],"","",["female-mechanic"],19,29,15,0],"1f469-200d-1f52c":[["👩‍🔬"],"","",["female-scientist"],19,35,15,0],"1f469-200d-1f680":[["👩‍🚀"],"","",["female-astronaut"],19,41,15,0],"1f469-200d-1f692":[["👩‍🚒"],"","",["female-firefighter"],19,47,15,0],"1f469-200d-2695-fe0f":[["👩‍⚕️","👩‍⚕"],"","",["female-doctor"],20,1,15,0],"1f469-200d-2696-fe0f":[["👩‍⚖️","👩‍⚖"],"","",["female-judge"],20,7,15,0],"1f469-200d-2708-fe0f":[["👩‍✈️","👩‍✈"],"","",["female-pilot"],20,13,15,0],"1f469-200d-2764-fe0f-200d-1f468":[["👩‍❤️‍👨","👩‍❤‍👨","💑"],"","",["woman-heart-man","couple_with_heart"],20,19,15,0],"1f469-200d-2764-fe0f-200d-1f469":[["👩‍❤️‍👩","👩‍❤‍👩"],"","",["woman-heart-woman"],20,20,31,0],"1f469-200d-2764-fe0f-200d-1f48b-200d-1f468":[["👩‍❤️‍💋‍👨","👩‍❤‍💋‍👨","💏"],"","",["woman-kiss-man","couplekiss"],20,21,15,0],"1f469-200d-2764-fe0f-200d-1f48b-200d-1f469":[["👩‍❤️‍💋‍👩","👩‍❤‍💋‍👩"],"","",["woman-kiss-woman"],20,22,31,0],"1f469":[["👩"],"","󾆞",["woman"],20,23,31,0],"1f46b":[["👫"],"","󾆠",["couple","man_and_woman_holding_hands"],20,30,31,0],"1f46c":[["👬"],"","",["two_men_holding_hands"],20,31,31,0],"1f46d":[["👭"],"","",["two_women_holding_hands"],20,32,31,0],"1f46e-200d-2640-fe0f":[["👮‍♀️","👮‍♀"],"","",["female-police-officer"],20,33,15,0],"1f46e-200d-2642-fe0f":[["👮‍♂️","👮‍♂","👮"],"","",["male-police-officer","cop"],20,39,15,0],"1f46f-200d-2640-fe0f":[["👯‍♀️","👯‍♀","👯"],"","",["woman-with-bunny-ears-partying","dancers"],20,51,15,0],"1f46f-200d-2642-fe0f":[["👯‍♂️","👯‍♂"],"","",["man-with-bunny-ears-partying"],21,0,15,0],"1f470":[["👰"],"","󾆣",["bride_with_veil"],21,2,31,0],"1f471-200d-2640-fe0f":[["👱‍♀️","👱‍♀"],"","",["blond-haired-woman"],21,8,15,0],"1f471-200d-2642-fe0f":[["👱‍♂️","👱‍♂","👱"],"","",["blond-haired-man","person_with_blond_hair"],21,14,15,0],"1f472":[["👲"],"","󾆥",["man_with_gua_pi_mao"],21,26,31,0],"1f473-200d-2640-fe0f":[["👳‍♀️","👳‍♀"],"","",["woman-wearing-turban"],21,32,15,0],"1f473-200d-2642-fe0f":[["👳‍♂️","👳‍♂","👳"],"","",["man-wearing-turban","man_with_turban"],21,38,15,0],"1f474":[["👴"],"","󾆧",["older_man"],21,50,31,0],"1f475":[["👵"],"","󾆨",["older_woman"],22,4,31,0],"1f476":[["👶"],"","󾆩",["baby"],22,10,31,0],"1f477-200d-2640-fe0f":[["👷‍♀️","👷‍♀"],"","",["female-construction-worker"],22,16,15,0],"1f477-200d-2642-fe0f":[["👷‍♂️","👷‍♂","👷"],"","",["male-construction-worker","construction_worker"],22,22,15,0],"1f478":[["👸"],"","󾆫",["princess"],22,34,31,0],"1f479":[["👹"],"","󾆬",["japanese_ogre"],22,40,31,0],"1f47a":[["👺"],"","󾆭",["japanese_goblin"],22,41,31,0],"1f47b":[["👻"],"","󾆮",["ghost"],22,42,31,0],"1f47c":[["👼"],"","󾆯",["angel"],22,43,31,0],"1f47d":[["👽"],"","󾆰",["alien"],22,49,31,0],"1f47e":[["👾"],"","󾆱",["space_invader"],22,50,31,0],"1f47f":[["👿"],"","󾆲",["imp"],22,51,31,0],"1f480":[["💀"],"","󾆳",["skull"],23,0,31,0],"1f481-200d-2640-fe0f":[["💁‍♀️","💁‍♀","💁"],"","",["woman-tipping-hand","information_desk_person"],23,1,15,0],"1f481-200d-2642-fe0f":[["💁‍♂️","💁‍♂"],"","",["man-tipping-hand"],23,7,15,0],"1f482-200d-2640-fe0f":[["💂‍♀️","💂‍♀"],"","",["female-guard"],23,19,15,0],"1f482-200d-2642-fe0f":[["💂‍♂️","💂‍♂","💂"],"","",["male-guard","guardsman"],23,25,15,0],"1f483":[["💃"],"","󾆶",["dancer"],23,37,31,0],"1f484":[["💄"],"","󾆕",["lipstick"],23,43,31,0],"1f485":[["💅"],"","󾆖",["nail_care"],23,44,31,0],"1f486-200d-2640-fe0f":[["💆‍♀️","💆‍♀","💆"],"","",["woman-getting-massage","massage"],23,50,15,0],"1f486-200d-2642-fe0f":[["💆‍♂️","💆‍♂"],"","",["man-getting-massage"],24,4,15,0],"1f487-200d-2640-fe0f":[["💇‍♀️","💇‍♀","💇"],"","",["woman-getting-haircut","haircut"],24,16,15,0],"1f487-200d-2642-fe0f":[["💇‍♂️","💇‍♂"],"","",["man-getting-haircut"],24,22,15,0],"1f488":[["💈"],"","󾆙",["barber"],24,34,31,0],"1f489":[["💉"],"","󾔉",["syringe"],24,35,31,0],"1f48a":[["💊"],"","󾔊",["pill"],24,36,31,0],"1f48b":[["💋"],"","󾠣",["kiss"],24,37,31,0],"1f48c":[["💌"],"","󾠤",["love_letter"],24,38,31,0],"1f48d":[["💍"],"","󾠥",["ring"],24,39,31,0],"1f48e":[["💎"],"","󾠦",["gem"],24,40,31,0],"1f490":[["💐"],"","󾠨",["bouquet"],24,42,31,0],"1f492":[["💒"],"","󾠪",["wedding"],24,44,31,0],"1f493":[["💓"],"","󾬍",["heartbeat"],24,45,31,0],"1f494":[["💔"],"","󾬎",["broken_heart"],24,46,31,0,"</3"],"1f495":[["💕"],"","󾬏",["two_hearts"],24,47,31,0],"1f496":[["💖"],"","󾬐",["sparkling_heart"],24,48,31,0],"1f497":[["💗"],"","󾬑",["heartpulse"],24,49,31,0],"1f498":[["💘"],"","󾬒",["cupid"],24,50,31,0],"1f499":[["💙"],"","󾬓",["blue_heart"],24,51,31,0,"<3"],"1f49a":[["💚"],"","󾬔",["green_heart"],25,0,31,0,"<3"],"1f49b":[["💛"],"","󾬕",["yellow_heart"],25,1,31,0,"<3"],"1f49c":[["💜"],"","󾬖",["purple_heart"],25,2,31,0,"<3"],"1f49d":[["💝"],"","󾬗",["gift_heart"],25,3,31,0],"1f49e":[["💞"],"","󾬘",["revolving_hearts"],25,4,31,0],"1f49f":[["💟"],"","󾬙",["heart_decoration"],25,5,31,0],"1f4a0":[["💠"],"","󾭕",["diamond_shape_with_a_dot_inside"],25,6,31,0],"1f4a1":[["💡"],"","󾭖",["bulb"],25,7,31,0],"1f4a2":[["💢"],"","󾭗",["anger"],25,8,31,0],"1f4a3":[["💣"],"","󾭘",["bomb"],25,9,31,0],"1f4a4":[["💤"],"","󾭙",["zzz"],25,10,31,0],"1f4a5":[["💥"],"","󾭚",["boom","collision"],25,11,31,0],"1f4a6":[["💦"],"","󾭛",["sweat_drops"],25,12,31,0],"1f4a7":[["💧"],"","󾭜",["droplet"],25,13,31,0],"1f4a8":[["💨"],"","󾭝",["dash"],25,14,31,0],"1f4a9":[["💩"],"","󾓴",["hankey","poop","shit"],25,15,31,0],"1f4aa":[["💪"],"","󾭞",["muscle"],25,16,31,0],"1f4ab":[["💫"],"","󾭟",["dizzy"],25,22,31,0],"1f4ac":[["💬"],"","󾔲",["speech_balloon"],25,23,31,0],"1f4ad":[["💭"],"","",["thought_balloon"],25,24,31,0],"1f4ae":[["💮"],"","󾭺",["white_flower"],25,25,31,0],"1f4af":[["💯"],"","󾭻",["100"],25,26,31,0],"1f4b0":[["💰"],"","󾓝",["moneybag"],25,27,31,0],"1f4b1":[["💱"],"","󾓞",["currency_exchange"],25,28,31,0],"1f4b2":[["💲"],"","󾓠",["heavy_dollar_sign"],25,29,31,0],"1f4b3":[["💳"],"","󾓡",["credit_card"],25,30,31,0],"1f4b4":[["💴"],"","󾓢",["yen"],25,31,31,0],"1f4b5":[["💵"],"","󾓣",["dollar"],25,32,31,0],"1f4b6":[["💶"],"","",["euro"],25,33,31,0],"1f4b7":[["💷"],"","",["pound"],25,34,31,0],"1f4b8":[["💸"],"","󾓤",["money_with_wings"],25,35,31,0],"1f4b9":[["💹"],"","󾓟",["chart"],25,36,31,0],"1f4ba":[["💺"],"","󾔷",["seat"],25,37,31,0],"1f4bb":[["💻"],"","󾔸",["computer"],25,38,31,0],"1f4bc":[["💼"],"","󾔻",["briefcase"],25,39,31,0],"1f4bd":[["💽"],"","󾔼",["minidisc"],25,40,31,0],"1f4be":[["💾"],"","󾔽",["floppy_disk"],25,41,31,0],"1f4bf":[["💿"],"","󾠝",["cd"],25,42,31,0],"1f4c0":[["📀"],"","󾠞",["dvd"],25,43,31,0],"1f4c1":[["📁"],"","󾕃",["file_folder"],25,44,31,0],"1f4c2":[["📂"],"","󾕄",["open_file_folder"],25,45,31,0],"1f4c3":[["📃"],"","󾕀",["page_with_curl"],25,46,31,0],"1f4c4":[["📄"],"","󾕁",["page_facing_up"],25,47,31,0],"1f4c5":[["📅"],"","󾕂",["date"],25,48,31,0],"1f4c6":[["📆"],"","󾕉",["calendar"],25,49,31,0],"1f4c7":[["📇"],"","󾕍",["card_index"],25,50,31,0],"1f4c8":[["📈"],"","󾕋",["chart_with_upwards_trend"],25,51,31,0],"1f4c9":[["📉"],"","󾕌",["chart_with_downwards_trend"],26,0,31,0],"1f4ca":[["📊"],"","󾕊",["bar_chart"],26,1,31,0],"1f4cb":[["📋"],"","󾕈",["clipboard"],26,2,31,0],"1f4cc":[["📌"],"","󾕎",["pushpin"],26,3,31,0],"1f4cd":[["📍"],"","󾔿",["round_pushpin"],26,4,31,0],"1f4ce":[["📎"],"","󾔺",["paperclip"],26,5,31,0],"1f4cf":[["📏"],"","󾕐",["straight_ruler"],26,6,31,0],"1f4d0":[["📐"],"","󾕑",["triangular_ruler"],26,7,31,0],"1f4d1":[["📑"],"","󾕒",["bookmark_tabs"],26,8,31,0],"1f4d2":[["📒"],"","󾕏",["ledger"],26,9,31,0],"1f4d3":[["📓"],"","󾕅",["notebook"],26,10,31,0],"1f4d4":[["📔"],"","󾕇",["notebook_with_decorative_cover"],26,11,31,0],"1f4d5":[["📕"],"","󾔂",["closed_book"],26,12,31,0],"1f4d6":[["📖"],"","󾕆",["book","open_book"],26,13,31,0],"1f4d7":[["📗"],"","󾓿",["green_book"],26,14,31,0],"1f4d8":[["📘"],"","󾔀",["blue_book"],26,15,31,0],"1f4d9":[["📙"],"","󾔁",["orange_book"],26,16,31,0],"1f4da":[["📚"],"","󾔃",["books"],26,17,31,0],"1f4db":[["📛"],"","󾔄",["name_badge"],26,18,31,0],"1f4dc":[["📜"],"","󾓽",["scroll"],26,19,31,0],"1f4dd":[["📝"],"","󾔧",["memo","pencil"],26,20,31,0],"1f4de":[["📞"],"","󾔤",["telephone_receiver"],26,21,31,0],"1f4df":[["📟"],"","󾔢",["pager"],26,22,31,0],"1f4e0":[["📠"],"","󾔨",["fax"],26,23,31,0],"1f4e1":[["📡"],"","󾔱",["satellite_antenna"],26,24,31,0],"1f4e2":[["📢"],"","󾔯",["loudspeaker"],26,25,31,0],"1f4e3":[["📣"],"","󾔰",["mega"],26,26,31,0],"1f4e4":[["📤"],"","󾔳",["outbox_tray"],26,27,31,0],"1f4e5":[["📥"],"","󾔴",["inbox_tray"],26,28,31,0],"1f4e6":[["📦"],"","󾔵",["package"],26,29,31,0],"1f4e7":[["📧"],"","󾮒",["e-mail"],26,30,31,0],"1f4e8":[["📨"],"","󾔪",["incoming_envelope"],26,31,31,0],"1f4e9":[["📩"],"","󾔫",["envelope_with_arrow"],26,32,31,0],"1f4ea":[["📪"],"","󾔬",["mailbox_closed"],26,33,31,0],"1f4eb":[["📫"],"","󾔭",["mailbox"],26,34,31,0],"1f4ec":[["📬"],"","",["mailbox_with_mail"],26,35,31,0],"1f4ed":[["📭"],"","",["mailbox_with_no_mail"],26,36,31,0],"1f4ee":[["📮"],"","󾔮",["postbox"],26,37,31,0],"1f4ef":[["📯"],"","",["postal_horn"],26,38,31,0],"1f4f0":[["📰"],"","󾠢",["newspaper"],26,39,31,0],"1f4f1":[["📱"],"","󾔥",["iphone"],26,40,31,0],"1f4f2":[["📲"],"","󾔦",["calling"],26,41,31,0],"1f4f3":[["📳"],"","󾠹",["vibration_mode"],26,42,31,0],"1f4f4":[["📴"],"","󾠺",["mobile_phone_off"],26,43,31,0],"1f4f5":[["📵"],"","",["no_mobile_phones"],26,44,31,0],"1f4f6":[["📶"],"","󾠸",["signal_strength"],26,45,31,0],"1f4f7":[["📷"],"","󾓯",["camera"],26,46,31,0],"1f4f8":[["📸"],"","",["camera_with_flash"],26,47,15,0],"1f4f9":[["📹"],"","󾓹",["video_camera"],26,48,31,0],"1f4fa":[["📺"],"","󾠜",["tv"],26,49,31,0],"1f4fb":[["📻"],"","󾠟",["radio"],26,50,31,0],"1f4fc":[["📼"],"","󾠠",["vhs"],26,51,31,0],"1f4fd-fe0f":[["📽️","📽"],"","",["film_projector"],27,0,15,0],"1f4ff":[["📿"],"","",["prayer_beads"],27,1,15,0],"1f500":[["🔀"],"","",["twisted_rightwards_arrows"],27,2,31,0],"1f501":[["🔁"],"","",["repeat"],27,3,31,0],"1f502":[["🔂"],"","",["repeat_one"],27,4,31,0],"1f503":[["🔃"],"","󾮑",["arrows_clockwise"],27,5,31,0],"1f504":[["🔄"],"","",["arrows_counterclockwise"],27,6,31,0],"1f505":[["🔅"],"","",["low_brightness"],27,7,31,0],"1f506":[["🔆"],"","",["high_brightness"],27,8,31,0],"1f507":[["🔇"],"","",["mute"],27,9,31,0],"1f508":[["🔈"],"","",["speaker"],27,10,31,0],"1f509":[["🔉"],"","",["sound"],27,11,31,0],"1f50a":[["🔊"],"","󾠡",["loud_sound"],27,12,31,0],"1f50b":[["🔋"],"","󾓼",["battery"],27,13,31,0],"1f50c":[["🔌"],"","󾓾",["electric_plug"],27,14,31,0],"1f50d":[["🔍"],"","󾮅",["mag"],27,15,31,0],"1f50e":[["🔎"],"","󾮍",["mag_right"],27,16,31,0],"1f50f":[["🔏"],"","󾮐",["lock_with_ink_pen"],27,17,31,0],"1f510":[["🔐"],"","󾮊",["closed_lock_with_key"],27,18,31,0],"1f511":[["🔑"],"","󾮂",["key"],27,19,31,0],"1f512":[["🔒"],"","󾮆",["lock"],27,20,31,0],"1f513":[["🔓"],"","󾮇",["unlock"],27,21,31,0],"1f514":[["🔔"],"","󾓲",["bell"],27,22,31,0],"1f515":[["🔕"],"","",["no_bell"],27,23,31,0],"1f516":[["🔖"],"","󾮏",["bookmark"],27,24,31,0],"1f517":[["🔗"],"","󾭋",["link"],27,25,31,0],"1f518":[["🔘"],"","󾮌",["radio_button"],27,26,31,0],"1f519":[["🔙"],"","󾮎",["back"],27,27,31,0],"1f51a":[["🔚"],"","󾀚",["end"],27,28,31,0],"1f51b":[["🔛"],"","󾀙",["on"],27,29,31,0],"1f51c":[["🔜"],"","󾀘",["soon"],27,30,31,0],"1f51d":[["🔝"],"","󾭂",["top"],27,31,31,0],"1f51e":[["🔞"],"","󾬥",["underage"],27,32,31,0],"1f51f":[["🔟"],"","󾠻",["keycap_ten"],27,33,31,0],"1f520":[["🔠"],"","󾭼",["capital_abcd"],27,34,31,0],"1f521":[["🔡"],"","󾭽",["abcd"],27,35,31,0],"1f522":[["🔢"],"","󾭾",["1234"],27,36,31,0],"1f523":[["🔣"],"","󾭿",["symbols"],27,37,31,0],"1f524":[["🔤"],"","󾮀",["abc"],27,38,31,0],"1f525":[["🔥"],"","󾓶",["fire"],27,39,31,0],"1f526":[["🔦"],"","󾓻",["flashlight"],27,40,31,0],"1f527":[["🔧"],"","󾓉",["wrench"],27,41,31,0],"1f528":[["🔨"],"","󾓊",["hammer"],27,42,31,0],"1f529":[["🔩"],"","󾓋",["nut_and_bolt"],27,43,31,0],"1f52a":[["🔪"],"","󾓺",["hocho","knife"],27,44,31,0],"1f52b":[["🔫"],"","󾓵",["gun"],27,45,31,0],"1f52c":[["🔬"],"","",["microscope"],27,46,31,0],"1f52d":[["🔭"],"","",["telescope"],27,47,31,0],"1f52e":[["🔮"],"","󾓷",["crystal_ball"],27,48,31,0],"1f52f":[["🔯"],"","󾓸",["six_pointed_star"],27,49,31,0],"1f530":[["🔰"],"","󾁄",["beginner"],27,50,31,0],"1f531":[["🔱"],"","󾓒",["trident"],27,51,31,0],"1f532":[["🔲"],"","󾭤",["black_square_button"],28,0,31,0],"1f533":[["🔳"],"","󾭧",["white_square_button"],28,1,31,0],"1f534":[["🔴"],"","󾭣",["red_circle"],28,2,31,0],"1f535":[["🔵"],"","󾭤",["large_blue_circle"],28,3,31,0],"1f536":[["🔶"],"","󾭳",["large_orange_diamond"],28,4,31,0],"1f537":[["🔷"],"","󾭴",["large_blue_diamond"],28,5,31,0],"1f538":[["🔸"],"","󾭵",["small_orange_diamond"],28,6,31,0],"1f539":[["🔹"],"","󾭶",["small_blue_diamond"],28,7,31,0],"1f53a":[["🔺"],"","󾭸",["small_red_triangle"],28,8,31,0],"1f53b":[["🔻"],"","󾭹",["small_red_triangle_down"],28,9,31,0],"1f53c":[["🔼"],"","󾬁",["arrow_up_small"],28,10,31,0],"1f53d":[["🔽"],"","󾬀",["arrow_down_small"],28,11,31,0],"1f549-fe0f":[["🕉️","🕉"],"","",["om_symbol"],28,12,15,0],"1f54a-fe0f":[["🕊️","🕊"],"","",["dove_of_peace"],28,13,15,0],"1f54b":[["🕋"],"","",["kaaba"],28,14,15,0],"1f54c":[["🕌"],"","",["mosque"],28,15,15,0],"1f54d":[["🕍"],"","",["synagogue"],28,16,15,0],"1f54e":[["🕎"],"","",["menorah_with_nine_branches"],28,17,15,0],"1f550":[["🕐"],"","󾀞",["clock1"],28,18,31,0],"1f551":[["🕑"],"","󾀟",["clock2"],28,19,31,0],"1f552":[["🕒"],"","󾀠",["clock3"],28,20,31,0],"1f553":[["🕓"],"","󾀡",["clock4"],28,21,31,0],"1f554":[["🕔"],"","󾀢",["clock5"],28,22,31,0],"1f555":[["🕕"],"","󾀣",["clock6"],28,23,31,0],"1f556":[["🕖"],"","󾀤",["clock7"],28,24,31,0],"1f557":[["🕗"],"","󾀥",["clock8"],28,25,31,0],"1f558":[["🕘"],"","󾀦",["clock9"],28,26,31,0],"1f559":[["🕙"],"","󾀧",["clock10"],28,27,31,0],"1f55a":[["🕚"],"","󾀨",["clock11"],28,28,31,0],"1f55b":[["🕛"],"","󾀩",["clock12"],28,29,31,0],"1f55c":[["🕜"],"","",["clock130"],28,30,31,0],"1f55d":[["🕝"],"","",["clock230"],28,31,31,0],"1f55e":[["🕞"],"","",["clock330"],28,32,31,0],"1f55f":[["🕟"],"","",["clock430"],28,33,31,0],"1f560":[["🕠"],"","",["clock530"],28,34,31,0],"1f561":[["🕡"],"","",["clock630"],28,35,31,0],"1f562":[["🕢"],"","",["clock730"],28,36,31,0],"1f563":[["🕣"],"","",["clock830"],28,37,31,0],"1f564":[["🕤"],"","",["clock930"],28,38,31,0],"1f565":[["🕥"],"","",["clock1030"],28,39,31,0],"1f566":[["🕦"],"","",["clock1130"],28,40,31,0],"1f567":[["🕧"],"","",["clock1230"],28,41,31,0],"1f56f-fe0f":[["🕯️","🕯"],"","",["candle"],28,42,15,0],"1f570-fe0f":[["🕰️","🕰"],"","",["mantelpiece_clock"],28,43,15,0],"1f573-fe0f":[["🕳️","🕳"],"","",["hole"],28,44,15,0],"1f574-fe0f":[["🕴️","🕴"],"","",["man_in_business_suit_levitating"],28,45,15,0],"1f575-fe0f-200d-2640-fe0f":[["🕵️‍♀️"],"","",["female-detective"],28,51,7,0],"1f575-fe0f-200d-2642-fe0f":[["🕵️‍♂️","🕵️","🕵"],"","",["male-detective","sleuth_or_spy"],29,5,7,0],"1f576-fe0f":[["🕶️","🕶"],"","",["dark_sunglasses"],29,17,15,0],"1f577-fe0f":[["🕷️","🕷"],"","",["spider"],29,18,15,0],"1f578-fe0f":[["🕸️","🕸"],"","",["spider_web"],29,19,15,0],"1f579-fe0f":[["🕹️","🕹"],"","",["joystick"],29,20,15,0],"1f57a":[["🕺"],"","",["man_dancing"],29,21,15,0],"1f587-fe0f":[["🖇️","🖇"],"","",["linked_paperclips"],29,27,15,0],"1f58a-fe0f":[["🖊️","🖊"],"","",["lower_left_ballpoint_pen"],29,28,15,0],"1f58b-fe0f":[["🖋️","🖋"],"","",["lower_left_fountain_pen"],29,29,15,0],"1f58c-fe0f":[["🖌️","🖌"],"","",["lower_left_paintbrush"],29,30,15,0],"1f58d-fe0f":[["🖍️","🖍"],"","",["lower_left_crayon"],29,31,15,0],"1f590-fe0f":[["🖐️","🖐"],"","",["raised_hand_with_fingers_splayed"],29,32,15,0],"1f595":[["🖕"],"","",["middle_finger","reversed_hand_with_middle_finger_extended"],29,38,15,0],"1f596":[["🖖"],"","",["spock-hand"],29,44,15,0],"1f5a4":[["🖤"],"","",["black_heart"],29,50,15,0],"1f5a5-fe0f":[["🖥️","🖥"],"","",["desktop_computer"],29,51,15,0],"1f5a8-fe0f":[["🖨️","🖨"],"","",["printer"],30,0,15,0],"1f5b1-fe0f":[["🖱️","🖱"],"","",["three_button_mouse"],30,1,15,0],"1f5b2-fe0f":[["🖲️","🖲"],"","",["trackball"],30,2,15,0],"1f5bc-fe0f":[["🖼️","🖼"],"","",["frame_with_picture"],30,3,15,0],"1f5c2-fe0f":[["🗂️","🗂"],"","",["card_index_dividers"],30,4,15,0],"1f5c3-fe0f":[["🗃️","🗃"],"","",["card_file_box"],30,5,15,0],"1f5c4-fe0f":[["🗄️","🗄"],"","",["file_cabinet"],30,6,15,0],"1f5d1-fe0f":[["🗑️","🗑"],"","",["wastebasket"],30,7,15,0],"1f5d2-fe0f":[["🗒️","🗒"],"","",["spiral_note_pad"],30,8,15,0],"1f5d3-fe0f":[["🗓️","🗓"],"","",["spiral_calendar_pad"],30,9,15,0],"1f5dc-fe0f":[["🗜️","🗜"],"","",["compression"],30,10,15,0],"1f5dd-fe0f":[["🗝️","🗝"],"","",["old_key"],30,11,15,0],"1f5de-fe0f":[["🗞️","🗞"],"","",["rolled_up_newspaper"],30,12,15,0],"1f5e1-fe0f":[["🗡️","🗡"],"","",["dagger_knife"],30,13,15,0],"1f5e3-fe0f":[["🗣️","🗣"],"","",["speaking_head_in_silhouette"],30,14,15,0],"1f5e8-fe0f":[["🗨️","🗨"],"","",["left_speech_bubble"],30,15,15,0],"1f5ef-fe0f":[["🗯️","🗯"],"","",["right_anger_bubble"],30,16,15,0],"1f5f3-fe0f":[["🗳️","🗳"],"","",["ballot_box_with_ballot"],30,17,15,0],"1f5fa-fe0f":[["🗺️","🗺"],"","",["world_map"],30,18,15,0],"1f5fb":[["🗻"],"","󾓃",["mount_fuji"],30,19,31,0],"1f5fc":[["🗼"],"","󾓄",["tokyo_tower"],30,20,31,0],"1f5fd":[["🗽"],"","󾓆",["statue_of_liberty"],30,21,31,0],"1f5fe":[["🗾"],"","󾓇",["japan"],30,22,31,0],"1f5ff":[["🗿"],"","󾓈",["moyai"],30,23,31,0],"1f600":[["😀"],"","",["grinning"],30,24,31,0,":D"],"1f601":[["😁"],"","󾌳",["grin"],30,25,31,0],"1f602":[["😂"],"","󾌴",["joy"],30,26,31,0],"1f603":[["😃"],"","󾌰",["smiley"],30,27,31,0,":)"],"1f604":[["😄"],"","󾌸",["smile"],30,28,31,0,":)"],"1f605":[["😅"],"","󾌱",["sweat_smile"],30,29,31,0],"1f606":[["😆"],"","󾌲",["laughing","satisfied"],30,30,31,0],"1f607":[["😇"],"","",["innocent"],30,31,31,0],"1f608":[["😈"],"","",["smiling_imp"],30,32,31,0],"1f609":[["😉"],"","󾍇",["wink"],30,33,31,0,";)"],"1f60a":[["😊"],"","󾌵",["blush"],30,34,31,0,":)"],"1f60b":[["😋"],"","󾌫",["yum"],30,35,31,0],"1f60c":[["😌"],"","󾌾",["relieved"],30,36,31,0],"1f60d":[["😍"],"","󾌧",["heart_eyes"],30,37,31,0],"1f60e":[["😎"],"","",["sunglasses"],30,38,31,0],"1f60f":[["😏"],"","󾍃",["smirk"],30,39,31,0],"1f610":[["😐"],"","",["neutral_face"],30,40,31,0],"1f611":[["😑"],"","",["expressionless"],30,41,31,0],"1f612":[["😒"],"","󾌦",["unamused"],30,42,31,0,":("],"1f613":[["😓"],"","󾍄",["sweat"],30,43,31,0],"1f614":[["😔"],"","󾍀",["pensive"],30,44,31,0],"1f615":[["😕"],"","",["confused"],30,45,31,0],"1f616":[["😖"],"","󾌿",["confounded"],30,46,31,0],"1f617":[["😗"],"","",["kissing"],30,47,31,0],"1f618":[["😘"],"","󾌬",["kissing_heart"],30,48,31,0],"1f619":[["😙"],"","",["kissing_smiling_eyes"],30,49,31,0],"1f61a":[["😚"],"","󾌭",["kissing_closed_eyes"],30,50,31,0],"1f61b":[["😛"],"","",["stuck_out_tongue"],30,51,31,0,":p"],"1f61c":[["😜"],"","󾌩",["stuck_out_tongue_winking_eye"],31,0,31,0,";p"],"1f61d":[["😝"],"","󾌪",["stuck_out_tongue_closed_eyes"],31,1,31,0],"1f61e":[["😞"],"","󾌣",["disappointed"],31,2,31,0,":("],"1f61f":[["😟"],"","",["worried"],31,3,31,0],"1f620":[["😠"],"","󾌠",["angry"],31,4,31,0],"1f621":[["😡"],"","󾌽",["rage"],31,5,31,0],"1f622":[["😢"],"","󾌹",["cry"],31,6,31,0,":'("],"1f623":[["😣"],"","󾌼",["persevere"],31,7,31,0],"1f624":[["😤"],"","󾌨",["triumph"],31,8,31,0],"1f625":[["😥"],"","󾍅",["disappointed_relieved"],31,9,31,0],"1f626":[["😦"],"","",["frowning"],31,10,31,0],"1f627":[["😧"],"","",["anguished"],31,11,31,0],"1f628":[["😨"],"","󾌻",["fearful"],31,12,31,0],"1f629":[["😩"],"","󾌡",["weary"],31,13,31,0],"1f62a":[["😪"],"","󾍂",["sleepy"],31,14,31,0],"1f62b":[["😫"],"","󾍆",["tired_face"],31,15,31,0],"1f62c":[["😬"],"","",["grimacing"],31,16,31,0],"1f62d":[["😭"],"","󾌺",["sob"],31,17,31,0,":'("],"1f62e":[["😮"],"","",["open_mouth"],31,18,31,0],"1f62f":[["😯"],"","",["hushed"],31,19,31,0],"1f630":[["😰"],"","󾌥",["cold_sweat"],31,20,31,0],"1f631":[["😱"],"","󾍁",["scream"],31,21,31,0],"1f632":[["😲"],"","󾌢",["astonished"],31,22,31,0],"1f633":[["😳"],"","󾌯",["flushed"],31,23,31,0],"1f634":[["😴"],"","",["sleeping"],31,24,31,0],"1f635":[["😵"],"","󾌤",["dizzy_face"],31,25,31,0],"1f636":[["😶"],"","",["no_mouth"],31,26,31,0],"1f637":[["😷"],"","󾌮",["mask"],31,27,31,0],"1f638":[["😸"],"","󾍉",["smile_cat"],31,28,31,0],"1f639":[["😹"],"","󾍊",["joy_cat"],31,29,31,0],"1f63a":[["😺"],"","󾍈",["smiley_cat"],31,30,31,0],"1f63b":[["😻"],"","󾍌",["heart_eyes_cat"],31,31,31,0],"1f63c":[["😼"],"","󾍏",["smirk_cat"],31,32,31,0],"1f63d":[["😽"],"","󾍋",["kissing_cat"],31,33,31,0],"1f63e":[["😾"],"","󾍎",["pouting_cat"],31,34,31,0],"1f63f":[["😿"],"","󾍍",["crying_cat_face"],31,35,31,0],"1f640":[["🙀"],"","󾍐",["scream_cat"],31,36,31,0],"1f641":[["🙁"],"","",["slightly_frowning_face"],31,37,15,0],"1f642":[["🙂"],"","",["slightly_smiling_face"],31,38,31,0],"1f643":[["🙃"],"","",["upside_down_face"],31,39,15,0],"1f644":[["🙄"],"","",["face_with_rolling_eyes"],31,40,15,0],"1f645-200d-2640-fe0f":[["🙅‍♀️","🙅‍♀","🙅"],"","",["woman-gesturing-no","no_good"],31,41,15,0],"1f645-200d-2642-fe0f":[["🙅‍♂️","🙅‍♂"],"","",["man-gesturing-no"],31,47,15,0],"1f646-200d-2640-fe0f":[["🙆‍♀️","🙆‍♀","🙆"],"","",["woman-gesturing-ok","ok_woman"],32,7,15,0],"1f646-200d-2642-fe0f":[["🙆‍♂️","🙆‍♂"],"","",["man-gesturing-ok"],32,13,15,0],"1f647-200d-2640-fe0f":[["🙇‍♀️","🙇‍♀"],"","",["woman-bowing"],32,25,15,0],"1f647-200d-2642-fe0f":[["🙇‍♂️","🙇‍♂","🙇"],"","",["man-bowing","bow"],32,31,15,0],"1f648":[["🙈"],"","󾍔",["see_no_evil"],32,43,31,0],"1f649":[["🙉"],"","󾍖",["hear_no_evil"],32,44,31,0],"1f64a":[["🙊"],"","󾍕",["speak_no_evil"],32,45,31,0],"1f64b-200d-2640-fe0f":[["🙋‍♀️","🙋‍♀","🙋"],"","",["woman-raising-hand","raising_hand"],32,46,15,0],"1f64b-200d-2642-fe0f":[["🙋‍♂️","🙋‍♂"],"","",["man-raising-hand"],33,0,15,0],"1f64c":[["🙌"],"","󾍘",["raised_hands"],33,12,31,0],"1f64d-200d-2640-fe0f":[["🙍‍♀️","🙍‍♀","🙍"],"","",["woman-frowning","person_frowning"],33,18,15,0],"1f64d-200d-2642-fe0f":[["🙍‍♂️","🙍‍♂"],"","",["man-frowning"],33,24,15,0],"1f64e-200d-2640-fe0f":[["🙎‍♀️","🙎‍♀","🙎"],"","",["woman-pouting","person_with_pouting_face"],33,36,15,0],"1f64e-200d-2642-fe0f":[["🙎‍♂️","🙎‍♂"],"","",["man-pouting"],33,42,15,0],"1f64f":[["🙏"],"","󾍛",["pray"],34,2,31,0],"1f680":[["🚀"],"","󾟭",["rocket"],34,8,31,0],"1f681":[["🚁"],"","",["helicopter"],34,9,31,0],"1f682":[["🚂"],"","",["steam_locomotive"],34,10,31,0],"1f683":[["🚃"],"","󾟟",["railway_car"],34,11,31,0],"1f684":[["🚄"],"","󾟢",["bullettrain_side"],34,12,31,0],"1f685":[["🚅"],"","󾟣",["bullettrain_front"],34,13,31,0],"1f686":[["🚆"],"","",["train2"],34,14,31,0],"1f687":[["🚇"],"","󾟠",["metro"],34,15,31,0],"1f688":[["🚈"],"","",["light_rail"],34,16,31,0],"1f689":[["🚉"],"","󾟬",["station"],34,17,31,0],"1f68a":[["🚊"],"","",["tram"],34,18,31,0],"1f68b":[["🚋"],"","",["train"],34,19,31,0],"1f68c":[["🚌"],"","󾟦",["bus"],34,20,31,0],"1f68d":[["🚍"],"","",["oncoming_bus"],34,21,31,0],"1f68e":[["🚎"],"","",["trolleybus"],34,22,31,0],"1f68f":[["🚏"],"","󾟧",["busstop"],34,23,31,0],"1f690":[["🚐"],"","",["minibus"],34,24,31,0],"1f691":[["🚑"],"","󾟳",["ambulance"],34,25,31,0],"1f692":[["🚒"],"","󾟲",["fire_engine"],34,26,31,0],"1f693":[["🚓"],"","󾟴",["police_car"],34,27,31,0],"1f694":[["🚔"],"","",["oncoming_police_car"],34,28,31,0],"1f695":[["🚕"],"","󾟯",["taxi"],34,29,31,0],"1f696":[["🚖"],"","",["oncoming_taxi"],34,30,31,0],"1f697":[["🚗"],"","󾟤",["car","red_car"],34,31,31,0],"1f698":[["🚘"],"","",["oncoming_automobile"],34,32,31,0],"1f699":[["🚙"],"","󾟥",["blue_car"],34,33,31,0],"1f69a":[["🚚"],"","󾟱",["truck"],34,34,31,0],"1f69b":[["🚛"],"","",["articulated_lorry"],34,35,31,0],"1f69c":[["🚜"],"","",["tractor"],34,36,31,0],"1f69d":[["🚝"],"","",["monorail"],34,37,31,0],"1f69e":[["🚞"],"","",["mountain_railway"],34,38,31,0],"1f69f":[["🚟"],"","",["suspension_railway"],34,39,31,0],"1f6a0":[["🚠"],"","",["mountain_cableway"],34,40,31,0],"1f6a1":[["🚡"],"","",["aerial_tramway"],34,41,31,0],"1f6a2":[["🚢"],"","󾟨",["ship"],34,42,31,0],"1f6a3-200d-2640-fe0f":[["🚣‍♀️","🚣‍♀"],"","",["woman-rowing-boat"],34,43,15,0],"1f6a3-200d-2642-fe0f":[["🚣‍♂️","🚣‍♂","🚣"],"","",["man-rowing-boat","rowboat"],34,49,15,0],"1f6a4":[["🚤"],"","󾟮",["speedboat"],35,9,31,0],"1f6a5":[["🚥"],"","󾟷",["traffic_light"],35,10,31,0],"1f6a6":[["🚦"],"","",["vertical_traffic_light"],35,11,31,0],"1f6a7":[["🚧"],"","󾟸",["construction"],35,12,31,0],"1f6a8":[["🚨"],"","󾟹",["rotating_light"],35,13,31,0],"1f6a9":[["🚩"],"","󾬢",["triangular_flag_on_post"],35,14,31,0],"1f6aa":[["🚪"],"","󾓳",["door"],35,15,31,0],"1f6ab":[["🚫"],"","󾭈",["no_entry_sign"],35,16,31,0],"1f6ac":[["🚬"],"","󾬞",["smoking"],35,17,31,0],"1f6ad":[["🚭"],"","󾬟",["no_smoking"],35,18,31,0],"1f6ae":[["🚮"],"","",["put_litter_in_its_place"],35,19,31,0],"1f6af":[["🚯"],"","",["do_not_litter"],35,20,31,0],"1f6b0":[["🚰"],"","",["potable_water"],35,21,31,0],"1f6b1":[["🚱"],"","",["non-potable_water"],35,22,31,0],"1f6b2":[["🚲"],"","󾟫",["bike"],35,23,31,0],"1f6b3":[["🚳"],"","",["no_bicycles"],35,24,31,0],"1f6b4-200d-2640-fe0f":[["🚴‍♀️","🚴‍♀"],"","",["woman-biking"],35,25,15,0],"1f6b4-200d-2642-fe0f":[["🚴‍♂️","🚴‍♂","🚴"],"","",["man-biking","bicyclist"],35,31,15,0],"1f6b5-200d-2640-fe0f":[["🚵‍♀️","🚵‍♀"],"","",["woman-mountain-biking"],35,43,15,0],"1f6b5-200d-2642-fe0f":[["🚵‍♂️","🚵‍♂","🚵"],"","",["man-mountain-biking","mountain_bicyclist"],35,49,15,0],"1f6b6-200d-2640-fe0f":[["🚶‍♀️","🚶‍♀"],"","",["woman-walking"],36,9,15,0],"1f6b6-200d-2642-fe0f":[["🚶‍♂️","🚶‍♂","🚶"],"","",["man-walking","walking"],36,15,15,0],"1f6b7":[["🚷"],"","",["no_pedestrians"],36,27,31,0],"1f6b8":[["🚸"],"","",["children_crossing"],36,28,31,0],"1f6b9":[["🚹"],"","󾬳",["mens"],36,29,31,0],"1f6ba":[["🚺"],"","󾬴",["womens"],36,30,31,0],"1f6bb":[["🚻"],"","󾔆",["restroom"],36,31,31,0],"1f6bc":[["🚼"],"","󾬵",["baby_symbol"],36,32,31,0],"1f6bd":[["🚽"],"","󾔇",["toilet"],36,33,31,0],"1f6be":[["🚾"],"","󾔈",["wc"],36,34,31,0],"1f6bf":[["🚿"],"","",["shower"],36,35,31,0],"1f6c0":[["🛀"],"","󾔅",["bath"],36,36,31,0],"1f6c1":[["🛁"],"","",["bathtub"],36,42,31,0],"1f6c2":[["🛂"],"","",["passport_control"],36,43,31,0],"1f6c3":[["🛃"],"","",["customs"],36,44,31,0],"1f6c4":[["🛄"],"","",["baggage_claim"],36,45,31,0],"1f6c5":[["🛅"],"","",["left_luggage"],36,46,31,0],"1f6cb-fe0f":[["🛋️","🛋"],"","",["couch_and_lamp"],36,47,15,0],"1f6cc":[["🛌"],"","",["sleeping_accommodation"],36,48,15,0],"1f6cd-fe0f":[["🛍️","🛍"],"","",["shopping_bags"],37,2,15,0],"1f6ce-fe0f":[["🛎️","🛎"],"","",["bellhop_bell"],37,3,15,0],"1f6cf-fe0f":[["🛏️","🛏"],"","",["bed"],37,4,15,0],"1f6d0":[["🛐"],"","",["place_of_worship"],37,5,15,0],"1f6d1":[["🛑"],"","",["octagonal_sign"],37,6,15,0],"1f6d2":[["🛒"],"","",["shopping_trolley"],37,7,15,0],"1f6e0-fe0f":[["🛠️","🛠"],"","",["hammer_and_wrench"],37,8,15,0],"1f6e1-fe0f":[["🛡️","🛡"],"","",["shield"],37,9,15,0],"1f6e2-fe0f":[["🛢️","🛢"],"","",["oil_drum"],37,10,15,0],"1f6e3-fe0f":[["🛣️","🛣"],"","",["motorway"],37,11,15,0],"1f6e4-fe0f":[["🛤️","🛤"],"","",["railway_track"],37,12,15,0],"1f6e5-fe0f":[["🛥️","🛥"],"","",["motor_boat"],37,13,15,0],"1f6e9-fe0f":[["🛩️","🛩"],"","",["small_airplane"],37,14,15,0],"1f6eb":[["🛫"],"","",["airplane_departure"],37,15,15,0],"1f6ec":[["🛬"],"","",["airplane_arriving"],37,16,15,0],"1f6f0-fe0f":[["🛰️","🛰"],"","",["satellite"],37,17,15,0],"1f6f3-fe0f":[["🛳️","🛳"],"","",["passenger_ship"],37,18,15,0],"1f6f4":[["🛴"],"","",["scooter"],37,19,15,0],"1f6f5":[["🛵"],"","",["motor_scooter"],37,20,15,0],"1f6f6":[["🛶"],"","",["canoe"],37,21,15,0],"1f6f7":[["🛷"],"","",["sled"],37,22,15,0],"1f6f8":[["🛸"],"","",["flying_saucer"],37,23,15,0],"1f910":[["🤐"],"","",["zipper_mouth_face"],37,24,15,0],"1f911":[["🤑"],"","",["money_mouth_face"],37,25,15,0],"1f912":[["🤒"],"","",["face_with_thermometer"],37,26,15,0],"1f913":[["🤓"],"","",["nerd_face"],37,27,15,0],"1f914":[["🤔"],"","",["thinking_face"],37,28,15,0],"1f915":[["🤕"],"","",["face_with_head_bandage"],37,29,15,0],"1f916":[["🤖"],"","",["robot_face"],37,30,15,0],"1f917":[["🤗"],"","",["hugging_face"],37,31,15,0],"1f918":[["🤘"],"","",["the_horns","sign_of_the_horns"],37,32,15,0],"1f919":[["🤙"],"","",["call_me_hand"],37,38,15,0],"1f91a":[["🤚"],"","",["raised_back_of_hand"],37,44,15,0],"1f91b":[["🤛"],"","",["left-facing_fist"],37,50,15,0],"1f91c":[["🤜"],"","",["right-facing_fist"],38,4,15,0],"1f91d":[["🤝"],"","",["handshake"],38,10,15,0],"1f91e":[["🤞"],"","",["crossed_fingers","hand_with_index_and_middle_fingers_crossed"],38,11,15,0],"1f91f":[["🤟"],"","",["i_love_you_hand_sign"],38,17,15,0],"1f920":[["🤠"],"","",["face_with_cowboy_hat"],38,23,15,0],"1f921":[["🤡"],"","",["clown_face"],38,24,15,0],"1f922":[["🤢"],"","",["nauseated_face"],38,25,15,0],"1f923":[["🤣"],"","",["rolling_on_the_floor_laughing"],38,26,15,0],"1f924":[["🤤"],"","",["drooling_face"],38,27,15,0],"1f925":[["🤥"],"","",["lying_face"],38,28,15,0],"1f926-200d-2640-fe0f":[["🤦‍♀️","🤦‍♀"],"","",["woman-facepalming"],38,29,15,0],"1f926-200d-2642-fe0f":[["🤦‍♂️","🤦‍♂"],"","",["man-facepalming"],38,35,15,0],"1f926":[["🤦"],"","",["face_palm"],38,41,7,0],"1f927":[["🤧"],"","",["sneezing_face"],38,47,15,0],"1f928":[["🤨"],"","",["face_with_raised_eyebrow","face_with_one_eyebrow_raised"],38,48,15,0],"1f929":[["🤩"],"","",["star-struck","grinning_face_with_star_eyes"],38,49,15,0],"1f92a":[["🤪"],"","",["zany_face","grinning_face_with_one_large_and_one_small_eye"],38,50,15,0],"1f92b":[["🤫"],"","",["shushing_face","face_with_finger_covering_closed_lips"],38,51,15,0],"1f92c":[["🤬"],"","",["face_with_symbols_on_mouth","serious_face_with_symbols_covering_mouth"],39,0,15,0],"1f92d":[["🤭"],"","",["face_with_hand_over_mouth","smiling_face_with_smiling_eyes_and_hand_covering_mouth"],39,1,15,0],"1f92e":[["🤮"],"","",["face_vomiting","face_with_open_mouth_vomiting"],39,2,15,0],"1f92f":[["🤯"],"","",["exploding_head","shocked_face_with_exploding_head"],39,3,15,0],"1f930":[["🤰"],"","",["pregnant_woman"],39,4,15,0],"1f931":[["🤱"],"","",["breast-feeding"],39,10,15,0],"1f932":[["🤲"],"","",["palms_up_together"],39,16,15,0],"1f933":[["🤳"],"","",["selfie"],39,22,15,0],"1f934":[["🤴"],"","",["prince"],39,28,15,0],"1f935":[["🤵"],"","",["man_in_tuxedo"],39,34,15,0],"1f936":[["🤶"],"","",["mrs_claus","mother_christmas"],39,40,15,0],"1f937-200d-2640-fe0f":[["🤷‍♀️","🤷‍♀"],"","",["woman-shrugging"],39,46,15,0],"1f937-200d-2642-fe0f":[["🤷‍♂️","🤷‍♂"],"","",["man-shrugging"],40,0,15,0],"1f937":[["🤷"],"","",["shrug"],40,6,7,0],"1f938-200d-2640-fe0f":[["🤸‍♀️","🤸‍♀"],"","",["woman-cartwheeling"],40,12,15,0],"1f938-200d-2642-fe0f":[["🤸‍♂️","🤸‍♂"],"","",["man-cartwheeling"],40,18,15,0],"1f938":[["🤸"],"","",["person_doing_cartwheel"],40,24,7,0],"1f939-200d-2640-fe0f":[["🤹‍♀️","🤹‍♀"],"","",["woman-juggling"],40,30,7,0],"1f939-200d-2642-fe0f":[["🤹‍♂️","🤹‍♂"],"","",["man-juggling"],40,36,7,0],"1f939":[["🤹"],"","",["juggling"],40,42,15,0],"1f93a":[["🤺"],"","",["fencer"],40,48,15,0],"1f93c-200d-2640-fe0f":[["🤼‍♀️","🤼‍♀"],"","",["woman-wrestling"],40,49,15,0],"1f93c-200d-2642-fe0f":[["🤼‍♂️","🤼‍♂"],"","",["man-wrestling"],40,50,15,0],"1f93c":[["🤼"],"","",["wrestlers"],40,51,7,0],"1f93d-200d-2640-fe0f":[["🤽‍♀️","🤽‍♀"],"","",["woman-playing-water-polo"],41,0,15,0],"1f93d-200d-2642-fe0f":[["🤽‍♂️","🤽‍♂"],"","",["man-playing-water-polo"],41,6,15,0],"1f93d":[["🤽"],"","",["water_polo"],41,12,7,0],"1f93e-200d-2640-fe0f":[["🤾‍♀️","🤾‍♀"],"","",["woman-playing-handball"],41,18,15,0],"1f93e-200d-2642-fe0f":[["🤾‍♂️","🤾‍♂"],"","",["man-playing-handball"],41,24,15,0],"1f93e":[["🤾"],"","",["handball"],41,30,7,0],"1f940":[["🥀"],"","",["wilted_flower"],41,36,15,0],"1f941":[["🥁"],"","",["drum_with_drumsticks"],41,37,15,0],"1f942":[["🥂"],"","",["clinking_glasses"],41,38,15,0],"1f943":[["🥃"],"","",["tumbler_glass"],41,39,15,0],"1f944":[["🥄"],"","",["spoon"],41,40,15,0],"1f945":[["🥅"],"","",["goal_net"],41,41,15,0],"1f947":[["🥇"],"","",["first_place_medal"],41,42,15,0],"1f948":[["🥈"],"","",["second_place_medal"],41,43,15,0],"1f949":[["🥉"],"","",["third_place_medal"],41,44,15,0],"1f94a":[["🥊"],"","",["boxing_glove"],41,45,15,0],"1f94b":[["🥋"],"","",["martial_arts_uniform"],41,46,15,0],"1f94c":[["🥌"],"","",["curling_stone"],41,47,15,0],"1f950":[["🥐"],"","",["croissant"],41,48,15,0],"1f951":[["🥑"],"","",["avocado"],41,49,15,0],"1f952":[["🥒"],"","",["cucumber"],41,50,15,0],"1f953":[["🥓"],"","",["bacon"],41,51,15,0],"1f954":[["🥔"],"","",["potato"],42,0,15,0],"1f955":[["🥕"],"","",["carrot"],42,1,15,0],"1f956":[["🥖"],"","",["baguette_bread"],42,2,15,0],"1f957":[["🥗"],"","",["green_salad"],42,3,15,0],"1f958":[["🥘"],"","",["shallow_pan_of_food"],42,4,15,0],"1f959":[["🥙"],"","",["stuffed_flatbread"],42,5,15,0],"1f95a":[["🥚"],"","",["egg"],42,6,15,0],"1f95b":[["🥛"],"","",["glass_of_milk"],42,7,15,0],"1f95c":[["🥜"],"","",["peanuts"],42,8,15,0],"1f95d":[["🥝"],"","",["kiwifruit"],42,9,15,0],"1f95e":[["🥞"],"","",["pancakes"],42,10,15,0],"1f95f":[["🥟"],"","",["dumpling"],42,11,15,0],"1f960":[["🥠"],"","",["fortune_cookie"],42,12,15,0],"1f961":[["🥡"],"","",["takeout_box"],42,13,15,0],"1f962":[["🥢"],"","",["chopsticks"],42,14,15,0],"1f963":[["🥣"],"","",["bowl_with_spoon"],42,15,15,0],"1f964":[["🥤"],"","",["cup_with_straw"],42,16,15,0],"1f965":[["🥥"],"","",["coconut"],42,17,15,0],"1f966":[["🥦"],"","",["broccoli"],42,18,15,0],"1f967":[["🥧"],"","",["pie"],42,19,15,0],"1f968":[["🥨"],"","",["pretzel"],42,20,15,0],"1f969":[["🥩"],"","",["cut_of_meat"],42,21,15,0],"1f96a":[["🥪"],"","",["sandwich"],42,22,15,0],"1f96b":[["🥫"],"","",["canned_food"],42,23,15,0],"1f980":[["🦀"],"","",["crab"],42,24,15,0],"1f981":[["🦁"],"","",["lion_face"],42,25,15,0],"1f982":[["🦂"],"","",["scorpion"],42,26,15,0],"1f983":[["🦃"],"","",["turkey"],42,27,15,0],"1f984":[["🦄"],"","",["unicorn_face"],42,28,15,0],"1f985":[["🦅"],"","",["eagle"],42,29,15,0],"1f986":[["🦆"],"","",["duck"],42,30,15,0],"1f987":[["🦇"],"","",["bat"],42,31,15,0],"1f988":[["🦈"],"","",["shark"],42,32,15,0],"1f989":[["🦉"],"","",["owl"],42,33,15,0],"1f98a":[["🦊"],"","",["fox_face"],42,34,15,0],"1f98b":[["🦋"],"","",["butterfly"],42,35,15,0],"1f98c":[["🦌"],"","",["deer"],42,36,15,0],"1f98d":[["🦍"],"","",["gorilla"],42,37,15,0],"1f98e":[["🦎"],"","",["lizard"],42,38,15,0],"1f98f":[["🦏"],"","",["rhinoceros"],42,39,15,0],"1f990":[["🦐"],"","",["shrimp"],42,40,15,0],"1f991":[["🦑"],"","",["squid"],42,41,15,0],"1f992":[["🦒"],"","",["giraffe_face"],42,42,15,0],"1f993":[["🦓"],"","",["zebra_face"],42,43,15,0],"1f994":[["🦔"],"","",["hedgehog"],42,44,15,0],"1f995":[["🦕"],"","",["sauropod"],42,45,15,0],"1f996":[["🦖"],"","",["t-rex"],42,46,15,0],"1f997":[["🦗"],"","",["cricket"],42,47,15,0],"1f9c0":[["🧀"],"","",["cheese_wedge"],42,48,15,0],"1f9d0":[["🧐"],"","",["face_with_monocle"],42,49,15,0],"1f9d1":[["🧑"],"","",["adult"],42,50,15,0],"1f9d2":[["🧒"],"","",["child"],43,4,15,0],"1f9d3":[["🧓"],"","",["older_adult"],43,10,15,0],"1f9d4":[["🧔"],"","",["bearded_person"],43,16,15,0],"1f9d5":[["🧕"],"","",["person_with_headscarf"],43,22,15,0],"1f9d6-200d-2640-fe0f":[["🧖‍♀️","🧖‍♀"],"","",["woman_in_steamy_room"],43,28,15,0],"1f9d6-200d-2642-fe0f":[["🧖‍♂️","🧖‍♂","🧖"],"","",["man_in_steamy_room","person_in_steamy_room"],43,34,15,0],"1f9d7-200d-2640-fe0f":[["🧗‍♀️","🧗‍♀","🧗"],"","",["woman_climbing","person_climbing"],43,46,15,0],"1f9d7-200d-2642-fe0f":[["🧗‍♂️","🧗‍♂"],"","",["man_climbing"],44,0,15,0],"1f9d8-200d-2640-fe0f":[["🧘‍♀️","🧘‍♀","🧘"],"","",["woman_in_lotus_position","person_in_lotus_position"],44,12,15,0],"1f9d8-200d-2642-fe0f":[["🧘‍♂️","🧘‍♂"],"","",["man_in_lotus_position"],44,18,15,0],"1f9d9-200d-2640-fe0f":[["🧙‍♀️","🧙‍♀","🧙"],"","",["female_mage","mage"],44,30,15,0],"1f9d9-200d-2642-fe0f":[["🧙‍♂️","🧙‍♂"],"","",["male_mage"],44,36,15,0],"1f9da-200d-2640-fe0f":[["🧚‍♀️","🧚‍♀","🧚"],"","",["female_fairy","fairy"],44,48,15,0],"1f9da-200d-2642-fe0f":[["🧚‍♂️","🧚‍♂"],"","",["male_fairy"],45,2,15,0],"1f9db-200d-2640-fe0f":[["🧛‍♀️","🧛‍♀","🧛"],"","",["female_vampire","vampire"],45,14,15,0],"1f9db-200d-2642-fe0f":[["🧛‍♂️","🧛‍♂"],"","",["male_vampire"],45,20,15,0],"1f9dc-200d-2640-fe0f":[["🧜‍♀️","🧜‍♀"],"","",["mermaid"],45,32,15,0],"1f9dc-200d-2642-fe0f":[["🧜‍♂️","🧜‍♂","🧜"],"","",["merman","merperson"],45,38,15,0],"1f9dd-200d-2640-fe0f":[["🧝‍♀️","🧝‍♀"],"","",["female_elf"],45,50,15,0],"1f9dd-200d-2642-fe0f":[["🧝‍♂️","🧝‍♂","🧝"],"","",["male_elf","elf"],46,4,15,0],"1f9de-200d-2640-fe0f":[["🧞‍♀️","🧞‍♀"],"","",["female_genie"],46,16,15,0],"1f9de-200d-2642-fe0f":[["🧞‍♂️","🧞‍♂","🧞"],"","",["male_genie","genie"],46,17,15,0],"1f9df-200d-2640-fe0f":[["🧟‍♀️","🧟‍♀"],"","",["female_zombie"],46,19,15,0],"1f9df-200d-2642-fe0f":[["🧟‍♂️","🧟‍♂","🧟"],"","",["male_zombie","zombie"],46,20,15,0],"1f9e0":[["🧠"],"","",["brain"],46,22,15,0],"1f9e1":[["🧡"],"","",["orange_heart"],46,23,15,0],"1f9e2":[["🧢"],"","",["billed_cap"],46,24,15,0],"1f9e3":[["🧣"],"","",["scarf"],46,25,15,0],"1f9e4":[["🧤"],"","",["gloves"],46,26,15,0],"1f9e5":[["🧥"],"","",["coat"],46,27,15,0],"1f9e6":[["🧦"],"","",["socks"],46,28,15,0],"203c-fe0f":[["‼️","‼"],"","󾬆",["bangbang"],46,29,31,0],"2049-fe0f":[["⁉️","⁉"],"","󾬅",["interrobang"],46,30,31,0],"2122-fe0f":[["™️","™"],"","󾬪",["tm"],46,31,31,0],"2139-fe0f":[["ℹ️","ℹ"],"","󾭇",["information_source"],46,32,31,0],"2194-fe0f":[["↔️","↔"],"","󾫶",["left_right_arrow"],46,33,31,0],"2195-fe0f":[["↕️","↕"],"","󾫷",["arrow_up_down"],46,34,31,0],"2196-fe0f":[["↖️","↖"],"","󾫲",["arrow_upper_left"],46,35,31,0],"2197-fe0f":[["↗️","↗"],"","󾫰",["arrow_upper_right"],46,36,31,0],"2198-fe0f":[["↘️","↘"],"","󾫱",["arrow_lower_right"],46,37,31,0],"2199-fe0f":[["↙️","↙"],"","󾫳",["arrow_lower_left"],46,38,31,0],"21a9-fe0f":[["↩️","↩"],"","󾮃",["leftwards_arrow_with_hook"],46,39,31,0],"21aa-fe0f":[["↪️","↪"],"","󾮈",["arrow_right_hook"],46,40,31,0],"231a":[["⌚"],"","󾀝",["watch"],46,41,31,0],"231b":[["⌛"],"","󾀜",["hourglass"],46,42,31,0],"2328-fe0f":[["⌨️","⌨"],"","",["keyboard"],46,43,15,0],"23cf-fe0f":[["⏏️","⏏"],"","",["eject"],46,44,15,0],"23e9":[["⏩"],"","󾫾",["fast_forward"],46,45,31,0],"23ea":[["⏪"],"","󾫿",["rewind"],46,46,31,0],"23eb":[["⏫"],"","󾬃",["arrow_double_up"],46,47,31,0],"23ec":[["⏬"],"","󾬂",["arrow_double_down"],46,48,31,0],"23ed-fe0f":[["⏭️","⏭"],"","",["black_right_pointing_double_triangle_with_vertical_bar"],46,49,15,0],"23ee-fe0f":[["⏮️","⏮"],"","",["black_left_pointing_double_triangle_with_vertical_bar"],46,50,15,0],"23ef-fe0f":[["⏯️","⏯"],"","",["black_right_pointing_triangle_with_double_vertical_bar"],46,51,15,0],"23f0":[["⏰"],"","󾀪",["alarm_clock"],47,0,31,0],"23f1-fe0f":[["⏱️","⏱"],"","",["stopwatch"],47,1,15,0],"23f2-fe0f":[["⏲️","⏲"],"","",["timer_clock"],47,2,15,0],"23f3":[["⏳"],"","󾀛",["hourglass_flowing_sand"],47,3,31,0],"23f8-fe0f":[["⏸️","⏸"],"","",["double_vertical_bar"],47,4,15,0],"23f9-fe0f":[["⏹️","⏹"],"","",["black_square_for_stop"],47,5,15,0],"23fa-fe0f":[["⏺️","⏺"],"","",["black_circle_for_record"],47,6,15,0],"24c2-fe0f":[["Ⓜ️","Ⓜ"],"","󾟡",["m"],47,7,31,0],"25aa-fe0f":[["▪️","▪"],"","󾭮",["black_small_square"],47,8,31,0],"25ab-fe0f":[["▫️","▫"],"","󾭭",["white_small_square"],47,9,31,0],"25b6-fe0f":[["▶️","▶"],"","󾫼",["arrow_forward"],47,10,31,0],"25c0-fe0f":[["◀️","◀"],"","󾫽",["arrow_backward"],47,11,31,0],"25fb-fe0f":[["◻️","◻"],"","󾭱",["white_medium_square"],47,12,31,0],"25fc-fe0f":[["◼️","◼"],"","󾭲",["black_medium_square"],47,13,31,0],"25fd":[["◽"],"","󾭯",["white_medium_small_square"],47,14,31,0],"25fe":[["◾"],"","󾭰",["black_medium_small_square"],47,15,31,0],"2600-fe0f":[["☀️","☀"],"","󾀀",["sunny"],47,16,31,0],"2601-fe0f":[["☁️","☁"],"","󾀁",["cloud"],47,17,31,0],"2602-fe0f":[["☂️","☂"],"","",["umbrella"],47,18,15,0],"2603-fe0f":[["☃️","☃"],"","",["snowman"],47,19,15,0],"2604-fe0f":[["☄️","☄"],"","",["comet"],47,20,15,0],"260e-fe0f":[["☎️","☎"],"","󾔣",["phone","telephone"],47,21,31,0],"2611-fe0f":[["☑️","☑"],"","󾮋",["ballot_box_with_check"],47,22,31,0],2614:[["☔"],"","󾀂",["umbrella_with_rain_drops"],47,23,31,0],2615:[["☕"],"","󾦁",["coffee"],47,24,31,0],"2618-fe0f":[["☘️","☘"],"","",["shamrock"],47,25,15,0],"261d-fe0f":[["☝️","☝"],"","󾮘",["point_up"],47,26,31,0],"2620-fe0f":[["☠️","☠"],"","",["skull_and_crossbones"],47,32,15,0],"2622-fe0f":[["☢️","☢"],"","",["radioactive_sign"],47,33,15,0],"2623-fe0f":[["☣️","☣"],"","",["biohazard_sign"],47,34,15,0],"2626-fe0f":[["☦️","☦"],"","",["orthodox_cross"],47,35,15,0],"262a-fe0f":[["☪️","☪"],"","",["star_and_crescent"],47,36,15,0],"262e-fe0f":[["☮️","☮"],"","",["peace_symbol"],47,37,15,0],"262f-fe0f":[["☯️","☯"],"","",["yin_yang"],47,38,15,0],"2638-fe0f":[["☸️","☸"],"","",["wheel_of_dharma"],47,39,15,0],"2639-fe0f":[["☹️","☹"],"","",["white_frowning_face"],47,40,15,0],"263a-fe0f":[["☺️","☺"],"","󾌶",["relaxed"],47,41,31,0],"2640-fe0f":[["♀️","♀"],"","",["female_sign"],47,42,14,0],"2642-fe0f":[["♂️","♂"],"","",["male_sign"],47,43,14,0],2648:[["♈"],"","󾀫",["aries"],47,44,31,0],2649:[["♉"],"","󾀬",["taurus"],47,45,31,0],"264a":[["♊"],"","󾀭",["gemini"],47,46,31,0],"264b":[["♋"],"","󾀮",["cancer"],47,47,31,0],"264c":[["♌"],"","󾀯",["leo"],47,48,31,0],"264d":[["♍"],"","󾀰",["virgo"],47,49,31,0],"264e":[["♎"],"","󾀱",["libra"],47,50,31,0],"264f":[["♏"],"","󾀲",["scorpius"],47,51,31,0],2650:[["♐"],"","󾀳",["sagittarius"],48,0,31,0],2651:[["♑"],"","󾀴",["capricorn"],48,1,31,0],2652:[["♒"],"","󾀵",["aquarius"],48,2,31,0],2653:[["♓"],"","󾀶",["pisces"],48,3,31,0],"2660-fe0f":[["♠️","♠"],"","󾬛",["spades"],48,4,31,0],"2663-fe0f":[["♣️","♣"],"","󾬝",["clubs"],48,5,31,0],"2665-fe0f":[["♥️","♥"],"","󾬚",["hearts"],48,6,31,0],"2666-fe0f":[["♦️","♦"],"","󾬜",["diamonds"],48,7,31,0],"2668-fe0f":[["♨️","♨"],"","󾟺",["hotsprings"],48,8,31,0],"267b-fe0f":[["♻️","♻"],"","󾬬",["recycle"],48,9,31,0],"267f":[["♿"],"","󾬠",["wheelchair"],48,10,31,0],"2692-fe0f":[["⚒️","⚒"],"","",["hammer_and_pick"],48,11,15,0],2693:[["⚓"],"","󾓁",["anchor"],48,12,31,0],"2694-fe0f":[["⚔️","⚔"],"","",["crossed_swords"],48,13,15,0],"2695-fe0f":[["⚕️","⚕"],"","",["medical_symbol","staff_of_aesculapius"],48,14,14,0],"2696-fe0f":[["⚖️","⚖"],"","",["scales"],48,15,15,0],"2697-fe0f":[["⚗️","⚗"],"","",["alembic"],48,16,15,0],"2699-fe0f":[["⚙️","⚙"],"","",["gear"],48,17,15,0],"269b-fe0f":[["⚛️","⚛"],"","",["atom_symbol"],48,18,15,0],"269c-fe0f":[["⚜️","⚜"],"","",["fleur_de_lis"],48,19,15,0],"26a0-fe0f":[["⚠️","⚠"],"","󾬣",["warning"],48,20,31,0],"26a1":[["⚡"],"","󾀄",["zap"],48,21,31,0],"26aa":[["⚪"],"","󾭥",["white_circle"],48,22,31,0],"26ab":[["⚫"],"","󾭦",["black_circle"],48,23,31,0],"26b0-fe0f":[["⚰️","⚰"],"","",["coffin"],48,24,15,0],"26b1-fe0f":[["⚱️","⚱"],"","",["funeral_urn"],48,25,15,0],"26bd":[["⚽"],"","󾟔",["soccer"],48,26,31,0],"26be":[["⚾"],"","󾟑",["baseball"],48,27,31,0],"26c4":[["⛄"],"","󾀃",["snowman_without_snow"],48,28,31,0],"26c5":[["⛅"],"","󾀏",["partly_sunny"],48,29,31,0],"26c8-fe0f":[["⛈️","⛈"],"","",["thunder_cloud_and_rain"],48,30,15,0],"26ce":[["⛎"],"","󾀷",["ophiuchus"],48,31,31,0],"26cf-fe0f":[["⛏️","⛏"],"","",["pick"],48,32,15,0],"26d1-fe0f":[["⛑️","⛑"],"","",["helmet_with_white_cross"],48,33,15,0],"26d3-fe0f":[["⛓️","⛓"],"","",["chains"],48,34,15,0],"26d4":[["⛔"],"","󾬦",["no_entry"],48,35,31,0],"26e9-fe0f":[["⛩️","⛩"],"","",["shinto_shrine"],48,36,15,0],"26ea":[["⛪"],"","󾒻",["church"],48,37,31,0],"26f0-fe0f":[["⛰️","⛰"],"","",["mountain"],48,38,15,0],"26f1-fe0f":[["⛱️","⛱"],"","",["umbrella_on_ground"],48,39,15,0],"26f2":[["⛲"],"","󾒼",["fountain"],48,40,31,0],"26f3":[["⛳"],"","󾟒",["golf"],48,41,31,0],"26f4-fe0f":[["⛴️","⛴"],"","",["ferry"],48,42,15,0],"26f5":[["⛵"],"","󾟪",["boat","sailboat"],48,43,31,0],"26f7-fe0f":[["⛷️","⛷"],"","",["skier"],48,44,15,0],"26f8-fe0f":[["⛸️","⛸"],"","",["ice_skate"],48,45,15,0],"26f9-fe0f-200d-2640-fe0f":[["⛹️‍♀️"],"","",["woman-bouncing-ball"],48,46,7,0],"26f9-fe0f-200d-2642-fe0f":[["⛹️‍♂️","⛹️","⛹"],"","",["man-bouncing-ball","person_with_ball"],49,0,7,0],"26fa":[["⛺"],"","󾟻",["tent"],49,12,31,0],"26fd":[["⛽"],"","󾟵",["fuelpump"],49,13,31,0],"2702-fe0f":[["✂️","✂"],"","󾔾",["scissors"],49,14,31,0],2705:[["✅"],"","󾭊",["white_check_mark"],49,15,31,0],"2708-fe0f":[["✈️","✈"],"","󾟩",["airplane"],49,16,31,0],"2709-fe0f":[["✉️","✉"],"","󾔩",["email","envelope"],49,17,31,0],"270a":[["✊"],"","󾮓",["fist"],49,18,31,0],"270b":[["✋"],"","󾮕",["hand","raised_hand"],49,24,31,0],"270c-fe0f":[["✌️","✌"],"","󾮔",["v"],49,30,31,0],"270d-fe0f":[["✍️","✍"],"","",["writing_hand"],49,36,15,0],"270f-fe0f":[["✏️","✏"],"","󾔹",["pencil2"],49,42,31,0],"2712-fe0f":[["✒️","✒"],"","󾔶",["black_nib"],49,43,31,0],"2714-fe0f":[["✔️","✔"],"","󾭉",["heavy_check_mark"],49,44,31,0],"2716-fe0f":[["✖️","✖"],"","󾭓",["heavy_multiplication_x"],49,45,31,0],"271d-fe0f":[["✝️","✝"],"","",["latin_cross"],49,46,15,0],"2721-fe0f":[["✡️","✡"],"","",["star_of_david"],49,47,15,0],2728:[["✨"],"","󾭠",["sparkles"],49,48,31,0],"2733-fe0f":[["✳️","✳"],"","󾭢",["eight_spoked_asterisk"],49,49,31,0],"2734-fe0f":[["✴️","✴"],"","󾭡",["eight_pointed_black_star"],49,50,31,0],"2744-fe0f":[["❄️","❄"],"","󾀎",["snowflake"],49,51,31,0],"2747-fe0f":[["❇️","❇"],"","󾭷",["sparkle"],50,0,31,0],"274c":[["❌"],"","󾭅",["x"],50,1,31,0],"274e":[["❎"],"","󾭆",["negative_squared_cross_mark"],50,2,31,0],2753:[["❓"],"","󾬉",["question"],50,3,31,0],2754:[["❔"],"","󾬊",["grey_question"],50,4,31,0],2755:[["❕"],"","󾬋",["grey_exclamation"],50,5,31,0],2757:[["❗"],"","󾬄",["exclamation","heavy_exclamation_mark"],50,6,31,0],"2763-fe0f":[["❣️","❣"],"","",["heavy_heart_exclamation_mark_ornament"],50,7,15,0],"2764-fe0f":[["❤️","❤"],"","󾬌",["heart"],50,8,31,0,"<3"],2795:[["➕"],"","󾭑",["heavy_plus_sign"],50,9,31,0],2796:[["➖"],"","󾭒",["heavy_minus_sign"],50,10,31,0],2797:[["➗"],"","󾭔",["heavy_division_sign"],50,11,31,0],"27a1-fe0f":[["➡️","➡"],"","󾫺",["arrow_right"],50,12,31,0],"27b0":[["➰"],"","󾬈",["curly_loop"],50,13,31,0],"27bf":[["➿"],"","󾠫",["loop"],50,14,31,0],"2934-fe0f":[["⤴️","⤴"],"","󾫴",["arrow_heading_up"],50,15,31,0],"2935-fe0f":[["⤵️","⤵"],"","󾫵",["arrow_heading_down"],50,16,31,0],"2b05-fe0f":[["⬅️","⬅"],"","󾫻",["arrow_left"],50,17,31,0],"2b06-fe0f":[["⬆️","⬆"],"","󾫸",["arrow_up"],50,18,31,0],"2b07-fe0f":[["⬇️","⬇"],"","󾫹",["arrow_down"],50,19,31,0],"2b1b":[["⬛"],"","󾭬",["black_large_square"],50,20,31,0],"2b1c":[["⬜"],"","󾭫",["white_large_square"],50,21,31,0],"2b50":[["⭐"],"","󾭨",["star"],50,22,31,0],"2b55":[["⭕"],"","󾭄",["o"],50,23,31,0],"3030-fe0f":[["〰️","〰"],"","󾬇",["wavy_dash"],50,24,31,0],"303d-fe0f":[["〽️","〽"],"","󾠛",["part_alternation_mark"],50,25,31,0],"3297-fe0f":[["㊗️","㊗"],"","󾭃",["congratulations"],50,26,31,0],"3299-fe0f":[["㊙️","㊙"],"","󾬫",["secret"],50,27,31,0]},i.prototype.emoticons_data={":o)":"monkey_face","</3":"broken_heart","=)":"smiley","=-)":"smiley","C:":"smile","c:":"smile",":D":"smile",":-D":"smile",":>":"laughing",":->":"laughing",";)":"wink",";-)":"wink","8)":"sunglasses",":|":"neutral_face",":-|":"neutral_face",":\\":"confused",":-\\":"confused",":/":"confused",":-/":"confused",":*":"kissing_heart",":-*":"kissing_heart",":p":"stuck_out_tongue",":-p":"stuck_out_tongue",":P":"stuck_out_tongue",":-P":"stuck_out_tongue",":b":"stuck_out_tongue",":-b":"stuck_out_tongue",";p":"stuck_out_tongue_winking_eye",";-p":"stuck_out_tongue_winking_eye",";b":"stuck_out_tongue_winking_eye",";-b":"stuck_out_tongue_winking_eye",";P":"stuck_out_tongue_winking_eye",";-P":"stuck_out_tongue_winking_eye","):":"disappointed",":(":"disappointed",":-(":"disappointed",">:(":"angry",">:-(":"angry",":'(":"cry","D:":"anguished",":o":"open_mouth",":-o":"open_mouth",":O":"open_mouth",":-O":"open_mouth",":)":"slightly_smiling_face","(:":"slightly_smiling_face",":-)":"slightly_smiling_face","<3":"heart"},i.prototype.variations_data={"1f385":{"1f3fb":["1f385-1f3fb",8,20,31,["🎅🏻"]],"1f3fc":["1f385-1f3fc",8,21,31,["🎅🏼"]],"1f3fd":["1f385-1f3fd",8,22,31,["🎅🏽"]],"1f3fe":["1f385-1f3fe",8,23,31,["🎅🏾"]],"1f3ff":["1f385-1f3ff",8,24,31,["🎅🏿"]]},"1f3c2":{"1f3fb":["1f3c2-1f3fb",9,29,31,["🏂🏻"]],"1f3fc":["1f3c2-1f3fc",9,30,31,["🏂🏼"]],"1f3fd":["1f3c2-1f3fd",9,31,31,["🏂🏽"]],"1f3fe":["1f3c2-1f3fe",9,32,31,["🏂🏾"]],"1f3ff":["1f3c2-1f3ff",9,33,31,["🏂🏿"]]},"1f3c3-200d-2640-fe0f":{"1f3fb":["1f3c3-1f3fb-200d-2640-fe0f",9,35,7,["🏃🏻‍♀️"]],"1f3fc":["1f3c3-1f3fc-200d-2640-fe0f",9,36,7,["🏃🏼‍♀️"]],"1f3fd":["1f3c3-1f3fd-200d-2640-fe0f",9,37,7,["🏃🏽‍♀️"]],"1f3fe":["1f3c3-1f3fe-200d-2640-fe0f",9,38,7,["🏃🏾‍♀️"]],"1f3ff":["1f3c3-1f3ff-200d-2640-fe0f",9,39,7,["🏃🏿‍♀️"]]},"1f3c3-200d-2642-fe0f":{"1f3fb":["1f3c3-1f3fb-200d-2642-fe0f",9,41,7,["🏃🏻‍♂️","🏃🏻"]],"1f3fc":["1f3c3-1f3fc-200d-2642-fe0f",9,42,7,["🏃🏼‍♂️","🏃🏼"]],"1f3fd":["1f3c3-1f3fd-200d-2642-fe0f",9,43,7,["🏃🏽‍♂️","🏃🏽"]],"1f3fe":["1f3c3-1f3fe-200d-2642-fe0f",9,44,7,["🏃🏾‍♂️","🏃🏾"]],"1f3ff":["1f3c3-1f3ff-200d-2642-fe0f",9,45,7,["🏃🏿‍♂️","🏃🏿"]]},"1f3c4-200d-2640-fe0f":{"1f3fb":["1f3c4-1f3fb-200d-2640-fe0f",10,1,7,["🏄🏻‍♀️"]],"1f3fc":["1f3c4-1f3fc-200d-2640-fe0f",10,2,7,["🏄🏼‍♀️"]],"1f3fd":["1f3c4-1f3fd-200d-2640-fe0f",10,3,7,["🏄🏽‍♀️"]],"1f3fe":["1f3c4-1f3fe-200d-2640-fe0f",10,4,7,["🏄🏾‍♀️"]],"1f3ff":["1f3c4-1f3ff-200d-2640-fe0f",10,5,7,["🏄🏿‍♀️"]]},"1f3c4-200d-2642-fe0f":{"1f3fb":["1f3c4-1f3fb-200d-2642-fe0f",10,7,7,["🏄🏻‍♂️","🏄🏻"]],"1f3fc":["1f3c4-1f3fc-200d-2642-fe0f",10,8,7,["🏄🏼‍♂️","🏄🏼"]],"1f3fd":["1f3c4-1f3fd-200d-2642-fe0f",10,9,7,["🏄🏽‍♂️","🏄🏽"]],"1f3fe":["1f3c4-1f3fe-200d-2642-fe0f",10,10,7,["🏄🏾‍♂️","🏄🏾"]],"1f3ff":["1f3c4-1f3ff-200d-2642-fe0f",10,11,7,["🏄🏿‍♂️","🏄🏿"]]},"1f3c7":{"1f3fb":["1f3c7-1f3fb",10,21,31,["🏇🏻"]],"1f3fc":["1f3c7-1f3fc",10,22,31,["🏇🏼"]],"1f3fd":["1f3c7-1f3fd",10,23,31,["🏇🏽"]],"1f3fe":["1f3c7-1f3fe",10,24,31,["🏇🏾"]],"1f3ff":["1f3c7-1f3ff",10,25,31,["🏇🏿"]]},"1f3ca-200d-2640-fe0f":{"1f3fb":["1f3ca-1f3fb-200d-2640-fe0f",10,29,7,["🏊🏻‍♀️"]],"1f3fc":["1f3ca-1f3fc-200d-2640-fe0f",10,30,7,["🏊🏼‍♀️"]],"1f3fd":["1f3ca-1f3fd-200d-2640-fe0f",10,31,7,["🏊🏽‍♀️"]],"1f3fe":["1f3ca-1f3fe-200d-2640-fe0f",10,32,7,["🏊🏾‍♀️"]],"1f3ff":["1f3ca-1f3ff-200d-2640-fe0f",10,33,7,["🏊🏿‍♀️"]]},"1f3ca-200d-2642-fe0f":{"1f3fb":["1f3ca-1f3fb-200d-2642-fe0f",10,35,7,["🏊🏻‍♂️","🏊🏻"]],"1f3fc":["1f3ca-1f3fc-200d-2642-fe0f",10,36,7,["🏊🏼‍♂️","🏊🏼"]],"1f3fd":["1f3ca-1f3fd-200d-2642-fe0f",10,37,7,["🏊🏽‍♂️","🏊🏽"]],"1f3fe":["1f3ca-1f3fe-200d-2642-fe0f",10,38,7,["🏊🏾‍♂️","🏊🏾"]],"1f3ff":["1f3ca-1f3ff-200d-2642-fe0f",10,39,7,["🏊🏿‍♂️","🏊🏿"]]},"1f3cb-fe0f-200d-2640-fe0f":{"1f3fb":["1f3cb-1f3fb-200d-2640-fe0f",10,47,7,["🏋🏻‍♀️"]],"1f3fc":["1f3cb-1f3fc-200d-2640-fe0f",10,48,7,["🏋🏼‍♀️"]],"1f3fd":["1f3cb-1f3fd-200d-2640-fe0f",10,49,7,["🏋🏽‍♀️"]],"1f3fe":["1f3cb-1f3fe-200d-2640-fe0f",10,50,7,["🏋🏾‍♀️"]],"1f3ff":["1f3cb-1f3ff-200d-2640-fe0f",10,51,7,["🏋🏿‍♀️"]]},"1f3cb-fe0f-200d-2642-fe0f":{"1f3fb":["1f3cb-1f3fb-200d-2642-fe0f",11,1,7,["🏋🏻‍♂️","🏋🏻"]],"1f3fc":["1f3cb-1f3fc-200d-2642-fe0f",11,2,7,["🏋🏼‍♂️","🏋🏼"]],"1f3fd":["1f3cb-1f3fd-200d-2642-fe0f",11,3,7,["🏋🏽‍♂️","🏋🏽"]],"1f3fe":["1f3cb-1f3fe-200d-2642-fe0f",11,4,7,["🏋🏾‍♂️","🏋🏾"]],"1f3ff":["1f3cb-1f3ff-200d-2642-fe0f",11,5,7,["🏋🏿‍♂️","🏋🏿"]]},"1f3cc-fe0f-200d-2640-fe0f":{"1f3fb":["1f3cc-1f3fb-200d-2640-fe0f",11,13,7,["🏌🏻‍♀️"]],"1f3fc":["1f3cc-1f3fc-200d-2640-fe0f",11,14,7,["🏌🏼‍♀️"]],"1f3fd":["1f3cc-1f3fd-200d-2640-fe0f",11,15,7,["🏌🏽‍♀️"]],"1f3fe":["1f3cc-1f3fe-200d-2640-fe0f",11,16,7,["🏌🏾‍♀️"]],"1f3ff":["1f3cc-1f3ff-200d-2640-fe0f",11,17,7,["🏌🏿‍♀️"]]},"1f3cc-fe0f-200d-2642-fe0f":{"1f3fb":["1f3cc-1f3fb-200d-2642-fe0f",11,19,7,["🏌🏻‍♂️","🏌🏻"]],"1f3fc":["1f3cc-1f3fc-200d-2642-fe0f",11,20,7,["🏌🏼‍♂️","🏌🏼"]],"1f3fd":["1f3cc-1f3fd-200d-2642-fe0f",11,21,7,["🏌🏽‍♂️","🏌🏽"]],"1f3fe":["1f3cc-1f3fe-200d-2642-fe0f",11,22,7,["🏌🏾‍♂️","🏌🏾"]],"1f3ff":["1f3cc-1f3ff-200d-2642-fe0f",11,23,7,["🏌🏿‍♂️","🏌🏿"]]},"1f442":{"1f3fb":["1f442-1f3fb",13,46,31,["👂🏻"]],"1f3fc":["1f442-1f3fc",13,47,31,["👂🏼"]],"1f3fd":["1f442-1f3fd",13,48,31,["👂🏽"]],"1f3fe":["1f442-1f3fe",13,49,31,["👂🏾"]],"1f3ff":["1f442-1f3ff",13,50,31,["👂🏿"]]},"1f443":{"1f3fb":["1f443-1f3fb",14,0,31,["👃🏻"]],"1f3fc":["1f443-1f3fc",14,1,31,["👃🏼"]],"1f3fd":["1f443-1f3fd",14,2,31,["👃🏽"]],"1f3fe":["1f443-1f3fe",14,3,31,["👃🏾"]],"1f3ff":["1f443-1f3ff",14,4,31,["👃🏿"]]},"1f446":{"1f3fb":["1f446-1f3fb",14,8,31,["👆🏻"]],"1f3fc":["1f446-1f3fc",14,9,31,["👆🏼"]],"1f3fd":["1f446-1f3fd",14,10,31,["👆🏽"]],"1f3fe":["1f446-1f3fe",14,11,31,["👆🏾"]],"1f3ff":["1f446-1f3ff",14,12,31,["👆🏿"]]},"1f447":{"1f3fb":["1f447-1f3fb",14,14,31,["👇🏻"]],"1f3fc":["1f447-1f3fc",14,15,31,["👇🏼"]],"1f3fd":["1f447-1f3fd",14,16,31,["👇🏽"]],"1f3fe":["1f447-1f3fe",14,17,31,["👇🏾"]],"1f3ff":["1f447-1f3ff",14,18,31,["👇🏿"]]},"1f448":{"1f3fb":["1f448-1f3fb",14,20,31,["👈🏻"]],"1f3fc":["1f448-1f3fc",14,21,31,["👈🏼"]],"1f3fd":["1f448-1f3fd",14,22,31,["👈🏽"]],"1f3fe":["1f448-1f3fe",14,23,31,["👈🏾"]],"1f3ff":["1f448-1f3ff",14,24,31,["👈🏿"]]},"1f449":{"1f3fb":["1f449-1f3fb",14,26,31,["👉🏻"]],"1f3fc":["1f449-1f3fc",14,27,31,["👉🏼"]],"1f3fd":["1f449-1f3fd",14,28,31,["👉🏽"]],"1f3fe":["1f449-1f3fe",14,29,31,["👉🏾"]],"1f3ff":["1f449-1f3ff",14,30,31,["👉🏿"]]},"1f44a":{"1f3fb":["1f44a-1f3fb",14,32,31,["👊🏻"]],"1f3fc":["1f44a-1f3fc",14,33,31,["👊🏼"]],"1f3fd":["1f44a-1f3fd",14,34,31,["👊🏽"]],"1f3fe":["1f44a-1f3fe",14,35,31,["👊🏾"]],"1f3ff":["1f44a-1f3ff",14,36,31,["👊🏿"]]},"1f44b":{"1f3fb":["1f44b-1f3fb",14,38,31,["👋🏻"]],"1f3fc":["1f44b-1f3fc",14,39,31,["👋🏼"]],"1f3fd":["1f44b-1f3fd",14,40,31,["👋🏽"]],"1f3fe":["1f44b-1f3fe",14,41,31,["👋🏾"]],"1f3ff":["1f44b-1f3ff",14,42,31,["👋🏿"]]},"1f44c":{"1f3fb":["1f44c-1f3fb",14,44,31,["👌🏻"]],"1f3fc":["1f44c-1f3fc",14,45,31,["👌🏼"]],"1f3fd":["1f44c-1f3fd",14,46,31,["👌🏽"]],"1f3fe":["1f44c-1f3fe",14,47,31,["👌🏾"]],"1f3ff":["1f44c-1f3ff",14,48,31,["👌🏿"]]},"1f44d":{"1f3fb":["1f44d-1f3fb",14,50,31,["👍🏻"]],"1f3fc":["1f44d-1f3fc",14,51,31,["👍🏼"]],"1f3fd":["1f44d-1f3fd",15,0,31,["👍🏽"]],"1f3fe":["1f44d-1f3fe",15,1,31,["👍🏾"]],"1f3ff":["1f44d-1f3ff",15,2,31,["👍🏿"]]},"1f44e":{"1f3fb":["1f44e-1f3fb",15,4,31,["👎🏻"]],"1f3fc":["1f44e-1f3fc",15,5,31,["👎🏼"]],"1f3fd":["1f44e-1f3fd",15,6,31,["👎🏽"]],"1f3fe":["1f44e-1f3fe",15,7,31,["👎🏾"]],"1f3ff":["1f44e-1f3ff",15,8,31,["👎🏿"]]},"1f44f":{"1f3fb":["1f44f-1f3fb",15,10,31,["👏🏻"]],"1f3fc":["1f44f-1f3fc",15,11,31,["👏🏼"]],"1f3fd":["1f44f-1f3fd",15,12,31,["👏🏽"]],"1f3fe":["1f44f-1f3fe",15,13,31,["👏🏾"]],"1f3ff":["1f44f-1f3ff",15,14,31,["👏🏿"]]},"1f450":{"1f3fb":["1f450-1f3fb",15,16,31,["👐🏻"]],"1f3fc":["1f450-1f3fc",15,17,31,["👐🏼"]],"1f3fd":["1f450-1f3fd",15,18,31,["👐🏽"]],"1f3fe":["1f450-1f3fe",15,19,31,["👐🏾"]],"1f3ff":["1f450-1f3ff",15,20,31,["👐🏿"]]},"1f466":{"1f3fb":["1f466-1f3fb",15,43,31,["👦🏻"]],"1f3fc":["1f466-1f3fc",15,44,31,["👦🏼"]],"1f3fd":["1f466-1f3fd",15,45,31,["👦🏽"]],"1f3fe":["1f466-1f3fe",15,46,31,["👦🏾"]],"1f3ff":["1f466-1f3ff",15,47,31,["👦🏿"]]},"1f467":{"1f3fb":["1f467-1f3fb",15,49,31,["👧🏻"]],"1f3fc":["1f467-1f3fc",15,50,31,["👧🏼"]],"1f3fd":["1f467-1f3fd",15,51,31,["👧🏽"]],"1f3fe":["1f467-1f3fe",16,0,31,["👧🏾"]],"1f3ff":["1f467-1f3ff",16,1,31,["👧🏿"]]},"1f468-200d-1f33e":{"1f3fb":["1f468-1f3fb-200d-1f33e",16,3,15,["👨🏻‍🌾"]],"1f3fc":["1f468-1f3fc-200d-1f33e",16,4,15,["👨🏼‍🌾"]],"1f3fd":["1f468-1f3fd-200d-1f33e",16,5,15,["👨🏽‍🌾"]],"1f3fe":["1f468-1f3fe-200d-1f33e",16,6,15,["👨🏾‍🌾"]],"1f3ff":["1f468-1f3ff-200d-1f33e",16,7,15,["👨🏿‍🌾"]]},"1f468-200d-1f373":{"1f3fb":["1f468-1f3fb-200d-1f373",16,9,15,["👨🏻‍🍳"]],"1f3fc":["1f468-1f3fc-200d-1f373",16,10,15,["👨🏼‍🍳"]],"1f3fd":["1f468-1f3fd-200d-1f373",16,11,15,["👨🏽‍🍳"]],"1f3fe":["1f468-1f3fe-200d-1f373",16,12,15,["👨🏾‍🍳"]],"1f3ff":["1f468-1f3ff-200d-1f373",16,13,15,["👨🏿‍🍳"]]},"1f468-200d-1f393":{"1f3fb":["1f468-1f3fb-200d-1f393",16,15,15,["👨🏻‍🎓"]],"1f3fc":["1f468-1f3fc-200d-1f393",16,16,15,["👨🏼‍🎓"]],"1f3fd":["1f468-1f3fd-200d-1f393",16,17,15,["👨🏽‍🎓"]],"1f3fe":["1f468-1f3fe-200d-1f393",16,18,15,["👨🏾‍🎓"]],"1f3ff":["1f468-1f3ff-200d-1f393",16,19,15,["👨🏿‍🎓"]]},"1f468-200d-1f3a4":{"1f3fb":["1f468-1f3fb-200d-1f3a4",16,21,15,["👨🏻‍🎤"]],"1f3fc":["1f468-1f3fc-200d-1f3a4",16,22,15,["👨🏼‍🎤"]],"1f3fd":["1f468-1f3fd-200d-1f3a4",16,23,15,["👨🏽‍🎤"]],"1f3fe":["1f468-1f3fe-200d-1f3a4",16,24,15,["👨🏾‍🎤"]],"1f3ff":["1f468-1f3ff-200d-1f3a4",16,25,15,["👨🏿‍🎤"]]},"1f468-200d-1f3a8":{"1f3fb":["1f468-1f3fb-200d-1f3a8",16,27,15,["👨🏻‍🎨"]],"1f3fc":["1f468-1f3fc-200d-1f3a8",16,28,15,["👨🏼‍🎨"]],"1f3fd":["1f468-1f3fd-200d-1f3a8",16,29,15,["👨🏽‍🎨"]],"1f3fe":["1f468-1f3fe-200d-1f3a8",16,30,15,["👨🏾‍🎨"]],"1f3ff":["1f468-1f3ff-200d-1f3a8",16,31,15,["👨🏿‍🎨"]]},"1f468-200d-1f3eb":{"1f3fb":["1f468-1f3fb-200d-1f3eb",16,33,15,["👨🏻‍🏫"]],"1f3fc":["1f468-1f3fc-200d-1f3eb",16,34,15,["👨🏼‍🏫"]],"1f3fd":["1f468-1f3fd-200d-1f3eb",16,35,15,["👨🏽‍🏫"]],"1f3fe":["1f468-1f3fe-200d-1f3eb",16,36,15,["👨🏾‍🏫"]],"1f3ff":["1f468-1f3ff-200d-1f3eb",16,37,15,["👨🏿‍🏫"]]},"1f468-200d-1f3ed":{"1f3fb":["1f468-1f3fb-200d-1f3ed",16,39,15,["👨🏻‍🏭"]],"1f3fc":["1f468-1f3fc-200d-1f3ed",16,40,15,["👨🏼‍🏭"]],"1f3fd":["1f468-1f3fd-200d-1f3ed",16,41,15,["👨🏽‍🏭"]],"1f3fe":["1f468-1f3fe-200d-1f3ed",16,42,15,["👨🏾‍🏭"]],"1f3ff":["1f468-1f3ff-200d-1f3ed",16,43,15,["👨🏿‍🏭"]]},"1f468-200d-1f4bb":{"1f3fb":["1f468-1f3fb-200d-1f4bb",17,8,15,["👨🏻‍💻"]],"1f3fc":["1f468-1f3fc-200d-1f4bb",17,9,15,["👨🏼‍💻"]],"1f3fd":["1f468-1f3fd-200d-1f4bb",17,10,15,["👨🏽‍💻"]],"1f3fe":["1f468-1f3fe-200d-1f4bb",17,11,15,["👨🏾‍💻"]],"1f3ff":["1f468-1f3ff-200d-1f4bb",17,12,15,["👨🏿‍💻"]]},"1f468-200d-1f4bc":{"1f3fb":["1f468-1f3fb-200d-1f4bc",17,14,15,["👨🏻‍💼"]],"1f3fc":["1f468-1f3fc-200d-1f4bc",17,15,15,["👨🏼‍💼"]],"1f3fd":["1f468-1f3fd-200d-1f4bc",17,16,15,["👨🏽‍💼"]],"1f3fe":["1f468-1f3fe-200d-1f4bc",17,17,15,["👨🏾‍💼"]],"1f3ff":["1f468-1f3ff-200d-1f4bc",17,18,15,["👨🏿‍💼"]]},"1f468-200d-1f527":{"1f3fb":["1f468-1f3fb-200d-1f527",17,20,15,["👨🏻‍🔧"]],"1f3fc":["1f468-1f3fc-200d-1f527",17,21,15,["👨🏼‍🔧"]],"1f3fd":["1f468-1f3fd-200d-1f527",17,22,15,["👨🏽‍🔧"]],"1f3fe":["1f468-1f3fe-200d-1f527",17,23,15,["👨🏾‍🔧"]],"1f3ff":["1f468-1f3ff-200d-1f527",17,24,15,["👨🏿‍🔧"]]},"1f468-200d-1f52c":{"1f3fb":["1f468-1f3fb-200d-1f52c",17,26,15,["👨🏻‍🔬"]],"1f3fc":["1f468-1f3fc-200d-1f52c",17,27,15,["👨🏼‍🔬"]],"1f3fd":["1f468-1f3fd-200d-1f52c",17,28,15,["👨🏽‍🔬"]],"1f3fe":["1f468-1f3fe-200d-1f52c",17,29,15,["👨🏾‍🔬"]],"1f3ff":["1f468-1f3ff-200d-1f52c",17,30,15,["👨🏿‍🔬"]]},"1f468-200d-1f680":{"1f3fb":["1f468-1f3fb-200d-1f680",17,32,15,["👨🏻‍🚀"]],"1f3fc":["1f468-1f3fc-200d-1f680",17,33,15,["👨🏼‍🚀"]],"1f3fd":["1f468-1f3fd-200d-1f680",17,34,15,["👨🏽‍🚀"]],"1f3fe":["1f468-1f3fe-200d-1f680",17,35,15,["👨🏾‍🚀"]],"1f3ff":["1f468-1f3ff-200d-1f680",17,36,15,["👨🏿‍🚀"]]},"1f468-200d-1f692":{"1f3fb":["1f468-1f3fb-200d-1f692",17,38,15,["👨🏻‍🚒"]],"1f3fc":["1f468-1f3fc-200d-1f692",17,39,15,["👨🏼‍🚒"]],"1f3fd":["1f468-1f3fd-200d-1f692",17,40,15,["👨🏽‍🚒"]],"1f3fe":["1f468-1f3fe-200d-1f692",17,41,15,["👨🏾‍🚒"]],"1f3ff":["1f468-1f3ff-200d-1f692",17,42,15,["👨🏿‍🚒"]]},"1f468-200d-2695-fe0f":{"1f3fb":["1f468-1f3fb-200d-2695-fe0f",17,44,7,["👨🏻‍⚕️"]],"1f3fc":["1f468-1f3fc-200d-2695-fe0f",17,45,7,["👨🏼‍⚕️"]],"1f3fd":["1f468-1f3fd-200d-2695-fe0f",17,46,7,["👨🏽‍⚕️"]],"1f3fe":["1f468-1f3fe-200d-2695-fe0f",17,47,7,["👨🏾‍⚕️"]],"1f3ff":["1f468-1f3ff-200d-2695-fe0f",17,48,7,["👨🏿‍⚕️"]]},"1f468-200d-2696-fe0f":{"1f3fb":["1f468-1f3fb-200d-2696-fe0f",17,50,7,["👨🏻‍⚖️"]],"1f3fc":["1f468-1f3fc-200d-2696-fe0f",17,51,7,["👨🏼‍⚖️"]],"1f3fd":["1f468-1f3fd-200d-2696-fe0f",18,0,7,["👨🏽‍⚖️"]],"1f3fe":["1f468-1f3fe-200d-2696-fe0f",18,1,7,["👨🏾‍⚖️"]],"1f3ff":["1f468-1f3ff-200d-2696-fe0f",18,2,7,["👨🏿‍⚖️"]]},"1f468-200d-2708-fe0f":{"1f3fb":["1f468-1f3fb-200d-2708-fe0f",18,4,7,["👨🏻‍✈️"]],"1f3fc":["1f468-1f3fc-200d-2708-fe0f",18,5,7,["👨🏼‍✈️"]],"1f3fd":["1f468-1f3fd-200d-2708-fe0f",18,6,7,["👨🏽‍✈️"]],"1f3fe":["1f468-1f3fe-200d-2708-fe0f",18,7,7,["👨🏾‍✈️"]],"1f3ff":["1f468-1f3ff-200d-2708-fe0f",18,8,7,["👨🏿‍✈️"]]},"1f468":{"1f3fb":["1f468-1f3fb",18,12,31,["👨🏻"]],"1f3fc":["1f468-1f3fc",18,13,31,["👨🏼"]],"1f3fd":["1f468-1f3fd",18,14,31,["👨🏽"]],"1f3fe":["1f468-1f3fe",18,15,31,["👨🏾"]],"1f3ff":["1f468-1f3ff",18,16,31,["👨🏿"]]},"1f469-200d-1f33e":{"1f3fb":["1f469-1f3fb-200d-1f33e",18,18,15,["👩🏻‍🌾"]],"1f3fc":["1f469-1f3fc-200d-1f33e",18,19,15,["👩🏼‍🌾"]],"1f3fd":["1f469-1f3fd-200d-1f33e",18,20,15,["👩🏽‍🌾"]],"1f3fe":["1f469-1f3fe-200d-1f33e",18,21,15,["👩🏾‍🌾"]],"1f3ff":["1f469-1f3ff-200d-1f33e",18,22,15,["👩🏿‍🌾"]]},"1f469-200d-1f373":{"1f3fb":["1f469-1f3fb-200d-1f373",18,24,15,["👩🏻‍🍳"]],"1f3fc":["1f469-1f3fc-200d-1f373",18,25,15,["👩🏼‍🍳"]],"1f3fd":["1f469-1f3fd-200d-1f373",18,26,15,["👩🏽‍🍳"]],"1f3fe":["1f469-1f3fe-200d-1f373",18,27,15,["👩🏾‍🍳"]],"1f3ff":["1f469-1f3ff-200d-1f373",18,28,15,["👩🏿‍🍳"]]},"1f469-200d-1f393":{"1f3fb":["1f469-1f3fb-200d-1f393",18,30,15,["👩🏻‍🎓"]],"1f3fc":["1f469-1f3fc-200d-1f393",18,31,15,["👩🏼‍🎓"]],"1f3fd":["1f469-1f3fd-200d-1f393",18,32,15,["👩🏽‍🎓"]],"1f3fe":["1f469-1f3fe-200d-1f393",18,33,15,["👩🏾‍🎓"]],"1f3ff":["1f469-1f3ff-200d-1f393",18,34,15,["👩🏿‍🎓"]]},"1f469-200d-1f3a4":{"1f3fb":["1f469-1f3fb-200d-1f3a4",18,36,15,["👩🏻‍🎤"]],"1f3fc":["1f469-1f3fc-200d-1f3a4",18,37,15,["👩🏼‍🎤"]],"1f3fd":["1f469-1f3fd-200d-1f3a4",18,38,15,["👩🏽‍🎤"]],"1f3fe":["1f469-1f3fe-200d-1f3a4",18,39,15,["👩🏾‍🎤"]],"1f3ff":["1f469-1f3ff-200d-1f3a4",18,40,15,["👩🏿‍🎤"]]},"1f469-200d-1f3a8":{"1f3fb":["1f469-1f3fb-200d-1f3a8",18,42,15,["👩🏻‍🎨"]],"1f3fc":["1f469-1f3fc-200d-1f3a8",18,43,15,["👩🏼‍🎨"]],"1f3fd":["1f469-1f3fd-200d-1f3a8",18,44,15,["👩🏽‍🎨"]],"1f3fe":["1f469-1f3fe-200d-1f3a8",18,45,15,["👩🏾‍🎨"]],"1f3ff":["1f469-1f3ff-200d-1f3a8",18,46,15,["👩🏿‍🎨"]]},"1f469-200d-1f3eb":{"1f3fb":["1f469-1f3fb-200d-1f3eb",18,48,15,["👩🏻‍🏫"]],"1f3fc":["1f469-1f3fc-200d-1f3eb",18,49,15,["👩🏼‍🏫"]],"1f3fd":["1f469-1f3fd-200d-1f3eb",18,50,15,["👩🏽‍🏫"]],"1f3fe":["1f469-1f3fe-200d-1f3eb",18,51,15,["👩🏾‍🏫"]],"1f3ff":["1f469-1f3ff-200d-1f3eb",19,0,15,["👩🏿‍🏫"]]},"1f469-200d-1f3ed":{"1f3fb":["1f469-1f3fb-200d-1f3ed",19,2,15,["👩🏻‍🏭"]],"1f3fc":["1f469-1f3fc-200d-1f3ed",19,3,15,["👩🏼‍🏭"]],"1f3fd":["1f469-1f3fd-200d-1f3ed",19,4,15,["👩🏽‍🏭"]],"1f3fe":["1f469-1f3fe-200d-1f3ed",19,5,15,["👩🏾‍🏭"]],"1f3ff":["1f469-1f3ff-200d-1f3ed",19,6,15,["👩🏿‍🏭"]]},"1f469-200d-1f4bb":{"1f3fb":["1f469-1f3fb-200d-1f4bb",19,18,15,["👩🏻‍💻"]],"1f3fc":["1f469-1f3fc-200d-1f4bb",19,19,15,["👩🏼‍💻"]],"1f3fd":["1f469-1f3fd-200d-1f4bb",19,20,15,["👩🏽‍💻"]],"1f3fe":["1f469-1f3fe-200d-1f4bb",19,21,15,["👩🏾‍💻"]],"1f3ff":["1f469-1f3ff-200d-1f4bb",19,22,15,["👩🏿‍💻"]]},"1f469-200d-1f4bc":{"1f3fb":["1f469-1f3fb-200d-1f4bc",19,24,15,["👩🏻‍💼"]],"1f3fc":["1f469-1f3fc-200d-1f4bc",19,25,15,["👩🏼‍💼"]],"1f3fd":["1f469-1f3fd-200d-1f4bc",19,26,15,["👩🏽‍💼"]],"1f3fe":["1f469-1f3fe-200d-1f4bc",19,27,15,["👩🏾‍💼"]],"1f3ff":["1f469-1f3ff-200d-1f4bc",19,28,15,["👩🏿‍💼"]]},"1f469-200d-1f527":{"1f3fb":["1f469-1f3fb-200d-1f527",19,30,15,["👩🏻‍🔧"]],"1f3fc":["1f469-1f3fc-200d-1f527",19,31,15,["👩🏼‍🔧"]],"1f3fd":["1f469-1f3fd-200d-1f527",19,32,15,["👩🏽‍🔧"]],"1f3fe":["1f469-1f3fe-200d-1f527",19,33,15,["👩🏾‍🔧"]],"1f3ff":["1f469-1f3ff-200d-1f527",19,34,15,["👩🏿‍🔧"]]},"1f469-200d-1f52c":{"1f3fb":["1f469-1f3fb-200d-1f52c",19,36,15,["👩🏻‍🔬"]],"1f3fc":["1f469-1f3fc-200d-1f52c",19,37,15,["👩🏼‍🔬"]],"1f3fd":["1f469-1f3fd-200d-1f52c",19,38,15,["👩🏽‍🔬"]],"1f3fe":["1f469-1f3fe-200d-1f52c",19,39,15,["👩🏾‍🔬"]],"1f3ff":["1f469-1f3ff-200d-1f52c",19,40,15,["👩🏿‍🔬"]]},"1f469-200d-1f680":{"1f3fb":["1f469-1f3fb-200d-1f680",19,42,15,["👩🏻‍🚀"]],"1f3fc":["1f469-1f3fc-200d-1f680",19,43,15,["👩🏼‍🚀"]],"1f3fd":["1f469-1f3fd-200d-1f680",19,44,15,["👩🏽‍🚀"]],"1f3fe":["1f469-1f3fe-200d-1f680",19,45,15,["👩🏾‍🚀"]],"1f3ff":["1f469-1f3ff-200d-1f680",19,46,15,["👩🏿‍🚀"]]},"1f469-200d-1f692":{"1f3fb":["1f469-1f3fb-200d-1f692",19,48,15,["👩🏻‍🚒"]],"1f3fc":["1f469-1f3fc-200d-1f692",19,49,15,["👩🏼‍🚒"]],"1f3fd":["1f469-1f3fd-200d-1f692",19,50,15,["👩🏽‍🚒"]],"1f3fe":["1f469-1f3fe-200d-1f692",19,51,15,["👩🏾‍🚒"]],"1f3ff":["1f469-1f3ff-200d-1f692",20,0,15,["👩🏿‍🚒"]]},"1f469-200d-2695-fe0f":{"1f3fb":["1f469-1f3fb-200d-2695-fe0f",20,2,7,["👩🏻‍⚕️"]],"1f3fc":["1f469-1f3fc-200d-2695-fe0f",20,3,7,["👩🏼‍⚕️"]],"1f3fd":["1f469-1f3fd-200d-2695-fe0f",20,4,7,["👩🏽‍⚕️"]],"1f3fe":["1f469-1f3fe-200d-2695-fe0f",20,5,7,["👩🏾‍⚕️"]],"1f3ff":["1f469-1f3ff-200d-2695-fe0f",20,6,7,["👩🏿‍⚕️"]]},"1f469-200d-2696-fe0f":{"1f3fb":["1f469-1f3fb-200d-2696-fe0f",20,8,7,["👩🏻‍⚖️"]],"1f3fc":["1f469-1f3fc-200d-2696-fe0f",20,9,7,["👩🏼‍⚖️"]],"1f3fd":["1f469-1f3fd-200d-2696-fe0f",20,10,7,["👩🏽‍⚖️"]],"1f3fe":["1f469-1f3fe-200d-2696-fe0f",20,11,7,["👩🏾‍⚖️"]],"1f3ff":["1f469-1f3ff-200d-2696-fe0f",20,12,7,["👩🏿‍⚖️"]]},"1f469-200d-2708-fe0f":{"1f3fb":["1f469-1f3fb-200d-2708-fe0f",20,14,7,["👩🏻‍✈️"]],"1f3fc":["1f469-1f3fc-200d-2708-fe0f",20,15,7,["👩🏼‍✈️"]],"1f3fd":["1f469-1f3fd-200d-2708-fe0f",20,16,7,["👩🏽‍✈️"]],"1f3fe":["1f469-1f3fe-200d-2708-fe0f",20,17,7,["👩🏾‍✈️"]],"1f3ff":["1f469-1f3ff-200d-2708-fe0f",20,18,7,["👩🏿‍✈️"]]},"1f469":{"1f3fb":["1f469-1f3fb",20,24,31,["👩🏻"]],"1f3fc":["1f469-1f3fc",20,25,31,["👩🏼"]],"1f3fd":["1f469-1f3fd",20,26,31,["👩🏽"]],"1f3fe":["1f469-1f3fe",20,27,31,["👩🏾"]],"1f3ff":["1f469-1f3ff",20,28,31,["👩🏿"]]},"1f46e-200d-2640-fe0f":{"1f3fb":["1f46e-1f3fb-200d-2640-fe0f",20,34,7,["👮🏻‍♀️"]],"1f3fc":["1f46e-1f3fc-200d-2640-fe0f",20,35,7,["👮🏼‍♀️"]],"1f3fd":["1f46e-1f3fd-200d-2640-fe0f",20,36,7,["👮🏽‍♀️"]],"1f3fe":["1f46e-1f3fe-200d-2640-fe0f",20,37,7,["👮🏾‍♀️"]],"1f3ff":["1f46e-1f3ff-200d-2640-fe0f",20,38,7,["👮🏿‍♀️"]]},"1f46e-200d-2642-fe0f":{"1f3fb":["1f46e-1f3fb-200d-2642-fe0f",20,40,7,["👮🏻‍♂️","👮🏻"]],"1f3fc":["1f46e-1f3fc-200d-2642-fe0f",20,41,7,["👮🏼‍♂️","👮🏼"]],"1f3fd":["1f46e-1f3fd-200d-2642-fe0f",20,42,7,["👮🏽‍♂️","👮🏽"]],"1f3fe":["1f46e-1f3fe-200d-2642-fe0f",20,43,7,["👮🏾‍♂️","👮🏾"]],"1f3ff":["1f46e-1f3ff-200d-2642-fe0f",20,44,7,["👮🏿‍♂️","👮🏿"]]},"1f470":{"1f3fb":["1f470-1f3fb",21,3,31,["👰🏻"]],"1f3fc":["1f470-1f3fc",21,4,31,["👰🏼"]],"1f3fd":["1f470-1f3fd",21,5,31,["👰🏽"]],"1f3fe":["1f470-1f3fe",21,6,31,["👰🏾"]],"1f3ff":["1f470-1f3ff",21,7,31,["👰🏿"]]},"1f471-200d-2640-fe0f":{"1f3fb":["1f471-1f3fb-200d-2640-fe0f",21,9,7,["👱🏻‍♀️"]],"1f3fc":["1f471-1f3fc-200d-2640-fe0f",21,10,7,["👱🏼‍♀️"]],"1f3fd":["1f471-1f3fd-200d-2640-fe0f",21,11,7,["👱🏽‍♀️"]],"1f3fe":["1f471-1f3fe-200d-2640-fe0f",21,12,7,["👱🏾‍♀️"]],"1f3ff":["1f471-1f3ff-200d-2640-fe0f",21,13,7,["👱🏿‍♀️"]]},"1f471-200d-2642-fe0f":{"1f3fb":["1f471-1f3fb-200d-2642-fe0f",21,15,7,["👱🏻‍♂️","👱🏻"]],"1f3fc":["1f471-1f3fc-200d-2642-fe0f",21,16,7,["👱🏼‍♂️","👱🏼"]],"1f3fd":["1f471-1f3fd-200d-2642-fe0f",21,17,7,["👱🏽‍♂️","👱🏽"]],"1f3fe":["1f471-1f3fe-200d-2642-fe0f",21,18,7,["👱🏾‍♂️","👱🏾"]],"1f3ff":["1f471-1f3ff-200d-2642-fe0f",21,19,7,["👱🏿‍♂️","👱🏿"]]},"1f472":{"1f3fb":["1f472-1f3fb",21,27,31,["👲🏻"]],"1f3fc":["1f472-1f3fc",21,28,31,["👲🏼"]],"1f3fd":["1f472-1f3fd",21,29,31,["👲🏽"]],"1f3fe":["1f472-1f3fe",21,30,31,["👲🏾"]],"1f3ff":["1f472-1f3ff",21,31,31,["👲🏿"]]},"1f473-200d-2640-fe0f":{"1f3fb":["1f473-1f3fb-200d-2640-fe0f",21,33,7,["👳🏻‍♀️"]],"1f3fc":["1f473-1f3fc-200d-2640-fe0f",21,34,7,["👳🏼‍♀️"]],"1f3fd":["1f473-1f3fd-200d-2640-fe0f",21,35,7,["👳🏽‍♀️"]],"1f3fe":["1f473-1f3fe-200d-2640-fe0f",21,36,7,["👳🏾‍♀️"]],"1f3ff":["1f473-1f3ff-200d-2640-fe0f",21,37,7,["👳🏿‍♀️"]]},"1f473-200d-2642-fe0f":{"1f3fb":["1f473-1f3fb-200d-2642-fe0f",21,39,7,["👳🏻‍♂️","👳🏻"]],"1f3fc":["1f473-1f3fc-200d-2642-fe0f",21,40,7,["👳🏼‍♂️","👳🏼"]],"1f3fd":["1f473-1f3fd-200d-2642-fe0f",21,41,7,["👳🏽‍♂️","👳🏽"]],"1f3fe":["1f473-1f3fe-200d-2642-fe0f",21,42,7,["👳🏾‍♂️","👳🏾"]],"1f3ff":["1f473-1f3ff-200d-2642-fe0f",21,43,7,["👳🏿‍♂️","👳🏿"]]},"1f474":{"1f3fb":["1f474-1f3fb",21,51,31,["👴🏻"]],"1f3fc":["1f474-1f3fc",22,0,31,["👴🏼"]],"1f3fd":["1f474-1f3fd",22,1,31,["👴🏽"]],"1f3fe":["1f474-1f3fe",22,2,31,["👴🏾"]],"1f3ff":["1f474-1f3ff",22,3,31,["👴🏿"]]},"1f475":{"1f3fb":["1f475-1f3fb",22,5,31,["👵🏻"]],"1f3fc":["1f475-1f3fc",22,6,31,["👵🏼"]],"1f3fd":["1f475-1f3fd",22,7,31,["👵🏽"]],"1f3fe":["1f475-1f3fe",22,8,31,["👵🏾"]],"1f3ff":["1f475-1f3ff",22,9,31,["👵🏿"]]},"1f476":{"1f3fb":["1f476-1f3fb",22,11,31,["👶🏻"]],"1f3fc":["1f476-1f3fc",22,12,31,["👶🏼"]],"1f3fd":["1f476-1f3fd",22,13,31,["👶🏽"]],"1f3fe":["1f476-1f3fe",22,14,31,["👶🏾"]],"1f3ff":["1f476-1f3ff",22,15,31,["👶🏿"]]},"1f477-200d-2640-fe0f":{"1f3fb":["1f477-1f3fb-200d-2640-fe0f",22,17,7,["👷🏻‍♀️"]],"1f3fc":["1f477-1f3fc-200d-2640-fe0f",22,18,7,["👷🏼‍♀️"]],"1f3fd":["1f477-1f3fd-200d-2640-fe0f",22,19,7,["👷🏽‍♀️"]],"1f3fe":["1f477-1f3fe-200d-2640-fe0f",22,20,7,["👷🏾‍♀️"]],"1f3ff":["1f477-1f3ff-200d-2640-fe0f",22,21,7,["👷🏿‍♀️"]]},"1f477-200d-2642-fe0f":{"1f3fb":["1f477-1f3fb-200d-2642-fe0f",22,23,7,["👷🏻‍♂️","👷🏻"]],"1f3fc":["1f477-1f3fc-200d-2642-fe0f",22,24,7,["👷🏼‍♂️","👷🏼"]],"1f3fd":["1f477-1f3fd-200d-2642-fe0f",22,25,7,["👷🏽‍♂️","👷🏽"]],"1f3fe":["1f477-1f3fe-200d-2642-fe0f",22,26,7,["👷🏾‍♂️","👷🏾"]],"1f3ff":["1f477-1f3ff-200d-2642-fe0f",22,27,7,["👷🏿‍♂️","👷🏿"]]},"1f478":{"1f3fb":["1f478-1f3fb",22,35,31,["👸🏻"]],"1f3fc":["1f478-1f3fc",22,36,31,["👸🏼"]],"1f3fd":["1f478-1f3fd",22,37,31,["👸🏽"]],"1f3fe":["1f478-1f3fe",22,38,31,["👸🏾"]],"1f3ff":["1f478-1f3ff",22,39,31,["👸🏿"]]},"1f47c":{"1f3fb":["1f47c-1f3fb",22,44,31,["👼🏻"]],"1f3fc":["1f47c-1f3fc",22,45,31,["👼🏼"]],"1f3fd":["1f47c-1f3fd",22,46,31,["👼🏽"]],"1f3fe":["1f47c-1f3fe",22,47,31,["👼🏾"]],"1f3ff":["1f47c-1f3ff",22,48,31,["👼🏿"]]},"1f481-200d-2640-fe0f":{"1f3fb":["1f481-1f3fb-200d-2640-fe0f",23,2,7,["💁🏻‍♀️","💁🏻"]],"1f3fc":["1f481-1f3fc-200d-2640-fe0f",23,3,7,["💁🏼‍♀️","💁🏼"]],"1f3fd":["1f481-1f3fd-200d-2640-fe0f",23,4,7,["💁🏽‍♀️","💁🏽"]],"1f3fe":["1f481-1f3fe-200d-2640-fe0f",23,5,7,["💁🏾‍♀️","💁🏾"]],"1f3ff":["1f481-1f3ff-200d-2640-fe0f",23,6,7,["💁🏿‍♀️","💁🏿"]]},"1f481-200d-2642-fe0f":{"1f3fb":["1f481-1f3fb-200d-2642-fe0f",23,8,7,["💁🏻‍♂️"]],"1f3fc":["1f481-1f3fc-200d-2642-fe0f",23,9,7,["💁🏼‍♂️"]],"1f3fd":["1f481-1f3fd-200d-2642-fe0f",23,10,7,["💁🏽‍♂️"]],"1f3fe":["1f481-1f3fe-200d-2642-fe0f",23,11,7,["💁🏾‍♂️"]],"1f3ff":["1f481-1f3ff-200d-2642-fe0f",23,12,7,["💁🏿‍♂️"]]},"1f482-200d-2640-fe0f":{"1f3fb":["1f482-1f3fb-200d-2640-fe0f",23,20,7,["💂🏻‍♀️"]],"1f3fc":["1f482-1f3fc-200d-2640-fe0f",23,21,7,["💂🏼‍♀️"]],"1f3fd":["1f482-1f3fd-200d-2640-fe0f",23,22,7,["💂🏽‍♀️"]],"1f3fe":["1f482-1f3fe-200d-2640-fe0f",23,23,7,["💂🏾‍♀️"]],"1f3ff":["1f482-1f3ff-200d-2640-fe0f",23,24,7,["💂🏿‍♀️"]]},"1f482-200d-2642-fe0f":{"1f3fb":["1f482-1f3fb-200d-2642-fe0f",23,26,7,["💂🏻‍♂️","💂🏻"]],"1f3fc":["1f482-1f3fc-200d-2642-fe0f",23,27,7,["💂🏼‍♂️","💂🏼"]],"1f3fd":["1f482-1f3fd-200d-2642-fe0f",23,28,7,["💂🏽‍♂️","💂🏽"]],"1f3fe":["1f482-1f3fe-200d-2642-fe0f",23,29,7,["💂🏾‍♂️","💂🏾"]],"1f3ff":["1f482-1f3ff-200d-2642-fe0f",23,30,7,["💂🏿‍♂️","💂🏿"]]},"1f483":{"1f3fb":["1f483-1f3fb",23,38,31,["💃🏻"]],"1f3fc":["1f483-1f3fc",23,39,31,["💃🏼"]],"1f3fd":["1f483-1f3fd",23,40,31,["💃🏽"]],"1f3fe":["1f483-1f3fe",23,41,31,["💃🏾"]],"1f3ff":["1f483-1f3ff",23,42,31,["💃🏿"]]},"1f485":{"1f3fb":["1f485-1f3fb",23,45,31,["💅🏻"]],"1f3fc":["1f485-1f3fc",23,46,31,["💅🏼"]],"1f3fd":["1f485-1f3fd",23,47,31,["💅🏽"]],"1f3fe":["1f485-1f3fe",23,48,31,["💅🏾"]],"1f3ff":["1f485-1f3ff",23,49,31,["💅🏿"]]},"1f486-200d-2640-fe0f":{"1f3fb":["1f486-1f3fb-200d-2640-fe0f",23,51,7,["💆🏻‍♀️","💆🏻"]],"1f3fc":["1f486-1f3fc-200d-2640-fe0f",24,0,7,["💆🏼‍♀️","💆🏼"]],"1f3fd":["1f486-1f3fd-200d-2640-fe0f",24,1,7,["💆🏽‍♀️","💆🏽"]],"1f3fe":["1f486-1f3fe-200d-2640-fe0f",24,2,7,["💆🏾‍♀️","💆🏾"]],"1f3ff":["1f486-1f3ff-200d-2640-fe0f",24,3,7,["💆🏿‍♀️","💆🏿"]]},"1f486-200d-2642-fe0f":{"1f3fb":["1f486-1f3fb-200d-2642-fe0f",24,5,7,["💆🏻‍♂️"]],"1f3fc":["1f486-1f3fc-200d-2642-fe0f",24,6,7,["💆🏼‍♂️"]],"1f3fd":["1f486-1f3fd-200d-2642-fe0f",24,7,7,["💆🏽‍♂️"]],"1f3fe":["1f486-1f3fe-200d-2642-fe0f",24,8,7,["💆🏾‍♂️"]],"1f3ff":["1f486-1f3ff-200d-2642-fe0f",24,9,7,["💆🏿‍♂️"]]},"1f487-200d-2640-fe0f":{"1f3fb":["1f487-1f3fb-200d-2640-fe0f",24,17,7,["💇🏻‍♀️","💇🏻"]],"1f3fc":["1f487-1f3fc-200d-2640-fe0f",24,18,7,["💇🏼‍♀️","💇🏼"]],"1f3fd":["1f487-1f3fd-200d-2640-fe0f",24,19,7,["💇🏽‍♀️","💇🏽"]],"1f3fe":["1f487-1f3fe-200d-2640-fe0f",24,20,7,["💇🏾‍♀️","💇🏾"]],"1f3ff":["1f487-1f3ff-200d-2640-fe0f",24,21,7,["💇🏿‍♀️","💇🏿"]]},"1f487-200d-2642-fe0f":{"1f3fb":["1f487-1f3fb-200d-2642-fe0f",24,23,7,["💇🏻‍♂️"]],"1f3fc":["1f487-1f3fc-200d-2642-fe0f",24,24,7,["💇🏼‍♂️"]],"1f3fd":["1f487-1f3fd-200d-2642-fe0f",24,25,7,["💇🏽‍♂️"]],"1f3fe":["1f487-1f3fe-200d-2642-fe0f",24,26,7,["💇🏾‍♂️"]],"1f3ff":["1f487-1f3ff-200d-2642-fe0f",24,27,7,["💇🏿‍♂️"]]},"1f4aa":{"1f3fb":["1f4aa-1f3fb",25,17,31,["💪🏻"]],"1f3fc":["1f4aa-1f3fc",25,18,31,["💪🏼"]],"1f3fd":["1f4aa-1f3fd",25,19,31,["💪🏽"]],"1f3fe":["1f4aa-1f3fe",25,20,31,["💪🏾"]],"1f3ff":["1f4aa-1f3ff",25,21,31,["💪🏿"]]},"1f574-fe0f":{"1f3fb":["1f574-1f3fb",28,46,15,["🕴🏻"]],"1f3fc":["1f574-1f3fc",28,47,15,["🕴🏼"]],"1f3fd":["1f574-1f3fd",28,48,15,["🕴🏽"]],"1f3fe":["1f574-1f3fe",28,49,15,["🕴🏾"]],"1f3ff":["1f574-1f3ff",28,50,15,["🕴🏿"]]},"1f575-fe0f-200d-2640-fe0f":{"1f3fb":["1f575-1f3fb-200d-2640-fe0f",29,0,7,["🕵🏻‍♀️"]],"1f3fc":["1f575-1f3fc-200d-2640-fe0f",29,1,7,["🕵🏼‍♀️"]],"1f3fd":["1f575-1f3fd-200d-2640-fe0f",29,2,7,["🕵🏽‍♀️"]],"1f3fe":["1f575-1f3fe-200d-2640-fe0f",29,3,7,["🕵🏾‍♀️"]],"1f3ff":["1f575-1f3ff-200d-2640-fe0f",29,4,7,["🕵🏿‍♀️"]]},"1f575-fe0f-200d-2642-fe0f":{"1f3fb":["1f575-1f3fb-200d-2642-fe0f",29,6,7,["🕵🏻‍♂️","🕵🏻"]],"1f3fc":["1f575-1f3fc-200d-2642-fe0f",29,7,7,["🕵🏼‍♂️","🕵🏼"]],"1f3fd":["1f575-1f3fd-200d-2642-fe0f",29,8,7,["🕵🏽‍♂️","🕵🏽"]],"1f3fe":["1f575-1f3fe-200d-2642-fe0f",29,9,7,["🕵🏾‍♂️","🕵🏾"]],"1f3ff":["1f575-1f3ff-200d-2642-fe0f",29,10,7,["🕵🏿‍♂️","🕵🏿"]]},"1f57a":{"1f3fb":["1f57a-1f3fb",29,22,15,["🕺🏻"]],"1f3fc":["1f57a-1f3fc",29,23,15,["🕺🏼"]],"1f3fd":["1f57a-1f3fd",29,24,15,["🕺🏽"]],"1f3fe":["1f57a-1f3fe",29,25,15,["🕺🏾"]],"1f3ff":["1f57a-1f3ff",29,26,15,["🕺🏿"]]},"1f590-fe0f":{"1f3fb":["1f590-1f3fb",29,33,15,["🖐🏻"]],"1f3fc":["1f590-1f3fc",29,34,15,["🖐🏼"]],"1f3fd":["1f590-1f3fd",29,35,15,["🖐🏽"]],"1f3fe":["1f590-1f3fe",29,36,15,["🖐🏾"]],"1f3ff":["1f590-1f3ff",29,37,15,["🖐🏿"]]},"1f595":{"1f3fb":["1f595-1f3fb",29,39,15,["🖕🏻"]],"1f3fc":["1f595-1f3fc",29,40,15,["🖕🏼"]],"1f3fd":["1f595-1f3fd",29,41,15,["🖕🏽"]],"1f3fe":["1f595-1f3fe",29,42,15,["🖕🏾"]],"1f3ff":["1f595-1f3ff",29,43,15,["🖕🏿"]]},"1f596":{"1f3fb":["1f596-1f3fb",29,45,15,["🖖🏻"]],"1f3fc":["1f596-1f3fc",29,46,15,["🖖🏼"]],"1f3fd":["1f596-1f3fd",29,47,15,["🖖🏽"]],"1f3fe":["1f596-1f3fe",29,48,15,["🖖🏾"]],"1f3ff":["1f596-1f3ff",29,49,15,["🖖🏿"]]},"1f645-200d-2640-fe0f":{"1f3fb":["1f645-1f3fb-200d-2640-fe0f",31,42,7,["🙅🏻‍♀️","🙅🏻"]],"1f3fc":["1f645-1f3fc-200d-2640-fe0f",31,43,7,["🙅🏼‍♀️","🙅🏼"]],"1f3fd":["1f645-1f3fd-200d-2640-fe0f",31,44,7,["🙅🏽‍♀️","🙅🏽"]],"1f3fe":["1f645-1f3fe-200d-2640-fe0f",31,45,7,["🙅🏾‍♀️","🙅🏾"]],"1f3ff":["1f645-1f3ff-200d-2640-fe0f",31,46,7,["🙅🏿‍♀️","🙅🏿"]]},"1f645-200d-2642-fe0f":{"1f3fb":["1f645-1f3fb-200d-2642-fe0f",31,48,7,["🙅🏻‍♂️"]],"1f3fc":["1f645-1f3fc-200d-2642-fe0f",31,49,7,["🙅🏼‍♂️"]],"1f3fd":["1f645-1f3fd-200d-2642-fe0f",31,50,7,["🙅🏽‍♂️"]],"1f3fe":["1f645-1f3fe-200d-2642-fe0f",31,51,7,["🙅🏾‍♂️"]],"1f3ff":["1f645-1f3ff-200d-2642-fe0f",32,0,7,["🙅🏿‍♂️"]]},"1f646-200d-2640-fe0f":{"1f3fb":["1f646-1f3fb-200d-2640-fe0f",32,8,7,["🙆🏻‍♀️","🙆🏻"]],"1f3fc":["1f646-1f3fc-200d-2640-fe0f",32,9,7,["🙆🏼‍♀️","🙆🏼"]],"1f3fd":["1f646-1f3fd-200d-2640-fe0f",32,10,7,["🙆🏽‍♀️","🙆🏽"]],"1f3fe":["1f646-1f3fe-200d-2640-fe0f",32,11,7,["🙆🏾‍♀️","🙆🏾"]],"1f3ff":["1f646-1f3ff-200d-2640-fe0f",32,12,7,["🙆🏿‍♀️","🙆🏿"]]},"1f646-200d-2642-fe0f":{"1f3fb":["1f646-1f3fb-200d-2642-fe0f",32,14,7,["🙆🏻‍♂️"]],"1f3fc":["1f646-1f3fc-200d-2642-fe0f",32,15,7,["🙆🏼‍♂️"]],"1f3fd":["1f646-1f3fd-200d-2642-fe0f",32,16,7,["🙆🏽‍♂️"]],"1f3fe":["1f646-1f3fe-200d-2642-fe0f",32,17,7,["🙆🏾‍♂️"]],"1f3ff":["1f646-1f3ff-200d-2642-fe0f",32,18,7,["🙆🏿‍♂️"]]},"1f647-200d-2640-fe0f":{"1f3fb":["1f647-1f3fb-200d-2640-fe0f",32,26,7,["🙇🏻‍♀️"]],"1f3fc":["1f647-1f3fc-200d-2640-fe0f",32,27,7,["🙇🏼‍♀️"]],"1f3fd":["1f647-1f3fd-200d-2640-fe0f",32,28,7,["🙇🏽‍♀️"]],"1f3fe":["1f647-1f3fe-200d-2640-fe0f",32,29,7,["🙇🏾‍♀️"]],"1f3ff":["1f647-1f3ff-200d-2640-fe0f",32,30,7,["🙇🏿‍♀️"]]},"1f647-200d-2642-fe0f":{"1f3fb":["1f647-1f3fb-200d-2642-fe0f",32,32,7,["🙇🏻‍♂️","🙇🏻"]],"1f3fc":["1f647-1f3fc-200d-2642-fe0f",32,33,7,["🙇🏼‍♂️","🙇🏼"]],"1f3fd":["1f647-1f3fd-200d-2642-fe0f",32,34,7,["🙇🏽‍♂️","🙇🏽"]],"1f3fe":["1f647-1f3fe-200d-2642-fe0f",32,35,7,["🙇🏾‍♂️","🙇🏾"]],"1f3ff":["1f647-1f3ff-200d-2642-fe0f",32,36,7,["🙇🏿‍♂️","🙇🏿"]]},"1f64b-200d-2640-fe0f":{"1f3fb":["1f64b-1f3fb-200d-2640-fe0f",32,47,7,["🙋🏻‍♀️","🙋🏻"]],"1f3fc":["1f64b-1f3fc-200d-2640-fe0f",32,48,7,["🙋🏼‍♀️","🙋🏼"]],"1f3fd":["1f64b-1f3fd-200d-2640-fe0f",32,49,7,["🙋🏽‍♀️","🙋🏽"]],"1f3fe":["1f64b-1f3fe-200d-2640-fe0f",32,50,7,["🙋🏾‍♀️","🙋🏾"]],"1f3ff":["1f64b-1f3ff-200d-2640-fe0f",32,51,7,["🙋🏿‍♀️","🙋🏿"]]},"1f64b-200d-2642-fe0f":{"1f3fb":["1f64b-1f3fb-200d-2642-fe0f",33,1,7,["🙋🏻‍♂️"]],"1f3fc":["1f64b-1f3fc-200d-2642-fe0f",33,2,7,["🙋🏼‍♂️"]],"1f3fd":["1f64b-1f3fd-200d-2642-fe0f",33,3,7,["🙋🏽‍♂️"]],"1f3fe":["1f64b-1f3fe-200d-2642-fe0f",33,4,7,["🙋🏾‍♂️"]],"1f3ff":["1f64b-1f3ff-200d-2642-fe0f",33,5,7,["🙋🏿‍♂️"]]},"1f64c":{"1f3fb":["1f64c-1f3fb",33,13,31,["🙌🏻"]],"1f3fc":["1f64c-1f3fc",33,14,31,["🙌🏼"]],"1f3fd":["1f64c-1f3fd",33,15,31,["🙌🏽"]],"1f3fe":["1f64c-1f3fe",33,16,31,["🙌🏾"]],"1f3ff":["1f64c-1f3ff",33,17,31,["🙌🏿"]]},"1f64d-200d-2640-fe0f":{"1f3fb":["1f64d-1f3fb-200d-2640-fe0f",33,19,7,["🙍🏻‍♀️","🙍🏻"]],"1f3fc":["1f64d-1f3fc-200d-2640-fe0f",33,20,7,["🙍🏼‍♀️","🙍🏼"]],"1f3fd":["1f64d-1f3fd-200d-2640-fe0f",33,21,7,["🙍🏽‍♀️","🙍🏽"]],"1f3fe":["1f64d-1f3fe-200d-2640-fe0f",33,22,7,["🙍🏾‍♀️","🙍🏾"]],"1f3ff":["1f64d-1f3ff-200d-2640-fe0f",33,23,7,["🙍🏿‍♀️","🙍🏿"]]},"1f64d-200d-2642-fe0f":{"1f3fb":["1f64d-1f3fb-200d-2642-fe0f",33,25,7,["🙍🏻‍♂️"]],"1f3fc":["1f64d-1f3fc-200d-2642-fe0f",33,26,7,["🙍🏼‍♂️"]],"1f3fd":["1f64d-1f3fd-200d-2642-fe0f",33,27,7,["🙍🏽‍♂️"]],"1f3fe":["1f64d-1f3fe-200d-2642-fe0f",33,28,7,["🙍🏾‍♂️"]],"1f3ff":["1f64d-1f3ff-200d-2642-fe0f",33,29,7,["🙍🏿‍♂️"]]},"1f64e-200d-2640-fe0f":{"1f3fb":["1f64e-1f3fb-200d-2640-fe0f",33,37,7,["🙎🏻‍♀️","🙎🏻"]],"1f3fc":["1f64e-1f3fc-200d-2640-fe0f",33,38,7,["🙎🏼‍♀️","🙎🏼"]],"1f3fd":["1f64e-1f3fd-200d-2640-fe0f",33,39,7,["🙎🏽‍♀️","🙎🏽"]],"1f3fe":["1f64e-1f3fe-200d-2640-fe0f",33,40,7,["🙎🏾‍♀️","🙎🏾"]],"1f3ff":["1f64e-1f3ff-200d-2640-fe0f",33,41,7,["🙎🏿‍♀️","🙎🏿"]]},"1f64e-200d-2642-fe0f":{"1f3fb":["1f64e-1f3fb-200d-2642-fe0f",33,43,7,["🙎🏻‍♂️"]],"1f3fc":["1f64e-1f3fc-200d-2642-fe0f",33,44,7,["🙎🏼‍♂️"]],"1f3fd":["1f64e-1f3fd-200d-2642-fe0f",33,45,7,["🙎🏽‍♂️"]],"1f3fe":["1f64e-1f3fe-200d-2642-fe0f",33,46,7,["🙎🏾‍♂️"]],"1f3ff":["1f64e-1f3ff-200d-2642-fe0f",33,47,7,["🙎🏿‍♂️"]]},"1f64f":{"1f3fb":["1f64f-1f3fb",34,3,31,["🙏🏻"]],"1f3fc":["1f64f-1f3fc",34,4,31,["🙏🏼"]],"1f3fd":["1f64f-1f3fd",34,5,31,["🙏🏽"]],"1f3fe":["1f64f-1f3fe",34,6,31,["🙏🏾"]],"1f3ff":["1f64f-1f3ff",34,7,31,["🙏🏿"]]},"1f6a3-200d-2640-fe0f":{"1f3fb":["1f6a3-1f3fb-200d-2640-fe0f",34,44,7,["🚣🏻‍♀️"]],"1f3fc":["1f6a3-1f3fc-200d-2640-fe0f",34,45,7,["🚣🏼‍♀️"]],"1f3fd":["1f6a3-1f3fd-200d-2640-fe0f",34,46,7,["🚣🏽‍♀️"]],"1f3fe":["1f6a3-1f3fe-200d-2640-fe0f",34,47,7,["🚣🏾‍♀️"]],"1f3ff":["1f6a3-1f3ff-200d-2640-fe0f",34,48,7,["🚣🏿‍♀️"]]},"1f6a3-200d-2642-fe0f":{"1f3fb":["1f6a3-1f3fb-200d-2642-fe0f",34,50,7,["🚣🏻‍♂️","🚣🏻"]],"1f3fc":["1f6a3-1f3fc-200d-2642-fe0f",34,51,7,["🚣🏼‍♂️","🚣🏼"]],"1f3fd":["1f6a3-1f3fd-200d-2642-fe0f",35,0,7,["🚣🏽‍♂️","🚣🏽"]],"1f3fe":["1f6a3-1f3fe-200d-2642-fe0f",35,1,7,["🚣🏾‍♂️","🚣🏾"]],"1f3ff":["1f6a3-1f3ff-200d-2642-fe0f",35,2,7,["🚣🏿‍♂️","🚣🏿"]]},"1f6b4-200d-2640-fe0f":{"1f3fb":["1f6b4-1f3fb-200d-2640-fe0f",35,26,7,["🚴🏻‍♀️"]],"1f3fc":["1f6b4-1f3fc-200d-2640-fe0f",35,27,7,["🚴🏼‍♀️"]],"1f3fd":["1f6b4-1f3fd-200d-2640-fe0f",35,28,7,["🚴🏽‍♀️"]],"1f3fe":["1f6b4-1f3fe-200d-2640-fe0f",35,29,7,["🚴🏾‍♀️"]],"1f3ff":["1f6b4-1f3ff-200d-2640-fe0f",35,30,7,["🚴🏿‍♀️"]]},"1f6b4-200d-2642-fe0f":{"1f3fb":["1f6b4-1f3fb-200d-2642-fe0f",35,32,7,["🚴🏻‍♂️","🚴🏻"]],"1f3fc":["1f6b4-1f3fc-200d-2642-fe0f",35,33,7,["🚴🏼‍♂️","🚴🏼"]],"1f3fd":["1f6b4-1f3fd-200d-2642-fe0f",35,34,7,["🚴🏽‍♂️","🚴🏽"]],"1f3fe":["1f6b4-1f3fe-200d-2642-fe0f",35,35,7,["🚴🏾‍♂️","🚴🏾"]],"1f3ff":["1f6b4-1f3ff-200d-2642-fe0f",35,36,7,["🚴🏿‍♂️","🚴🏿"]]},"1f6b5-200d-2640-fe0f":{"1f3fb":["1f6b5-1f3fb-200d-2640-fe0f",35,44,7,["🚵🏻‍♀️"]],"1f3fc":["1f6b5-1f3fc-200d-2640-fe0f",35,45,7,["🚵🏼‍♀️"]],"1f3fd":["1f6b5-1f3fd-200d-2640-fe0f",35,46,7,["🚵🏽‍♀️"]],"1f3fe":["1f6b5-1f3fe-200d-2640-fe0f",35,47,7,["🚵🏾‍♀️"]],"1f3ff":["1f6b5-1f3ff-200d-2640-fe0f",35,48,7,["🚵🏿‍♀️"]]},"1f6b5-200d-2642-fe0f":{"1f3fb":["1f6b5-1f3fb-200d-2642-fe0f",35,50,7,["🚵🏻‍♂️","🚵🏻"]],"1f3fc":["1f6b5-1f3fc-200d-2642-fe0f",35,51,7,["🚵🏼‍♂️","🚵🏼"]],"1f3fd":["1f6b5-1f3fd-200d-2642-fe0f",36,0,7,["🚵🏽‍♂️","🚵🏽"]],"1f3fe":["1f6b5-1f3fe-200d-2642-fe0f",36,1,7,["🚵🏾‍♂️","🚵🏾"]],"1f3ff":["1f6b5-1f3ff-200d-2642-fe0f",36,2,7,["🚵🏿‍♂️","🚵🏿"]]},"1f6b6-200d-2640-fe0f":{"1f3fb":["1f6b6-1f3fb-200d-2640-fe0f",36,10,7,["🚶🏻‍♀️"]],"1f3fc":["1f6b6-1f3fc-200d-2640-fe0f",36,11,7,["🚶🏼‍♀️"]],"1f3fd":["1f6b6-1f3fd-200d-2640-fe0f",36,12,7,["🚶🏽‍♀️"]],"1f3fe":["1f6b6-1f3fe-200d-2640-fe0f",36,13,7,["🚶🏾‍♀️"]],"1f3ff":["1f6b6-1f3ff-200d-2640-fe0f",36,14,7,["🚶🏿‍♀️"]]},"1f6b6-200d-2642-fe0f":{"1f3fb":["1f6b6-1f3fb-200d-2642-fe0f",36,16,7,["🚶🏻‍♂️","🚶🏻"]],"1f3fc":["1f6b6-1f3fc-200d-2642-fe0f",36,17,7,["🚶🏼‍♂️","🚶🏼"]],"1f3fd":["1f6b6-1f3fd-200d-2642-fe0f",36,18,7,["🚶🏽‍♂️","🚶🏽"]],"1f3fe":["1f6b6-1f3fe-200d-2642-fe0f",36,19,7,["🚶🏾‍♂️","🚶🏾"]],"1f3ff":["1f6b6-1f3ff-200d-2642-fe0f",36,20,7,["🚶🏿‍♂️","🚶🏿"]]},"1f6c0":{"1f3fb":["1f6c0-1f3fb",36,37,31,["🛀🏻"]],"1f3fc":["1f6c0-1f3fc",36,38,31,["🛀🏼"]],"1f3fd":["1f6c0-1f3fd",36,39,31,["🛀🏽"]],"1f3fe":["1f6c0-1f3fe",36,40,31,["🛀🏾"]],"1f3ff":["1f6c0-1f3ff",36,41,31,["🛀🏿"]]},"1f6cc":{"1f3fb":["1f6cc-1f3fb",36,49,15,["🛌🏻"]],"1f3fc":["1f6cc-1f3fc",36,50,15,["🛌🏼"]],"1f3fd":["1f6cc-1f3fd",36,51,15,["🛌🏽"]],"1f3fe":["1f6cc-1f3fe",37,0,15,["🛌🏾"]],"1f3ff":["1f6cc-1f3ff",37,1,15,["🛌🏿"]]},"1f918":{"1f3fb":["1f918-1f3fb",37,33,15,["🤘🏻"]],"1f3fc":["1f918-1f3fc",37,34,15,["🤘🏼"]],"1f3fd":["1f918-1f3fd",37,35,15,["🤘🏽"]],"1f3fe":["1f918-1f3fe",37,36,15,["🤘🏾"]],"1f3ff":["1f918-1f3ff",37,37,15,["🤘🏿"]]},"1f919":{"1f3fb":["1f919-1f3fb",37,39,15,["🤙🏻"]],"1f3fc":["1f919-1f3fc",37,40,15,["🤙🏼"]],"1f3fd":["1f919-1f3fd",37,41,15,["🤙🏽"]],"1f3fe":["1f919-1f3fe",37,42,15,["🤙🏾"]],"1f3ff":["1f919-1f3ff",37,43,15,["🤙🏿"]]},"1f91a":{"1f3fb":["1f91a-1f3fb",37,45,15,["🤚🏻"]],"1f3fc":["1f91a-1f3fc",37,46,15,["🤚🏼"]],"1f3fd":["1f91a-1f3fd",37,47,15,["🤚🏽"]],"1f3fe":["1f91a-1f3fe",37,48,15,["🤚🏾"]],"1f3ff":["1f91a-1f3ff",37,49,15,["🤚🏿"]]},"1f91b":{"1f3fb":["1f91b-1f3fb",37,51,15,["🤛🏻"]],"1f3fc":["1f91b-1f3fc",38,0,15,["🤛🏼"]],"1f3fd":["1f91b-1f3fd",38,1,15,["🤛🏽"]],"1f3fe":["1f91b-1f3fe",38,2,15,["🤛🏾"]],"1f3ff":["1f91b-1f3ff",38,3,15,["🤛🏿"]]},"1f91c":{"1f3fb":["1f91c-1f3fb",38,5,15,["🤜🏻"]],"1f3fc":["1f91c-1f3fc",38,6,15,["🤜🏼"]],"1f3fd":["1f91c-1f3fd",38,7,15,["🤜🏽"]],"1f3fe":["1f91c-1f3fe",38,8,15,["🤜🏾"]],"1f3ff":["1f91c-1f3ff",38,9,15,["🤜🏿"]]},"1f91e":{"1f3fb":["1f91e-1f3fb",38,12,15,["🤞🏻"]],"1f3fc":["1f91e-1f3fc",38,13,15,["🤞🏼"]],"1f3fd":["1f91e-1f3fd",38,14,15,["🤞🏽"]],"1f3fe":["1f91e-1f3fe",38,15,15,["🤞🏾"]],"1f3ff":["1f91e-1f3ff",38,16,15,["🤞🏿"]]},"1f91f":{"1f3fb":["1f91f-1f3fb",38,18,15,["🤟🏻"]],"1f3fc":["1f91f-1f3fc",38,19,15,["🤟🏼"]],"1f3fd":["1f91f-1f3fd",38,20,15,["🤟🏽"]],"1f3fe":["1f91f-1f3fe",38,21,15,["🤟🏾"]],"1f3ff":["1f91f-1f3ff",38,22,15,["🤟🏿"]]},"1f926-200d-2640-fe0f":{"1f3fb":["1f926-1f3fb-200d-2640-fe0f",38,30,7,["🤦🏻‍♀️"]],"1f3fc":["1f926-1f3fc-200d-2640-fe0f",38,31,7,["🤦🏼‍♀️"]],"1f3fd":["1f926-1f3fd-200d-2640-fe0f",38,32,7,["🤦🏽‍♀️"]],"1f3fe":["1f926-1f3fe-200d-2640-fe0f",38,33,7,["🤦🏾‍♀️"]],"1f3ff":["1f926-1f3ff-200d-2640-fe0f",38,34,7,["🤦🏿‍♀️"]]},"1f926-200d-2642-fe0f":{"1f3fb":["1f926-1f3fb-200d-2642-fe0f",38,36,7,["🤦🏻‍♂️"]],"1f3fc":["1f926-1f3fc-200d-2642-fe0f",38,37,7,["🤦🏼‍♂️"]],"1f3fd":["1f926-1f3fd-200d-2642-fe0f",38,38,7,["🤦🏽‍♂️"]],"1f3fe":["1f926-1f3fe-200d-2642-fe0f",38,39,7,["🤦🏾‍♂️"]],"1f3ff":["1f926-1f3ff-200d-2642-fe0f",38,40,7,["🤦🏿‍♂️"]]},"1f926":{"1f3fb":["1f926-1f3fb",38,42,7,["🤦🏻"]],"1f3fc":["1f926-1f3fc",38,43,7,["🤦🏼"]],"1f3fd":["1f926-1f3fd",38,44,7,["🤦🏽"]],"1f3fe":["1f926-1f3fe",38,45,7,["🤦🏾"]],"1f3ff":["1f926-1f3ff",38,46,7,["🤦🏿"]]},"1f930":{"1f3fb":["1f930-1f3fb",39,5,15,["🤰🏻"]],"1f3fc":["1f930-1f3fc",39,6,15,["🤰🏼"]],"1f3fd":["1f930-1f3fd",39,7,15,["🤰🏽"]],"1f3fe":["1f930-1f3fe",39,8,15,["🤰🏾"]],"1f3ff":["1f930-1f3ff",39,9,15,["🤰🏿"]]},"1f931":{"1f3fb":["1f931-1f3fb",39,11,15,["🤱🏻"]],"1f3fc":["1f931-1f3fc",39,12,15,["🤱🏼"]],"1f3fd":["1f931-1f3fd",39,13,15,["🤱🏽"]],"1f3fe":["1f931-1f3fe",39,14,15,["🤱🏾"]],"1f3ff":["1f931-1f3ff",39,15,15,["🤱🏿"]]},"1f932":{"1f3fb":["1f932-1f3fb",39,17,15,["🤲🏻"]],"1f3fc":["1f932-1f3fc",39,18,15,["🤲🏼"]],"1f3fd":["1f932-1f3fd",39,19,15,["🤲🏽"]],"1f3fe":["1f932-1f3fe",39,20,15,["🤲🏾"]],"1f3ff":["1f932-1f3ff",39,21,15,["🤲🏿"]]},"1f933":{"1f3fb":["1f933-1f3fb",39,23,15,["🤳🏻"]],"1f3fc":["1f933-1f3fc",39,24,15,["🤳🏼"]],"1f3fd":["1f933-1f3fd",39,25,15,["🤳🏽"]],"1f3fe":["1f933-1f3fe",39,26,15,["🤳🏾"]],"1f3ff":["1f933-1f3ff",39,27,15,["🤳🏿"]]},"1f934":{"1f3fb":["1f934-1f3fb",39,29,15,["🤴🏻"]],"1f3fc":["1f934-1f3fc",39,30,15,["🤴🏼"]],"1f3fd":["1f934-1f3fd",39,31,15,["🤴🏽"]],"1f3fe":["1f934-1f3fe",39,32,15,["🤴🏾"]],"1f3ff":["1f934-1f3ff",39,33,15,["🤴🏿"]]},"1f935":{"1f3fb":["1f935-1f3fb",39,35,15,["🤵🏻"]],"1f3fc":["1f935-1f3fc",39,36,15,["🤵🏼"]],"1f3fd":["1f935-1f3fd",39,37,15,["🤵🏽"]],"1f3fe":["1f935-1f3fe",39,38,15,["🤵🏾"]],"1f3ff":["1f935-1f3ff",39,39,15,["🤵🏿"]]},"1f936":{"1f3fb":["1f936-1f3fb",39,41,15,["🤶🏻"]],"1f3fc":["1f936-1f3fc",39,42,15,["🤶🏼"]],"1f3fd":["1f936-1f3fd",39,43,15,["🤶🏽"]],"1f3fe":["1f936-1f3fe",39,44,15,["🤶🏾"]],"1f3ff":["1f936-1f3ff",39,45,15,["🤶🏿"]]},"1f937-200d-2640-fe0f":{"1f3fb":["1f937-1f3fb-200d-2640-fe0f",39,47,7,["🤷🏻‍♀️"]],"1f3fc":["1f937-1f3fc-200d-2640-fe0f",39,48,7,["🤷🏼‍♀️"]],"1f3fd":["1f937-1f3fd-200d-2640-fe0f",39,49,7,["🤷🏽‍♀️"]],"1f3fe":["1f937-1f3fe-200d-2640-fe0f",39,50,7,["🤷🏾‍♀️"]],"1f3ff":["1f937-1f3ff-200d-2640-fe0f",39,51,7,["🤷🏿‍♀️"]]},"1f937-200d-2642-fe0f":{"1f3fb":["1f937-1f3fb-200d-2642-fe0f",40,1,7,["🤷🏻‍♂️"]],"1f3fc":["1f937-1f3fc-200d-2642-fe0f",40,2,7,["🤷🏼‍♂️"]],"1f3fd":["1f937-1f3fd-200d-2642-fe0f",40,3,7,["🤷🏽‍♂️"]],"1f3fe":["1f937-1f3fe-200d-2642-fe0f",40,4,7,["🤷🏾‍♂️"]],"1f3ff":["1f937-1f3ff-200d-2642-fe0f",40,5,7,["🤷🏿‍♂️"]]},"1f937":{"1f3fb":["1f937-1f3fb",40,7,7,["🤷🏻"]],"1f3fc":["1f937-1f3fc",40,8,7,["🤷🏼"]],"1f3fd":["1f937-1f3fd",40,9,7,["🤷🏽"]],"1f3fe":["1f937-1f3fe",40,10,7,["🤷🏾"]],"1f3ff":["1f937-1f3ff",40,11,7,["🤷🏿"]]},"1f938-200d-2640-fe0f":{"1f3fb":["1f938-1f3fb-200d-2640-fe0f",40,13,7,["🤸🏻‍♀️"]],"1f3fc":["1f938-1f3fc-200d-2640-fe0f",40,14,7,["🤸🏼‍♀️"]],"1f3fd":["1f938-1f3fd-200d-2640-fe0f",40,15,7,["🤸🏽‍♀️"]],"1f3fe":["1f938-1f3fe-200d-2640-fe0f",40,16,7,["🤸🏾‍♀️"]],"1f3ff":["1f938-1f3ff-200d-2640-fe0f",40,17,7,["🤸🏿‍♀️"]]},"1f938-200d-2642-fe0f":{"1f3fb":["1f938-1f3fb-200d-2642-fe0f",40,19,7,["🤸🏻‍♂️"]],"1f3fc":["1f938-1f3fc-200d-2642-fe0f",40,20,7,["🤸🏼‍♂️"]],"1f3fd":["1f938-1f3fd-200d-2642-fe0f",40,21,7,["🤸🏽‍♂️"]],"1f3fe":["1f938-1f3fe-200d-2642-fe0f",40,22,7,["🤸🏾‍♂️"]],"1f3ff":["1f938-1f3ff-200d-2642-fe0f",40,23,7,["🤸🏿‍♂️"]]},"1f938":{"1f3fb":["1f938-1f3fb",40,25,7,["🤸🏻"]],"1f3fc":["1f938-1f3fc",40,26,7,["🤸🏼"]],"1f3fd":["1f938-1f3fd",40,27,7,["🤸🏽"]],"1f3fe":["1f938-1f3fe",40,28,7,["🤸🏾"]],"1f3ff":["1f938-1f3ff",40,29,7,["🤸🏿"]]},"1f939-200d-2640-fe0f":{"1f3fb":["1f939-1f3fb-200d-2640-fe0f",40,31,7,["🤹🏻‍♀️"]],"1f3fc":["1f939-1f3fc-200d-2640-fe0f",40,32,7,["🤹🏼‍♀️"]],"1f3fd":["1f939-1f3fd-200d-2640-fe0f",40,33,7,["🤹🏽‍♀️"]],"1f3fe":["1f939-1f3fe-200d-2640-fe0f",40,34,7,["🤹🏾‍♀️"]],"1f3ff":["1f939-1f3ff-200d-2640-fe0f",40,35,7,["🤹🏿‍♀️"]]},"1f939-200d-2642-fe0f":{"1f3fb":["1f939-1f3fb-200d-2642-fe0f",40,37,7,["🤹🏻‍♂️"]],"1f3fc":["1f939-1f3fc-200d-2642-fe0f",40,38,7,["🤹🏼‍♂️"]],"1f3fd":["1f939-1f3fd-200d-2642-fe0f",40,39,7,["🤹🏽‍♂️"]],"1f3fe":["1f939-1f3fe-200d-2642-fe0f",40,40,7,["🤹🏾‍♂️"]],"1f3ff":["1f939-1f3ff-200d-2642-fe0f",40,41,7,["🤹🏿‍♂️"]]},"1f939":{"1f3fb":["1f939-1f3fb",40,43,15,["🤹🏻"]],"1f3fc":["1f939-1f3fc",40,44,15,["🤹🏼"]],"1f3fd":["1f939-1f3fd",40,45,15,["🤹🏽"]],"1f3fe":["1f939-1f3fe",40,46,15,["🤹🏾"]],"1f3ff":["1f939-1f3ff",40,47,15,["🤹🏿"]]},"1f93d-200d-2640-fe0f":{"1f3fb":["1f93d-1f3fb-200d-2640-fe0f",41,1,7,["🤽🏻‍♀️"]],"1f3fc":["1f93d-1f3fc-200d-2640-fe0f",41,2,7,["🤽🏼‍♀️"]],"1f3fd":["1f93d-1f3fd-200d-2640-fe0f",41,3,7,["🤽🏽‍♀️"]],"1f3fe":["1f93d-1f3fe-200d-2640-fe0f",41,4,7,["🤽🏾‍♀️"]],"1f3ff":["1f93d-1f3ff-200d-2640-fe0f",41,5,7,["🤽🏿‍♀️"]]},"1f93d-200d-2642-fe0f":{"1f3fb":["1f93d-1f3fb-200d-2642-fe0f",41,7,7,["🤽🏻‍♂️"]],"1f3fc":["1f93d-1f3fc-200d-2642-fe0f",41,8,7,["🤽🏼‍♂️"]],"1f3fd":["1f93d-1f3fd-200d-2642-fe0f",41,9,7,["🤽🏽‍♂️"]],"1f3fe":["1f93d-1f3fe-200d-2642-fe0f",41,10,7,["🤽🏾‍♂️"]],"1f3ff":["1f93d-1f3ff-200d-2642-fe0f",41,11,7,["🤽🏿‍♂️"]]},"1f93d":{"1f3fb":["1f93d-1f3fb",41,13,7,["🤽🏻"]],"1f3fc":["1f93d-1f3fc",41,14,7,["🤽🏼"]],"1f3fd":["1f93d-1f3fd",41,15,7,["🤽🏽"]],"1f3fe":["1f93d-1f3fe",41,16,7,["🤽🏾"]],"1f3ff":["1f93d-1f3ff",41,17,7,["🤽🏿"]]},"1f93e-200d-2640-fe0f":{"1f3fb":["1f93e-1f3fb-200d-2640-fe0f",41,19,7,["🤾🏻‍♀️"]],"1f3fc":["1f93e-1f3fc-200d-2640-fe0f",41,20,7,["🤾🏼‍♀️"]],"1f3fd":["1f93e-1f3fd-200d-2640-fe0f",41,21,7,["🤾🏽‍♀️"]],"1f3fe":["1f93e-1f3fe-200d-2640-fe0f",41,22,7,["🤾🏾‍♀️"]],"1f3ff":["1f93e-1f3ff-200d-2640-fe0f",41,23,7,["🤾🏿‍♀️"]]},"1f93e-200d-2642-fe0f":{"1f3fb":["1f93e-1f3fb-200d-2642-fe0f",41,25,7,["🤾🏻‍♂️"]],"1f3fc":["1f93e-1f3fc-200d-2642-fe0f",41,26,7,["🤾🏼‍♂️"]],"1f3fd":["1f93e-1f3fd-200d-2642-fe0f",41,27,7,["🤾🏽‍♂️"]],"1f3fe":["1f93e-1f3fe-200d-2642-fe0f",41,28,7,["🤾🏾‍♂️"]],"1f3ff":["1f93e-1f3ff-200d-2642-fe0f",41,29,7,["🤾🏿‍♂️"]]},"1f93e":{"1f3fb":["1f93e-1f3fb",41,31,7,["🤾🏻"]],"1f3fc":["1f93e-1f3fc",41,32,7,["🤾🏼"]],"1f3fd":["1f93e-1f3fd",41,33,7,["🤾🏽"]],"1f3fe":["1f93e-1f3fe",41,34,7,["🤾🏾"]],"1f3ff":["1f93e-1f3ff",41,35,7,["🤾🏿"]]},"1f9d1":{"1f3fb":["1f9d1-1f3fb",42,51,15,["🧑🏻"]],"1f3fc":["1f9d1-1f3fc",43,0,15,["🧑🏼"]],"1f3fd":["1f9d1-1f3fd",43,1,15,["🧑🏽"]],"1f3fe":["1f9d1-1f3fe",43,2,15,["🧑🏾"]],"1f3ff":["1f9d1-1f3ff",43,3,15,["🧑🏿"]]},"1f9d2":{"1f3fb":["1f9d2-1f3fb",43,5,15,["🧒🏻"]],"1f3fc":["1f9d2-1f3fc",43,6,15,["🧒🏼"]],"1f3fd":["1f9d2-1f3fd",43,7,15,["🧒🏽"]],"1f3fe":["1f9d2-1f3fe",43,8,15,["🧒🏾"]],"1f3ff":["1f9d2-1f3ff",43,9,15,["🧒🏿"]]},"1f9d3":{"1f3fb":["1f9d3-1f3fb",43,11,15,["🧓🏻"]],"1f3fc":["1f9d3-1f3fc",43,12,15,["🧓🏼"]],"1f3fd":["1f9d3-1f3fd",43,13,15,["🧓🏽"]],"1f3fe":["1f9d3-1f3fe",43,14,15,["🧓🏾"]],"1f3ff":["1f9d3-1f3ff",43,15,15,["🧓🏿"]]},"1f9d4":{"1f3fb":["1f9d4-1f3fb",43,17,15,["🧔🏻"]],"1f3fc":["1f9d4-1f3fc",43,18,15,["🧔🏼"]],"1f3fd":["1f9d4-1f3fd",43,19,15,["🧔🏽"]],"1f3fe":["1f9d4-1f3fe",43,20,15,["🧔🏾"]],"1f3ff":["1f9d4-1f3ff",43,21,15,["🧔🏿"]]},"1f9d5":{"1f3fb":["1f9d5-1f3fb",43,23,15,["🧕🏻"]],"1f3fc":["1f9d5-1f3fc",43,24,15,["🧕🏼"]],"1f3fd":["1f9d5-1f3fd",43,25,15,["🧕🏽"]],"1f3fe":["1f9d5-1f3fe",43,26,15,["🧕🏾"]],"1f3ff":["1f9d5-1f3ff",43,27,15,["🧕🏿"]]},"1f9d6-200d-2640-fe0f":{"1f3fb":["1f9d6-1f3fb-200d-2640-fe0f",43,29,7,["🧖🏻‍♀️"]],"1f3fc":["1f9d6-1f3fc-200d-2640-fe0f",43,30,7,["🧖🏼‍♀️"]],"1f3fd":["1f9d6-1f3fd-200d-2640-fe0f",43,31,7,["🧖🏽‍♀️"]],"1f3fe":["1f9d6-1f3fe-200d-2640-fe0f",43,32,7,["🧖🏾‍♀️"]],"1f3ff":["1f9d6-1f3ff-200d-2640-fe0f",43,33,7,["🧖🏿‍♀️"]]},"1f9d6-200d-2642-fe0f":{"1f3fb":["1f9d6-1f3fb-200d-2642-fe0f",43,35,7,["🧖🏻‍♂️","🧖🏻"]],"1f3fc":["1f9d6-1f3fc-200d-2642-fe0f",43,36,7,["🧖🏼‍♂️","🧖🏼"]],"1f3fd":["1f9d6-1f3fd-200d-2642-fe0f",43,37,7,["🧖🏽‍♂️","🧖🏽"]],"1f3fe":["1f9d6-1f3fe-200d-2642-fe0f",43,38,7,["🧖🏾‍♂️","🧖🏾"]],"1f3ff":["1f9d6-1f3ff-200d-2642-fe0f",43,39,7,["🧖🏿‍♂️","🧖🏿"]]},"1f9d7-200d-2640-fe0f":{"1f3fb":["1f9d7-1f3fb-200d-2640-fe0f",43,47,7,["🧗🏻‍♀️","🧗🏻"]],"1f3fc":["1f9d7-1f3fc-200d-2640-fe0f",43,48,7,["🧗🏼‍♀️","🧗🏼"]],"1f3fd":["1f9d7-1f3fd-200d-2640-fe0f",43,49,7,["🧗🏽‍♀️","🧗🏽"]],"1f3fe":["1f9d7-1f3fe-200d-2640-fe0f",43,50,7,["🧗🏾‍♀️","🧗🏾"]],"1f3ff":["1f9d7-1f3ff-200d-2640-fe0f",43,51,7,["🧗🏿‍♀️","🧗🏿"]]},"1f9d7-200d-2642-fe0f":{"1f3fb":["1f9d7-1f3fb-200d-2642-fe0f",44,1,7,["🧗🏻‍♂️"]],"1f3fc":["1f9d7-1f3fc-200d-2642-fe0f",44,2,7,["🧗🏼‍♂️"]],"1f3fd":["1f9d7-1f3fd-200d-2642-fe0f",44,3,7,["🧗🏽‍♂️"]],"1f3fe":["1f9d7-1f3fe-200d-2642-fe0f",44,4,7,["🧗🏾‍♂️"]],"1f3ff":["1f9d7-1f3ff-200d-2642-fe0f",44,5,7,["🧗🏿‍♂️"]]},"1f9d8-200d-2640-fe0f":{"1f3fb":["1f9d8-1f3fb-200d-2640-fe0f",44,13,7,["🧘🏻‍♀️","🧘🏻"]],"1f3fc":["1f9d8-1f3fc-200d-2640-fe0f",44,14,7,["🧘🏼‍♀️","🧘🏼"]],"1f3fd":["1f9d8-1f3fd-200d-2640-fe0f",44,15,7,["🧘🏽‍♀️","🧘🏽"]],"1f3fe":["1f9d8-1f3fe-200d-2640-fe0f",44,16,7,["🧘🏾‍♀️","🧘🏾"]],"1f3ff":["1f9d8-1f3ff-200d-2640-fe0f",44,17,7,["🧘🏿‍♀️","🧘🏿"]]},"1f9d8-200d-2642-fe0f":{"1f3fb":["1f9d8-1f3fb-200d-2642-fe0f",44,19,7,["🧘🏻‍♂️"]],"1f3fc":["1f9d8-1f3fc-200d-2642-fe0f",44,20,7,["🧘🏼‍♂️"]],"1f3fd":["1f9d8-1f3fd-200d-2642-fe0f",44,21,7,["🧘🏽‍♂️"]],"1f3fe":["1f9d8-1f3fe-200d-2642-fe0f",44,22,7,["🧘🏾‍♂️"]],"1f3ff":["1f9d8-1f3ff-200d-2642-fe0f",44,23,7,["🧘🏿‍♂️"]]},"1f9d9-200d-2640-fe0f":{"1f3fb":["1f9d9-1f3fb-200d-2640-fe0f",44,31,7,["🧙🏻‍♀️","🧙🏻"]],"1f3fc":["1f9d9-1f3fc-200d-2640-fe0f",44,32,7,["🧙🏼‍♀️","🧙🏼"]],"1f3fd":["1f9d9-1f3fd-200d-2640-fe0f",44,33,7,["🧙🏽‍♀️","🧙🏽"]],"1f3fe":["1f9d9-1f3fe-200d-2640-fe0f",44,34,7,["🧙🏾‍♀️","🧙🏾"]],"1f3ff":["1f9d9-1f3ff-200d-2640-fe0f",44,35,7,["🧙🏿‍♀️","🧙🏿"]]},"1f9d9-200d-2642-fe0f":{"1f3fb":["1f9d9-1f3fb-200d-2642-fe0f",44,37,7,["🧙🏻‍♂️"]],"1f3fc":["1f9d9-1f3fc-200d-2642-fe0f",44,38,7,["🧙🏼‍♂️"]],"1f3fd":["1f9d9-1f3fd-200d-2642-fe0f",44,39,7,["🧙🏽‍♂️"]],"1f3fe":["1f9d9-1f3fe-200d-2642-fe0f",44,40,7,["🧙🏾‍♂️"]],"1f3ff":["1f9d9-1f3ff-200d-2642-fe0f",44,41,7,["🧙🏿‍♂️"]]},"1f9da-200d-2640-fe0f":{"1f3fb":["1f9da-1f3fb-200d-2640-fe0f",44,49,7,["🧚🏻‍♀️","🧚🏻"]],"1f3fc":["1f9da-1f3fc-200d-2640-fe0f",44,50,7,["🧚🏼‍♀️","🧚🏼"]],"1f3fd":["1f9da-1f3fd-200d-2640-fe0f",44,51,7,["🧚🏽‍♀️","🧚🏽"]],"1f3fe":["1f9da-1f3fe-200d-2640-fe0f",45,0,7,["🧚🏾‍♀️","🧚🏾"]],"1f3ff":["1f9da-1f3ff-200d-2640-fe0f",45,1,7,["🧚🏿‍♀️","🧚🏿"]]},"1f9da-200d-2642-fe0f":{"1f3fb":["1f9da-1f3fb-200d-2642-fe0f",45,3,7,["🧚🏻‍♂️"]],"1f3fc":["1f9da-1f3fc-200d-2642-fe0f",45,4,7,["🧚🏼‍♂️"]],"1f3fd":["1f9da-1f3fd-200d-2642-fe0f",45,5,7,["🧚🏽‍♂️"]],"1f3fe":["1f9da-1f3fe-200d-2642-fe0f",45,6,7,["🧚🏾‍♂️"]],"1f3ff":["1f9da-1f3ff-200d-2642-fe0f",45,7,7,["🧚🏿‍♂️"]]},"1f9db-200d-2640-fe0f":{"1f3fb":["1f9db-1f3fb-200d-2640-fe0f",45,15,7,["🧛🏻‍♀️","🧛🏻"]],"1f3fc":["1f9db-1f3fc-200d-2640-fe0f",45,16,7,["🧛🏼‍♀️","🧛🏼"]],"1f3fd":["1f9db-1f3fd-200d-2640-fe0f",45,17,7,["🧛🏽‍♀️","🧛🏽"]],"1f3fe":["1f9db-1f3fe-200d-2640-fe0f",45,18,7,["🧛🏾‍♀️","🧛🏾"]],"1f3ff":["1f9db-1f3ff-200d-2640-fe0f",45,19,7,["🧛🏿‍♀️","🧛🏿"]]},"1f9db-200d-2642-fe0f":{"1f3fb":["1f9db-1f3fb-200d-2642-fe0f",45,21,7,["🧛🏻‍♂️"]],"1f3fc":["1f9db-1f3fc-200d-2642-fe0f",45,22,7,["🧛🏼‍♂️"]],"1f3fd":["1f9db-1f3fd-200d-2642-fe0f",45,23,7,["🧛🏽‍♂️"]],"1f3fe":["1f9db-1f3fe-200d-2642-fe0f",45,24,7,["🧛🏾‍♂️"]],"1f3ff":["1f9db-1f3ff-200d-2642-fe0f",45,25,7,["🧛🏿‍♂️"]]},"1f9dc-200d-2640-fe0f":{"1f3fb":["1f9dc-1f3fb-200d-2640-fe0f",45,33,7,["🧜🏻‍♀️"]],"1f3fc":["1f9dc-1f3fc-200d-2640-fe0f",45,34,7,["🧜🏼‍♀️"]],"1f3fd":["1f9dc-1f3fd-200d-2640-fe0f",45,35,7,["🧜🏽‍♀️"]],"1f3fe":["1f9dc-1f3fe-200d-2640-fe0f",45,36,7,["🧜🏾‍♀️"]],"1f3ff":["1f9dc-1f3ff-200d-2640-fe0f",45,37,7,["🧜🏿‍♀️"]]},"1f9dc-200d-2642-fe0f":{"1f3fb":["1f9dc-1f3fb-200d-2642-fe0f",45,39,7,["🧜🏻‍♂️","🧜🏻"]],"1f3fc":["1f9dc-1f3fc-200d-2642-fe0f",45,40,7,["🧜🏼‍♂️","🧜🏼"]],"1f3fd":["1f9dc-1f3fd-200d-2642-fe0f",45,41,7,["🧜🏽‍♂️","🧜🏽"]],"1f3fe":["1f9dc-1f3fe-200d-2642-fe0f",45,42,7,["🧜🏾‍♂️","🧜🏾"]],"1f3ff":["1f9dc-1f3ff-200d-2642-fe0f",45,43,7,["🧜🏿‍♂️","🧜🏿"]]},"1f9dd-200d-2640-fe0f":{"1f3fb":["1f9dd-1f3fb-200d-2640-fe0f",45,51,7,["🧝🏻‍♀️"]],"1f3fc":["1f9dd-1f3fc-200d-2640-fe0f",46,0,7,["🧝🏼‍♀️"]],"1f3fd":["1f9dd-1f3fd-200d-2640-fe0f",46,1,7,["🧝🏽‍♀️"]],"1f3fe":["1f9dd-1f3fe-200d-2640-fe0f",46,2,7,["🧝🏾‍♀️"]],"1f3ff":["1f9dd-1f3ff-200d-2640-fe0f",46,3,7,["🧝🏿‍♀️"]]},"1f9dd-200d-2642-fe0f":{"1f3fb":["1f9dd-1f3fb-200d-2642-fe0f",46,5,7,["🧝🏻‍♂️","🧝🏻"]],"1f3fc":["1f9dd-1f3fc-200d-2642-fe0f",46,6,7,["🧝🏼‍♂️","🧝🏼"]],"1f3fd":["1f9dd-1f3fd-200d-2642-fe0f",46,7,7,["🧝🏽‍♂️","🧝🏽"]],"1f3fe":["1f9dd-1f3fe-200d-2642-fe0f",46,8,7,["🧝🏾‍♂️","🧝🏾"]],"1f3ff":["1f9dd-1f3ff-200d-2642-fe0f",46,9,7,["🧝🏿‍♂️","🧝🏿"]]},"261d-fe0f":{"1f3fb":["261d-1f3fb",47,27,31,["☝🏻"]],"1f3fc":["261d-1f3fc",47,28,31,["☝🏼"]],"1f3fd":["261d-1f3fd",47,29,31,["☝🏽"]],"1f3fe":["261d-1f3fe",47,30,31,["☝🏾"]],"1f3ff":["261d-1f3ff",47,31,31,["☝🏿"]]},"26f9-fe0f-200d-2640-fe0f":{"1f3fb":["26f9-1f3fb-200d-2640-fe0f",48,47,7,["⛹🏻‍♀️"]],"1f3fc":["26f9-1f3fc-200d-2640-fe0f",48,48,7,["⛹🏼‍♀️"]],"1f3fd":["26f9-1f3fd-200d-2640-fe0f",48,49,7,["⛹🏽‍♀️"]],"1f3fe":["26f9-1f3fe-200d-2640-fe0f",48,50,7,["⛹🏾‍♀️"]],"1f3ff":["26f9-1f3ff-200d-2640-fe0f",48,51,7,["⛹🏿‍♀️"]]},"26f9-fe0f-200d-2642-fe0f":{"1f3fb":["26f9-1f3fb-200d-2642-fe0f",49,1,7,["⛹🏻‍♂️","⛹🏻"]],"1f3fc":["26f9-1f3fc-200d-2642-fe0f",49,2,7,["⛹🏼‍♂️","⛹🏼"]],"1f3fd":["26f9-1f3fd-200d-2642-fe0f",49,3,7,["⛹🏽‍♂️","⛹🏽"]],"1f3fe":["26f9-1f3fe-200d-2642-fe0f",49,4,7,["⛹🏾‍♂️","⛹🏾"]],"1f3ff":["26f9-1f3ff-200d-2642-fe0f",49,5,7,["⛹🏿‍♂️","⛹🏿"]]},"270a":{"1f3fb":["270a-1f3fb",49,19,31,["✊🏻"]],"1f3fc":["270a-1f3fc",49,20,31,["✊🏼"]],"1f3fd":["270a-1f3fd",49,21,31,["✊🏽"]],"1f3fe":["270a-1f3fe",49,22,31,["✊🏾"]],"1f3ff":["270a-1f3ff",49,23,31,["✊🏿"]]},"270b":{"1f3fb":["270b-1f3fb",49,25,31,["✋🏻"]],"1f3fc":["270b-1f3fc",49,26,31,["✋🏼"]],"1f3fd":["270b-1f3fd",49,27,31,["✋🏽"]],"1f3fe":["270b-1f3fe",49,28,31,["✋🏾"]],"1f3ff":["270b-1f3ff",49,29,31,["✋🏿"]]},"270c-fe0f":{"1f3fb":["270c-1f3fb",49,31,31,["✌🏻"]],"1f3fc":["270c-1f3fc",49,32,31,["✌🏼"]],"1f3fd":["270c-1f3fd",49,33,31,["✌🏽"]],"1f3fe":["270c-1f3fe",49,34,31,["✌🏾"]],"1f3ff":["270c-1f3ff",49,35,31,["✌🏿"]]},"270d-fe0f":{"1f3fb":["270d-1f3fb",49,37,15,["✍🏻"]],"1f3fc":["270d-1f3fc",49,38,15,["✍🏼"]],"1f3fd":["270d-1f3fd",49,39,15,["✍🏽"]],"1f3fe":["270d-1f3fe",49,40,15,["✍🏾"]],"1f3ff":["270d-1f3ff",49,41,15,["✍🏿"]]}},i.prototype.obsoletes_data={"1f3c3-200d-2642-fe0f":["1f3c3",9,46,23],"1f3c3-1f3fb-200d-2642-fe0f":["1f3c3-1f3fb",9,47,23],"1f3c3-1f3fc-200d-2642-fe0f":["1f3c3-1f3fc",9,48,23],"1f3c3-1f3fd-200d-2642-fe0f":["1f3c3-1f3fd",9,49,23],"1f3c3-1f3fe-200d-2642-fe0f":["1f3c3-1f3fe",9,50,23],"1f3c3-1f3ff-200d-2642-fe0f":["1f3c3-1f3ff",9,51,23],"1f3c4-200d-2642-fe0f":["1f3c4",10,12,23],"1f3c4-1f3fb-200d-2642-fe0f":["1f3c4-1f3fb",10,13,23],"1f3c4-1f3fc-200d-2642-fe0f":["1f3c4-1f3fc",10,14,23],"1f3c4-1f3fd-200d-2642-fe0f":["1f3c4-1f3fd",10,15,23],"1f3c4-1f3fe-200d-2642-fe0f":["1f3c4-1f3fe",10,16,23],"1f3c4-1f3ff-200d-2642-fe0f":["1f3c4-1f3ff",10,17,23],"1f3ca-200d-2642-fe0f":["1f3ca",10,40,23],"1f3ca-1f3fb-200d-2642-fe0f":["1f3ca-1f3fb",10,41,23],"1f3ca-1f3fc-200d-2642-fe0f":["1f3ca-1f3fc",10,42,23],"1f3ca-1f3fd-200d-2642-fe0f":["1f3ca-1f3fd",10,43,23],"1f3ca-1f3fe-200d-2642-fe0f":["1f3ca-1f3fe",10,44,23],"1f3ca-1f3ff-200d-2642-fe0f":["1f3ca-1f3ff",10,45,23],"1f3cb-fe0f-200d-2642-fe0f":["1f3cb-fe0f",11,6,7],"1f3cb-1f3fb-200d-2642-fe0f":["1f3cb-1f3fb",11,7,7],"1f3cb-1f3fc-200d-2642-fe0f":["1f3cb-1f3fc",11,8,7],"1f3cb-1f3fd-200d-2642-fe0f":["1f3cb-1f3fd",11,9,7],"1f3cb-1f3fe-200d-2642-fe0f":["1f3cb-1f3fe",11,10,7],"1f3cb-1f3ff-200d-2642-fe0f":["1f3cb-1f3ff",11,11,7],"1f3cc-fe0f-200d-2642-fe0f":["1f3cc-fe0f",11,24,7],"1f3cc-1f3fb-200d-2642-fe0f":["1f3cc-1f3fb",11,25,7],"1f3cc-1f3fc-200d-2642-fe0f":["1f3cc-1f3fc",11,26,7],"1f3cc-1f3fd-200d-2642-fe0f":["1f3cc-1f3fd",11,27,7],"1f3cc-1f3fe-200d-2642-fe0f":["1f3cc-1f3fe",11,28,7],"1f3cc-1f3ff-200d-2642-fe0f":["1f3cc-1f3ff",11,29,7],"1f468-200d-1f469-200d-1f466":["1f46a",20,29,23],"1f46e-200d-2642-fe0f":["1f46e",20,45,23],"1f46e-1f3fb-200d-2642-fe0f":["1f46e-1f3fb",20,46,23],"1f46e-1f3fc-200d-2642-fe0f":["1f46e-1f3fc",20,47,23],"1f46e-1f3fd-200d-2642-fe0f":["1f46e-1f3fd",20,48,23],"1f46e-1f3fe-200d-2642-fe0f":["1f46e-1f3fe",20,49,23],"1f46e-1f3ff-200d-2642-fe0f":["1f46e-1f3ff",20,50,23],"1f46f-200d-2640-fe0f":["1f46f",21,1,23],"1f471-200d-2642-fe0f":["1f471",21,20,23],"1f471-1f3fb-200d-2642-fe0f":["1f471-1f3fb",21,21,23],"1f471-1f3fc-200d-2642-fe0f":["1f471-1f3fc",21,22,23],"1f471-1f3fd-200d-2642-fe0f":["1f471-1f3fd",21,23,23],"1f471-1f3fe-200d-2642-fe0f":["1f471-1f3fe",21,24,23],"1f471-1f3ff-200d-2642-fe0f":["1f471-1f3ff",21,25,23],"1f473-200d-2642-fe0f":["1f473",21,44,23],"1f473-1f3fb-200d-2642-fe0f":["1f473-1f3fb",21,45,23],"1f473-1f3fc-200d-2642-fe0f":["1f473-1f3fc",21,46,23],"1f473-1f3fd-200d-2642-fe0f":["1f473-1f3fd",21,47,23],"1f473-1f3fe-200d-2642-fe0f":["1f473-1f3fe",21,48,23],"1f473-1f3ff-200d-2642-fe0f":["1f473-1f3ff",21,49,23],"1f477-200d-2642-fe0f":["1f477",22,28,23],"1f477-1f3fb-200d-2642-fe0f":["1f477-1f3fb",22,29,23],"1f477-1f3fc-200d-2642-fe0f":["1f477-1f3fc",22,30,23],"1f477-1f3fd-200d-2642-fe0f":["1f477-1f3fd",22,31,23],"1f477-1f3fe-200d-2642-fe0f":["1f477-1f3fe",22,32,23],"1f477-1f3ff-200d-2642-fe0f":["1f477-1f3ff",22,33,23],"1f481-200d-2640-fe0f":["1f481",23,13,23],"1f481-1f3fb-200d-2640-fe0f":["1f481-1f3fb",23,14,23],"1f481-1f3fc-200d-2640-fe0f":["1f481-1f3fc",23,15,23],"1f481-1f3fd-200d-2640-fe0f":["1f481-1f3fd",23,16,23],"1f481-1f3fe-200d-2640-fe0f":["1f481-1f3fe",23,17,23],"1f481-1f3ff-200d-2640-fe0f":["1f481-1f3ff",23,18,23],"1f482-200d-2642-fe0f":["1f482",23,31,23],"1f482-1f3fb-200d-2642-fe0f":["1f482-1f3fb",23,32,23],"1f482-1f3fc-200d-2642-fe0f":["1f482-1f3fc",23,33,23],"1f482-1f3fd-200d-2642-fe0f":["1f482-1f3fd",23,34,23],"1f482-1f3fe-200d-2642-fe0f":["1f482-1f3fe",23,35,23],"1f482-1f3ff-200d-2642-fe0f":["1f482-1f3ff",23,36,23],"1f486-200d-2640-fe0f":["1f486",24,10,23],"1f486-1f3fb-200d-2640-fe0f":["1f486-1f3fb",24,11,23],"1f486-1f3fc-200d-2640-fe0f":["1f486-1f3fc",24,12,23],"1f486-1f3fd-200d-2640-fe0f":["1f486-1f3fd",24,13,23],"1f486-1f3fe-200d-2640-fe0f":["1f486-1f3fe",24,14,23],"1f486-1f3ff-200d-2640-fe0f":["1f486-1f3ff",24,15,23],"1f487-200d-2640-fe0f":["1f487",24,28,23],"1f487-1f3fb-200d-2640-fe0f":["1f487-1f3fb",24,29,23],"1f487-1f3fc-200d-2640-fe0f":["1f487-1f3fc",24,30,23],"1f487-1f3fd-200d-2640-fe0f":["1f487-1f3fd",24,31,23],"1f487-1f3fe-200d-2640-fe0f":["1f487-1f3fe",24,32,23],"1f487-1f3ff-200d-2640-fe0f":["1f487-1f3ff",24,33,23],"1f469-200d-2764-fe0f-200d-1f48b-200d-1f468":["1f48f",24,41,23],"1f469-200d-2764-fe0f-200d-1f468":["1f491",24,43,23],"1f575-fe0f-200d-2642-fe0f":["1f575-fe0f",29,11,7],"1f575-1f3fb-200d-2642-fe0f":["1f575-1f3fb",29,12,7],"1f575-1f3fc-200d-2642-fe0f":["1f575-1f3fc",29,13,7],"1f575-1f3fd-200d-2642-fe0f":["1f575-1f3fd",29,14,7],"1f575-1f3fe-200d-2642-fe0f":["1f575-1f3fe",29,15,7],"1f575-1f3ff-200d-2642-fe0f":["1f575-1f3ff",29,16,7],"1f645-200d-2640-fe0f":["1f645",32,1,23],"1f645-1f3fb-200d-2640-fe0f":["1f645-1f3fb",32,2,23],"1f645-1f3fc-200d-2640-fe0f":["1f645-1f3fc",32,3,23],"1f645-1f3fd-200d-2640-fe0f":["1f645-1f3fd",32,4,23],"1f645-1f3fe-200d-2640-fe0f":["1f645-1f3fe",32,5,23],"1f645-1f3ff-200d-2640-fe0f":["1f645-1f3ff",32,6,23],"1f646-200d-2640-fe0f":["1f646",32,19,23],"1f646-1f3fb-200d-2640-fe0f":["1f646-1f3fb",32,20,23],"1f646-1f3fc-200d-2640-fe0f":["1f646-1f3fc",32,21,23],"1f646-1f3fd-200d-2640-fe0f":["1f646-1f3fd",32,22,23],"1f646-1f3fe-200d-2640-fe0f":["1f646-1f3fe",32,23,23],"1f646-1f3ff-200d-2640-fe0f":["1f646-1f3ff",32,24,23],"1f647-200d-2642-fe0f":["1f647",32,37,23],"1f647-1f3fb-200d-2642-fe0f":["1f647-1f3fb",32,38,23],"1f647-1f3fc-200d-2642-fe0f":["1f647-1f3fc",32,39,23],"1f647-1f3fd-200d-2642-fe0f":["1f647-1f3fd",32,40,23],"1f647-1f3fe-200d-2642-fe0f":["1f647-1f3fe",32,41,23],"1f647-1f3ff-200d-2642-fe0f":["1f647-1f3ff",32,42,23],"1f64b-200d-2640-fe0f":["1f64b",33,6,23],"1f64b-1f3fb-200d-2640-fe0f":["1f64b-1f3fb",33,7,23],"1f64b-1f3fc-200d-2640-fe0f":["1f64b-1f3fc",33,8,23],"1f64b-1f3fd-200d-2640-fe0f":["1f64b-1f3fd",33,9,23],"1f64b-1f3fe-200d-2640-fe0f":["1f64b-1f3fe",33,10,23],"1f64b-1f3ff-200d-2640-fe0f":["1f64b-1f3ff",33,11,23],"1f64d-200d-2640-fe0f":["1f64d",33,30,23],"1f64d-1f3fb-200d-2640-fe0f":["1f64d-1f3fb",33,31,23],"1f64d-1f3fc-200d-2640-fe0f":["1f64d-1f3fc",33,32,23],"1f64d-1f3fd-200d-2640-fe0f":["1f64d-1f3fd",33,33,23],"1f64d-1f3fe-200d-2640-fe0f":["1f64d-1f3fe",33,34,23],"1f64d-1f3ff-200d-2640-fe0f":["1f64d-1f3ff",33,35,23],"1f64e-200d-2640-fe0f":["1f64e",33,48,23],"1f64e-1f3fb-200d-2640-fe0f":["1f64e-1f3fb",33,49,23],"1f64e-1f3fc-200d-2640-fe0f":["1f64e-1f3fc",33,50,23],"1f64e-1f3fd-200d-2640-fe0f":["1f64e-1f3fd",33,51,23],"1f64e-1f3fe-200d-2640-fe0f":["1f64e-1f3fe",34,0,23],"1f64e-1f3ff-200d-2640-fe0f":["1f64e-1f3ff",34,1,23],"1f6a3-200d-2642-fe0f":["1f6a3",35,3,23],"1f6a3-1f3fb-200d-2642-fe0f":["1f6a3-1f3fb",35,4,7],"1f6a3-1f3fc-200d-2642-fe0f":["1f6a3-1f3fc",35,5,7],"1f6a3-1f3fd-200d-2642-fe0f":["1f6a3-1f3fd",35,6,7],"1f6a3-1f3fe-200d-2642-fe0f":["1f6a3-1f3fe",35,7,7],"1f6a3-1f3ff-200d-2642-fe0f":["1f6a3-1f3ff",35,8,7],"1f6b4-200d-2642-fe0f":["1f6b4",35,37,23],"1f6b4-1f3fb-200d-2642-fe0f":["1f6b4-1f3fb",35,38,23],"1f6b4-1f3fc-200d-2642-fe0f":["1f6b4-1f3fc",35,39,23],"1f6b4-1f3fd-200d-2642-fe0f":["1f6b4-1f3fd",35,40,23],"1f6b4-1f3fe-200d-2642-fe0f":["1f6b4-1f3fe",35,41,23],"1f6b4-1f3ff-200d-2642-fe0f":["1f6b4-1f3ff",35,42,23],"1f6b5-200d-2642-fe0f":["1f6b5",36,3,23],"1f6b5-1f3fb-200d-2642-fe0f":["1f6b5-1f3fb",36,4,23],"1f6b5-1f3fc-200d-2642-fe0f":["1f6b5-1f3fc",36,5,23],"1f6b5-1f3fd-200d-2642-fe0f":["1f6b5-1f3fd",36,6,23],"1f6b5-1f3fe-200d-2642-fe0f":["1f6b5-1f3fe",36,7,23],"1f6b5-1f3ff-200d-2642-fe0f":["1f6b5-1f3ff",36,8,23],"1f6b6-200d-2642-fe0f":["1f6b6",36,21,23],"1f6b6-1f3fb-200d-2642-fe0f":["1f6b6-1f3fb",36,22,23],"1f6b6-1f3fc-200d-2642-fe0f":["1f6b6-1f3fc",36,23,23],"1f6b6-1f3fd-200d-2642-fe0f":["1f6b6-1f3fd",36,24,23],"1f6b6-1f3fe-200d-2642-fe0f":["1f6b6-1f3fe",36,25,23],"1f6b6-1f3ff-200d-2642-fe0f":["1f6b6-1f3ff",36,26,23],"1f9d6-200d-2642-fe0f":["1f9d6",43,40,15],"1f9d6-1f3fb-200d-2642-fe0f":["1f9d6-1f3fb",43,41,15],"1f9d6-1f3fc-200d-2642-fe0f":["1f9d6-1f3fc",43,42,15],"1f9d6-1f3fd-200d-2642-fe0f":["1f9d6-1f3fd",43,43,15],"1f9d6-1f3fe-200d-2642-fe0f":["1f9d6-1f3fe",43,44,15],"1f9d6-1f3ff-200d-2642-fe0f":["1f9d6-1f3ff",43,45,15],"1f9d7-200d-2640-fe0f":["1f9d7",44,6,15],"1f9d7-1f3fb-200d-2640-fe0f":["1f9d7-1f3fb",44,7,15],"1f9d7-1f3fc-200d-2640-fe0f":["1f9d7-1f3fc",44,8,15],"1f9d7-1f3fd-200d-2640-fe0f":["1f9d7-1f3fd",44,9,15],"1f9d7-1f3fe-200d-2640-fe0f":["1f9d7-1f3fe",44,10,15],"1f9d7-1f3ff-200d-2640-fe0f":["1f9d7-1f3ff",44,11,15],"1f9d8-200d-2640-fe0f":["1f9d8",44,24,15],"1f9d8-1f3fb-200d-2640-fe0f":["1f9d8-1f3fb",44,25,15],"1f9d8-1f3fc-200d-2640-fe0f":["1f9d8-1f3fc",44,26,15],"1f9d8-1f3fd-200d-2640-fe0f":["1f9d8-1f3fd",44,27,15],"1f9d8-1f3fe-200d-2640-fe0f":["1f9d8-1f3fe",44,28,15],"1f9d8-1f3ff-200d-2640-fe0f":["1f9d8-1f3ff",44,29,15],"1f9d9-200d-2640-fe0f":["1f9d9",44,42,15],"1f9d9-1f3fb-200d-2640-fe0f":["1f9d9-1f3fb",44,43,15],"1f9d9-1f3fc-200d-2640-fe0f":["1f9d9-1f3fc",44,44,15],"1f9d9-1f3fd-200d-2640-fe0f":["1f9d9-1f3fd",44,45,15],"1f9d9-1f3fe-200d-2640-fe0f":["1f9d9-1f3fe",44,46,15],"1f9d9-1f3ff-200d-2640-fe0f":["1f9d9-1f3ff",44,47,15],"1f9da-200d-2640-fe0f":["1f9da",45,8,15],"1f9da-1f3fb-200d-2640-fe0f":["1f9da-1f3fb",45,9,7],"1f9da-1f3fc-200d-2640-fe0f":["1f9da-1f3fc",45,10,7],"1f9da-1f3fd-200d-2640-fe0f":["1f9da-1f3fd",45,11,7],"1f9da-1f3fe-200d-2640-fe0f":["1f9da-1f3fe",45,12,7],"1f9da-1f3ff-200d-2640-fe0f":["1f9da-1f3ff",45,13,7],"1f9db-200d-2640-fe0f":["1f9db",45,26,15],"1f9db-1f3fb-200d-2640-fe0f":["1f9db-1f3fb",45,27,7],"1f9db-1f3fc-200d-2640-fe0f":["1f9db-1f3fc",45,28,7],"1f9db-1f3fd-200d-2640-fe0f":["1f9db-1f3fd",45,29,7],"1f9db-1f3fe-200d-2640-fe0f":["1f9db-1f3fe",45,30,7],"1f9db-1f3ff-200d-2640-fe0f":["1f9db-1f3ff",45,31,7],"1f9dc-200d-2642-fe0f":["1f9dc",45,44,15],"1f9dc-1f3fb-200d-2642-fe0f":["1f9dc-1f3fb",45,45,15],"1f9dc-1f3fc-200d-2642-fe0f":["1f9dc-1f3fc",45,46,15],"1f9dc-1f3fd-200d-2642-fe0f":["1f9dc-1f3fd",45,47,15],"1f9dc-1f3fe-200d-2642-fe0f":["1f9dc-1f3fe",45,48,15],"1f9dc-1f3ff-200d-2642-fe0f":["1f9dc-1f3ff",45,49,15],"1f9dd-200d-2642-fe0f":["1f9dd",46,10,15],"1f9dd-1f3fb-200d-2642-fe0f":["1f9dd-1f3fb",46,11,15],"1f9dd-1f3fc-200d-2642-fe0f":["1f9dd-1f3fc",46,12,15],"1f9dd-1f3fd-200d-2642-fe0f":["1f9dd-1f3fd",46,13,15],"1f9dd-1f3fe-200d-2642-fe0f":["1f9dd-1f3fe",46,14,15],"1f9dd-1f3ff-200d-2642-fe0f":["1f9dd-1f3ff",46,15,15],"1f9de-200d-2642-fe0f":["1f9de",46,18,15],"1f9df-200d-2642-fe0f":["1f9df",46,21,15],"26f9-fe0f-200d-2642-fe0f":["26f9-fe0f",49,6,7],"26f9-1f3fb-200d-2642-fe0f":["26f9-1f3fb",49,7,7],"26f9-1f3fc-200d-2642-fe0f":["26f9-1f3fc",49,8,7],"26f9-1f3fd-200d-2642-fe0f":["26f9-1f3fd",49,9,7],"26f9-1f3fe-200d-2642-fe0f":["26f9-1f3fe",49,10,7],"26f9-1f3ff-200d-2642-fe0f":["26f9-1f3ff",49,11,7]},e.exports&&(t=e.exports=i),t.EmojiConvertor=i}).call(function(){return this||("undefined"!=typeof window?window:o)}())}).call(this,o(7))},function(e,t,o){var n;"undefined"!=typeof self&&self,n=function(){return function(e){var t={};function o(n){if(t[n])return t[n].exports;var i=t[n]={i:n,l:!1,exports:{}};return e[n].call(i.exports,i,i.exports,o),i.l=!0,i.exports}return o.m=e,o.c=t,o.d=function(e,t,n){o.o(e,t)||Object.defineProperty(e,t,{configurable:!1,enumerable:!0,get:n})},o.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return o.d(t,"a",t),t},o.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},o.p="",o(o.s=71)}([function(e,t){e.exports=function(e){var t=[];return t.toString=function(){return this.map((function(t){var o=function(e,t){var o,n=e[1]||"",i=e[3];if(!i)return n;if(t&&"function"==typeof btoa){var r=(o=i,"/*# sourceMappingURL=data:application/json;charset=utf-8;base64,"+btoa(unescape(encodeURIComponent(JSON.stringify(o))))+" */"),a=i.sources.map((function(e){return"/*# sourceURL="+i.sourceRoot+e+" */"}));return[n].concat(a).concat([r]).join("\n")}return[n].join("\n")}(t,e);return t[2]?"@media "+t[2]+"{"+o+"}":o})).join("")},t.i=function(e,o){"string"==typeof e&&(e=[[null,e,""]]);for(var n={},i=0;i<this.length;i++){var r=this[i][0];"number"==typeof r&&(n[r]=!0)}for(i=0;i<e.length;i++){var a=e[i];"number"==typeof a[0]&&n[a[0]]||(o&&!a[2]?a[2]=o:o&&(a[2]="("+a[2]+") and ("+o+")"),t.push(a))}},t}},function(e,t,o){var n="undefined"!=typeof document;if("undefined"!=typeof DEBUG&&DEBUG&&!n)throw new Error("vue-style-loader cannot be used in a non-browser environment. Use { target: 'node' } in your Webpack config to indicate a server-rendering environment.");var i=o(75),r={},a=n&&(document.head||document.getElementsByTagName("head")[0]),l=null,s=0,d=!1,m=function(){},f=null,_="data-vue-ssr-id",c="undefined"!=typeof navigator&&/msie [6-9]\b/.test(navigator.userAgent.toLowerCase());function g(e){for(var t=0;t<e.length;t++){var o=e[t],n=r[o.id];if(n){n.refs++;for(var i=0;i<n.parts.length;i++)n.parts[i](o.parts[i]);for(;i<o.parts.length;i++)n.parts.push(u(o.parts[i]));n.parts.length>o.parts.length&&(n.parts.length=o.parts.length)}else{var a=[];for(i=0;i<o.parts.length;i++)a.push(u(o.parts[i]));r[o.id]={id:o.id,refs:1,parts:a}}}}function p(){var e=document.createElement("style");return e.type="text/css",a.appendChild(e),e}function u(e){var t,o,n=document.querySelector("style["+_+'~="'+e.id+'"]');if(n){if(d)return m;n.parentNode.removeChild(n)}if(c){var i=s++;n=l||(l=p()),t=x.bind(null,n,i,!1),o=x.bind(null,n,i,!0)}else n=p(),t=y.bind(null,n),o=function(){n.parentNode.removeChild(n)};return t(e),function(n){if(n){if(n.css===e.css&&n.media===e.media&&n.sourceMap===e.sourceMap)return;t(e=n)}else o()}}e.exports=function(e,t,o,n){d=o,f=n||{};var a=i(e,t);return g(a),function(t){for(var o=[],n=0;n<a.length;n++){var l=a[n];(s=r[l.id]).refs--,o.push(s)}for(t?g(a=i(e,t)):a=[],n=0;n<o.length;n++){var s;if(0===(s=o[n]).refs){for(var d=0;d<s.parts.length;d++)s.parts[d]();delete r[s.id]}}}};var h,b=(h=[],function(e,t){return h[e]=t,h.filter(Boolean).join("\n")});function x(e,t,o,n){var i=o?"":n.css;if(e.styleSheet)e.styleSheet.cssText=b(t,i);else{var r=document.createTextNode(i),a=e.childNodes;a[t]&&e.removeChild(a[t]),a.length?e.insertBefore(r,a[t]):e.appendChild(r)}}function y(e,t){var o=t.css,n=t.media,i=t.sourceMap;if(n&&e.setAttribute("media",n),f.ssrId&&e.setAttribute(_,t.id),i&&(o+="\n/*# sourceURL="+i.sources[0]+" */",o+="\n/*# sourceMappingURL=data:application/json;base64,"+btoa(unescape(encodeURIComponent(JSON.stringify(i))))+" */"),e.styleSheet)e.styleSheet.cssText=o;else{for(;e.firstChild;)e.removeChild(e.firstChild);e.appendChild(document.createTextNode(o))}}},function(e,t,o){var n=o(33)("wks"),i=o(21),r=o(5).Symbol,a="function"==typeof r;(e.exports=function(e){return n[e]||(n[e]=a&&r[e]||(a?r:i)("Symbol."+e))}).store=n},function(e,t){e.exports=function(e,t,o,n,i,r){var a,l=e=e||{},s=typeof e.default;"object"!==s&&"function"!==s||(a=e,l=e.default);var d,m="function"==typeof l?l.options:l;if(t&&(m.render=t.render,m.staticRenderFns=t.staticRenderFns,m._compiled=!0),o&&(m.functional=!0),i&&(m._scopeId=i),r?(d=function(e){(e=e||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext)||"undefined"==typeof __VUE_SSR_CONTEXT__||(e=__VUE_SSR_CONTEXT__),n&&n.call(this,e),e&&e._registeredComponents&&e._registeredComponents.add(r)},m._ssrRegister=d):n&&(d=n),d){var f=m.functional,_=f?m.render:m.beforeCreate;f?(m._injectStyles=d,m.render=function(e,t){return d.call(t),_(e,t)}):m.beforeCreate=_?[].concat(_,d):[d]}return{esModule:a,exports:l,options:m}}},function(e,t){var o=e.exports={version:"2.5.3"};"number"==typeof __e&&(__e=o)},function(e,t){var o=e.exports="undefined"!=typeof window&&window.Math==Math?window:"undefined"!=typeof self&&self.Math==Math?self:Function("return this")();"number"==typeof __g&&(__g=o)},function(e,t,o){var n=o(9),i=o(49),r=o(30),a=Object.defineProperty;t.f=o(10)?Object.defineProperty:function(e,t,o){if(n(e),t=r(t,!0),n(o),i)try{return a(e,t,o)}catch(e){}if("get"in o||"set"in o)throw TypeError("Accessors not supported!");return"value"in o&&(e[t]=o.value),e}},function(e,t){var o={}.hasOwnProperty;e.exports=function(e,t){return o.call(e,t)}},function(e,t,o){var n=o(6),i=o(15);e.exports=o(10)?function(e,t,o){return n.f(e,t,i(1,o))}:function(e,t,o){return e[t]=o,e}},function(e,t,o){var n=o(14);e.exports=function(e){if(!n(e))throw TypeError(e+" is not an object!");return e}},function(e,t,o){e.exports=!o(11)((function(){return 7!=Object.defineProperty({},"a",{get:function(){return 7}}).a}))},function(e,t){e.exports=function(e){try{return!!e()}catch(e){return!0}}},function(e,t,o){var n=o(54),i=o(28);e.exports=function(e){return n(i(e))}},function(e,t,o){var n=o(5),i=o(4),r=o(48),a=o(8),l=function(e,t,o){var s,d,m,f=e&l.F,_=e&l.G,c=e&l.S,g=e&l.P,p=e&l.B,u=e&l.W,h=_?i:i[t]||(i[t]={}),b=h.prototype,x=_?n:c?n[t]:(n[t]||{}).prototype;for(s in _&&(o=t),o)(d=!f&&x&&void 0!==x[s])&&s in h||(m=d?x[s]:o[s],h[s]=_&&"function"!=typeof x[s]?o[s]:p&&d?r(m,n):u&&x[s]==m?function(e){var t=function(t,o,n){if(this instanceof e){switch(arguments.length){case 0:return new e;case 1:return new e(t);case 2:return new e(t,o)}return new e(t,o,n)}return e.apply(this,arguments)};return t.prototype=e.prototype,t}(m):g&&"function"==typeof m?r(Function.call,m):m,g&&((h.virtual||(h.virtual={}))[s]=m,e&l.R&&b&&!b[s]&&a(b,s,m)))};l.F=1,l.G=2,l.S=4,l.P=8,l.B=16,l.W=32,l.U=64,l.R=128,e.exports=l},function(e,t){e.exports=function(e){return"object"==typeof e?null!==e:"function"==typeof e}},function(e,t){e.exports=function(e,t){return{enumerable:!(1&e),configurable:!(2&e),writable:!(4&e),value:t}}},function(e,t){e.exports={}},function(e,t,o){var n=o(53),i=o(34);e.exports=Object.keys||function(e){return n(e,i)}},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var n=o(46),i=o.n(n);for(var r in n)"default"!==r&&function(e){o.d(t,e,(function(){return n[e]}))}(r);var a=o(119),l=!1,s=function(e){l||o(84)},d=o(3)(i.a,a.a,!1,s,"data-v-7f853594",null);d.options.__file="src/components/emoji/nimbleEmoji.vue",t.default=d.exports},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var n=Object;t.default=n.assign||function(e){for(var t=1;t<arguments.length;t++){var o=arguments[t];for(var n in o)Object.prototype.hasOwnProperty.call(o,n)&&(e[n]=o[n])}return e}},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.measureScrollbar=t.unifiedToNative=t.deepMerge=t.intersect=t.uniq=t.getSanitizedData=t.getData=void 0;var n=s(o(86)),i=s(o(111)),r=s(o(58)),a=o(24),l=s(o(118));function s(e){return e&&e.__esModule?e:{default:e}}var d=JSON,m=/^(?:\:([^\:]+)\:)(?:\:skin-tone-(\d)\:)?$/,f=["1F3FA","1F3FB","1F3FC","1F3FD","1F3FE","1F3FF"];function _(e){var t=e.split("-").map((function(e){return"0x"+e}));return l.default.apply(null,t)}function c(e,t,o,n){var l=function(e){return"string"==typeof e?e:(0,r.default)({},e)}(e),s={};if("string"==typeof l){var _=l.match(m);if(_&&(l=_[1],_[2]&&(t=parseInt(_[2],10))),n.aliases.hasOwnProperty(l)&&(l=n.aliases[l]),!n.emojis.hasOwnProperty(l))return null;s=n.emojis[l]}else l.id&&(n.aliases.hasOwnProperty(l.id)&&(l.id=n.aliases[l.id]),n.emojis.hasOwnProperty(l.id)&&(s=n.emojis[l.id],t||(t=l.skin)));if((0,i.default)(s).length||((s=l).custom=!0,s.search||(s.search=(0,a.buildSearch)(l))),s.emoticons||(s.emoticons=[]),s.variations||(s.variations=[]),s.skin_variations&&t>1){s=JSON.parse(d.stringify(s));var c=f[t-1],g=s.skin_variations[c];if(!g.variations&&s.variations&&delete s.variations,"native"==o||null==g["has_img_"+o]||g["has_img_"+o])for(var p in s.skin_tone=t,g){var u=g[p];s[p]=u}}return s.variations&&s.variations.length&&((s=JSON.parse(d.stringify(s))).unified=s.variations.shift()),s}function g(e){return e.reduce((function(e,t){return-1===e.indexOf(t)&&e.push(t),e}),[])}t.getData=c,t.getSanitizedData=function(){return e=c.apply(void 0,arguments),t=e.name,o=e.short_names,n=e.skin_tone,i=e.skin_variations,r=e.emoticons,a=e.unified,l=e.custom,s=e.imageUrl,d=e.id||o[0],m=":"+d+":",l?{id:d,name:t,colons:m,emoticons:r,custom:l,imageUrl:s}:(n&&(m+=":skin-tone-"+n+":"),{id:d,name:t,colons:m,emoticons:r,unified:a.toLowerCase(),skin:n||(i?1:null),native:_(a)});var e,t,o,n,i,r,a,l,s,d,m},t.uniq=g,t.intersect=function(e,t){var o=g(e),n=g(t);return o.filter((function(e){return n.indexOf(e)>=0}))},t.deepMerge=function e(t,o){var i={};for(var r in t){var a=t[r],l=a;o.hasOwnProperty(r)&&(l=o[r]),"object"===(void 0===l?"undefined":(0,n.default)(l))&&(l=e(a,l)),i[r]=l}return i},t.unifiedToNative=_,t.measureScrollbar=function(){if("undefined"==typeof document)return 0;var e=document.createElement("div");e.style.width="100px",e.style.height="100px",e.style.overflow="scroll",e.style.position="absolute",e.style.top="-9999px",document.body.appendChild(e);var t=e.offsetWidth-e.clientWidth;return document.body.removeChild(e),t}},function(e,t){var o=0,n=Math.random();e.exports=function(e){return"Symbol(".concat(void 0===e?"":e,")_",(++o+n).toString(36))}},function(e,t,o){var n=o(28);e.exports=function(e){return Object(n(e))}},function(e,t){t.f={}.propertyIsEnumerable},function(e,t,o){"use strict";var n={name:"a",unified:"b",non_qualified:"c",has_img_apple:"d",has_img_google:"e",has_img_twitter:"f",has_img_emojione:"g",has_img_facebook:"h",has_img_messenger:"i",keywords:"j",sheet:"k",emoticons:"l",text:"m",short_names:"n",added_in:"o"},i=function(e){var t=[],o=function(e,o){e&&(Array.isArray(e)?e:[e]).forEach((function(e){(o?e.split(/[-|_|\s]+/):[e]).forEach((function(e){e=e.toLowerCase(),-1==t.indexOf(e)&&t.push(e)}))}))};return o(e.short_names,!0),o(e.name,!0),o(e.keywords,!1),o(e.emoticons,!1),t.join(",")};e.exports={buildSearch:i,compress:function(e){for(var t in e.short_names=e.short_names.filter((function(t){return t!==e.short_name})),delete e.short_name,e.sheet=[e.sheet_x,e.sheet_y],delete e.sheet_x,delete e.sheet_y,e.added_in=parseInt(e.added_in),6===e.added_in&&delete e.added_in,n)e[n[t]]=e[t],delete e[t];for(var o in e){var i=e[o];Array.isArray(i)&&!i.length?delete e[o]:"string"!=typeof i||i.length?null===i&&delete e[o]:delete e[o]}},uncompress:function(e){for(var t in e.compressed=!1,e.emojis){var o=e.emojis[t];for(var r in n)o[r]=o[n[r]],delete o[n[r]];o.short_names||(o.short_names=[]),o.short_names.unshift(t),o.sheet_x=o.sheet[0],o.sheet_y=o.sheet[1],delete o.sheet,o.text||(o.text=""),o.added_in||(o.added_in=6),o.added_in=o.added_in.toFixed(1),o.search=i(o)}}}},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var n={backgroundImageFn:{type:Function,default:function(e,t){return"https://unpkg.com/emoji-datasource-"+e+"@4.0.4/img/"+e+"/sheets-256/"+t+".png"}},native:{type:Boolean,default:!1},forceSize:{type:Boolean,default:!1},tooltip:{type:Boolean,default:!1},fallback:{type:Function},skin:{type:Number,default:1},sheetSize:{type:Number,default:64},set:{type:String,default:"apple"},size:{type:Number,default:24},emoji:{type:[String,Object],required:!0}},i={perLine:{type:Number,default:9},emojiSize:{type:Number,default:24},title:{type:String,default:"Emoji Mart™"},emoji:{type:String,default:"department_store"},color:{type:String,default:"#ae65c5"},set:{type:String,default:"apple"},skin:{type:Number,default:null},defaultSkin:{type:Number,default:1},native:{type:Boolean,default:!1},backgroundImageFn:{type:Function},sheetSize:{type:Number,default:64},emojisToShowFilter:{type:Function},emojiTooltip:{type:Boolean,default:!1},include:{type:Array},exclude:{type:Array},recent:{type:Array},autoFocus:{type:Boolean,default:!1},custom:{type:Array,default:function(){return[]}},i18n:{type:Object,default:function(){return{}}},showPreview:{type:Boolean,default:!0},showSearch:{type:Boolean,default:!0},showCategories:{type:Boolean,default:!0},showSkinTones:{type:Boolean,default:!0},infiniteScroll:{type:Boolean,default:!0},pickerStyles:{type:Object,default:function(){return{}}}};t.EmojiProps=n,t.PickerProps=i},function(e,t,o){"use strict";var n=o(89)(!0);o(47)(String,"String",(function(e){this._t=String(e),this._i=0}),(function(){var e,t=this._t,o=this._i;return o>=t.length?{value:void 0,done:!0}:(e=n(t,o),this._i+=e.length,{value:e,done:!1})}))},function(e,t){var o=Math.ceil,n=Math.floor;e.exports=function(e){return isNaN(e=+e)?0:(e>0?n:o)(e)}},function(e,t){e.exports=function(e){if(null==e)throw TypeError("Can't call method on "+e);return e}},function(e,t){e.exports=!0},function(e,t,o){var n=o(14);e.exports=function(e,t){if(!n(e))return e;var o,i;if(t&&"function"==typeof(o=e.toString)&&!n(i=o.call(e)))return i;if("function"==typeof(o=e.valueOf)&&!n(i=o.call(e)))return i;if(!t&&"function"==typeof(o=e.toString)&&!n(i=o.call(e)))return i;throw TypeError("Can't convert object to primitive value")}},function(e,t){var o={}.toString;e.exports=function(e){return o.call(e).slice(8,-1)}},function(e,t,o){var n=o(33)("keys"),i=o(21);e.exports=function(e){return n[e]||(n[e]=i(e))}},function(e,t,o){var n=o(5),i=n["__core-js_shared__"]||(n["__core-js_shared__"]={});e.exports=function(e){return i[e]||(i[e]={})}},function(e,t){e.exports="constructor,hasOwnProperty,isPrototypeOf,propertyIsEnumerable,toLocaleString,toString,valueOf".split(",")},function(e,t,o){var n=o(6).f,i=o(7),r=o(2)("toStringTag");e.exports=function(e,t,o){e&&!i(e=o?e:e.prototype,r)&&n(e,r,{configurable:!0,value:t})}},function(e,t,o){t.f=o(2)},function(e,t,o){var n=o(5),i=o(4),r=o(29),a=o(36),l=o(6).f;e.exports=function(e){var t=i.Symbol||(i.Symbol=r?{}:n.Symbol||{});"_"==e.charAt(0)||e in t||l(t,e,{value:a.f(e)})}},function(e,t){t.f=Object.getOwnPropertySymbols},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var n=l(o(129)),i=l(o(130)),r=o(20),a=o(24);function l(e){return e&&e.__esModule?e:{default:e}}var s=function(){function e(t){(0,n.default)(this,e),t.compressed&&(t=(0,a.uncompress)(t)),this.data=t||{},this.originalPool={},this.index={},this.emojis={},this.emoticons={},this.customEmojisList=[],this.buildIndex()}return(0,i.default)(e,[{key:"buildIndex",value:function(){var e=this,t=function(t){var o=e.data.emojis[t],n=o.short_names,i=o.emoticons,a=n[0];i&&i.forEach((function(t){e.emoticons[t]||(e.emoticons[t]=a)})),e.emojis[a]=(0,r.getSanitizedData)(a,null,null,e.data),e.originalPool[a]=o};for(var o in this.data.emojis)t(o)}},{key:"clearCustomEmojis",value:function(e){var t=this;this.customEmojisList.forEach((function(o){var n=o.id||o.short_names[0];delete e[n],delete t.emojis[n]}))}},{key:"addCustomToPool",value:function(e,t){var o=this;this.customEmojisList.length&&this.clearCustomEmojis(t),e.forEach((function(e){var n=e.id||e.short_names[0];n&&!t[n]&&(t[n]=(0,r.getData)(e,null,null,o.data),o.emojis[n]=(0,r.getSanitizedData)(e,null,null,o.data))})),this.customEmojisList=e,this.index={}}},{key:"search",value:function(e){var t=this,o=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n=o.emojisToShowFilter,i=o.maxResults,a=o.include,l=o.exclude,s=o.custom,d=void 0===s?[]:s;this.customEmojisList!=d&&this.addCustomToPool(d,this.originalPool),i||(i=75),a||(a=[]),l||(l=[]);var m=null,f=this.originalPool;if(e.length){if("-"==e||"-1"==e)return[this.emojis[-1]];var _=e.toLowerCase().split(/[\s|,|\-|_]+/),c=[];if(_.length>2&&(_=[_[0],_[1]]),(a.length||l.length)&&(f={},this.data.categories.forEach((function(e){var o=!a||!a.length||a.indexOf(e.id)>-1,n=!(!l||!l.length)&&l.indexOf(e.id)>-1;o&&!n&&e.emojis.forEach((function(e){return f[e]=t.data.emojis[e]}))})),d.length)){var g=!a||!a.length||a.indexOf("custom")>-1,p=!(!l||!l.length)&&l.indexOf("custom")>-1;g&&!p&&this.addCustomToPool(d,f)}m=(c=_.map((function(e){for(var o=f,n=t.index,i=0,r=0;r<e.length;r++){var a=e[r];i++,n[a]||(n[a]={}),(n=n[a]).results||function(){var r={};for(var a in n.results=[],n.pool={},o){var l=o[a],s=l.search,d=e.substr(0,i),m=s.indexOf(d);if(-1!=m){var f=m+1;d==a&&(f=0),n.results.push(t.emojis[a]),n.pool[a]=l,r[a]=f}}n.results.sort((function(e,t){return r[e.id]-r[t.id]}))}(),o=n.pool}return n.results})).filter((function(e){return e}))).length>1?r.intersect.apply(null,c):c.length?c[0]:[]}return m&&(n&&(m=m.filter((function(e){return n(f[e.id])}))),m&&m.length>i&&(m=m.slice(0,i))),m}}]),e}();t.default=s},function(e,t){e.exports={compressed:!0,categories:[{id:"people",name:"Smileys & People",emojis:["grinning","grin","joy","rolling_on_the_floor_laughing","smiley","smile","sweat_smile","laughing","wink","blush","yum","sunglasses","heart_eyes","kissing_heart","kissing","kissing_smiling_eyes","kissing_closed_eyes","relaxed","slightly_smiling_face","hugging_face","star-struck","thinking_face","face_with_raised_eyebrow","neutral_face","expressionless","no_mouth","face_with_rolling_eyes","smirk","persevere","disappointed_relieved","open_mouth","zipper_mouth_face","hushed","sleepy","tired_face","sleeping","relieved","stuck_out_tongue","stuck_out_tongue_winking_eye","stuck_out_tongue_closed_eyes","drooling_face","unamused","sweat","pensive","confused","upside_down_face","money_mouth_face","astonished","white_frowning_face","slightly_frowning_face","confounded","disappointed","worried","triumph","cry","sob","frowning","anguished","fearful","weary","exploding_head","grimacing","cold_sweat","scream","flushed","zany_face","dizzy_face","rage","angry","face_with_symbols_on_mouth","mask","face_with_thermometer","face_with_head_bandage","nauseated_face","face_vomiting","sneezing_face","innocent","face_with_cowboy_hat","clown_face","lying_face","shushing_face","face_with_hand_over_mouth","face_with_monocle","nerd_face","smiling_imp","imp","japanese_ogre","japanese_goblin","skull","skull_and_crossbones","ghost","alien","space_invader","robot_face","hankey","smiley_cat","smile_cat","joy_cat","heart_eyes_cat","smirk_cat","kissing_cat","scream_cat","crying_cat_face","pouting_cat","see_no_evil","hear_no_evil","speak_no_evil","baby","child","boy","girl","adult","man","woman","older_adult","older_man","older_woman","male-doctor","female-doctor","male-student","female-student","male-teacher","female-teacher","male-judge","female-judge","male-farmer","female-farmer","male-cook","female-cook","male-mechanic","female-mechanic","male-factory-worker","female-factory-worker","male-office-worker","female-office-worker","male-scientist","female-scientist","male-technologist","female-technologist","male-singer","female-singer","male-artist","female-artist","male-pilot","female-pilot","male-astronaut","female-astronaut","male-firefighter","female-firefighter","cop","male-police-officer","female-police-officer","sleuth_or_spy","male-detective","female-detective","guardsman","male-guard","female-guard","construction_worker","male-construction-worker","female-construction-worker","prince","princess","man_with_turban","man-wearing-turban","woman-wearing-turban","man_with_gua_pi_mao","person_with_headscarf","bearded_person","person_with_blond_hair","blond-haired-man","blond-haired-woman","man_in_tuxedo","bride_with_veil","pregnant_woman","breast-feeding","angel","santa","mrs_claus","mage","female_mage","male_mage","fairy","female_fairy","male_fairy","vampire","female_vampire","male_vampire","merperson","mermaid","merman","elf","female_elf","male_elf","genie","female_genie","male_genie","zombie","female_zombie","male_zombie","person_frowning","man-frowning","woman-frowning","person_with_pouting_face","man-pouting","woman-pouting","no_good","man-gesturing-no","woman-gesturing-no","ok_woman","man-gesturing-ok","woman-gesturing-ok","information_desk_person","man-tipping-hand","woman-tipping-hand","raising_hand","man-raising-hand","woman-raising-hand","bow","man-bowing","woman-bowing","face_palm","man-facepalming","woman-facepalming","shrug","man-shrugging","woman-shrugging","massage","man-getting-massage","woman-getting-massage","haircut","man-getting-haircut","woman-getting-haircut","walking","man-walking","woman-walking","runner","man-running","woman-running","dancer","man_dancing","dancers","man-with-bunny-ears-partying","woman-with-bunny-ears-partying","person_in_steamy_room","woman_in_steamy_room","man_in_steamy_room","person_climbing","woman_climbing","man_climbing","person_in_lotus_position","woman_in_lotus_position","man_in_lotus_position","bath","sleeping_accommodation","man_in_business_suit_levitating","speaking_head_in_silhouette","bust_in_silhouette","busts_in_silhouette","fencer","horse_racing","skier","snowboarder","golfer","man-golfing","woman-golfing","surfer","man-surfing","woman-surfing","rowboat","man-rowing-boat","woman-rowing-boat","swimmer","man-swimming","woman-swimming","person_with_ball","man-bouncing-ball","woman-bouncing-ball","weight_lifter","man-lifting-weights","woman-lifting-weights","bicyclist","man-biking","woman-biking","mountain_bicyclist","man-mountain-biking","woman-mountain-biking","racing_car","racing_motorcycle","person_doing_cartwheel","man-cartwheeling","woman-cartwheeling","wrestlers","man-wrestling","woman-wrestling","water_polo","man-playing-water-polo","woman-playing-water-polo","handball","man-playing-handball","woman-playing-handball","juggling","man-juggling","woman-juggling","couple","two_men_holding_hands","two_women_holding_hands","couplekiss","woman-kiss-man","man-kiss-man","woman-kiss-woman","couple_with_heart","woman-heart-man","man-heart-man","woman-heart-woman","family","man-woman-boy","man-woman-girl","man-woman-girl-boy","man-woman-boy-boy","man-woman-girl-girl","man-man-boy","man-man-girl","man-man-girl-boy","man-man-boy-boy","man-man-girl-girl","woman-woman-boy","woman-woman-girl","woman-woman-girl-boy","woman-woman-boy-boy","woman-woman-girl-girl","man-boy","man-boy-boy","man-girl","man-girl-boy","man-girl-girl","woman-boy","woman-boy-boy","woman-girl","woman-girl-boy","woman-girl-girl","selfie","muscle","point_left","point_right","point_up","point_up_2","middle_finger","point_down","v","crossed_fingers","spock-hand","the_horns","call_me_hand","raised_hand_with_fingers_splayed","hand","ok_hand","+1","-1","fist","facepunch","left-facing_fist","right-facing_fist","raised_back_of_hand","wave","i_love_you_hand_sign","writing_hand","clap","open_hands","raised_hands","palms_up_together","pray","handshake","nail_care","ear","nose","footprints","eyes","eye","eye-in-speech-bubble","brain","tongue","lips","kiss","cupid","heart","heartbeat","broken_heart","two_hearts","sparkling_heart","heartpulse","blue_heart","green_heart","yellow_heart","orange_heart","purple_heart","black_heart","gift_heart","revolving_hearts","heart_decoration","heavy_heart_exclamation_mark_ornament","love_letter","zzz","anger","bomb","boom","sweat_drops","dash","dizzy","speech_balloon","left_speech_bubble","right_anger_bubble","thought_balloon","hole","eyeglasses","dark_sunglasses","necktie","shirt","jeans","scarf","gloves","coat","socks","dress","kimono","bikini","womans_clothes","purse","handbag","pouch","shopping_bags","school_satchel","mans_shoe","athletic_shoe","high_heel","sandal","boot","crown","womans_hat","tophat","mortar_board","billed_cap","helmet_with_white_cross","prayer_beads","lipstick","ring","gem"]},{id:"nature",name:"Animals & Nature",emojis:["monkey_face","monkey","gorilla","dog","dog2","poodle","wolf","fox_face","cat","cat2","lion_face","tiger","tiger2","leopard","horse","racehorse","unicorn_face","zebra_face","deer","cow","ox","water_buffalo","cow2","pig","pig2","boar","pig_nose","ram","sheep","goat","dromedary_camel","camel","giraffe_face","elephant","rhinoceros","mouse","mouse2","rat","hamster","rabbit","rabbit2","chipmunk","hedgehog","bat","bear","koala","panda_face","feet","turkey","chicken","rooster","hatching_chick","baby_chick","hatched_chick","bird","penguin","dove_of_peace","eagle","duck","owl","frog","crocodile","turtle","lizard","snake","dragon_face","dragon","sauropod","t-rex","whale","whale2","dolphin","fish","tropical_fish","blowfish","shark","octopus","shell","crab","shrimp","squid","snail","butterfly","bug","ant","bee","beetle","cricket","spider","spider_web","scorpion","bouquet","cherry_blossom","white_flower","rosette","rose","wilted_flower","hibiscus","sunflower","blossom","tulip","seedling","evergreen_tree","deciduous_tree","palm_tree","cactus","ear_of_rice","herb","shamrock","four_leaf_clover","maple_leaf","fallen_leaf","leaves"]},{id:"foods",name:"Food & Drink",emojis:["grapes","melon","watermelon","tangerine","lemon","banana","pineapple","apple","green_apple","pear","peach","cherries","strawberry","kiwifruit","tomato","coconut","avocado","eggplant","potato","carrot","corn","hot_pepper","cucumber","broccoli","mushroom","peanuts","chestnut","bread","croissant","baguette_bread","pretzel","pancakes","cheese_wedge","meat_on_bone","poultry_leg","cut_of_meat","bacon","hamburger","fries","pizza","hotdog","sandwich","taco","burrito","stuffed_flatbread","egg","fried_egg","shallow_pan_of_food","stew","bowl_with_spoon","green_salad","popcorn","canned_food","bento","rice_cracker","rice_ball","rice","curry","ramen","spaghetti","sweet_potato","oden","sushi","fried_shrimp","fish_cake","dango","dumpling","fortune_cookie","takeout_box","icecream","shaved_ice","ice_cream","doughnut","cookie","birthday","cake","pie","chocolate_bar","candy","lollipop","custard","honey_pot","baby_bottle","glass_of_milk","coffee","tea","sake","champagne","wine_glass","cocktail","tropical_drink","beer","beers","clinking_glasses","tumbler_glass","cup_with_straw","chopsticks","knife_fork_plate","fork_and_knife","spoon","hocho","amphora"]},{id:"activity",name:"Activities",emojis:["jack_o_lantern","christmas_tree","fireworks","sparkler","sparkles","balloon","tada","confetti_ball","tanabata_tree","bamboo","dolls","flags","wind_chime","rice_scene","ribbon","gift","reminder_ribbon","admission_tickets","ticket","medal","trophy","sports_medal","first_place_medal","second_place_medal","third_place_medal","soccer","baseball","basketball","volleyball","football","rugby_football","tennis","8ball","bowling","cricket_bat_and_ball","field_hockey_stick_and_ball","ice_hockey_stick_and_puck","table_tennis_paddle_and_ball","badminton_racquet_and_shuttlecock","boxing_glove","martial_arts_uniform","goal_net","dart","golf","ice_skate","fishing_pole_and_fish","running_shirt_with_sash","ski","sled","curling_stone","video_game","joystick","game_die","spades","hearts","diamonds","clubs","black_joker","mahjong","flower_playing_cards"]},{id:"places",name:"Travel & Places",emojis:["earth_africa","earth_americas","earth_asia","globe_with_meridians","world_map","japan","snow_capped_mountain","mountain","volcano","mount_fuji","camping","beach_with_umbrella","desert","desert_island","national_park","stadium","classical_building","building_construction","house_buildings","cityscape","derelict_house_building","house","house_with_garden","office","post_office","european_post_office","hospital","bank","hotel","love_hotel","convenience_store","school","department_store","factory","japanese_castle","european_castle","wedding","tokyo_tower","statue_of_liberty","church","mosque","synagogue","shinto_shrine","kaaba","fountain","tent","foggy","night_with_stars","sunrise_over_mountains","sunrise","city_sunset","city_sunrise","bridge_at_night","hotsprings","milky_way","carousel_horse","ferris_wheel","roller_coaster","barber","circus_tent","performing_arts","frame_with_picture","art","slot_machine","steam_locomotive","railway_car","bullettrain_side","bullettrain_front","train2","metro","light_rail","station","tram","monorail","mountain_railway","train","bus","oncoming_bus","trolleybus","minibus","ambulance","fire_engine","police_car","oncoming_police_car","taxi","oncoming_taxi","car","oncoming_automobile","blue_car","truck","articulated_lorry","tractor","bike","scooter","motor_scooter","busstop","motorway","railway_track","fuelpump","rotating_light","traffic_light","vertical_traffic_light","construction","octagonal_sign","anchor","boat","canoe","speedboat","passenger_ship","ferry","motor_boat","ship","airplane","small_airplane","airplane_departure","airplane_arriving","seat","helicopter","suspension_railway","mountain_cableway","aerial_tramway","satellite","rocket","flying_saucer","bellhop_bell","door","bed","couch_and_lamp","toilet","shower","bathtub","hourglass","hourglass_flowing_sand","watch","alarm_clock","stopwatch","timer_clock","mantelpiece_clock","clock12","clock1230","clock1","clock130","clock2","clock230","clock3","clock330","clock4","clock430","clock5","clock530","clock6","clock630","clock7","clock730","clock8","clock830","clock9","clock930","clock10","clock1030","clock11","clock1130","new_moon","waxing_crescent_moon","first_quarter_moon","moon","full_moon","waning_gibbous_moon","last_quarter_moon","waning_crescent_moon","crescent_moon","new_moon_with_face","first_quarter_moon_with_face","last_quarter_moon_with_face","thermometer","sunny","full_moon_with_face","sun_with_face","star","star2","stars","cloud","partly_sunny","thunder_cloud_and_rain","mostly_sunny","barely_sunny","partly_sunny_rain","rain_cloud","snow_cloud","lightning","tornado","fog","wind_blowing_face","cyclone","rainbow","closed_umbrella","umbrella","umbrella_with_rain_drops","umbrella_on_ground","zap","snowflake","snowman","snowman_without_snow","comet","fire","droplet","ocean"]},{id:"objects",name:"Objects",emojis:["mute","speaker","sound","loud_sound","loudspeaker","mega","postal_horn","bell","no_bell","musical_score","musical_note","notes","studio_microphone","level_slider","control_knobs","microphone","headphones","radio","saxophone","guitar","musical_keyboard","trumpet","violin","drum_with_drumsticks","iphone","calling","phone","telephone_receiver","pager","fax","battery","electric_plug","computer","desktop_computer","printer","keyboard","three_button_mouse","trackball","minidisc","floppy_disk","cd","dvd","movie_camera","film_frames","film_projector","clapper","tv","camera","camera_with_flash","video_camera","vhs","mag","mag_right","microscope","telescope","satellite_antenna","candle","bulb","flashlight","izakaya_lantern","notebook_with_decorative_cover","closed_book","book","green_book","blue_book","orange_book","books","notebook","ledger","page_with_curl","scroll","page_facing_up","newspaper","rolled_up_newspaper","bookmark_tabs","bookmark","label","moneybag","yen","dollar","euro","pound","money_with_wings","credit_card","chart","currency_exchange","heavy_dollar_sign","email","e-mail","incoming_envelope","envelope_with_arrow","outbox_tray","inbox_tray","package","mailbox","mailbox_closed","mailbox_with_mail","mailbox_with_no_mail","postbox","ballot_box_with_ballot","pencil2","black_nib","lower_left_fountain_pen","lower_left_ballpoint_pen","lower_left_paintbrush","lower_left_crayon","memo","briefcase","file_folder","open_file_folder","card_index_dividers","date","calendar","spiral_note_pad","spiral_calendar_pad","card_index","chart_with_upwards_trend","chart_with_downwards_trend","bar_chart","clipboard","pushpin","round_pushpin","paperclip","linked_paperclips","straight_ruler","triangular_ruler","scissors","card_file_box","file_cabinet","wastebasket","lock","unlock","lock_with_ink_pen","closed_lock_with_key","key","old_key","hammer","pick","hammer_and_pick","hammer_and_wrench","dagger_knife","crossed_swords","gun","bow_and_arrow","shield","wrench","nut_and_bolt","gear","compression","alembic","scales","link","chains","syringe","pill","smoking","coffin","funeral_urn","moyai","oil_drum","crystal_ball","shopping_trolley"]},{id:"symbols",name:"Symbols",emojis:["atm","put_litter_in_its_place","potable_water","wheelchair","mens","womens","restroom","baby_symbol","wc","passport_control","customs","baggage_claim","left_luggage","warning","children_crossing","no_entry","no_entry_sign","no_bicycles","no_smoking","do_not_litter","non-potable_water","no_pedestrians","no_mobile_phones","underage","radioactive_sign","biohazard_sign","arrow_up","arrow_upper_right","arrow_right","arrow_lower_right","arrow_down","arrow_lower_left","arrow_left","arrow_upper_left","arrow_up_down","left_right_arrow","leftwards_arrow_with_hook","arrow_right_hook","arrow_heading_up","arrow_heading_down","arrows_clockwise","arrows_counterclockwise","back","end","on","soon","top","place_of_worship","atom_symbol","om_symbol","star_of_david","wheel_of_dharma","yin_yang","latin_cross","orthodox_cross","star_and_crescent","peace_symbol","menorah_with_nine_branches","six_pointed_star","aries","taurus","gemini","cancer","leo","virgo","libra","scorpius","sagittarius","capricorn","aquarius","pisces","ophiuchus","twisted_rightwards_arrows","repeat","repeat_one","arrow_forward","fast_forward","black_right_pointing_double_triangle_with_vertical_bar","black_right_pointing_triangle_with_double_vertical_bar","arrow_backward","rewind","black_left_pointing_double_triangle_with_vertical_bar","arrow_up_small","arrow_double_up","arrow_down_small","arrow_double_down","double_vertical_bar","black_square_for_stop","black_circle_for_record","eject","cinema","low_brightness","high_brightness","signal_strength","vibration_mode","mobile_phone_off","female_sign","male_sign","medical_symbol","recycle","fleur_de_lis","trident","name_badge","beginner","o","white_check_mark","ballot_box_with_check","heavy_check_mark","heavy_multiplication_x","x","negative_squared_cross_mark","heavy_plus_sign","heavy_minus_sign","heavy_division_sign","curly_loop","loop","part_alternation_mark","eight_spoked_asterisk","eight_pointed_black_star","sparkle","bangbang","interrobang","question","grey_question","grey_exclamation","exclamation","wavy_dash","copyright","registered","tm","hash","keycap_star","zero","one","two","three","four","five","six","seven","eight","nine","keycap_ten","100","capital_abcd","abcd","1234","symbols","abc","a","ab","b","cl","cool","free","information_source","id","m","new","ng","o2","ok","parking","sos","up","vs","koko","sa","u6708","u6709","u6307","ideograph_advantage","u5272","u7121","u7981","accept","u7533","u5408","u7a7a","congratulations","secret","u55b6","u6e80","black_small_square","white_small_square","white_medium_square","black_medium_square","white_medium_small_square","black_medium_small_square","black_large_square","white_large_square","large_orange_diamond","large_blue_diamond","small_orange_diamond","small_blue_diamond","small_red_triangle","small_red_triangle_down","diamond_shape_with_a_dot_inside","radio_button","black_square_button","white_square_button","white_circle","black_circle","red_circle","large_blue_circle"]},{id:"flags",name:"Flags",emojis:["checkered_flag","cn","crossed_flags","de","es","flag-ac","flag-ad","flag-ae","flag-af","flag-ag","flag-ai","flag-al","flag-am","flag-ao","flag-aq","flag-ar","flag-as","flag-at","flag-au","flag-aw","flag-ax","flag-az","flag-ba","flag-bb","flag-bd","flag-be","flag-bf","flag-bg","flag-bh","flag-bi","flag-bj","flag-bl","flag-bm","flag-bn","flag-bo","flag-bq","flag-br","flag-bs","flag-bt","flag-bv","flag-bw","flag-by","flag-bz","flag-ca","flag-cc","flag-cd","flag-cf","flag-cg","flag-ch","flag-ci","flag-ck","flag-cl","flag-cm","flag-co","flag-cp","flag-cr","flag-cu","flag-cv","flag-cw","flag-cx","flag-cy","flag-cz","flag-dg","flag-dj","flag-dk","flag-dm","flag-do","flag-dz","flag-ea","flag-ec","flag-ee","flag-eg","flag-eh","flag-england","flag-er","flag-et","flag-eu","flag-fi","flag-fj","flag-fk","flag-fm","flag-fo","flag-ga","flag-gd","flag-ge","flag-gf","flag-gg","flag-gh","flag-gi","flag-gl","flag-gm","flag-gn","flag-gp","flag-gq","flag-gr","flag-gs","flag-gt","flag-gu","flag-gw","flag-gy","flag-hk","flag-hm","flag-hn","flag-hr","flag-ht","flag-hu","flag-ic","flag-id","flag-ie","flag-il","flag-im","flag-in","flag-io","flag-iq","flag-ir","flag-is","flag-je","flag-jm","flag-jo","flag-ke","flag-kg","flag-kh","flag-ki","flag-km","flag-kn","flag-kp","flag-kw","flag-ky","flag-kz","flag-la","flag-lb","flag-lc","flag-li","flag-lk","flag-lr","flag-ls","flag-lt","flag-lu","flag-lv","flag-ly","flag-ma","flag-mc","flag-md","flag-me","flag-mf","flag-mg","flag-mh","flag-mk","flag-ml","flag-mm","flag-mn","flag-mo","flag-mp","flag-mq","flag-mr","flag-ms","flag-mt","flag-mu","flag-mv","flag-mw","flag-mx","flag-my","flag-mz","flag-na","flag-nc","flag-ne","flag-nf","flag-ng","flag-ni","flag-nl","flag-no","flag-np","flag-nr","flag-nu","flag-nz","flag-om","flag-pa","flag-pe","flag-pf","flag-pg","flag-ph","flag-pk","flag-pl","flag-pm","flag-pn","flag-pr","flag-ps","flag-pt","flag-pw","flag-py","flag-qa","flag-re","flag-ro","flag-rs","flag-rw","flag-sa","flag-sb","flag-sc","flag-scotland","flag-sd","flag-se","flag-sg","flag-sh","flag-si","flag-sj","flag-sk","flag-sl","flag-sm","flag-sn","flag-so","flag-sr","flag-ss","flag-st","flag-sv","flag-sx","flag-sy","flag-sz","flag-ta","flag-tc","flag-td","flag-tf","flag-tg","flag-th","flag-tj","flag-tk","flag-tl","flag-tm","flag-tn","flag-to","flag-tr","flag-tt","flag-tv","flag-tw","flag-tz","flag-ua","flag-ug","flag-um","flag-uy","flag-uz","flag-va","flag-vc","flag-ve","flag-vg","flag-vi","flag-vn","flag-vu","flag-wales","flag-wf","flag-ws","flag-xk","flag-ye","flag-yt","flag-za","flag-zm","flag-zw","fr","gb","it","jp","kr","rainbow-flag","ru","triangular_flag_on_post","us","waving_black_flag","waving_white_flag"]}],emojis:{100:{a:"Hundred Points Symbol",b:"1F4AF",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["score","perfect","numbers","century","exam","quiz","test","pass","hundred"],k:[25,26]},1234:{a:"Input Symbol for Numbers",b:"1F522",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["numbers","blue-square"],k:[27,36]},earth_africa:{a:"Earth Globe Europe-Africa",b:"1F30D",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["globe","world","international"],k:[6,5]},grapes:{a:"Grapes",b:"1F347",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["fruit","food","wine"],k:[7,9]},jack_o_lantern:{a:"Jack-O-Lantern",b:"1F383",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["halloween","light","pumpkin","creepy","fall"],k:[8,17]},checkered_flag:{a:"Chequered Flag",b:"1F3C1",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["contest","finishline","race","gokart"],k:[9,27]},atm:{a:"Automated Teller Machine",b:"1F3E7",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["money","sales","cash","blue-square","payment","bank"],k:[12,4]},monkey_face:{a:"Monkey Face",b:"1F435",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["animal","nature","circus"],k:[13,31],l:[":o)"]},mute:{a:"Speaker with Cancellation Stroke",b:"1F507",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["sound","volume","silence","quiet"],k:[27,9]},grinning:{a:"Grinning Face",b:"1F600",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["face","smile","happy","joy",":D","grin"],k:[30,24],m:":D"},earth_americas:{a:"Earth Globe Americas",b:"1F30E",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["globe","world","USA","international"],k:[6,6]},melon:{a:"Melon",b:"1F348",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["fruit","nature","food"],k:[7,10]},christmas_tree:{a:"Christmas Tree",b:"1F384",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["festival","vacation","december","xmas","celebration"],k:[8,18]},monkey:{a:"Monkey",b:"1F412",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["animal","nature","banana","circus"],k:[12,48]},speaker:{a:"Speaker",b:"1F508",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["sound","volume","silence","broadcast"],k:[27,10]},grin:{a:"Grinning Face with Smiling Eyes",b:"1F601",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["face","happy","smile","joy","kawaii"],k:[30,25]},triangular_flag_on_post:{a:"Triangular Flag on Post",b:"1F6A9",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["mark","milestone","place"],k:[35,14]},put_litter_in_its_place:{a:"Put Litter in Its Place Symbol",b:"1F6AE",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["blue-square","sign","human","info"],k:[35,19]},earth_asia:{a:"Earth Globe Asia-Australia",b:"1F30F",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["globe","world","east","international"],k:[6,7]},watermelon:{a:"Watermelon",b:"1F349",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["fruit","food","picnic","summer"],k:[7,11]},fireworks:{a:"Fireworks",b:"1F386",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["photo","festival","carnival","congratulations"],k:[8,25]},crossed_flags:{a:"Crossed Flags",b:"1F38C",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["japanese","nation","country","border"],k:[8,31]},sound:{a:"Speaker with One Sound Wave",b:"1F509",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["volume","speaker","broadcast"],k:[27,11]},joy:{a:"Face with Tears of Joy",b:"1F602",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["face","cry","tears","weep","happy","happytears","haha"],k:[30,26]},potable_water:{a:"Potable Water Symbol",b:"1F6B0",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["blue-square","liquid","restroom","cleaning","faucet"],k:[35,21]},gorilla:{a:"Gorilla",b:"1F98D",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["animal","nature","circus"],k:[42,37],o:9},globe_with_meridians:{a:"Globe with Meridians",b:"1F310",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["earth","international","world","internet","interweb","i18n"],k:[6,8]},tangerine:{a:"Tangerine",b:"1F34A",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["food","fruit","nature","orange"],k:[7,12]},sparkler:{a:"Firework Sparkler",b:"1F387",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["stars","night","shine"],k:[8,26]},waving_black_flag:{a:"Waving Black Flag",b:"1F3F4",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[12,19],o:7},dog:{a:"Dog Face",b:"1F436",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["animal","friend","nature","woof","puppy","pet","faithful"],k:[13,32]},loud_sound:{a:"Speaker with Three Sound Waves",b:"1F50A",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["volume","noise","noisy","speaker","broadcast"],k:[27,12]},rolling_on_the_floor_laughing:{a:"Rolling on the Floor Laughing",b:"1F923",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[38,26],o:9},wheelchair:{a:"Wheelchair Symbol",b:"267F",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["blue-square","disabled","a11y","accessibility"],k:[48,10],o:4},lemon:{a:"Lemon",b:"1F34B",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["fruit","nature"],k:[7,13]},waving_white_flag:{a:"Waving White Flag",b:"1F3F3-FE0F",c:"1F3F3",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[12,15],o:7},dog2:{a:"Dog",b:"1F415",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["animal","nature","friend","doge","pet","faithful"],k:[12,51]},loudspeaker:{a:"Public Address Loudspeaker",b:"1F4E2",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["volume","sound"],k:[26,25]},world_map:{a:"World Map",b:"1F5FA-FE0F",c:"1F5FA",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["location","direction"],k:[30,18],o:7},smiley:{a:"Smiling Face with Open Mouth",b:"1F603",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["face","happy","joy","haha",":D",":)","smile","funny"],k:[30,27],l:["=)","=-)"],m:":)"},mens:{a:"Mens Symbol",b:"1F6B9",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["toilet","restroom","wc","blue-square","gender","male"],k:[36,29]},sparkles:{a:"Sparkles",b:"2728",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["stars","shine","shiny","cool","awesome","good","magic"],k:[49,48]},banana:{a:"Banana",b:"1F34C",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["fruit","food","monkey"],k:[7,14]},balloon:{a:"Balloon",b:"1F388",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["party","celebration","birthday","circus"],k:[8,27]},"rainbow-flag":{a:"Rainbow Flag",b:"1F3F3-FE0F-200D-1F308",c:"1F3F3-200D-1F308",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[12,14],o:7},poodle:{a:"Poodle",b:"1F429",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["dog","animal","101","nature","pet"],k:[13,19]},mega:{a:"Cheering Megaphone",b:"1F4E3",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["sound","speaker","volume"],k:[26,26]},japan:{a:"Silhouette of Japan",b:"1F5FE",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["nation","country","japanese","asia"],k:[30,22]},smile:{a:"Smiling Face with Open Mouth and Smiling Eyes",b:"1F604",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["face","happy","joy","funny","haha","laugh","like",":D",":)"],k:[30,28],l:["C:","c:",":D",":-D"],m:":)"},womens:{a:"Womens Symbol",b:"1F6BA",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["purple-square","woman","female","toilet","loo","restroom","gender"],k:[36,30]},"flag-ac":{a:"Ascension Island Flag",b:"1F1E6-1F1E8",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[0,31]},pineapple:{a:"Pineapple",b:"1F34D",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["fruit","nature","food"],k:[7,15]},tada:{a:"Party Popper",b:"1F389",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["party","congratulations","birthday","magic","circus","celebration"],k:[8,28]},snow_capped_mountain:{a:"Snow Capped Mountain",b:"1F3D4-FE0F",c:"1F3D4",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[11,37],o:7},wolf:{a:"Wolf Face",b:"1F43A",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["animal","nature","wild"],k:[13,36]},postal_horn:{a:"Postal Horn",b:"1F4EF",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["instrument","music"],k:[26,38]},sweat_smile:{a:"Smiling Face with Open Mouth and Cold Sweat",b:"1F605",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["face","hot","happy","laugh","sweat","smile","relief"],k:[30,29]},restroom:{a:"Restroom",b:"1F6BB",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["blue-square","toilet","refresh","wc","gender"],k:[36,31]},"flag-ad":{a:"Andorra Flag",b:"1F1E6-1F1E9",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[0,32]},apple:{a:"Red Apple",b:"1F34E",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["fruit","mac","school"],k:[7,16]},confetti_ball:{a:"Confetti Ball",b:"1F38A",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["festival","party","birthday","circus"],k:[8,29]},bell:{a:"Bell",b:"1F514",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["sound","notification","christmas","xmas","chime"],k:[27,22]},laughing:{a:"Smiling Face with Open Mouth and Tightly-Closed Eyes",b:"1F606",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["happy","joy","lol","satisfied","haha","face","glad","XD","laugh"],k:[30,30],l:[":>",":->"],n:["satisfied"]},baby_symbol:{a:"Baby Symbol",b:"1F6BC",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["orange-square","child"],k:[36,32]},fox_face:{a:"Fox Face",b:"1F98A",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["animal","nature","face"],k:[42,34],o:9},mountain:{a:"Mountain",b:"26F0-FE0F",c:"26F0",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["photo","nature","environment"],k:[48,38],o:5},"flag-ae":{a:"United Arab Emirates Flag",b:"1F1E6-1F1EA",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[0,33]},volcano:{a:"Volcano",b:"1F30B",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["photo","nature","disaster"],k:[6,3]},green_apple:{a:"Green Apple",b:"1F34F",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["fruit","nature"],k:[7,17]},tanabata_tree:{a:"Tanabata Tree",b:"1F38B",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["plant","nature","branch","summer"],k:[8,30]},cat:{a:"Cat Face",b:"1F431",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["animal","meow","nature","pet","kitten"],k:[13,27]},no_bell:{a:"Bell with Cancellation Stroke",b:"1F515",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["sound","volume","mute","quiet","silent"],k:[27,23]},wink:{a:"Winking Face",b:"1F609",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["face","happy","mischievous","secret",";)","smile","eye"],k:[30,33],l:[";)",";-)"],m:";)"},wc:{a:"Water Closet",b:"1F6BE",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["toilet","restroom","blue-square"],k:[36,34]},"flag-af":{a:"Afghanistan Flag",b:"1F1E6-1F1EB",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[0,34]},pear:{a:"Pear",b:"1F350",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["fruit","nature","food"],k:[7,18]},bamboo:{a:"Pine Decoration",b:"1F38D",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["plant","nature","vegetable","panda","pine_decoration"],k:[8,32]},musical_score:{a:"Musical Score",b:"1F3BC",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["treble","clef","compose"],k:[9,22]},cat2:{a:"Cat",b:"1F408",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["animal","meow","pet","cats"],k:[12,38]},mount_fuji:{a:"Mount Fuji",b:"1F5FB",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["photo","mountain","nature","japanese"],k:[30,19]},blush:{a:"Smiling Face with Smiling Eyes",b:"1F60A",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["face","smile","happy","flushed","crush","embarrassed","shy","joy"],k:[30,34],m:":)"},passport_control:{a:"Passport Control",b:"1F6C2",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["custom","blue-square"],k:[36,43]},"flag-ag":{a:"Antigua & Barbuda Flag",b:"1F1E6-1F1EC",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[0,35]},peach:{a:"Peach",b:"1F351",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["fruit","nature","food"],k:[7,19]},dolls:{a:"Japanese Dolls",b:"1F38E",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["japanese","toy","kimono"],k:[8,33]},musical_note:{a:"Musical Note",b:"1F3B5",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["score","tone","sound"],k:[9,15]},camping:{a:"Camping",b:"1F3D5-FE0F",c:"1F3D5",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["photo","outdoors","tent"],k:[11,38],o:7},yum:{a:"Face Savouring Delicious Food",b:"1F60B",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["happy","joy","tongue","smile","face","silly","yummy","nom","delicious","savouring"],k:[30,35]},customs:{a:"Customs",b:"1F6C3",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["passport","border","blue-square"],k:[36,44]},lion_face:{a:"Lion Face",b:"1F981",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[42,25],o:8},"flag-ai":{a:"Anguilla Flag",b:"1F1E6-1F1EE",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[0,36]},cherries:{a:"Cherries",b:"1F352",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["food","fruit"],k:[7,20]},flags:{a:"Carp Streamer",b:"1F38F",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["fish","japanese","koinobori","carp","banner"],k:[8,34]},notes:{a:"Multiple Musical Notes",b:"1F3B6",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["music","score"],k:[9,16]},beach_with_umbrella:{a:"Beach with Umbrella",b:"1F3D6-FE0F",c:"1F3D6",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[11,39],o:7},tiger:{a:"Tiger Face",b:"1F42F",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["animal","cat","danger","wild","nature","roar"],k:[13,25]},sunglasses:{a:"Smiling Face with Sunglasses",b:"1F60E",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["face","cool","smile","summer","beach","sunglass"],k:[30,38],l:["8)"]},baggage_claim:{a:"Baggage Claim",b:"1F6C4",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["blue-square","airport","transport"],k:[36,45]},"flag-al":{a:"Albania Flag",b:"1F1E6-1F1F1",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[0,37]},strawberry:{a:"Strawberry",b:"1F353",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["fruit","food","nature"],k:[7,21]},wind_chime:{a:"Wind Chime",b:"1F390",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["nature","ding","spring","bell"],k:[8,35]},studio_microphone:{a:"Studio Microphone",b:"1F399-FE0F",c:"1F399",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["sing","recording","artist","talkshow"],k:[8,41],o:7},desert:{a:"Desert",b:"1F3DC-FE0F",c:"1F3DC",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["photo","warm","saharah"],k:[11,45],o:7},tiger2:{a:"Tiger",b:"1F405",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["animal","nature","roar"],k:[12,35]},heart_eyes:{a:"Smiling Face with Heart-Shaped Eyes",b:"1F60D",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["face","love","like","affection","valentines","infatuation","crush","heart"],k:[30,37]},left_luggage:{a:"Left Luggage",b:"1F6C5",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["blue-square","travel"],k:[36,46]},"flag-am":{a:"Armenia Flag",b:"1F1E6-1F1F2",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[0,38]},rice_scene:{a:"Moon Viewing Ceremony",b:"1F391",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["photo","japan","asia","tsukimi"],k:[8,36]},level_slider:{a:"Level Slider",b:"1F39A-FE0F",c:"1F39A",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["scale"],k:[8,42],o:7},desert_island:{a:"Desert Island",b:"1F3DD-FE0F",c:"1F3DD",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["photo","tropical","mojito"],k:[11,46],o:7},leopard:{a:"Leopard",b:"1F406",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["animal","nature"],k:[12,36]},kissing_heart:{a:"Face Throwing a Kiss",b:"1F618",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["face","love","like","affection","valentines","infatuation","kiss"],k:[30,48],l:[":*",":-*"]},kiwifruit:{a:"Kiwifruit",b:"1F95D",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[42,9],o:9},warning:{a:"Warning Sign",b:"26A0-FE0F",c:"26A0",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["exclamation","wip","alert","error","problem","issue"],k:[48,20],o:4},"flag-ao":{a:"Angola Flag",b:"1F1E6-1F1F4",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[0,39]},tomato:{a:"Tomato",b:"1F345",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["fruit","vegetable","nature","food"],k:[7,7]},ribbon:{a:"Ribbon",b:"1F380",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["decoration","pink","girl","bowtie"],k:[8,14]},control_knobs:{a:"Control Knobs",b:"1F39B-FE0F",c:"1F39B",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["dial"],k:[8,43],o:7},national_park:{a:"National Park",b:"1F3DE-FE0F",c:"1F3DE",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["photo","environment","nature"],k:[11,47],o:7},horse:{a:"Horse Face",b:"1F434",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["animal","brown","nature"],k:[13,30]},kissing:{a:"Kissing Face",b:"1F617",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["love","like","face","3","valentines","infatuation","kiss"],k:[30,47]},children_crossing:{a:"Children Crossing",b:"1F6B8",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["school","warning","danger","sign","driving","yellow-diamond"],k:[36,28]},"flag-aq":{a:"Antarctica Flag",b:"1F1E6-1F1F6",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[0,40]},gift:{a:"Wrapped Present",b:"1F381",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["present","birthday","christmas","xmas"],k:[8,15]},microphone:{a:"Microphone",b:"1F3A4",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["sound","music","PA","sing","talkshow"],k:[8,50]},stadium:{a:"Stadium",b:"1F3DF-FE0F",c:"1F3DF",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["photo","place","sports","concert","venue"],k:[11,48],o:7},racehorse:{a:"Horse",b:"1F40E",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["animal","gamble","luck"],k:[12,44]},kissing_smiling_eyes:{a:"Kissing Face with Smiling Eyes",b:"1F619",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["face","affection","valentines","infatuation","kiss"],k:[30,49]},coconut:{a:"Coconut",b:"1F965",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["fruit","nature","food","palm"],k:[42,17],o:10},no_entry:{a:"No Entry",b:"26D4",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["limit","security","privacy","bad","denied","stop","circle"],k:[48,35],o:5},"flag-ar":{a:"Argentina Flag",b:"1F1E6-1F1F7",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[0,41]},reminder_ribbon:{a:"Reminder Ribbon",b:"1F397-FE0F",c:"1F397",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["sports","cause","support","awareness"],k:[8,40],o:7},headphones:{a:"Headphone",b:"1F3A7",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["music","score","gadgets"],k:[9,1]},classical_building:{a:"Classical Building",b:"1F3DB-FE0F",c:"1F3DB",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["art","culture","history"],k:[11,44],o:7},kissing_closed_eyes:{a:"Kissing Face with Closed Eyes",b:"1F61A",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["face","love","like","affection","valentines","infatuation","kiss"],k:[30,50]},no_entry_sign:{a:"No Entry Sign",b:"1F6AB",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["forbid","stop","limit","denied","disallow","circle"],k:[35,16]},avocado:{a:"Avocado",b:"1F951",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["fruit","food"],k:[41,49],o:9},unicorn_face:{a:"Unicorn Face",b:"1F984",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[42,28],o:8},"flag-as":{a:"American Samoa Flag",b:"1F1E6-1F1F8",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[0,42]},eggplant:{a:"Aubergine",b:"1F346",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["vegetable","nature","food","aubergine"],k:[7,8]},admission_tickets:{a:"Admission Tickets",b:"1F39F-FE0F",c:"1F39F",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[8,45],o:7},building_construction:{a:"Building Construction",b:"1F3D7-FE0F",c:"1F3D7",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["wip","working","progress"],k:[11,40],o:7},radio:{a:"Radio",b:"1F4FB",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["communication","music","podcast","program"],k:[26,50]},no_bicycles:{a:"No Bicycles",b:"1F6B3",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["cyclist","prohibited","circle"],k:[35,24]},zebra_face:{a:"Zebra Face",b:"1F993",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[42,43],o:10},relaxed:{a:"White Smiling Face",b:"263A-FE0F",c:"263A",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["face","blush","massage","happiness"],k:[47,41],o:1},"flag-at":{a:"Austria Flag",b:"1F1E6-1F1F9",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[0,43]},ticket:{a:"Ticket",b:"1F3AB",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["event","concert","pass"],k:[9,5]},saxophone:{a:"Saxophone",b:"1F3B7",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["music","instrument","jazz","blues"],k:[9,17]},house_buildings:{a:"House Buildings",b:"1F3D8-FE0F",c:"1F3D8",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[11,41],o:7},slightly_smiling_face:{a:"Slightly Smiling Face",b:"1F642",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["face","smile"],k:[31,38],l:[":)","(:",":-)"],o:7},no_smoking:{a:"No Smoking Symbol",b:"1F6AD",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["cigarette","blue-square","smell","smoke"],k:[35,18]},potato:{a:"Potato",b:"1F954",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["food","tuber","vegatable","starch"],k:[42,0],o:9},deer:{a:"Deer",b:"1F98C",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["animal","nature","horns","venison"],k:[42,36],o:9},"flag-au":{a:"Australia Flag",b:"1F1E6-1F1FA",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[0,44]},medal:{a:"Medal",b:"1F396-FE0F",c:"1F396",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[8,39],o:7},guitar:{a:"Guitar",b:"1F3B8",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["music","instrument"],k:[9,18]},cityscape:{a:"Cityscape",b:"1F3D9-FE0F",c:"1F3D9",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["photo","night life","urban"],k:[11,42],o:7},cow:{a:"Cow Face",b:"1F42E",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["beef","ox","animal","nature","moo","milk"],k:[13,24]},do_not_litter:{a:"Do Not Litter Symbol",b:"1F6AF",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["trash","bin","garbage","circle"],k:[35,20]},hugging_face:{a:"Hugging Face",b:"1F917",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[37,31],o:8},carrot:{a:"Carrot",b:"1F955",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["vegetable","food","orange"],k:[42,1],o:9},"flag-aw":{a:"Aruba Flag",b:"1F1E6-1F1FC",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[0,45]},corn:{a:"Ear of Maize",b:"1F33D",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["food","vegetable","plant"],k:[6,51]},musical_keyboard:{a:"Musical Keyboard",b:"1F3B9",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["piano","instrument","compose"],k:[9,19]},trophy:{a:"Trophy",b:"1F3C6",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["win","award","contest","place","ftw","ceremony"],k:[10,19]},derelict_house_building:{a:"Derelict House Building",b:"1F3DA-FE0F",c:"1F3DA",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[11,43],o:7},ox:{a:"Ox",b:"1F402",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["animal","cow","beef"],k:[12,32]},"non-potable_water":{a:"Non-Potable Water Symbol",b:"1F6B1",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["drink","faucet","tap","circle"],k:[35,22]},"star-struck":{a:"Grinning Face with Star Eyes",b:"1F929",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[38,49],n:["grinning_face_with_star_eyes"],o:10},"flag-ax":{a:"Åland Islands Flag",b:"1F1E6-1F1FD",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[0,46]},hot_pepper:{a:"Hot Pepper",b:"1F336-FE0F",c:"1F336",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["food","spicy","chilli","chili"],k:[6,44],o:7},trumpet:{a:"Trumpet",b:"1F3BA",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["music","brass"],k:[9,20]},sports_medal:{a:"Sports Medal",b:"1F3C5",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[10,18],o:7},house:{a:"House Building",b:"1F3E0",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["building","home"],k:[11,49]},water_buffalo:{a:"Water Buffalo",b:"1F403",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["animal","nature","ox","cow"],k:[12,33]},no_pedestrians:{a:"No Pedestrians",b:"1F6B7",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["rules","crossing","walking","circle"],k:[36,27]},thinking_face:{a:"Thinking Face",b:"1F914",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[37,28],o:8},"flag-az":{a:"Azerbaijan Flag",b:"1F1E6-1F1FF",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[0,47]},violin:{a:"Violin",b:"1F3BB",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["music","instrument","orchestra","symphony"],k:[9,21]},house_with_garden:{a:"House with Garden",b:"1F3E1",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["home","plant","nature"],k:[11,50]},cow2:{a:"Cow",b:"1F404",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["beef","ox","animal","nature","moo","milk"],k:[12,34]},no_mobile_phones:{a:"No Mobile Phones",b:"1F4F5",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["iphone","mute","circle"],k:[26,44]},face_with_raised_eyebrow:{a:"Face with One Eyebrow Raised",b:"1F928",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[38,48],n:["face_with_one_eyebrow_raised"],o:10},first_place_medal:{a:"First Place Medal",b:"1F947",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[41,42],o:9},cucumber:{a:"Cucumber",b:"1F952",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["fruit","food","pickle"],k:[41,50],o:9},"flag-ba":{a:"Bosnia & Herzegovina Flag",b:"1F1E7-1F1E6",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[0,48]},office:{a:"Office Building",b:"1F3E2",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["building","bureau","work"],k:[11,51]},pig:{a:"Pig Face",b:"1F437",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["animal","oink","nature"],k:[13,33]},underage:{a:"No One Under Eighteen Symbol",b:"1F51E",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["18","drink","pub","night","minor","circle"],k:[27,32]},neutral_face:{a:"Neutral Face",b:"1F610",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["indifference","meh",":|","neutral"],k:[30,40],l:[":|",":-|"]},drum_with_drumsticks:{a:"Drum with Drumsticks",b:"1F941",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[41,37],o:9},second_place_medal:{a:"Second Place Medal",b:"1F948",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[41,43],o:9},broccoli:{a:"Broccoli",b:"1F966",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["fruit","food","vegetable"],k:[42,18],o:10},"flag-bb":{a:"Barbados Flag",b:"1F1E7-1F1E7",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[0,49]},mushroom:{a:"Mushroom",b:"1F344",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["plant","vegetable"],k:[7,6]},post_office:{a:"Japanese Post Office",b:"1F3E3",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["building","envelope","communication"],k:[12,0]},pig2:{a:"Pig",b:"1F416",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["animal","nature"],k:[13,0]},iphone:{a:"Mobile Phone",b:"1F4F1",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["technology","apple","gadgets","dial"],k:[26,40]},expressionless:{a:"Expressionless Face",b:"1F611",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["face","indifferent","-_-","meh","deadpan"],k:[30,41]},third_place_medal:{a:"Third Place Medal",b:"1F949",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[41,44],o:9},radioactive_sign:{a:"Radioactive Sign",b:"2622-FE0F",c:"2622",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[47,33],o:1},"flag-bd":{a:"Bangladesh Flag",b:"1F1E7-1F1E9",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[0,50]},european_post_office:{a:"European Post Office",b:"1F3E4",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["building","email"],k:[12,1]},boar:{a:"Boar",b:"1F417",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["animal","nature"],k:[13,1]},calling:{a:"Mobile Phone with Rightwards Arrow at Left",b:"1F4F2",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["iphone","incoming"],k:[26,41]},no_mouth:{a:"Face Without Mouth",b:"1F636",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["face","hellokitty"],k:[31,26]},peanuts:{a:"Peanuts",b:"1F95C",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["food","nut"],k:[42,8],o:9},biohazard_sign:{a:"Biohazard Sign",b:"2623-FE0F",c:"2623",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[47,34],o:1},soccer:{a:"Soccer Ball",b:"26BD",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["sports","football"],k:[48,26],o:5},"flag-be":{a:"Belgium Flag",b:"1F1E7-1F1EA",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[0,51]},chestnut:{a:"Chestnut",b:"1F330",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["food","squirrel"],k:[6,38]},hospital:{a:"Hospital",b:"1F3E5",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["building","health","surgery","doctor"],k:[12,2]},pig_nose:{a:"Pig Nose",b:"1F43D",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["animal","oink"],k:[13,39]},face_with_rolling_eyes:{a:"Face with Rolling Eyes",b:"1F644",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[31,40],o:8},phone:{a:"Black Telephone",b:"260E-FE0F",c:"260E",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["technology","communication","dial","telephone"],k:[47,21],n:["telephone"],o:1},baseball:{a:"Baseball",b:"26BE",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["sports","balls"],k:[48,27],o:5},arrow_up:{a:"Upwards Black Arrow",b:"2B06-FE0F",c:"2B06",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["blue-square","continue","top","direction"],k:[50,18],o:4},"flag-bf":{a:"Burkina Faso Flag",b:"1F1E7-1F1EB",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[1,0]},bread:{a:"Bread",b:"1F35E",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["food","wheat","breakfast","toast"],k:[7,32]},basketball:{a:"Basketball and Hoop",b:"1F3C0",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["sports","balls","NBA"],k:[9,26]},bank:{a:"Bank",b:"1F3E6",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["building","money","sales","cash","business","enterprise"],k:[12,3]},ram:{a:"Ram",b:"1F40F",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["animal","sheep","nature"],k:[12,45]},telephone_receiver:{a:"Telephone Receiver",b:"1F4DE",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["technology","communication","dial"],k:[26,21]},smirk:{a:"Smirking Face",b:"1F60F",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["face","smile","mean","prank","smug","sarcasm"],k:[30,39]},arrow_upper_right:{a:"North East Arrow",b:"2197-FE0F",c:"2197",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["blue-square","point","direction","diagonal","northeast"],k:[46,36],o:1},"flag-bg":{a:"Bulgaria Flag",b:"1F1E7-1F1EC",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[1,1]},volleyball:{a:"Volleyball",b:"1F3D0",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["sports","balls"],k:[11,33],o:8},hotel:{a:"Hotel",b:"1F3E8",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["building","accomodation","checkin"],k:[12,5]},sheep:{a:"Sheep",b:"1F411",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["animal","nature","wool","shipit"],k:[12,47]},pager:{a:"Pager",b:"1F4DF",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["bbcall","oldschool","90s"],k:[26,22]},persevere:{a:"Persevering Face",b:"1F623",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["face","sick","no","upset","oops"],k:[31,7]},croissant:{a:"Croissant",b:"1F950",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["food","bread","french"],k:[41,48],o:9},arrow_right:{a:"Black Rightwards Arrow",b:"27A1-FE0F",c:"27A1",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["blue-square","next"],k:[50,12],o:1},"flag-bh":{a:"Bahrain Flag",b:"1F1E7-1F1ED",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[1,2]},football:{a:"American Football",b:"1F3C8",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["sports","balls","NFL"],k:[10,26]},love_hotel:{a:"Love Hotel",b:"1F3E9",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["like","affection","dating"],k:[12,6]},goat:{a:"Goat",b:"1F410",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["animal","nature"],k:[12,46]},fax:{a:"Fax Machine",b:"1F4E0",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["communication","technology"],k:[26,23]},disappointed_relieved:{a:"Disappointed but Relieved Face",b:"1F625",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["face","phew","sweat","nervous"],k:[31,9]},baguette_bread:{a:"Baguette Bread",b:"1F956",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["food","bread","french"],k:[42,2],o:9},arrow_lower_right:{a:"South East Arrow",b:"2198-FE0F",c:"2198",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["blue-square","direction","diagonal","southeast"],k:[46,37],o:1},"flag-bi":{a:"Burundi Flag",b:"1F1E7-1F1EE",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[1,3]},rugby_football:{a:"Rugby Football",b:"1F3C9",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["sports","team"],k:[10,27]},convenience_store:{a:"Convenience Store",b:"1F3EA",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["building","shopping","groceries"],k:[12,7]},dromedary_camel:{a:"Dromedary Camel",b:"1F42A",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["animal","hot","desert","hump"],k:[13,20]},battery:{a:"Battery",b:"1F50B",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["power","energy","sustain"],k:[27,13]},open_mouth:{a:"Face with Open Mouth",b:"1F62E",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["face","surprise","impressed","wow","whoa",":O"],k:[31,18],l:[":o",":-o",":O",":-O"]},pretzel:{a:"Pretzel",b:"1F968",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["food","bread","twisted"],k:[42,20],o:10},arrow_down:{a:"Downwards Black Arrow",b:"2B07-FE0F",c:"2B07",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["blue-square","direction","bottom"],k:[50,19],o:4},"flag-bj":{a:"Benin Flag",b:"1F1E7-1F1EF",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[1,4]},tennis:{a:"Tennis Racquet and Ball",b:"1F3BE",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["sports","balls","green"],k:[9,24]},school:{a:"School",b:"1F3EB",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["building","student","education","learn","teach"],k:[12,8]},camel:{a:"Bactrian Camel",b:"1F42B",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["animal","nature","hot","desert","hump"],k:[13,21]},electric_plug:{a:"Electric Plug",b:"1F50C",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["charger","power"],k:[27,14]},zipper_mouth_face:{a:"Zipper-Mouth Face",b:"1F910",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["face","sealed","zipper","secret"],k:[37,24],o:8},pancakes:{a:"Pancakes",b:"1F95E",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["food","breakfast","flapjacks","hotcakes"],k:[42,10],o:9},arrow_lower_left:{a:"South West Arrow",b:"2199-FE0F",c:"2199",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["blue-square","direction","diagonal","southwest"],k:[46,38],o:1},"flag-bl":{a:"St. Barthélemy Flag",b:"1F1E7-1F1F1",d:!0,e:!1,f:!0,g:!0,h:!0,i:!0,k:[1,5]},"8ball":{a:"Billiards",b:"1F3B1",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["pool","hobby","game","luck","magic"],k:[9,11]},department_store:{a:"Department Store",b:"1F3EC",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["building","shopping","mall"],k:[12,9]},computer:{a:"Personal Computer",b:"1F4BB",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["technology","laptop","screen","display","monitor"],k:[25,38]},hushed:{a:"Hushed Face",b:"1F62F",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["face","woo","shh"],k:[31,19]},giraffe_face:{a:"Giraffe Face",b:"1F992",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[42,42],o:10},cheese_wedge:{a:"Cheese Wedge",b:"1F9C0",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[42,48],o:8},arrow_left:{a:"Leftwards Black Arrow",b:"2B05-FE0F",c:"2B05",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["blue-square","previous","back"],k:[50,17],o:4},"flag-bm":{a:"Bermuda Flag",b:"1F1E7-1F1F2",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[1,6]},meat_on_bone:{a:"Meat on Bone",b:"1F356",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["good","food","drumstick"],k:[7,24]},bowling:{a:"Bowling",b:"1F3B3",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["sports","fun","play"],k:[9,13]},factory:{a:"Factory",b:"1F3ED",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["building","industry","pollution","smoke"],k:[12,10]},elephant:{a:"Elephant",b:"1F418",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["animal","nature","nose","th","circus"],k:[13,2]},desktop_computer:{a:"Desktop Computer",b:"1F5A5-FE0F",c:"1F5A5",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["technology","computing","screen"],k:[29,51],o:7},sleepy:{a:"Sleepy Face",b:"1F62A",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["face","tired","rest","nap"],k:[31,14]},arrow_upper_left:{a:"North West Arrow",b:"2196-FE0F",c:"2196",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["blue-square","point","direction","diagonal","northwest"],k:[46,35],o:1},"flag-bn":{a:"Brunei Flag",b:"1F1E7-1F1F3",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[1,7]},poultry_leg:{a:"Poultry Leg",b:"1F357",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["food","meat","drumstick","bird","chicken","turkey"],k:[7,25]},cricket_bat_and_ball:{a:"Cricket Bat and Ball",b:"1F3CF",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[11,32],o:8},japanese_castle:{a:"Japanese Castle",b:"1F3EF",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["photo","building"],k:[12,12]},printer:{a:"Printer",b:"1F5A8-FE0F",c:"1F5A8",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["paper","ink"],k:[30,0],o:7},tired_face:{a:"Tired Face",b:"1F62B",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["sick","whine","upset","frustrated"],k:[31,15]},rhinoceros:{a:"Rhinoceros",b:"1F98F",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["animal","nature","horn"],k:[42,39],o:9},arrow_up_down:{a:"Up Down Arrow",b:"2195-FE0F",c:"2195",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["blue-square","direction","way","vertical"],k:[46,34],o:1},"flag-bo":{a:"Bolivia Flag",b:"1F1E7-1F1F4",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[1,8]},field_hockey_stick_and_ball:{a:"Field Hockey Stick and Ball",b:"1F3D1",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[11,34],o:8},european_castle:{a:"European Castle",b:"1F3F0",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["building","royalty","history"],k:[12,13]},mouse:{a:"Mouse Face",b:"1F42D",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["animal","nature","cheese_wedge","rodent"],k:[13,23]},sleeping:{a:"Sleeping Face",b:"1F634",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["face","tired","sleepy","night","zzz"],k:[31,24]},cut_of_meat:{a:"Cut of Meat",b:"1F969",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[42,21],o:10},left_right_arrow:{a:"Left Right Arrow",b:"2194-FE0F",c:"2194",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["shape","direction","horizontal","sideways"],k:[46,33],o:1},keyboard:{a:"Keyboard",b:"2328-FE0F",c:"2328",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["technology","computer","type","input","text"],k:[46,43],o:1},"flag-bq":{a:"Caribbean Netherlands Flag",b:"1F1E7-1F1F6",d:!0,e:!1,f:!0,g:!0,h:!0,i:!0,k:[1,9]},ice_hockey_stick_and_puck:{a:"Ice Hockey Stick and Puck",b:"1F3D2",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[11,35],o:8},mouse2:{a:"Mouse",b:"1F401",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["animal","nature","rodent"],k:[12,31]},wedding:{a:"Wedding",b:"1F492",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["love","like","affection","couple","marriage","bride","groom"],k:[24,44]},three_button_mouse:{a:"Three Button Mouse",b:"1F5B1-FE0F",c:"1F5B1",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[30,1],o:7},relieved:{a:"Relieved Face",b:"1F60C",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["face","relaxed","phew","massage","happiness"],k:[30,36]},bacon:{a:"Bacon",b:"1F953",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["food","breakfast","pork","pig","meat"],k:[41,51],o:9},leftwards_arrow_with_hook:{a:"Leftwards Arrow with Hook",b:"21A9-FE0F",c:"21A9",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["back","return","blue-square","undo","enter"],k:[46,39],o:1},"flag-br":{a:"Brazil Flag",b:"1F1E7-1F1F7",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[1,10]},hamburger:{a:"Hamburger",b:"1F354",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["meat","fast food","beef","cheeseburger","mcdonalds","burger king"],k:[7,22]},table_tennis_paddle_and_ball:{a:"Table Tennis Paddle and Ball",b:"1F3D3",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[11,36],o:8},rat:{a:"Rat",b:"1F400",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["animal","mouse","rodent"],k:[12,30]},trackball:{a:"Trackball",b:"1F5B2-FE0F",c:"1F5B2",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["technology","trackpad"],k:[30,2],o:7},tokyo_tower:{a:"Tokyo Tower",b:"1F5FC",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["photo","japanese"],k:[30,20]},stuck_out_tongue:{a:"Face with Stuck-out Tongue",b:"1F61B",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["face","prank","childish","playful","mischievous","smile","tongue"],k:[30,51],l:[":p",":-p",":P",":-P",":b",":-b"],m:":p"},arrow_right_hook:{a:"Rightwards Arrow with Hook",b:"21AA-FE0F",c:"21AA",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["blue-square","return","rotate","direction"],k:[46,40],o:1},"flag-bs":{a:"Bahamas Flag",b:"1F1E7-1F1F8",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[1,11]},fries:{a:"French Fries",b:"1F35F",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["chips","snack","fast food"],k:[7,33]},badminton_racquet_and_shuttlecock:{a:"Badminton Racquet and Shuttlecock",b:"1F3F8",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[12,22],o:8},hamster:{a:"Hamster Face",b:"1F439",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["animal","nature"],k:[13,35]},minidisc:{a:"Minidisc",b:"1F4BD",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["technology","record","data","disk","90s"],k:[25,40]},statue_of_liberty:{a:"Statue of Liberty",b:"1F5FD",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["american","newyork"],k:[30,21]},stuck_out_tongue_winking_eye:{a:"Face with Stuck-out Tongue and Winking Eye",b:"1F61C",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["face","prank","childish","playful","mischievous","smile","wink","tongue"],k:[31,0],l:[";p",";-p",";b",";-b",";P",";-P"],m:";p"},arrow_heading_up:{a:"Arrow Pointing Rightwards Then Curving Upwards",b:"2934-FE0F",c:"2934",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["blue-square","direction","top"],k:[50,15],o:3},"flag-bt":{a:"Bhutan Flag",b:"1F1E7-1F1F9",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[1,12]},pizza:{a:"Slice of Pizza",b:"1F355",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["food","party"],k:[7,23]},rabbit:{a:"Rabbit Face",b:"1F430",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["animal","nature","pet","spring","magic","bunny"],k:[13,26]},floppy_disk:{a:"Floppy Disk",b:"1F4BE",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["oldschool","technology","save","90s","80s"],k:[25,41]},stuck_out_tongue_closed_eyes:{a:"Face with Stuck-out Tongue and Tightly-Closed Eyes",b:"1F61D",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["face","prank","playful","mischievous","smile","tongue"],k:[31,1]},boxing_glove:{a:"Boxing Glove",b:"1F94A",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["sports","fighting"],k:[41,45],o:9},church:{a:"Church",b:"26EA",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["building","religion","christ"],k:[48,37],o:5},arrow_heading_down:{a:"Arrow Pointing Rightwards Then Curving Downwards",b:"2935-FE0F",c:"2935",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["blue-square","direction","bottom"],k:[50,16],o:3},"flag-bv":{a:"Bouvet Island Flag",b:"1F1E7-1F1FB",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[1,13]},hotdog:{a:"Hot Dog",b:"1F32D",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["food","frankfurter"],k:[6,35],o:8},rabbit2:{a:"Rabbit",b:"1F407",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["animal","nature","pet","magic","spring"],k:[12,37]},cd:{a:"Optical Disc",b:"1F4BF",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["technology","dvd","disk","disc","90s"],k:[25,42]},arrows_clockwise:{a:"Clockwise Downwards and Upwards Open Circle Arrows",b:"1F503",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["sync","cycle","round","repeat"],k:[27,5]},mosque:{a:"Mosque",b:"1F54C",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["islam","worship","minaret"],k:[28,15],o:8},drooling_face:{a:"Drooling Face",b:"1F924",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["face"],k:[38,27],o:9},martial_arts_uniform:{a:"Martial Arts Uniform",b:"1F94B",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["judo","karate","taekwondo"],k:[41,46],o:9},"flag-bw":{a:"Botswana Flag",b:"1F1E7-1F1FC",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[1,14]},chipmunk:{a:"Chipmunk",b:"1F43F-FE0F",c:"1F43F",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["animal","nature","rodent","squirrel"],k:[13,41],o:7},dvd:{a:"Dvd",b:"1F4C0",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["cd","disk","disc"],k:[25,43]},arrows_counterclockwise:{a:"Anticlockwise Downwards and Upwards Open Circle Arrows",b:"1F504",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["blue-square","sync","cycle"],k:[27,6]},synagogue:{a:"Synagogue",b:"1F54D",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["judaism","worship","temple","jewish"],k:[28,16],o:8},unamused:{a:"Unamused Face",b:"1F612",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["indifference","bored","straight face","serious","sarcasm"],k:[30,42],m:":("},goal_net:{a:"Goal Net",b:"1F945",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["sports"],k:[41,41],o:9},sandwich:{a:"Sandwich",b:"1F96A",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["food","lunch","bread"],k:[42,22],o:10},"flag-by":{a:"Belarus Flag",b:"1F1E7-1F1FE",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[1,15]},taco:{a:"Taco",b:"1F32E",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["food","mexican"],k:[6,36],o:8},movie_camera:{a:"Movie Camera",b:"1F3A5",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["film","record"],k:[8,51]},dart:{a:"Direct Hit",b:"1F3AF",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["game","play","bar","target","bullseye"],k:[9,9]},back:{a:"Back with Leftwards Arrow Above",b:"1F519",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["arrow","words","return"],k:[27,27]},sweat:{a:"Face with Cold Sweat",b:"1F613",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["face","hot","sad","tired","exercise"],k:[30,43]},hedgehog:{a:"Hedgehog",b:"1F994",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["animal","nature","spiny"],k:[42,44],o:10},shinto_shrine:{a:"Shinto Shrine",b:"26E9-FE0F",c:"26E9",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["temple","japan","kyoto"],k:[48,36],o:5},"flag-bz":{a:"Belize Flag",b:"1F1E7-1F1FF",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[1,16]},burrito:{a:"Burrito",b:"1F32F",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["food","mexican"],k:[6,37],o:8},film_frames:{a:"Film Frames",b:"1F39E-FE0F",c:"1F39E",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[8,44],o:7},end:{a:"End with Leftwards Arrow Above",b:"1F51A",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["words","arrow"],k:[27,28]},kaaba:{a:"Kaaba",b:"1F54B",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["mecca","mosque","islam"],k:[28,14],o:8},pensive:{a:"Pensive Face",b:"1F614",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["face","sad","depressed","upset"],k:[30,44]},bat:{a:"Bat",b:"1F987",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["animal","nature","blind","vampire"],k:[42,31],o:9},golf:{a:"Flag in Hole",b:"26F3",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["sports","business","flag","hole","summer"],k:[48,41],o:5},"flag-ca":{a:"Canada Flag",b:"1F1E8-1F1E6",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[1,17]},bear:{a:"Bear Face",b:"1F43B",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["animal","nature","wild"],k:[13,37]},film_projector:{a:"Film Projector",b:"1F4FD-FE0F",c:"1F4FD",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["video","tape","record","movie"],k:[27,0],o:7},on:{a:"On with Exclamation Mark with Left Right Arrow Above",b:"1F51B",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["arrow","words"],k:[27,29]},confused:{a:"Confused Face",b:"1F615",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["face","indifference","huh","weird","hmmm",":/"],k:[30,45],l:[":\\",":-\\",":/",":-/"]},stuffed_flatbread:{a:"Stuffed Flatbread",b:"1F959",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["food","flatbread","stuffed","gyro"],k:[42,5],o:9},fountain:{a:"Fountain",b:"26F2",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["photo","summer","water","fresh"],k:[48,40],o:5},ice_skate:{a:"Ice Skate",b:"26F8-FE0F",c:"26F8",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["sports"],k:[48,45],o:5},"flag-cc":{a:"Cocos (keeling) Islands Flag",b:"1F1E8-1F1E8",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[1,18]},fishing_pole_and_fish:{a:"Fishing Pole and Fish",b:"1F3A3",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["food","hobby","summer"],k:[8,49]},clapper:{a:"Clapper Board",b:"1F3AC",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["movie","film","record"],k:[9,6]},koala:{a:"Koala",b:"1F428",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["animal","nature"],k:[13,18]},soon:{a:"Soon with Rightwards Arrow Above",b:"1F51C",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["arrow","words"],k:[27,30]},upside_down_face:{a:"Upside-Down Face",b:"1F643",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["face","flipped","silly","smile"],k:[31,39],o:8},egg:{a:"Egg",b:"1F95A",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["food","chicken","breakfast"],k:[42,6],o:9},tent:{a:"Tent",b:"26FA",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["photo","camping","outdoors"],k:[49,12],o:5},"flag-cd":{a:"Congo - Kinshasa Flag",b:"1F1E8-1F1E9",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[1,19]},foggy:{a:"Foggy",b:"1F301",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["photo","mountain"],k:[5,45]},fried_egg:{a:"Cooking",b:"1F373",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["food","breakfast","kitchen","egg"],k:[8,1],n:["cooking"]},running_shirt_with_sash:{a:"Running Shirt with Sash",b:"1F3BD",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["play","pageant"],k:[9,23]},panda_face:{a:"Panda Face",b:"1F43C",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["animal","nature","panda"],k:[13,38]},tv:{a:"Television",b:"1F4FA",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["technology","program","oldschool","show","television"],k:[26,49]},top:{a:"Top with Upwards Arrow Above",b:"1F51D",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["words","blue-square"],k:[27,31]},money_mouth_face:{a:"Money-Mouth Face",b:"1F911",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["face","rich","dollar","money"],k:[37,25],o:8},"flag-cf":{a:"Central African Republic Flag",b:"1F1E8-1F1EB",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[1,20]},night_with_stars:{a:"Night with Stars",b:"1F303",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["evening","city","downtown"],k:[5,47]},ski:{a:"Ski and Ski Boot",b:"1F3BF",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["sports","winter","cold","snow"],k:[9,25]},feet:{a:"Paw Prints",b:"1F43E",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[13,40],n:["paw_prints"]},camera:{a:"Camera",b:"1F4F7",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["gadgets","photography"],k:[26,46]},astonished:{a:"Astonished Face",b:"1F632",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["face","xox","surprised","poisoned"],k:[31,22]},place_of_worship:{a:"Place of Worship",b:"1F6D0",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["religion","church","temple","prayer"],k:[37,5],o:8},shallow_pan_of_food:{a:"Shallow Pan of Food",b:"1F958",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["food","cooking","casserole","paella"],k:[42,4],o:9},"flag-cg":{a:"Congo - Brazzaville Flag",b:"1F1E8-1F1EC",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[1,21]},sunrise_over_mountains:{a:"Sunrise over Mountains",b:"1F304",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["view","vacation","photo"],k:[5,48]},stew:{a:"Pot of Food",b:"1F372",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["food","meat","soup"],k:[8,0]},camera_with_flash:{a:"Camera with Flash",b:"1F4F8",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[26,47],o:7},sled:{a:"Sled",b:"1F6F7",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["sleigh","luge","toboggan"],k:[37,22],o:10},turkey:{a:"Turkey",b:"1F983",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["animal","bird"],k:[42,27],o:8},white_frowning_face:{a:"White Frowning Face",b:"2639-FE0F",c:"2639",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[47,40],o:1},atom_symbol:{a:"Atom Symbol",b:"269B-FE0F",c:"269B",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["science","physics","chemistry"],k:[48,18],o:4},"flag-ch":{a:"Switzerland Flag",b:"1F1E8-1F1ED",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[1,22]},sunrise:{a:"Sunrise",b:"1F305",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["morning","view","vacation","photo"],k:[5,49]},chicken:{a:"Chicken",b:"1F414",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["animal","cluck","nature","bird"],k:[12,50]},video_camera:{a:"Video Camera",b:"1F4F9",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["film","record"],k:[26,48]},om_symbol:{a:"Om Symbol",b:"1F549-FE0F",c:"1F549",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[28,12],o:7},slightly_frowning_face:{a:"Slightly Frowning Face",b:"1F641",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["face","frowning","disappointed","sad","upset"],k:[31,37],o:7},curling_stone:{a:"Curling Stone",b:"1F94C",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["sports"],k:[41,47],o:10},bowl_with_spoon:{a:"Bowl with Spoon",b:"1F963",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["food","breakfast","cereal","oatmeal","porridge"],k:[42,15],o:10},"flag-ci":{a:"Côte D’ivoire Flag",b:"1F1E8-1F1EE",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[1,23]},city_sunset:{a:"Cityscape at Dusk",b:"1F306",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["photo","evening","sky","buildings"],k:[5,50]},video_game:{a:"Video Game",b:"1F3AE",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["play","console","PS4","controller"],k:[9,8]},rooster:{a:"Rooster",b:"1F413",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["animal","nature","chicken"],k:[12,49]},vhs:{a:"Videocassette",b:"1F4FC",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["record","video","oldschool","90s","80s"],k:[26,51]},confounded:{a:"Confounded Face",b:"1F616",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["face","confused","sick","unwell","oops",":S"],k:[30,46]},green_salad:{a:"Green Salad",b:"1F957",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["food","healthy","lettuce"],k:[42,3],o:9},star_of_david:{a:"Star of David",b:"2721-FE0F",c:"2721",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["judaism"],k:[49,47],o:1},"flag-ck":{a:"Cook Islands Flag",b:"1F1E8-1F1F0",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[1,24]},city_sunrise:{a:"Sunset over Buildings",b:"1F307",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["photo","good morning","dawn"],k:[5,51]},popcorn:{a:"Popcorn",b:"1F37F",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["food","movie theater","films","snack"],k:[8,13],o:8},hatching_chick:{a:"Hatching Chick",b:"1F423",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["animal","chicken","egg","born","baby","bird"],k:[13,13]},mag:{a:"Left-Pointing Magnifying Glass",b:"1F50D",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["search","zoom","find","detective"],k:[27,15]},joystick:{a:"Joystick",b:"1F579-FE0F",c:"1F579",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["game","play"],k:[29,20],o:7},disappointed:{a:"Disappointed Face",b:"1F61E",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["face","sad","upset","depressed",":("],k:[31,2],l:["):",":(",":-("],m:":("},wheel_of_dharma:{a:"Wheel of Dharma",b:"2638-FE0F",c:"2638",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["hinduism","buddhism","sikhism","jainism"],k:[47,39],o:1},"flag-cl":{a:"Chile Flag",b:"1F1E8-1F1F1",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[1,25]},bridge_at_night:{a:"Bridge at Night",b:"1F309",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["photo","sanfrancisco"],k:[6,1]},game_die:{a:"Game Die",b:"1F3B2",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["dice","random","tabletop","play","luck"],k:[9,12]},baby_chick:{a:"Baby Chick",b:"1F424",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["animal","chicken","bird"],k:[13,14]},mag_right:{a:"Right-Pointing Magnifying Glass",b:"1F50E",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["search","zoom","find","detective"],k:[27,16]},worried:{a:"Worried Face",b:"1F61F",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["face","concern","nervous",":("],k:[31,3]},canned_food:{a:"Canned Food",b:"1F96B",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["food","soup"],k:[42,23],o:10},yin_yang:{a:"Yin Yang",b:"262F-FE0F",c:"262F",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["balance"],k:[47,38],o:1},"flag-cm":{a:"Cameroon Flag",b:"1F1E8-1F1F2",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[1,26]},bento:{a:"Bento Box",b:"1F371",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["food","japanese","box"],k:[7,51]},hatched_chick:{a:"Front-Facing Baby Chick",b:"1F425",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["animal","chicken","baby","bird"],k:[13,15]},microscope:{a:"Microscope",b:"1F52C",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["laboratory","experiment","zoomin","science","study"],k:[27,46]},triumph:{a:"Face with Look of Triumph",b:"1F624",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["face","gas","phew","proud","pride"],k:[31,8]},spades:{a:"Black Spade Suit",b:"2660-FE0F",c:"2660",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["poker","cards","suits","magic"],k:[48,4],o:1},hotsprings:{a:"Hot Springs",b:"2668-FE0F",c:"2668",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["bath","warm","relax"],k:[48,8],o:1},latin_cross:{a:"Latin Cross",b:"271D-FE0F",c:"271D",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["christianity"],k:[49,46],o:1},cn:{a:"China Flag",b:"1F1E8-1F1F3",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["china","chinese","prc","flag","country","nation","banner"],k:[1,27],n:["flag-cn"]},milky_way:{a:"Milky Way",b:"1F30C",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["photo","space","stars"],k:[6,4]},rice_cracker:{a:"Rice Cracker",b:"1F358",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["food","japanese"],k:[7,26]},bird:{a:"Bird",b:"1F426",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["animal","nature","fly","tweet","spring"],k:[13,16]},telescope:{a:"Telescope",b:"1F52D",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["stars","space","zoom","science","astronomy"],k:[27,47]},cry:{a:"Crying Face",b:"1F622",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["face","tears","sad","depressed","upset",":'("],k:[31,6],l:[":'("],m:":'("},orthodox_cross:{a:"Orthodox Cross",b:"2626-FE0F",c:"2626",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["suppedaneum","religion"],k:[47,35],o:1},hearts:{a:"Black Heart Suit",b:"2665-FE0F",c:"2665",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["poker","cards","magic","suits"],k:[48,6],o:1},"flag-co":{a:"Colombia Flag",b:"1F1E8-1F1F4",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[1,28]},rice_ball:{a:"Rice Ball",b:"1F359",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["food","japanese"],k:[7,27]},carousel_horse:{a:"Carousel Horse",b:"1F3A0",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["photo","carnival"],k:[8,46]},penguin:{a:"Penguin",b:"1F427",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["animal","nature"],k:[13,17]},satellite_antenna:{a:"Satellite Antenna",b:"1F4E1",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[26,24]},sob:{a:"Loudly Crying Face",b:"1F62D",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["face","cry","tears","sad","upset","depressed"],k:[31,17],m:":'("},star_and_crescent:{a:"Star and Crescent",b:"262A-FE0F",c:"262A",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["islam"],k:[47,36],o:1},diamonds:{a:"Black Diamond Suit",b:"2666-FE0F",c:"2666",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["poker","cards","magic","suits"],k:[48,7],o:1},"flag-cp":{a:"Clipperton Island Flag",b:"1F1E8-1F1F5",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[1,29]},rice:{a:"Cooked Rice",b:"1F35A",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["food","china","asian"],k:[7,28]},ferris_wheel:{a:"Ferris Wheel",b:"1F3A1",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["photo","carnival","londoneye"],k:[8,47]},dove_of_peace:{a:"Dove of Peace",b:"1F54A-FE0F",c:"1F54A",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[28,13],o:7},candle:{a:"Candle",b:"1F56F-FE0F",c:"1F56F",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["fire","wax"],k:[28,42],o:7},frowning:{a:"Frowning Face with Open Mouth",b:"1F626",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["face","aw","what"],k:[31,10]},peace_symbol:{a:"Peace Symbol",b:"262E-FE0F",c:"262E",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["hippie"],k:[47,37],o:1},clubs:{a:"Black Club Suit",b:"2663-FE0F",c:"2663",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["poker","cards","magic","suits"],k:[48,5],o:1},black_joker:{a:"Playing Card Black Joker",b:"1F0CF",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["poker","cards","game","play","magic"],k:[0,15]},"flag-cr":{a:"Costa Rica Flag",b:"1F1E8-1F1F7",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[1,30]},curry:{a:"Curry and Rice",b:"1F35B",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["food","spicy","hot","indian"],k:[7,29]},roller_coaster:{a:"Roller Coaster",b:"1F3A2",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["carnival","playground","photo","fun"],k:[8,48]},bulb:{a:"Electric Light Bulb",b:"1F4A1",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["light","electricity","idea"],k:[25,7]},menorah_with_nine_branches:{a:"Menorah with Nine Branches",b:"1F54E",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[28,17],o:8},anguished:{a:"Anguished Face",b:"1F627",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["face","stunned","nervous"],k:[31,11],l:["D:"]},eagle:{a:"Eagle",b:"1F985",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["animal","nature","bird"],k:[42,29],o:9},mahjong:{a:"Mahjong Tile Red Dragon",b:"1F004",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["game","play","chinese","kanji"],k:[0,14],o:5},"flag-cu":{a:"Cuba Flag",b:"1F1E8-1F1FA",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[1,31]},ramen:{a:"Steaming Bowl",b:"1F35C",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["food","japanese","noodle","chopsticks"],k:[7,30]},barber:{a:"Barber Pole",b:"1F488",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["hair","salon","style"],k:[24,34]},flashlight:{a:"Electric Torch",b:"1F526",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["dark","camping","sight","night"],k:[27,40]},six_pointed_star:{a:"Six Pointed Star with Middle Dot",b:"1F52F",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["purple-square","religion","jewish","hexagram"],k:[27,49]},fearful:{a:"Fearful Face",b:"1F628",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["face","scared","terrified","nervous","oops","huh"],k:[31,12]},duck:{a:"Duck",b:"1F986",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["animal","nature","bird","mallard"],k:[42,30],o:9},"flag-cv":{a:"Cape Verde Flag",b:"1F1E8-1F1FB",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[1,32]},spaghetti:{a:"Spaghetti",b:"1F35D",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["food","italian","noodle"],k:[7,31]},circus_tent:{a:"Circus Tent",b:"1F3AA",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["festival","carnival","party"],k:[9,4]},flower_playing_cards:{a:"Flower Playing Cards",b:"1F3B4",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["game","sunset","red"],k:[9,14]},izakaya_lantern:{a:"Izakaya Lantern",b:"1F3EE",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["light","paper","halloween","spooky"],k:[12,11],n:["lantern"]},weary:{a:"Weary Face",b:"1F629",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["face","tired","sleepy","sad","frustrated","upset"],k:[31,13]},owl:{a:"Owl",b:"1F989",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["animal","nature","bird","hoot"],k:[42,33],o:9},aries:{a:"Aries",b:"2648",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["sign","purple-square","zodiac","astrology"],k:[47,44],o:1},"flag-cw":{a:"Curaçao Flag",b:"1F1E8-1F1FC",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[1,33]},sweet_potato:{a:"Roasted Sweet Potato",b:"1F360",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["food","nature"],k:[7,34]},performing_arts:{a:"Performing Arts",b:"1F3AD",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["acting","theater","drama"],k:[9,7]},frog:{a:"Frog Face",b:"1F438",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["animal","nature","croak","toad"],k:[13,34]},notebook_with_decorative_cover:{a:"Notebook with Decorative Cover",b:"1F4D4",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["classroom","notes","record","paper","study"],k:[26,11]},exploding_head:{a:"Shocked Face with Exploding Head",b:"1F92F",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["face","shocked","mind","blown"],k:[39,3],n:["shocked_face_with_exploding_head"],o:10},taurus:{a:"Taurus",b:"2649",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["purple-square","sign","zodiac","astrology"],k:[47,45],o:1},"flag-cx":{a:"Christmas Island Flag",b:"1F1E8-1F1FD",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[1,34]},oden:{a:"Oden",b:"1F362",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["food","japanese"],k:[7,36]},crocodile:{a:"Crocodile",b:"1F40A",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["animal","nature","reptile","lizard","alligator"],k:[12,40]},closed_book:{a:"Closed Book",b:"1F4D5",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["read","library","knowledge","textbook","learn"],k:[26,12]},frame_with_picture:{a:"Frame with Picture",b:"1F5BC-FE0F",c:"1F5BC",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[30,3],o:7},grimacing:{a:"Grimacing Face",b:"1F62C",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["face","grimace","teeth"],k:[31,16]},gemini:{a:"Gemini",b:"264A",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["sign","zodiac","purple-square","astrology"],k:[47,46],o:1},"flag-cy":{a:"Cyprus Flag",b:"1F1E8-1F1FE",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[1,35]},sushi:{a:"Sushi",b:"1F363",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["food","fish","japanese","rice"],k:[7,37]},art:{a:"Artist Palette",b:"1F3A8",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["design","paint","draw","colors"],k:[9,2]},turtle:{a:"Turtle",b:"1F422",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["animal","slow","nature","tortoise"],k:[13,12]},book:{a:"Open Book",b:"1F4D6",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[26,13],n:["open_book"]},cold_sweat:{a:"Face with Open Mouth and Cold Sweat",b:"1F630",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["face","nervous","sweat"],k:[31,20]},cancer:{a:"Cancer",b:"264B",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["sign","zodiac","purple-square","astrology"],k:[47,47],o:1},"flag-cz":{a:"Czechia Flag",b:"1F1E8-1F1FF",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[1,36]},fried_shrimp:{a:"Fried Shrimp",b:"1F364",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["food","animal","appetizer","summer"],k:[7,38]},slot_machine:{a:"Slot Machine",b:"1F3B0",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["bet","gamble","vegas","fruit machine","luck","casino"],k:[9,10]},green_book:{a:"Green Book",b:"1F4D7",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["read","library","knowledge","study"],k:[26,14]},scream:{a:"Face Screaming in Fear",b:"1F631",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["face","munch","scared","omg"],k:[31,21]},lizard:{a:"Lizard",b:"1F98E",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["animal","nature","reptile"],k:[42,38],o:9},leo:{a:"Leo",b:"264C",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["sign","purple-square","zodiac","astrology"],k:[47,48],o:1},de:{a:"Germany Flag",b:"1F1E9-1F1EA",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["german","nation","flag","country","banner"],k:[1,37],n:["flag-de"]},fish_cake:{a:"Fish Cake with Swirl Design",b:"1F365",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["food","japan","sea","beach","narutomaki","pink","swirl","kamaboko","surimi","ramen"],k:[7,39]},snake:{a:"Snake",b:"1F40D",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["animal","evil","nature","hiss","python"],k:[12,43]},blue_book:{a:"Blue Book",b:"1F4D8",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["read","library","knowledge","learn","study"],k:[26,15]},flushed:{a:"Flushed Face",b:"1F633",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["face","blush","shy","flattered"],k:[31,23]},steam_locomotive:{a:"Steam Locomotive",b:"1F682",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["transportation","vehicle","train"],k:[34,10]},virgo:{a:"Virgo",b:"264D",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["sign","zodiac","purple-square","astrology"],k:[47,49],o:1},"flag-dg":{a:"Diego Garcia Flag",b:"1F1E9-1F1EC",d:!0,e:!1,f:!0,g:!0,h:!0,i:!0,k:[1,38]},dango:{a:"Dango",b:"1F361",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["food","dessert","sweet","japanese","barbecue","meat"],k:[7,35]},dragon_face:{a:"Dragon Face",b:"1F432",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["animal","myth","nature","chinese","green"],k:[13,28]},orange_book:{a:"Orange Book",b:"1F4D9",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["read","library","knowledge","textbook","study"],k:[26,16]},railway_car:{a:"Railway Car",b:"1F683",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["transportation","vehicle"],k:[34,11]},zany_face:{a:"Grinning Face with One Large and One Small Eye",b:"1F92A",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[38,50],n:["grinning_face_with_one_large_and_one_small_eye"],o:10},libra:{a:"Libra",b:"264E",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["sign","purple-square","zodiac","astrology"],k:[47,50],o:1},"flag-dj":{a:"Djibouti Flag",b:"1F1E9-1F1EF",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[1,39]},dragon:{a:"Dragon",b:"1F409",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["animal","myth","nature","chinese","green"],k:[12,39]},books:{a:"Books",b:"1F4DA",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["literature","library","study"],k:[26,17]},dizzy_face:{a:"Dizzy Face",b:"1F635",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["spent","unconscious","xox","dizzy"],k:[31,25]},bullettrain_side:{a:"High-Speed Train",b:"1F684",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["transportation","vehicle"],k:[34,12]},dumpling:{a:"Dumpling",b:"1F95F",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["food","empanada","pierogi","potsticker"],k:[42,11],o:10},scorpius:{a:"Scorpius",b:"264F",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["sign","zodiac","purple-square","astrology","scorpio"],k:[47,51],o:1},"flag-dk":{a:"Denmark Flag",b:"1F1E9-1F1F0",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[1,40]},notebook:{a:"Notebook",b:"1F4D3",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["stationery","record","notes","paper","study"],k:[26,10]},rage:{a:"Pouting Face",b:"1F621",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["angry","mad","hate","despise"],k:[31,5]},bullettrain_front:{a:"High-Speed Train with Bullet Nose",b:"1F685",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["transportation","vehicle","speed","fast","public","travel"],k:[34,13]},fortune_cookie:{a:"Fortune Cookie",b:"1F960",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["food","prophecy"],k:[42,12],o:10},sauropod:{a:"Sauropod",b:"1F995",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["animal","nature","dinosaur","brachiosaurus","brontosaurus","diplodocus","extinct"],k:[42,45],o:10},sagittarius:{a:"Sagittarius",b:"2650",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["sign","zodiac","purple-square","astrology"],k:[48,0],o:1},"flag-dm":{a:"Dominica Flag",b:"1F1E9-1F1F2",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[1,41]},ledger:{a:"Ledger",b:"1F4D2",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["notes","paper"],k:[26,9]},angry:{a:"Angry Face",b:"1F620",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["mad","face","annoyed","frustrated"],k:[31,4],l:[">:(",">:-("]},train2:{a:"Train",b:"1F686",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["transportation","vehicle"],k:[34,14]},takeout_box:{a:"Takeout Box",b:"1F961",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["food","leftovers"],k:[42,13],o:10},"t-rex":{a:"T-Rex",b:"1F996",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["animal","nature","dinosaur","tyrannosaurus","extinct"],k:[42,46],o:10},capricorn:{a:"Capricorn",b:"2651",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["sign","zodiac","purple-square","astrology"],k:[48,1],o:1},"flag-do":{a:"Dominican Republic Flag",b:"1F1E9-1F1F4",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[1,42]},icecream:{a:"Soft Ice Cream",b:"1F366",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["food","hot","dessert","summer"],k:[7,40]},whale:{a:"Spouting Whale",b:"1F433",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["animal","nature","sea","ocean"],k:[13,29]},page_with_curl:{a:"Page with Curl",b:"1F4C3",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["documents","office","paper"],k:[25,46]},metro:{a:"Metro",b:"1F687",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["transportation","blue-square","mrt","underground","tube"],k:[34,15]},face_with_symbols_on_mouth:{a:"Serious Face with Symbols Covering Mouth",b:"1F92C",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[39,0],n:["serious_face_with_symbols_covering_mouth"],o:10},aquarius:{a:"Aquarius",b:"2652",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["sign","purple-square","zodiac","astrology"],k:[48,2],o:1},"flag-dz":{a:"Algeria Flag",b:"1F1E9-1F1FF",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[1,43]},shaved_ice:{a:"Shaved Ice",b:"1F367",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["hot","dessert","summer"],k:[7,41]},whale2:{a:"Whale",b:"1F40B",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["animal","nature","sea","ocean"],k:[12,41]},scroll:{a:"Scroll",b:"1F4DC",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["documents","ancient","history","paper"],k:[26,19]},mask:{a:"Face with Medical Mask",b:"1F637",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["face","sick","ill","disease"],k:[31,27]},light_rail:{a:"Light Rail",b:"1F688",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["transportation","vehicle"],k:[34,16]},pisces:{a:"Pisces",b:"2653",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["purple-square","sign","zodiac","astrology"],k:[48,3],o:1},"flag-ea":{a:"Ceuta & Melilla Flag",b:"1F1EA-1F1E6",d:!0,e:!1,f:!0,g:!0,h:!0,i:!0,k:[1,44]},ice_cream:{a:"Ice Cream",b:"1F368",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["food","hot","dessert"],k:[7,42]},dolphin:{a:"Dolphin",b:"1F42C",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["animal","nature","fish","sea","ocean","flipper","fins","beach"],k:[13,22],n:["flipper"]},page_facing_up:{a:"Page Facing Up",b:"1F4C4",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["documents","office","paper","information"],k:[25,47]},station:{a:"Station",b:"1F689",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["transportation","vehicle","public"],k:[34,17]},face_with_thermometer:{a:"Face with Thermometer",b:"1F912",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["sick","temperature","thermometer","cold","fever"],k:[37,26],o:8},ophiuchus:{a:"Ophiuchus",b:"26CE",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["sign","purple-square","constellation","astrology"],k:[48,31]},"flag-ec":{a:"Ecuador Flag",b:"1F1EA-1F1E8",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[1,45]},doughnut:{a:"Doughnut",b:"1F369",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["food","dessert","snack","sweet","donut"],k:[7,43]},fish:{a:"Fish",b:"1F41F",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["animal","food","nature"],k:[13,9]},newspaper:{a:"Newspaper",b:"1F4F0",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["press","headline"],k:[26,39]},twisted_rightwards_arrows:{a:"Twisted Rightwards Arrows",b:"1F500",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["blue-square","shuffle","music","random"],k:[27,2]},tram:{a:"Tram",b:"1F68A",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["transportation","vehicle"],k:[34,18]},face_with_head_bandage:{a:"Face with Head-Bandage",b:"1F915",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["injured","clumsy","bandage","hurt"],k:[37,29],o:8},"flag-ee":{a:"Estonia Flag",b:"1F1EA-1F1EA",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[1,46]},cookie:{a:"Cookie",b:"1F36A",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["food","snack","oreo","chocolate","sweet","dessert"],k:[7,44]},tropical_fish:{a:"Tropical Fish",b:"1F420",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["animal","swim","ocean","beach","nemo"],k:[13,10]},repeat:{a:"Clockwise Rightwards and Leftwards Open Circle Arrows",b:"1F501",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["loop","record"],k:[27,3]},rolled_up_newspaper:{a:"Rolled Up Newspaper",b:"1F5DE-FE0F",c:"1F5DE",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[30,12],o:7},monorail:{a:"Monorail",b:"1F69D",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["transportation","vehicle"],k:[34,37]},nauseated_face:{a:"Nauseated Face",b:"1F922",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["face","vomit","gross","green","sick","throw up","ill"],k:[38,25],o:9},"flag-eg":{a:"Egypt Flag",b:"1F1EA-1F1EC",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[1,47]},birthday:{a:"Birthday Cake",b:"1F382",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["food","dessert","cake"],k:[8,16]},blowfish:{a:"Blowfish",b:"1F421",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["animal","nature","food","sea","ocean"],k:[13,11]},bookmark_tabs:{a:"Bookmark Tabs",b:"1F4D1",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["favorite","save","order","tidy"],k:[26,8]},repeat_one:{a:"Clockwise Rightwards and Leftwards Open Circle Arrows with Circled One Overlay",b:"1F502",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["blue-square","loop"],k:[27,4]},mountain_railway:{a:"Mountain Railway",b:"1F69E",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["transportation","vehicle"],k:[34,38]},face_vomiting:{a:"Face with Open Mouth Vomiting",b:"1F92E",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[39,2],n:["face_with_open_mouth_vomiting"],o:10},"flag-eh":{a:"Western Sahara Flag",b:"1F1EA-1F1ED",d:!0,e:!1,f:!0,g:!0,h:!0,i:!0,k:[1,48]},cake:{a:"Shortcake",b:"1F370",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["food","dessert"],k:[7,50]},bookmark:{a:"Bookmark",b:"1F516",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["favorite","label","save"],k:[27,24]},train:{a:"Tram Car",b:"1F68B",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["transportation","vehicle","carriage","public","travel"],k:[34,19]},sneezing_face:{a:"Sneezing Face",b:"1F927",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["face","gesundheit","sneeze","sick","allergy"],k:[38,47],o:9},shark:{a:"Shark",b:"1F988",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["animal","nature","fish","sea","ocean","jaws","fins","beach"],k:[42,32],o:9},arrow_forward:{a:"Black Right-Pointing Triangle",b:"25B6-FE0F",c:"25B6",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["blue-square","right","direction","play"],k:[47,10],o:1},"flag-er":{a:"Eritrea Flag",b:"1F1EA-1F1F7",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[1,49]},label:{a:"Label",b:"1F3F7-FE0F",c:"1F3F7",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["sale","tag"],k:[12,21],o:7},octopus:{a:"Octopus",b:"1F419",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["animal","creature","ocean","sea","nature","beach"],k:[13,3]},innocent:{a:"Smiling Face with Halo",b:"1F607",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["face","angel","heaven","halo"],k:[30,31]},bus:{a:"Bus",b:"1F68C",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["car","vehicle","transportation"],k:[34,20]},pie:{a:"Pie",b:"1F967",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["food","dessert","pastry"],k:[42,19],o:10},fast_forward:{a:"Black Right-Pointing Double Triangle",b:"23E9",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["blue-square","play","speed","continue"],k:[46,45]},es:{a:"Spain Flag",b:"1F1EA-1F1F8",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["spain","flag","nation","country","banner"],k:[1,50],n:["flag-es"]},chocolate_bar:{a:"Chocolate Bar",b:"1F36B",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["food","snack","dessert","sweet"],k:[7,45]},shell:{a:"Spiral Shell",b:"1F41A",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["nature","sea","beach"],k:[13,4]},moneybag:{a:"Money Bag",b:"1F4B0",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["dollar","payment","coins","sale"],k:[25,27]},oncoming_bus:{a:"Oncoming Bus",b:"1F68D",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["vehicle","transportation"],k:[34,21]},face_with_cowboy_hat:{a:"Face with Cowboy Hat",b:"1F920",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[38,23],o:9},black_right_pointing_double_triangle_with_vertical_bar:{a:"Black Right Pointing Double Triangle with Vertical Bar",b:"23ED-FE0F",c:"23ED",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[46,49]},"flag-et":{a:"Ethiopia Flag",b:"1F1EA-1F1F9",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[1,51]},candy:{a:"Candy",b:"1F36C",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["snack","dessert","sweet","lolly"],k:[7,46]},yen:{a:"Banknote with Yen Sign",b:"1F4B4",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["money","sales","japanese","dollar","currency"],k:[25,31]},trolleybus:{a:"Trolleybus",b:"1F68E",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["bart","transportation","vehicle"],k:[34,22]},clown_face:{a:"Clown Face",b:"1F921",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["face"],k:[38,24],o:9},crab:{a:"Crab",b:"1F980",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["animal","crustacean"],k:[42,24],o:8},black_right_pointing_triangle_with_double_vertical_bar:{a:"Black Right Pointing Triangle with Double Vertical Bar",b:"23EF-FE0F",c:"23EF",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[46,51]},"flag-eu":{a:"European Union Flag",b:"1F1EA-1F1FA",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[2,0]},lollipop:{a:"Lollipop",b:"1F36D",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["food","snack","candy","sweet"],k:[7,47]},dollar:{a:"Banknote with Dollar Sign",b:"1F4B5",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["money","sales","bill","currency"],k:[25,32]},minibus:{a:"Minibus",b:"1F690",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["vehicle","car","transportation"],k:[34,24]},lying_face:{a:"Lying Face",b:"1F925",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["face","lie","pinocchio"],k:[38,28],o:9},shrimp:{a:"Shrimp",b:"1F990",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["animal","ocean","nature","seafood"],k:[42,40],o:9},arrow_backward:{a:"Black Left-Pointing Triangle",b:"25C0-FE0F",c:"25C0",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["blue-square","left","direction"],k:[47,11],o:1},"flag-fi":{a:"Finland Flag",b:"1F1EB-1F1EE",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[2,1]},custard:{a:"Custard",b:"1F36E",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["dessert","food"],k:[7,48]},euro:{a:"Banknote with Euro Sign",b:"1F4B6",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["money","sales","dollar","currency"],k:[25,33]},ambulance:{a:"Ambulance",b:"1F691",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["health","911","hospital"],k:[34,25]},shushing_face:{a:"Face with Finger Covering Closed Lips",b:"1F92B",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[38,51],n:["face_with_finger_covering_closed_lips"],o:10},squid:{a:"Squid",b:"1F991",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["animal","nature","ocean","sea"],k:[42,41],o:9},rewind:{a:"Black Left-Pointing Double Triangle",b:"23EA",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["play","blue-square"],k:[46,46]},"flag-fj":{a:"Fiji Flag",b:"1F1EB-1F1EF",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[2,2]},honey_pot:{a:"Honey Pot",b:"1F36F",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["bees","sweet","kitchen"],k:[7,49]},snail:{a:"Snail",b:"1F40C",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["slow","animal","shell"],k:[12,42]},pound:{a:"Banknote with Pound Sign",b:"1F4B7",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["british","sterling","money","sales","bills","uk","england","currency"],k:[25,34]},fire_engine:{a:"Fire Engine",b:"1F692",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["transportation","cars","vehicle"],k:[34,26]},face_with_hand_over_mouth:{a:"Smiling Face with Smiling Eyes and Hand Covering Mouth",b:"1F92D",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[39,1],n:["smiling_face_with_smiling_eyes_and_hand_covering_mouth"],o:10},black_left_pointing_double_triangle_with_vertical_bar:{a:"Black Left Pointing Double Triangle with Vertical Bar",b:"23EE-FE0F",c:"23EE",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[46,50]},"flag-fk":{a:"Falkland Islands Flag",b:"1F1EB-1F1F0",d:!0,e:!1,f:!0,g:!0,h:!0,i:!0,k:[2,3]},baby_bottle:{a:"Baby Bottle",b:"1F37C",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["food","container","milk"],k:[8,10]},money_with_wings:{a:"Money with Wings",b:"1F4B8",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["dollar","bills","payment","sale"],k:[25,35]},arrow_up_small:{a:"Up-Pointing Small Red Triangle",b:"1F53C",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["blue-square","triangle","direction","point","forward","top"],k:[28,10]},police_car:{a:"Police Car",b:"1F693",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["vehicle","cars","transportation","law","legal","enforcement"],k:[34,27]},butterfly:{a:"Butterfly",b:"1F98B",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["animal","insect","nature","caterpillar"],k:[42,35],o:9},face_with_monocle:{a:"Face with Monocle",b:"1F9D0",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[42,49],o:10},"flag-fm":{a:"Micronesia Flag",b:"1F1EB-1F1F2",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[2,4]},bug:{a:"Bug",b:"1F41B",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["animal","insect","nature","worm"],k:[13,5]},credit_card:{a:"Credit Card",b:"1F4B3",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["money","sales","dollar","bill","payment","shopping"],k:[25,30]},oncoming_police_car:{a:"Oncoming Police Car",b:"1F694",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["vehicle","law","legal","enforcement","911"],k:[34,28]},nerd_face:{a:"Nerd Face",b:"1F913",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["face","nerdy","geek","dork"],k:[37,27],o:8},glass_of_milk:{a:"Glass of Milk",b:"1F95B",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[42,7],o:9},arrow_double_up:{a:"Black Up-Pointing Double Triangle",b:"23EB",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["blue-square","direction","top"],k:[46,47]},"flag-fo":{a:"Faroe Islands Flag",b:"1F1EB-1F1F4",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[2,5]},ant:{a:"Ant",b:"1F41C",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["animal","insect","nature","bug"],k:[13,6]},chart:{a:"Chart with Upwards Trend and Yen Sign",b:"1F4B9",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["green-square","graph","presentation","stats"],k:[25,36]},arrow_down_small:{a:"Down-Pointing Small Red Triangle",b:"1F53D",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["blue-square","direction","bottom"],k:[28,11]},smiling_imp:{a:"Smiling Face with Horns",b:"1F608",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["devil","horns"],k:[30,32]},taxi:{a:"Taxi",b:"1F695",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["uber","vehicle","cars","transportation"],k:[34,29]},coffee:{a:"Hot Beverage",b:"2615",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["beverage","caffeine","latte","espresso"],k:[47,24],o:4},fr:{a:"France Flag",b:"1F1EB-1F1F7",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["banner","flag","nation","france","french","country"],k:[2,6],n:["flag-fr"]},tea:{a:"Teacup Without Handle",b:"1F375",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["drink","bowl","breakfast","green","british"],k:[8,3]},bee:{a:"Honeybee",b:"1F41D",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[13,7],n:["honeybee"]},imp:{a:"Imp",b:"1F47F",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["devil","angry","horns"],k:[22,51]},currency_exchange:{a:"Currency Exchange",b:"1F4B1",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["money","sales","dollar","travel"],k:[25,28]},oncoming_taxi:{a:"Oncoming Taxi",b:"1F696",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["vehicle","cars","uber"],k:[34,30]},arrow_double_down:{a:"Black Down-Pointing Double Triangle",b:"23EC",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["blue-square","direction","bottom"],k:[46,48]},"flag-ga":{a:"Gabon Flag",b:"1F1EC-1F1E6",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[2,7]},sake:{a:"Sake Bottle and Cup",b:"1F376",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["wine","drink","drunk","beverage","japanese","alcohol","booze"],k:[8,4]},beetle:{a:"Lady Beetle",b:"1F41E",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["animal","insect","nature","ladybug"],k:[13,8]},japanese_ogre:{a:"Japanese Ogre",b:"1F479",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["monster","red","mask","halloween","scary","creepy","devil","demon","japanese","ogre"],k:[22,40]},heavy_dollar_sign:{a:"Heavy Dollar Sign",b:"1F4B2",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["money","sales","payment","currency","buck"],k:[25,29]},car:{a:"Automobile",b:"1F697",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[34,31],n:["red_car"]},double_vertical_bar:{a:"Double Vertical Bar",b:"23F8-FE0F",c:"23F8",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[47,4],o:7},gb:{a:"United Kingdom Flag",b:"1F1EC-1F1E7",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[2,8],n:["uk","flag-gb"]},champagne:{a:"Bottle with Popping Cork",b:"1F37E",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["drink","wine","bottle","celebration"],k:[8,12],o:8},japanese_goblin:{a:"Japanese Goblin",b:"1F47A",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["red","evil","mask","monster","scary","creepy","japanese","goblin"],k:[22,41]},oncoming_automobile:{a:"Oncoming Automobile",b:"1F698",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["car","vehicle","transportation"],k:[34,32]},cricket:{a:"Cricket",b:"1F997",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["sports"],k:[42,47],o:10},black_square_for_stop:{a:"Black Square for Stop",b:"23F9-FE0F",c:"23F9",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[47,5],o:7},email:{a:"Envelope",b:"2709-FE0F",c:"2709",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["letter","postal","inbox","communication"],k:[49,17],n:["envelope"],o:1},"flag-gd":{a:"Grenada Flag",b:"1F1EC-1F1E9",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[2,9]},wine_glass:{a:"Wine Glass",b:"1F377",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["drink","beverage","drunk","alcohol","booze"],k:[8,5]},skull:{a:"Skull",b:"1F480",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["dead","skeleton","creepy","death"],k:[23,0]},"e-mail":{a:"E-Mail Symbol",b:"1F4E7",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["communication","inbox"],k:[26,30]},spider:{a:"Spider",b:"1F577-FE0F",c:"1F577",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["animal","arachnid"],k:[29,18],o:7},blue_car:{a:"Recreational Vehicle",b:"1F699",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["transportation","vehicle"],k:[34,33]},black_circle_for_record:{a:"Black Circle for Record",b:"23FA-FE0F",c:"23FA",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[47,6],o:7},"flag-ge":{a:"Georgia Flag",b:"1F1EC-1F1EA",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[2,10]},cocktail:{a:"Cocktail Glass",b:"1F378",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["drink","drunk","alcohol","beverage","booze","mojito"],k:[8,6]},incoming_envelope:{a:"Incoming Envelope",b:"1F4E8",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["email","inbox"],k:[26,31]},spider_web:{a:"Spider Web",b:"1F578-FE0F",c:"1F578",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["animal","insect","arachnid","silk"],k:[29,19],o:7},truck:{a:"Delivery Truck",b:"1F69A",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["cars","transportation"],k:[34,34]},eject:{a:"Eject",b:"23CF-FE0F",c:"23CF",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[46,44],o:4},skull_and_crossbones:{a:"Skull and Crossbones",b:"2620-FE0F",c:"2620",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["poison","danger","deadly","scary","death","pirate","evil"],k:[47,32],o:1},"flag-gf":{a:"French Guiana Flag",b:"1F1EC-1F1EB",d:!0,e:!1,f:!0,g:!0,h:!0,i:!0,k:[2,11]},tropical_drink:{a:"Tropical Drink",b:"1F379",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["beverage","cocktail","summer","beach","alcohol","booze","mojito"],k:[8,7]},cinema:{a:"Cinema",b:"1F3A6",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["blue-square","record","film","movie","curtain","stage","theater"],k:[9,0]},ghost:{a:"Ghost",b:"1F47B",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["halloween","spooky","scary"],k:[22,42]},envelope_with_arrow:{a:"Envelope with Downwards Arrow Above",b:"1F4E9",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["email","communication"],k:[26,32]},articulated_lorry:{a:"Articulated Lorry",b:"1F69B",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["vehicle","cars","transportation","express"],k:[34,35]},scorpion:{a:"Scorpion",b:"1F982",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["animal","arachnid"],k:[42,26],o:8},"flag-gg":{a:"Guernsey Flag",b:"1F1EC-1F1EC",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[2,12]},beer:{a:"Beer Mug",b:"1F37A",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["relax","beverage","drink","drunk","party","pub","summer","alcohol","booze"],k:[8,8]},alien:{a:"Extraterrestrial Alien",b:"1F47D",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["UFO","paul","weird","outer_space"],k:[22,49]},bouquet:{a:"Bouquet",b:"1F490",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["flowers","nature","spring"],k:[24,42]},outbox_tray:{a:"Outbox Tray",b:"1F4E4",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["inbox","email"],k:[26,27]},low_brightness:{a:"Low Brightness Symbol",b:"1F505",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["sun","afternoon","warm","summer"],k:[27,7]},tractor:{a:"Tractor",b:"1F69C",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["vehicle","car","farming","agriculture"],k:[34,36]},"flag-gh":{a:"Ghana Flag",b:"1F1EC-1F1ED",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[2,13]},cherry_blossom:{a:"Cherry Blossom",b:"1F338",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["nature","plant","spring","flower"],k:[6,46]},beers:{a:"Clinking Beer Mugs",b:"1F37B",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["relax","beverage","drink","drunk","party","pub","summer","alcohol","booze"],k:[8,9]},space_invader:{a:"Alien Monster",b:"1F47E",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["game","arcade","play"],k:[22,50]},inbox_tray:{a:"Inbox Tray",b:"1F4E5",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["email","documents"],k:[26,28]},high_brightness:{a:"High Brightness Symbol",b:"1F506",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["sun","light"],k:[27,8]},bike:{a:"Bicycle",b:"1F6B2",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["sports","bicycle","exercise","hipster"],k:[35,23]},"flag-gi":{a:"Gibraltar Flag",b:"1F1EC-1F1EE",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[2,14]},white_flower:{a:"White Flower",b:"1F4AE",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["japanese","spring"],k:[25,25]},package:{a:"Package",b:"1F4E6",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["mail","gift","cardboard","box","moving"],k:[26,29]},signal_strength:{a:"Antenna with Bars",b:"1F4F6",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["blue-square","reception","phone","internet","connection","wifi","bluetooth","bars"],k:[26,45]},scooter:{a:"Scooter",b:"1F6F4",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[37,19],o:9},robot_face:{a:"Robot Face",b:"1F916",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[37,30],o:8},clinking_glasses:{a:"Clinking Glasses",b:"1F942",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["beverage","drink","party","alcohol","celebrate","cheers"],k:[41,38],o:9},"flag-gl":{a:"Greenland Flag",b:"1F1EC-1F1F1",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[2,15]},rosette:{a:"Rosette",b:"1F3F5-FE0F",c:"1F3F5",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["flower","decoration","military"],k:[12,20],o:7},hankey:{a:"Pile of Poo",b:"1F4A9",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[25,15],n:["poop","shit"]},mailbox:{a:"Closed Mailbox with Raised Flag",b:"1F4EB",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["email","inbox","communication"],k:[26,34]},vibration_mode:{a:"Vibration Mode",b:"1F4F3",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["orange-square","phone"],k:[26,42]},motor_scooter:{a:"Motor Scooter",b:"1F6F5",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["vehicle","vespa","sasha"],k:[37,20],o:9},tumbler_glass:{a:"Tumbler Glass",b:"1F943",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["drink","beverage","drunk","alcohol","liquor","booze","bourbon","scotch","whisky","glass","shot"],k:[41,39],o:9},"flag-gm":{a:"Gambia Flag",b:"1F1EC-1F1F2",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[2,16]},rose:{a:"Rose",b:"1F339",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["flowers","valentines","love","spring"],k:[6,47]},mailbox_closed:{a:"Closed Mailbox with Lowered Flag",b:"1F4EA",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["email","communication","inbox"],k:[26,33]},mobile_phone_off:{a:"Mobile Phone off",b:"1F4F4",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["mute","orange-square","silence","quiet"],k:[26,43]},smiley_cat:{a:"Smiling Cat Face with Open Mouth",b:"1F63A",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["animal","cats","happy","smile"],k:[31,30]},busstop:{a:"Bus Stop",b:"1F68F",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["transportation","wait"],k:[34,23]},cup_with_straw:{a:"Cup with Straw",b:"1F964",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["drink","soda"],k:[42,16],o:10},"flag-gn":{a:"Guinea Flag",b:"1F1EC-1F1F3",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[2,17]},mailbox_with_mail:{a:"Open Mailbox with Raised Flag",b:"1F4EC",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["email","inbox","communication"],k:[26,35]},smile_cat:{a:"Grinning Cat Face with Smiling Eyes",b:"1F638",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["animal","cats","smile"],k:[31,28]},motorway:{a:"Motorway",b:"1F6E3-FE0F",c:"1F6E3",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["road","cupertino","interstate","highway"],k:[37,11],o:7},wilted_flower:{a:"Wilted Flower",b:"1F940",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["plant","nature","flower"],k:[41,36],o:9},chopsticks:{a:"Chopsticks",b:"1F962",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["food"],k:[42,14],o:10},female_sign:{a:"Female Sign",b:"2640-FE0F",c:"2640",d:!1,e:!0,f:!0,g:!0,h:!0,i:!1,k:[47,42],o:1},"flag-gp":{a:"Guadeloupe Flag",b:"1F1EC-1F1F5",d:!0,e:!1,f:!0,g:!0,h:!0,i:!0,k:[2,18]},hibiscus:{a:"Hibiscus",b:"1F33A",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["plant","vegetable","flowers","beach"],k:[6,48]},knife_fork_plate:{a:"Knife Fork Plate",b:"1F37D-FE0F",c:"1F37D",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[8,11],o:7},mailbox_with_no_mail:{a:"Open Mailbox with Lowered Flag",b:"1F4ED",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["email","inbox"],k:[26,36]},joy_cat:{a:"Cat Face with Tears of Joy",b:"1F639",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["animal","cats","haha","happy","tears"],k:[31,29]},railway_track:{a:"Railway Track",b:"1F6E4-FE0F",c:"1F6E4",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["train","transportation"],k:[37,12],o:7},male_sign:{a:"Male Sign",b:"2642-FE0F",c:"2642",d:!1,e:!0,f:!0,g:!0,h:!0,i:!1,k:[47,43],o:1},"flag-gq":{a:"Equatorial Guinea Flag",b:"1F1EC-1F1F6",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[2,19]},sunflower:{a:"Sunflower",b:"1F33B",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["nature","plant","fall"],k:[6,49]},fork_and_knife:{a:"Fork and Knife",b:"1F374",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["cutlery","kitchen"],k:[8,2]},postbox:{a:"Postbox",b:"1F4EE",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["email","letter","envelope"],k:[26,37]},heart_eyes_cat:{a:"Smiling Cat Face with Heart-Shaped Eyes",b:"1F63B",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["animal","love","like","affection","cats","valentines","heart"],k:[31,31]},medical_symbol:{a:"Medical Symbol",b:"2695-FE0F",c:"2695",d:!1,e:!0,f:!0,g:!0,h:!0,i:!1,k:[48,14],n:["staff_of_aesculapius"],o:4},fuelpump:{a:"Fuel Pump",b:"26FD",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["gas station","petroleum"],k:[49,13],o:5},"flag-gr":{a:"Greece Flag",b:"1F1EC-1F1F7",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[2,20]},blossom:{a:"Blossom",b:"1F33C",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["nature","flowers","yellow"],k:[6,50]},ballot_box_with_ballot:{a:"Ballot Box with Ballot",b:"1F5F3-FE0F",c:"1F5F3",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[30,17],o:7},smirk_cat:{a:"Cat Face with Wry Smile",b:"1F63C",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["animal","cats","smirk"],k:[31,32]},rotating_light:{a:"Police Cars Revolving Light",b:"1F6A8",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["police","ambulance","911","emergency","alert","error","pinged","law","legal"],k:[35,13]},spoon:{a:"Spoon",b:"1F944",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["cutlery","kitchen","tableware"],k:[41,40],o:9},recycle:{a:"Black Universal Recycling Symbol",b:"267B-FE0F",c:"267B",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["arrow","environment","garbage","trash"],k:[48,9],o:3},"flag-gs":{a:"South Georgia & South Sandwich Islands Flag",b:"1F1EC-1F1F8",d:!0,e:!1,f:!0,g:!0,h:!0,i:!0,k:[2,21]},tulip:{a:"Tulip",b:"1F337",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["flowers","plant","nature","summer","spring"],k:[6,45]},hocho:{a:"Hocho",b:"1F52A",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["knife","blade","cutlery","kitchen","weapon"],k:[27,44],n:["knife"]},kissing_cat:{a:"Kissing Cat Face with Closed Eyes",b:"1F63D",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["animal","cats","kiss"],k:[31,33]},traffic_light:{a:"Horizontal Traffic Light",b:"1F6A5",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["transportation","signal"],k:[35,10]},fleur_de_lis:{a:"Fleur De Lis",b:"269C-FE0F",c:"269C",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["decorative","scout"],k:[48,19],o:4},pencil2:{a:"Pencil",b:"270F-FE0F",c:"270F",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["stationery","write","paper","writing","school","study"],k:[49,42],o:1},"flag-gt":{a:"Guatemala Flag",b:"1F1EC-1F1F9",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[2,22]},seedling:{a:"Seedling",b:"1F331",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["plant","nature","grass","lawn","spring"],k:[6,39]},amphora:{a:"Amphora",b:"1F3FA",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["vase","jar"],k:[12,24],o:8},trident:{a:"Trident Emblem",b:"1F531",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["weapon","spear"],k:[27,51]},scream_cat:{a:"Weary Cat Face",b:"1F640",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["animal","cats","munch","scared","scream"],k:[31,36]},vertical_traffic_light:{a:"Vertical Traffic Light",b:"1F6A6",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["transportation","driving"],k:[35,11]},black_nib:{a:"Black Nib",b:"2712-FE0F",c:"2712",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["pen","stationery","writing","write"],k:[49,43],o:1},"flag-gu":{a:"Guam Flag",b:"1F1EC-1F1FA",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[2,23]},evergreen_tree:{a:"Evergreen Tree",b:"1F332",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["plant","nature"],k:[6,40]},name_badge:{a:"Name Badge",b:"1F4DB",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["fire","forbid"],k:[26,18]},lower_left_fountain_pen:{a:"Lower Left Fountain Pen",b:"1F58B-FE0F",c:"1F58B",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[29,29],o:7},crying_cat_face:{a:"Crying Cat Face",b:"1F63F",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["animal","tears","weep","sad","cats","upset","cry"],k:[31,35]},construction:{a:"Construction Sign",b:"1F6A7",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["wip","progress","caution","warning"],k:[35,12]},"flag-gw":{a:"Guinea-Bissau Flag",b:"1F1EC-1F1FC",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[2,24]},deciduous_tree:{a:"Deciduous Tree",b:"1F333",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["plant","nature"],k:[6,41]},beginner:{a:"Japanese Symbol for Beginner",b:"1F530",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["badge","shield"],k:[27,50]},lower_left_ballpoint_pen:{a:"Lower Left Ballpoint Pen",b:"1F58A-FE0F",c:"1F58A",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[29,28],o:7},pouting_cat:{a:"Pouting Cat Face",b:"1F63E",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["animal","cats"],k:[31,34]},octagonal_sign:{a:"Octagonal Sign",b:"1F6D1",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[37,6],o:9},"flag-gy":{a:"Guyana Flag",b:"1F1EC-1F1FE",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[2,25]},palm_tree:{a:"Palm Tree",b:"1F334",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["plant","vegetable","nature","summer","beach","mojito","tropical"],k:[6,42]},lower_left_paintbrush:{a:"Lower Left Paintbrush",b:"1F58C-FE0F",c:"1F58C",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[29,30],o:7},see_no_evil:{a:"See-No-Evil Monkey",b:"1F648",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["monkey","animal","nature","haha"],k:[32,43]},anchor:{a:"Anchor",b:"2693",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["ship","ferry","sea","boat"],k:[48,12],o:4},o:{a:"Heavy Large Circle",b:"2B55",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["circle","round"],k:[50,23],o:5},"flag-hk":{a:"Hong Kong Sar China Flag",b:"1F1ED-1F1F0",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[2,26]},cactus:{a:"Cactus",b:"1F335",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["vegetable","plant","nature"],k:[6,43]},lower_left_crayon:{a:"Lower Left Crayon",b:"1F58D-FE0F",c:"1F58D",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[29,31],o:7},hear_no_evil:{a:"Hear-No-Evil Monkey",b:"1F649",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["animal","monkey","nature"],k:[32,44]},boat:{a:"Sailboat",b:"26F5",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[48,43],n:["sailboat"],o:5},white_check_mark:{a:"White Heavy Check Mark",b:"2705",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["green-square","ok","agree","vote","election","answer","tick"],k:[49,15]},"flag-hm":{a:"Heard & Mcdonald Islands Flag",b:"1F1ED-1F1F2",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[2,27]},ear_of_rice:{a:"Ear of Rice",b:"1F33E",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["nature","plant"],k:[7,0]},memo:{a:"Memo",b:"1F4DD",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["write","documents","stationery","pencil","paper","writing","legal","exam","quiz","test","study","compose"],k:[26,20],n:["pencil"]},speak_no_evil:{a:"Speak-No-Evil Monkey",b:"1F64A",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["monkey","animal","nature","omg"],k:[32,45]},canoe:{a:"Canoe",b:"1F6F6",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["boat","paddle","water","ship"],k:[37,21],o:9},ballot_box_with_check:{a:"Ballot Box with Check",b:"2611-FE0F",c:"2611",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["ok","agree","confirm","black-square","vote","election","yes","tick"],k:[47,22],o:1},"flag-hn":{a:"Honduras Flag",b:"1F1ED-1F1F3",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[2,28]},herb:{a:"Herb",b:"1F33F",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["vegetable","plant","medicine","weed","grass","lawn"],k:[7,1]},baby:{skin_variations:{"1F3FB":{unified:"1F476-1F3FB",non_qualified:null,image:"1f476-1f3fb.png",sheet_x:22,sheet_y:11,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0},"1F3FC":{unified:"1F476-1F3FC",non_qualified:null,image:"1f476-1f3fc.png",sheet_x:22,sheet_y:12,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0},"1F3FD":{unified:"1F476-1F3FD",non_qualified:null,image:"1f476-1f3fd.png",sheet_x:22,sheet_y:13,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0},"1F3FE":{unified:"1F476-1F3FE",non_qualified:null,image:"1f476-1f3fe.png",sheet_x:22,sheet_y:14,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0},"1F3FF":{unified:"1F476-1F3FF",non_qualified:null,image:"1f476-1f3ff.png",sheet_x:22,sheet_y:15,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0}},a:"Baby",b:"1F476",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["child","boy","girl","toddler"],k:[22,10]},briefcase:{a:"Briefcase",b:"1F4BC",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["business","documents","work","law","legal","job","career"],k:[25,39]},speedboat:{a:"Speedboat",b:"1F6A4",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["ship","transportation","vehicle","summer"],k:[35,9]},heavy_check_mark:{a:"Heavy Check Mark",b:"2714-FE0F",c:"2714",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["ok","nike","answer","yes","tick"],k:[49,44],o:1},"flag-hr":{a:"Croatia Flag",b:"1F1ED-1F1F7",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[2,29]},file_folder:{a:"File Folder",b:"1F4C1",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["documents","business","office"],k:[25,44]},passenger_ship:{a:"Passenger Ship",b:"1F6F3-FE0F",c:"1F6F3",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["yacht","cruise","ferry"],k:[37,18],o:7},child:{skin_variations:{"1F3FB":{unified:"1F9D2-1F3FB",non_qualified:null,image:"1f9d2-1f3fb.png",sheet_x:43,sheet_y:5,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FC":{unified:"1F9D2-1F3FC",non_qualified:null,image:"1f9d2-1f3fc.png",sheet_x:43,sheet_y:6,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FD":{unified:"1F9D2-1F3FD",non_qualified:null,image:"1f9d2-1f3fd.png",sheet_x:43,sheet_y:7,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FE":{unified:"1F9D2-1F3FE",non_qualified:null,image:"1f9d2-1f3fe.png",sheet_x:43,sheet_y:8,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FF":{unified:"1F9D2-1F3FF",non_qualified:null,image:"1f9d2-1f3ff.png",sheet_x:43,sheet_y:9,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1}},a:"Child",b:"1F9D2",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["gender-neutral","young"],k:[43,4],o:10},shamrock:{a:"Shamrock",b:"2618-FE0F",c:"2618",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["vegetable","plant","nature","irish","clover"],k:[47,25],o:4},heavy_multiplication_x:{a:"Heavy Multiplication X",b:"2716-FE0F",c:"2716",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["math","calculation"],k:[49,45],o:1},"flag-ht":{a:"Haiti Flag",b:"1F1ED-1F1F9",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[2,30]},four_leaf_clover:{a:"Four Leaf Clover",b:"1F340",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["vegetable","plant","nature","lucky","irish"],k:[7,2]},boy:{skin_variations:{"1F3FB":{unified:"1F466-1F3FB",non_qualified:null,image:"1f466-1f3fb.png",sheet_x:15,sheet_y:43,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0},"1F3FC":{unified:"1F466-1F3FC",non_qualified:null,image:"1f466-1f3fc.png",sheet_x:15,sheet_y:44,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0},"1F3FD":{unified:"1F466-1F3FD",non_qualified:null,image:"1f466-1f3fd.png",sheet_x:15,sheet_y:45,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0},"1F3FE":{unified:"1F466-1F3FE",non_qualified:null,image:"1f466-1f3fe.png",sheet_x:15,sheet_y:46,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0},"1F3FF":{unified:"1F466-1F3FF",non_qualified:null,image:"1f466-1f3ff.png",sheet_x:15,sheet_y:47,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0}},a:"Boy",b:"1F466",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["man","male","guy","teenager"],k:[15,42]},open_file_folder:{a:"Open File Folder",b:"1F4C2",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["documents","load"],k:[25,45]},ferry:{a:"Ferry",b:"26F4-FE0F",c:"26F4",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["boat","ship","yacht"],k:[48,42],o:5},x:{a:"Cross Mark",b:"274C",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["no","delete","remove","cancel"],k:[50,1]},"flag-hu":{a:"Hungary Flag",b:"1F1ED-1F1FA",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[2,31]},maple_leaf:{a:"Maple Leaf",b:"1F341",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["nature","plant","vegetable","ca","fall"],k:[7,3]},girl:{skin_variations:{"1F3FB":{unified:"1F467-1F3FB",non_qualified:null,image:"1f467-1f3fb.png",sheet_x:15,sheet_y:49,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0},"1F3FC":{unified:"1F467-1F3FC",non_qualified:null,image:"1f467-1f3fc.png",sheet_x:15,sheet_y:50,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0},"1F3FD":{unified:"1F467-1F3FD",non_qualified:null,image:"1f467-1f3fd.png",sheet_x:15,sheet_y:51,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0},"1F3FE":{unified:"1F467-1F3FE",non_qualified:null,image:"1f467-1f3fe.png",sheet_x:16,sheet_y:0,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0},"1F3FF":{unified:"1F467-1F3FF",non_qualified:null,image:"1f467-1f3ff.png",sheet_x:16,sheet_y:1,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0}},a:"Girl",b:"1F467",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["female","woman","teenager"],k:[15,48]},card_index_dividers:{a:"Card Index Dividers",b:"1F5C2-FE0F",c:"1F5C2",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["organizing","business","stationery"],k:[30,4],o:7},motor_boat:{a:"Motor Boat",b:"1F6E5-FE0F",c:"1F6E5",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["ship"],k:[37,13],o:7},negative_squared_cross_mark:{a:"Negative Squared Cross Mark",b:"274E",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["x","green-square","no","deny"],k:[50,2]},"flag-ic":{a:"Canary Islands Flag",b:"1F1EE-1F1E8",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[2,32]},fallen_leaf:{a:"Fallen Leaf",b:"1F342",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["nature","plant","vegetable","leaves"],k:[7,4]},date:{a:"Calendar",b:"1F4C5",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["calendar","schedule"],k:[25,48]},ship:{a:"Ship",b:"1F6A2",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["transportation","titanic","deploy"],k:[34,42]},adult:{skin_variations:{"1F3FB":{unified:"1F9D1-1F3FB",non_qualified:null,image:"1f9d1-1f3fb.png",sheet_x:42,sheet_y:51,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FC":{unified:"1F9D1-1F3FC",non_qualified:null,image:"1f9d1-1f3fc.png",sheet_x:43,sheet_y:0,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FD":{unified:"1F9D1-1F3FD",non_qualified:null,image:"1f9d1-1f3fd.png",sheet_x:43,sheet_y:1,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FE":{unified:"1F9D1-1F3FE",non_qualified:null,image:"1f9d1-1f3fe.png",sheet_x:43,sheet_y:2,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FF":{unified:"1F9D1-1F3FF",non_qualified:null,image:"1f9d1-1f3ff.png",sheet_x:43,sheet_y:3,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1}},a:"Adult",b:"1F9D1",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["gender-neutral","person"],k:[42,50],o:10},heavy_plus_sign:{a:"Heavy Plus Sign",b:"2795",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["math","calculation","addition","more","increase"],k:[50,9]},"flag-id":{a:"Indonesia Flag",b:"1F1EE-1F1E9",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[2,33]},leaves:{a:"Leaf Fluttering in Wind",b:"1F343",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["nature","plant","tree","vegetable","grass","lawn","spring"],k:[7,5]},man:{skin_variations:{"1F3FB":{unified:"1F468-1F3FB",non_qualified:null,image:"1f468-1f3fb.png",sheet_x:18,sheet_y:12,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0},"1F3FC":{unified:"1F468-1F3FC",non_qualified:null,image:"1f468-1f3fc.png",sheet_x:18,sheet_y:13,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0},"1F3FD":{unified:"1F468-1F3FD",non_qualified:null,image:"1f468-1f3fd.png",sheet_x:18,sheet_y:14,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0},"1F3FE":{unified:"1F468-1F3FE",non_qualified:null,image:"1f468-1f3fe.png",sheet_x:18,sheet_y:15,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0},"1F3FF":{unified:"1F468-1F3FF",non_qualified:null,image:"1f468-1f3ff.png",sheet_x:18,sheet_y:16,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0}},a:"Man",b:"1F468",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["mustache","father","dad","guy","classy","sir","moustache"],k:[18,11]},calendar:{a:"Tear-off Calendar",b:"1F4C6",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["schedule","date","planning"],k:[25,49]},airplane:{a:"Airplane",b:"2708-FE0F",c:"2708",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["vehicle","transportation","flight","fly"],k:[49,16],o:1},heavy_minus_sign:{a:"Heavy Minus Sign",b:"2796",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["math","calculation","subtract","less"],k:[50,10]},"flag-ie":{a:"Ireland Flag",b:"1F1EE-1F1EA",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[2,34]},woman:{skin_variations:{"1F3FB":{unified:"1F469-1F3FB",non_qualified:null,image:"1f469-1f3fb.png",sheet_x:20,sheet_y:24,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0},"1F3FC":{unified:"1F469-1F3FC",non_qualified:null,image:"1f469-1f3fc.png",sheet_x:20,sheet_y:25,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0},"1F3FD":{unified:"1F469-1F3FD",non_qualified:null,image:"1f469-1f3fd.png",sheet_x:20,sheet_y:26,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0},"1F3FE":{unified:"1F469-1F3FE",non_qualified:null,image:"1f469-1f3fe.png",sheet_x:20,sheet_y:27,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0},"1F3FF":{unified:"1F469-1F3FF",non_qualified:null,image:"1f469-1f3ff.png",sheet_x:20,sheet_y:28,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0}},a:"Woman",b:"1F469",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["female","girls","lady"],k:[20,23]},spiral_note_pad:{a:"Spiral Note Pad",b:"1F5D2-FE0F",c:"1F5D2",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[30,8],o:7},small_airplane:{a:"Small Airplane",b:"1F6E9-FE0F",c:"1F6E9",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["flight","transportation","fly","vehicle"],k:[37,14],o:7},heavy_division_sign:{a:"Heavy Division Sign",b:"2797",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["divide","math","calculation"],k:[50,11]},"flag-il":{a:"Israel Flag",b:"1F1EE-1F1F1",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[2,35]},spiral_calendar_pad:{a:"Spiral Calendar Pad",b:"1F5D3-FE0F",c:"1F5D3",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[30,9],o:7},airplane_departure:{a:"Airplane Departure",b:"1F6EB",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[37,15],o:7},older_adult:{skin_variations:{"1F3FB":{unified:"1F9D3-1F3FB",non_qualified:null,image:"1f9d3-1f3fb.png",sheet_x:43,sheet_y:11,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FC":{unified:"1F9D3-1F3FC",non_qualified:null,image:"1f9d3-1f3fc.png",sheet_x:43,sheet_y:12,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FD":{unified:"1F9D3-1F3FD",non_qualified:null,image:"1f9d3-1f3fd.png",sheet_x:43,sheet_y:13,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FE":{unified:"1F9D3-1F3FE",non_qualified:null,image:"1f9d3-1f3fe.png",sheet_x:43,sheet_y:14,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FF":{unified:"1F9D3-1F3FF",non_qualified:null,image:"1f9d3-1f3ff.png",sheet_x:43,sheet_y:15,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1}},a:"Older Adult",b:"1F9D3",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["human","elder","senior","gender-neutral"],k:[43,10],o:10},curly_loop:{a:"Curly Loop",b:"27B0",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["scribble","draw","shape","squiggle"],k:[50,13]},"flag-im":{a:"Isle of Man Flag",b:"1F1EE-1F1F2",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[2,36]},older_man:{skin_variations:{"1F3FB":{unified:"1F474-1F3FB",non_qualified:null,image:"1f474-1f3fb.png",sheet_x:21,sheet_y:51,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0},"1F3FC":{unified:"1F474-1F3FC",non_qualified:null,image:"1f474-1f3fc.png",sheet_x:22,sheet_y:0,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0},"1F3FD":{unified:"1F474-1F3FD",non_qualified:null,image:"1f474-1f3fd.png",sheet_x:22,sheet_y:1,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0},"1F3FE":{unified:"1F474-1F3FE",non_qualified:null,image:"1f474-1f3fe.png",sheet_x:22,sheet_y:2,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0},"1F3FF":{unified:"1F474-1F3FF",non_qualified:null,image:"1f474-1f3ff.png",sheet_x:22,sheet_y:3,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0}},a:"Older Man",b:"1F474",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["human","male","men","old","elder","senior"],k:[21,50]},card_index:{a:"Card Index",b:"1F4C7",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["business","stationery"],k:[25,50]},airplane_arriving:{a:"Airplane Arriving",b:"1F6EC",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[37,16],o:7},loop:{a:"Double Curly Loop",b:"27BF",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["tape","cassette"],k:[50,14]},"flag-in":{a:"India Flag",b:"1F1EE-1F1F3",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[2,37]},older_woman:{skin_variations:{"1F3FB":{unified:"1F475-1F3FB",non_qualified:null,image:"1f475-1f3fb.png",sheet_x:22,sheet_y:5,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0},"1F3FC":{unified:"1F475-1F3FC",non_qualified:null,image:"1f475-1f3fc.png",sheet_x:22,sheet_y:6,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0},"1F3FD":{unified:"1F475-1F3FD",non_qualified:null,image:"1f475-1f3fd.png",sheet_x:22,sheet_y:7,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0},"1F3FE":{unified:"1F475-1F3FE",non_qualified:null,image:"1f475-1f3fe.png",sheet_x:22,sheet_y:8,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0},"1F3FF":{unified:"1F475-1F3FF",non_qualified:null,image:"1f475-1f3ff.png",sheet_x:22,sheet_y:9,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0}},a:"Older Woman",b:"1F475",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["human","female","women","lady","old","elder","senior"],k:[22,4]},seat:{a:"Seat",b:"1F4BA",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["sit","airplane","transport","bus","flight","fly"],k:[25,37]},chart_with_upwards_trend:{a:"Chart with Upwards Trend",b:"1F4C8",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["graph","presentation","stats","recovery","business","economics","money","sales","good","success"],k:[25,51]},part_alternation_mark:{a:"Part Alternation Mark",b:"303D-FE0F",c:"303D",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["graph","presentation","stats","business","economics","bad"],k:[50,25],o:3},"flag-io":{a:"British Indian Ocean Territory Flag",b:"1F1EE-1F1F4",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[2,38]},"male-doctor":{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:44,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"1F3FC":{unified:"1F468-1F3FC-200D-2695-FE0F",non_qualified:"1F468-1F3FC-200D-2695",image:"1f468-1f3fc-200d-2695-fe0f.png",sheet_x:17,sheet_y:45,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"1F3FD":{unified:"1F468-1F3FD-200D-2695-FE0F",non_qualified:"1F468-1F3FD-200D-2695",image:"1f468-1f3fd-200d-2695-fe0f.png",sheet_x:17,sheet_y:46,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"1F3FE":{unified:"1F468-1F3FE-200D-2695-FE0F",non_qualified:"1F468-1F3FE-200D-2695",image:"1f468-1f3fe-200d-2695-fe0f.png",sheet_x:17,sheet_y:47,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"1F3FF":{unified:"1F468-1F3FF-200D-2695-FE0F",non_qualified:"1F468-1F3FF-200D-2695",image:"1f468-1f3ff-200d-2695-fe0f.png",sheet_x:17,sheet_y:48,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1}},a:"Male Doctor",b:"1F468-200D-2695-FE0F",c:"1F468-200D-2695",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[17,43]},chart_with_downwards_trend:{a:"Chart with Downwards Trend",b:"1F4C9",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["graph","presentation","stats","recession","business","economics","money","sales","bad","failure"],k:[26,0]},helicopter:{a:"Helicopter",b:"1F681",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["transportation","vehicle","fly"],k:[34,9]},eight_spoked_asterisk:{a:"Eight Spoked Asterisk",b:"2733-FE0F",c:"2733",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["star","sparkle","green-square"],k:[49,49],o:1},"flag-iq":{a:"Iraq Flag",b:"1F1EE-1F1F6",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[2,39]},"female-doctor":{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:2,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:3,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:4,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:5,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:6,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1}},a:"Female Doctor",b:"1F469-200D-2695-FE0F",c:"1F469-200D-2695",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[20,1]},bar_chart:{a:"Bar Chart",b:"1F4CA",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["graph","presentation","stats"],k:[26,1]},suspension_railway:{a:"Suspension Railway",b:"1F69F",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["vehicle","transportation"],k:[34,39]},eight_pointed_black_star:{a:"Eight Pointed Black Star",b:"2734-FE0F",c:"2734",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["orange-square","shape","polygon"],k:[49,50],o:1},"flag-ir":{a:"Iran Flag",b:"1F1EE-1F1F7",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[2,40]},"male-student":{skin_variations:{"1F3FB":{unified:"1F468-1F3FB-200D-1F393",non_qualified:null,image:"1f468-1f3fb-200d-1f393.png",sheet_x:16,sheet_y:15,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FC":{unified:"1F468-1F3FC-200D-1F393",non_qualified:null,image:"1f468-1f3fc-200d-1f393.png",sheet_x:16,sheet_y:16,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FD":{unified:"1F468-1F3FD-200D-1F393",non_qualified:null,image:"1f468-1f3fd-200d-1f393.png",sheet_x:16,sheet_y:17,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FE":{unified:"1F468-1F3FE-200D-1F393",non_qualified:null,image:"1f468-1f3fe-200d-1f393.png",sheet_x:16,sheet_y:18,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FF":{unified:"1F468-1F3FF-200D-1F393",non_qualified:null,image:"1f468-1f3ff-200d-1f393.png",sheet_x:16,sheet_y:19,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1}},a:"Male Student",b:"1F468-200D-1F393",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[16,14]},clipboard:{a:"Clipboard",b:"1F4CB",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["stationery","documents"],k:[26,2]},mountain_cableway:{a:"Mountain Cableway",b:"1F6A0",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["transportation","vehicle","ski"],k:[34,40]},sparkle:{a:"Sparkle",b:"2747-FE0F",c:"2747",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["stars","green-square","awesome","good","fireworks"],k:[50,0],o:1},"flag-is":{a:"Iceland Flag",b:"1F1EE-1F1F8",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[2,41]},"female-student":{skin_variations:{"1F3FB":{unified:"1F469-1F3FB-200D-1F393",non_qualified:null,image:"1f469-1f3fb-200d-1f393.png",sheet_x:18,sheet_y:30,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FC":{unified:"1F469-1F3FC-200D-1F393",non_qualified:null,image:"1f469-1f3fc-200d-1f393.png",sheet_x:18,sheet_y:31,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FD":{unified:"1F469-1F3FD-200D-1F393",non_qualified:null,image:"1f469-1f3fd-200d-1f393.png",sheet_x:18,sheet_y:32,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FE":{unified:"1F469-1F3FE-200D-1F393",non_qualified:null,image:"1f469-1f3fe-200d-1f393.png",sheet_x:18,sheet_y:33,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FF":{unified:"1F469-1F3FF-200D-1F393",non_qualified:null,image:"1f469-1f3ff-200d-1f393.png",sheet_x:18,sheet_y:34,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1}},a:"Female Student",b:"1F469-200D-1F393",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[18,29]},pushpin:{a:"Pushpin",b:"1F4CC",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["stationery","mark","here"],k:[26,3]},aerial_tramway:{a:"Aerial Tramway",b:"1F6A1",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["transportation","vehicle","ski"],k:[34,41]},bangbang:{a:"Double Exclamation Mark",b:"203C-FE0F",c:"203C",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["exclamation","surprise"],k:[46,29],o:1},it:{a:"Italy Flag",b:"1F1EE-1F1F9",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["italy","flag","nation","country","banner"],k:[2,42],n:["flag-it"]},"male-teacher":{skin_variations:{"1F3FB":{unified:"1F468-1F3FB-200D-1F3EB",non_qualified:null,image:"1f468-1f3fb-200d-1f3eb.png",sheet_x:16,sheet_y:33,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FC":{unified:"1F468-1F3FC-200D-1F3EB",non_qualified:null,image:"1f468-1f3fc-200d-1f3eb.png",sheet_x:16,sheet_y:34,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FD":{unified:"1F468-1F3FD-200D-1F3EB",non_qualified:null,image:"1f468-1f3fd-200d-1f3eb.png",sheet_x:16,sheet_y:35,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FE":{unified:"1F468-1F3FE-200D-1F3EB",non_qualified:null,image:"1f468-1f3fe-200d-1f3eb.png",sheet_x:16,sheet_y:36,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FF":{unified:"1F468-1F3FF-200D-1F3EB",non_qualified:null,image:"1f468-1f3ff-200d-1f3eb.png",sheet_x:16,sheet_y:37,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1}},a:"Male Teacher",b:"1F468-200D-1F3EB",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[16,32]},round_pushpin:{a:"Round Pushpin",b:"1F4CD",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["stationery","location","map","here"],k:[26,4]},satellite:{a:"Satellite",b:"1F6F0-FE0F",c:"1F6F0",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["communication","future","radio","space"],k:[37,17],o:7},interrobang:{a:"Exclamation Question Mark",b:"2049-FE0F",c:"2049",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["wat","punctuation","surprise"],k:[46,30],o:3},"flag-je":{a:"Jersey Flag",b:"1F1EF-1F1EA",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[2,43]},"female-teacher":{skin_variations:{"1F3FB":{unified:"1F469-1F3FB-200D-1F3EB",non_qualified:null,image:"1f469-1f3fb-200d-1f3eb.png",sheet_x:18,sheet_y:48,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FC":{unified:"1F469-1F3FC-200D-1F3EB",non_qualified:null,image:"1f469-1f3fc-200d-1f3eb.png",sheet_x:18,sheet_y:49,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FD":{unified:"1F469-1F3FD-200D-1F3EB",non_qualified:null,image:"1f469-1f3fd-200d-1f3eb.png",sheet_x:18,sheet_y:50,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FE":{unified:"1F469-1F3FE-200D-1F3EB",non_qualified:null,image:"1f469-1f3fe-200d-1f3eb.png",sheet_x:18,sheet_y:51,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FF":{unified:"1F469-1F3FF-200D-1F3EB",non_qualified:null,image:"1f469-1f3ff-200d-1f3eb.png",sheet_x:19,sheet_y:0,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1}},a:"Female Teacher",b:"1F469-200D-1F3EB",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[18,47]},paperclip:{a:"Paperclip",b:"1F4CE",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["documents","stationery"],k:[26,5]},rocket:{a:"Rocket",b:"1F680",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["launch","ship","staffmode","NASA","outer space","outer_space","fly"],k:[34,8]},question:{a:"Black Question Mark Ornament",b:"2753",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["doubt","confused"],k:[50,3]},"flag-jm":{a:"Jamaica Flag",b:"1F1EF-1F1F2",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[2,44]},"male-judge":{skin_variations:{"1F3FB":{unified:"1F468-1F3FB-200D-2696-FE0F",non_qualified:"1F468-1F3FB-200D-2696",image:"1f468-1f3fb-200d-2696-fe0f.png",sheet_x:17,sheet_y:50,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"1F3FC":{unified:"1F468-1F3FC-200D-2696-FE0F",non_qualified:"1F468-1F3FC-200D-2696",image:"1f468-1f3fc-200d-2696-fe0f.png",sheet_x:17,sheet_y:51,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:0,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:1,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:2,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1}},a:"Male Judge",b:"1F468-200D-2696-FE0F",c:"1F468-200D-2696",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[17,49]},linked_paperclips:{a:"Linked Paperclips",b:"1F587-FE0F",c:"1F587",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[29,27],o:7},flying_saucer:{a:"Flying Saucer",b:"1F6F8",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["transportation","vehicle","ufo"],k:[37,23],o:10},grey_question:{a:"White Question Mark Ornament",b:"2754",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["doubts","gray","huh","confused"],k:[50,4]},"flag-jo":{a:"Jordan Flag",b:"1F1EF-1F1F4",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[2,45]},"female-judge":{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:8,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:9,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:10,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:11,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:12,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1}},a:"Female Judge",b:"1F469-200D-2696-FE0F",c:"1F469-200D-2696",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[20,7]},straight_ruler:{a:"Straight Ruler",b:"1F4CF",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["stationery","calculate","length","math","school","drawing","architect","sketch"],k:[26,6]},bellhop_bell:{a:"Bellhop Bell",b:"1F6CE-FE0F",c:"1F6CE",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["service"],k:[37,3],o:7},grey_exclamation:{a:"White Exclamation Mark Ornament",b:"2755",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["surprise","punctuation","gray","wow","warning"],k:[50,5]},jp:{a:"Japan Flag",b:"1F1EF-1F1F5",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["japanese","nation","flag","country","banner"],k:[2,46],n:["flag-jp"]},"male-farmer":{skin_variations:{"1F3FB":{unified:"1F468-1F3FB-200D-1F33E",non_qualified:null,image:"1f468-1f3fb-200d-1f33e.png",sheet_x:16,sheet_y:3,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FC":{unified:"1F468-1F3FC-200D-1F33E",non_qualified:null,image:"1f468-1f3fc-200d-1f33e.png",sheet_x:16,sheet_y:4,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FD":{unified:"1F468-1F3FD-200D-1F33E",non_qualified:null,image:"1f468-1f3fd-200d-1f33e.png",sheet_x:16,sheet_y:5,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FE":{unified:"1F468-1F3FE-200D-1F33E",non_qualified:null,image:"1f468-1f3fe-200d-1f33e.png",sheet_x:16,sheet_y:6,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FF":{unified:"1F468-1F3FF-200D-1F33E",non_qualified:null,image:"1f468-1f3ff-200d-1f33e.png",sheet_x:16,sheet_y:7,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1}},a:"Male Farmer",b:"1F468-200D-1F33E",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[16,2]},triangular_ruler:{a:"Triangular Ruler",b:"1F4D0",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["stationery","math","architect","sketch"],k:[26,7]},door:{a:"Door",b:"1F6AA",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["house","entry","exit"],k:[35,15]},exclamation:{a:"Heavy Exclamation Mark Symbol",b:"2757",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["heavy_exclamation_mark","danger","surprise","punctuation","wow","warning"],k:[50,6],n:["heavy_exclamation_mark"],o:5},"flag-ke":{a:"Kenya Flag",b:"1F1F0-1F1EA",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[2,47]},"female-farmer":{skin_variations:{"1F3FB":{unified:"1F469-1F3FB-200D-1F33E",non_qualified:null,image:"1f469-1f3fb-200d-1f33e.png",sheet_x:18,sheet_y:18,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FC":{unified:"1F469-1F3FC-200D-1F33E",non_qualified:null,image:"1f469-1f3fc-200d-1f33e.png",sheet_x:18,sheet_y:19,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FD":{unified:"1F469-1F3FD-200D-1F33E",non_qualified:null,image:"1f469-1f3fd-200d-1f33e.png",sheet_x:18,sheet_y:20,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FE":{unified:"1F469-1F3FE-200D-1F33E",non_qualified:null,image:"1f469-1f3fe-200d-1f33e.png",sheet_x:18,sheet_y:21,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FF":{unified:"1F469-1F3FF-200D-1F33E",non_qualified:null,image:"1f469-1f3ff-200d-1f33e.png",sheet_x:18,sheet_y:22,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1}},a:"Female Farmer",b:"1F469-200D-1F33E",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[18,17]},bed:{a:"Bed",b:"1F6CF-FE0F",c:"1F6CF",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["sleep","rest"],k:[37,4],o:7},scissors:{a:"Black Scissors",b:"2702-FE0F",c:"2702",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["stationery","cut"],k:[49,14],o:1},wavy_dash:{a:"Wavy Dash",b:"3030-FE0F",c:"3030",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["draw","line","moustache","mustache","squiggle","scribble"],k:[50,24],o:1},copyright:{a:"Copyright Sign",b:"00A9-FE0F",c:"00A9",d:!0,e:!0,f:!1,g:!0,h:!1,i:!1,j:["ip","license","circle","law","legal"],k:[0,12],o:1},"flag-kg":{a:"Kyrgyzstan Flag",b:"1F1F0-1F1EC",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[2,48]},"male-cook":{skin_variations:{"1F3FB":{unified:"1F468-1F3FB-200D-1F373",non_qualified:null,image:"1f468-1f3fb-200d-1f373.png",sheet_x:16,sheet_y:9,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FC":{unified:"1F468-1F3FC-200D-1F373",non_qualified:null,image:"1f468-1f3fc-200d-1f373.png",sheet_x:16,sheet_y:10,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FD":{unified:"1F468-1F3FD-200D-1F373",non_qualified:null,image:"1f468-1f3fd-200d-1f373.png",sheet_x:16,sheet_y:11,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FE":{unified:"1F468-1F3FE-200D-1F373",non_qualified:null,image:"1f468-1f3fe-200d-1f373.png",sheet_x:16,sheet_y:12,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FF":{unified:"1F468-1F3FF-200D-1F373",non_qualified:null,image:"1f468-1f3ff-200d-1f373.png",sheet_x:16,sheet_y:13,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1}},a:"Male Cook",b:"1F468-200D-1F373",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[16,8]},card_file_box:{a:"Card File Box",b:"1F5C3-FE0F",c:"1F5C3",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["business","stationery"],k:[30,5],o:7},couch_and_lamp:{a:"Couch and Lamp",b:"1F6CB-FE0F",c:"1F6CB",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["read","chill"],k:[36,47],o:7},registered:{a:"Registered Sign",b:"00AE-FE0F",c:"00AE",d:!0,e:!0,f:!1,g:!0,h:!1,i:!1,j:["alphabet","circle"],k:[0,13],o:1},"flag-kh":{a:"Cambodia Flag",b:"1F1F0-1F1ED",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[2,49]},"female-cook":{skin_variations:{"1F3FB":{unified:"1F469-1F3FB-200D-1F373",non_qualified:null,image:"1f469-1f3fb-200d-1f373.png",sheet_x:18,sheet_y:24,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FC":{unified:"1F469-1F3FC-200D-1F373",non_qualified:null,image:"1f469-1f3fc-200d-1f373.png",sheet_x:18,sheet_y:25,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FD":{unified:"1F469-1F3FD-200D-1F373",non_qualified:null,image:"1f469-1f3fd-200d-1f373.png",sheet_x:18,sheet_y:26,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FE":{unified:"1F469-1F3FE-200D-1F373",non_qualified:null,image:"1f469-1f3fe-200d-1f373.png",sheet_x:18,sheet_y:27,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FF":{unified:"1F469-1F3FF-200D-1F373",non_qualified:null,image:"1f469-1f3ff-200d-1f373.png",sheet_x:18,sheet_y:28,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1}},a:"Female Cook",b:"1F469-200D-1F373",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[18,23]},file_cabinet:{a:"File Cabinet",b:"1F5C4-FE0F",c:"1F5C4",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["filing","organizing"],k:[30,6],o:7},toilet:{a:"Toilet",b:"1F6BD",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["restroom","wc","washroom","bathroom","potty"],k:[36,33]},"flag-ki":{a:"Kiribati Flag",b:"1F1F0-1F1EE",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[2,50]},"male-mechanic":{skin_variations:{"1F3FB":{unified:"1F468-1F3FB-200D-1F527",non_qualified:null,image:"1f468-1f3fb-200d-1f527.png",sheet_x:17,sheet_y:20,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FC":{unified:"1F468-1F3FC-200D-1F527",non_qualified:null,image:"1f468-1f3fc-200d-1f527.png",sheet_x:17,sheet_y:21,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FD":{unified:"1F468-1F3FD-200D-1F527",non_qualified:null,image:"1f468-1f3fd-200d-1f527.png",sheet_x:17,sheet_y:22,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FE":{unified:"1F468-1F3FE-200D-1F527",non_qualified:null,image:"1f468-1f3fe-200d-1f527.png",sheet_x:17,sheet_y:23,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FF":{unified:"1F468-1F3FF-200D-1F527",non_qualified:null,image:"1f468-1f3ff-200d-1f527.png",sheet_x:17,sheet_y:24,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1}},a:"Male Mechanic",b:"1F468-200D-1F527",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[17,19]},wastebasket:{a:"Wastebasket",b:"1F5D1-FE0F",c:"1F5D1",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["bin","trash","rubbish","garbage","toss"],k:[30,7],o:7},shower:{a:"Shower",b:"1F6BF",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["clean","water","bathroom"],k:[36,35]},tm:{a:"Trade Mark Sign",b:"2122-FE0F",c:"2122",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["trademark","brand","law","legal"],k:[46,31],o:1},hash:{a:"Hash Key",b:"0023-FE0F-20E3",c:"0023-20E3",d:!0,e:!0,f:!0,g:!0,h:!1,i:!1,j:["symbol","blue-square","twitter"],k:[0,0],o:3},"flag-km":{a:"Comoros Flag",b:"1F1F0-1F1F2",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[2,51]},"female-mechanic":{skin_variations:{"1F3FB":{unified:"1F469-1F3FB-200D-1F527",non_qualified:null,image:"1f469-1f3fb-200d-1f527.png",sheet_x:19,sheet_y:30,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FC":{unified:"1F469-1F3FC-200D-1F527",non_qualified:null,image:"1f469-1f3fc-200d-1f527.png",sheet_x:19,sheet_y:31,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FD":{unified:"1F469-1F3FD-200D-1F527",non_qualified:null,image:"1f469-1f3fd-200d-1f527.png",sheet_x:19,sheet_y:32,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FE":{unified:"1F469-1F3FE-200D-1F527",non_qualified:null,image:"1f469-1f3fe-200d-1f527.png",sheet_x:19,sheet_y:33,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FF":{unified:"1F469-1F3FF-200D-1F527",non_qualified:null,image:"1f469-1f3ff-200d-1f527.png",sheet_x:19,sheet_y:34,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1}},a:"Female Mechanic",b:"1F469-200D-1F527",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[19,29]},lock:{a:"Lock",b:"1F512",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["security","password","padlock"],k:[27,20]},bathtub:{a:"Bathtub",b:"1F6C1",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["clean","shower","bathroom"],k:[36,42]},keycap_star:{a:"Keycap Star",b:"002A-FE0F-20E3",c:"002A-20E3",d:!0,e:!0,f:!0,g:!0,h:!1,i:!1,k:[0,1],o:3},"flag-kn":{a:"St. Kitts & Nevis Flag",b:"1F1F0-1F1F3",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[3,0]},"male-factory-worker":{skin_variations:{"1F3FB":{unified:"1F468-1F3FB-200D-1F3ED",non_qualified:null,image:"1f468-1f3fb-200d-1f3ed.png",sheet_x:16,sheet_y:39,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FC":{unified:"1F468-1F3FC-200D-1F3ED",non_qualified:null,image:"1f468-1f3fc-200d-1f3ed.png",sheet_x:16,sheet_y:40,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FD":{unified:"1F468-1F3FD-200D-1F3ED",non_qualified:null,image:"1f468-1f3fd-200d-1f3ed.png",sheet_x:16,sheet_y:41,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FE":{unified:"1F468-1F3FE-200D-1F3ED",non_qualified:null,image:"1f468-1f3fe-200d-1f3ed.png",sheet_x:16,sheet_y:42,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FF":{unified:"1F468-1F3FF-200D-1F3ED",non_qualified:null,image:"1f468-1f3ff-200d-1f3ed.png",sheet_x:16,sheet_y:43,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1}},a:"Male Factory Worker",b:"1F468-200D-1F3ED",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[16,38]},unlock:{a:"Open Lock",b:"1F513",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["privacy","security"],k:[27,21]},hourglass:{a:"Hourglass",b:"231B",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["time","clock","oldschool","limit","exam","quiz","test"],k:[46,42],o:1},zero:{a:"Keycap 0",b:"0030-FE0F-20E3",c:"0030-20E3",d:!0,e:!0,f:!0,g:!0,h:!1,i:!1,j:["0","numbers","blue-square","null"],k:[0,2],o:3},"flag-kp":{a:"North Korea Flag",b:"1F1F0-1F1F5",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[3,1]},"female-factory-worker":{skin_variations:{"1F3FB":{unified:"1F469-1F3FB-200D-1F3ED",non_qualified:null,image:"1f469-1f3fb-200d-1f3ed.png",sheet_x:19,sheet_y:2,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FC":{unified:"1F469-1F3FC-200D-1F3ED",non_qualified:null,image:"1f469-1f3fc-200d-1f3ed.png",sheet_x:19,sheet_y:3,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FD":{unified:"1F469-1F3FD-200D-1F3ED",non_qualified:null,image:"1f469-1f3fd-200d-1f3ed.png",sheet_x:19,sheet_y:4,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FE":{unified:"1F469-1F3FE-200D-1F3ED",non_qualified:null,image:"1f469-1f3fe-200d-1f3ed.png",sheet_x:19,sheet_y:5,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FF":{unified:"1F469-1F3FF-200D-1F3ED",non_qualified:null,image:"1f469-1f3ff-200d-1f3ed.png",sheet_x:19,sheet_y:6,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1}},a:"Female Factory Worker",b:"1F469-200D-1F3ED",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[19,1]},lock_with_ink_pen:{a:"Lock with Ink Pen",b:"1F50F",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["security","secret"],k:[27,17]},hourglass_flowing_sand:{a:"Hourglass with Flowing Sand",b:"23F3",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["oldschool","time","countdown"],k:[47,3]},one:{a:"Keycap 1",b:"0031-FE0F-20E3",c:"0031-20E3",d:!0,e:!0,f:!0,g:!0,h:!1,i:!1,j:["blue-square","numbers","1"],k:[0,3],o:3},kr:{a:"South Korea Flag",b:"1F1F0-1F1F7",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["south","korea","nation","flag","country","banner"],k:[3,2],n:["flag-kr"]},"male-office-worker":{skin_variations:{"1F3FB":{unified:"1F468-1F3FB-200D-1F4BC",non_qualified:null,image:"1f468-1f3fb-200d-1f4bc.png",sheet_x:17,sheet_y:14,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FC":{unified:"1F468-1F3FC-200D-1F4BC",non_qualified:null,image:"1f468-1f3fc-200d-1f4bc.png",sheet_x:17,sheet_y:15,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FD":{unified:"1F468-1F3FD-200D-1F4BC",non_qualified:null,image:"1f468-1f3fd-200d-1f4bc.png",sheet_x:17,sheet_y:16,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FE":{unified:"1F468-1F3FE-200D-1F4BC",non_qualified:null,image:"1f468-1f3fe-200d-1f4bc.png",sheet_x:17,sheet_y:17,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FF":{unified:"1F468-1F3FF-200D-1F4BC",non_qualified:null,image:"1f468-1f3ff-200d-1f4bc.png",sheet_x:17,sheet_y:18,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1}},a:"Male Office Worker",b:"1F468-200D-1F4BC",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[17,13]},closed_lock_with_key:{a:"Closed Lock with Key",b:"1F510",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["security","privacy"],k:[27,18]},watch:{a:"Watch",b:"231A",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["time","accessories"],k:[46,41],o:1},two:{a:"Keycap 2",b:"0032-FE0F-20E3",c:"0032-20E3",d:!0,e:!0,f:!0,g:!0,h:!1,i:!1,j:["numbers","2","prime","blue-square"],k:[0,4],o:3},"flag-kw":{a:"Kuwait Flag",b:"1F1F0-1F1FC",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[3,3]},"female-office-worker":{skin_variations:{"1F3FB":{unified:"1F469-1F3FB-200D-1F4BC",non_qualified:null,image:"1f469-1f3fb-200d-1f4bc.png",sheet_x:19,sheet_y:24,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FC":{unified:"1F469-1F3FC-200D-1F4BC",non_qualified:null,image:"1f469-1f3fc-200d-1f4bc.png",sheet_x:19,sheet_y:25,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FD":{unified:"1F469-1F3FD-200D-1F4BC",non_qualified:null,image:"1f469-1f3fd-200d-1f4bc.png",sheet_x:19,sheet_y:26,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FE":{unified:"1F469-1F3FE-200D-1F4BC",non_qualified:null,image:"1f469-1f3fe-200d-1f4bc.png",sheet_x:19,sheet_y:27,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FF":{unified:"1F469-1F3FF-200D-1F4BC",non_qualified:null,image:"1f469-1f3ff-200d-1f4bc.png",sheet_x:19,sheet_y:28,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1}},a:"Female Office Worker",b:"1F469-200D-1F4BC",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[19,23]},key:{a:"Key",b:"1F511",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["lock","door","password"],k:[27,19]},alarm_clock:{a:"Alarm Clock",b:"23F0",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["time","wake"],k:[47,0]},three:{a:"Keycap 3",b:"0033-FE0F-20E3",c:"0033-20E3",d:!0,e:!0,f:!0,g:!0,h:!1,i:!1,j:["3","numbers","prime","blue-square"],k:[0,5],o:3},"flag-ky":{a:"Cayman Islands Flag",b:"1F1F0-1F1FE",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[3,4]},"male-scientist":{skin_variations:{"1F3FB":{unified:"1F468-1F3FB-200D-1F52C",non_qualified:null,image:"1f468-1f3fb-200d-1f52c.png",sheet_x:17,sheet_y:26,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FC":{unified:"1F468-1F3FC-200D-1F52C",non_qualified:null,image:"1f468-1f3fc-200d-1f52c.png",sheet_x:17,sheet_y:27,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FD":{unified:"1F468-1F3FD-200D-1F52C",non_qualified:null,image:"1f468-1f3fd-200d-1f52c.png",sheet_x:17,sheet_y:28,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FE":{unified:"1F468-1F3FE-200D-1F52C",non_qualified:null,image:"1f468-1f3fe-200d-1f52c.png",sheet_x:17,sheet_y:29,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FF":{unified:"1F468-1F3FF-200D-1F52C",non_qualified:null,image:"1f468-1f3ff-200d-1f52c.png",sheet_x:17,sheet_y:30,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1}},a:"Male Scientist",b:"1F468-200D-1F52C",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[17,25]},old_key:{a:"Old Key",b:"1F5DD-FE0F",c:"1F5DD",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["lock","door","password"],k:[30,11],o:7},stopwatch:{a:"Stopwatch",b:"23F1-FE0F",c:"23F1",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["time","deadline"],k:[47,1]},four:{a:"Keycap 4",b:"0034-FE0F-20E3",c:"0034-20E3",d:!0,e:!0,f:!0,g:!0,h:!1,i:!1,j:["4","numbers","blue-square"],k:[0,6],o:3},"flag-kz":{a:"Kazakhstan Flag",b:"1F1F0-1F1FF",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[3,5]},"female-scientist":{skin_variations:{"1F3FB":{unified:"1F469-1F3FB-200D-1F52C",non_qualified:null,image:"1f469-1f3fb-200d-1f52c.png",sheet_x:19,sheet_y:36,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FC":{unified:"1F469-1F3FC-200D-1F52C",non_qualified:null,image:"1f469-1f3fc-200d-1f52c.png",sheet_x:19,sheet_y:37,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FD":{unified:"1F469-1F3FD-200D-1F52C",non_qualified:null,image:"1f469-1f3fd-200d-1f52c.png",sheet_x:19,sheet_y:38,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FE":{unified:"1F469-1F3FE-200D-1F52C",non_qualified:null,image:"1f469-1f3fe-200d-1f52c.png",sheet_x:19,sheet_y:39,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FF":{unified:"1F469-1F3FF-200D-1F52C",non_qualified:null,image:"1f469-1f3ff-200d-1f52c.png",sheet_x:19,sheet_y:40,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1}},a:"Female Scientist",b:"1F469-200D-1F52C",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[19,35]},hammer:{a:"Hammer",b:"1F528",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["tools","build","create"],k:[27,42]},timer_clock:{a:"Timer Clock",b:"23F2-FE0F",c:"23F2",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["alarm"],k:[47,2]},five:{a:"Keycap 5",b:"0035-FE0F-20E3",c:"0035-20E3",d:!0,e:!0,f:!0,g:!0,h:!1,i:!1,j:["5","numbers","blue-square","prime"],k:[0,7],o:3},"flag-la":{a:"Laos Flag",b:"1F1F1-1F1E6",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[3,6]},"male-technologist":{skin_variations:{"1F3FB":{unified:"1F468-1F3FB-200D-1F4BB",non_qualified:null,image:"1f468-1f3fb-200d-1f4bb.png",sheet_x:17,sheet_y:8,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FC":{unified:"1F468-1F3FC-200D-1F4BB",non_qualified:null,image:"1f468-1f3fc-200d-1f4bb.png",sheet_x:17,sheet_y:9,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FD":{unified:"1F468-1F3FD-200D-1F4BB",non_qualified:null,image:"1f468-1f3fd-200d-1f4bb.png",sheet_x:17,sheet_y:10,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FE":{unified:"1F468-1F3FE-200D-1F4BB",non_qualified:null,image:"1f468-1f3fe-200d-1f4bb.png",sheet_x:17,sheet_y:11,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FF":{unified:"1F468-1F3FF-200D-1F4BB",non_qualified:null,image:"1f468-1f3ff-200d-1f4bb.png",sheet_x:17,sheet_y:12,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1}},a:"Male Technologist",b:"1F468-200D-1F4BB",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[17,7]},mantelpiece_clock:{a:"Mantelpiece Clock",b:"1F570-FE0F",c:"1F570",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["time"],k:[28,43],o:7},pick:{a:"Pick",b:"26CF-FE0F",c:"26CF",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["tools","dig"],k:[48,32],o:5},six:{a:"Keycap 6",b:"0036-FE0F-20E3",c:"0036-20E3",d:!0,e:!0,f:!0,g:!0,h:!1,i:!1,j:["6","numbers","blue-square"],k:[0,8],o:3},"flag-lb":{a:"Lebanon Flag",b:"1F1F1-1F1E7",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[3,7]},"female-technologist":{skin_variations:{"1F3FB":{unified:"1F469-1F3FB-200D-1F4BB",non_qualified:null,image:"1f469-1f3fb-200d-1f4bb.png",sheet_x:19,sheet_y:18,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FC":{unified:"1F469-1F3FC-200D-1F4BB",non_qualified:null,image:"1f469-1f3fc-200d-1f4bb.png",sheet_x:19,sheet_y:19,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FD":{unified:"1F469-1F3FD-200D-1F4BB",non_qualified:null,image:"1f469-1f3fd-200d-1f4bb.png",sheet_x:19,sheet_y:20,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FE":{unified:"1F469-1F3FE-200D-1F4BB",non_qualified:null,image:"1f469-1f3fe-200d-1f4bb.png",sheet_x:19,sheet_y:21,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FF":{unified:"1F469-1F3FF-200D-1F4BB",non_qualified:null,image:"1f469-1f3ff-200d-1f4bb.png",sheet_x:19,sheet_y:22,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1}},a:"Female Technologist",b:"1F469-200D-1F4BB",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[19,17]},clock12:{a:"Clock Face Twelve Oclock",b:"1F55B",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["time","noon","midnight","midday","late","early","schedule"],k:[28,29]},hammer_and_pick:{a:"Hammer and Pick",b:"2692-FE0F",c:"2692",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["tools","build","create"],k:[48,11],o:4},seven:{a:"Keycap 7",b:"0037-FE0F-20E3",c:"0037-20E3",d:!0,e:!0,f:!0,g:!0,h:!1,i:!1,j:["7","numbers","blue-square","prime"],k:[0,9],o:3},"flag-lc":{a:"St. Lucia Flag",b:"1F1F1-1F1E8",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[3,8]},"male-singer":{skin_variations:{"1F3FB":{unified:"1F468-1F3FB-200D-1F3A4",non_qualified:null,image:"1f468-1f3fb-200d-1f3a4.png",sheet_x:16,sheet_y:21,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FC":{unified:"1F468-1F3FC-200D-1F3A4",non_qualified:null,image:"1f468-1f3fc-200d-1f3a4.png",sheet_x:16,sheet_y:22,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FD":{unified:"1F468-1F3FD-200D-1F3A4",non_qualified:null,image:"1f468-1f3fd-200d-1f3a4.png",sheet_x:16,sheet_y:23,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FE":{unified:"1F468-1F3FE-200D-1F3A4",non_qualified:null,image:"1f468-1f3fe-200d-1f3a4.png",sheet_x:16,sheet_y:24,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FF":{unified:"1F468-1F3FF-200D-1F3A4",non_qualified:null,image:"1f468-1f3ff-200d-1f3a4.png",sheet_x:16,sheet_y:25,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1}},a:"Male Singer",b:"1F468-200D-1F3A4",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[16,20]},clock1230:{a:"Clock Face Twelve-Thirty",b:"1F567",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["time","late","early","schedule"],k:[28,41]},hammer_and_wrench:{a:"Hammer and Wrench",b:"1F6E0-FE0F",c:"1F6E0",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["tools","build","create"],k:[37,8],o:7},eight:{a:"Keycap 8",b:"0038-FE0F-20E3",c:"0038-20E3",d:!0,e:!0,f:!0,g:!0,h:!1,i:!1,j:["8","blue-square","numbers"],k:[0,10],o:3},"flag-li":{a:"Liechtenstein Flag",b:"1F1F1-1F1EE",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[3,9]},"female-singer":{skin_variations:{"1F3FB":{unified:"1F469-1F3FB-200D-1F3A4",non_qualified:null,image:"1f469-1f3fb-200d-1f3a4.png",sheet_x:18,sheet_y:36,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FC":{unified:"1F469-1F3FC-200D-1F3A4",non_qualified:null,image:"1f469-1f3fc-200d-1f3a4.png",sheet_x:18,sheet_y:37,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FD":{unified:"1F469-1F3FD-200D-1F3A4",non_qualified:null,image:"1f469-1f3fd-200d-1f3a4.png",sheet_x:18,sheet_y:38,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FE":{unified:"1F469-1F3FE-200D-1F3A4",non_qualified:null,image:"1f469-1f3fe-200d-1f3a4.png",sheet_x:18,sheet_y:39,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FF":{unified:"1F469-1F3FF-200D-1F3A4",non_qualified:null,image:"1f469-1f3ff-200d-1f3a4.png",sheet_x:18,sheet_y:40,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1}},a:"Female Singer",b:"1F469-200D-1F3A4",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[18,35]},clock1:{a:"Clock Face One Oclock",b:"1F550",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["time","late","early","schedule"],k:[28,18]},dagger_knife:{a:"Dagger Knife",b:"1F5E1-FE0F",c:"1F5E1",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[30,13],o:7},nine:{a:"Keycap 9",b:"0039-FE0F-20E3",c:"0039-20E3",d:!0,e:!0,f:!0,g:!0,h:!1,i:!1,j:["blue-square","numbers","9"],k:[0,11],o:3},"flag-lk":{a:"Sri Lanka Flag",b:"1F1F1-1F1F0",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[3,10]},"male-artist":{skin_variations:{"1F3FB":{unified:"1F468-1F3FB-200D-1F3A8",non_qualified:null,image:"1f468-1f3fb-200d-1f3a8.png",sheet_x:16,sheet_y:27,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FC":{unified:"1F468-1F3FC-200D-1F3A8",non_qualified:null,image:"1f468-1f3fc-200d-1f3a8.png",sheet_x:16,sheet_y:28,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FD":{unified:"1F468-1F3FD-200D-1F3A8",non_qualified:null,image:"1f468-1f3fd-200d-1f3a8.png",sheet_x:16,sheet_y:29,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FE":{unified:"1F468-1F3FE-200D-1F3A8",non_qualified:null,image:"1f468-1f3fe-200d-1f3a8.png",sheet_x:16,sheet_y:30,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FF":{unified:"1F468-1F3FF-200D-1F3A8",non_qualified:null,image:"1f468-1f3ff-200d-1f3a8.png",sheet_x:16,sheet_y:31,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1}},a:"Male Artist",b:"1F468-200D-1F3A8",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[16,26]},clock130:{a:"Clock Face One-Thirty",b:"1F55C",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["time","late","early","schedule"],k:[28,30]},crossed_swords:{a:"Crossed Swords",b:"2694-FE0F",c:"2694",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["weapon"],k:[48,13],o:4},"flag-lr":{a:"Liberia Flag",b:"1F1F1-1F1F7",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[3,11]},"female-artist":{skin_variations:{"1F3FB":{unified:"1F469-1F3FB-200D-1F3A8",non_qualified:null,image:"1f469-1f3fb-200d-1f3a8.png",sheet_x:18,sheet_y:42,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FC":{unified:"1F469-1F3FC-200D-1F3A8",non_qualified:null,image:"1f469-1f3fc-200d-1f3a8.png",sheet_x:18,sheet_y:43,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FD":{unified:"1F469-1F3FD-200D-1F3A8",non_qualified:null,image:"1f469-1f3fd-200d-1f3a8.png",sheet_x:18,sheet_y:44,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FE":{unified:"1F469-1F3FE-200D-1F3A8",non_qualified:null,image:"1f469-1f3fe-200d-1f3a8.png",sheet_x:18,sheet_y:45,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FF":{unified:"1F469-1F3FF-200D-1F3A8",non_qualified:null,image:"1f469-1f3ff-200d-1f3a8.png",sheet_x:18,sheet_y:46,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1}},a:"Female Artist",b:"1F469-200D-1F3A8",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[18,41]},keycap_ten:{a:"Keycap Ten",b:"1F51F",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["numbers","10","blue-square"],k:[27,33]},gun:{a:"Pistol",b:"1F52B",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["violence","weapon","pistol","revolver"],k:[27,45]},clock2:{a:"Clock Face Two Oclock",b:"1F551",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["time","late","early","schedule"],k:[28,19]},"flag-ls":{a:"Lesotho Flag",b:"1F1F1-1F1F8",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[3,12]},bow_and_arrow:{a:"Bow and Arrow",b:"1F3F9",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["sports"],k:[12,23],o:8},"male-pilot":{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:4,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:5,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:6,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:7,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:8,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1}},a:"Male Pilot",b:"1F468-200D-2708-FE0F",c:"1F468-200D-2708",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[18,3]},clock230:{a:"Clock Face Two-Thirty",b:"1F55D",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["time","late","early","schedule"],k:[28,31]},"flag-lt":{a:"Lithuania Flag",b:"1F1F1-1F1F9",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[3,13]},"female-pilot":{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:14,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:15,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:16,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:17,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:18,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1}},a:"Female Pilot",b:"1F469-200D-2708-FE0F",c:"1F469-200D-2708",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[20,13]},capital_abcd:{a:"Input Symbol for Latin Capital Letters",b:"1F520",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["alphabet","words","blue-square"],k:[27,34]},clock3:{a:"Clock Face Three Oclock",b:"1F552",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["time","late","early","schedule"],k:[28,20]},shield:{a:"Shield",b:"1F6E1-FE0F",c:"1F6E1",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["protection","security"],k:[37,9],o:7},"flag-lu":{a:"Luxembourg Flag",b:"1F1F1-1F1FA",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[3,14]},"male-astronaut":{skin_variations:{"1F3FB":{unified:"1F468-1F3FB-200D-1F680",non_qualified:null,image:"1f468-1f3fb-200d-1f680.png",sheet_x:17,sheet_y:32,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FC":{unified:"1F468-1F3FC-200D-1F680",non_qualified:null,image:"1f468-1f3fc-200d-1f680.png",sheet_x:17,sheet_y:33,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FD":{unified:"1F468-1F3FD-200D-1F680",non_qualified:null,image:"1f468-1f3fd-200d-1f680.png",sheet_x:17,sheet_y:34,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FE":{unified:"1F468-1F3FE-200D-1F680",non_qualified:null,image:"1f468-1f3fe-200d-1f680.png",sheet_x:17,sheet_y:35,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FF":{unified:"1F468-1F3FF-200D-1F680",non_qualified:null,image:"1f468-1f3ff-200d-1f680.png",sheet_x:17,sheet_y:36,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1}},a:"Male Astronaut",b:"1F468-200D-1F680",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[17,31]},abcd:{a:"Input Symbol for Latin Small Letters",b:"1F521",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["blue-square","alphabet"],k:[27,35]},wrench:{a:"Wrench",b:"1F527",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["tools","diy","ikea","fix","maintainer"],k:[27,41]},clock330:{a:"Clock Face Three-Thirty",b:"1F55E",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["time","late","early","schedule"],k:[28,32]},"flag-lv":{a:"Latvia Flag",b:"1F1F1-1F1FB",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[3,15]},"female-astronaut":{skin_variations:{"1F3FB":{unified:"1F469-1F3FB-200D-1F680",non_qualified:null,image:"1f469-1f3fb-200d-1f680.png",sheet_x:19,sheet_y:42,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FC":{unified:"1F469-1F3FC-200D-1F680",non_qualified:null,image:"1f469-1f3fc-200d-1f680.png",sheet_x:19,sheet_y:43,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FD":{unified:"1F469-1F3FD-200D-1F680",non_qualified:null,image:"1f469-1f3fd-200d-1f680.png",sheet_x:19,sheet_y:44,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FE":{unified:"1F469-1F3FE-200D-1F680",non_qualified:null,image:"1f469-1f3fe-200d-1f680.png",sheet_x:19,sheet_y:45,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FF":{unified:"1F469-1F3FF-200D-1F680",non_qualified:null,image:"1f469-1f3ff-200d-1f680.png",sheet_x:19,sheet_y:46,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1}},a:"Female Astronaut",b:"1F469-200D-1F680",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[19,41]},nut_and_bolt:{a:"Nut and Bolt",b:"1F529",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["handy","tools","fix"],k:[27,43]},clock4:{a:"Clock Face Four Oclock",b:"1F553",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["time","late","early","schedule"],k:[28,21]},"flag-ly":{a:"Libya Flag",b:"1F1F1-1F1FE",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[3,16]},"male-firefighter":{skin_variations:{"1F3FB":{unified:"1F468-1F3FB-200D-1F692",non_qualified:null,image:"1f468-1f3fb-200d-1f692.png",sheet_x:17,sheet_y:38,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FC":{unified:"1F468-1F3FC-200D-1F692",non_qualified:null,image:"1f468-1f3fc-200d-1f692.png",sheet_x:17,sheet_y:39,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FD":{unified:"1F468-1F3FD-200D-1F692",non_qualified:null,image:"1f468-1f3fd-200d-1f692.png",sheet_x:17,sheet_y:40,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FE":{unified:"1F468-1F3FE-200D-1F692",non_qualified:null,image:"1f468-1f3fe-200d-1f692.png",sheet_x:17,sheet_y:41,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FF":{unified:"1F468-1F3FF-200D-1F692",non_qualified:null,image:"1f468-1f3ff-200d-1f692.png",sheet_x:17,sheet_y:42,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1}},a:"Male Firefighter",b:"1F468-200D-1F692",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[17,37]},symbols:{a:"Input Symbol for Symbols",b:"1F523",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["blue-square","music","note","ampersand","percent","glyphs","characters"],k:[27,37]},clock430:{a:"Clock Face Four-Thirty",b:"1F55F",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["time","late","early","schedule"],k:[28,33]},gear:{a:"Gear",b:"2699-FE0F",c:"2699",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["cog"],k:[48,17],o:4},"flag-ma":{a:"Morocco Flag",b:"1F1F2-1F1E6",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[3,17]},"female-firefighter":{skin_variations:{"1F3FB":{unified:"1F469-1F3FB-200D-1F692",non_qualified:null,image:"1f469-1f3fb-200d-1f692.png",sheet_x:19,sheet_y:48,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FC":{unified:"1F469-1F3FC-200D-1F692",non_qualified:null,image:"1f469-1f3fc-200d-1f692.png",sheet_x:19,sheet_y:49,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FD":{unified:"1F469-1F3FD-200D-1F692",non_qualified:null,image:"1f469-1f3fd-200d-1f692.png",sheet_x:19,sheet_y:50,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FE":{unified:"1F469-1F3FE-200D-1F692",non_qualified:null,image:"1f469-1f3fe-200d-1f692.png",sheet_x:19,sheet_y:51,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FF":{unified:"1F469-1F3FF-200D-1F692",non_qualified:null,image:"1f469-1f3ff-200d-1f692.png",sheet_x:20,sheet_y:0,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1}},a:"Female Firefighter",b:"1F469-200D-1F692",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[19,47]},abc:{a:"Input Symbol for Latin Letters",b:"1F524",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["blue-square","alphabet"],k:[27,38]},clock5:{a:"Clock Face Five Oclock",b:"1F554",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["time","late","early","schedule"],k:[28,22]},compression:{a:"Compression",b:"1F5DC-FE0F",c:"1F5DC",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[30,10],o:7},a:{a:"Negative Squared Latin Capital Letter a",b:"1F170-FE0F",c:"1F170",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["red-square","alphabet","letter"],k:[0,16]},"flag-mc":{a:"Monaco Flag",b:"1F1F2-1F1E8",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[3,18]},cop:{skin_variations:{"1F3FB":{unified:"1F46E-1F3FB",non_qualified:null,image:"1f46e-1f3fb.png",sheet_x:20,sheet_y:46,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!0},"1F3FC":{unified:"1F46E-1F3FC",non_qualified:null,image:"1f46e-1f3fc.png",sheet_x:20,sheet_y:47,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!0},"1F3FD":{unified:"1F46E-1F3FD",non_qualified:null,image:"1f46e-1f3fd.png",sheet_x:20,sheet_y:48,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!0},"1F3FE":{unified:"1F46E-1F3FE",non_qualified:null,image:"1f46e-1f3fe.png",sheet_x:20,sheet_y:49,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!0},"1F3FF":{unified:"1F46E-1F3FF",non_qualified:null,image:"1f46e-1f3ff.png",sheet_x:20,sheet_y:50,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!0}},obsoleted_by:"1F46E-200D-2642-FE0F",a:"Police Officer",b:"1F46E",d:!0,e:!0,f:!0,g:!0,h:!1,i:!0,k:[20,45]},clock530:{a:"Clock Face Five-Thirty",b:"1F560",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["time","late","early","schedule"],k:[28,34]},alembic:{a:"Alembic",b:"2697-FE0F",c:"2697",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["distilling","science","experiment","chemistry"],k:[48,16],o:4},ab:{a:"Negative Squared Ab",b:"1F18E",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["red-square","alphabet"],k:[0,20]},"flag-md":{a:"Moldova Flag",b:"1F1F2-1F1E9",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[3,19]},"male-police-officer":{skin_variations:{"1F3FB":{unified:"1F46E-1F3FB-200D-2642-FE0F",non_qualified:"1F46E-1F3FB-200D-2642",image:"1f46e-1f3fb-200d-2642-fe0f.png",sheet_x:20,sheet_y:40,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"1F3FC":{unified:"1F46E-1F3FC-200D-2642-FE0F",non_qualified:"1F46E-1F3FC-200D-2642",image:"1f46e-1f3fc-200d-2642-fe0f.png",sheet_x:20,sheet_y:41,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"1F3FD":{unified:"1F46E-1F3FD-200D-2642-FE0F",non_qualified:"1F46E-1F3FD-200D-2642",image:"1f46e-1f3fd-200d-2642-fe0f.png",sheet_x:20,sheet_y:42,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"1F3FE":{unified:"1F46E-1F3FE-200D-2642-FE0F",non_qualified:"1F46E-1F3FE-200D-2642",image:"1f46e-1f3fe-200d-2642-fe0f.png",sheet_x:20,sheet_y:43,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"1F3FF":{unified:"1F46E-1F3FF-200D-2642-FE0F",non_qualified:"1F46E-1F3FF-200D-2642",image:"1f46e-1f3ff-200d-2642-fe0f.png",sheet_x:20,sheet_y:44,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1}},obsoletes:"1F46E",a:"Male Police Officer",b:"1F46E-200D-2642-FE0F",c:"1F46E-200D-2642",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[20,39]},clock6:{a:"Clock Face Six Oclock",b:"1F555",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["time","late","early","schedule","dawn","dusk"],k:[28,23]},scales:{a:"Scales",b:"2696-FE0F",c:"2696",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[48,15],o:4},b:{a:"Negative Squared Latin Capital Letter B",b:"1F171-FE0F",c:"1F171",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["red-square","alphabet","letter"],k:[0,17]},"flag-me":{a:"Montenegro Flag",b:"1F1F2-1F1EA",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[3,20]},"female-police-officer":{skin_variations:{"1F3FB":{unified:"1F46E-1F3FB-200D-2640-FE0F",non_qualified:"1F46E-1F3FB-200D-2640",image:"1f46e-1f3fb-200d-2640-fe0f.png",sheet_x:20,sheet_y:34,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"1F3FC":{unified:"1F46E-1F3FC-200D-2640-FE0F",non_qualified:"1F46E-1F3FC-200D-2640",image:"1f46e-1f3fc-200d-2640-fe0f.png",sheet_x:20,sheet_y:35,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"1F3FD":{unified:"1F46E-1F3FD-200D-2640-FE0F",non_qualified:"1F46E-1F3FD-200D-2640",image:"1f46e-1f3fd-200d-2640-fe0f.png",sheet_x:20,sheet_y:36,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"1F3FE":{unified:"1F46E-1F3FE-200D-2640-FE0F",non_qualified:"1F46E-1F3FE-200D-2640",image:"1f46e-1f3fe-200d-2640-fe0f.png",sheet_x:20,sheet_y:37,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"1F3FF":{unified:"1F46E-1F3FF-200D-2640-FE0F",non_qualified:"1F46E-1F3FF-200D-2640",image:"1f46e-1f3ff-200d-2640-fe0f.png",sheet_x:20,sheet_y:38,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1}},a:"Female Police Officer",b:"1F46E-200D-2640-FE0F",c:"1F46E-200D-2640",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[20,33]},link:{a:"Link Symbol",b:"1F517",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["rings","url"],k:[27,25]},clock630:{a:"Clock Face Six-Thirty",b:"1F561",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["time","late","early","schedule"],k:[28,35]},cl:{a:"Squared Cl",b:"1F191",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["alphabet","words","red-square"],k:[0,21]},"flag-mf":{a:"St. Martin Flag",b:"1F1F2-1F1EB",d:!0,e:!1,f:!0,g:!0,h:!0,i:!0,k:[3,21]},clock7:{a:"Clock Face Seven Oclock",b:"1F556",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["time","late","early","schedule"],k:[28,24]},sleuth_or_spy:{skin_variations:{"1F3FB":{unified:"1F575-1F3FB",non_qualified:null,image:"1f575-1f3fb.png",sheet_x:29,sheet_y:12,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"1F3FC":{unified:"1F575-1F3FC",non_qualified:null,image:"1f575-1f3fc.png",sheet_x:29,sheet_y:13,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"1F3FD":{unified:"1F575-1F3FD",non_qualified:null,image:"1f575-1f3fd.png",sheet_x:29,sheet_y:14,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"1F3FE":{unified:"1F575-1F3FE",non_qualified:null,image:"1f575-1f3fe.png",sheet_x:29,sheet_y:15,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"1F3FF":{unified:"1F575-1F3FF",non_qualified:null,image:"1f575-1f3ff.png",sheet_x:29,sheet_y:16,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1}},obsoleted_by:"1F575-FE0F-200D-2642-FE0F",a:"Sleuth or Spy",b:"1F575-FE0F",c:"1F575",d:!0,e:!0,f:!0,g:!0,h:!1,i:!1,k:[29,11],o:7},chains:{a:"Chains",b:"26D3-FE0F",c:"26D3",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["lock","arrest"],k:[48,34],o:5},cool:{a:"Squared Cool",b:"1F192",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["words","blue-square"],k:[0,22]},"flag-mg":{a:"Madagascar Flag",b:"1F1F2-1F1EC",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[3,22]},syringe:{a:"Syringe",b:"1F489",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["health","hospital","drugs","blood","medicine","needle","doctor","nurse"],k:[24,35]},clock730:{a:"Clock Face Seven-Thirty",b:"1F562",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["time","late","early","schedule"],k:[28,36]},"male-detective":{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:6,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:7,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:8,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:9,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:10,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1}},obsoletes:"1F575-FE0F",a:"Male Detective",b:"1F575-FE0F-200D-2642-FE0F",d:!0,e:!0,f:!0,g:!0,h:!1,i:!1,k:[29,5],o:7},free:{a:"Squared Free",b:"1F193",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["blue-square","words"],k:[0,23]},"flag-mh":{a:"Marshall Islands Flag",b:"1F1F2-1F1ED",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[3,23]},pill:{a:"Pill",b:"1F48A",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["health","medicine","doctor","pharmacy","drug"],k:[24,36]},clock8:{a:"Clock Face Eight Oclock",b:"1F557",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["time","late","early","schedule"],k:[28,25]},"female-detective":{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:0,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:1,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:2,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:3,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:4,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1}},a:"Female Detective",b:"1F575-FE0F-200D-2640-FE0F",d:!0,e:!0,f:!0,g:!0,h:!1,i:!1,k:[28,51],o:7},"flag-mk":{a:"Macedonia Flag",b:"1F1F2-1F1F0",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[3,24]},guardsman:{skin_variations:{"1F3FB":{unified:"1F482-1F3FB",non_qualified:null,image:"1f482-1f3fb.png",sheet_x:23,sheet_y:32,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!0},"1F3FC":{unified:"1F482-1F3FC",non_qualified:null,image:"1f482-1f3fc.png",sheet_x:23,sheet_y:33,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!0},"1F3FD":{unified:"1F482-1F3FD",non_qualified:null,image:"1f482-1f3fd.png",sheet_x:23,sheet_y:34,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!0},"1F3FE":{unified:"1F482-1F3FE",non_qualified:null,image:"1f482-1f3fe.png",sheet_x:23,sheet_y:35,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!0},"1F3FF":{unified:"1F482-1F3FF",non_qualified:null,image:"1f482-1f3ff.png",sheet_x:23,sheet_y:36,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!0}},obsoleted_by:"1F482-200D-2642-FE0F",a:"Guardsman",b:"1F482",d:!0,e:!0,f:!0,g:!0,h:!1,i:!0,j:["uk","gb","british","male","guy","royal"],k:[23,31]},clock830:{a:"Clock Face Eight-Thirty",b:"1F563",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["time","late","early","schedule"],k:[28,37]},smoking:{a:"Smoking Symbol",b:"1F6AC",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["kills","tobacco","cigarette","joint","smoke"],k:[35,17]},information_source:{a:"Information Source",b:"2139-FE0F",c:"2139",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["blue-square","alphabet","letter"],k:[46,32],o:3},id:{a:"Squared Id",b:"1F194",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["purple-square","words"],k:[0,24]},"flag-ml":{a:"Mali Flag",b:"1F1F2-1F1F1",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[3,25]},"male-guard":{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:26,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"1F3FC":{unified:"1F482-1F3FC-200D-2642-FE0F",non_qualified:"1F482-1F3FC-200D-2642",image:"1f482-1f3fc-200d-2642-fe0f.png",sheet_x:23,sheet_y:27,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"1F3FD":{unified:"1F482-1F3FD-200D-2642-FE0F",non_qualified:"1F482-1F3FD-200D-2642",image:"1f482-1f3fd-200d-2642-fe0f.png",sheet_x:23,sheet_y:28,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"1F3FE":{unified:"1F482-1F3FE-200D-2642-FE0F",non_qualified:"1F482-1F3FE-200D-2642",image:"1f482-1f3fe-200d-2642-fe0f.png",sheet_x:23,sheet_y:29,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"1F3FF":{unified:"1F482-1F3FF-200D-2642-FE0F",non_qualified:"1F482-1F3FF-200D-2642",image:"1f482-1f3ff-200d-2642-fe0f.png",sheet_x:23,sheet_y:30,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1}},obsoletes:"1F482",a:"Male Guard",b:"1F482-200D-2642-FE0F",c:"1F482-200D-2642",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[23,25]},clock9:{a:"Clock Face Nine Oclock",b:"1F558",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["time","late","early","schedule"],k:[28,26]},coffin:{a:"Coffin",b:"26B0-FE0F",c:"26B0",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["vampire","dead","die","death","rip","graveyard","cemetery","casket","funeral","box"],k:[48,24],o:4},"flag-mm":{a:"Myanmar (burma) Flag",b:"1F1F2-1F1F2",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[3,26]},"female-guard":{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:20,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:21,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:22,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:23,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:24,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1}},a:"Female Guard",b:"1F482-200D-2640-FE0F",c:"1F482-200D-2640",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[23,19]},clock930:{a:"Clock Face Nine-Thirty",b:"1F564",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["time","late","early","schedule"],k:[28,38]},m:{a:"Circled Latin Capital Letter M",b:"24C2-FE0F",c:"24C2",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["alphabet","blue-circle","letter"],k:[47,7],o:1},funeral_urn:{a:"Funeral Urn",b:"26B1-FE0F",c:"26B1",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["dead","die","death","rip","ashes"],k:[48,25],o:4},new:{a:"Squared New",b:"1F195",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["blue-square","words","start"],k:[0,25]},"flag-mn":{a:"Mongolia Flag",b:"1F1F2-1F1F3",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[3,27]},construction_worker:{skin_variations:{"1F3FB":{unified:"1F477-1F3FB",non_qualified:null,image:"1f477-1f3fb.png",sheet_x:22,sheet_y:29,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!0},"1F3FC":{unified:"1F477-1F3FC",non_qualified:null,image:"1f477-1f3fc.png",sheet_x:22,sheet_y:30,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!0},"1F3FD":{unified:"1F477-1F3FD",non_qualified:null,image:"1f477-1f3fd.png",sheet_x:22,sheet_y:31,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!0},"1F3FE":{unified:"1F477-1F3FE",non_qualified:null,image:"1f477-1f3fe.png",sheet_x:22,sheet_y:32,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!0},"1F3FF":{unified:"1F477-1F3FF",non_qualified:null,image:"1f477-1f3ff.png",sheet_x:22,sheet_y:33,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!0}},obsoleted_by:"1F477-200D-2642-FE0F",a:"Construction Worker",b:"1F477",d:!0,e:!0,f:!0,g:!0,h:!1,i:!0,k:[22,28]},clock10:{a:"Clock Face Ten Oclock",b:"1F559",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["time","late","early","schedule"],k:[28,27]},moyai:{a:"Moyai",b:"1F5FF",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["rock","easter island","moai"],k:[30,23]},ng:{a:"Squared Ng",b:"1F196",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["blue-square","words","shape","icon"],k:[0,26]},"flag-mo":{a:"Macau Sar China Flag",b:"1F1F2-1F1F4",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[3,28]},"male-construction-worker":{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:23,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:24,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:25,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"1F3FE":{unified:"1F477-1F3FE-200D-2642-FE0F",non_qualified:"1F477-1F3FE-200D-2642",image:"1f477-1f3fe-200d-2642-fe0f.png",sheet_x:22,sheet_y:26,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"1F3FF":{unified:"1F477-1F3FF-200D-2642-FE0F",non_qualified:"1F477-1F3FF-200D-2642",image:"1f477-1f3ff-200d-2642-fe0f.png",sheet_x:22,sheet_y:27,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1}},obsoletes:"1F477",a:"Male Construction Worker",b:"1F477-200D-2642-FE0F",c:"1F477-200D-2642",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[22,22]},clock1030:{a:"Clock Face Ten-Thirty",b:"1F565",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["time","late","early","schedule"],k:[28,39]},oil_drum:{a:"Oil Drum",b:"1F6E2-FE0F",c:"1F6E2",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["barrell"],k:[37,10],o:7},o2:{a:"Negative Squared Latin Capital Letter O",b:"1F17E-FE0F",c:"1F17E",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["alphabet","red-square","letter"],k:[0,18]},"flag-mp":{a:"Northern Mariana Islands Flag",b:"1F1F2-1F1F5",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[3,29]},"female-construction-worker":{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:17,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:18,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:19,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:20,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:21,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1}},a:"Female Construction Worker",b:"1F477-200D-2640-FE0F",c:"1F477-200D-2640",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[22,16]},crystal_ball:{a:"Crystal Ball",b:"1F52E",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["disco","party","magic","circus","fortune_teller"],k:[27,48]},clock11:{a:"Clock Face Eleven Oclock",b:"1F55A",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["time","late","early","schedule"],k:[28,28]},ok:{a:"Squared Ok",b:"1F197",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["good","agree","yes","blue-square"],k:[0,27]},"flag-mq":{a:"Martinique Flag",b:"1F1F2-1F1F6",d:!0,e:!1,f:!0,g:!0,h:!0,i:!0,k:[3,30]},clock1130:{a:"Clock Face Eleven-Thirty",b:"1F566",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["time","late","early","schedule"],k:[28,40]},shopping_trolley:{a:"Shopping Trolley",b:"1F6D2",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[37,7],o:9},prince:{skin_variations:{"1F3FB":{unified:"1F934-1F3FB",non_qualified:null,image:"1f934-1f3fb.png",sheet_x:39,sheet_y:29,added_in:"9.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FC":{unified:"1F934-1F3FC",non_qualified:null,image:"1f934-1f3fc.png",sheet_x:39,sheet_y:30,added_in:"9.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FD":{unified:"1F934-1F3FD",non_qualified:null,image:"1f934-1f3fd.png",sheet_x:39,sheet_y:31,added_in:"9.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FE":{unified:"1F934-1F3FE",non_qualified:null,image:"1f934-1f3fe.png",sheet_x:39,sheet_y:32,added_in:"9.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FF":{unified:"1F934-1F3FF",non_qualified:null,image:"1f934-1f3ff.png",sheet_x:39,sheet_y:33,added_in:"9.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1}},a:"Prince",b:"1F934",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["boy","man","male","crown","royal","king"],k:[39,28],o:9},parking:{a:"Negative Squared Latin Capital Letter P",b:"1F17F-FE0F",c:"1F17F",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["cars","blue-square","alphabet","letter"],k:[0,19],o:5},"flag-mr":{a:"Mauritania Flag",b:"1F1F2-1F1F7",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[3,31]},new_moon:{a:"New Moon Symbol",b:"1F311",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["nature","twilight","planet","space","night","evening","sleep"],k:[6,9]},princess:{skin_variations:{"1F3FB":{unified:"1F478-1F3FB",non_qualified:null,image:"1f478-1f3fb.png",sheet_x:22,sheet_y:35,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0},"1F3FC":{unified:"1F478-1F3FC",non_qualified:null,image:"1f478-1f3fc.png",sheet_x:22,sheet_y:36,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0},"1F3FD":{unified:"1F478-1F3FD",non_qualified:null,image:"1f478-1f3fd.png",sheet_x:22,sheet_y:37,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0},"1F3FE":{unified:"1F478-1F3FE",non_qualified:null,image:"1f478-1f3fe.png",sheet_x:22,sheet_y:38,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0},"1F3FF":{unified:"1F478-1F3FF",non_qualified:null,image:"1f478-1f3ff.png",sheet_x:22,sheet_y:39,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0}},a:"Princess",b:"1F478",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["girl","woman","female","blond","crown","royal","queen"],k:[22,34]},sos:{a:"Squared Sos",b:"1F198",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["help","red-square","words","emergency","911"],k:[0,28]},"flag-ms":{a:"Montserrat Flag",b:"1F1F2-1F1F8",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[3,32]},waxing_crescent_moon:{a:"Waxing Crescent Moon Symbol",b:"1F312",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["nature","twilight","planet","space","night","evening","sleep"],k:[6,10]},man_with_turban:{skin_variations:{"1F3FB":{unified:"1F473-1F3FB",non_qualified:null,image:"1f473-1f3fb.png",sheet_x:21,sheet_y:45,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!0},"1F3FC":{unified:"1F473-1F3FC",non_qualified:null,image:"1f473-1f3fc.png",sheet_x:21,sheet_y:46,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!0},"1F3FD":{unified:"1F473-1F3FD",non_qualified:null,image:"1f473-1f3fd.png",sheet_x:21,sheet_y:47,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!0},"1F3FE":{unified:"1F473-1F3FE",non_qualified:null,image:"1f473-1f3fe.png",sheet_x:21,sheet_y:48,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!0},"1F3FF":{unified:"1F473-1F3FF",non_qualified:null,image:"1f473-1f3ff.png",sheet_x:21,sheet_y:49,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!0}},obsoleted_by:"1F473-200D-2642-FE0F",a:"Man with Turban",b:"1F473",d:!0,e:!0,f:!0,g:!0,h:!1,i:!0,j:["male","indian","hinduism","arabs"],k:[21,44]},up:{a:"Squared Up with Exclamation Mark",b:"1F199",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["blue-square","above","high"],k:[0,29]},"flag-mt":{a:"Malta Flag",b:"1F1F2-1F1F9",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[3,33]},first_quarter_moon:{a:"First Quarter Moon Symbol",b:"1F313",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["nature","twilight","planet","space","night","evening","sleep"],k:[6,11]},"man-wearing-turban":{skin_variations:{"1F3FB":{unified:"1F473-1F3FB-200D-2642-FE0F",non_qualified:"1F473-1F3FB-200D-2642",image:"1f473-1f3fb-200d-2642-fe0f.png",sheet_x:21,sheet_y:39,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"1F3FC":{unified:"1F473-1F3FC-200D-2642-FE0F",non_qualified:"1F473-1F3FC-200D-2642",image:"1f473-1f3fc-200d-2642-fe0f.png",sheet_x:21,sheet_y:40,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"1F3FD":{unified:"1F473-1F3FD-200D-2642-FE0F",non_qualified:"1F473-1F3FD-200D-2642",image:"1f473-1f3fd-200d-2642-fe0f.png",sheet_x:21,sheet_y:41,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"1F3FE":{unified:"1F473-1F3FE-200D-2642-FE0F",non_qualified:"1F473-1F3FE-200D-2642",image:"1f473-1f3fe-200d-2642-fe0f.png",sheet_x:21,sheet_y:42,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"1F3FF":{unified:"1F473-1F3FF-200D-2642-FE0F",non_qualified:"1F473-1F3FF-200D-2642",image:"1f473-1f3ff-200d-2642-fe0f.png",sheet_x:21,sheet_y:43,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1}},obsoletes:"1F473",a:"Man Wearing Turban",b:"1F473-200D-2642-FE0F",c:"1F473-200D-2642",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[21,38]},vs:{a:"Squared Vs",b:"1F19A",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["words","orange-square"],k:[0,30]},"flag-mu":{a:"Mauritius Flag",b:"1F1F2-1F1FA",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[3,34]},moon:{a:"Waxing Gibbous Moon Symbol",b:"1F314",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[6,12],n:["waxing_gibbous_moon"]},"woman-wearing-turban":{skin_variations:{"1F3FB":{unified:"1F473-1F3FB-200D-2640-FE0F",non_qualified:"1F473-1F3FB-200D-2640",image:"1f473-1f3fb-200d-2640-fe0f.png",sheet_x:21,sheet_y:33,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"1F3FC":{unified:"1F473-1F3FC-200D-2640-FE0F",non_qualified:"1F473-1F3FC-200D-2640",image:"1f473-1f3fc-200d-2640-fe0f.png",sheet_x:21,sheet_y:34,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"1F3FD":{unified:"1F473-1F3FD-200D-2640-FE0F",non_qualified:"1F473-1F3FD-200D-2640",image:"1f473-1f3fd-200d-2640-fe0f.png",sheet_x:21,sheet_y:35,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"1F3FE":{unified:"1F473-1F3FE-200D-2640-FE0F",non_qualified:"1F473-1F3FE-200D-2640",image:"1f473-1f3fe-200d-2640-fe0f.png",sheet_x:21,sheet_y:36,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"1F3FF":{unified:"1F473-1F3FF-200D-2640-FE0F",non_qualified:"1F473-1F3FF-200D-2640",image:"1f473-1f3ff-200d-2640-fe0f.png",sheet_x:21,sheet_y:37,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1}},a:"Woman Wearing Turban",b:"1F473-200D-2640-FE0F",c:"1F473-200D-2640",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[21,32]},"flag-mv":{a:"Maldives Flag",b:"1F1F2-1F1FB",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[3,35]},koko:{a:"Squared Katakana Koko",b:"1F201",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["blue-square","here","katakana","japanese","destination"],k:[5,29]},full_moon:{a:"Full Moon Symbol",b:"1F315",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["nature","yellow","twilight","planet","space","night","evening","sleep"],k:[6,13]},man_with_gua_pi_mao:{skin_variations:{"1F3FB":{unified:"1F472-1F3FB",non_qualified:null,image:"1f472-1f3fb.png",sheet_x:21,sheet_y:27,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0},"1F3FC":{unified:"1F472-1F3FC",non_qualified:null,image:"1f472-1f3fc.png",sheet_x:21,sheet_y:28,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0},"1F3FD":{unified:"1F472-1F3FD",non_qualified:null,image:"1f472-1f3fd.png",sheet_x:21,sheet_y:29,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0},"1F3FE":{unified:"1F472-1F3FE",non_qualified:null,image:"1f472-1f3fe.png",sheet_x:21,sheet_y:30,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0},"1F3FF":{unified:"1F472-1F3FF",non_qualified:null,image:"1f472-1f3ff.png",sheet_x:21,sheet_y:31,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0}},a:"Man with Gua Pi Mao",b:"1F472",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["male","boy","chinese"],k:[21,26]},"flag-mw":{a:"Malawi Flag",b:"1F1F2-1F1FC",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[3,36]},sa:{a:"Squared Katakana Sa",b:"1F202-FE0F",c:"1F202",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["japanese","blue-square","katakana"],k:[5,30]},waning_gibbous_moon:{a:"Waning Gibbous Moon Symbol",b:"1F316",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["nature","twilight","planet","space","night","evening","sleep","waxing_gibbous_moon"],k:[6,14]},person_with_headscarf:{skin_variations:{"1F3FB":{unified:"1F9D5-1F3FB",non_qualified:null,image:"1f9d5-1f3fb.png",sheet_x:43,sheet_y:23,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FC":{unified:"1F9D5-1F3FC",non_qualified:null,image:"1f9d5-1f3fc.png",sheet_x:43,sheet_y:24,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FD":{unified:"1F9D5-1F3FD",non_qualified:null,image:"1f9d5-1f3fd.png",sheet_x:43,sheet_y:25,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FE":{unified:"1F9D5-1F3FE",non_qualified:null,image:"1f9d5-1f3fe.png",sheet_x:43,sheet_y:26,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FF":{unified:"1F9D5-1F3FF",non_qualified:null,image:"1f9d5-1f3ff.png",sheet_x:43,sheet_y:27,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1}},a:"Person with Headscarf",b:"1F9D5",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[43,22],o:10},"flag-mx":{a:"Mexico Flag",b:"1F1F2-1F1FD",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[3,37]},u6708:{a:"Squared Cjk Unified Ideograph-6708",b:"1F237-FE0F",c:"1F237",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["chinese","month","moon","japanese","orange-square","kanji"],k:[5,38]},last_quarter_moon:{a:"Last Quarter Moon Symbol",b:"1F317",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["nature","twilight","planet","space","night","evening","sleep"],k:[6,15]},bearded_person:{skin_variations:{"1F3FB":{unified:"1F9D4-1F3FB",non_qualified:null,image:"1f9d4-1f3fb.png",sheet_x:43,sheet_y:17,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FC":{unified:"1F9D4-1F3FC",non_qualified:null,image:"1f9d4-1f3fc.png",sheet_x:43,sheet_y:18,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FD":{unified:"1F9D4-1F3FD",non_qualified:null,image:"1f9d4-1f3fd.png",sheet_x:43,sheet_y:19,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FE":{unified:"1F9D4-1F3FE",non_qualified:null,image:"1f9d4-1f3fe.png",sheet_x:43,sheet_y:20,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FF":{unified:"1F9D4-1F3FF",non_qualified:null,image:"1f9d4-1f3ff.png",sheet_x:43,sheet_y:21,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1}},a:"Bearded Person",b:"1F9D4",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["person","bewhiskered"],k:[43,16],o:10},"flag-my":{a:"Malaysia Flag",b:"1F1F2-1F1FE",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[3,38]},u6709:{a:"Squared Cjk Unified Ideograph-6709",b:"1F236",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["orange-square","chinese","have","kanji"],k:[5,37]},waning_crescent_moon:{a:"Waning Crescent Moon Symbol",b:"1F318",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["nature","twilight","planet","space","night","evening","sleep"],k:[6,16]},person_with_blond_hair:{skin_variations:{"1F3FB":{unified:"1F471-1F3FB",non_qualified:null,image:"1f471-1f3fb.png",sheet_x:21,sheet_y:21,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!0},"1F3FC":{unified:"1F471-1F3FC",non_qualified:null,image:"1f471-1f3fc.png",sheet_x:21,sheet_y:22,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!0},"1F3FD":{unified:"1F471-1F3FD",non_qualified:null,image:"1f471-1f3fd.png",sheet_x:21,sheet_y:23,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!0},"1F3FE":{unified:"1F471-1F3FE",non_qualified:null,image:"1f471-1f3fe.png",sheet_x:21,sheet_y:24,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!0},"1F3FF":{unified:"1F471-1F3FF",non_qualified:null,image:"1f471-1f3ff.png",sheet_x:21,sheet_y:25,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!0}},obsoleted_by:"1F471-200D-2642-FE0F",a:"Person with Blond Hair",b:"1F471",d:!0,e:!0,f:!0,g:!0,h:!1,i:!0,k:[21,20]},"flag-mz":{a:"Mozambique Flag",b:"1F1F2-1F1FF",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[3,39]},u6307:{a:"Squared Cjk Unified Ideograph-6307",b:"1F22F",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["chinese","point","green-square","kanji"],k:[5,32],o:5},crescent_moon:{a:"Crescent Moon",b:"1F319",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["night","sleep","sky","evening","magic"],k:[6,17]},"blond-haired-man":{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:15,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:16,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:17,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:18,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:19,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1}},obsoletes:"1F471",a:"Blond Haired Man",b:"1F471-200D-2642-FE0F",c:"1F471-200D-2642",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[21,14]},"flag-na":{a:"Namibia Flag",b:"1F1F3-1F1E6",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[3,40]},ideograph_advantage:{a:"Circled Ideograph Advantage",b:"1F250",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["chinese","kanji","obtain","get","circle"],k:[5,42]},new_moon_with_face:{a:"New Moon with Face",b:"1F31A",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["nature","twilight","planet","space","night","evening","sleep"],k:[6,18]},"blond-haired-woman":{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:9,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:10,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:11,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:12,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:13,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1}},a:"Blond Haired Woman",b:"1F471-200D-2640-FE0F",c:"1F471-200D-2640",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[21,8]},"flag-nc":{a:"New Caledonia Flag",b:"1F1F3-1F1E8",d:!0,e:!1,f:!0,g:!0,h:!0,i:!0,k:[3,41]},u5272:{a:"Squared Cjk Unified Ideograph-5272",b:"1F239",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["cut","divide","chinese","kanji","pink-square"],k:[5,40]},first_quarter_moon_with_face:{a:"First Quarter Moon with Face",b:"1F31B",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["nature","twilight","planet","space","night","evening","sleep"],k:[6,19]},man_in_tuxedo:{skin_variations:{"1F3FB":{unified:"1F935-1F3FB",non_qualified:null,image:"1f935-1f3fb.png",sheet_x:39,sheet_y:35,added_in:"9.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FC":{unified:"1F935-1F3FC",non_qualified:null,image:"1f935-1f3fc.png",sheet_x:39,sheet_y:36,added_in:"9.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FD":{unified:"1F935-1F3FD",non_qualified:null,image:"1f935-1f3fd.png",sheet_x:39,sheet_y:37,added_in:"9.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FE":{unified:"1F935-1F3FE",non_qualified:null,image:"1f935-1f3fe.png",sheet_x:39,sheet_y:38,added_in:"9.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FF":{unified:"1F935-1F3FF",non_qualified:null,image:"1f935-1f3ff.png",sheet_x:39,sheet_y:39,added_in:"9.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1}},a:"Man in Tuxedo",b:"1F935",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["couple","marriage","wedding","groom"],k:[39,34],o:9},"flag-ne":{a:"Niger Flag",b:"1F1F3-1F1EA",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[3,42]},u7121:{a:"Squared Cjk Unified Ideograph-7121",b:"1F21A",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["nothing","chinese","kanji","japanese","orange-square"],k:[5,31],o:5},last_quarter_moon_with_face:{a:"Last Quarter Moon with Face",b:"1F31C",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["nature","twilight","planet","space","night","evening","sleep"],k:[6,20]},bride_with_veil:{skin_variations:{"1F3FB":{unified:"1F470-1F3FB",non_qualified:null,image:"1f470-1f3fb.png",sheet_x:21,sheet_y:3,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0},"1F3FC":{unified:"1F470-1F3FC",non_qualified:null,image:"1f470-1f3fc.png",sheet_x:21,sheet_y:4,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0},"1F3FD":{unified:"1F470-1F3FD",non_qualified:null,image:"1f470-1f3fd.png",sheet_x:21,sheet_y:5,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0},"1F3FE":{unified:"1F470-1F3FE",non_qualified:null,image:"1f470-1f3fe.png",sheet_x:21,sheet_y:6,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0},"1F3FF":{unified:"1F470-1F3FF",non_qualified:null,image:"1f470-1f3ff.png",sheet_x:21,sheet_y:7,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0}},a:"Bride with Veil",b:"1F470",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["couple","marriage","wedding","woman","bride"],k:[21,2]},"flag-nf":{a:"Norfolk Island Flag",b:"1F1F3-1F1EB",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[3,43]},u7981:{a:"Squared Cjk Unified Ideograph-7981",b:"1F232",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["kanji","japanese","chinese","forbidden","limit","restricted","red-square"],k:[5,33]},thermometer:{a:"Thermometer",b:"1F321-FE0F",c:"1F321",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["weather","temperature","hot","cold"],k:[6,25],o:7},pregnant_woman:{skin_variations:{"1F3FB":{unified:"1F930-1F3FB",non_qualified:null,image:"1f930-1f3fb.png",sheet_x:39,sheet_y:5,added_in:"9.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FC":{unified:"1F930-1F3FC",non_qualified:null,image:"1f930-1f3fc.png",sheet_x:39,sheet_y:6,added_in:"9.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FD":{unified:"1F930-1F3FD",non_qualified:null,image:"1f930-1f3fd.png",sheet_x:39,sheet_y:7,added_in:"9.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FE":{unified:"1F930-1F3FE",non_qualified:null,image:"1f930-1f3fe.png",sheet_x:39,sheet_y:8,added_in:"9.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FF":{unified:"1F930-1F3FF",non_qualified:null,image:"1f930-1f3ff.png",sheet_x:39,sheet_y:9,added_in:"9.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1}},a:"Pregnant Woman",b:"1F930",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["baby"],k:[39,4],o:9},"flag-ng":{a:"Nigeria Flag",b:"1F1F3-1F1EC",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[3,44]},accept:{a:"Circled Ideograph Accept",b:"1F251",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["ok","good","chinese","kanji","agree","yes","orange-circle"],k:[5,43]},"breast-feeding":{skin_variations:{"1F3FB":{unified:"1F931-1F3FB",non_qualified:null,image:"1f931-1f3fb.png",sheet_x:39,sheet_y:11,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FC":{unified:"1F931-1F3FC",non_qualified:null,image:"1f931-1f3fc.png",sheet_x:39,sheet_y:12,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FD":{unified:"1F931-1F3FD",non_qualified:null,image:"1f931-1f3fd.png",sheet_x:39,sheet_y:13,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FE":{unified:"1F931-1F3FE",non_qualified:null,image:"1f931-1f3fe.png",sheet_x:39,sheet_y:14,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FF":{unified:"1F931-1F3FF",non_qualified:null,image:"1f931-1f3ff.png",sheet_x:39,sheet_y:15,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1}},a:"Breast-Feeding",b:"1F931",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[39,10],o:10},sunny:{a:"Black Sun with Rays",b:"2600-FE0F",c:"2600",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["weather","nature","brightness","summer","beach","spring"],k:[47,16],o:1},"flag-ni":{a:"Nicaragua Flag",b:"1F1F3-1F1EE",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[3,45]},u7533:{a:"Squared Cjk Unified Ideograph-7533",b:"1F238",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["chinese","japanese","kanji","orange-square"],k:[5,39]},full_moon_with_face:{a:"Full Moon with Face",b:"1F31D",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["nature","twilight","planet","space","night","evening","sleep"],k:[6,21]},angel:{skin_variations:{"1F3FB":{unified:"1F47C-1F3FB",non_qualified:null,image:"1f47c-1f3fb.png",sheet_x:22,sheet_y:44,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0},"1F3FC":{unified:"1F47C-1F3FC",non_qualified:null,image:"1f47c-1f3fc.png",sheet_x:22,sheet_y:45,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0},"1F3FD":{unified:"1F47C-1F3FD",non_qualified:null,image:"1f47c-1f3fd.png",sheet_x:22,sheet_y:46,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0},"1F3FE":{unified:"1F47C-1F3FE",non_qualified:null,image:"1f47c-1f3fe.png",sheet_x:22,sheet_y:47,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0},"1F3FF":{unified:"1F47C-1F3FF",non_qualified:null,image:"1f47c-1f3ff.png",sheet_x:22,sheet_y:48,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0}},a:"Baby Angel",b:"1F47C",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["heaven","wings","halo"],k:[22,43]},"flag-nl":{a:"Netherlands Flag",b:"1F1F3-1F1F1",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[3,46]},u5408:{a:"Squared Cjk Unified Ideograph-5408",b:"1F234",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["japanese","chinese","join","kanji","red-square"],k:[5,35]},sun_with_face:{a:"Sun with Face",b:"1F31E",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["nature","morning","sky"],k:[6,22]},santa:{skin_variations:{"1F3FB":{unified:"1F385-1F3FB",non_qualified:null,image:"1f385-1f3fb.png",sheet_x:8,sheet_y:20,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0},"1F3FC":{unified:"1F385-1F3FC",non_qualified:null,image:"1f385-1f3fc.png",sheet_x:8,sheet_y:21,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0},"1F3FD":{unified:"1F385-1F3FD",non_qualified:null,image:"1f385-1f3fd.png",sheet_x:8,sheet_y:22,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0},"1F3FE":{unified:"1F385-1F3FE",non_qualified:null,image:"1f385-1f3fe.png",sheet_x:8,sheet_y:23,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0},"1F3FF":{unified:"1F385-1F3FF",non_qualified:null,image:"1f385-1f3ff.png",sheet_x:8,sheet_y:24,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0}},a:"Father Christmas",b:"1F385",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["festival","man","male","xmas","father christmas"],k:[8,19]},"flag-no":{a:"Norway Flag",b:"1F1F3-1F1F4",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[3,47]},u7a7a:{a:"Squared Cjk Unified Ideograph-7a7a",b:"1F233",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["kanji","japanese","chinese","empty","sky","blue-square"],k:[5,34]},mrs_claus:{skin_variations:{"1F3FB":{unified:"1F936-1F3FB",non_qualified:null,image:"1f936-1f3fb.png",sheet_x:39,sheet_y:41,added_in:"9.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FC":{unified:"1F936-1F3FC",non_qualified:null,image:"1f936-1f3fc.png",sheet_x:39,sheet_y:42,added_in:"9.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FD":{unified:"1F936-1F3FD",non_qualified:null,image:"1f936-1f3fd.png",sheet_x:39,sheet_y:43,added_in:"9.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FE":{unified:"1F936-1F3FE",non_qualified:null,image:"1f936-1f3fe.png",sheet_x:39,sheet_y:44,added_in:"9.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FF":{unified:"1F936-1F3FF",non_qualified:null,image:"1f936-1f3ff.png",sheet_x:39,sheet_y:45,added_in:"9.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1}},a:"Mother Christmas",b:"1F936",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["woman","female","xmas","mother christmas"],k:[39,40],n:["mother_christmas"],o:9},star:{a:"White Medium Star",b:"2B50",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["night","yellow"],k:[50,22],o:5},"flag-np":{a:"Nepal Flag",b:"1F1F3-1F1F5",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[3,48]},star2:{a:"Glowing Star",b:"1F31F",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["night","sparkle","awesome","good","magic"],k:[6,23]},mage:{skin_variations:{"1F3FB":{unified:"1F9D9-1F3FB",non_qualified:null,image:"1f9d9-1f3fb.png",sheet_x:44,sheet_y:43,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1,obsoleted_by:"1F9D9-1F3FB-200D-2640-FE0F"},"1F3FC":{unified:"1F9D9-1F3FC",non_qualified:null,image:"1f9d9-1f3fc.png",sheet_x:44,sheet_y:44,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1,obsoleted_by:"1F9D9-1F3FC-200D-2640-FE0F"},"1F3FD":{unified:"1F9D9-1F3FD",non_qualified:null,image:"1f9d9-1f3fd.png",sheet_x:44,sheet_y:45,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1,obsoleted_by:"1F9D9-1F3FD-200D-2640-FE0F"},"1F3FE":{unified:"1F9D9-1F3FE",non_qualified:null,image:"1f9d9-1f3fe.png",sheet_x:44,sheet_y:46,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1,obsoleted_by:"1F9D9-1F3FE-200D-2640-FE0F"},"1F3FF":{unified:"1F9D9-1F3FF",non_qualified:null,image:"1f9d9-1f3ff.png",sheet_x:44,sheet_y:47,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1,obsoleted_by:"1F9D9-1F3FF-200D-2640-FE0F"}},obsoleted_by:"1F9D9-200D-2640-FE0F",a:"Mage",b:"1F9D9",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[44,42],o:10},congratulations:{a:"Circled Ideograph Congratulation",b:"3297-FE0F",c:"3297",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["chinese","kanji","japanese","red-circle"],k:[50,26],o:1},"flag-nr":{a:"Nauru Flag",b:"1F1F3-1F1F7",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[3,49]},stars:{a:"Shooting Star",b:"1F320",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["night","photo"],k:[6,24]},female_mage:{skin_variations:{"1F3FB":{unified:"1F9D9-1F3FB-200D-2640-FE0F",non_qualified:"1F9D9-1F3FB-200D-2640",image:"1f9d9-1f3fb-200d-2640-fe0f.png",sheet_x:44,sheet_y:31,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1,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:44,sheet_y:32,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1,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:44,sheet_y:33,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1,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:44,sheet_y:34,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1,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:44,sheet_y:35,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1,obsoletes:"1F9D9-1F3FF"}},obsoletes:"1F9D9",a:"Female Mage",b:"1F9D9-200D-2640-FE0F",c:"1F9D9-200D-2640",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[44,30],o:10},secret:{a:"Circled Ideograph Secret",b:"3299-FE0F",c:"3299",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["privacy","chinese","sshh","kanji","red-circle"],k:[50,27],o:1},"flag-nu":{a:"Niue Flag",b:"1F1F3-1F1FA",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[3,50]},u55b6:{a:"Squared Cjk Unified Ideograph-55b6",b:"1F23A",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["japanese","opening hours","orange-square"],k:[5,41]},male_mage:{skin_variations:{"1F3FB":{unified:"1F9D9-1F3FB-200D-2642-FE0F",non_qualified:"1F9D9-1F3FB-200D-2642",image:"1f9d9-1f3fb-200d-2642-fe0f.png",sheet_x:44,sheet_y:37,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"1F3FC":{unified:"1F9D9-1F3FC-200D-2642-FE0F",non_qualified:"1F9D9-1F3FC-200D-2642",image:"1f9d9-1f3fc-200d-2642-fe0f.png",sheet_x:44,sheet_y:38,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"1F3FD":{unified:"1F9D9-1F3FD-200D-2642-FE0F",non_qualified:"1F9D9-1F3FD-200D-2642",image:"1f9d9-1f3fd-200d-2642-fe0f.png",sheet_x:44,sheet_y:39,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"1F3FE":{unified:"1F9D9-1F3FE-200D-2642-FE0F",non_qualified:"1F9D9-1F3FE-200D-2642",image:"1f9d9-1f3fe-200d-2642-fe0f.png",sheet_x:44,sheet_y:40,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"1F3FF":{unified:"1F9D9-1F3FF-200D-2642-FE0F",non_qualified:"1F9D9-1F3FF-200D-2642",image:"1f9d9-1f3ff-200d-2642-fe0f.png",sheet_x:44,sheet_y:41,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1}},a:"Male Mage",b:"1F9D9-200D-2642-FE0F",c:"1F9D9-200D-2642",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[44,36],o:10},cloud:{a:"Cloud",b:"2601-FE0F",c:"2601",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["weather","sky"],k:[47,17],o:1},"flag-nz":{a:"New Zealand Flag",b:"1F1F3-1F1FF",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[3,51]},u6e80:{a:"Squared Cjk Unified Ideograph-6e80",b:"1F235",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["full","chinese","japanese","red-square","kanji"],k:[5,36]},fairy:{skin_variations:{"1F3FB":{unified:"1F9DA-1F3FB",non_qualified:null,image:"1f9da-1f3fb.png",sheet_x:45,sheet_y:9,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1,obsoleted_by:"1F9DA-1F3FB-200D-2640-FE0F"},"1F3FC":{unified:"1F9DA-1F3FC",non_qualified:null,image:"1f9da-1f3fc.png",sheet_x:45,sheet_y:10,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1,obsoleted_by:"1F9DA-1F3FC-200D-2640-FE0F"},"1F3FD":{unified:"1F9DA-1F3FD",non_qualified:null,image:"1f9da-1f3fd.png",sheet_x:45,sheet_y:11,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1,obsoleted_by:"1F9DA-1F3FD-200D-2640-FE0F"},"1F3FE":{unified:"1F9DA-1F3FE",non_qualified:null,image:"1f9da-1f3fe.png",sheet_x:45,sheet_y:12,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1,obsoleted_by:"1F9DA-1F3FE-200D-2640-FE0F"},"1F3FF":{unified:"1F9DA-1F3FF",non_qualified:null,image:"1f9da-1f3ff.png",sheet_x:45,sheet_y:13,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1,obsoleted_by:"1F9DA-1F3FF-200D-2640-FE0F"}},obsoleted_by:"1F9DA-200D-2640-FE0F",a:"Fairy",b:"1F9DA",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[45,8],o:10},partly_sunny:{a:"Sun Behind Cloud",b:"26C5",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["weather","nature","cloudy","morning","fall","spring"],k:[48,29],o:5},"flag-om":{a:"Oman Flag",b:"1F1F4-1F1F2",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[4,0]},female_fairy:{skin_variations:{"1F3FB":{unified:"1F9DA-1F3FB-200D-2640-FE0F",non_qualified:"1F9DA-1F3FB-200D-2640",image:"1f9da-1f3fb-200d-2640-fe0f.png",sheet_x:44,sheet_y:49,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1,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:44,sheet_y:50,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1,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:44,sheet_y:51,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1,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:45,sheet_y:0,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1,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:45,sheet_y:1,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1,obsoletes:"1F9DA-1F3FF"}},obsoletes:"1F9DA",a:"Female Fairy",b:"1F9DA-200D-2640-FE0F",c:"1F9DA-200D-2640",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[44,48],o:10},black_small_square:{a:"Black Small Square",b:"25AA-FE0F",c:"25AA",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["shape","icon"],k:[47,8],o:1},thunder_cloud_and_rain:{a:"Thunder Cloud and Rain",b:"26C8-FE0F",c:"26C8",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[48,30],o:5},"flag-pa":{a:"Panama Flag",b:"1F1F5-1F1E6",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[4,1]},mostly_sunny:{a:"Mostly Sunny",b:"1F324-FE0F",c:"1F324",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[6,26],n:["sun_small_cloud"],o:7},male_fairy:{skin_variations:{"1F3FB":{unified:"1F9DA-1F3FB-200D-2642-FE0F",non_qualified:"1F9DA-1F3FB-200D-2642",image:"1f9da-1f3fb-200d-2642-fe0f.png",sheet_x:45,sheet_y:3,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"1F3FC":{unified:"1F9DA-1F3FC-200D-2642-FE0F",non_qualified:"1F9DA-1F3FC-200D-2642",image:"1f9da-1f3fc-200d-2642-fe0f.png",sheet_x:45,sheet_y:4,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"1F3FD":{unified:"1F9DA-1F3FD-200D-2642-FE0F",non_qualified:"1F9DA-1F3FD-200D-2642",image:"1f9da-1f3fd-200d-2642-fe0f.png",sheet_x:45,sheet_y:5,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"1F3FE":{unified:"1F9DA-1F3FE-200D-2642-FE0F",non_qualified:"1F9DA-1F3FE-200D-2642",image:"1f9da-1f3fe-200d-2642-fe0f.png",sheet_x:45,sheet_y:6,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"1F3FF":{unified:"1F9DA-1F3FF-200D-2642-FE0F",non_qualified:"1F9DA-1F3FF-200D-2642",image:"1f9da-1f3ff-200d-2642-fe0f.png",sheet_x:45,sheet_y:7,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1}},a:"Male Fairy",b:"1F9DA-200D-2642-FE0F",c:"1F9DA-200D-2642",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[45,2],o:10},white_small_square:{a:"White Small Square",b:"25AB-FE0F",c:"25AB",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["shape","icon"],k:[47,9],o:1},"flag-pe":{a:"Peru Flag",b:"1F1F5-1F1EA",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[4,2]},barely_sunny:{a:"Barely Sunny",b:"1F325-FE0F",c:"1F325",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[6,27],n:["sun_behind_cloud"],o:7},vampire:{skin_variations:{"1F3FB":{unified:"1F9DB-1F3FB",non_qualified:null,image:"1f9db-1f3fb.png",sheet_x:45,sheet_y:27,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1,obsoleted_by:"1F9DB-1F3FB-200D-2640-FE0F"},"1F3FC":{unified:"1F9DB-1F3FC",non_qualified:null,image:"1f9db-1f3fc.png",sheet_x:45,sheet_y:28,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1,obsoleted_by:"1F9DB-1F3FC-200D-2640-FE0F"},"1F3FD":{unified:"1F9DB-1F3FD",non_qualified:null,image:"1f9db-1f3fd.png",sheet_x:45,sheet_y:29,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1,obsoleted_by:"1F9DB-1F3FD-200D-2640-FE0F"},"1F3FE":{unified:"1F9DB-1F3FE",non_qualified:null,image:"1f9db-1f3fe.png",sheet_x:45,sheet_y:30,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1,obsoleted_by:"1F9DB-1F3FE-200D-2640-FE0F"},"1F3FF":{unified:"1F9DB-1F3FF",non_qualified:null,image:"1f9db-1f3ff.png",sheet_x:45,sheet_y:31,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1,obsoleted_by:"1F9DB-1F3FF-200D-2640-FE0F"}},obsoleted_by:"1F9DB-200D-2640-FE0F",a:"Vampire",b:"1F9DB",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[45,26],o:10},white_medium_square:{a:"White Medium Square",b:"25FB-FE0F",c:"25FB",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["shape","stone","icon"],k:[47,12],o:3},"flag-pf":{a:"French Polynesia Flag",b:"1F1F5-1F1EB",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[4,3]},partly_sunny_rain:{a:"Partly Sunny Rain",b:"1F326-FE0F",c:"1F326",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[6,28],n:["sun_behind_rain_cloud"],o:7},female_vampire:{skin_variations:{"1F3FB":{unified:"1F9DB-1F3FB-200D-2640-FE0F",non_qualified:"1F9DB-1F3FB-200D-2640",image:"1f9db-1f3fb-200d-2640-fe0f.png",sheet_x:45,sheet_y:15,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1,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:45,sheet_y:16,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1,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:45,sheet_y:17,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1,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:45,sheet_y:18,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1,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:45,sheet_y:19,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1,obsoletes:"1F9DB-1F3FF"}},obsoletes:"1F9DB",a:"Female Vampire",b:"1F9DB-200D-2640-FE0F",c:"1F9DB-200D-2640",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[45,14],o:10},black_medium_square:{a:"Black Medium Square",b:"25FC-FE0F",c:"25FC",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["shape","button","icon"],k:[47,13],o:3},"flag-pg":{a:"Papua New Guinea Flag",b:"1F1F5-1F1EC",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[4,4]},rain_cloud:{a:"Rain Cloud",b:"1F327-FE0F",c:"1F327",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[6,29],o:7},male_vampire:{skin_variations:{"1F3FB":{unified:"1F9DB-1F3FB-200D-2642-FE0F",non_qualified:"1F9DB-1F3FB-200D-2642",image:"1f9db-1f3fb-200d-2642-fe0f.png",sheet_x:45,sheet_y:21,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"1F3FC":{unified:"1F9DB-1F3FC-200D-2642-FE0F",non_qualified:"1F9DB-1F3FC-200D-2642",image:"1f9db-1f3fc-200d-2642-fe0f.png",sheet_x:45,sheet_y:22,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"1F3FD":{unified:"1F9DB-1F3FD-200D-2642-FE0F",non_qualified:"1F9DB-1F3FD-200D-2642",image:"1f9db-1f3fd-200d-2642-fe0f.png",sheet_x:45,sheet_y:23,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"1F3FE":{unified:"1F9DB-1F3FE-200D-2642-FE0F",non_qualified:"1F9DB-1F3FE-200D-2642",image:"1f9db-1f3fe-200d-2642-fe0f.png",sheet_x:45,sheet_y:24,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"1F3FF":{unified:"1F9DB-1F3FF-200D-2642-FE0F",non_qualified:"1F9DB-1F3FF-200D-2642",image:"1f9db-1f3ff-200d-2642-fe0f.png",sheet_x:45,sheet_y:25,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1}},a:"Male Vampire",b:"1F9DB-200D-2642-FE0F",c:"1F9DB-200D-2642",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[45,20],o:10},white_medium_small_square:{a:"White Medium Small Square",b:"25FD",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["shape","stone","icon","button"],k:[47,14],o:3},"flag-ph":{a:"Philippines Flag",b:"1F1F5-1F1ED",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[4,5]},snow_cloud:{a:"Snow Cloud",b:"1F328-FE0F",c:"1F328",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[6,30],o:7},merperson:{skin_variations:{"1F3FB":{unified:"1F9DC-1F3FB",non_qualified:null,image:"1f9dc-1f3fb.png",sheet_x:45,sheet_y:45,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1,obsoleted_by:"1F9DC-1F3FB-200D-2642-FE0F"},"1F3FC":{unified:"1F9DC-1F3FC",non_qualified:null,image:"1f9dc-1f3fc.png",sheet_x:45,sheet_y:46,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1,obsoleted_by:"1F9DC-1F3FC-200D-2642-FE0F"},"1F3FD":{unified:"1F9DC-1F3FD",non_qualified:null,image:"1f9dc-1f3fd.png",sheet_x:45,sheet_y:47,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1,obsoleted_by:"1F9DC-1F3FD-200D-2642-FE0F"},"1F3FE":{unified:"1F9DC-1F3FE",non_qualified:null,image:"1f9dc-1f3fe.png",sheet_x:45,sheet_y:48,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1,obsoleted_by:"1F9DC-1F3FE-200D-2642-FE0F"},"1F3FF":{unified:"1F9DC-1F3FF",non_qualified:null,image:"1f9dc-1f3ff.png",sheet_x:45,sheet_y:49,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1,obsoleted_by:"1F9DC-1F3FF-200D-2642-FE0F"}},obsoleted_by:"1F9DC-200D-2642-FE0F",a:"Merperson",b:"1F9DC",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[45,44],o:10},black_medium_small_square:{a:"Black Medium Small Square",b:"25FE",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["icon","shape","button"],k:[47,15],o:3},"flag-pk":{a:"Pakistan Flag",b:"1F1F5-1F1F0",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[4,6]},lightning:{a:"Lightning",b:"1F329-FE0F",c:"1F329",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[6,31],n:["lightning_cloud"],o:7},mermaid:{skin_variations:{"1F3FB":{unified:"1F9DC-1F3FB-200D-2640-FE0F",non_qualified:"1F9DC-1F3FB-200D-2640",image:"1f9dc-1f3fb-200d-2640-fe0f.png",sheet_x:45,sheet_y:33,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"1F3FC":{unified:"1F9DC-1F3FC-200D-2640-FE0F",non_qualified:"1F9DC-1F3FC-200D-2640",image:"1f9dc-1f3fc-200d-2640-fe0f.png",sheet_x:45,sheet_y:34,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"1F3FD":{unified:"1F9DC-1F3FD-200D-2640-FE0F",non_qualified:"1F9DC-1F3FD-200D-2640",image:"1f9dc-1f3fd-200d-2640-fe0f.png",sheet_x:45,sheet_y:35,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"1F3FE":{unified:"1F9DC-1F3FE-200D-2640-FE0F",non_qualified:"1F9DC-1F3FE-200D-2640",image:"1f9dc-1f3fe-200d-2640-fe0f.png",sheet_x:45,sheet_y:36,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"1F3FF":{unified:"1F9DC-1F3FF-200D-2640-FE0F",non_qualified:"1F9DC-1F3FF-200D-2640",image:"1f9dc-1f3ff-200d-2640-fe0f.png",sheet_x:45,sheet_y:37,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1}},a:"Mermaid",b:"1F9DC-200D-2640-FE0F",c:"1F9DC-200D-2640",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["woman","female","merwoman","ariel"],k:[45,32],o:10},black_large_square:{a:"Black Large Square",b:"2B1B",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["shape","icon","button"],k:[50,20],o:5},"flag-pl":{a:"Poland Flag",b:"1F1F5-1F1F1",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[4,7]},tornado:{a:"Tornado",b:"1F32A-FE0F",c:"1F32A",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["weather","cyclone","twister"],k:[6,32],n:["tornado_cloud"],o:7},merman:{skin_variations:{"1F3FB":{unified:"1F9DC-1F3FB-200D-2642-FE0F",non_qualified:"1F9DC-1F3FB-200D-2642",image:"1f9dc-1f3fb-200d-2642-fe0f.png",sheet_x:45,sheet_y:39,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1,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:45,sheet_y:40,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1,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:45,sheet_y:41,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1,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:45,sheet_y:42,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1,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:45,sheet_y:43,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1,obsoletes:"1F9DC-1F3FF"}},obsoletes:"1F9DC",a:"Merman",b:"1F9DC-200D-2642-FE0F",c:"1F9DC-200D-2642",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["man","male","triton"],k:[45,38],o:10},white_large_square:{a:"White Large Square",b:"2B1C",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["shape","icon","stone","button"],k:[50,21],o:5},"flag-pm":{a:"St. Pierre & Miquelon Flag",b:"1F1F5-1F1F2",d:!0,e:!1,f:!0,g:!0,h:!0,i:!0,k:[4,8]},fog:{a:"Fog",b:"1F32B-FE0F",c:"1F32B",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["weather"],k:[6,33],o:7},large_orange_diamond:{a:"Large Orange Diamond",b:"1F536",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["shape","jewel","gem"],k:[28,4]},elf:{skin_variations:{"1F3FB":{unified:"1F9DD-1F3FB",non_qualified:null,image:"1f9dd-1f3fb.png",sheet_x:46,sheet_y:11,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1,obsoleted_by:"1F9DD-1F3FB-200D-2642-FE0F"},"1F3FC":{unified:"1F9DD-1F3FC",non_qualified:null,image:"1f9dd-1f3fc.png",sheet_x:46,sheet_y:12,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1,obsoleted_by:"1F9DD-1F3FC-200D-2642-FE0F"},"1F3FD":{unified:"1F9DD-1F3FD",non_qualified:null,image:"1f9dd-1f3fd.png",sheet_x:46,sheet_y:13,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1,obsoleted_by:"1F9DD-1F3FD-200D-2642-FE0F"},"1F3FE":{unified:"1F9DD-1F3FE",non_qualified:null,image:"1f9dd-1f3fe.png",sheet_x:46,sheet_y:14,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1,obsoleted_by:"1F9DD-1F3FE-200D-2642-FE0F"},"1F3FF":{unified:"1F9DD-1F3FF",non_qualified:null,image:"1f9dd-1f3ff.png",sheet_x:46,sheet_y:15,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1,obsoleted_by:"1F9DD-1F3FF-200D-2642-FE0F"}},obsoleted_by:"1F9DD-200D-2642-FE0F",a:"Elf",b:"1F9DD",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[46,10],o:10},"flag-pn":{a:"Pitcairn Islands Flag",b:"1F1F5-1F1F3",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[4,9]},wind_blowing_face:{a:"Wind Blowing Face",b:"1F32C-FE0F",c:"1F32C",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[6,34],o:7},large_blue_diamond:{a:"Large Blue Diamond",b:"1F537",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["shape","jewel","gem"],k:[28,5]},female_elf:{skin_variations:{"1F3FB":{unified:"1F9DD-1F3FB-200D-2640-FE0F",non_qualified:"1F9DD-1F3FB-200D-2640",image:"1f9dd-1f3fb-200d-2640-fe0f.png",sheet_x:45,sheet_y:51,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"1F3FC":{unified:"1F9DD-1F3FC-200D-2640-FE0F",non_qualified:"1F9DD-1F3FC-200D-2640",image:"1f9dd-1f3fc-200d-2640-fe0f.png",sheet_x:46,sheet_y:0,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"1F3FD":{unified:"1F9DD-1F3FD-200D-2640-FE0F",non_qualified:"1F9DD-1F3FD-200D-2640",image:"1f9dd-1f3fd-200d-2640-fe0f.png",sheet_x:46,sheet_y:1,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"1F3FE":{unified:"1F9DD-1F3FE-200D-2640-FE0F",non_qualified:"1F9DD-1F3FE-200D-2640",image:"1f9dd-1f3fe-200d-2640-fe0f.png",sheet_x:46,sheet_y:2,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"1F3FF":{unified:"1F9DD-1F3FF-200D-2640-FE0F",non_qualified:"1F9DD-1F3FF-200D-2640",image:"1f9dd-1f3ff-200d-2640-fe0f.png",sheet_x:46,sheet_y:3,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1}},a:"Female Elf",b:"1F9DD-200D-2640-FE0F",c:"1F9DD-200D-2640",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[45,50],o:10},"flag-pr":{a:"Puerto Rico Flag",b:"1F1F5-1F1F7",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[4,10]},cyclone:{a:"Cyclone",b:"1F300",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["weather","swirl","blue","cloud","vortex","spiral","whirlpool","spin","tornado","hurricane","typhoon"],k:[5,44]},small_orange_diamond:{a:"Small Orange Diamond",b:"1F538",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["shape","jewel","gem"],k:[28,6]},male_elf:{skin_variations:{"1F3FB":{unified:"1F9DD-1F3FB-200D-2642-FE0F",non_qualified:"1F9DD-1F3FB-200D-2642",image:"1f9dd-1f3fb-200d-2642-fe0f.png",sheet_x:46,sheet_y:5,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1,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:46,sheet_y:6,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1,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:46,sheet_y:7,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1,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:46,sheet_y:8,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1,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:46,sheet_y:9,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1,obsoletes:"1F9DD-1F3FF"}},obsoletes:"1F9DD",a:"Male Elf",b:"1F9DD-200D-2642-FE0F",c:"1F9DD-200D-2642",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[46,4],o:10},"flag-ps":{a:"Palestinian Territories Flag",b:"1F1F5-1F1F8",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[4,11]},rainbow:{a:"Rainbow",b:"1F308",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["nature","happy","unicorn_face","photo","sky","spring"],k:[6,0]},small_blue_diamond:{a:"Small Blue Diamond",b:"1F539",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["shape","jewel","gem"],k:[28,7]},genie:{obsoleted_by:"1F9DE-200D-2642-FE0F",a:"Genie",b:"1F9DE",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[46,18],o:10},"flag-pt":{a:"Portugal Flag",b:"1F1F5-1F1F9",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[4,12]},closed_umbrella:{a:"Closed Umbrella",b:"1F302",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["weather","rain","drizzle"],k:[5,46]},small_red_triangle:{a:"Up-Pointing Red Triangle",b:"1F53A",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["shape","direction","up","top"],k:[28,8]},female_genie:{a:"Female Genie",b:"1F9DE-200D-2640-FE0F",c:"1F9DE-200D-2640",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[46,16],o:10},"flag-pw":{a:"Palau Flag",b:"1F1F5-1F1FC",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[4,13]},small_red_triangle_down:{a:"Down-Pointing Red Triangle",b:"1F53B",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["shape","direction","bottom"],k:[28,9]},male_genie:{obsoletes:"1F9DE",a:"Male Genie",b:"1F9DE-200D-2642-FE0F",c:"1F9DE-200D-2642",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[46,17],o:10},umbrella:{a:"Umbrella",b:"2602-FE0F",c:"2602",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["rainy","weather","spring"],k:[47,18],o:1},"flag-py":{a:"Paraguay Flag",b:"1F1F5-1F1FE",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[4,14]},diamond_shape_with_a_dot_inside:{a:"Diamond Shape with a Dot Inside",b:"1F4A0",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["jewel","blue","gem","crystal","fancy"],k:[25,6]},zombie:{obsoleted_by:"1F9DF-200D-2642-FE0F",a:"Zombie",b:"1F9DF",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[46,21],o:10},umbrella_with_rain_drops:{a:"Umbrella with Rain Drops",b:"2614",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[47,23],o:4},"flag-qa":{a:"Qatar Flag",b:"1F1F6-1F1E6",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[4,15]},radio_button:{a:"Radio Button",b:"1F518",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["input","old","music","circle"],k:[27,26]},female_zombie:{a:"Female Zombie",b:"1F9DF-200D-2640-FE0F",c:"1F9DF-200D-2640",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[46,19],o:10},umbrella_on_ground:{a:"Umbrella on Ground",b:"26F1-FE0F",c:"26F1",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[48,39],o:5},"flag-re":{a:"Réunion Flag",b:"1F1F7-1F1EA",d:!0,e:!1,f:!0,g:!0,h:!0,i:!0,k:[4,16]},black_square_button:{a:"Black Square Button",b:"1F532",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["shape","input","frame"],k:[28,0]},male_zombie:{obsoletes:"1F9DF",a:"Male Zombie",b:"1F9DF-200D-2642-FE0F",c:"1F9DF-200D-2642",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[46,20],o:10},zap:{a:"High Voltage Sign",b:"26A1",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["thunder","weather","lightning bolt","fast"],k:[48,21],o:4},"flag-ro":{a:"Romania Flag",b:"1F1F7-1F1F4",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[4,17]},white_square_button:{a:"White Square Button",b:"1F533",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["shape","input"],k:[28,1]},person_frowning:{skin_variations:{"1F3FB":{unified:"1F64D-1F3FB",non_qualified:null,image:"1f64d-1f3fb.png",sheet_x:33,sheet_y:31,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!0},"1F3FC":{unified:"1F64D-1F3FC",non_qualified:null,image:"1f64d-1f3fc.png",sheet_x:33,sheet_y:32,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!0},"1F3FD":{unified:"1F64D-1F3FD",non_qualified:null,image:"1f64d-1f3fd.png",sheet_x:33,sheet_y:33,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!0},"1F3FE":{unified:"1F64D-1F3FE",non_qualified:null,image:"1f64d-1f3fe.png",sheet_x:33,sheet_y:34,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!0},"1F3FF":{unified:"1F64D-1F3FF",non_qualified:null,image:"1f64d-1f3ff.png",sheet_x:33,sheet_y:35,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!0}},obsoleted_by:"1F64D-200D-2640-FE0F",a:"Person Frowning",b:"1F64D",d:!0,e:!0,f:!0,g:!0,h:!1,i:!0,k:[33,30]},snowflake:{a:"Snowflake",b:"2744-FE0F",c:"2744",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["winter","season","cold","weather","christmas","xmas"],k:[49,51],o:1},"flag-rs":{a:"Serbia Flag",b:"1F1F7-1F1F8",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[4,18]},"man-frowning":{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:25,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:26,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:27,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:28,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:29,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1}},a:"Man Frowning",b:"1F64D-200D-2642-FE0F",c:"1F64D-200D-2642",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[33,24]},snowman:{a:"Snowman",b:"2603-FE0F",c:"2603",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["winter","season","cold","weather","christmas","xmas","frozen","without_snow"],k:[47,19],o:1},white_circle:{a:"Medium White Circle",b:"26AA",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["shape","round"],k:[48,22],o:4},ru:{a:"Russia Flag",b:"1F1F7-1F1FA",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["russian","federation","flag","nation","country","banner"],k:[4,19],n:["flag-ru"]},"woman-frowning":{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:19,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:20,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:21,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:22,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:23,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1}},obsoletes:"1F64D",a:"Woman Frowning",b:"1F64D-200D-2640-FE0F",c:"1F64D-200D-2640",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[33,18]},black_circle:{a:"Medium Black Circle",b:"26AB",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["shape","button","round"],k:[48,23],o:4},snowman_without_snow:{a:"Snowman Without Snow",b:"26C4",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[48,28],o:5},"flag-rw":{a:"Rwanda Flag",b:"1F1F7-1F1FC",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[4,20]},red_circle:{a:"Large Red Circle",b:"1F534",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["shape","error","danger"],k:[28,2]},person_with_pouting_face:{skin_variations:{"1F3FB":{unified:"1F64E-1F3FB",non_qualified:null,image:"1f64e-1f3fb.png",sheet_x:33,sheet_y:49,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!0},"1F3FC":{unified:"1F64E-1F3FC",non_qualified:null,image:"1f64e-1f3fc.png",sheet_x:33,sheet_y:50,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!0},"1F3FD":{unified:"1F64E-1F3FD",non_qualified:null,image:"1f64e-1f3fd.png",sheet_x:33,sheet_y:51,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!0},"1F3FE":{unified:"1F64E-1F3FE",non_qualified:null,image:"1f64e-1f3fe.png",sheet_x:34,sheet_y:0,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!0},"1F3FF":{unified:"1F64E-1F3FF",non_qualified:null,image:"1f64e-1f3ff.png",sheet_x:34,sheet_y:1,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!0}},obsoleted_by:"1F64E-200D-2640-FE0F",a:"Person with Pouting Face",b:"1F64E",d:!0,e:!0,f:!0,g:!0,h:!1,i:!0,k:[33,48]},comet:{a:"Comet",b:"2604-FE0F",c:"2604",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["space"],k:[47,20],o:1},"flag-sa":{a:"Saudi Arabia Flag",b:"1F1F8-1F1E6",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[4,21]},fire:{a:"Fire",b:"1F525",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["hot","cook","flame"],k:[27,39]},large_blue_circle:{a:"Large Blue Circle",b:"1F535",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["shape","icon","button"],k:[28,3]},"man-pouting":{skin_variations:{"1F3FB":{unified:"1F64E-1F3FB-200D-2642-FE0F",non_qualified:"1F64E-1F3FB-200D-2642",image:"1f64e-1f3fb-200d-2642-fe0f.png",sheet_x:33,sheet_y:43,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"1F3FC":{unified:"1F64E-1F3FC-200D-2642-FE0F",non_qualified:"1F64E-1F3FC-200D-2642",image:"1f64e-1f3fc-200d-2642-fe0f.png",sheet_x:33,sheet_y:44,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"1F3FD":{unified:"1F64E-1F3FD-200D-2642-FE0F",non_qualified:"1F64E-1F3FD-200D-2642",image:"1f64e-1f3fd-200d-2642-fe0f.png",sheet_x:33,sheet_y:45,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"1F3FE":{unified:"1F64E-1F3FE-200D-2642-FE0F",non_qualified:"1F64E-1F3FE-200D-2642",image:"1f64e-1f3fe-200d-2642-fe0f.png",sheet_x:33,sheet_y:46,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"1F3FF":{unified:"1F64E-1F3FF-200D-2642-FE0F",non_qualified:"1F64E-1F3FF-200D-2642",image:"1f64e-1f3ff-200d-2642-fe0f.png",sheet_x:33,sheet_y:47,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1}},a:"Man Pouting",b:"1F64E-200D-2642-FE0F",c:"1F64E-200D-2642",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[33,42]},"flag-sb":{a:"Solomon Islands Flag",b:"1F1F8-1F1E7",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[4,22]},droplet:{a:"Droplet",b:"1F4A7",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["water","drip","faucet","spring"],k:[25,13]},"woman-pouting":{skin_variations:{"1F3FB":{unified:"1F64E-1F3FB-200D-2640-FE0F",non_qualified:"1F64E-1F3FB-200D-2640",image:"1f64e-1f3fb-200d-2640-fe0f.png",sheet_x:33,sheet_y:37,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"1F3FC":{unified:"1F64E-1F3FC-200D-2640-FE0F",non_qualified:"1F64E-1F3FC-200D-2640",image:"1f64e-1f3fc-200d-2640-fe0f.png",sheet_x:33,sheet_y:38,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"1F3FD":{unified:"1F64E-1F3FD-200D-2640-FE0F",non_qualified:"1F64E-1F3FD-200D-2640",image:"1f64e-1f3fd-200d-2640-fe0f.png",sheet_x:33,sheet_y:39,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"1F3FE":{unified:"1F64E-1F3FE-200D-2640-FE0F",non_qualified:"1F64E-1F3FE-200D-2640",image:"1f64e-1f3fe-200d-2640-fe0f.png",sheet_x:33,sheet_y:40,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"1F3FF":{unified:"1F64E-1F3FF-200D-2640-FE0F",non_qualified:"1F64E-1F3FF-200D-2640",image:"1f64e-1f3ff-200d-2640-fe0f.png",sheet_x:33,sheet_y:41,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1}},obsoletes:"1F64E",a:"Woman Pouting",b:"1F64E-200D-2640-FE0F",c:"1F64E-200D-2640",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[33,36]},"flag-sc":{a:"Seychelles Flag",b:"1F1F8-1F1E8",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[4,23]},ocean:{a:"Water Wave",b:"1F30A",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["sea","water","wave","nature","tsunami","disaster"],k:[6,2]},no_good:{skin_variations:{"1F3FB":{unified:"1F645-1F3FB",non_qualified:null,image:"1f645-1f3fb.png",sheet_x:32,sheet_y:2,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!0},"1F3FC":{unified:"1F645-1F3FC",non_qualified:null,image:"1f645-1f3fc.png",sheet_x:32,sheet_y:3,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!0},"1F3FD":{unified:"1F645-1F3FD",non_qualified:null,image:"1f645-1f3fd.png",sheet_x:32,sheet_y:4,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!0},"1F3FE":{unified:"1F645-1F3FE",non_qualified:null,image:"1f645-1f3fe.png",sheet_x:32,sheet_y:5,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!0},"1F3FF":{unified:"1F645-1F3FF",non_qualified:null,image:"1f645-1f3ff.png",sheet_x:32,sheet_y:6,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!0}},obsoleted_by:"1F645-200D-2640-FE0F",a:"Face with No Good Gesture",b:"1F645",d:!0,e:!0,f:!0,g:!0,h:!1,i:!0,k:[32,1]},"flag-sd":{a:"Sudan Flag",b:"1F1F8-1F1E9",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[4,24]},"man-gesturing-no":{skin_variations:{"1F3FB":{unified:"1F645-1F3FB-200D-2642-FE0F",non_qualified:"1F645-1F3FB-200D-2642",image:"1f645-1f3fb-200d-2642-fe0f.png",sheet_x:31,sheet_y:48,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"1F3FC":{unified:"1F645-1F3FC-200D-2642-FE0F",non_qualified:"1F645-1F3FC-200D-2642",image:"1f645-1f3fc-200d-2642-fe0f.png",sheet_x:31,sheet_y:49,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"1F3FD":{unified:"1F645-1F3FD-200D-2642-FE0F",non_qualified:"1F645-1F3FD-200D-2642",image:"1f645-1f3fd-200d-2642-fe0f.png",sheet_x:31,sheet_y:50,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"1F3FE":{unified:"1F645-1F3FE-200D-2642-FE0F",non_qualified:"1F645-1F3FE-200D-2642",image:"1f645-1f3fe-200d-2642-fe0f.png",sheet_x:31,sheet_y:51,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:0,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1}},a:"Man Gesturing No",b:"1F645-200D-2642-FE0F",c:"1F645-200D-2642",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[31,47]},"flag-se":{a:"Sweden Flag",b:"1F1F8-1F1EA",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[4,25]},"woman-gesturing-no":{skin_variations:{"1F3FB":{unified:"1F645-1F3FB-200D-2640-FE0F",non_qualified:"1F645-1F3FB-200D-2640",image:"1f645-1f3fb-200d-2640-fe0f.png",sheet_x:31,sheet_y:42,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"1F3FC":{unified:"1F645-1F3FC-200D-2640-FE0F",non_qualified:"1F645-1F3FC-200D-2640",image:"1f645-1f3fc-200d-2640-fe0f.png",sheet_x:31,sheet_y:43,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"1F3FD":{unified:"1F645-1F3FD-200D-2640-FE0F",non_qualified:"1F645-1F3FD-200D-2640",image:"1f645-1f3fd-200d-2640-fe0f.png",sheet_x:31,sheet_y:44,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"1F3FE":{unified:"1F645-1F3FE-200D-2640-FE0F",non_qualified:"1F645-1F3FE-200D-2640",image:"1f645-1f3fe-200d-2640-fe0f.png",sheet_x:31,sheet_y:45,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"1F3FF":{unified:"1F645-1F3FF-200D-2640-FE0F",non_qualified:"1F645-1F3FF-200D-2640",image:"1f645-1f3ff-200d-2640-fe0f.png",sheet_x:31,sheet_y:46,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1}},obsoletes:"1F645",a:"Woman Gesturing No",b:"1F645-200D-2640-FE0F",c:"1F645-200D-2640",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[31,41]},"flag-sg":{a:"Singapore Flag",b:"1F1F8-1F1EC",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[4,26]},ok_woman:{skin_variations:{"1F3FB":{unified:"1F646-1F3FB",non_qualified:null,image:"1f646-1f3fb.png",sheet_x:32,sheet_y:20,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!0},"1F3FC":{unified:"1F646-1F3FC",non_qualified:null,image:"1f646-1f3fc.png",sheet_x:32,sheet_y:21,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!0},"1F3FD":{unified:"1F646-1F3FD",non_qualified:null,image:"1f646-1f3fd.png",sheet_x:32,sheet_y:22,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!0},"1F3FE":{unified:"1F646-1F3FE",non_qualified:null,image:"1f646-1f3fe.png",sheet_x:32,sheet_y:23,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!0},"1F3FF":{unified:"1F646-1F3FF",non_qualified:null,image:"1f646-1f3ff.png",sheet_x:32,sheet_y:24,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!0}},obsoleted_by:"1F646-200D-2640-FE0F",a:"Face with Ok Gesture",b:"1F646",d:!0,e:!0,f:!0,g:!0,h:!1,i:!0,j:["women","girl","female","pink","human","woman"],k:[32,19]},"flag-sh":{a:"St. Helena Flag",b:"1F1F8-1F1ED",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[4,27]},"man-gesturing-ok":{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:14,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:15,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:16,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:17,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:18,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1}},a:"Man Gesturing Ok",b:"1F646-200D-2642-FE0F",c:"1F646-200D-2642",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[32,13]},"flag-si":{a:"Slovenia Flag",b:"1F1F8-1F1EE",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[4,28]},"woman-gesturing-ok":{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:8,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:9,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:10,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:11,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:12,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1}},obsoletes:"1F646",a:"Woman Gesturing Ok",b:"1F646-200D-2640-FE0F",c:"1F646-200D-2640",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[32,7]},"flag-sj":{a:"Svalbard & Jan Mayen Flag",b:"1F1F8-1F1EF",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[4,29]},information_desk_person:{skin_variations:{"1F3FB":{unified:"1F481-1F3FB",non_qualified:null,image:"1f481-1f3fb.png",sheet_x:23,sheet_y:14,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!0},"1F3FC":{unified:"1F481-1F3FC",non_qualified:null,image:"1f481-1f3fc.png",sheet_x:23,sheet_y:15,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!0},"1F3FD":{unified:"1F481-1F3FD",non_qualified:null,image:"1f481-1f3fd.png",sheet_x:23,sheet_y:16,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!0},"1F3FE":{unified:"1F481-1F3FE",non_qualified:null,image:"1f481-1f3fe.png",sheet_x:23,sheet_y:17,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!0},"1F3FF":{unified:"1F481-1F3FF",non_qualified:null,image:"1f481-1f3ff.png",sheet_x:23,sheet_y:18,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!0}},obsoleted_by:"1F481-200D-2640-FE0F",a:"Information Desk Person",b:"1F481",d:!0,e:!0,f:!0,g:!0,h:!1,i:!0,k:[23,13]},"flag-sk":{a:"Slovakia Flag",b:"1F1F8-1F1F0",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[4,30]},"man-tipping-hand":{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:8,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:9,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:10,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:11,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:12,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1}},a:"Man Tipping Hand",b:"1F481-200D-2642-FE0F",c:"1F481-200D-2642",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[23,7]},"flag-sl":{a:"Sierra Leone Flag",b:"1F1F8-1F1F1",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[4,31]},"woman-tipping-hand":{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:2,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:3,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:4,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:5,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:6,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1}},obsoletes:"1F481",a:"Woman Tipping Hand",b:"1F481-200D-2640-FE0F",c:"1F481-200D-2640",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[23,1]},"flag-sm":{a:"San Marino Flag",b:"1F1F8-1F1F2",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[4,32]},raising_hand:{skin_variations:{"1F3FB":{unified:"1F64B-1F3FB",non_qualified:null,image:"1f64b-1f3fb.png",sheet_x:33,sheet_y:7,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!0},"1F3FC":{unified:"1F64B-1F3FC",non_qualified:null,image:"1f64b-1f3fc.png",sheet_x:33,sheet_y:8,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!0},"1F3FD":{unified:"1F64B-1F3FD",non_qualified:null,image:"1f64b-1f3fd.png",sheet_x:33,sheet_y:9,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!0},"1F3FE":{unified:"1F64B-1F3FE",non_qualified:null,image:"1f64b-1f3fe.png",sheet_x:33,sheet_y:10,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!0},"1F3FF":{unified:"1F64B-1F3FF",non_qualified:null,image:"1f64b-1f3ff.png",sheet_x:33,sheet_y:11,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!0}},obsoleted_by:"1F64B-200D-2640-FE0F",a:"Happy Person Raising One Hand",b:"1F64B",d:!0,e:!0,f:!0,g:!0,h:!1,i:!0,k:[33,6]},"flag-sn":{a:"Senegal Flag",b:"1F1F8-1F1F3",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[4,33]},"man-raising-hand":{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:1,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:2,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:3,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:4,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:5,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1}},a:"Man Raising Hand",b:"1F64B-200D-2642-FE0F",c:"1F64B-200D-2642",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[33,0]},"flag-so":{a:"Somalia Flag",b:"1F1F8-1F1F4",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[4,34]},"woman-raising-hand":{skin_variations:{"1F3FB":{unified:"1F64B-1F3FB-200D-2640-FE0F",non_qualified:"1F64B-1F3FB-200D-2640",image:"1f64b-1f3fb-200d-2640-fe0f.png",sheet_x:32,sheet_y:47,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"1F3FC":{unified:"1F64B-1F3FC-200D-2640-FE0F",non_qualified:"1F64B-1F3FC-200D-2640",image:"1f64b-1f3fc-200d-2640-fe0f.png",sheet_x:32,sheet_y:48,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"1F3FD":{unified:"1F64B-1F3FD-200D-2640-FE0F",non_qualified:"1F64B-1F3FD-200D-2640",image:"1f64b-1f3fd-200d-2640-fe0f.png",sheet_x:32,sheet_y:49,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"1F3FE":{unified:"1F64B-1F3FE-200D-2640-FE0F",non_qualified:"1F64B-1F3FE-200D-2640",image:"1f64b-1f3fe-200d-2640-fe0f.png",sheet_x:32,sheet_y:50,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"1F3FF":{unified:"1F64B-1F3FF-200D-2640-FE0F",non_qualified:"1F64B-1F3FF-200D-2640",image:"1f64b-1f3ff-200d-2640-fe0f.png",sheet_x:32,sheet_y:51,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1}},obsoletes:"1F64B",a:"Woman Raising Hand",b:"1F64B-200D-2640-FE0F",c:"1F64B-200D-2640",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[32,46]},"flag-sr":{a:"Suriname Flag",b:"1F1F8-1F1F7",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[4,35]},bow:{skin_variations:{"1F3FB":{unified:"1F647-1F3FB",non_qualified:null,image:"1f647-1f3fb.png",sheet_x:32,sheet_y:38,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!0},"1F3FC":{unified:"1F647-1F3FC",non_qualified:null,image:"1f647-1f3fc.png",sheet_x:32,sheet_y:39,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!0},"1F3FD":{unified:"1F647-1F3FD",non_qualified:null,image:"1f647-1f3fd.png",sheet_x:32,sheet_y:40,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!0},"1F3FE":{unified:"1F647-1F3FE",non_qualified:null,image:"1f647-1f3fe.png",sheet_x:32,sheet_y:41,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!0},"1F3FF":{unified:"1F647-1F3FF",non_qualified:null,image:"1f647-1f3ff.png",sheet_x:32,sheet_y:42,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!0}},obsoleted_by:"1F647-200D-2642-FE0F",a:"Person Bowing Deeply",b:"1F647",d:!0,e:!0,f:!0,g:!0,h:!1,i:!0,k:[32,37]},"flag-ss":{a:"South Sudan Flag",b:"1F1F8-1F1F8",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[4,36]},"man-bowing":{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:32,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:33,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:34,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:35,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"1F3FF":{unified:"1F647-1F3FF-200D-2642-FE0F",non_qualified:"1F647-1F3FF-200D-2642",image:"1f647-1f3ff-200d-2642-fe0f.png",sheet_x:32,sheet_y:36,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1}},obsoletes:"1F647",a:"Man Bowing",b:"1F647-200D-2642-FE0F",c:"1F647-200D-2642",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[32,31]},"flag-st":{a:"São Tomé & Príncipe Flag",b:"1F1F8-1F1F9",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[4,37]},"woman-bowing":{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:26,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:27,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:28,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:29,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:30,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1}},a:"Woman Bowing",b:"1F647-200D-2640-FE0F",c:"1F647-200D-2640",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[32,25]},"flag-sv":{a:"El Salvador Flag",b:"1F1F8-1F1FB",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[4,38]},face_palm:{skin_variations:{"1F3FB":{unified:"1F926-1F3FB",non_qualified:null,image:"1f926-1f3fb.png",sheet_x:38,sheet_y:42,added_in:"9.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"1F3FC":{unified:"1F926-1F3FC",non_qualified:null,image:"1f926-1f3fc.png",sheet_x:38,sheet_y:43,added_in:"9.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"1F3FD":{unified:"1F926-1F3FD",non_qualified:null,image:"1f926-1f3fd.png",sheet_x:38,sheet_y:44,added_in:"9.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"1F3FE":{unified:"1F926-1F3FE",non_qualified:null,image:"1f926-1f3fe.png",sheet_x:38,sheet_y:45,added_in:"9.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"1F3FF":{unified:"1F926-1F3FF",non_qualified:null,image:"1f926-1f3ff.png",sheet_x:38,sheet_y:46,added_in:"9.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1}},a:"Face Palm",b:"1F926",d:!0,e:!0,f:!0,g:!0,h:!1,i:!1,k:[38,41],o:9},"flag-sx":{a:"Sint Maarten Flag",b:"1F1F8-1F1FD",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[4,39]},"man-facepalming":{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:36,added_in:"9.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:37,added_in:"9.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:38,added_in:"9.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:39,added_in:"9.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:40,added_in:"9.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1}},a:"Man Facepalming",b:"1F926-200D-2642-FE0F",c:"1F926-200D-2642",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[38,35],o:9},"flag-sy":{a:"Syria Flag",b:"1F1F8-1F1FE",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[4,40]},"woman-facepalming":{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:30,added_in:"9.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:31,added_in:"9.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:32,added_in:"9.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:33,added_in:"9.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:34,added_in:"9.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1}},a:"Woman Facepalming",b:"1F926-200D-2640-FE0F",c:"1F926-200D-2640",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[38,29],o:9},"flag-sz":{a:"Swaziland Flag",b:"1F1F8-1F1FF",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[4,41]},shrug:{skin_variations:{"1F3FB":{unified:"1F937-1F3FB",non_qualified:null,image:"1f937-1f3fb.png",sheet_x:40,sheet_y:7,added_in:"9.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"1F3FC":{unified:"1F937-1F3FC",non_qualified:null,image:"1f937-1f3fc.png",sheet_x:40,sheet_y:8,added_in:"9.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"1F3FD":{unified:"1F937-1F3FD",non_qualified:null,image:"1f937-1f3fd.png",sheet_x:40,sheet_y:9,added_in:"9.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"1F3FE":{unified:"1F937-1F3FE",non_qualified:null,image:"1f937-1f3fe.png",sheet_x:40,sheet_y:10,added_in:"9.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"1F3FF":{unified:"1F937-1F3FF",non_qualified:null,image:"1f937-1f3ff.png",sheet_x:40,sheet_y:11,added_in:"9.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1}},a:"Shrug",b:"1F937",d:!0,e:!0,f:!0,g:!0,h:!1,i:!1,k:[40,6],o:9},"flag-ta":{a:"Tristan Da Cunha Flag",b:"1F1F9-1F1E6",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[4,42]},"man-shrugging":{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:1,added_in:"9.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:2,added_in:"9.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:3,added_in:"9.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:4,added_in:"9.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:5,added_in:"9.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1}},a:"Man Shrugging",b:"1F937-200D-2642-FE0F",c:"1F937-200D-2642",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[40,0],o:9},"flag-tc":{a:"Turks & Caicos Islands Flag",b:"1F1F9-1F1E8",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[4,43]},"woman-shrugging":{skin_variations:{"1F3FB":{unified:"1F937-1F3FB-200D-2640-FE0F",non_qualified:"1F937-1F3FB-200D-2640",image:"1f937-1f3fb-200d-2640-fe0f.png",sheet_x:39,sheet_y:47,added_in:"9.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"1F3FC":{unified:"1F937-1F3FC-200D-2640-FE0F",non_qualified:"1F937-1F3FC-200D-2640",image:"1f937-1f3fc-200d-2640-fe0f.png",sheet_x:39,sheet_y:48,added_in:"9.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"1F3FD":{unified:"1F937-1F3FD-200D-2640-FE0F",non_qualified:"1F937-1F3FD-200D-2640",image:"1f937-1f3fd-200d-2640-fe0f.png",sheet_x:39,sheet_y:49,added_in:"9.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"1F3FE":{unified:"1F937-1F3FE-200D-2640-FE0F",non_qualified:"1F937-1F3FE-200D-2640",image:"1f937-1f3fe-200d-2640-fe0f.png",sheet_x:39,sheet_y:50,added_in:"9.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"1F3FF":{unified:"1F937-1F3FF-200D-2640-FE0F",non_qualified:"1F937-1F3FF-200D-2640",image:"1f937-1f3ff-200d-2640-fe0f.png",sheet_x:39,sheet_y:51,added_in:"9.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1}},a:"Woman Shrugging",b:"1F937-200D-2640-FE0F",c:"1F937-200D-2640",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[39,46],o:9},"flag-td":{a:"Chad Flag",b:"1F1F9-1F1E9",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[4,44]},massage:{skin_variations:{"1F3FB":{unified:"1F486-1F3FB",non_qualified:null,image:"1f486-1f3fb.png",sheet_x:24,sheet_y:11,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!0},"1F3FC":{unified:"1F486-1F3FC",non_qualified:null,image:"1f486-1f3fc.png",sheet_x:24,sheet_y:12,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!0},"1F3FD":{unified:"1F486-1F3FD",non_qualified:null,image:"1f486-1f3fd.png",sheet_x:24,sheet_y:13,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!0},"1F3FE":{unified:"1F486-1F3FE",non_qualified:null,image:"1f486-1f3fe.png",sheet_x:24,sheet_y:14,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!0},"1F3FF":{unified:"1F486-1F3FF",non_qualified:null,image:"1f486-1f3ff.png",sheet_x:24,sheet_y:15,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!0}},obsoleted_by:"1F486-200D-2640-FE0F",a:"Face Massage",b:"1F486",d:!0,e:!0,f:!0,g:!0,h:!1,i:!0,k:[24,10]},"flag-tf":{a:"French Southern Territories Flag",b:"1F1F9-1F1EB",d:!0,e:!1,f:!0,g:!0,h:!0,i:!0,k:[4,45]},"man-getting-massage":{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:5,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:6,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:7,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:8,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:9,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1}},a:"Man Getting Massage",b:"1F486-200D-2642-FE0F",c:"1F486-200D-2642",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[24,4]},"flag-tg":{a:"Togo Flag",b:"1F1F9-1F1EC",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[4,46]},"woman-getting-massage":{skin_variations:{"1F3FB":{unified:"1F486-1F3FB-200D-2640-FE0F",non_qualified:"1F486-1F3FB-200D-2640",image:"1f486-1f3fb-200d-2640-fe0f.png",sheet_x:23,sheet_y:51,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:0,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:1,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:2,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:3,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1}},obsoletes:"1F486",a:"Woman Getting Massage",b:"1F486-200D-2640-FE0F",c:"1F486-200D-2640",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[23,50]},"flag-th":{a:"Thailand Flag",b:"1F1F9-1F1ED",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[4,47]},haircut:{skin_variations:{"1F3FB":{unified:"1F487-1F3FB",non_qualified:null,image:"1f487-1f3fb.png",sheet_x:24,sheet_y:29,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!0},"1F3FC":{unified:"1F487-1F3FC",non_qualified:null,image:"1f487-1f3fc.png",sheet_x:24,sheet_y:30,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!0},"1F3FD":{unified:"1F487-1F3FD",non_qualified:null,image:"1f487-1f3fd.png",sheet_x:24,sheet_y:31,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!0},"1F3FE":{unified:"1F487-1F3FE",non_qualified:null,image:"1f487-1f3fe.png",sheet_x:24,sheet_y:32,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!0},"1F3FF":{unified:"1F487-1F3FF",non_qualified:null,image:"1f487-1f3ff.png",sheet_x:24,sheet_y:33,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!0}},obsoleted_by:"1F487-200D-2640-FE0F",a:"Haircut",b:"1F487",d:!0,e:!0,f:!0,g:!0,h:!1,i:!0,k:[24,28]},"flag-tj":{a:"Tajikistan Flag",b:"1F1F9-1F1EF",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[4,48]},"man-getting-haircut":{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:23,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:24,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:25,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:26,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:27,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1}},a:"Man Getting Haircut",b:"1F487-200D-2642-FE0F",c:"1F487-200D-2642",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[24,22]},"flag-tk":{a:"Tokelau Flag",b:"1F1F9-1F1F0",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[4,49]},"woman-getting-haircut":{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:17,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:18,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:19,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:20,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:21,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1}},obsoletes:"1F487",a:"Woman Getting Haircut",b:"1F487-200D-2640-FE0F",c:"1F487-200D-2640",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[24,16]},"flag-tl":{a:"Timor-Leste Flag",b:"1F1F9-1F1F1",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[4,50]},walking:{skin_variations:{"1F3FB":{unified:"1F6B6-1F3FB",non_qualified:null,image:"1f6b6-1f3fb.png",sheet_x:36,sheet_y:22,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!0},"1F3FC":{unified:"1F6B6-1F3FC",non_qualified:null,image:"1f6b6-1f3fc.png",sheet_x:36,sheet_y:23,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!0},"1F3FD":{unified:"1F6B6-1F3FD",non_qualified:null,image:"1f6b6-1f3fd.png",sheet_x:36,sheet_y:24,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!0},"1F3FE":{unified:"1F6B6-1F3FE",non_qualified:null,image:"1f6b6-1f3fe.png",sheet_x:36,sheet_y:25,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!0},"1F3FF":{unified:"1F6B6-1F3FF",non_qualified:null,image:"1f6b6-1f3ff.png",sheet_x:36,sheet_y:26,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!0}},obsoleted_by:"1F6B6-200D-2642-FE0F",a:"Pedestrian",b:"1F6B6",d:!0,e:!0,f:!0,g:!0,h:!1,i:!0,k:[36,21]},"flag-tm":{a:"Turkmenistan Flag",b:"1F1F9-1F1F2",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[4,51]},"man-walking":{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:16,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:17,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:18,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:19,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:20,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1}},obsoletes:"1F6B6",a:"Man Walking",b:"1F6B6-200D-2642-FE0F",c:"1F6B6-200D-2642",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[36,15]},"flag-tn":{a:"Tunisia Flag",b:"1F1F9-1F1F3",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[5,0]},"woman-walking":{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:10,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:11,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:12,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:13,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:14,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1}},a:"Woman Walking",b:"1F6B6-200D-2640-FE0F",c:"1F6B6-200D-2640",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[36,9]},"flag-to":{a:"Tonga Flag",b:"1F1F9-1F1F4",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[5,1]},runner:{skin_variations:{"1F3FB":{unified:"1F3C3-1F3FB",non_qualified:null,image:"1f3c3-1f3fb.png",sheet_x:9,sheet_y:47,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!0},"1F3FC":{unified:"1F3C3-1F3FC",non_qualified:null,image:"1f3c3-1f3fc.png",sheet_x:9,sheet_y:48,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!0},"1F3FD":{unified:"1F3C3-1F3FD",non_qualified:null,image:"1f3c3-1f3fd.png",sheet_x:9,sheet_y:49,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!0},"1F3FE":{unified:"1F3C3-1F3FE",non_qualified:null,image:"1f3c3-1f3fe.png",sheet_x:9,sheet_y:50,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!0},"1F3FF":{unified:"1F3C3-1F3FF",non_qualified:null,image:"1f3c3-1f3ff.png",sheet_x:9,sheet_y:51,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!0}},obsoleted_by:"1F3C3-200D-2642-FE0F",a:"Runner",b:"1F3C3",d:!0,e:!0,f:!0,g:!0,h:!1,i:!0,k:[9,46],n:["running"]},"flag-tr":{a:"Turkey Flag",b:"1F1F9-1F1F7",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[5,2]},"man-running":{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:41,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:42,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:43,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:44,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:45,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1}},obsoletes:"1F3C3",a:"Man Running",b:"1F3C3-200D-2642-FE0F",c:"1F3C3-200D-2642",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[9,40]},"flag-tt":{a:"Trinidad & Tobago Flag",b:"1F1F9-1F1F9",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[5,3]},"woman-running":{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:35,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:36,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:37,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:38,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:39,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1}},a:"Woman Running",b:"1F3C3-200D-2640-FE0F",c:"1F3C3-200D-2640",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[9,34]},"flag-tv":{a:"Tuvalu Flag",b:"1F1F9-1F1FB",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[5,4]},dancer:{skin_variations:{"1F3FB":{unified:"1F483-1F3FB",non_qualified:null,image:"1f483-1f3fb.png",sheet_x:23,sheet_y:38,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0},"1F3FC":{unified:"1F483-1F3FC",non_qualified:null,image:"1f483-1f3fc.png",sheet_x:23,sheet_y:39,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0},"1F3FD":{unified:"1F483-1F3FD",non_qualified:null,image:"1f483-1f3fd.png",sheet_x:23,sheet_y:40,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0},"1F3FE":{unified:"1F483-1F3FE",non_qualified:null,image:"1f483-1f3fe.png",sheet_x:23,sheet_y:41,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0},"1F3FF":{unified:"1F483-1F3FF",non_qualified:null,image:"1f483-1f3ff.png",sheet_x:23,sheet_y:42,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0}},a:"Dancer",b:"1F483",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["female","girl","woman","fun"],k:[23,37]},"flag-tw":{a:"Taiwan Flag",b:"1F1F9-1F1FC",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[5,5]},man_dancing:{skin_variations:{"1F3FB":{unified:"1F57A-1F3FB",non_qualified:null,image:"1f57a-1f3fb.png",sheet_x:29,sheet_y:22,added_in:"9.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FC":{unified:"1F57A-1F3FC",non_qualified:null,image:"1f57a-1f3fc.png",sheet_x:29,sheet_y:23,added_in:"9.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FD":{unified:"1F57A-1F3FD",non_qualified:null,image:"1f57a-1f3fd.png",sheet_x:29,sheet_y:24,added_in:"9.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FE":{unified:"1F57A-1F3FE",non_qualified:null,image:"1f57a-1f3fe.png",sheet_x:29,sheet_y:25,added_in:"9.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FF":{unified:"1F57A-1F3FF",non_qualified:null,image:"1f57a-1f3ff.png",sheet_x:29,sheet_y:26,added_in:"9.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1}},a:"Man Dancing",b:"1F57A",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["male","boy","fun","dancer"],k:[29,21],o:9},"flag-tz":{a:"Tanzania Flag",b:"1F1F9-1F1FF",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[5,6]},dancers:{obsoleted_by:"1F46F-200D-2640-FE0F",a:"Woman with Bunny Ears",b:"1F46F",d:!0,e:!0,f:!0,g:!0,h:!1,i:!0,k:[21,1]},"flag-ua":{a:"Ukraine Flag",b:"1F1FA-1F1E6",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[5,7]},"man-with-bunny-ears-partying":{a:"Man with Bunny Ears Partying",b:"1F46F-200D-2642-FE0F",c:"1F46F-200D-2642",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[21,0]},"flag-ug":{a:"Uganda Flag",b:"1F1FA-1F1EC",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[5,8]},"woman-with-bunny-ears-partying":{obsoletes:"1F46F",a:"Woman with Bunny Ears Partying",b:"1F46F-200D-2640-FE0F",c:"1F46F-200D-2640",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[20,51]},"flag-um":{a:"U.s. Outlying Islands Flag",b:"1F1FA-1F1F2",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[5,9]},person_in_steamy_room:{skin_variations:{"1F3FB":{unified:"1F9D6-1F3FB",non_qualified:null,image:"1f9d6-1f3fb.png",sheet_x:43,sheet_y:41,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1,obsoleted_by:"1F9D6-1F3FB-200D-2642-FE0F"},"1F3FC":{unified:"1F9D6-1F3FC",non_qualified:null,image:"1f9d6-1f3fc.png",sheet_x:43,sheet_y:42,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1,obsoleted_by:"1F9D6-1F3FC-200D-2642-FE0F"},"1F3FD":{unified:"1F9D6-1F3FD",non_qualified:null,image:"1f9d6-1f3fd.png",sheet_x:43,sheet_y:43,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1,obsoleted_by:"1F9D6-1F3FD-200D-2642-FE0F"},"1F3FE":{unified:"1F9D6-1F3FE",non_qualified:null,image:"1f9d6-1f3fe.png",sheet_x:43,sheet_y:44,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1,obsoleted_by:"1F9D6-1F3FE-200D-2642-FE0F"},"1F3FF":{unified:"1F9D6-1F3FF",non_qualified:null,image:"1f9d6-1f3ff.png",sheet_x:43,sheet_y:45,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1,obsoleted_by:"1F9D6-1F3FF-200D-2642-FE0F"}},obsoleted_by:"1F9D6-200D-2642-FE0F",a:"Person in Steamy Room",b:"1F9D6",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[43,40],o:10},"flag-un":{a:"United Nations Flag",b:"1F1FA-1F1F3",d:!1,e:!0,f:!0,g:!0,h:!0,i:!1,k:[5,10]},woman_in_steamy_room:{skin_variations:{"1F3FB":{unified:"1F9D6-1F3FB-200D-2640-FE0F",non_qualified:"1F9D6-1F3FB-200D-2640",image:"1f9d6-1f3fb-200d-2640-fe0f.png",sheet_x:43,sheet_y:29,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"1F3FC":{unified:"1F9D6-1F3FC-200D-2640-FE0F",non_qualified:"1F9D6-1F3FC-200D-2640",image:"1f9d6-1f3fc-200d-2640-fe0f.png",sheet_x:43,sheet_y:30,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"1F3FD":{unified:"1F9D6-1F3FD-200D-2640-FE0F",non_qualified:"1F9D6-1F3FD-200D-2640",image:"1f9d6-1f3fd-200d-2640-fe0f.png",sheet_x:43,sheet_y:31,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"1F3FE":{unified:"1F9D6-1F3FE-200D-2640-FE0F",non_qualified:"1F9D6-1F3FE-200D-2640",image:"1f9d6-1f3fe-200d-2640-fe0f.png",sheet_x:43,sheet_y:32,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"1F3FF":{unified:"1F9D6-1F3FF-200D-2640-FE0F",non_qualified:"1F9D6-1F3FF-200D-2640",image:"1f9d6-1f3ff-200d-2640-fe0f.png",sheet_x:43,sheet_y:33,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1}},a:"Woman in Steamy Room",b:"1F9D6-200D-2640-FE0F",c:"1F9D6-200D-2640",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["female","woman","spa","steamroom","sauna"],k:[43,28],o:10},us:{a:"United States Flag",b:"1F1FA-1F1F8",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["united","states","america","flag","nation","country","banner"],k:[5,11],n:["flag-us"]},man_in_steamy_room:{skin_variations:{"1F3FB":{unified:"1F9D6-1F3FB-200D-2642-FE0F",non_qualified:"1F9D6-1F3FB-200D-2642",image:"1f9d6-1f3fb-200d-2642-fe0f.png",sheet_x:43,sheet_y:35,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1,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:43,sheet_y:36,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1,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:43,sheet_y:37,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1,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:43,sheet_y:38,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1,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:43,sheet_y:39,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1,obsoletes:"1F9D6-1F3FF"}},obsoletes:"1F9D6",a:"Man in Steamy Room",b:"1F9D6-200D-2642-FE0F",c:"1F9D6-200D-2642",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["male","man","spa","steamroom","sauna"],k:[43,34],o:10},"flag-uy":{a:"Uruguay Flag",b:"1F1FA-1F1FE",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[5,12]},person_climbing:{skin_variations:{"1F3FB":{unified:"1F9D7-1F3FB",non_qualified:null,image:"1f9d7-1f3fb.png",sheet_x:44,sheet_y:7,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1,obsoleted_by:"1F9D7-1F3FB-200D-2640-FE0F"},"1F3FC":{unified:"1F9D7-1F3FC",non_qualified:null,image:"1f9d7-1f3fc.png",sheet_x:44,sheet_y:8,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1,obsoleted_by:"1F9D7-1F3FC-200D-2640-FE0F"},"1F3FD":{unified:"1F9D7-1F3FD",non_qualified:null,image:"1f9d7-1f3fd.png",sheet_x:44,sheet_y:9,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1,obsoleted_by:"1F9D7-1F3FD-200D-2640-FE0F"},"1F3FE":{unified:"1F9D7-1F3FE",non_qualified:null,image:"1f9d7-1f3fe.png",sheet_x:44,sheet_y:10,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1,obsoleted_by:"1F9D7-1F3FE-200D-2640-FE0F"},"1F3FF":{unified:"1F9D7-1F3FF",non_qualified:null,image:"1f9d7-1f3ff.png",sheet_x:44,sheet_y:11,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1,obsoleted_by:"1F9D7-1F3FF-200D-2640-FE0F"}},obsoleted_by:"1F9D7-200D-2640-FE0F",a:"Person Climbing",b:"1F9D7",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[44,6],o:10},"flag-uz":{a:"Uzbekistan Flag",b:"1F1FA-1F1FF",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[5,13]},woman_climbing:{skin_variations:{"1F3FB":{unified:"1F9D7-1F3FB-200D-2640-FE0F",non_qualified:"1F9D7-1F3FB-200D-2640",image:"1f9d7-1f3fb-200d-2640-fe0f.png",sheet_x:43,sheet_y:47,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1,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:43,sheet_y:48,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1,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:43,sheet_y:49,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1,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:43,sheet_y:50,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1,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:43,sheet_y:51,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1,obsoletes:"1F9D7-1F3FF"}},obsoletes:"1F9D7",a:"Woman Climbing",b:"1F9D7-200D-2640-FE0F",c:"1F9D7-200D-2640",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[43,46],o:10},"flag-va":{a:"Vatican City Flag",b:"1F1FB-1F1E6",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[5,14]},man_climbing:{skin_variations:{"1F3FB":{unified:"1F9D7-1F3FB-200D-2642-FE0F",non_qualified:"1F9D7-1F3FB-200D-2642",image:"1f9d7-1f3fb-200d-2642-fe0f.png",sheet_x:44,sheet_y:1,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"1F3FC":{unified:"1F9D7-1F3FC-200D-2642-FE0F",non_qualified:"1F9D7-1F3FC-200D-2642",image:"1f9d7-1f3fc-200d-2642-fe0f.png",sheet_x:44,sheet_y:2,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"1F3FD":{unified:"1F9D7-1F3FD-200D-2642-FE0F",non_qualified:"1F9D7-1F3FD-200D-2642",image:"1f9d7-1f3fd-200d-2642-fe0f.png",sheet_x:44,sheet_y:3,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"1F3FE":{unified:"1F9D7-1F3FE-200D-2642-FE0F",non_qualified:"1F9D7-1F3FE-200D-2642",image:"1f9d7-1f3fe-200d-2642-fe0f.png",sheet_x:44,sheet_y:4,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"1F3FF":{unified:"1F9D7-1F3FF-200D-2642-FE0F",non_qualified:"1F9D7-1F3FF-200D-2642",image:"1f9d7-1f3ff-200d-2642-fe0f.png",sheet_x:44,sheet_y:5,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1}},a:"Man Climbing",b:"1F9D7-200D-2642-FE0F",c:"1F9D7-200D-2642",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[44,0],o:10},"flag-vc":{a:"St. Vincent & Grenadines Flag",b:"1F1FB-1F1E8",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[5,15]},person_in_lotus_position:{skin_variations:{"1F3FB":{unified:"1F9D8-1F3FB",non_qualified:null,image:"1f9d8-1f3fb.png",sheet_x:44,sheet_y:25,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1,obsoleted_by:"1F9D8-1F3FB-200D-2640-FE0F"},"1F3FC":{unified:"1F9D8-1F3FC",non_qualified:null,image:"1f9d8-1f3fc.png",sheet_x:44,sheet_y:26,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1,obsoleted_by:"1F9D8-1F3FC-200D-2640-FE0F"},"1F3FD":{unified:"1F9D8-1F3FD",non_qualified:null,image:"1f9d8-1f3fd.png",sheet_x:44,sheet_y:27,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1,obsoleted_by:"1F9D8-1F3FD-200D-2640-FE0F"},"1F3FE":{unified:"1F9D8-1F3FE",non_qualified:null,image:"1f9d8-1f3fe.png",sheet_x:44,sheet_y:28,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1,obsoleted_by:"1F9D8-1F3FE-200D-2640-FE0F"},"1F3FF":{unified:"1F9D8-1F3FF",non_qualified:null,image:"1f9d8-1f3ff.png",sheet_x:44,sheet_y:29,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1,obsoleted_by:"1F9D8-1F3FF-200D-2640-FE0F"}},obsoleted_by:"1F9D8-200D-2640-FE0F",a:"Person in Lotus Position",b:"1F9D8",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[44,24],o:10},"flag-ve":{a:"Venezuela Flag",b:"1F1FB-1F1EA",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[5,16]},woman_in_lotus_position:{skin_variations:{"1F3FB":{unified:"1F9D8-1F3FB-200D-2640-FE0F",non_qualified:"1F9D8-1F3FB-200D-2640",image:"1f9d8-1f3fb-200d-2640-fe0f.png",sheet_x:44,sheet_y:13,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1,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:44,sheet_y:14,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1,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:44,sheet_y:15,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1,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:44,sheet_y:16,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1,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:44,sheet_y:17,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1,obsoletes:"1F9D8-1F3FF"}},obsoletes:"1F9D8",a:"Woman in Lotus Position",b:"1F9D8-200D-2640-FE0F",c:"1F9D8-200D-2640",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["woman","female","meditation","yoga","serenity","zen","mindfulness"],k:[44,12],o:10},"flag-vg":{a:"British Virgin Islands Flag",b:"1F1FB-1F1EC",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[5,17]},man_in_lotus_position:{skin_variations:{"1F3FB":{unified:"1F9D8-1F3FB-200D-2642-FE0F",non_qualified:"1F9D8-1F3FB-200D-2642",image:"1f9d8-1f3fb-200d-2642-fe0f.png",sheet_x:44,sheet_y:19,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"1F3FC":{unified:"1F9D8-1F3FC-200D-2642-FE0F",non_qualified:"1F9D8-1F3FC-200D-2642",image:"1f9d8-1f3fc-200d-2642-fe0f.png",sheet_x:44,sheet_y:20,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"1F3FD":{unified:"1F9D8-1F3FD-200D-2642-FE0F",non_qualified:"1F9D8-1F3FD-200D-2642",image:"1f9d8-1f3fd-200d-2642-fe0f.png",sheet_x:44,sheet_y:21,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"1F3FE":{unified:"1F9D8-1F3FE-200D-2642-FE0F",non_qualified:"1F9D8-1F3FE-200D-2642",image:"1f9d8-1f3fe-200d-2642-fe0f.png",sheet_x:44,sheet_y:22,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"1F3FF":{unified:"1F9D8-1F3FF-200D-2642-FE0F",non_qualified:"1F9D8-1F3FF-200D-2642",image:"1f9d8-1f3ff-200d-2642-fe0f.png",sheet_x:44,sheet_y:23,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1}},a:"Man in Lotus Position",b:"1F9D8-200D-2642-FE0F",c:"1F9D8-200D-2642",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["man","male","meditation","yoga","serenity","zen","mindfulness"],k:[44,18],o:10},"flag-vi":{a:"U.s. Virgin Islands Flag",b:"1F1FB-1F1EE",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[5,18]},bath:{skin_variations:{"1F3FB":{unified:"1F6C0-1F3FB",non_qualified:null,image:"1f6c0-1f3fb.png",sheet_x:36,sheet_y:37,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0},"1F3FC":{unified:"1F6C0-1F3FC",non_qualified:null,image:"1f6c0-1f3fc.png",sheet_x:36,sheet_y:38,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0},"1F3FD":{unified:"1F6C0-1F3FD",non_qualified:null,image:"1f6c0-1f3fd.png",sheet_x:36,sheet_y:39,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0},"1F3FE":{unified:"1F6C0-1F3FE",non_qualified:null,image:"1f6c0-1f3fe.png",sheet_x:36,sheet_y:40,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0},"1F3FF":{unified:"1F6C0-1F3FF",non_qualified:null,image:"1f6c0-1f3ff.png",sheet_x:36,sheet_y:41,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0}},a:"Bath",b:"1F6C0",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["clean","shower","bathroom"],k:[36,36]},"flag-vn":{a:"Vietnam Flag",b:"1F1FB-1F1F3",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[5,19]},sleeping_accommodation:{skin_variations:{"1F3FB":{unified:"1F6CC-1F3FB",non_qualified:null,image:"1f6cc-1f3fb.png",sheet_x:36,sheet_y:49,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FC":{unified:"1F6CC-1F3FC",non_qualified:null,image:"1f6cc-1f3fc.png",sheet_x:36,sheet_y:50,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FD":{unified:"1F6CC-1F3FD",non_qualified:null,image:"1f6cc-1f3fd.png",sheet_x:36,sheet_y:51,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FE":{unified:"1F6CC-1F3FE",non_qualified:null,image:"1f6cc-1f3fe.png",sheet_x:37,sheet_y:0,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FF":{unified:"1F6CC-1F3FF",non_qualified:null,image:"1f6cc-1f3ff.png",sheet_x:37,sheet_y:1,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1}},a:"Sleeping Accommodation",b:"1F6CC",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[36,48],o:7},"flag-vu":{a:"Vanuatu Flag",b:"1F1FB-1F1FA",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[5,20]},man_in_business_suit_levitating:{skin_variations:{"1F3FB":{unified:"1F574-1F3FB",non_qualified:null,image:"1f574-1f3fb.png",sheet_x:28,sheet_y:46,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FC":{unified:"1F574-1F3FC",non_qualified:null,image:"1f574-1f3fc.png",sheet_x:28,sheet_y:47,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FD":{unified:"1F574-1F3FD",non_qualified:null,image:"1f574-1f3fd.png",sheet_x:28,sheet_y:48,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FE":{unified:"1F574-1F3FE",non_qualified:null,image:"1f574-1f3fe.png",sheet_x:28,sheet_y:49,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FF":{unified:"1F574-1F3FF",non_qualified:null,image:"1f574-1f3ff.png",sheet_x:28,sheet_y:50,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1}},a:"Man in Business Suit Levitating",b:"1F574-FE0F",c:"1F574",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[28,45],o:7},"flag-wf":{a:"Wallis & Futuna Flag",b:"1F1FC-1F1EB",d:!0,e:!1,f:!0,g:!0,h:!0,i:!0,k:[5,21]},speaking_head_in_silhouette:{a:"Speaking Head in Silhouette",b:"1F5E3-FE0F",c:"1F5E3",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[30,14],o:7},"flag-ws":{a:"Samoa Flag",b:"1F1FC-1F1F8",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[5,22]},bust_in_silhouette:{a:"Bust in Silhouette",b:"1F464",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["user","person","human"],k:[15,40]},"flag-xk":{a:"Kosovo Flag",b:"1F1FD-1F1F0",d:!0,e:!1,f:!0,g:!0,h:!0,i:!0,k:[5,23]},busts_in_silhouette:{a:"Busts in Silhouette",b:"1F465",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["user","person","human","group","team"],k:[15,41]},"flag-ye":{a:"Yemen Flag",b:"1F1FE-1F1EA",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[5,24]},fencer:{a:"Fencer",b:"1F93A",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[40,48],o:9},"flag-yt":{a:"Mayotte Flag",b:"1F1FE-1F1F9",d:!0,e:!1,f:!0,g:!0,h:!0,i:!0,k:[5,25]},horse_racing:{skin_variations:{"1F3FB":{unified:"1F3C7-1F3FB",non_qualified:null,image:"1f3c7-1f3fb.png",sheet_x:10,sheet_y:21,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0},"1F3FC":{unified:"1F3C7-1F3FC",non_qualified:null,image:"1f3c7-1f3fc.png",sheet_x:10,sheet_y:22,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0},"1F3FD":{unified:"1F3C7-1F3FD",non_qualified:null,image:"1f3c7-1f3fd.png",sheet_x:10,sheet_y:23,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0},"1F3FE":{unified:"1F3C7-1F3FE",non_qualified:null,image:"1f3c7-1f3fe.png",sheet_x:10,sheet_y:24,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0},"1F3FF":{unified:"1F3C7-1F3FF",non_qualified:null,image:"1f3c7-1f3ff.png",sheet_x:10,sheet_y:25,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0}},a:"Horse Racing",b:"1F3C7",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["animal","betting","competition","gambling","luck"],k:[10,20]},"flag-za":{a:"South Africa Flag",b:"1F1FF-1F1E6",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[5,26]},skier:{a:"Skier",b:"26F7-FE0F",c:"26F7",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["sports","winter","snow"],k:[48,44],o:5},"flag-zm":{a:"Zambia Flag",b:"1F1FF-1F1F2",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[5,27]},snowboarder:{skin_variations:{"1F3FB":{unified:"1F3C2-1F3FB",non_qualified:null,image:"1f3c2-1f3fb.png",sheet_x:9,sheet_y:29,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0},"1F3FC":{unified:"1F3C2-1F3FC",non_qualified:null,image:"1f3c2-1f3fc.png",sheet_x:9,sheet_y:30,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0},"1F3FD":{unified:"1F3C2-1F3FD",non_qualified:null,image:"1f3c2-1f3fd.png",sheet_x:9,sheet_y:31,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0},"1F3FE":{unified:"1F3C2-1F3FE",non_qualified:null,image:"1f3c2-1f3fe.png",sheet_x:9,sheet_y:32,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0},"1F3FF":{unified:"1F3C2-1F3FF",non_qualified:null,image:"1f3c2-1f3ff.png",sheet_x:9,sheet_y:33,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0}},a:"Snowboarder",b:"1F3C2",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["sports","winter"],k:[9,28]},"flag-zw":{a:"Zimbabwe Flag",b:"1F1FF-1F1FC",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[5,28]},golfer:{skin_variations:{"1F3FB":{unified:"1F3CC-1F3FB",non_qualified:null,image:"1f3cc-1f3fb.png",sheet_x:11,sheet_y:25,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"1F3FC":{unified:"1F3CC-1F3FC",non_qualified:null,image:"1f3cc-1f3fc.png",sheet_x:11,sheet_y:26,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"1F3FD":{unified:"1F3CC-1F3FD",non_qualified:null,image:"1f3cc-1f3fd.png",sheet_x:11,sheet_y:27,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"1F3FE":{unified:"1F3CC-1F3FE",non_qualified:null,image:"1f3cc-1f3fe.png",sheet_x:11,sheet_y:28,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"1F3FF":{unified:"1F3CC-1F3FF",non_qualified:null,image:"1f3cc-1f3ff.png",sheet_x:11,sheet_y:29,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1}},obsoleted_by:"1F3CC-FE0F-200D-2642-FE0F",a:"Golfer",b:"1F3CC-FE0F",c:"1F3CC",d:!0,e:!0,f:!0,g:!0,h:!1,i:!1,k:[11,24],o:7},"man-golfing":{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:19,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:20,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:21,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:22,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:23,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1}},obsoletes:"1F3CC-FE0F",a:"Man Golfing",b:"1F3CC-FE0F-200D-2642-FE0F",d:!0,e:!0,f:!0,g:!0,h:!1,i:!1,k:[11,18],o:7},"flag-england":{a:"England Flag",b:"1F3F4-E0067-E0062-E0065-E006E-E0067-E007F",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[12,16],o:7},"woman-golfing":{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:13,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:14,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:15,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:16,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:17,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1}},a:"Woman Golfing",b:"1F3CC-FE0F-200D-2640-FE0F",d:!0,e:!0,f:!0,g:!0,h:!1,i:!1,k:[11,12],o:7},"flag-scotland":{a:"Scotland Flag",b:"1F3F4-E0067-E0062-E0073-E0063-E0074-E007F",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[12,17],o:7},surfer:{skin_variations:{"1F3FB":{unified:"1F3C4-1F3FB",non_qualified:null,image:"1f3c4-1f3fb.png",sheet_x:10,sheet_y:13,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!0},"1F3FC":{unified:"1F3C4-1F3FC",non_qualified:null,image:"1f3c4-1f3fc.png",sheet_x:10,sheet_y:14,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!0},"1F3FD":{unified:"1F3C4-1F3FD",non_qualified:null,image:"1f3c4-1f3fd.png",sheet_x:10,sheet_y:15,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!0},"1F3FE":{unified:"1F3C4-1F3FE",non_qualified:null,image:"1f3c4-1f3fe.png",sheet_x:10,sheet_y:16,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!0},"1F3FF":{unified:"1F3C4-1F3FF",non_qualified:null,image:"1f3c4-1f3ff.png",sheet_x:10,sheet_y:17,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!0}},obsoleted_by:"1F3C4-200D-2642-FE0F",a:"Surfer",b:"1F3C4",d:!0,e:!0,f:!0,g:!0,h:!1,i:!0,k:[10,12]},"flag-wales":{a:"Wales Flag",b:"1F3F4-E0067-E0062-E0077-E006C-E0073-E007F",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[12,18],o:7},"man-surfing":{skin_variations:{"1F3FB":{unified:"1F3C4-1F3FB-200D-2642-FE0F",non_qualified:"1F3C4-1F3FB-200D-2642",image:"1f3c4-1f3fb-200d-2642-fe0f.png",sheet_x:10,sheet_y:7,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"1F3FC":{unified:"1F3C4-1F3FC-200D-2642-FE0F",non_qualified:"1F3C4-1F3FC-200D-2642",image:"1f3c4-1f3fc-200d-2642-fe0f.png",sheet_x:10,sheet_y:8,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"1F3FD":{unified:"1F3C4-1F3FD-200D-2642-FE0F",non_qualified:"1F3C4-1F3FD-200D-2642",image:"1f3c4-1f3fd-200d-2642-fe0f.png",sheet_x:10,sheet_y:9,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:10,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:11,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1}},obsoletes:"1F3C4",a:"Man Surfing",b:"1F3C4-200D-2642-FE0F",c:"1F3C4-200D-2642",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[10,6]},"woman-surfing":{skin_variations:{"1F3FB":{unified:"1F3C4-1F3FB-200D-2640-FE0F",non_qualified:"1F3C4-1F3FB-200D-2640",image:"1f3c4-1f3fb-200d-2640-fe0f.png",sheet_x:10,sheet_y:1,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"1F3FC":{unified:"1F3C4-1F3FC-200D-2640-FE0F",non_qualified:"1F3C4-1F3FC-200D-2640",image:"1f3c4-1f3fc-200d-2640-fe0f.png",sheet_x:10,sheet_y:2,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"1F3FD":{unified:"1F3C4-1F3FD-200D-2640-FE0F",non_qualified:"1F3C4-1F3FD-200D-2640",image:"1f3c4-1f3fd-200d-2640-fe0f.png",sheet_x:10,sheet_y:3,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"1F3FE":{unified:"1F3C4-1F3FE-200D-2640-FE0F",non_qualified:"1F3C4-1F3FE-200D-2640",image:"1f3c4-1f3fe-200d-2640-fe0f.png",sheet_x:10,sheet_y:4,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"1F3FF":{unified:"1F3C4-1F3FF-200D-2640-FE0F",non_qualified:"1F3C4-1F3FF-200D-2640",image:"1f3c4-1f3ff-200d-2640-fe0f.png",sheet_x:10,sheet_y:5,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1}},a:"Woman Surfing",b:"1F3C4-200D-2640-FE0F",c:"1F3C4-200D-2640",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[10,0]},rowboat:{skin_variations:{"1F3FB":{unified:"1F6A3-1F3FB",non_qualified:null,image:"1f6a3-1f3fb.png",sheet_x:35,sheet_y:4,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"1F3FC":{unified:"1F6A3-1F3FC",non_qualified:null,image:"1f6a3-1f3fc.png",sheet_x:35,sheet_y:5,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"1F3FD":{unified:"1F6A3-1F3FD",non_qualified:null,image:"1f6a3-1f3fd.png",sheet_x:35,sheet_y:6,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"1F3FE":{unified:"1F6A3-1F3FE",non_qualified:null,image:"1f6a3-1f3fe.png",sheet_x:35,sheet_y:7,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"1F3FF":{unified:"1F6A3-1F3FF",non_qualified:null,image:"1f6a3-1f3ff.png",sheet_x:35,sheet_y:8,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1}},obsoleted_by:"1F6A3-200D-2642-FE0F",a:"Rowboat",b:"1F6A3",d:!0,e:!0,f:!0,g:!0,h:!1,i:!0,k:[35,3]},"man-rowing-boat":{skin_variations:{"1F3FB":{unified:"1F6A3-1F3FB-200D-2642-FE0F",non_qualified:"1F6A3-1F3FB-200D-2642",image:"1f6a3-1f3fb-200d-2642-fe0f.png",sheet_x:34,sheet_y:50,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"1F3FC":{unified:"1F6A3-1F3FC-200D-2642-FE0F",non_qualified:"1F6A3-1F3FC-200D-2642",image:"1f6a3-1f3fc-200d-2642-fe0f.png",sheet_x:34,sheet_y:51,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:0,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:1,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:2,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1}},obsoletes:"1F6A3",a:"Man Rowing Boat",b:"1F6A3-200D-2642-FE0F",c:"1F6A3-200D-2642",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[34,49]},"woman-rowing-boat":{skin_variations:{"1F3FB":{unified:"1F6A3-1F3FB-200D-2640-FE0F",non_qualified:"1F6A3-1F3FB-200D-2640",image:"1f6a3-1f3fb-200d-2640-fe0f.png",sheet_x:34,sheet_y:44,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"1F3FC":{unified:"1F6A3-1F3FC-200D-2640-FE0F",non_qualified:"1F6A3-1F3FC-200D-2640",image:"1f6a3-1f3fc-200d-2640-fe0f.png",sheet_x:34,sheet_y:45,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"1F3FD":{unified:"1F6A3-1F3FD-200D-2640-FE0F",non_qualified:"1F6A3-1F3FD-200D-2640",image:"1f6a3-1f3fd-200d-2640-fe0f.png",sheet_x:34,sheet_y:46,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"1F3FE":{unified:"1F6A3-1F3FE-200D-2640-FE0F",non_qualified:"1F6A3-1F3FE-200D-2640",image:"1f6a3-1f3fe-200d-2640-fe0f.png",sheet_x:34,sheet_y:47,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"1F3FF":{unified:"1F6A3-1F3FF-200D-2640-FE0F",non_qualified:"1F6A3-1F3FF-200D-2640",image:"1f6a3-1f3ff-200d-2640-fe0f.png",sheet_x:34,sheet_y:48,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1}},a:"Woman Rowing Boat",b:"1F6A3-200D-2640-FE0F",c:"1F6A3-200D-2640",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[34,43]},swimmer:{skin_variations:{"1F3FB":{unified:"1F3CA-1F3FB",non_qualified:null,image:"1f3ca-1f3fb.png",sheet_x:10,sheet_y:41,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!0},"1F3FC":{unified:"1F3CA-1F3FC",non_qualified:null,image:"1f3ca-1f3fc.png",sheet_x:10,sheet_y:42,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!0},"1F3FD":{unified:"1F3CA-1F3FD",non_qualified:null,image:"1f3ca-1f3fd.png",sheet_x:10,sheet_y:43,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!0},"1F3FE":{unified:"1F3CA-1F3FE",non_qualified:null,image:"1f3ca-1f3fe.png",sheet_x:10,sheet_y:44,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!0},"1F3FF":{unified:"1F3CA-1F3FF",non_qualified:null,image:"1f3ca-1f3ff.png",sheet_x:10,sheet_y:45,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!0}},obsoleted_by:"1F3CA-200D-2642-FE0F",a:"Swimmer",b:"1F3CA",d:!0,e:!0,f:!0,g:!0,h:!1,i:!0,k:[10,40]},"man-swimming":{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:35,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:36,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:37,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:38,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:39,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1}},obsoletes:"1F3CA",a:"Man Swimming",b:"1F3CA-200D-2642-FE0F",c:"1F3CA-200D-2642",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[10,34]},"woman-swimming":{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:29,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:30,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:31,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:32,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:33,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1}},a:"Woman Swimming",b:"1F3CA-200D-2640-FE0F",c:"1F3CA-200D-2640",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[10,28]},person_with_ball:{skin_variations:{"1F3FB":{unified:"26F9-1F3FB",non_qualified:null,image:"26f9-1f3fb.png",sheet_x:49,sheet_y:7,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"1F3FC":{unified:"26F9-1F3FC",non_qualified:null,image:"26f9-1f3fc.png",sheet_x:49,sheet_y:8,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"1F3FD":{unified:"26F9-1F3FD",non_qualified:null,image:"26f9-1f3fd.png",sheet_x:49,sheet_y:9,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"1F3FE":{unified:"26F9-1F3FE",non_qualified:null,image:"26f9-1f3fe.png",sheet_x:49,sheet_y:10,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"1F3FF":{unified:"26F9-1F3FF",non_qualified:null,image:"26f9-1f3ff.png",sheet_x:49,sheet_y:11,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1}},obsoleted_by:"26F9-FE0F-200D-2642-FE0F",a:"Person with Ball",b:"26F9-FE0F",c:"26F9",d:!0,e:!0,f:!0,g:!0,h:!1,i:!1,k:[49,6],o:5},"man-bouncing-ball":{skin_variations:{"1F3FB":{unified:"26F9-1F3FB-200D-2642-FE0F",non_qualified:"26F9-1F3FB-200D-2642",image:"26f9-1f3fb-200d-2642-fe0f.png",sheet_x:49,sheet_y:1,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"1F3FC":{unified:"26F9-1F3FC-200D-2642-FE0F",non_qualified:"26F9-1F3FC-200D-2642",image:"26f9-1f3fc-200d-2642-fe0f.png",sheet_x:49,sheet_y:2,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"1F3FD":{unified:"26F9-1F3FD-200D-2642-FE0F",non_qualified:"26F9-1F3FD-200D-2642",image:"26f9-1f3fd-200d-2642-fe0f.png",sheet_x:49,sheet_y:3,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"1F3FE":{unified:"26F9-1F3FE-200D-2642-FE0F",non_qualified:"26F9-1F3FE-200D-2642",image:"26f9-1f3fe-200d-2642-fe0f.png",sheet_x:49,sheet_y:4,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"1F3FF":{unified:"26F9-1F3FF-200D-2642-FE0F",non_qualified:"26F9-1F3FF-200D-2642",image:"26f9-1f3ff-200d-2642-fe0f.png",sheet_x:49,sheet_y:5,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1}},obsoletes:"26F9-FE0F",a:"Man Bouncing Ball",b:"26F9-FE0F-200D-2642-FE0F",d:!0,e:!0,f:!0,g:!0,h:!1,i:!1,k:[49,0],o:5},"woman-bouncing-ball":{skin_variations:{"1F3FB":{unified:"26F9-1F3FB-200D-2640-FE0F",non_qualified:"26F9-1F3FB-200D-2640",image:"26f9-1f3fb-200d-2640-fe0f.png",sheet_x:48,sheet_y:47,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"1F3FC":{unified:"26F9-1F3FC-200D-2640-FE0F",non_qualified:"26F9-1F3FC-200D-2640",image:"26f9-1f3fc-200d-2640-fe0f.png",sheet_x:48,sheet_y:48,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"1F3FD":{unified:"26F9-1F3FD-200D-2640-FE0F",non_qualified:"26F9-1F3FD-200D-2640",image:"26f9-1f3fd-200d-2640-fe0f.png",sheet_x:48,sheet_y:49,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"1F3FE":{unified:"26F9-1F3FE-200D-2640-FE0F",non_qualified:"26F9-1F3FE-200D-2640",image:"26f9-1f3fe-200d-2640-fe0f.png",sheet_x:48,sheet_y:50,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"1F3FF":{unified:"26F9-1F3FF-200D-2640-FE0F",non_qualified:"26F9-1F3FF-200D-2640",image:"26f9-1f3ff-200d-2640-fe0f.png",sheet_x:48,sheet_y:51,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1}},a:"Woman Bouncing Ball",b:"26F9-FE0F-200D-2640-FE0F",d:!0,e:!0,f:!0,g:!0,h:!1,i:!1,k:[48,46],o:5},weight_lifter:{skin_variations:{"1F3FB":{unified:"1F3CB-1F3FB",non_qualified:null,image:"1f3cb-1f3fb.png",sheet_x:11,sheet_y:7,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"1F3FC":{unified:"1F3CB-1F3FC",non_qualified:null,image:"1f3cb-1f3fc.png",sheet_x:11,sheet_y:8,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"1F3FD":{unified:"1F3CB-1F3FD",non_qualified:null,image:"1f3cb-1f3fd.png",sheet_x:11,sheet_y:9,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"1F3FE":{unified:"1F3CB-1F3FE",non_qualified:null,image:"1f3cb-1f3fe.png",sheet_x:11,sheet_y:10,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"1F3FF":{unified:"1F3CB-1F3FF",non_qualified:null,image:"1f3cb-1f3ff.png",sheet_x:11,sheet_y:11,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1}},obsoleted_by:"1F3CB-FE0F-200D-2642-FE0F",a:"Weight Lifter",b:"1F3CB-FE0F",c:"1F3CB",d:!0,e:!0,f:!0,g:!0,h:!1,i:!1,k:[11,6],o:7},"man-lifting-weights":{skin_variations:{"1F3FB":{unified:"1F3CB-1F3FB-200D-2642-FE0F",non_qualified:"1F3CB-1F3FB-200D-2642",image:"1f3cb-1f3fb-200d-2642-fe0f.png",sheet_x:11,sheet_y:1,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"1F3FC":{unified:"1F3CB-1F3FC-200D-2642-FE0F",non_qualified:"1F3CB-1F3FC-200D-2642",image:"1f3cb-1f3fc-200d-2642-fe0f.png",sheet_x:11,sheet_y:2,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"1F3FD":{unified:"1F3CB-1F3FD-200D-2642-FE0F",non_qualified:"1F3CB-1F3FD-200D-2642",image:"1f3cb-1f3fd-200d-2642-fe0f.png",sheet_x:11,sheet_y:3,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"1F3FE":{unified:"1F3CB-1F3FE-200D-2642-FE0F",non_qualified:"1F3CB-1F3FE-200D-2642",image:"1f3cb-1f3fe-200d-2642-fe0f.png",sheet_x:11,sheet_y:4,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"1F3FF":{unified:"1F3CB-1F3FF-200D-2642-FE0F",non_qualified:"1F3CB-1F3FF-200D-2642",image:"1f3cb-1f3ff-200d-2642-fe0f.png",sheet_x:11,sheet_y:5,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1}},obsoletes:"1F3CB-FE0F",a:"Man Lifting Weights",b:"1F3CB-FE0F-200D-2642-FE0F",d:!0,e:!0,f:!0,g:!0,h:!1,i:!1,k:[11,0],o:7},"woman-lifting-weights":{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:47,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:48,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:49,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:50,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:51,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1}},a:"Woman Lifting Weights",b:"1F3CB-FE0F-200D-2640-FE0F",d:!0,e:!0,f:!0,g:!0,h:!1,i:!1,k:[10,46],o:7},bicyclist:{skin_variations:{"1F3FB":{unified:"1F6B4-1F3FB",non_qualified:null,image:"1f6b4-1f3fb.png",sheet_x:35,sheet_y:38,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!0},"1F3FC":{unified:"1F6B4-1F3FC",non_qualified:null,image:"1f6b4-1f3fc.png",sheet_x:35,sheet_y:39,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!0},"1F3FD":{unified:"1F6B4-1F3FD",non_qualified:null,image:"1f6b4-1f3fd.png",sheet_x:35,sheet_y:40,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!0},"1F3FE":{unified:"1F6B4-1F3FE",non_qualified:null,image:"1f6b4-1f3fe.png",sheet_x:35,sheet_y:41,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!0},"1F3FF":{unified:"1F6B4-1F3FF",non_qualified:null,image:"1f6b4-1f3ff.png",sheet_x:35,sheet_y:42,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!0}},obsoleted_by:"1F6B4-200D-2642-FE0F",a:"Bicyclist",b:"1F6B4",d:!0,e:!0,f:!0,g:!0,h:!1,i:!0,k:[35,37]},"man-biking":{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:32,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:33,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:34,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:35,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:36,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1}},obsoletes:"1F6B4",a:"Man Biking",b:"1F6B4-200D-2642-FE0F",c:"1F6B4-200D-2642",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[35,31]},"woman-biking":{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:26,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:27,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:28,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:29,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:30,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1}},a:"Woman Biking",b:"1F6B4-200D-2640-FE0F",c:"1F6B4-200D-2640",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[35,25]},mountain_bicyclist:{skin_variations:{"1F3FB":{unified:"1F6B5-1F3FB",non_qualified:null,image:"1f6b5-1f3fb.png",sheet_x:36,sheet_y:4,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!0},"1F3FC":{unified:"1F6B5-1F3FC",non_qualified:null,image:"1f6b5-1f3fc.png",sheet_x:36,sheet_y:5,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!0},"1F3FD":{unified:"1F6B5-1F3FD",non_qualified:null,image:"1f6b5-1f3fd.png",sheet_x:36,sheet_y:6,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!0},"1F3FE":{unified:"1F6B5-1F3FE",non_qualified:null,image:"1f6b5-1f3fe.png",sheet_x:36,sheet_y:7,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!0},"1F3FF":{unified:"1F6B5-1F3FF",non_qualified:null,image:"1f6b5-1f3ff.png",sheet_x:36,sheet_y:8,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!0}},obsoleted_by:"1F6B5-200D-2642-FE0F",a:"Mountain Bicyclist",b:"1F6B5",d:!0,e:!0,f:!0,g:!0,h:!1,i:!0,k:[36,3]},"man-mountain-biking":{skin_variations:{"1F3FB":{unified:"1F6B5-1F3FB-200D-2642-FE0F",non_qualified:"1F6B5-1F3FB-200D-2642",image:"1f6b5-1f3fb-200d-2642-fe0f.png",sheet_x:35,sheet_y:50,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"1F3FC":{unified:"1F6B5-1F3FC-200D-2642-FE0F",non_qualified:"1F6B5-1F3FC-200D-2642",image:"1f6b5-1f3fc-200d-2642-fe0f.png",sheet_x:35,sheet_y:51,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:0,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:1,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:2,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1}},obsoletes:"1F6B5",a:"Man Mountain Biking",b:"1F6B5-200D-2642-FE0F",c:"1F6B5-200D-2642",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[35,49]},"woman-mountain-biking":{skin_variations:{"1F3FB":{unified:"1F6B5-1F3FB-200D-2640-FE0F",non_qualified:"1F6B5-1F3FB-200D-2640",image:"1f6b5-1f3fb-200d-2640-fe0f.png",sheet_x:35,sheet_y:44,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"1F3FC":{unified:"1F6B5-1F3FC-200D-2640-FE0F",non_qualified:"1F6B5-1F3FC-200D-2640",image:"1f6b5-1f3fc-200d-2640-fe0f.png",sheet_x:35,sheet_y:45,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"1F3FD":{unified:"1F6B5-1F3FD-200D-2640-FE0F",non_qualified:"1F6B5-1F3FD-200D-2640",image:"1f6b5-1f3fd-200d-2640-fe0f.png",sheet_x:35,sheet_y:46,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"1F3FE":{unified:"1F6B5-1F3FE-200D-2640-FE0F",non_qualified:"1F6B5-1F3FE-200D-2640",image:"1f6b5-1f3fe-200d-2640-fe0f.png",sheet_x:35,sheet_y:47,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"1F3FF":{unified:"1F6B5-1F3FF-200D-2640-FE0F",non_qualified:"1F6B5-1F3FF-200D-2640",image:"1f6b5-1f3ff-200d-2640-fe0f.png",sheet_x:35,sheet_y:48,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1}},a:"Woman Mountain Biking",b:"1F6B5-200D-2640-FE0F",c:"1F6B5-200D-2640",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[35,43]},racing_car:{a:"Racing Car",b:"1F3CE-FE0F",c:"1F3CE",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["sports","race","fast","formula","f1"],k:[11,31],o:7},racing_motorcycle:{a:"Racing Motorcycle",b:"1F3CD-FE0F",c:"1F3CD",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[11,30],o:7},person_doing_cartwheel:{skin_variations:{"1F3FB":{unified:"1F938-1F3FB",non_qualified:null,image:"1f938-1f3fb.png",sheet_x:40,sheet_y:25,added_in:"9.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"1F3FC":{unified:"1F938-1F3FC",non_qualified:null,image:"1f938-1f3fc.png",sheet_x:40,sheet_y:26,added_in:"9.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"1F3FD":{unified:"1F938-1F3FD",non_qualified:null,image:"1f938-1f3fd.png",sheet_x:40,sheet_y:27,added_in:"9.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"1F3FE":{unified:"1F938-1F3FE",non_qualified:null,image:"1f938-1f3fe.png",sheet_x:40,sheet_y:28,added_in:"9.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"1F3FF":{unified:"1F938-1F3FF",non_qualified:null,image:"1f938-1f3ff.png",sheet_x:40,sheet_y:29,added_in:"9.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1}},a:"Person Doing Cartwheel",b:"1F938",d:!0,e:!0,f:!0,g:!0,h:!1,i:!1,k:[40,24],o:9},"man-cartwheeling":{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:19,added_in:"9.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:20,added_in:"9.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:21,added_in:"9.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:22,added_in:"9.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:23,added_in:"9.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1}},a:"Man Cartwheeling",b:"1F938-200D-2642-FE0F",c:"1F938-200D-2642",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[40,18],o:9},"woman-cartwheeling":{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:13,added_in:"9.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:14,added_in:"9.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:15,added_in:"9.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:16,added_in:"9.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:17,added_in:"9.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1}},a:"Woman Cartwheeling",b:"1F938-200D-2640-FE0F",c:"1F938-200D-2640",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[40,12],o:9},wrestlers:{a:"Wrestlers",b:"1F93C",d:!0,e:!0,f:!0,g:!0,h:!1,i:!1,k:[40,51],o:9},"man-wrestling":{a:"Man Wrestling",b:"1F93C-200D-2642-FE0F",c:"1F93C-200D-2642",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[40,50],o:9},"woman-wrestling":{a:"Woman Wrestling",b:"1F93C-200D-2640-FE0F",c:"1F93C-200D-2640",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[40,49],o:9},water_polo:{skin_variations:{"1F3FB":{unified:"1F93D-1F3FB",non_qualified:null,image:"1f93d-1f3fb.png",sheet_x:41,sheet_y:13,added_in:"9.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"1F3FC":{unified:"1F93D-1F3FC",non_qualified:null,image:"1f93d-1f3fc.png",sheet_x:41,sheet_y:14,added_in:"9.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"1F3FD":{unified:"1F93D-1F3FD",non_qualified:null,image:"1f93d-1f3fd.png",sheet_x:41,sheet_y:15,added_in:"9.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"1F3FE":{unified:"1F93D-1F3FE",non_qualified:null,image:"1f93d-1f3fe.png",sheet_x:41,sheet_y:16,added_in:"9.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"1F3FF":{unified:"1F93D-1F3FF",non_qualified:null,image:"1f93d-1f3ff.png",sheet_x:41,sheet_y:17,added_in:"9.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1}},a:"Water Polo",b:"1F93D",d:!0,e:!0,f:!0,g:!0,h:!1,i:!1,k:[41,12],o:9},"man-playing-water-polo":{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:7,added_in:"9.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:8,added_in:"9.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:9,added_in:"9.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:10,added_in:"9.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:11,added_in:"9.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1}},a:"Man Playing Water Polo",b:"1F93D-200D-2642-FE0F",c:"1F93D-200D-2642",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[41,6],o:9},"woman-playing-water-polo":{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:1,added_in:"9.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:2,added_in:"9.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:3,added_in:"9.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:4,added_in:"9.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:5,added_in:"9.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1}},a:"Woman Playing Water Polo",b:"1F93D-200D-2640-FE0F",c:"1F93D-200D-2640",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[41,0],o:9},handball:{skin_variations:{"1F3FB":{unified:"1F93E-1F3FB",non_qualified:null,image:"1f93e-1f3fb.png",sheet_x:41,sheet_y:31,added_in:"9.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"1F3FC":{unified:"1F93E-1F3FC",non_qualified:null,image:"1f93e-1f3fc.png",sheet_x:41,sheet_y:32,added_in:"9.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"1F3FD":{unified:"1F93E-1F3FD",non_qualified:null,image:"1f93e-1f3fd.png",sheet_x:41,sheet_y:33,added_in:"9.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"1F3FE":{unified:"1F93E-1F3FE",non_qualified:null,image:"1f93e-1f3fe.png",sheet_x:41,sheet_y:34,added_in:"9.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"1F3FF":{unified:"1F93E-1F3FF",non_qualified:null,image:"1f93e-1f3ff.png",sheet_x:41,sheet_y:35,added_in:"9.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1}},a:"Handball",b:"1F93E",d:!0,e:!0,f:!0,g:!0,h:!1,i:!1,k:[41,30],o:9},"man-playing-handball":{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:25,added_in:"9.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:26,added_in:"9.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:27,added_in:"9.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:28,added_in:"9.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:29,added_in:"9.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1}},a:"Man Playing Handball",b:"1F93E-200D-2642-FE0F",c:"1F93E-200D-2642",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[41,24],o:9},"woman-playing-handball":{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:19,added_in:"9.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:20,added_in:"9.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:21,added_in:"9.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:22,added_in:"9.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:23,added_in:"9.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1}},a:"Woman Playing Handball",b:"1F93E-200D-2640-FE0F",c:"1F93E-200D-2640",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[41,18],o:9},juggling:{skin_variations:{"1F3FB":{unified:"1F939-1F3FB",non_qualified:null,image:"1f939-1f3fb.png",sheet_x:40,sheet_y:43,added_in:"9.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FC":{unified:"1F939-1F3FC",non_qualified:null,image:"1f939-1f3fc.png",sheet_x:40,sheet_y:44,added_in:"9.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FD":{unified:"1F939-1F3FD",non_qualified:null,image:"1f939-1f3fd.png",sheet_x:40,sheet_y:45,added_in:"9.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FE":{unified:"1F939-1F3FE",non_qualified:null,image:"1f939-1f3fe.png",sheet_x:40,sheet_y:46,added_in:"9.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FF":{unified:"1F939-1F3FF",non_qualified:null,image:"1f939-1f3ff.png",sheet_x:40,sheet_y:47,added_in:"9.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1}},a:"Juggling",b:"1F939",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[40,42],o:9},"man-juggling":{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:37,added_in:"9.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:38,added_in:"9.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:39,added_in:"9.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:40,added_in:"9.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:41,added_in:"9.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1}},a:"Man Juggling",b:"1F939-200D-2642-FE0F",c:"1F939-200D-2642",d:!0,e:!0,f:!0,g:!0,h:!1,i:!1,k:[40,36],o:9},"woman-juggling":{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:31,added_in:"9.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:32,added_in:"9.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:33,added_in:"9.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:34,added_in:"9.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1},"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:35,added_in:"9.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!1,has_img_messenger:!1}},a:"Woman Juggling",b:"1F939-200D-2640-FE0F",c:"1F939-200D-2640",d:!0,e:!0,f:!0,g:!0,h:!1,i:!1,k:[40,30],o:9},couple:{a:"Man and Woman Holding Hands",b:"1F46B",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["pair","people","human","love","date","dating","like","affection","valentines","marriage"],k:[20,30],n:["man_and_woman_holding_hands"]},two_men_holding_hands:{a:"Two Men Holding Hands",b:"1F46C",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["pair","couple","love","like","bromance","friendship","people","human"],k:[20,31]},two_women_holding_hands:{a:"Two Women Holding Hands",b:"1F46D",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["pair","friendship","couple","love","like","female","people","human"],k:[20,32]},couplekiss:{obsoleted_by:"1F469-200D-2764-FE0F-200D-1F48B-200D-1F468",a:"Kiss",b:"1F48F",d:!0,e:!0,f:!0,g:!0,h:!1,i:!0,k:[24,41]},"woman-kiss-man":{obsoletes:"1F48F",a:"Woman Kiss Man",b:"1F469-200D-2764-FE0F-200D-1F48B-200D-1F468",c:"1F469-200D-2764-200D-1F48B-200D-1F468",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[20,21]},"man-kiss-man":{a:"Man Kiss Man",b:"1F468-200D-2764-FE0F-200D-1F48B-200D-1F468",c:"1F468-200D-2764-200D-1F48B-200D-1F468",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[18,10]},"woman-kiss-woman":{a:"Woman Kiss Woman",b:"1F469-200D-2764-FE0F-200D-1F48B-200D-1F469",c:"1F469-200D-2764-200D-1F48B-200D-1F469",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[20,22]},couple_with_heart:{obsoleted_by:"1F469-200D-2764-FE0F-200D-1F468",a:"Couple with Heart",b:"1F491",d:!0,e:!0,f:!0,g:!0,h:!1,i:!0,k:[24,43]},"woman-heart-man":{obsoletes:"1F491",a:"Woman Heart Man",b:"1F469-200D-2764-FE0F-200D-1F468",c:"1F469-200D-2764-200D-1F468",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[20,19]},"man-heart-man":{a:"Man Heart Man",b:"1F468-200D-2764-FE0F-200D-1F468",c:"1F468-200D-2764-200D-1F468",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[18,9]},"woman-heart-woman":{a:"Woman Heart Woman",b:"1F469-200D-2764-FE0F-200D-1F469",c:"1F469-200D-2764-200D-1F469",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[20,20]},family:{obsoleted_by:"1F468-200D-1F469-200D-1F466",a:"Family",b:"1F46A",d:!0,e:!0,f:!0,g:!0,h:!1,i:!0,k:[20,29],n:["man-woman-boy"]},"man-woman-boy":{obsoletes:"1F46A",a:"Man Woman Boy",b:"1F468-200D-1F469-200D-1F466",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[17,2],n:["family"]},"man-woman-girl":{a:"Man Woman Girl",b:"1F468-200D-1F469-200D-1F467",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[17,4]},"man-woman-girl-boy":{a:"Man Woman Girl Boy",b:"1F468-200D-1F469-200D-1F467-200D-1F466",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[17,5]},"man-woman-boy-boy":{a:"Man Woman Boy Boy",b:"1F468-200D-1F469-200D-1F466-200D-1F466",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[17,3]},"man-woman-girl-girl":{a:"Man Woman Girl Girl",b:"1F468-200D-1F469-200D-1F467-200D-1F467",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[17,6]},"man-man-boy":{a:"Man Man Boy",b:"1F468-200D-1F468-200D-1F466",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[16,49]},"man-man-girl":{a:"Man Man Girl",b:"1F468-200D-1F468-200D-1F467",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[16,51]},"man-man-girl-boy":{a:"Man Man Girl Boy",b:"1F468-200D-1F468-200D-1F467-200D-1F466",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[17,0]},"man-man-boy-boy":{a:"Man Man Boy Boy",b:"1F468-200D-1F468-200D-1F466-200D-1F466",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[16,50]},"man-man-girl-girl":{a:"Man Man Girl Girl",b:"1F468-200D-1F468-200D-1F467-200D-1F467",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[17,1]},"woman-woman-boy":{a:"Woman Woman Boy",b:"1F469-200D-1F469-200D-1F466",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[19,12]},"woman-woman-girl":{a:"Woman Woman Girl",b:"1F469-200D-1F469-200D-1F467",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[19,14]},"woman-woman-girl-boy":{a:"Woman Woman Girl Boy",b:"1F469-200D-1F469-200D-1F467-200D-1F466",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[19,15]},"woman-woman-boy-boy":{a:"Woman Woman Boy Boy",b:"1F469-200D-1F469-200D-1F466-200D-1F466",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[19,13]},"woman-woman-girl-girl":{a:"Woman Woman Girl Girl",b:"1F469-200D-1F469-200D-1F467-200D-1F467",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[19,16]},"man-boy":{a:"Man Boy",b:"1F468-200D-1F466",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[16,45]},"man-boy-boy":{a:"Man Boy Boy",b:"1F468-200D-1F466-200D-1F466",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[16,44]},"man-girl":{a:"Man Girl",b:"1F468-200D-1F467",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[16,48]},"man-girl-boy":{a:"Man Girl Boy",b:"1F468-200D-1F467-200D-1F466",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[16,46]},"man-girl-girl":{a:"Man Girl Girl",b:"1F468-200D-1F467-200D-1F467",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[16,47]},"woman-boy":{a:"Woman Boy",b:"1F469-200D-1F466",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[19,8]},"woman-boy-boy":{a:"Woman Boy Boy",b:"1F469-200D-1F466-200D-1F466",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[19,7]},"woman-girl":{a:"Woman Girl",b:"1F469-200D-1F467",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[19,11]},"woman-girl-boy":{a:"Woman Girl Boy",b:"1F469-200D-1F467-200D-1F466",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[19,9]},"woman-girl-girl":{a:"Woman Girl Girl",b:"1F469-200D-1F467-200D-1F467",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[19,10]},selfie:{skin_variations:{"1F3FB":{unified:"1F933-1F3FB",non_qualified:null,image:"1f933-1f3fb.png",sheet_x:39,sheet_y:23,added_in:"9.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FC":{unified:"1F933-1F3FC",non_qualified:null,image:"1f933-1f3fc.png",sheet_x:39,sheet_y:24,added_in:"9.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FD":{unified:"1F933-1F3FD",non_qualified:null,image:"1f933-1f3fd.png",sheet_x:39,sheet_y:25,added_in:"9.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FE":{unified:"1F933-1F3FE",non_qualified:null,image:"1f933-1f3fe.png",sheet_x:39,sheet_y:26,added_in:"9.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FF":{unified:"1F933-1F3FF",non_qualified:null,image:"1f933-1f3ff.png",sheet_x:39,sheet_y:27,added_in:"9.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1}},a:"Selfie",b:"1F933",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["camera","phone"],k:[39,22],o:9},muscle:{skin_variations:{"1F3FB":{unified:"1F4AA-1F3FB",non_qualified:null,image:"1f4aa-1f3fb.png",sheet_x:25,sheet_y:17,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0},"1F3FC":{unified:"1F4AA-1F3FC",non_qualified:null,image:"1f4aa-1f3fc.png",sheet_x:25,sheet_y:18,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0},"1F3FD":{unified:"1F4AA-1F3FD",non_qualified:null,image:"1f4aa-1f3fd.png",sheet_x:25,sheet_y:19,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0},"1F3FE":{unified:"1F4AA-1F3FE",non_qualified:null,image:"1f4aa-1f3fe.png",sheet_x:25,sheet_y:20,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0},"1F3FF":{unified:"1F4AA-1F3FF",non_qualified:null,image:"1f4aa-1f3ff.png",sheet_x:25,sheet_y:21,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0}},a:"Flexed Biceps",b:"1F4AA",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["arm","flex","hand","summer","strong","biceps"],k:[25,16]},point_left:{skin_variations:{"1F3FB":{unified:"1F448-1F3FB",non_qualified:null,image:"1f448-1f3fb.png",sheet_x:14,sheet_y:20,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0},"1F3FC":{unified:"1F448-1F3FC",non_qualified:null,image:"1f448-1f3fc.png",sheet_x:14,sheet_y:21,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0},"1F3FD":{unified:"1F448-1F3FD",non_qualified:null,image:"1f448-1f3fd.png",sheet_x:14,sheet_y:22,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0},"1F3FE":{unified:"1F448-1F3FE",non_qualified:null,image:"1f448-1f3fe.png",sheet_x:14,sheet_y:23,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0},"1F3FF":{unified:"1F448-1F3FF",non_qualified:null,image:"1f448-1f3ff.png",sheet_x:14,sheet_y:24,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0}},a:"White Left Pointing Backhand Index",b:"1F448",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["direction","fingers","hand","left"],k:[14,19]},point_right:{skin_variations:{"1F3FB":{unified:"1F449-1F3FB",non_qualified:null,image:"1f449-1f3fb.png",sheet_x:14,sheet_y:26,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0},"1F3FC":{unified:"1F449-1F3FC",non_qualified:null,image:"1f449-1f3fc.png",sheet_x:14,sheet_y:27,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0},"1F3FD":{unified:"1F449-1F3FD",non_qualified:null,image:"1f449-1f3fd.png",sheet_x:14,sheet_y:28,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0},"1F3FE":{unified:"1F449-1F3FE",non_qualified:null,image:"1f449-1f3fe.png",sheet_x:14,sheet_y:29,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0},"1F3FF":{unified:"1F449-1F3FF",non_qualified:null,image:"1f449-1f3ff.png",sheet_x:14,sheet_y:30,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0}},a:"White Right Pointing Backhand Index",b:"1F449",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["fingers","hand","direction","right"],k:[14,25]},point_up:{skin_variations:{"1F3FB":{unified:"261D-1F3FB",non_qualified:null,image:"261d-1f3fb.png",sheet_x:47,sheet_y:27,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0},"1F3FC":{unified:"261D-1F3FC",non_qualified:null,image:"261d-1f3fc.png",sheet_x:47,sheet_y:28,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0},"1F3FD":{unified:"261D-1F3FD",non_qualified:null,image:"261d-1f3fd.png",sheet_x:47,sheet_y:29,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0},"1F3FE":{unified:"261D-1F3FE",non_qualified:null,image:"261d-1f3fe.png",sheet_x:47,sheet_y:30,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0},"1F3FF":{unified:"261D-1F3FF",non_qualified:null,image:"261d-1f3ff.png",sheet_x:47,sheet_y:31,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0}},a:"White Up Pointing Index",b:"261D-FE0F",c:"261D",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["hand","fingers","direction","up"],k:[47,26],o:1},point_up_2:{skin_variations:{"1F3FB":{unified:"1F446-1F3FB",non_qualified:null,image:"1f446-1f3fb.png",sheet_x:14,sheet_y:8,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0},"1F3FC":{unified:"1F446-1F3FC",non_qualified:null,image:"1f446-1f3fc.png",sheet_x:14,sheet_y:9,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0},"1F3FD":{unified:"1F446-1F3FD",non_qualified:null,image:"1f446-1f3fd.png",sheet_x:14,sheet_y:10,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0},"1F3FE":{unified:"1F446-1F3FE",non_qualified:null,image:"1f446-1f3fe.png",sheet_x:14,sheet_y:11,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0},"1F3FF":{unified:"1F446-1F3FF",non_qualified:null,image:"1f446-1f3ff.png",sheet_x:14,sheet_y:12,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0}},a:"White Up Pointing Backhand Index",b:"1F446",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["fingers","hand","direction","up"],k:[14,7]},middle_finger:{skin_variations:{"1F3FB":{unified:"1F595-1F3FB",non_qualified:null,image:"1f595-1f3fb.png",sheet_x:29,sheet_y:39,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FC":{unified:"1F595-1F3FC",non_qualified:null,image:"1f595-1f3fc.png",sheet_x:29,sheet_y:40,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FD":{unified:"1F595-1F3FD",non_qualified:null,image:"1f595-1f3fd.png",sheet_x:29,sheet_y:41,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FE":{unified:"1F595-1F3FE",non_qualified:null,image:"1f595-1f3fe.png",sheet_x:29,sheet_y:42,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FF":{unified:"1F595-1F3FF",non_qualified:null,image:"1f595-1f3ff.png",sheet_x:29,sheet_y:43,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1}},a:"Reversed Hand with Middle Finger Extended",b:"1F595",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[29,38],n:["reversed_hand_with_middle_finger_extended"],o:7},point_down:{skin_variations:{"1F3FB":{unified:"1F447-1F3FB",non_qualified:null,image:"1f447-1f3fb.png",sheet_x:14,sheet_y:14,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0},"1F3FC":{unified:"1F447-1F3FC",non_qualified:null,image:"1f447-1f3fc.png",sheet_x:14,sheet_y:15,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0},"1F3FD":{unified:"1F447-1F3FD",non_qualified:null,image:"1f447-1f3fd.png",sheet_x:14,sheet_y:16,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0},"1F3FE":{unified:"1F447-1F3FE",non_qualified:null,image:"1f447-1f3fe.png",sheet_x:14,sheet_y:17,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0},"1F3FF":{unified:"1F447-1F3FF",non_qualified:null,image:"1f447-1f3ff.png",sheet_x:14,sheet_y:18,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0}},a:"White Down Pointing Backhand Index",b:"1F447",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["fingers","hand","direction","down"],k:[14,13]},v:{skin_variations:{"1F3FB":{unified:"270C-1F3FB",non_qualified:null,image:"270c-1f3fb.png",sheet_x:49,sheet_y:31,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0},"1F3FC":{unified:"270C-1F3FC",non_qualified:null,image:"270c-1f3fc.png",sheet_x:49,sheet_y:32,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0},"1F3FD":{unified:"270C-1F3FD",non_qualified:null,image:"270c-1f3fd.png",sheet_x:49,sheet_y:33,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0},"1F3FE":{unified:"270C-1F3FE",non_qualified:null,image:"270c-1f3fe.png",sheet_x:49,sheet_y:34,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0},"1F3FF":{unified:"270C-1F3FF",non_qualified:null,image:"270c-1f3ff.png",sheet_x:49,sheet_y:35,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0}},a:"Victory Hand",b:"270C-FE0F",c:"270C",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["fingers","ohyeah","hand","peace","victory","two"],k:[49,30],o:1},crossed_fingers:{skin_variations:{"1F3FB":{unified:"1F91E-1F3FB",non_qualified:null,image:"1f91e-1f3fb.png",sheet_x:38,sheet_y:12,added_in:"9.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FC":{unified:"1F91E-1F3FC",non_qualified:null,image:"1f91e-1f3fc.png",sheet_x:38,sheet_y:13,added_in:"9.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FD":{unified:"1F91E-1F3FD",non_qualified:null,image:"1f91e-1f3fd.png",sheet_x:38,sheet_y:14,added_in:"9.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FE":{unified:"1F91E-1F3FE",non_qualified:null,image:"1f91e-1f3fe.png",sheet_x:38,sheet_y:15,added_in:"9.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FF":{unified:"1F91E-1F3FF",non_qualified:null,image:"1f91e-1f3ff.png",sheet_x:38,sheet_y:16,added_in:"9.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1}},a:"Hand with Index and Middle Fingers Crossed",b:"1F91E",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["good","lucky"],k:[38,11],n:["hand_with_index_and_middle_fingers_crossed"],o:9},"spock-hand":{skin_variations:{"1F3FB":{unified:"1F596-1F3FB",non_qualified:null,image:"1f596-1f3fb.png",sheet_x:29,sheet_y:45,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FC":{unified:"1F596-1F3FC",non_qualified:null,image:"1f596-1f3fc.png",sheet_x:29,sheet_y:46,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FD":{unified:"1F596-1F3FD",non_qualified:null,image:"1f596-1f3fd.png",sheet_x:29,sheet_y:47,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FE":{unified:"1F596-1F3FE",non_qualified:null,image:"1f596-1f3fe.png",sheet_x:29,sheet_y:48,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FF":{unified:"1F596-1F3FF",non_qualified:null,image:"1f596-1f3ff.png",sheet_x:29,sheet_y:49,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1}},a:"Raised Hand with Part Between Middle and Ring Fingers",b:"1F596",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[29,44],o:7},the_horns:{skin_variations:{"1F3FB":{unified:"1F918-1F3FB",non_qualified:null,image:"1f918-1f3fb.png",sheet_x:37,sheet_y:33,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FC":{unified:"1F918-1F3FC",non_qualified:null,image:"1f918-1f3fc.png",sheet_x:37,sheet_y:34,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FD":{unified:"1F918-1F3FD",non_qualified:null,image:"1f918-1f3fd.png",sheet_x:37,sheet_y:35,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FE":{unified:"1F918-1F3FE",non_qualified:null,image:"1f918-1f3fe.png",sheet_x:37,sheet_y:36,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FF":{unified:"1F918-1F3FF",non_qualified:null,image:"1f918-1f3ff.png",sheet_x:37,sheet_y:37,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1}},a:"Sign of the Horns",b:"1F918",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[37,32],n:["sign_of_the_horns"],o:8},call_me_hand:{skin_variations:{"1F3FB":{unified:"1F919-1F3FB",non_qualified:null,image:"1f919-1f3fb.png",sheet_x:37,sheet_y:39,added_in:"9.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FC":{unified:"1F919-1F3FC",non_qualified:null,image:"1f919-1f3fc.png",sheet_x:37,sheet_y:40,added_in:"9.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FD":{unified:"1F919-1F3FD",non_qualified:null,image:"1f919-1f3fd.png",sheet_x:37,sheet_y:41,added_in:"9.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FE":{unified:"1F919-1F3FE",non_qualified:null,image:"1f919-1f3fe.png",sheet_x:37,sheet_y:42,added_in:"9.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FF":{unified:"1F919-1F3FF",non_qualified:null,image:"1f919-1f3ff.png",sheet_x:37,sheet_y:43,added_in:"9.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1}},a:"Call Me Hand",b:"1F919",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["hands","gesture"],k:[37,38],o:9},raised_hand_with_fingers_splayed:{skin_variations:{"1F3FB":{unified:"1F590-1F3FB",non_qualified:null,image:"1f590-1f3fb.png",sheet_x:29,sheet_y:33,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FC":{unified:"1F590-1F3FC",non_qualified:null,image:"1f590-1f3fc.png",sheet_x:29,sheet_y:34,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FD":{unified:"1F590-1F3FD",non_qualified:null,image:"1f590-1f3fd.png",sheet_x:29,sheet_y:35,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FE":{unified:"1F590-1F3FE",non_qualified:null,image:"1f590-1f3fe.png",sheet_x:29,sheet_y:36,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FF":{unified:"1F590-1F3FF",non_qualified:null,image:"1f590-1f3ff.png",sheet_x:29,sheet_y:37,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1}},a:"Raised Hand with Fingers Splayed",b:"1F590-FE0F",c:"1F590",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["hand","fingers","palm"],k:[29,32],o:7},hand:{skin_variations:{"1F3FB":{unified:"270B-1F3FB",non_qualified:null,image:"270b-1f3fb.png",sheet_x:49,sheet_y:25,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0},"1F3FC":{unified:"270B-1F3FC",non_qualified:null,image:"270b-1f3fc.png",sheet_x:49,sheet_y:26,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0},"1F3FD":{unified:"270B-1F3FD",non_qualified:null,image:"270b-1f3fd.png",sheet_x:49,sheet_y:27,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0},"1F3FE":{unified:"270B-1F3FE",non_qualified:null,image:"270b-1f3fe.png",sheet_x:49,sheet_y:28,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0},"1F3FF":{unified:"270B-1F3FF",non_qualified:null,image:"270b-1f3ff.png",sheet_x:49,sheet_y:29,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0}},a:"Raised Hand",b:"270B",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[49,24],n:["raised_hand"]},ok_hand:{skin_variations:{"1F3FB":{unified:"1F44C-1F3FB",non_qualified:null,image:"1f44c-1f3fb.png",sheet_x:14,sheet_y:44,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0},"1F3FC":{unified:"1F44C-1F3FC",non_qualified:null,image:"1f44c-1f3fc.png",sheet_x:14,sheet_y:45,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0},"1F3FD":{unified:"1F44C-1F3FD",non_qualified:null,image:"1f44c-1f3fd.png",sheet_x:14,sheet_y:46,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0},"1F3FE":{unified:"1F44C-1F3FE",non_qualified:null,image:"1f44c-1f3fe.png",sheet_x:14,sheet_y:47,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0},"1F3FF":{unified:"1F44C-1F3FF",non_qualified:null,image:"1f44c-1f3ff.png",sheet_x:14,sheet_y:48,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0}},a:"Ok Hand Sign",b:"1F44C",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["fingers","limbs","perfect","ok","okay"],k:[14,43]},"+1":{skin_variations:{"1F3FB":{unified:"1F44D-1F3FB",non_qualified:null,image:"1f44d-1f3fb.png",sheet_x:14,sheet_y:50,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0},"1F3FC":{unified:"1F44D-1F3FC",non_qualified:null,image:"1f44d-1f3fc.png",sheet_x:14,sheet_y:51,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0},"1F3FD":{unified:"1F44D-1F3FD",non_qualified:null,image:"1f44d-1f3fd.png",sheet_x:15,sheet_y:0,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0},"1F3FE":{unified:"1F44D-1F3FE",non_qualified:null,image:"1f44d-1f3fe.png",sheet_x:15,sheet_y:1,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0},"1F3FF":{unified:"1F44D-1F3FF",non_qualified:null,image:"1f44d-1f3ff.png",sheet_x:15,sheet_y:2,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0}},a:"Thumbs Up Sign",b:"1F44D",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["thumbsup","yes","awesome","good","agree","accept","cool","hand","like"],k:[14,49],n:["thumbsup"]},"-1":{skin_variations:{"1F3FB":{unified:"1F44E-1F3FB",non_qualified:null,image:"1f44e-1f3fb.png",sheet_x:15,sheet_y:4,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0},"1F3FC":{unified:"1F44E-1F3FC",non_qualified:null,image:"1f44e-1f3fc.png",sheet_x:15,sheet_y:5,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0},"1F3FD":{unified:"1F44E-1F3FD",non_qualified:null,image:"1f44e-1f3fd.png",sheet_x:15,sheet_y:6,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0},"1F3FE":{unified:"1F44E-1F3FE",non_qualified:null,image:"1f44e-1f3fe.png",sheet_x:15,sheet_y:7,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0},"1F3FF":{unified:"1F44E-1F3FF",non_qualified:null,image:"1f44e-1f3ff.png",sheet_x:15,sheet_y:8,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0}},a:"Thumbs Down Sign",b:"1F44E",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["thumbsdown","no","dislike","hand"],k:[15,3],n:["thumbsdown"]},fist:{skin_variations:{"1F3FB":{unified:"270A-1F3FB",non_qualified:null,image:"270a-1f3fb.png",sheet_x:49,sheet_y:19,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0},"1F3FC":{unified:"270A-1F3FC",non_qualified:null,image:"270a-1f3fc.png",sheet_x:49,sheet_y:20,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0},"1F3FD":{unified:"270A-1F3FD",non_qualified:null,image:"270a-1f3fd.png",sheet_x:49,sheet_y:21,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0},"1F3FE":{unified:"270A-1F3FE",non_qualified:null,image:"270a-1f3fe.png",sheet_x:49,sheet_y:22,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0},"1F3FF":{unified:"270A-1F3FF",non_qualified:null,image:"270a-1f3ff.png",sheet_x:49,sheet_y:23,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0}},a:"Raised Fist",b:"270A",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["fingers","hand","grasp"],k:[49,18]},facepunch:{skin_variations:{"1F3FB":{unified:"1F44A-1F3FB",non_qualified:null,image:"1f44a-1f3fb.png",sheet_x:14,sheet_y:32,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0},"1F3FC":{unified:"1F44A-1F3FC",non_qualified:null,image:"1f44a-1f3fc.png",sheet_x:14,sheet_y:33,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0},"1F3FD":{unified:"1F44A-1F3FD",non_qualified:null,image:"1f44a-1f3fd.png",sheet_x:14,sheet_y:34,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0},"1F3FE":{unified:"1F44A-1F3FE",non_qualified:null,image:"1f44a-1f3fe.png",sheet_x:14,sheet_y:35,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0},"1F3FF":{unified:"1F44A-1F3FF",non_qualified:null,image:"1f44a-1f3ff.png",sheet_x:14,sheet_y:36,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0}},a:"Fisted Hand Sign",b:"1F44A",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["angry","violence","fist","hit","attack","hand"],k:[14,31],n:["punch"]},"left-facing_fist":{skin_variations:{"1F3FB":{unified:"1F91B-1F3FB",non_qualified:null,image:"1f91b-1f3fb.png",sheet_x:37,sheet_y:51,added_in:"9.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FC":{unified:"1F91B-1F3FC",non_qualified:null,image:"1f91b-1f3fc.png",sheet_x:38,sheet_y:0,added_in:"9.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FD":{unified:"1F91B-1F3FD",non_qualified:null,image:"1f91b-1f3fd.png",sheet_x:38,sheet_y:1,added_in:"9.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FE":{unified:"1F91B-1F3FE",non_qualified:null,image:"1f91b-1f3fe.png",sheet_x:38,sheet_y:2,added_in:"9.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FF":{unified:"1F91B-1F3FF",non_qualified:null,image:"1f91b-1f3ff.png",sheet_x:38,sheet_y:3,added_in:"9.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1}},a:"Left-Facing Fist",b:"1F91B",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[37,50],o:9},"right-facing_fist":{skin_variations:{"1F3FB":{unified:"1F91C-1F3FB",non_qualified:null,image:"1f91c-1f3fb.png",sheet_x:38,sheet_y:5,added_in:"9.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FC":{unified:"1F91C-1F3FC",non_qualified:null,image:"1f91c-1f3fc.png",sheet_x:38,sheet_y:6,added_in:"9.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FD":{unified:"1F91C-1F3FD",non_qualified:null,image:"1f91c-1f3fd.png",sheet_x:38,sheet_y:7,added_in:"9.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FE":{unified:"1F91C-1F3FE",non_qualified:null,image:"1f91c-1f3fe.png",sheet_x:38,sheet_y:8,added_in:"9.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FF":{unified:"1F91C-1F3FF",non_qualified:null,image:"1f91c-1f3ff.png",sheet_x:38,sheet_y:9,added_in:"9.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1}},a:"Right-Facing Fist",b:"1F91C",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[38,4],o:9},raised_back_of_hand:{skin_variations:{"1F3FB":{unified:"1F91A-1F3FB",non_qualified:null,image:"1f91a-1f3fb.png",sheet_x:37,sheet_y:45,added_in:"9.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FC":{unified:"1F91A-1F3FC",non_qualified:null,image:"1f91a-1f3fc.png",sheet_x:37,sheet_y:46,added_in:"9.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FD":{unified:"1F91A-1F3FD",non_qualified:null,image:"1f91a-1f3fd.png",sheet_x:37,sheet_y:47,added_in:"9.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FE":{unified:"1F91A-1F3FE",non_qualified:null,image:"1f91a-1f3fe.png",sheet_x:37,sheet_y:48,added_in:"9.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FF":{unified:"1F91A-1F3FF",non_qualified:null,image:"1f91a-1f3ff.png",sheet_x:37,sheet_y:49,added_in:"9.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1}},a:"Raised Back of Hand",b:"1F91A",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["fingers","raised","backhand"],k:[37,44],o:9},wave:{skin_variations:{"1F3FB":{unified:"1F44B-1F3FB",non_qualified:null,image:"1f44b-1f3fb.png",sheet_x:14,sheet_y:38,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0},"1F3FC":{unified:"1F44B-1F3FC",non_qualified:null,image:"1f44b-1f3fc.png",sheet_x:14,sheet_y:39,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0},"1F3FD":{unified:"1F44B-1F3FD",non_qualified:null,image:"1f44b-1f3fd.png",sheet_x:14,sheet_y:40,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0},"1F3FE":{unified:"1F44B-1F3FE",non_qualified:null,image:"1f44b-1f3fe.png",sheet_x:14,sheet_y:41,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0},"1F3FF":{unified:"1F44B-1F3FF",non_qualified:null,image:"1f44b-1f3ff.png",sheet_x:14,sheet_y:42,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0}},a:"Waving Hand Sign",b:"1F44B",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["hands","gesture","goodbye","solong","farewell","hello","hi","palm"],k:[14,37]},i_love_you_hand_sign:{skin_variations:{"1F3FB":{unified:"1F91F-1F3FB",non_qualified:null,image:"1f91f-1f3fb.png",sheet_x:38,sheet_y:18,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FC":{unified:"1F91F-1F3FC",non_qualified:null,image:"1f91f-1f3fc.png",sheet_x:38,sheet_y:19,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FD":{unified:"1F91F-1F3FD",non_qualified:null,image:"1f91f-1f3fd.png",sheet_x:38,sheet_y:20,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FE":{unified:"1F91F-1F3FE",non_qualified:null,image:"1f91f-1f3fe.png",sheet_x:38,sheet_y:21,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FF":{unified:"1F91F-1F3FF",non_qualified:null,image:"1f91f-1f3ff.png",sheet_x:38,sheet_y:22,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1}},a:"I Love You Hand Sign",b:"1F91F",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[38,17],o:10},writing_hand:{skin_variations:{"1F3FB":{unified:"270D-1F3FB",non_qualified:null,image:"270d-1f3fb.png",sheet_x:49,sheet_y:37,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FC":{unified:"270D-1F3FC",non_qualified:null,image:"270d-1f3fc.png",sheet_x:49,sheet_y:38,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FD":{unified:"270D-1F3FD",non_qualified:null,image:"270d-1f3fd.png",sheet_x:49,sheet_y:39,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FE":{unified:"270D-1F3FE",non_qualified:null,image:"270d-1f3fe.png",sheet_x:49,sheet_y:40,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FF":{unified:"270D-1F3FF",non_qualified:null,image:"270d-1f3ff.png",sheet_x:49,sheet_y:41,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1}},a:"Writing Hand",b:"270D-FE0F",c:"270D",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["lower_left_ballpoint_pen","stationery","write","compose"],k:[49,36],o:1},clap:{skin_variations:{"1F3FB":{unified:"1F44F-1F3FB",non_qualified:null,image:"1f44f-1f3fb.png",sheet_x:15,sheet_y:10,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0},"1F3FC":{unified:"1F44F-1F3FC",non_qualified:null,image:"1f44f-1f3fc.png",sheet_x:15,sheet_y:11,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0},"1F3FD":{unified:"1F44F-1F3FD",non_qualified:null,image:"1f44f-1f3fd.png",sheet_x:15,sheet_y:12,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0},"1F3FE":{unified:"1F44F-1F3FE",non_qualified:null,image:"1f44f-1f3fe.png",sheet_x:15,sheet_y:13,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0},"1F3FF":{unified:"1F44F-1F3FF",non_qualified:null,image:"1f44f-1f3ff.png",sheet_x:15,sheet_y:14,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0}},a:"Clapping Hands Sign",b:"1F44F",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["hands","praise","applause","congrats","yay"],k:[15,9]},open_hands:{skin_variations:{"1F3FB":{unified:"1F450-1F3FB",non_qualified:null,image:"1f450-1f3fb.png",sheet_x:15,sheet_y:16,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0},"1F3FC":{unified:"1F450-1F3FC",non_qualified:null,image:"1f450-1f3fc.png",sheet_x:15,sheet_y:17,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0},"1F3FD":{unified:"1F450-1F3FD",non_qualified:null,image:"1f450-1f3fd.png",sheet_x:15,sheet_y:18,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0},"1F3FE":{unified:"1F450-1F3FE",non_qualified:null,image:"1f450-1f3fe.png",sheet_x:15,sheet_y:19,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0},"1F3FF":{unified:"1F450-1F3FF",non_qualified:null,image:"1f450-1f3ff.png",sheet_x:15,sheet_y:20,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0}},a:"Open Hands Sign",b:"1F450",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["fingers","butterfly","hands","open"],k:[15,15]},raised_hands:{skin_variations:{"1F3FB":{unified:"1F64C-1F3FB",non_qualified:null,image:"1f64c-1f3fb.png",sheet_x:33,sheet_y:13,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0},"1F3FC":{unified:"1F64C-1F3FC",non_qualified:null,image:"1f64c-1f3fc.png",sheet_x:33,sheet_y:14,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0},"1F3FD":{unified:"1F64C-1F3FD",non_qualified:null,image:"1f64c-1f3fd.png",sheet_x:33,sheet_y:15,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0},"1F3FE":{unified:"1F64C-1F3FE",non_qualified:null,image:"1f64c-1f3fe.png",sheet_x:33,sheet_y:16,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0},"1F3FF":{unified:"1F64C-1F3FF",non_qualified:null,image:"1f64c-1f3ff.png",sheet_x:33,sheet_y:17,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0}},a:"Person Raising Both Hands in Celebration",b:"1F64C",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["gesture","hooray","yea","celebration","hands"],k:[33,12]},palms_up_together:{skin_variations:{"1F3FB":{unified:"1F932-1F3FB",non_qualified:null,image:"1f932-1f3fb.png",sheet_x:39,sheet_y:17,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FC":{unified:"1F932-1F3FC",non_qualified:null,image:"1f932-1f3fc.png",sheet_x:39,sheet_y:18,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FD":{unified:"1F932-1F3FD",non_qualified:null,image:"1f932-1f3fd.png",sheet_x:39,sheet_y:19,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FE":{unified:"1F932-1F3FE",non_qualified:null,image:"1f932-1f3fe.png",sheet_x:39,sheet_y:20,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1},"1F3FF":{unified:"1F932-1F3FF",non_qualified:null,image:"1f932-1f3ff.png",sheet_x:39,sheet_y:21,added_in:"10.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!1}},a:"Palms Up Together",b:"1F932",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[39,16],o:10},pray:{skin_variations:{"1F3FB":{unified:"1F64F-1F3FB",non_qualified:null,image:"1f64f-1f3fb.png",sheet_x:34,sheet_y:3,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0},"1F3FC":{unified:"1F64F-1F3FC",non_qualified:null,image:"1f64f-1f3fc.png",sheet_x:34,sheet_y:4,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0},"1F3FD":{unified:"1F64F-1F3FD",non_qualified:null,image:"1f64f-1f3fd.png",sheet_x:34,sheet_y:5,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0},"1F3FE":{unified:"1F64F-1F3FE",non_qualified:null,image:"1f64f-1f3fe.png",sheet_x:34,sheet_y:6,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0},"1F3FF":{unified:"1F64F-1F3FF",non_qualified:null,image:"1f64f-1f3ff.png",sheet_x:34,sheet_y:7,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0}},a:"Person with Folded Hands",b:"1F64F",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["please","hope","wish","namaste","highfive"],k:[34,2]},handshake:{a:"Handshake",b:"1F91D",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["agreement","shake"],k:[38,10],o:9},nail_care:{skin_variations:{"1F3FB":{unified:"1F485-1F3FB",non_qualified:null,image:"1f485-1f3fb.png",sheet_x:23,sheet_y:45,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0},"1F3FC":{unified:"1F485-1F3FC",non_qualified:null,image:"1f485-1f3fc.png",sheet_x:23,sheet_y:46,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0},"1F3FD":{unified:"1F485-1F3FD",non_qualified:null,image:"1f485-1f3fd.png",sheet_x:23,sheet_y:47,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0},"1F3FE":{unified:"1F485-1F3FE",non_qualified:null,image:"1f485-1f3fe.png",sheet_x:23,sheet_y:48,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0},"1F3FF":{unified:"1F485-1F3FF",non_qualified:null,image:"1f485-1f3ff.png",sheet_x:23,sheet_y:49,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0}},a:"Nail Polish",b:"1F485",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["beauty","manicure","finger","fashion","nail"],k:[23,44]},ear:{skin_variations:{"1F3FB":{unified:"1F442-1F3FB",non_qualified:null,image:"1f442-1f3fb.png",sheet_x:13,sheet_y:46,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0},"1F3FC":{unified:"1F442-1F3FC",non_qualified:null,image:"1f442-1f3fc.png",sheet_x:13,sheet_y:47,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0},"1F3FD":{unified:"1F442-1F3FD",non_qualified:null,image:"1f442-1f3fd.png",sheet_x:13,sheet_y:48,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0},"1F3FE":{unified:"1F442-1F3FE",non_qualified:null,image:"1f442-1f3fe.png",sheet_x:13,sheet_y:49,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0},"1F3FF":{unified:"1F442-1F3FF",non_qualified:null,image:"1f442-1f3ff.png",sheet_x:13,sheet_y:50,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0}},a:"Ear",b:"1F442",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["face","hear","sound","listen"],k:[13,45]},nose:{skin_variations:{"1F3FB":{unified:"1F443-1F3FB",non_qualified:null,image:"1f443-1f3fb.png",sheet_x:14,sheet_y:0,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0},"1F3FC":{unified:"1F443-1F3FC",non_qualified:null,image:"1f443-1f3fc.png",sheet_x:14,sheet_y:1,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0},"1F3FD":{unified:"1F443-1F3FD",non_qualified:null,image:"1f443-1f3fd.png",sheet_x:14,sheet_y:2,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0},"1F3FE":{unified:"1F443-1F3FE",non_qualified:null,image:"1f443-1f3fe.png",sheet_x:14,sheet_y:3,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0},"1F3FF":{unified:"1F443-1F3FF",non_qualified:null,image:"1f443-1f3ff.png",sheet_x:14,sheet_y:4,added_in:"8.0",has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,has_img_facebook:!0,has_img_messenger:!0}},a:"Nose",b:"1F443",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["smell","sniff"],k:[13,51]},footprints:{a:"Footprints",b:"1F463",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["feet","tracking","walking","beach"],k:[15,39]},eyes:{a:"Eyes",b:"1F440",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["look","watch","stalk","peek","see"],k:[13,42]},eye:{a:"Eye",b:"1F441-FE0F",c:"1F441",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["face","look","see","watch","stare"],k:[13,44],o:7},"eye-in-speech-bubble":{a:"Eye in Speech Bubble",b:"1F441-FE0F-200D-1F5E8-FE0F",d:!0,e:!0,f:!1,g:!0,h:!1,i:!1,k:[13,43],o:7},brain:{a:"Brain",b:"1F9E0",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["smart","intelligent"],k:[46,22],o:10},tongue:{a:"Tongue",b:"1F445",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["mouth","playful"],k:[14,6]},lips:{a:"Mouth",b:"1F444",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["mouth","kiss"],k:[14,5]},kiss:{a:"Kiss Mark",b:"1F48B",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["face","lips","love","like","affection","valentines"],k:[24,37]},cupid:{a:"Heart with Arrow",b:"1F498",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["love","like","heart","affection","valentines"],k:[24,50]},heart:{a:"Heavy Black Heart",b:"2764-FE0F",c:"2764",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["love","like","valentines"],k:[50,8],l:["<3"],m:"<3",o:1},heartbeat:{a:"Beating Heart",b:"1F493",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["love","like","affection","valentines","pink","heart"],k:[24,45]},broken_heart:{a:"Broken Heart",b:"1F494",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["sad","sorry","break","heart","heartbreak"],k:[24,46],l:["</3"],m:"</3"},two_hearts:{a:"Two Hearts",b:"1F495",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["love","like","affection","valentines","heart"],k:[24,47]},sparkling_heart:{a:"Sparkling Heart",b:"1F496",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["love","like","affection","valentines"],k:[24,48]},heartpulse:{a:"Growing Heart",b:"1F497",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["like","love","affection","valentines","pink"],k:[24,49]},blue_heart:{a:"Blue Heart",b:"1F499",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["love","like","affection","valentines"],k:[24,51],m:"<3"},green_heart:{a:"Green Heart",b:"1F49A",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["love","like","affection","valentines"],k:[25,0],m:"<3"},yellow_heart:{a:"Yellow Heart",b:"1F49B",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["love","like","affection","valentines"],k:[25,1],m:"<3"},orange_heart:{a:"Orange Heart",b:"1F9E1",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["love","like","affection","valentines"],k:[46,23],o:10},purple_heart:{a:"Purple Heart",b:"1F49C",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["love","like","affection","valentines"],k:[25,2],m:"<3"},black_heart:{a:"Black Heart",b:"1F5A4",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["evil"],k:[29,50],o:9},gift_heart:{a:"Heart with Ribbon",b:"1F49D",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["love","valentines"],k:[25,3]},revolving_hearts:{a:"Revolving Hearts",b:"1F49E",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["love","like","affection","valentines"],k:[25,4]},heart_decoration:{a:"Heart Decoration",b:"1F49F",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["purple-square","love","like"],k:[25,5]},heavy_heart_exclamation_mark_ornament:{a:"Heavy Heart Exclamation Mark Ornament",b:"2763-FE0F",c:"2763",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[50,7],o:1},love_letter:{a:"Love Letter",b:"1F48C",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["email","like","affection","envelope","valentines"],k:[24,38]},zzz:{a:"Sleeping Symbol",b:"1F4A4",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["sleepy","tired","dream"],k:[25,10]},anger:{a:"Anger Symbol",b:"1F4A2",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["angry","mad"],k:[25,8]},bomb:{a:"Bomb",b:"1F4A3",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["boom","explode","explosion","terrorism"],k:[25,9]},boom:{a:"Collision Symbol",b:"1F4A5",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["bomb","explode","explosion","collision","blown"],k:[25,11],n:["collision"]},sweat_drops:{a:"Splashing Sweat Symbol",b:"1F4A6",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["water","drip","oops"],k:[25,12]},dash:{a:"Dash Symbol",b:"1F4A8",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["wind","air","fast","shoo","fart","smoke","puff"],k:[25,14]},dizzy:{a:"Dizzy Symbol",b:"1F4AB",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["star","sparkle","shoot","magic"],k:[25,22]},speech_balloon:{a:"Speech Balloon",b:"1F4AC",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["bubble","words","message","talk","chatting"],k:[25,23]},left_speech_bubble:{a:"Left Speech Bubble",b:"1F5E8-FE0F",c:"1F5E8",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["words","message","talk","chatting"],k:[30,15],o:7},right_anger_bubble:{a:"Right Anger Bubble",b:"1F5EF-FE0F",c:"1F5EF",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["caption","speech","thinking","mad"],k:[30,16],o:7},thought_balloon:{a:"Thought Balloon",b:"1F4AD",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["bubble","cloud","speech","thinking","dream"],k:[25,24]},hole:{a:"Hole",b:"1F573-FE0F",c:"1F573",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["embarrassing"],k:[28,44],o:7},eyeglasses:{a:"Eyeglasses",b:"1F453",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["fashion","accessories","eyesight","nerdy","dork","geek"],k:[15,23]},dark_sunglasses:{a:"Dark Sunglasses",b:"1F576-FE0F",c:"1F576",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["face","cool","accessories"],k:[29,17],o:7},necktie:{a:"Necktie",b:"1F454",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["shirt","suitup","formal","fashion","cloth","business"],k:[15,24]},shirt:{a:"T-Shirt",b:"1F455",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,k:[15,25],n:["tshirt"]},jeans:{a:"Jeans",b:"1F456",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["fashion","shopping"],k:[15,26]},scarf:{a:"Scarf",b:"1F9E3",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["neck","winter","clothes"],k:[46,25],o:10},gloves:{a:"Gloves",b:"1F9E4",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["hands","winter","clothes"],k:[46,26],o:10},coat:{a:"Coat",b:"1F9E5",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["jacket"],k:[46,27],o:10},socks:{a:"Socks",b:"1F9E6",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["stockings","clothes"],k:[46,28],o:10},dress:{a:"Dress",b:"1F457",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["clothes","fashion","shopping"],k:[15,27]},kimono:{a:"Kimono",b:"1F458",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["dress","fashion","women","female","japanese"],k:[15,28]},bikini:{a:"Bikini",b:"1F459",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["swimming","female","woman","girl","fashion","beach","summer"],k:[15,29]},womans_clothes:{a:"Womans Clothes",b:"1F45A",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["fashion","shopping_bags","female"],k:[15,30]},purse:{a:"Purse",b:"1F45B",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["fashion","accessories","money","sales","shopping"],k:[15,31]},handbag:{a:"Handbag",b:"1F45C",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["fashion","accessory","accessories","shopping"],k:[15,32]},pouch:{a:"Pouch",b:"1F45D",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["bag","accessories","shopping"],k:[15,33]},shopping_bags:{a:"Shopping Bags",b:"1F6CD-FE0F",c:"1F6CD",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[37,2],o:7},school_satchel:{a:"School Satchel",b:"1F392",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["student","education","bag","backpack"],k:[8,37]},mans_shoe:{a:"Mans Shoe",b:"1F45E",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["fashion","male"],k:[15,34],n:["shoe"]},athletic_shoe:{a:"Athletic Shoe",b:"1F45F",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["shoes","sports","sneakers"],k:[15,35]},high_heel:{a:"High-Heeled Shoe",b:"1F460",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["fashion","shoes","female","pumps","stiletto"],k:[15,36]},sandal:{a:"Womans Sandal",b:"1F461",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["shoes","fashion","flip flops"],k:[15,37]},boot:{a:"Womans Boots",b:"1F462",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["shoes","fashion"],k:[15,38]},crown:{a:"Crown",b:"1F451",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["king","kod","leader","royalty","lord"],k:[15,21]},womans_hat:{a:"Womans Hat",b:"1F452",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["fashion","accessories","female","lady","spring"],k:[15,22]},tophat:{a:"Top Hat",b:"1F3A9",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["magic","gentleman","classy","circus"],k:[9,3]},mortar_board:{a:"Graduation Cap",b:"1F393",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["school","college","degree","university","graduation","cap","hat","legal","learn","education"],k:[8,38]},billed_cap:{a:"Billed Cap",b:"1F9E2",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[46,24],o:10},helmet_with_white_cross:{a:"Helmet with White Cross",b:"26D1-FE0F",c:"26D1",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,k:[48,33],o:5},prayer_beads:{a:"Prayer Beads",b:"1F4FF",d:!0,e:!0,f:!0,g:!0,h:!0,i:!1,j:["dhikr","religious"],k:[27,1],o:8},lipstick:{a:"Lipstick",b:"1F484",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["female","girl","fashion","woman"],k:[23,43]},ring:{a:"Ring",b:"1F48D",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["wedding","propose","marriage","valentines","diamond","fashion","jewelry","gem","engagement"],k:[24,39]},gem:{a:"Gem Stone",b:"1F48E",d:!0,e:!0,f:!0,g:!0,h:!0,i:!0,j:["blue","ruby","diamond","jewelry"],k:[24,40]}},aliases:{satisfied:"laughing",grinning_face_with_star_eyes:"star-struck",face_with_one_eyebrow_raised:"face_with_raised_eyebrow",telephone:"phone",cooking:"fried_egg",paw_prints:"feet","flag-cn":"cn",lantern:"izakaya_lantern",shocked_face_with_exploding_head:"exploding_head",open_book:"book","flag-de":"de",grinning_face_with_one_large_and_one_small_eye:"zany_face",serious_face_with_symbols_covering_mouth:"face_with_symbols_on_mouth",flipper:"dolphin",face_with_open_mouth_vomiting:"face_vomiting","flag-es":"es",face_with_finger_covering_closed_lips:"shushing_face",smiling_face_with_smiling_eyes_and_hand_covering_mouth:"face_with_hand_over_mouth","flag-fr":"fr",honeybee:"bee",red_car:"car",uk:"gb","flag-gb":"gb",envelope:"email",poop:"hankey",shit:"hankey",staff_of_aesculapius:"medical_symbol",knife:"hocho",sailboat:"boat",pencil:"memo","flag-it":"it","flag-jp":"jp",heavy_exclamation_mark:"exclamation","flag-kr":"kr",waxing_gibbous_moon:"moon",mother_christmas:"mrs_claus",sun_small_cloud:"mostly_sunny",sun_behind_cloud:"barely_sunny",sun_behind_rain_cloud:"partly_sunny_rain",lightning_cloud:"lightning",tornado_cloud:"tornado","flag-ru":"ru",running:"runner","flag-us":"us",man_and_woman_holding_hands:"couple","man-woman-boy":"family",family:"man-woman-boy",reversed_hand_with_middle_finger_extended:"middle_finger",hand_with_index_and_middle_fingers_crossed:"crossed_fingers",sign_of_the_horns:"the_horns",raised_hand:"hand",thumbsup:"+1",thumbsdown:"-1",punch:"facepunch",collision:"boom",tshirt:"shirt",shoe:"mans_shoe"}}},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var n="emoji-mart",i=JSON,r="undefined"!=typeof window&&"localStorage"in window,a=void 0,l=void 0;function s(e,t){if(l)l(e,t);else{if(!r)return;try{window.localStorage[n+"."+e]=i.stringify(t)}catch(e){}}}t.default={update:function(e){for(var t in e)s(t,e[t])},set:s,get:function(e){if(a)return a(e);if(r){try{var t=window.localStorage[n+"."+e]}catch(e){return}return t?JSON.parse(t):void 0}},setNamespace:function(e){n=e},setHandlers:function(e){e||(e={}),a=e.getter,l=e.setter}}},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var n=o(43),i=o.n(n);for(var r in n)"default"!==r&&function(e){o.d(t,e,(function(){return n[e]}))}(r);var a=o(79),l=!1,s=function(e){l||(o(73),o(76))},d=o(3)(i.a,a.a,!1,s,"data-v-51188104",null);d.options.__file="src/components/anchors.vue",t.default=d.exports},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var n,i=o(78),r=(n=i)&&n.__esModule?n:{default:n};t.default={props:{i18n:{type:Object,required:!0},color:{type:String},categories:{type:Array,required:!0},activeCategory:{type:Object,default:function(){return{}}}},created:function(){this.svgs=r.default}}},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var n=o(45),i=o.n(n);for(var r in n)"default"!==r&&function(e){o.d(t,e,(function(){return n[e]}))}(r);var a=o(120),l=!1,s=function(e){l||(o(80),o(82))},d=o(3)(i.a,a.a,!1,s,"data-v-376cda0e",null);d.options.__file="src/components/category.vue",t.default=d.exports},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var n,i=o(18),r=(n=i)&&n.__esModule?n:{default:n};t.default={props:{data:{type:Object,required:!0},i18n:{type:Object,required:!0},id:{type:String,required:!0},name:{type:String,required:!0},emojis:{type:Array},emojiProps:{type:Object,required:!0}},computed:{isVisible:function(){return!!this.emojis},isSearch:function(){return"Search"==this.name},hasResults:function(){return this.emojis.length>0}},components:{NimbleEmoji:r.default}}},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var n,i=o(19),r=(n=i)&&n.__esModule?n:{default:n},a=o(20),l=o(24),s=o(25);t.default={props:(0,r.default)({},s.EmojiProps,{data:{type:Object,required:!0}}),data:function(){return{mutableData:this.data.compressed?(0,l.uncompress)(this.data):this.data}},computed:{emojiData:function(){return(0,a.getData)(this.emoji,this.skin,this.set,this.mutableData)},sanitizedData:function(){return(0,a.getSanitizedData)(this.emoji,this.skin,this.set,this.mutableData)},canRender:function(){return this.isCustom||this.isNative||this.hasEmoji||this.fallback},isNative:function(){return this.native},isCustom:function(){return this.emojiData.custom},hasEmoji:function(){return this.emojiData["has_img_"+this.set]},nativeEmoji:function(){return this.emojiData.unified?(0,a.unifiedToNative)(this.emojiData.unified):""},fallbackEmoji:function(){return this.fallback?this.fallback(this.emoji):null},nativeEmojiStyles:function(){var e={fontSize:this.size+"px"};return this.forceSize&&(e.display="inline-block",e.width=this.size+"px",e.height=this.size+"px"),e},fallbackEmojiStyles:function(){return this.isCustom?this.customEmojiStyles:this.hasEmoji?{display:"inline-block",width:this.size+"px",height:this.size+"px",backgroundImage:"url("+this.backgroundImageFn(this.set,this.sheetSize)+")",backgroundSize:"5200%",backgroundPosition:this.getPosition()}:null},customEmojiStyles:function(){return{display:"inline-block",width:this.size+"px",height:this.size+"px",backgroundImage:"url("+this.emojiData.imageUrl+")",backgroundSize:"100%"}},title:function(){return this.tooltip?this.emojiData.short_names[0]:null}},methods:{getPosition:function(){return 100/51*this.emojiData.sheet_x+"% "+100/51*this.emojiData.sheet_y+"%"},onClick:function(){this.$emit("click",this.sanitizedData)},onMouseEnter:function(){this.$emit("mouseenter",this.sanitizedData)},onMouseLeave:function(){this.$emit("mouseleave",this.sanitizedData)}}}},function(e,t,o){"use strict";var n=o(29),i=o(13),r=o(51),a=o(8),l=o(7),s=o(16),d=o(91),m=o(35),f=o(96),_=o(2)("iterator"),c=!([].keys&&"next"in[].keys()),g=function(){return this};e.exports=function(e,t,o,p,u,h,b){d(o,t,p);var x,y,w,v=function(e){if(!c&&e in C)return C[e];switch(e){case"keys":case"values":return function(){return new o(this,e)}}return function(){return new o(this,e)}},F=t+" Iterator",k="values"==u,j=!1,C=e.prototype,D=C[_]||C["@@iterator"]||u&&C[u],E=!c&&D||v(u),A=u?k?v("entries"):E:void 0,S="Array"==t&&C.entries||D;if(S&&(w=f(S.call(new e)))!==Object.prototype&&w.next&&(m(w,F,!0),n||l(w,_)||a(w,_,g)),k&&D&&"values"!==D.name&&(j=!0,E=function(){return D.call(this)}),n&&!b||!c&&!j&&C[_]||a(C,_,E),s[t]=E,s[F]=g,u)if(x={values:k?E:v("values"),keys:h?E:v("keys"),entries:A},b)for(y in x)y in C||r(C,y,x[y]);else i(i.P+i.F*(c||j),t,x);return x}},function(e,t,o){var n=o(90);e.exports=function(e,t,o){if(n(e),void 0===t)return e;switch(o){case 1:return function(o){return e.call(t,o)};case 2:return function(o,n){return e.call(t,o,n)};case 3:return function(o,n,i){return e.call(t,o,n,i)}}return function(){return e.apply(t,arguments)}}},function(e,t,o){e.exports=!o(10)&&!o(11)((function(){return 7!=Object.defineProperty(o(50)("div"),"a",{get:function(){return 7}}).a}))},function(e,t,o){var n=o(14),i=o(5).document,r=n(i)&&n(i.createElement);e.exports=function(e){return r?i.createElement(e):{}}},function(e,t,o){e.exports=o(8)},function(e,t,o){var n=o(9),i=o(92),r=o(34),a=o(32)("IE_PROTO"),l=function(){},s=function(){var e,t=o(50)("iframe"),n=r.length;for(t.style.display="none",o(95).appendChild(t),t.src="javascript:",(e=t.contentWindow.document).open(),e.write("<script>document.F=Object<\/script>"),e.close(),s=e.F;n--;)delete s.prototype[r[n]];return s()};e.exports=Object.create||function(e,t){var o;return null!==e?(l.prototype=n(e),o=new l,l.prototype=null,o[a]=e):o=s(),void 0===t?o:i(o,t)}},function(e,t,o){var n=o(7),i=o(12),r=o(93)(!1),a=o(32)("IE_PROTO");e.exports=function(e,t){var o,l=i(e),s=0,d=[];for(o in l)o!=a&&n(l,o)&&d.push(o);for(;t.length>s;)n(l,o=t[s++])&&(~r(d,o)||d.push(o));return d}},function(e,t,o){var n=o(31);e.exports=Object("z").propertyIsEnumerable(0)?Object:function(e){return"String"==n(e)?e.split(""):Object(e)}},function(e,t,o){var n=o(27),i=Math.min;e.exports=function(e){return e>0?i(n(e),9007199254740991):0}},function(e,t,o){o(97);for(var n=o(5),i=o(8),r=o(16),a=o(2)("toStringTag"),l="CSSRuleList,CSSStyleDeclaration,CSSValueList,ClientRectList,DOMRectList,DOMStringList,DOMTokenList,DataTransferItemList,FileList,HTMLAllCollection,HTMLCollection,HTMLFormElement,HTMLSelectElement,MediaList,MimeTypeArray,NamedNodeMap,NodeList,PaintRequestList,Plugin,PluginArray,SVGLengthList,SVGNumberList,SVGPathSegList,SVGPointList,SVGStringList,SVGTransformList,SourceBufferList,StyleSheetList,TextTrackCueList,TextTrackList,TouchList".split(","),s=0;s<l.length;s++){var d=l[s],m=n[d],f=m&&m.prototype;f&&!f[a]&&i(f,a,d),r[d]=r.Array}},function(e,t,o){var n=o(53),i=o(34).concat("length","prototype");t.f=Object.getOwnPropertyNames||function(e){return n(e,i)}},function(e,t,o){e.exports={default:o(115),__esModule:!0}},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var n=o(60),i=o.n(n);for(var r in n)"default"!==r&&function(e){o.d(t,e,(function(){return n[e]}))}(r);var a=o(126),l=!1,s=function(e){l||o(121)},d=o(3)(i.a,a.a,!1,s,"data-v-35056c30",null);d.options.__file="src/components/preview.vue",t.default=d.exports},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var n=a(o(18)),i=a(o(61)),r=o(20);function a(e){return e&&e.__esModule?e:{default:e}}t.default={props:{data:{type:Object,required:!0},title:{type:String,required:!0},emoji:{type:[String,Object]},idleEmoji:{type:[String,Object],required:!0},showSkinTones:{type:Boolean,default:!0},emojiProps:{type:Object,required:!0},skinProps:{type:Object,required:!0}},computed:{emojiData:function(){return this.emoji&&this.emoji.custom?this.emoji:this.emoji?(0,r.getData)(this.emoji,null,null,this.data):{}},emojiShortNames:function(){return this.emojiData.short_names},emojiEmoticons:function(){return this.emojiData.emoticons}},components:{NimbleEmoji:n.default,Skins:i.default}}},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var n=o(62),i=o.n(n);for(var r in n)"default"!==r&&function(e){o.d(t,e,(function(){return n[e]}))}(r);var a=o(125),l=!1,s=function(e){l||o(123)},d=o(3)(i.a,a.a,!1,s,"data-v-1c614894",null);d.options.__file="src/components/skins.vue",t.default=d.exports},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default={props:{skin:{type:Number,required:!0}},data:function(){return{opened:!1}},methods:{onClick:function(e){this.opened&&e!=this.skin&&this.$emit("change",e),this.opened=!this.opened}}}},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var n=o(64),i=o.n(n);for(var r in n)"default"!==r&&function(e){o.d(t,e,(function(){return n[e]}))}(r);var a=o(131),l=!1,s=function(e){l||o(127)},d=o(3)(i.a,a.a,!1,s,"data-v-4ad41bb8",null);d.options.__file="src/components/search.vue",t.default=d.exports},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var n,i=o(39),r=(n=i)&&n.__esModule?n:{default:n};t.default={props:{data:{type:Object,required:!0},i18n:{type:Object,required:!0},maxResults:{type:Number,default:75},autoFocus:{type:Boolean,default:!1},emojisToShowFilter:{type:Function},include:{type:Array},exclude:{type:Array},custom:{type:Array}},data:function(){return{value:""}},computed:{emojiIndex:function(){return new r.default(this.data)}},watch:{value:function(){var e=this.emojiIndex.search(this.value,{emojisToShowFilter:this.emojisToShowFilter,maxResults:this.maxResults,include:this.include,exclude:this.exclude,custom:this.custom});this.$emit("search",e)}},methods:{clear:function(){this.value=""}},mounted:function(){var e=this.$el.querySelector("input");this.autoFocus&&e.focus()}}},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var n=l(o(19)),i=l(o(40)),r=l(o(18)),a=o(25);function l(e){return e&&e.__esModule?e:{default:e}}t.default={functional:!0,props:(0,n.default)({},a.EmojiProps,{data:{type:Object,default:function(){return i.default}}}),render:function(e,t){var o=t.data,i=t.props,a=t.children;return e(r.default,(0,n.default)({},o,{props:i}),a)}}},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var n=l(o(19)),i=l(o(40)),r=l(o(67)),a=o(25);function l(e){return e&&e.__esModule?e:{default:e}}t.default={functional:!0,props:(0,n.default)({},a.PickerProps,{data:{type:Object,default:function(){return i.default}}}),render:function(e,t){var o=t.data,i=t.props,a=t.children;return e(r.default,(0,n.default)({},o,{props:i}),a)}}},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var n=o(68),i=o.n(n);for(var r in n)"default"!==r&&function(e){o.d(t,e,(function(){return n[e]}))}(r);var a=o(151),l=!1,s=function(e){l||(o(134),o(136))},d=o(3)(i.a,a.a,!1,s,"data-v-7bc71df8",null);d.options.__file="src/components/picker/nimblePicker.vue",t.default=d.exports},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var n=u(o(138)),i=u(o(147)),r=u(o(19)),a=u(o(58));o(150);var l=u(o(41)),s=u(o(70)),d=o(20),m=o(24),f=o(25),_=u(o(42)),c=u(o(44)),g=u(o(59)),p=u(o(63));function u(e){return e&&e.__esModule?e:{default:e}}var h={id:"recent",name:"Recent",emojis:null},b={id:"custom",name:"Custom",emojis:[]},x={search:"Search",notfound:"No Emoji Found",categories:{search:"Search Results",recent:"Frequently Used",people:"Smileys & People",nature:"Animals & Nature",foods:"Food & Drink",activity:"Activity",places:"Travel & Places",objects:"Objects",symbols:"Symbols",flags:"Flags",custom:"Custom"}};function y(e){return(0,a.default)({},e,{id:e.short_names[0],custom:!0})}t.default={props:(0,r.default)({},f.PickerProps,{data:{type:Object,required:!0}}),data:function(){var e=this,t=this.custom.map(y),o=this.recent||s.default.get(this.perLine);return o.length&&(o=o.map((function(e){var o=!0,n=!1,r=void 0;try{for(var a,l=(0,i.default)(t);!(o=(a=l.next()).done);o=!0){var s=a.value;if(s.id===e)return s}}catch(e){n=!0,r=e}finally{try{!o&&l.return&&l.return()}finally{if(n)throw r}}return e}))),this.emojisToShowFilter&&(t=t.filter((function(t){return e.emojisToShowFilter(e.mutableData.emojis[t]||t)})),o=o.filter((function(t){return e.emojisToShowFilter(e.mutableData.emojis[t]||t)}))),{mutableData:this.data.compressed?(0,m.uncompress)(this.data):this.data,mutableI18n:(0,d.deepMerge)(x,this.i18n),activeSkin:this.skin||l.default.get("skin")||this.defaultSkin,categories:[],activeCategory:null,previewEmoji:null,searchEmojis:null,customEmojis:t,recentEmojis:o}},computed:{customStyles:function(){return(0,r.default)({width:this.calculateWidth+"px"},this.pickerStyles)},emojiProps:function(){return{native:this.native,skin:this.activeSkin,size:this.emojiSize,set:this.set,sheetSize:this.sheetSize,forceSize:this.native,tooltip:this.emojiTooltip,backgroundImageFn:this.backgroundImageFn,onEnter:this.onEmojiEnter.bind(this),onLeave:this.onEmojiLeave.bind(this),onClick:this.onEmojiClick.bind(this)}},skinProps:function(){return{skin:this.activeSkin}},calculateWidth:function(){return this.perLine*(this.emojiSize+12)+12+2+(0,d.measureScrollbar)()},filteredCategories:function(){var e=this;return this.categories.filter((function(t){var o=!e.include||!e.include.length||e.include.indexOf(t.id)>-1,n=!(!e.exclude||!e.exclude.length)&&e.exclude.indexOf(t.id)>-1,i=t.emojis.length>0;return e.emojisToShowFilter&&(i=t.emojis.some((function(t){return e.emojisToShowFilter(e.mutableData.emojis[t]||t)}))),o&&!n&&i}))}},created:function(){var e,t=this,o=this.mutableData.categories.map((function(e){var o=e.id,n=e.name,i=e.emojis;return t.emojisToShowFilter&&(i=e.emojis.filter((function(e){return t.emojisToShowFilter(t.data.emojis[e]||e)}))),{id:o,name:n,emojis:i}}));h.emojis=this.recentEmojis,b.emojis=this.customEmojis,this.categories.push(h),(e=this.categories).push.apply(e,(0,n.default)(o)),this.categories.push(b),this.categories[0].first=!0,this.activeCategory=this.filteredCategories[0]},methods:{onScroll:function(){this.infiniteScroll&&!this.waitingForPaint&&(this.waitingForPaint=!0,window.requestAnimationFrame(this.onScrollPaint.bind(this)))},onScrollPaint:function(){this.waitingForPaint=!1;for(var e=this.$refs.scroll.scrollTop,t=this.filteredCategories[0],o=0,n=this.filteredCategories.length;o<n;o++){var i=this.filteredCategories[o],r=this.$refs.categories[o];if(r&&r.$el.offsetTop>e)break;t=i}this.activeCategory=t},onAnchorClick:function(e){var t=this,o=this.filteredCategories.indexOf(e),n=this.$refs.categories[o],i=function(){if(n){var o=n.$el.offsetTop;e.first&&(o=0),t.$refs.scroll.scrollTop=o}};this.searchEmojis?(this.onSearch(null),this.$refs.search.clear(),this.$nextTick(i)):this.infiniteScroll?i():this.activeCategory=this.filteredCategories[o]},onSearch:function(e){this.searchEmojis=e},onEmojiEnter:function(e){if(e.custom){var t=this.customEmojis.filter((function(t){return t.id===e.id}))[0];e=(0,a.default)({},e,t)}this.previewEmoji=e},onEmojiLeave:function(e){this.previewEmoji=null},onEmojiClick:function(e){this.$emit("select",e),s.default.add(e)},onSkinChange:function(e){this.activeSkin=e,l.default.update({skin:e}),this.$emit("skin-change",e)}},components:{Anchors:_.default,Category:c.default,Preview:g.default,Search:p.default}}},function(e,t,o){var n=o(145),i=o(2)("iterator"),r=o(16);e.exports=o(4).getIteratorMethod=function(e){if(null!=e)return e[i]||e["@@iterator"]||r[n(e)]}},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var n,i=o(41),r=(n=i)&&n.__esModule?n:{default:n},a=["+1","grinning","kissing_heart","heart_eyes","laughing","stuck_out_tongue_winking_eye","sweat_smile","joy","scream","disappointed","unamused","weary","sob","sunglasses","heart","poop"],l=void 0,s=void 0,d={};function m(){s=!0,l=r.default.get("frequently")}t.default={add:function(e){s||m();var t=e.id;l||(l=d),l[t]||(l[t]=0),l[t]+=1,r.default.set("last",t),r.default.set("frequently",l)},get:function(e){if(s||m(),!l){d={};for(var t=[],o=0;o<e;o++)d[a[o]]=e-o,t.push(a[o]);return t}var n=4*e,i=[];for(var f in l)l.hasOwnProperty(f)&&i.push(f);var _=i.sort((function(e,t){return l[e]-l[t]})).reverse().slice(0,n),c=r.default.get("last");return c&&-1==_.indexOf(c)&&(_.pop(),_.push(c)),_}}},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.frequently=t.store=t.emojiIndex=t.NimbleEmojiIndex=t.Category=t.NimbleEmoji=t.Emoji=t.NimblePicker=t.Picker=void 0;var n=o(72);Object.defineProperty(t,"Picker",{enumerable:!0,get:function(){return n.Picker}}),Object.defineProperty(t,"NimblePicker",{enumerable:!0,get:function(){return n.NimblePicker}}),Object.defineProperty(t,"Emoji",{enumerable:!0,get:function(){return n.Emoji}}),Object.defineProperty(t,"NimbleEmoji",{enumerable:!0,get:function(){return n.NimbleEmoji}}),Object.defineProperty(t,"Category",{enumerable:!0,get:function(){return n.Category}});var i=o(39);Object.defineProperty(t,"NimbleEmojiIndex",{enumerable:!0,get:function(){return s(i).default}});var r=s(o(152)),a=s(o(41)),l=s(o(70));function s(e){return e&&e.__esModule?e:{default:e}}t.emojiIndex=r.default,t.store=a.default,t.frequently=l.default},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var n=o(42);Object.defineProperty(t,"Anchors",{enumerable:!0,get:function(){return _(n).default}});var i=o(44);Object.defineProperty(t,"Category",{enumerable:!0,get:function(){return _(i).default}});var r=o(59);Object.defineProperty(t,"Preview",{enumerable:!0,get:function(){return _(r).default}});var a=o(63);Object.defineProperty(t,"Search",{enumerable:!0,get:function(){return _(a).default}});var l=o(61);Object.defineProperty(t,"Skins",{enumerable:!0,get:function(){return _(l).default}});var s=o(132);Object.defineProperty(t,"Emoji",{enumerable:!0,get:function(){return _(s).default}});var d=o(18);Object.defineProperty(t,"NimbleEmoji",{enumerable:!0,get:function(){return _(d).default}});var m=o(133);Object.defineProperty(t,"Picker",{enumerable:!0,get:function(){return _(m).default}});var f=o(67);function _(e){return e&&e.__esModule?e:{default:e}}Object.defineProperty(t,"NimblePicker",{enumerable:!0,get:function(){return _(f).default}})},function(e,t,o){var n=o(74);"string"==typeof n&&(n=[[e.i,n,""]]),n.locals&&(e.exports=n.locals),o(1)("42627c02",n,!1,{})},function(e,t,o){(e.exports=o(0)(!1)).push([e.i,"\n.emoji-mart-anchors[data-v-51188104] {\n display: -ms-flexbox;\n display: flex;\n -ms-flex-direction: row;\n flex-direction: row;\n -ms-flex-pack: justify;\n justify-content: space-between;\n padding: 0 6px;\n color: #858585;\n line-height: 0;\n}\n.emoji-mart-anchor[data-v-51188104] {\n position: relative;\n display: block;\n -ms-flex: 1 1 auto;\n flex: 1 1 auto;\n text-align: center;\n padding: 12px 4px;\n overflow: hidden;\n transition: color .1s ease-out;\n}\n.emoji-mart-anchor[data-v-51188104]:hover,\n.emoji-mart-anchor-selected[data-v-51188104] {\n color: #464646;\n}\n.emoji-mart-anchor-selected .emoji-mart-anchor-bar[data-v-51188104] {\n bottom: 0;\n}\n.emoji-mart-anchor-bar[data-v-51188104] {\n position: absolute;\n bottom: -3px; left: 0;\n width: 100%; height: 3px;\n background-color: #464646;\n}\n.emoji-mart-anchors i[data-v-51188104] {\n display: inline-block;\n width: 100%;\n max-width: 22px;\n}\n\n",""])},function(e,t){e.exports=function(e,t){for(var o=[],n={},i=0;i<t.length;i++){var r=t[i],a=r[0],l={id:e+":"+i,css:r[1],media:r[2],sourceMap:r[3]};n[a]?n[a].parts.push(l):o.push(n[a]={id:a,parts:[l]})}return o}},function(e,t,o){var n=o(77);"string"==typeof n&&(n=[[e.i,n,""]]),n.locals&&(e.exports=n.locals),o(1)("26752f80",n,!1,{})},function(e,t,o){(e.exports=o(0)(!1)).push([e.i,"\n.emoji-mart-anchors svg {\n fill: currentColor;\n max-height: 18px;\n}\n\n",""])},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default={activity:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><path d="M12 0C5.373 0 0 5.372 0 12c0 6.627 5.373 12 12 12 6.628 0 12-5.373 12-12 0-6.628-5.372-12-12-12m9.949 11H17.05c.224-2.527 1.232-4.773 1.968-6.113A9.966 9.966 0 0 1 21.949 11M13 11V2.051a9.945 9.945 0 0 1 4.432 1.564c-.858 1.491-2.156 4.22-2.392 7.385H13zm-2 0H8.961c-.238-3.165-1.536-5.894-2.393-7.385A9.95 9.95 0 0 1 11 2.051V11zm0 2v8.949a9.937 9.937 0 0 1-4.432-1.564c.857-1.492 2.155-4.221 2.393-7.385H11zm4.04 0c.236 3.164 1.534 5.893 2.392 7.385A9.92 9.92 0 0 1 13 21.949V13h2.04zM4.982 4.887C5.718 6.227 6.726 8.473 6.951 11h-4.9a9.977 9.977 0 0 1 2.931-6.113M2.051 13h4.9c-.226 2.527-1.233 4.771-1.969 6.113A9.972 9.972 0 0 1 2.051 13m16.967 6.113c-.735-1.342-1.744-3.586-1.968-6.113h4.899a9.961 9.961 0 0 1-2.931 6.113"/></svg>',custom:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><g transform="translate(2.000000, 1.000000)"><rect id="Rectangle" x="8" y="0" width="3" height="21" rx="1.5"></rect><rect id="Rectangle" transform="translate(9.843, 10.549) rotate(60) translate(-9.843, -10.549) " x="8.343" y="0.049" width="3" height="21" rx="1.5"></rect><rect id="Rectangle" transform="translate(9.843, 10.549) rotate(-60) translate(-9.843, -10.549) " x="8.343" y="0.049" width="3" height="21" rx="1.5"></rect></g></svg>',flags:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><path d="M0 0l6.084 24H8L1.916 0zM21 5h-4l-1-4H4l3 12h3l1 4h13L21 5zM6.563 3h7.875l2 8H8.563l-2-8zm8.832 10l-2.856 1.904L12.063 13h3.332zM19 13l-1.5-6h1.938l2 8H16l3-2z"/></svg>',foods:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><path d="M17 4.978c-1.838 0-2.876.396-3.68.934.513-1.172 1.768-2.934 4.68-2.934a1 1 0 0 0 0-2c-2.921 0-4.629 1.365-5.547 2.512-.064.078-.119.162-.18.244C11.73 1.838 10.798.023 9.207.023 8.579.022 7.85.306 7 .978 5.027 2.54 5.329 3.902 6.492 4.999 3.609 5.222 0 7.352 0 12.969c0 4.582 4.961 11.009 9 11.009 1.975 0 2.371-.486 3-1 .629.514 1.025 1 3 1 4.039 0 9-6.418 9-11 0-5.953-4.055-8-7-8M8.242 2.546c.641-.508.943-.523.965-.523.426.169.975 1.405 1.357 3.055-1.527-.629-2.741-1.352-2.98-1.846.059-.112.241-.356.658-.686M15 21.978c-1.08 0-1.21-.109-1.559-.402l-.176-.146c-.367-.302-.816-.452-1.266-.452s-.898.15-1.266.452l-.176.146c-.347.292-.477.402-1.557.402-2.813 0-7-5.389-7-9.009 0-5.823 4.488-5.991 5-5.991 1.939 0 2.484.471 3.387 1.251l.323.276a1.995 1.995 0 0 0 2.58 0l.323-.276c.902-.78 1.447-1.251 3.387-1.251.512 0 5 .168 5 6 0 3.617-4.187 9-7 9"/></svg>',nature:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><path d="M15.5 8a1.5 1.5 0 1 0 .001 3.001A1.5 1.5 0 0 0 15.5 8M8.5 8a1.5 1.5 0 1 0 .001 3.001A1.5 1.5 0 0 0 8.5 8"/><path d="M18.933 0h-.027c-.97 0-2.138.787-3.018 1.497-1.274-.374-2.612-.51-3.887-.51-1.285 0-2.616.133-3.874.517C7.245.79 6.069 0 5.093 0h-.027C3.352 0 .07 2.67.002 7.026c-.039 2.479.276 4.238 1.04 5.013.254.258.882.677 1.295.882.191 3.177.922 5.238 2.536 6.38.897.637 2.187.949 3.2 1.102C8.04 20.6 8 20.795 8 21c0 1.773 2.35 3 4 3 1.648 0 4-1.227 4-3 0-.201-.038-.393-.072-.586 2.573-.385 5.435-1.877 5.925-7.587.396-.22.887-.568 1.104-.788.763-.774 1.079-2.534 1.04-5.013C23.929 2.67 20.646 0 18.933 0M3.223 9.135c-.237.281-.837 1.155-.884 1.238-.15-.41-.368-1.349-.337-3.291.051-3.281 2.478-4.972 3.091-5.031.256.015.731.27 1.265.646-1.11 1.171-2.275 2.915-2.352 5.125-.133.546-.398.858-.783 1.313M12 22c-.901 0-1.954-.693-2-1 0-.654.475-1.236 1-1.602V20a1 1 0 1 0 2 0v-.602c.524.365 1 .947 1 1.602-.046.307-1.099 1-2 1m3-3.48v.02a4.752 4.752 0 0 0-1.262-1.02c1.092-.516 2.239-1.334 2.239-2.217 0-1.842-1.781-2.195-3.977-2.195-2.196 0-3.978.354-3.978 2.195 0 .883 1.148 1.701 2.238 2.217A4.8 4.8 0 0 0 9 18.539v-.025c-1-.076-2.182-.281-2.973-.842-1.301-.92-1.838-3.045-1.853-6.478l.023-.041c.496-.826 1.49-1.45 1.804-3.102 0-2.047 1.357-3.631 2.362-4.522C9.37 3.178 10.555 3 11.948 3c1.447 0 2.685.192 3.733.57 1 .9 2.316 2.465 2.316 4.48.313 1.651 1.307 2.275 1.803 3.102.035.058.068.117.102.178-.059 5.967-1.949 7.01-4.902 7.19m6.628-8.202c-.037-.065-.074-.13-.113-.195a7.587 7.587 0 0 0-.739-.987c-.385-.455-.648-.768-.782-1.313-.076-2.209-1.241-3.954-2.353-5.124.531-.376 1.004-.63 1.261-.647.636.071 3.044 1.764 3.096 5.031.027 1.81-.347 3.218-.37 3.235"/></svg>',objects:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><path d="M12 0a9 9 0 0 0-5 16.482V21s2.035 3 5 3 5-3 5-3v-4.518A9 9 0 0 0 12 0zm0 2c3.86 0 7 3.141 7 7s-3.14 7-7 7-7-3.141-7-7 3.14-7 7-7zM9 17.477c.94.332 1.946.523 3 .523s2.06-.19 3-.523v.834c-.91.436-1.925.689-3 .689a6.924 6.924 0 0 1-3-.69v-.833zm.236 3.07A8.854 8.854 0 0 0 12 21c.965 0 1.888-.167 2.758-.451C14.155 21.173 13.153 22 12 22c-1.102 0-2.117-.789-2.764-1.453z"/><path d="M14.745 12.449h-.004c-.852-.024-1.188-.858-1.577-1.824-.421-1.061-.703-1.561-1.182-1.566h-.009c-.481 0-.783.497-1.235 1.537-.436.982-.801 1.811-1.636 1.791l-.276-.043c-.565-.171-.853-.691-1.284-1.794-.125-.313-.202-.632-.27-.913-.051-.213-.127-.53-.195-.634C7.067 9.004 7.039 9 6.99 9A1 1 0 0 1 7 7h.01c1.662.017 2.015 1.373 2.198 2.134.486-.981 1.304-2.058 2.797-2.075 1.531.018 2.28 1.153 2.731 2.141l.002-.008C14.944 8.424 15.327 7 16.979 7h.032A1 1 0 1 1 17 9h-.011c-.149.076-.256.474-.319.709a6.484 6.484 0 0 1-.311.951c-.429.973-.79 1.789-1.614 1.789"/></svg>',people:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><path d="M12 0C5.373 0 0 5.373 0 12s5.373 12 12 12 12-5.373 12-12S18.627 0 12 0m0 22C6.486 22 2 17.514 2 12S6.486 2 12 2s10 4.486 10 10-4.486 10-10 10"/><path d="M8 7a2 2 0 1 0-.001 3.999A2 2 0 0 0 8 7M16 7a2 2 0 1 0-.001 3.999A2 2 0 0 0 16 7M15.232 15c-.693 1.195-1.87 2-3.349 2-1.477 0-2.655-.805-3.347-2H15m3-2H6a6 6 0 1 0 12 0"/></svg>',places:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><path d="M6.5 12C5.122 12 4 13.121 4 14.5S5.122 17 6.5 17 9 15.879 9 14.5 7.878 12 6.5 12m0 3c-.275 0-.5-.225-.5-.5s.225-.5.5-.5.5.225.5.5-.225.5-.5.5M17.5 12c-1.378 0-2.5 1.121-2.5 2.5s1.122 2.5 2.5 2.5 2.5-1.121 2.5-2.5-1.122-2.5-2.5-2.5m0 3c-.275 0-.5-.225-.5-.5s.225-.5.5-.5.5.225.5.5-.225.5-.5.5"/><path d="M22.482 9.494l-1.039-.346L21.4 9h.6c.552 0 1-.439 1-.992 0-.006-.003-.008-.003-.008H23c0-1-.889-2-1.984-2h-.642l-.731-1.717C19.262 3.012 18.091 2 16.764 2H7.236C5.909 2 4.738 3.012 4.357 4.283L3.626 6h-.642C1.889 6 1 7 1 8h.003S1 8.002 1 8.008C1 8.561 1.448 9 2 9h.6l-.043.148-1.039.346a2.001 2.001 0 0 0-1.359 2.097l.751 7.508a1 1 0 0 0 .994.901H3v1c0 1.103.896 2 2 2h2c1.104 0 2-.897 2-2v-1h6v1c0 1.103.896 2 2 2h2c1.104 0 2-.897 2-2v-1h1.096a.999.999 0 0 0 .994-.901l.751-7.508a2.001 2.001 0 0 0-1.359-2.097M6.273 4.857C6.402 4.43 6.788 4 7.236 4h9.527c.448 0 .834.43.963.857L19.313 9H4.688l1.585-4.143zM7 21H5v-1h2v1zm12 0h-2v-1h2v1zm2.189-3H2.811l-.662-6.607L3 11h18l.852.393L21.189 18z"/></svg>',recent:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><path d="M13 4h-2l-.001 7H9v2h2v2h2v-2h4v-2h-4z"/><path d="M12 0C5.373 0 0 5.373 0 12s5.373 12 12 12 12-5.373 12-12S18.627 0 12 0m0 22C6.486 22 2 17.514 2 12S6.486 2 12 2s10 4.486 10 10-4.486 10-10 10"/></svg>',symbols:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><path d="M0 0h11v2H0zM4 11h3V6h4V4H0v2h4zM15.5 17c1.381 0 2.5-1.116 2.5-2.493s-1.119-2.493-2.5-2.493S13 13.13 13 14.507 14.119 17 15.5 17m0-2.986c.276 0 .5.222.5.493 0 .272-.224.493-.5.493s-.5-.221-.5-.493.224-.493.5-.493M21.5 19.014c-1.381 0-2.5 1.116-2.5 2.493S20.119 24 21.5 24s2.5-1.116 2.5-2.493-1.119-2.493-2.5-2.493m0 2.986a.497.497 0 0 1-.5-.493c0-.271.224-.493.5-.493s.5.222.5.493a.497.497 0 0 1-.5.493M22 13l-9 9 1.513 1.5 8.99-9.009zM17 11c2.209 0 4-1.119 4-2.5V2s.985-.161 1.498.949C23.01 4.055 23 6 23 6s1-1.119 1-3.135C24-.02 21 0 21 0h-2v6.347A5.853 5.853 0 0 0 17 6c-2.209 0-4 1.119-4 2.5s1.791 2.5 4 2.5M10.297 20.482l-1.475-1.585a47.54 47.54 0 0 1-1.442 1.129c-.307-.288-.989-1.016-2.045-2.183.902-.836 1.479-1.466 1.729-1.892s.376-.871.376-1.336c0-.592-.273-1.178-.818-1.759-.546-.581-1.329-.871-2.349-.871-1.008 0-1.79.293-2.344.879-.556.587-.832 1.181-.832 1.784 0 .813.419 1.748 1.256 2.805-.847.614-1.444 1.208-1.794 1.784a3.465 3.465 0 0 0-.523 1.833c0 .857.308 1.56.924 2.107.616.549 1.423.823 2.42.823 1.173 0 2.444-.379 3.813-1.137L8.235 24h2.819l-2.09-2.383 1.333-1.135zm-6.736-6.389a1.02 1.02 0 0 1 .73-.286c.31 0 .559.085.747.254a.849.849 0 0 1 .283.659c0 .518-.419 1.112-1.257 1.784-.536-.651-.805-1.231-.805-1.742a.901.901 0 0 1 .302-.669M3.74 22c-.427 0-.778-.116-1.057-.349-.279-.232-.418-.487-.418-.766 0-.594.509-1.288 1.527-2.083.968 1.134 1.717 1.946 2.248 2.438-.921.507-1.686.76-2.3.76"/></svg>'}},function(e,t,o){"use strict";var n=function(){var e=this,t=e.$createElement,o=e._self._c||t;return o("div",{staticClass:"emoji-mart-anchors"},e._l(e.categories,(function(t){return o("span",{key:t.id,class:{"emoji-mart-anchor":!0,"emoji-mart-anchor-selected":t.id==e.activeCategory.id},style:{color:t.id==e.activeCategory.id?e.color:""},attrs:{title:e.i18n.categories[t.id]},on:{click:function(o){e.$emit("click",t)}}},[o("div",{domProps:{innerHTML:e._s(e.svgs[t.id])}}),e._v(" "),o("span",{staticClass:"emoji-mart-anchor-bar",style:{backgroundColor:e.color}})])})))};n._withStripped=!0;var i={render:n,staticRenderFns:[]};t.a=i},function(e,t,o){var n=o(81);"string"==typeof n&&(n=[[e.i,n,""]]),n.locals&&(e.exports=n.locals),o(1)("098a12ee",n,!1,{})},function(e,t,o){(e.exports=o(0)(!1)).push([e.i,'\n.emoji-mart-category[data-v-376cda0e] {\n position: relative;\n}\n.emoji-mart-category-label[data-v-376cda0e] {\n position: -webkit-sticky;\n position: sticky;\n top: 0;\n}\n.emoji-mart-category .emoji-mart-emoji[data-v-376cda0e]:before {\n z-index: 0;\n content: "";\n position: absolute;\n top: 0; left: 0;\n width: 100%; height: 100%;\n background-color: #f4f4f4;\n border-radius: 100%;\n opacity: 0;\n}\n.emoji-mart-category .emoji-mart-emoji[data-v-376cda0e]:hover:before {\n opacity: 1;\n}\n.emoji-mart-category-label[data-v-376cda0e] {\n z-index: 2;\n position: relative;\n position: -webkit-sticky;\n position: sticky;\n top: 0;\n}\n.emoji-mart-category-label span[data-v-376cda0e] {\n display: block;\n width: 100%;\n font-weight: 500;\n padding: 5px 6px;\n background-color: #fff;\n background-color: rgba(255, 255, 255, .95);\n}\n.emoji-mart-no-results[data-v-376cda0e] {\n font-size: 14px;\n text-align: center;\n padding-top: 70px;\n color: #858585;\n}\n.emoji-mart-no-results .emoji-mart-category-label[data-v-376cda0e] {\n display: none;\n}\n.emoji-mart-no-results .emoji-mart-no-results-label[data-v-376cda0e] {\n margin-top: .2em;\n}\n.emoji-mart-no-results .emoji-mart-emoji[data-v-376cda0e]:hover:before {\n content: none;\n}\n\n',""])},function(e,t,o){var n=o(83);"string"==typeof n&&(n=[[e.i,n,""]]),n.locals&&(e.exports=n.locals),o(1)("711019be",n,!1,{})},function(e,t,o){(e.exports=o(0)(!1)).push([e.i,"\n.emoji-mart-category .emoji-mart-emoji span {\n z-index: 1;\n position: relative;\n text-align: center;\n cursor: default;\n}\n\n",""])},function(e,t,o){var n=o(85);"string"==typeof n&&(n=[[e.i,n,""]]),n.locals&&(e.exports=n.locals),o(1)("64dbedc1",n,!1,{})},function(e,t,o){(e.exports=o(0)(!1)).push([e.i,"\n.emoji-mart-emoji[data-v-7f853594] {\n position: relative;\n display: inline-block;\n font-size: 0;\n}\n\n",""])},function(e,t,o){"use strict";t.__esModule=!0;var n=a(o(87)),i=a(o(100)),r="function"==typeof i.default&&"symbol"==typeof n.default?function(e){return typeof e}:function(e){return e&&"function"==typeof i.default&&e.constructor===i.default&&e!==i.default.prototype?"symbol":typeof e};function a(e){return e&&e.__esModule?e:{default:e}}t.default="function"==typeof i.default&&"symbol"===r(n.default)?function(e){return void 0===e?"undefined":r(e)}:function(e){return e&&"function"==typeof i.default&&e.constructor===i.default&&e!==i.default.prototype?"symbol":void 0===e?"undefined":r(e)}},function(e,t,o){e.exports={default:o(88),__esModule:!0}},function(e,t,o){o(26),o(56),e.exports=o(36).f("iterator")},function(e,t,o){var n=o(27),i=o(28);e.exports=function(e){return function(t,o){var r,a,l=String(i(t)),s=n(o),d=l.length;return s<0||s>=d?e?"":void 0:(r=l.charCodeAt(s))<55296||r>56319||s+1===d||(a=l.charCodeAt(s+1))<56320||a>57343?e?l.charAt(s):r:e?l.slice(s,s+2):a-56320+(r-55296<<10)+65536}}},function(e,t){e.exports=function(e){if("function"!=typeof e)throw TypeError(e+" is not a function!");return e}},function(e,t,o){"use strict";var n=o(52),i=o(15),r=o(35),a={};o(8)(a,o(2)("iterator"),(function(){return this})),e.exports=function(e,t,o){e.prototype=n(a,{next:i(1,o)}),r(e,t+" Iterator")}},function(e,t,o){var n=o(6),i=o(9),r=o(17);e.exports=o(10)?Object.defineProperties:function(e,t){i(e);for(var o,a=r(t),l=a.length,s=0;l>s;)n.f(e,o=a[s++],t[o]);return e}},function(e,t,o){var n=o(12),i=o(55),r=o(94);e.exports=function(e){return function(t,o,a){var l,s=n(t),d=i(s.length),m=r(a,d);if(e&&o!=o){for(;d>m;)if((l=s[m++])!=l)return!0}else for(;d>m;m++)if((e||m in s)&&s[m]===o)return e||m||0;return!e&&-1}}},function(e,t,o){var n=o(27),i=Math.max,r=Math.min;e.exports=function(e,t){return(e=n(e))<0?i(e+t,0):r(e,t)}},function(e,t,o){var n=o(5).document;e.exports=n&&n.documentElement},function(e,t,o){var n=o(7),i=o(22),r=o(32)("IE_PROTO"),a=Object.prototype;e.exports=Object.getPrototypeOf||function(e){return e=i(e),n(e,r)?e[r]:"function"==typeof e.constructor&&e instanceof e.constructor?e.constructor.prototype:e instanceof Object?a:null}},function(e,t,o){"use strict";var n=o(98),i=o(99),r=o(16),a=o(12);e.exports=o(47)(Array,"Array",(function(e,t){this._t=a(e),this._i=0,this._k=t}),(function(){var e=this._t,t=this._k,o=this._i++;return!e||o>=e.length?(this._t=void 0,i(1)):i(0,"keys"==t?o:"values"==t?e[o]:[o,e[o]])}),"values"),r.Arguments=r.Array,n("keys"),n("values"),n("entries")},function(e,t){e.exports=function(){}},function(e,t){e.exports=function(e,t){return{value:t,done:!!e}}},function(e,t,o){e.exports={default:o(101),__esModule:!0}},function(e,t,o){o(102),o(108),o(109),o(110),e.exports=o(4).Symbol},function(e,t,o){"use strict";var n=o(5),i=o(7),r=o(10),a=o(13),l=o(51),s=o(103).KEY,d=o(11),m=o(33),f=o(35),_=o(21),c=o(2),g=o(36),p=o(37),u=o(104),h=o(105),b=o(9),x=o(14),y=o(12),w=o(30),v=o(15),F=o(52),k=o(106),j=o(107),C=o(6),D=o(17),E=j.f,A=C.f,S=k.f,T=n.Symbol,M=n.JSON,q=M&&M.stringify,z=c("_hidden"),B=c("toPrimitive"),N={}.propertyIsEnumerable,O=m("symbol-registry"),P=m("symbols"),I=m("op-symbols"),R=Object.prototype,L="function"==typeof T,U=n.QObject,G=!U||!U.prototype||!U.prototype.findChild,K=r&&d((function(){return 7!=F(A({},"a",{get:function(){return A(this,"a",{value:7}).a}})).a}))?function(e,t,o){var n=E(R,t);n&&delete R[t],A(e,t,o),n&&e!==R&&A(R,t,n)}:A,W=function(e){var t=P[e]=F(T.prototype);return t._k=e,t},V=L&&"symbol"==typeof T.iterator?function(e){return"symbol"==typeof e}:function(e){return e instanceof T},H=function(e,t,o){return e===R&&H(I,t,o),b(e),t=w(t,!0),b(o),i(P,t)?(o.enumerable?(i(e,z)&&e[z][t]&&(e[z][t]=!1),o=F(o,{enumerable:v(0,!1)})):(i(e,z)||A(e,z,v(1,{})),e[z][t]=!0),K(e,t,o)):A(e,t,o)},Y=function(e,t){b(e);for(var o,n=u(t=y(t)),i=0,r=n.length;r>i;)H(e,o=n[i++],t[o]);return e},Q=function(e){var t=N.call(this,e=w(e,!0));return!(this===R&&i(P,e)&&!i(I,e))&&(!(t||!i(this,e)||!i(P,e)||i(this,z)&&this[z][e])||t)},Z=function(e,t){if(e=y(e),t=w(t,!0),e!==R||!i(P,t)||i(I,t)){var o=E(e,t);return!o||!i(P,t)||i(e,z)&&e[z][t]||(o.enumerable=!0),o}},J=function(e){for(var t,o=S(y(e)),n=[],r=0;o.length>r;)i(P,t=o[r++])||t==z||t==s||n.push(t);return n},X=function(e){for(var t,o=e===R,n=S(o?I:y(e)),r=[],a=0;n.length>a;)!i(P,t=n[a++])||o&&!i(R,t)||r.push(P[t]);return r};L||(l((T=function(){if(this instanceof T)throw TypeError("Symbol is not a constructor!");var e=_(arguments.length>0?arguments[0]:void 0),t=function(o){this===R&&t.call(I,o),i(this,z)&&i(this[z],e)&&(this[z][e]=!1),K(this,e,v(1,o))};return r&&G&&K(R,e,{configurable:!0,set:t}),W(e)}).prototype,"toString",(function(){return this._k})),j.f=Z,C.f=H,o(57).f=k.f=J,o(23).f=Q,o(38).f=X,r&&!o(29)&&l(R,"propertyIsEnumerable",Q,!0),g.f=function(e){return W(c(e))}),a(a.G+a.W+a.F*!L,{Symbol:T});for(var $="hasInstance,isConcatSpreadable,iterator,match,replace,search,species,split,toPrimitive,toStringTag,unscopables".split(","),ee=0;$.length>ee;)c($[ee++]);for(var te=D(c.store),oe=0;te.length>oe;)p(te[oe++]);a(a.S+a.F*!L,"Symbol",{for:function(e){return i(O,e+="")?O[e]:O[e]=T(e)},keyFor:function(e){if(!V(e))throw TypeError(e+" is not a symbol!");for(var t in O)if(O[t]===e)return t},useSetter:function(){G=!0},useSimple:function(){G=!1}}),a(a.S+a.F*!L,"Object",{create:function(e,t){return void 0===t?F(e):Y(F(e),t)},defineProperty:H,defineProperties:Y,getOwnPropertyDescriptor:Z,getOwnPropertyNames:J,getOwnPropertySymbols:X}),M&&a(a.S+a.F*(!L||d((function(){var e=T();return"[null]"!=q([e])||"{}"!=q({a:e})||"{}"!=q(Object(e))}))),"JSON",{stringify:function(e){for(var t,o,n=[e],i=1;arguments.length>i;)n.push(arguments[i++]);if(o=t=n[1],(x(t)||void 0!==e)&&!V(e))return h(t)||(t=function(e,t){if("function"==typeof o&&(t=o.call(this,e,t)),!V(t))return t}),n[1]=t,q.apply(M,n)}}),T.prototype[B]||o(8)(T.prototype,B,T.prototype.valueOf),f(T,"Symbol"),f(Math,"Math",!0),f(n.JSON,"JSON",!0)},function(e,t,o){var n=o(21)("meta"),i=o(14),r=o(7),a=o(6).f,l=0,s=Object.isExtensible||function(){return!0},d=!o(11)((function(){return s(Object.preventExtensions({}))})),m=function(e){a(e,n,{value:{i:"O"+ ++l,w:{}}})},f=e.exports={KEY:n,NEED:!1,fastKey:function(e,t){if(!i(e))return"symbol"==typeof e?e:("string"==typeof e?"S":"P")+e;if(!r(e,n)){if(!s(e))return"F";if(!t)return"E";m(e)}return e[n].i},getWeak:function(e,t){if(!r(e,n)){if(!s(e))return!0;if(!t)return!1;m(e)}return e[n].w},onFreeze:function(e){return d&&f.NEED&&s(e)&&!r(e,n)&&m(e),e}}},function(e,t,o){var n=o(17),i=o(38),r=o(23);e.exports=function(e){var t=n(e),o=i.f;if(o)for(var a,l=o(e),s=r.f,d=0;l.length>d;)s.call(e,a=l[d++])&&t.push(a);return t}},function(e,t,o){var n=o(31);e.exports=Array.isArray||function(e){return"Array"==n(e)}},function(e,t,o){var n=o(12),i=o(57).f,r={}.toString,a="object"==typeof window&&window&&Object.getOwnPropertyNames?Object.getOwnPropertyNames(window):[];e.exports.f=function(e){return a&&"[object Window]"==r.call(e)?function(e){try{return i(e)}catch(e){return a.slice()}}(e):i(n(e))}},function(e,t,o){var n=o(23),i=o(15),r=o(12),a=o(30),l=o(7),s=o(49),d=Object.getOwnPropertyDescriptor;t.f=o(10)?d:function(e,t){if(e=r(e),t=a(t,!0),s)try{return d(e,t)}catch(e){}if(l(e,t))return i(!n.f.call(e,t),e[t])}},function(e,t){},function(e,t,o){o(37)("asyncIterator")},function(e,t,o){o(37)("observable")},function(e,t,o){e.exports={default:o(112),__esModule:!0}},function(e,t,o){o(113),e.exports=o(4).Object.keys},function(e,t,o){var n=o(22),i=o(17);o(114)("keys",(function(){return function(e){return i(n(e))}}))},function(e,t,o){var n=o(13),i=o(4),r=o(11);e.exports=function(e,t){var o=(i.Object||{})[e]||Object[e],a={};a[e]=t(o),n(n.S+n.F*r((function(){o(1)})),"Object",a)}},function(e,t,o){o(116),e.exports=o(4).Object.assign},function(e,t,o){var n=o(13);n(n.S+n.F,"Object",{assign:o(117)})},function(e,t,o){"use strict";var n=o(17),i=o(38),r=o(23),a=o(22),l=o(54),s=Object.assign;e.exports=!s||o(11)((function(){var e={},t={},o=Symbol(),n="abcdefghijklmnopqrst";return e[o]=7,n.split("").forEach((function(e){t[e]=e})),7!=s({},e)[o]||Object.keys(s({},t)).join("")!=n}))?function(e,t){for(var o=a(e),s=arguments.length,d=1,m=i.f,f=r.f;s>d;)for(var _,c=l(arguments[d++]),g=m?n(c).concat(m(c)):n(c),p=g.length,u=0;p>u;)f.call(c,_=g[u++])&&(o[_]=c[_]);return o}:s},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var n=String;t.default=n.fromCodePoint||function(){var e,t,o=16384,n=[],i=-1,r=arguments.length;if(!r)return"";for(var a="";++i<r;){var l=Number(arguments[i]);if(!isFinite(l)||l<0||l>1114111||Math.floor(l)!=l)throw RangeError("Invalid code point: "+l);l<=65535?n.push(l):(e=55296+((l-=65536)>>10),t=l%1024+56320,n.push(e,t)),(i+1===r||n.length>o)&&(a+=String.fromCharCode.apply(null,n),n.length=0)}return a}},function(e,t,o){"use strict";var n=function(){var e=this,t=e.$createElement,o=e._self._c||t;return e.canRender?o("span",{staticClass:"emoji-mart-emoji",on:{mouseenter:e.onMouseEnter,mouseleave:e.onMouseLeave,click:e.onClick}},[e.isCustom?o("span",{style:e.customEmojiStyles,attrs:{title:e.title}}):e.isNative?o("span",{style:e.nativeEmojiStyles,attrs:{title:e.title}},[e._v(e._s(e.nativeEmoji))]):e.hasEmoji?o("span",{style:e.fallbackEmojiStyles,attrs:{title:e.title}}):o("span",[e._v(e._s(e.fallbackEmoji))])]):e._e()};n._withStripped=!0;var i={render:n,staticRenderFns:[]};t.a=i},function(e,t,o){"use strict";var n=function(){var e=this,t=e.$createElement,o=e._self._c||t;return e.isVisible&&(e.isSearch||e.hasResults)?o("div",{class:{"emoji-mart-category":!0,"emoji-mart-no-results":!e.hasResults}},[o("div",{staticClass:"emoji-mart-category-label"},[o("span",[e._v(e._s(e.i18n.categories[e.id]))])]),e._v(" "),e._l(e.emojis,(function(t){return o("nimble-emoji",{key:t.id||t,attrs:{data:e.data,emoji:t,native:e.emojiProps.native,skin:e.emojiProps.skin,set:e.emojiProps.set,size:e.emojiProps.size,"sheet-size":e.emojiProps.sheetSize,"force-size":e.emojiProps.forceSize,tooltip:e.emojiProps.tooltip,"background-image-fn":e.emojiProps.backgroundImageFn},on:{click:e.emojiProps.onClick,mouseenter:e.emojiProps.onEnter,mouseleave:e.emojiProps.onLeave}})})),e._v(" "),e.hasResults?e._e():o("div",[o("nimble-emoji",{attrs:{data:e.data,size:e.emojiProps.size,emoji:"sleuth_or_spy",native:e.emojiProps.native,skin:e.emojiProps.skin,set:e.emojiProps.set,"sheet-size":e.emojiProps.sheetSize,"background-image-fn":e.emojiProps.backgroundImageFn}}),e._v(" "),o("div",{staticClass:"emoji-mart-no-results-label"},[e._v(e._s(e.i18n.notfound))])],1)],2):e._e()};n._withStripped=!0;var i={render:n,staticRenderFns:[]};t.a=i},function(e,t,o){var n=o(122);"string"==typeof n&&(n=[[e.i,n,""]]),n.locals&&(e.exports=n.locals),o(1)("648f661a",n,!1,{})},function(e,t,o){(e.exports=o(0)(!1)).push([e.i,"\n.emoji-mart-preview[data-v-35056c30] {\n position: relative;\n height: 70px;\n}\n.emoji-mart-preview-emoji[data-v-35056c30],\n.emoji-mart-preview-data[data-v-35056c30],\n.emoji-mart-preview-skins[data-v-35056c30] {\n position: absolute;\n top: 50%;\n -ms-transform: translateY(-50%);\n transform: translateY(-50%);\n}\n.emoji-mart-preview-emoji[data-v-35056c30] {\n left: 12px;\n}\n.emoji-mart-preview-data[data-v-35056c30] {\n left: 68px; right: 12px;\n word-break: break-all;\n}\n.emoji-mart-preview-skins[data-v-35056c30] {\n right: 30px;\n text-align: right;\n}\n.emoji-mart-preview-name[data-v-35056c30] {\n font-size: 14px;\n}\n.emoji-mart-preview-shortname[data-v-35056c30] {\n font-size: 12px;\n color: #888;\n}\n.emoji-mart-preview-shortname + .emoji-mart-preview-shortname[data-v-35056c30],\n.emoji-mart-preview-shortname + .emoji-mart-preview-emoticon[data-v-35056c30],\n.emoji-mart-preview-emoticon + .emoji-mart-preview-emoticon[data-v-35056c30] {\n margin-left: .5em;\n}\n.emoji-mart-preview-emoticon[data-v-35056c30] {\n font-size: 11px;\n color: #bbb;\n}\n.emoji-mart-title span[data-v-35056c30] {\n display: inline-block;\n vertical-align: middle;\n}\n.emoji-mart-title .emoji-mart-emoji[data-v-35056c30] {\n padding: 0;\n}\n.emoji-mart-title-label[data-v-35056c30] {\n color: #999A9C;\n font-size: 21px;\n font-weight: 300;\n}\n\n",""])},function(e,t,o){var n=o(124);"string"==typeof n&&(n=[[e.i,n,""]]),n.locals&&(e.exports=n.locals),o(1)("2b486c2e",n,!1,{})},function(e,t,o){(e.exports=o(0)(!1)).push([e.i,'\n.emoji-mart-skin-swatches[data-v-1c614894] {\n font-size: 0;\n padding: 2px 0;\n border: 1px solid #d9d9d9;\n border-radius: 12px;\n background-color: #fff;\n}\n.emoji-mart-skin-swatches-opened .emoji-mart-skin-swatch[data-v-1c614894] {\n width: 16px;\n padding: 0 2px;\n}\n.emoji-mart-skin-swatches-opened .emoji-mart-skin-swatch-selected[data-v-1c614894]:after {\n opacity: .75;\n}\n.emoji-mart-skin-swatch[data-v-1c614894] {\n display: inline-block;\n width: 0;\n vertical-align: middle;\n transition-property: width, padding;\n transition-duration: .125s;\n transition-timing-function: ease-out;\n}\n.emoji-mart-skin-swatch[data-v-1c614894]:nth-child(1) { transition-delay: 0s\n}\n.emoji-mart-skin-swatch[data-v-1c614894]:nth-child(2) { transition-delay: .03s\n}\n.emoji-mart-skin-swatch[data-v-1c614894]:nth-child(3) { transition-delay: .06s\n}\n.emoji-mart-skin-swatch[data-v-1c614894]:nth-child(4) { transition-delay: .09s\n}\n.emoji-mart-skin-swatch[data-v-1c614894]:nth-child(5) { transition-delay: .12s\n}\n.emoji-mart-skin-swatch[data-v-1c614894]:nth-child(6) { transition-delay: .15s\n}\n.emoji-mart-skin-swatch-selected[data-v-1c614894] {\n position: relative;\n width: 16px;\n padding: 0 2px;\n}\n.emoji-mart-skin-swatch-selected[data-v-1c614894]:after {\n content: "";\n position: absolute;\n top: 50%; left: 50%;\n width: 4px; height: 4px;\n margin: -2px 0 0 -2px;\n background-color: #fff;\n border-radius: 100%;\n pointer-events: none;\n opacity: 0;\n transition: opacity .2s ease-out;\n}\n.emoji-mart-skin[data-v-1c614894] {\n display: inline-block;\n width: 100%; padding-top: 100%;\n max-width: 12px;\n border-radius: 100%;\n}\n.emoji-mart-skin-tone-1[data-v-1c614894] { background-color: #ffc93a\n}\n.emoji-mart-skin-tone-2[data-v-1c614894] { background-color: #fadcbc\n}\n.emoji-mart-skin-tone-3[data-v-1c614894] { background-color: #e0bb95\n}\n.emoji-mart-skin-tone-4[data-v-1c614894] { background-color: #bf8f68\n}\n.emoji-mart-skin-tone-5[data-v-1c614894] { background-color: #9b643d\n}\n.emoji-mart-skin-tone-6[data-v-1c614894] { background-color: #594539\n}\n\n',""])},function(e,t,o){"use strict";var n=function(){var e=this,t=e.$createElement,o=e._self._c||t;return o("div",{class:{"emoji-mart-skin-swatches":!0,"emoji-mart-skin-swatches-opened":e.opened}},e._l(6,(function(t){return o("span",{key:t,class:{"emoji-mart-skin-swatch":!0,"emoji-mart-skin-swatch-selected":e.skin==t}},[o("span",{class:"emoji-mart-skin emoji-mart-skin-tone-"+t,on:{click:function(o){e.onClick(t)}}})])})))};n._withStripped=!0;var i={render:n,staticRenderFns:[]};t.a=i},function(e,t,o){"use strict";var n=function(){var e=this,t=e.$createElement,o=e._self._c||t;return o("div",{staticClass:"emoji-mart-preview"},[e.emoji?[o("div",{staticClass:"emoji-mart-preview-emoji"},[o("nimble-emoji",{attrs:{data:e.data,emoji:e.emoji,native:e.emojiProps.native,skin:e.emojiProps.skin,set:e.emojiProps.set,size:38,"sheet-size":e.emojiProps.sheetSize,"force-size":e.emojiProps.forceSize,"background-image-fn":e.emojiProps.backgroundImageFn}})],1),e._v(" "),o("div",{staticClass:"emoji-mart-preview-data"},[o("div",{staticClass:"emoji-mart-preview-name"},[e._v(e._s(e.emoji.name))]),e._v(" "),o("div",{staticClass:"emoji-mart-preview-shortnames"},e._l(e.emojiShortNames,(function(t){return o("span",{key:t,staticClass:"emoji-mart-preview-shortname"},[e._v(":"+e._s(t)+":")])}))),e._v(" "),o("div",{staticClass:"emoji-mart-preview-emoticons"},e._l(e.emojiEmoticons,(function(t){return o("span",{key:t,staticClass:"emoji-mart-preview-emoticon"},[e._v(e._s(t))])})))])]:[o("div",{staticClass:"emoji-mart-preview-emoji"},[o("nimble-emoji",{attrs:{data:e.data,emoji:e.idleEmoji,native:e.emojiProps.native,skin:e.emojiProps.skin,set:e.emojiProps.set,size:38,"sheet-size":e.emojiProps.sheetSize,"force-size":e.emojiProps.forceSize,"background-image-fn":e.emojiProps.backgroundImageFn}})],1),e._v(" "),o("div",{staticClass:"emoji-mart-preview-data"},[o("span",{staticClass:"emoji-mart-title-label"},[e._v(e._s(e.title))])]),e._v(" "),e.showSkinTones?o("div",{staticClass:"emoji-mart-preview-skins"},[o("skins",{attrs:{skin:e.skinProps.skin},on:{change:function(t){e.$emit("change",t)}}})],1):e._e()]],2)};n._withStripped=!0;var i={render:n,staticRenderFns:[]};t.a=i},function(e,t,o){var n=o(128);"string"==typeof n&&(n=[[e.i,n,""]]),n.locals&&(e.exports=n.locals),o(1)("0cd29f7e",n,!1,{})},function(e,t,o){(e.exports=o(0)(!1)).push([e.i,"\n.emoji-mart-search[data-v-4ad41bb8] {\n margin-top: 6px;\n padding: 0 6px;\n}\n.emoji-mart-search input[data-v-4ad41bb8] {\n font-size: 16px;\n display: block;\n width: 100%;\n padding: .2em .6em;\n border-radius: 25px;\n border: 1px solid #d9d9d9;\n outline: 0;\n}\n\n",""])},function(e,t,o){"use strict";t.__esModule=!0,t.default=function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var n=Object;t.default=function(){function e(e,t){for(var o=0;o<t.length;o++){var i=t[o];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),n.defineProperty(e,i.key,i)}}return function(t,o,n){return o&&e(t.prototype,o),n&&e(t,n),t}}()},function(e,t,o){"use strict";var n=function(){var e=this,t=e.$createElement,o=e._self._c||t;return o("div",{staticClass:"emoji-mart-search"},[o("input",{directives:[{name:"model",rawName:"v-model",value:e.value,expression:"value"}],attrs:{type:"text",placeholder:e.i18n.search},domProps:{value:e.value},on:{input:function(t){t.target.composing||(e.value=t.target.value)}}})])};n._withStripped=!0;var i={render:n,staticRenderFns:[]};t.a=i},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var n=o(65),i=o.n(n);for(var r in n)"default"!==r&&function(e){o.d(t,e,(function(){return n[e]}))}(r);var a=o(3)(i.a,null,!1,null,null,null);a.options.__file="src/components/emoji/emoji.vue",t.default=a.exports},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var n=o(66),i=o.n(n);for(var r in n)"default"!==r&&function(e){o.d(t,e,(function(){return n[e]}))}(r);var a=o(3)(i.a,null,!1,null,null,null);a.options.__file="src/components/picker/picker.vue",t.default=a.exports},function(e,t,o){var n=o(135);"string"==typeof n&&(n=[[e.i,n,""]]),n.locals&&(e.exports=n.locals),o(1)("211d331e",n,!1,{})},function(e,t,o){(e.exports=o(0)(!1)).push([e.i,"\n.emoji-mart,\n.emoji-mart * {\n box-sizing: border-box;\n line-height: 1.15;\n}\n.emoji-mart .emoji-mart-emoji {\n padding: 6px;\n}\n\n",""])},function(e,t,o){var n=o(137);"string"==typeof n&&(n=[[e.i,n,""]]),n.locals&&(e.exports=n.locals),o(1)("221719ca",n,!1,{})},function(e,t,o){(e.exports=o(0)(!1)).push([e.i,'\n.emoji-mart[data-v-7bc71df8] {\n font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;\n font-size: 16px;\n display: -ms-flexbox;\n display: flex;\n -ms-flex-direction: column;\n flex-direction: column;\n height: 420px;\n color: #222427;\n border: 1px solid #d9d9d9;\n border-radius: 5px;\n background: #fff;\n}\n.emoji-mart-bar[data-v-7bc71df8] {\n border: 0 solid #d9d9d9;\n}\n.emoji-mart-bar[data-v-7bc71df8]:first-child {\n border-bottom-width: 1px;\n border-top-left-radius: 5px;\n border-top-right-radius: 5px;\n}\n.emoji-mart-bar[data-v-7bc71df8]:last-child {\n border-top-width: 1px;\n border-bottom-left-radius: 5px;\n border-bottom-right-radius: 5px;\n}\n.emoji-mart-scroll[data-v-7bc71df8] {\n position: relative;\n overflow-y: scroll;\n -ms-flex: 1;\n flex: 1;\n padding: 0 6px 6px 6px;\n z-index: 0; /* Fix for rendering sticky positioned category labels on Chrome */\n will-change: transform; /* avoids "repaints on scroll" in mobile Chrome */\n -webkit-overflow-scrolling: touch;\n}\n\n',""])},function(e,t,o){"use strict";t.__esModule=!0;var n,i=o(139),r=(n=i)&&n.__esModule?n:{default:n};t.default=function(e){if(Array.isArray(e)){for(var t=0,o=Array(e.length);t<e.length;t++)o[t]=e[t];return o}return(0,r.default)(e)}},function(e,t,o){e.exports={default:o(140),__esModule:!0}},function(e,t,o){o(26),o(141),e.exports=o(4).Array.from},function(e,t,o){"use strict";var n=o(48),i=o(13),r=o(22),a=o(142),l=o(143),s=o(55),d=o(144),m=o(69);i(i.S+i.F*!o(146)((function(e){Array.from(e)})),"Array",{from:function(e){var t,o,i,f,_=r(e),c="function"==typeof this?this:Array,g=arguments.length,p=g>1?arguments[1]:void 0,u=void 0!==p,h=0,b=m(_);if(u&&(p=n(p,g>2?arguments[2]:void 0,2)),null==b||c==Array&&l(b))for(o=new c(t=s(_.length));t>h;h++)d(o,h,u?p(_[h],h):_[h]);else for(f=b.call(_),o=new c;!(i=f.next()).done;h++)d(o,h,u?a(f,p,[i.value,h],!0):i.value);return o.length=h,o}})},function(e,t,o){var n=o(9);e.exports=function(e,t,o,i){try{return i?t(n(o)[0],o[1]):t(o)}catch(t){var r=e.return;throw void 0!==r&&n(r.call(e)),t}}},function(e,t,o){var n=o(16),i=o(2)("iterator"),r=Array.prototype;e.exports=function(e){return void 0!==e&&(n.Array===e||r[i]===e)}},function(e,t,o){"use strict";var n=o(6),i=o(15);e.exports=function(e,t,o){t in e?n.f(e,t,i(0,o)):e[t]=o}},function(e,t,o){var n=o(31),i=o(2)("toStringTag"),r="Arguments"==n(function(){return arguments}());e.exports=function(e){var t,o,a;return void 0===e?"Undefined":null===e?"Null":"string"==typeof(o=function(e,t){try{return e[t]}catch(e){}}(t=Object(e),i))?o:r?n(t):"Object"==(a=n(t))&&"function"==typeof t.callee?"Arguments":a}},function(e,t,o){var n=o(2)("iterator"),i=!1;try{var r=[7][n]();r.return=function(){i=!0},Array.from(r,(function(){throw 2}))}catch(e){}e.exports=function(e,t){if(!t&&!i)return!1;var o=!1;try{var r=[7],a=r[n]();a.next=function(){return{done:o=!0}},r[n]=function(){return a},e(r)}catch(e){}return o}},function(e,t,o){e.exports={default:o(148),__esModule:!0}},function(e,t,o){o(56),o(26),e.exports=o(149)},function(e,t,o){var n=o(9),i=o(69);e.exports=o(4).getIterator=function(e){var t=i(e);if("function"!=typeof t)throw TypeError(e+" is not iterable!");return n(t.call(e))}},function(e,t,o){"use strict";"undefined"!=typeof window&&function(){for(var e=0,t=["ms","moz","webkit","o"],o=0;o<t.length&&!window.requestAnimationFrame;++o)window.requestAnimationFrame=window[t[o]+"RequestAnimationFrame"],window.cancelAnimationFrame=window[t[o]+"CancelAnimationFrame"]||window[t[o]+"CancelRequestAnimationFrame"];window.requestAnimationFrame||(window.requestAnimationFrame=function(t,o){var n=(new Date).getTime(),i=Math.max(0,16-(n-e)),r=window.setTimeout((function(){t(n+i)}),i);return e=n+i,r}),window.cancelAnimationFrame||(window.cancelAnimationFrame=function(e){clearTimeout(e)})}()},function(e,t,o){"use strict";var n=function(){var e=this,t=e.$createElement,o=e._self._c||t;return o("div",{staticClass:"emoji-mart",style:e.customStyles},[e.showCategories?o("div",{staticClass:"emoji-mart-bar"},[o("anchors",{attrs:{data:e.mutableData,i18n:e.mutableI18n,color:e.color,categories:e.filteredCategories,"active-category":e.activeCategory},on:{click:e.onAnchorClick}})],1):e._e(),e._v(" "),e.showSearch?o("search",{ref:"search",attrs:{data:e.mutableData,i18n:e.mutableI18n,"emojis-to-show-filter":e.emojisToShowFilter,include:e.include,exclude:e.exclude,custom:e.customEmojis,recent:e.recentEmojis,"auto-focus":e.autoFocus},on:{search:e.onSearch}}):e._e(),e._v(" "),o("div",{ref:"scroll",staticClass:"emoji-mart-scroll",on:{scroll:e.onScroll}},[o("category",{directives:[{name:"show",rawName:"v-show",value:e.searchEmojis,expression:"searchEmojis"}],attrs:{data:e.mutableData,i18n:e.mutableI18n,id:"search",name:"Search",emojis:e.searchEmojis,"emoji-props":e.emojiProps}}),e._v(" "),e._l(e.filteredCategories,(function(t){return o("category",{directives:[{name:"show",rawName:"v-show",value:!e.searchEmojis&&(e.infiniteScroll||t==e.activeCategory),expression:"!searchEmojis && (infiniteScroll || category == activeCategory)"}],key:t.id,ref:"categories",refInFor:!0,attrs:{data:e.mutableData,i18n:e.mutableI18n,id:t.id,name:t.name,emojis:t.emojis,"emoji-props":e.emojiProps}})}))],2),e._v(" "),e.showPreview?o("div",{staticClass:"emoji-mart-bar"},[o("preview",{attrs:{data:e.mutableData,title:e.title,emoji:e.previewEmoji,"idle-emoji":e.emoji,"show-skin-tones":e.showSkinTones,"emoji-props":e.emojiProps,"skin-props":e.skinProps},on:{change:e.onSkinChange}})],1):e._e()],1)};n._withStripped=!0;var i={render:n,staticRenderFns:[]};t.a=i},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var n=i(o(40));function i(e){return e&&e.__esModule?e:{default:e}}var r=new(i(o(39)).default)(n.default),a=r.emojis,l=r.emoticons;t.default={search:function(){return r.search.apply(r,arguments)},emojis:a,emoticons:l}}])},e.exports=n()},function(e,t,o){(function(e){(function(t){"use strict";var o="undefined"!=typeof window?window:void 0!==e?e:"undefined"!=typeof self?self:{};function n(){throw new Error("Dynamic requires are not currently supported by rollup-plugin-commonjs")}var i=function(e,t){return e(t={exports:{}},t.exports),t.exports}((function(e,t){var i="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};
4
  * (c) 2014-2019 Evan You
5
  * Released under the MIT License.
6
  */
7
+ var n=Object.freeze({});function i(e){return null==e}function r(e){return null!=e}function a(e){return!0===e}function l(e){return"string"==typeof e||"number"==typeof e||"symbol"==typeof e||"boolean"==typeof e}function s(e){return null!==e&&"object"==typeof e}var d=Object.prototype.toString;function m(e){return"[object Object]"===d.call(e)}function f(e){return"[object RegExp]"===d.call(e)}function _(e){var t=parseFloat(String(e));return t>=0&&Math.floor(t)===t&&isFinite(e)}function c(e){return r(e)&&"function"==typeof e.then&&"function"==typeof e.catch}function g(e){return null==e?"":Array.isArray(e)||m(e)&&e.toString===d?JSON.stringify(e,null,2):String(e)}function p(e){var t=parseFloat(e);return isNaN(t)?e:t}function u(e,t){for(var o=Object.create(null),n=e.split(","),i=0;i<n.length;i++)o[n[i]]=!0;return t?function(e){return o[e.toLowerCase()]}:function(e){return o[e]}}u("slot,component",!0);var h=u("key,ref,slot,slot-scope,is");function b(e,t){if(e.length){var o=e.indexOf(t);if(o>-1)return e.splice(o,1)}}var x=Object.prototype.hasOwnProperty;function y(e,t){return x.call(e,t)}function w(e){var t=Object.create(null);return function(o){return t[o]||(t[o]=e(o))}}var v=/-(\w)/g,F=w((function(e){return e.replace(v,(function(e,t){return t?t.toUpperCase():""}))})),k=w((function(e){return e.charAt(0).toUpperCase()+e.slice(1)})),j=/\B([A-Z])/g,C=w((function(e){return e.replace(j,"-$1").toLowerCase()}));var E=Function.prototype.bind?function(e,t){return e.bind(t)}:function(e,t){function o(o){var n=arguments.length;return n?n>1?e.apply(t,arguments):e.call(t,o):e.call(t)}return o._length=e.length,o};function D(e,t){t=t||0;for(var o=e.length-t,n=new Array(o);o--;)n[o]=e[o+t];return n}function A(e,t){for(var o in t)e[o]=t[o];return e}function S(e){for(var t={},o=0;o<e.length;o++)e[o]&&A(t,e[o]);return t}function T(e,t,o){}var M=function(e,t,o){return!1},q=function(e){return e};function z(e,t){if(e===t)return!0;var o=s(e),n=s(t);if(!o||!n)return!o&&!n&&String(e)===String(t);try{var i=Array.isArray(e),r=Array.isArray(t);if(i&&r)return e.length===t.length&&e.every((function(e,o){return z(e,t[o])}));if(e instanceof Date&&t instanceof Date)return e.getTime()===t.getTime();if(i||r)return!1;var a=Object.keys(e),l=Object.keys(t);return a.length===l.length&&a.every((function(o){return z(e[o],t[o])}))}catch(e){return!1}}function B(e,t){for(var o=0;o<e.length;o++)if(z(e[o],t))return o;return-1}function O(e){var t=!1;return function(){t||(t=!0,e.apply(this,arguments))}}var N="data-server-rendered",P=["component","directive","filter"],I=["beforeCreate","created","beforeMount","mounted","beforeUpdate","updated","beforeDestroy","destroyed","activated","deactivated","errorCaptured","serverPrefetch"],R={optionMergeStrategies:Object.create(null),silent:!1,productionTip:!1,devtools:!1,performance:!1,errorHandler:null,warnHandler:null,ignoredElements:[],keyCodes:Object.create(null),isReservedTag:M,isReservedAttr:M,isUnknownElement:M,getTagNamespace:T,parsePlatformTagName:q,mustUseProp:M,async:!0,_lifecycleHooks:I},L=/a-zA-Z\u00B7\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u037D\u037F-\u1FFF\u200C-\u200D\u203F-\u2040\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD/;function U(e,t,o,n){Object.defineProperty(e,t,{value:o,enumerable:!!n,writable:!0,configurable:!0})}var G=new RegExp("[^"+L.source+".$_\\d]");var K,W="__proto__"in{},V="undefined"!=typeof window,H="undefined"!=typeof WXEnvironment&&!!WXEnvironment.platform,Y=H&&WXEnvironment.platform.toLowerCase(),Q=V&&window.navigator.userAgent.toLowerCase(),Z=Q&&/msie|trident/.test(Q),J=Q&&Q.indexOf("msie 9.0")>0,X=Q&&Q.indexOf("edge/")>0,$=(Q&&Q.indexOf("android"),Q&&/iphone|ipad|ipod|ios/.test(Q)||"ios"===Y),ee=(Q&&/chrome\/\d+/.test(Q),Q&&/phantomjs/.test(Q),Q&&Q.match(/firefox\/(\d+)/)),te={}.watch,oe=!1;if(V)try{var ne={};Object.defineProperty(ne,"passive",{get:function(){oe=!0}}),window.addEventListener("test-passive",null,ne)}catch(e){}var ie=function(){return void 0===K&&(K=!V&&!H&&void 0!==e&&(e.process&&"server"===e.process.env.VUE_ENV)),K},re=V&&window.__VUE_DEVTOOLS_GLOBAL_HOOK__;function ae(e){return"function"==typeof e&&/native code/.test(e.toString())}var le,se="undefined"!=typeof Symbol&&ae(Symbol)&&"undefined"!=typeof Reflect&&ae(Reflect.ownKeys);le="undefined"!=typeof Set&&ae(Set)?Set:function(){function e(){this.set=Object.create(null)}return e.prototype.has=function(e){return!0===this.set[e]},e.prototype.add=function(e){this.set[e]=!0},e.prototype.clear=function(){this.set=Object.create(null)},e}();var de=T,me=0,fe=function(){this.id=me++,this.subs=[]};fe.prototype.addSub=function(e){this.subs.push(e)},fe.prototype.removeSub=function(e){b(this.subs,e)},fe.prototype.depend=function(){fe.target&&fe.target.addDep(this)},fe.prototype.notify=function(){var e=this.subs.slice();for(var t=0,o=e.length;t<o;t++)e[t].update()},fe.target=null;var _e=[];function ce(e){_e.push(e),fe.target=e}function ge(){_e.pop(),fe.target=_e[_e.length-1]}var pe=function(e,t,o,n,i,r,a,l){this.tag=e,this.data=t,this.children=o,this.text=n,this.elm=i,this.ns=void 0,this.context=r,this.fnContext=void 0,this.fnOptions=void 0,this.fnScopeId=void 0,this.key=t&&t.key,this.componentOptions=a,this.componentInstance=void 0,this.parent=void 0,this.raw=!1,this.isStatic=!1,this.isRootInsert=!0,this.isComment=!1,this.isCloned=!1,this.isOnce=!1,this.asyncFactory=l,this.asyncMeta=void 0,this.isAsyncPlaceholder=!1},ue={child:{configurable:!0}};ue.child.get=function(){return this.componentInstance},Object.defineProperties(pe.prototype,ue);var he=function(e){void 0===e&&(e="");var t=new pe;return t.text=e,t.isComment=!0,t};function be(e){return new pe(void 0,void 0,void 0,String(e))}function xe(e){var t=new pe(e.tag,e.data,e.children&&e.children.slice(),e.text,e.elm,e.context,e.componentOptions,e.asyncFactory);return t.ns=e.ns,t.isStatic=e.isStatic,t.key=e.key,t.isComment=e.isComment,t.fnContext=e.fnContext,t.fnOptions=e.fnOptions,t.fnScopeId=e.fnScopeId,t.asyncMeta=e.asyncMeta,t.isCloned=!0,t}var ye=Array.prototype,we=Object.create(ye);["push","pop","shift","unshift","splice","sort","reverse"].forEach((function(e){var t=ye[e];U(we,e,(function(){for(var o=[],n=arguments.length;n--;)o[n]=arguments[n];var i,r=t.apply(this,o),a=this.__ob__;switch(e){case"push":case"unshift":i=o;break;case"splice":i=o.slice(2)}return i&&a.observeArray(i),a.dep.notify(),r}))}));var ve=Object.getOwnPropertyNames(we),Fe=!0;function ke(e){Fe=e}var je=function(e){this.value=e,this.dep=new fe,this.vmCount=0,U(e,"__ob__",this),Array.isArray(e)?(W?function(e,t){e.__proto__=t}(e,we):function(e,t,o){for(var n=0,i=o.length;n<i;n++){var r=o[n];U(e,r,t[r])}}(e,we,ve),this.observeArray(e)):this.walk(e)};function Ce(e,t){var o;if(s(e)&&!(e instanceof pe))return y(e,"__ob__")&&e.__ob__ instanceof je?o=e.__ob__:Fe&&!ie()&&(Array.isArray(e)||m(e))&&Object.isExtensible(e)&&!e._isVue&&(o=new je(e)),t&&o&&o.vmCount++,o}function Ee(e,t,o,n,i){var r=new fe,a=Object.getOwnPropertyDescriptor(e,t);if(!a||!1!==a.configurable){var l=a&&a.get,s=a&&a.set;l&&!s||2!==arguments.length||(o=e[t]);var d=!i&&Ce(o);Object.defineProperty(e,t,{enumerable:!0,configurable:!0,get:function(){var t=l?l.call(e):o;return fe.target&&(r.depend(),d&&(d.dep.depend(),Array.isArray(t)&&function e(t){for(var o=void 0,n=0,i=t.length;n<i;n++)(o=t[n])&&o.__ob__&&o.__ob__.dep.depend(),Array.isArray(o)&&e(o)}(t))),t},set:function(t){var n=l?l.call(e):o;t===n||t!=t&&n!=n||l&&!s||(s?s.call(e,t):o=t,d=!i&&Ce(t),r.notify())}})}}function De(e,t,o){if(Array.isArray(e)&&_(t))return e.length=Math.max(e.length,t),e.splice(t,1,o),o;if(t in e&&!(t in Object.prototype))return e[t]=o,o;var n=e.__ob__;return e._isVue||n&&n.vmCount?o:n?(Ee(n.value,t,o),n.dep.notify(),o):(e[t]=o,o)}function Ae(e,t){if(Array.isArray(e)&&_(t))e.splice(t,1);else{var o=e.__ob__;e._isVue||o&&o.vmCount||y(e,t)&&(delete e[t],o&&o.dep.notify())}}je.prototype.walk=function(e){for(var t=Object.keys(e),o=0;o<t.length;o++)Ee(e,t[o])},je.prototype.observeArray=function(e){for(var t=0,o=e.length;t<o;t++)Ce(e[t])};var Se=R.optionMergeStrategies;function Te(e,t){if(!t)return e;for(var o,n,i,r=se?Reflect.ownKeys(t):Object.keys(t),a=0;a<r.length;a++)"__ob__"!==(o=r[a])&&(n=e[o],i=t[o],y(e,o)?n!==i&&m(n)&&m(i)&&Te(n,i):De(e,o,i));return e}function Me(e,t,o){return o?function(){var n="function"==typeof t?t.call(o,o):t,i="function"==typeof e?e.call(o,o):e;return n?Te(n,i):i}:t?e?function(){return Te("function"==typeof t?t.call(this,this):t,"function"==typeof e?e.call(this,this):e)}:t:e}function qe(e,t){var o=t?e?e.concat(t):Array.isArray(t)?t:[t]:e;return o?function(e){for(var t=[],o=0;o<e.length;o++)-1===t.indexOf(e[o])&&t.push(e[o]);return t}(o):o}function ze(e,t,o,n){var i=Object.create(e||null);return t?A(i,t):i}Se.data=function(e,t,o){return o?Me(e,t,o):t&&"function"!=typeof t?e:Me(e,t)},I.forEach((function(e){Se[e]=qe})),P.forEach((function(e){Se[e+"s"]=ze})),Se.watch=function(e,t,o,n){if(e===te&&(e=void 0),t===te&&(t=void 0),!t)return Object.create(e||null);if(!e)return t;var i={};for(var r in A(i,e),t){var a=i[r],l=t[r];a&&!Array.isArray(a)&&(a=[a]),i[r]=a?a.concat(l):Array.isArray(l)?l:[l]}return i},Se.props=Se.methods=Se.inject=Se.computed=function(e,t,o,n){if(!e)return t;var i=Object.create(null);return A(i,e),t&&A(i,t),i},Se.provide=Me;var Be=function(e,t){return void 0===t?e:t};function Oe(e,t,o){if("function"==typeof t&&(t=t.options),function(e,t){var o=e.props;if(o){var n,i,r={};if(Array.isArray(o))for(n=o.length;n--;)"string"==typeof(i=o[n])&&(r[F(i)]={type:null});else if(m(o))for(var a in o)i=o[a],r[F(a)]=m(i)?i:{type:i};else 0;e.props=r}}(t),function(e,t){var o=e.inject;if(o){var n=e.inject={};if(Array.isArray(o))for(var i=0;i<o.length;i++)n[o[i]]={from:o[i]};else if(m(o))for(var r in o){var a=o[r];n[r]=m(a)?A({from:r},a):{from:a}}else 0}}(t),function(e){var t=e.directives;if(t)for(var o in t){var n=t[o];"function"==typeof n&&(t[o]={bind:n,update:n})}}(t),!t._base&&(t.extends&&(e=Oe(e,t.extends,o)),t.mixins))for(var n=0,i=t.mixins.length;n<i;n++)e=Oe(e,t.mixins[n],o);var r,a={};for(r in e)l(r);for(r in t)y(e,r)||l(r);function l(n){var i=Se[n]||Be;a[n]=i(e[n],t[n],o,n)}return a}function Ne(e,t,o,n){if("string"==typeof o){var i=e[t];if(y(i,o))return i[o];var r=F(o);if(y(i,r))return i[r];var a=k(r);return y(i,a)?i[a]:i[o]||i[r]||i[a]}}function Pe(e,t,o,n){var i=t[e],r=!y(o,e),a=o[e],l=Le(Boolean,i.type);if(l>-1)if(r&&!y(i,"default"))a=!1;else if(""===a||a===C(e)){var s=Le(String,i.type);(s<0||l<s)&&(a=!0)}if(void 0===a){a=function(e,t,o){if(!y(t,"default"))return;var n=t.default;0;if(e&&e.$options.propsData&&void 0===e.$options.propsData[o]&&void 0!==e._props[o])return e._props[o];return"function"==typeof n&&"Function"!==Ie(t.type)?n.call(e):n}(n,i,e);var d=Fe;ke(!0),Ce(a),ke(d)}return a}function Ie(e){var t=e&&e.toString().match(/^\s*function (\w+)/);return t?t[1]:""}function Re(e,t){return Ie(e)===Ie(t)}function Le(e,t){if(!Array.isArray(t))return Re(t,e)?0:-1;for(var o=0,n=t.length;o<n;o++)if(Re(t[o],e))return o;return-1}function Ue(e,t,o){ce();try{if(t)for(var n=t;n=n.$parent;){var i=n.$options.errorCaptured;if(i)for(var r=0;r<i.length;r++)try{if(!1===i[r].call(n,e,t,o))return}catch(e){Ke(e,n,"errorCaptured hook")}}Ke(e,t,o)}finally{ge()}}function Ge(e,t,o,n,i){var r;try{(r=o?e.apply(t,o):e.call(t))&&!r._isVue&&c(r)&&!r._handled&&(r.catch((function(e){return Ue(e,n,i+" (Promise/async)")})),r._handled=!0)}catch(e){Ue(e,n,i)}return r}function Ke(e,t,o){if(R.errorHandler)try{return R.errorHandler.call(null,e,t,o)}catch(t){t!==e&&We(t,null,"config.errorHandler")}We(e,t,o)}function We(e,t,o){if(!V&&!H||"undefined"==typeof console)throw e;console.error(e)}var Ve,He=!1,Ye=[],Qe=!1;function Ze(){Qe=!1;var e=Ye.slice(0);Ye.length=0;for(var t=0;t<e.length;t++)e[t]()}if("undefined"!=typeof Promise&&ae(Promise)){var Je=Promise.resolve();Ve=function(){Je.then(Ze),$&&setTimeout(T)},He=!0}else if(Z||"undefined"==typeof MutationObserver||!ae(MutationObserver)&&"[object MutationObserverConstructor]"!==MutationObserver.toString())Ve=void 0!==o&&ae(o)?function(){o(Ze)}:function(){setTimeout(Ze,0)};else{var Xe=1,$e=new MutationObserver(Ze),et=document.createTextNode(String(Xe));$e.observe(et,{characterData:!0}),Ve=function(){Xe=(Xe+1)%2,et.data=String(Xe)},He=!0}function tt(e,t){var o;if(Ye.push((function(){if(e)try{e.call(t)}catch(e){Ue(e,t,"nextTick")}else o&&o(t)})),Qe||(Qe=!0,Ve()),!e&&"undefined"!=typeof Promise)return new Promise((function(e){o=e}))}var ot=new le;function nt(e){!function e(t,o){var n,i;var r=Array.isArray(t);if(!r&&!s(t)||Object.isFrozen(t)||t instanceof pe)return;if(t.__ob__){var a=t.__ob__.dep.id;if(o.has(a))return;o.add(a)}if(r)for(n=t.length;n--;)e(t[n],o);else for(i=Object.keys(t),n=i.length;n--;)e(t[i[n]],o)}(e,ot),ot.clear()}var it=w((function(e){var t="&"===e.charAt(0),o="~"===(e=t?e.slice(1):e).charAt(0),n="!"===(e=o?e.slice(1):e).charAt(0);return{name:e=n?e.slice(1):e,once:o,capture:n,passive:t}}));function rt(e,t){function o(){var e=arguments,n=o.fns;if(!Array.isArray(n))return Ge(n,null,arguments,t,"v-on handler");for(var i=n.slice(),r=0;r<i.length;r++)Ge(i[r],null,e,t,"v-on handler")}return o.fns=e,o}function at(e,t,o,n,r,l){var s,d,m,f;for(s in e)d=e[s],m=t[s],f=it(s),i(d)||(i(m)?(i(d.fns)&&(d=e[s]=rt(d,l)),a(f.once)&&(d=e[s]=r(f.name,d,f.capture)),o(f.name,d,f.capture,f.passive,f.params)):d!==m&&(m.fns=d,e[s]=m));for(s in t)i(e[s])&&n((f=it(s)).name,t[s],f.capture)}function lt(e,t,o){var n;e instanceof pe&&(e=e.data.hook||(e.data.hook={}));var l=e[t];function s(){o.apply(this,arguments),b(n.fns,s)}i(l)?n=rt([s]):r(l.fns)&&a(l.merged)?(n=l).fns.push(s):n=rt([l,s]),n.merged=!0,e[t]=n}function st(e,t,o,n,i){if(r(t)){if(y(t,o))return e[o]=t[o],i||delete t[o],!0;if(y(t,n))return e[o]=t[n],i||delete t[n],!0}return!1}function dt(e){return l(e)?[be(e)]:Array.isArray(e)?function e(t,o){var n=[];var s,d,m,f;for(s=0;s<t.length;s++)i(d=t[s])||"boolean"==typeof d||(m=n.length-1,f=n[m],Array.isArray(d)?d.length>0&&(mt((d=e(d,(o||"")+"_"+s))[0])&&mt(f)&&(n[m]=be(f.text+d[0].text),d.shift()),n.push.apply(n,d)):l(d)?mt(f)?n[m]=be(f.text+d):""!==d&&n.push(be(d)):mt(d)&&mt(f)?n[m]=be(f.text+d.text):(a(t._isVList)&&r(d.tag)&&i(d.key)&&r(o)&&(d.key="__vlist"+o+"_"+s+"__"),n.push(d)));return n}(e):void 0}function mt(e){return r(e)&&r(e.text)&&!1===e.isComment}function ft(e,t){if(e){for(var o=Object.create(null),n=se?Reflect.ownKeys(e):Object.keys(e),i=0;i<n.length;i++){var r=n[i];if("__ob__"!==r){for(var a=e[r].from,l=t;l;){if(l._provided&&y(l._provided,a)){o[r]=l._provided[a];break}l=l.$parent}if(!l)if("default"in e[r]){var s=e[r].default;o[r]="function"==typeof s?s.call(t):s}else 0}}return o}}function _t(e,t){if(!e||!e.length)return{};for(var o={},n=0,i=e.length;n<i;n++){var r=e[n],a=r.data;if(a&&a.attrs&&a.attrs.slot&&delete a.attrs.slot,r.context!==t&&r.fnContext!==t||!a||null==a.slot)(o.default||(o.default=[])).push(r);else{var l=a.slot,s=o[l]||(o[l]=[]);"template"===r.tag?s.push.apply(s,r.children||[]):s.push(r)}}for(var d in o)o[d].every(ct)&&delete o[d];return o}function ct(e){return e.isComment&&!e.asyncFactory||" "===e.text}function gt(e,t,o){var i,r=Object.keys(t).length>0,a=e?!!e.$stable:!r,l=e&&e.$key;if(e){if(e._normalized)return e._normalized;if(a&&o&&o!==n&&l===o.$key&&!r&&!o.$hasNormal)return o;for(var s in i={},e)e[s]&&"$"!==s[0]&&(i[s]=pt(t,s,e[s]))}else i={};for(var d in t)d in i||(i[d]=ut(t,d));return e&&Object.isExtensible(e)&&(e._normalized=i),U(i,"$stable",a),U(i,"$key",l),U(i,"$hasNormal",r),i}function pt(e,t,o){var n=function(){var e=arguments.length?o.apply(null,arguments):o({});return(e=e&&"object"==typeof e&&!Array.isArray(e)?[e]:dt(e))&&(0===e.length||1===e.length&&e[0].isComment)?void 0:e};return o.proxy&&Object.defineProperty(e,t,{get:n,enumerable:!0,configurable:!0}),n}function ut(e,t){return function(){return e[t]}}function ht(e,t){var o,n,i,a,l;if(Array.isArray(e)||"string"==typeof e)for(o=new Array(e.length),n=0,i=e.length;n<i;n++)o[n]=t(e[n],n);else if("number"==typeof e)for(o=new Array(e),n=0;n<e;n++)o[n]=t(n+1,n);else if(s(e))if(se&&e[Symbol.iterator]){o=[];for(var d=e[Symbol.iterator](),m=d.next();!m.done;)o.push(t(m.value,o.length)),m=d.next()}else for(a=Object.keys(e),o=new Array(a.length),n=0,i=a.length;n<i;n++)l=a[n],o[n]=t(e[l],l,n);return r(o)||(o=[]),o._isVList=!0,o}function bt(e,t,o,n){var i,r=this.$scopedSlots[e];r?(o=o||{},n&&(o=A(A({},n),o)),i=r(o)||t):i=this.$slots[e]||t;var a=o&&o.slot;return a?this.$createElement("template",{slot:a},i):i}function xt(e){return Ne(this.$options,"filters",e)||q}function yt(e,t){return Array.isArray(e)?-1===e.indexOf(t):e!==t}function wt(e,t,o,n,i){var r=R.keyCodes[t]||o;return i&&n&&!R.keyCodes[t]?yt(i,n):r?yt(r,e):n?C(n)!==t:void 0}function vt(e,t,o,n,i){if(o)if(s(o)){var r;Array.isArray(o)&&(o=S(o));var a=function(a){if("class"===a||"style"===a||h(a))r=e;else{var l=e.attrs&&e.attrs.type;r=n||R.mustUseProp(t,l,a)?e.domProps||(e.domProps={}):e.attrs||(e.attrs={})}var s=F(a),d=C(a);s in r||d in r||(r[a]=o[a],i&&((e.on||(e.on={}))["update:"+a]=function(e){o[a]=e}))};for(var l in o)a(l)}else;return e}function Ft(e,t){var o=this._staticTrees||(this._staticTrees=[]),n=o[e];return n&&!t?n:(jt(n=o[e]=this.$options.staticRenderFns[e].call(this._renderProxy,null,this),"__static__"+e,!1),n)}function kt(e,t,o){return jt(e,"__once__"+t+(o?"_"+o:""),!0),e}function jt(e,t,o){if(Array.isArray(e))for(var n=0;n<e.length;n++)e[n]&&"string"!=typeof e[n]&&Ct(e[n],t+"_"+n,o);else Ct(e,t,o)}function Ct(e,t,o){e.isStatic=!0,e.key=t,e.isOnce=o}function Et(e,t){if(t)if(m(t)){var o=e.on=e.on?A({},e.on):{};for(var n in t){var i=o[n],r=t[n];o[n]=i?[].concat(i,r):r}}else;return e}function Dt(e,t,o,n){t=t||{$stable:!o};for(var i=0;i<e.length;i++){var r=e[i];Array.isArray(r)?Dt(r,t,o):r&&(r.proxy&&(r.fn.proxy=!0),t[r.key]=r.fn)}return n&&(t.$key=n),t}function At(e,t){for(var o=0;o<t.length;o+=2){var n=t[o];"string"==typeof n&&n&&(e[t[o]]=t[o+1])}return e}function St(e,t){return"string"==typeof e?t+e:e}function Tt(e){e._o=kt,e._n=p,e._s=g,e._l=ht,e._t=bt,e._q=z,e._i=B,e._m=Ft,e._f=xt,e._k=wt,e._b=vt,e._v=be,e._e=he,e._u=Dt,e._g=Et,e._d=At,e._p=St}function Mt(e,t,o,i,r){var l,s=this,d=r.options;y(i,"_uid")?(l=Object.create(i))._original=i:(l=i,i=i._original);var m=a(d._compiled),f=!m;this.data=e,this.props=t,this.children=o,this.parent=i,this.listeners=e.on||n,this.injections=ft(d.inject,i),this.slots=function(){return s.$slots||gt(e.scopedSlots,s.$slots=_t(o,i)),s.$slots},Object.defineProperty(this,"scopedSlots",{enumerable:!0,get:function(){return gt(e.scopedSlots,this.slots())}}),m&&(this.$options=d,this.$slots=this.slots(),this.$scopedSlots=gt(e.scopedSlots,this.$slots)),d._scopeId?this._c=function(e,t,o,n){var r=Lt(l,e,t,o,n,f);return r&&!Array.isArray(r)&&(r.fnScopeId=d._scopeId,r.fnContext=i),r}:this._c=function(e,t,o,n){return Lt(l,e,t,o,n,f)}}function qt(e,t,o,n,i){var r=xe(e);return r.fnContext=o,r.fnOptions=n,t.slot&&((r.data||(r.data={})).slot=t.slot),r}function zt(e,t){for(var o in t)e[F(o)]=t[o]}Tt(Mt.prototype);var Bt={init:function(e,t){if(e.componentInstance&&!e.componentInstance._isDestroyed&&e.data.keepAlive){var o=e;Bt.prepatch(o,o)}else{(e.componentInstance=function(e,t){var o={_isComponent:!0,_parentVnode:e,parent:t},n=e.data.inlineTemplate;r(n)&&(o.render=n.render,o.staticRenderFns=n.staticRenderFns);return new e.componentOptions.Ctor(o)}(e,Jt)).$mount(t?e.elm:void 0,t)}},prepatch:function(e,t){var o=t.componentOptions;!function(e,t,o,i,r){0;var a=i.data.scopedSlots,l=e.$scopedSlots,s=!!(a&&!a.$stable||l!==n&&!l.$stable||a&&e.$scopedSlots.$key!==a.$key),d=!!(r||e.$options._renderChildren||s);e.$options._parentVnode=i,e.$vnode=i,e._vnode&&(e._vnode.parent=i);if(e.$options._renderChildren=r,e.$attrs=i.data.attrs||n,e.$listeners=o||n,t&&e.$options.props){ke(!1);for(var m=e._props,f=e.$options._propKeys||[],_=0;_<f.length;_++){var c=f[_],g=e.$options.props;m[c]=Pe(c,g,t,e)}ke(!0),e.$options.propsData=t}o=o||n;var p=e.$options._parentListeners;e.$options._parentListeners=o,Zt(e,o,p),d&&(e.$slots=_t(r,i.context),e.$forceUpdate());0}(t.componentInstance=e.componentInstance,o.propsData,o.listeners,t,o.children)},insert:function(e){var t,o=e.context,n=e.componentInstance;n._isMounted||(n._isMounted=!0,to(n,"mounted")),e.data.keepAlive&&(o._isMounted?((t=n)._inactive=!1,no.push(t)):eo(n,!0))},destroy:function(e){var t=e.componentInstance;t._isDestroyed||(e.data.keepAlive?function e(t,o){if(o&&(t._directInactive=!0,$t(t)))return;if(!t._inactive){t._inactive=!0;for(var n=0;n<t.$children.length;n++)e(t.$children[n]);to(t,"deactivated")}}(t,!0):t.$destroy())}},Ot=Object.keys(Bt);function Nt(e,t,o,l,d){if(!i(e)){var m=o.$options._base;if(s(e)&&(e=m.extend(e)),"function"==typeof e){var f;if(i(e.cid)&&void 0===(e=function(e,t){if(a(e.error)&&r(e.errorComp))return e.errorComp;if(r(e.resolved))return e.resolved;var o=Gt;o&&r(e.owners)&&-1===e.owners.indexOf(o)&&e.owners.push(o);if(a(e.loading)&&r(e.loadingComp))return e.loadingComp;if(o&&!r(e.owners)){var n=e.owners=[o],l=!0,d=null,m=null;o.$on("hook:destroyed",(function(){return b(n,o)}));var f=function(e){for(var t=0,o=n.length;t<o;t++)n[t].$forceUpdate();e&&(n.length=0,null!==d&&(clearTimeout(d),d=null),null!==m&&(clearTimeout(m),m=null))},_=O((function(o){e.resolved=Kt(o,t),l?n.length=0:f(!0)})),g=O((function(t){r(e.errorComp)&&(e.error=!0,f(!0))})),p=e(_,g);return s(p)&&(c(p)?i(e.resolved)&&p.then(_,g):c(p.component)&&(p.component.then(_,g),r(p.error)&&(e.errorComp=Kt(p.error,t)),r(p.loading)&&(e.loadingComp=Kt(p.loading,t),0===p.delay?e.loading=!0:d=setTimeout((function(){d=null,i(e.resolved)&&i(e.error)&&(e.loading=!0,f(!1))}),p.delay||200)),r(p.timeout)&&(m=setTimeout((function(){m=null,i(e.resolved)&&g(null)}),p.timeout)))),l=!1,e.loading?e.loadingComp:e.resolved}}(f=e,m)))return function(e,t,o,n,i){var r=he();return r.asyncFactory=e,r.asyncMeta={data:t,context:o,children:n,tag:i},r}(f,t,o,l,d);t=t||{},ko(e),r(t.model)&&function(e,t){var o=e.model&&e.model.prop||"value",n=e.model&&e.model.event||"input";(t.attrs||(t.attrs={}))[o]=t.model.value;var i=t.on||(t.on={}),a=i[n],l=t.model.callback;r(a)?(Array.isArray(a)?-1===a.indexOf(l):a!==l)&&(i[n]=[l].concat(a)):i[n]=l}(e.options,t);var _=function(e,t,o){var n=t.options.props;if(!i(n)){var a={},l=e.attrs,s=e.props;if(r(l)||r(s))for(var d in n){var m=C(d);st(a,s,d,m,!0)||st(a,l,d,m,!1)}return a}}(t,e);if(a(e.options.functional))return function(e,t,o,i,a){var l=e.options,s={},d=l.props;if(r(d))for(var m in d)s[m]=Pe(m,d,t||n);else r(o.attrs)&&zt(s,o.attrs),r(o.props)&&zt(s,o.props);var f=new Mt(o,s,a,i,e),_=l.render.call(null,f._c,f);if(_ instanceof pe)return qt(_,o,f.parent,l,f);if(Array.isArray(_)){for(var c=dt(_)||[],g=new Array(c.length),p=0;p<c.length;p++)g[p]=qt(c[p],o,f.parent,l,f);return g}}(e,_,t,o,l);var g=t.on;if(t.on=t.nativeOn,a(e.options.abstract)){var p=t.slot;t={},p&&(t.slot=p)}!function(e){for(var t=e.hook||(e.hook={}),o=0;o<Ot.length;o++){var n=Ot[o],i=t[n],r=Bt[n];i===r||i&&i._merged||(t[n]=i?Pt(r,i):r)}}(t);var u=e.options.name||d;return new pe("vue-component-"+e.cid+(u?"-"+u:""),t,void 0,void 0,void 0,o,{Ctor:e,propsData:_,listeners:g,tag:d,children:l},f)}}}function Pt(e,t){var o=function(o,n){e(o,n),t(o,n)};return o._merged=!0,o}var It=1,Rt=2;function Lt(e,t,o,n,d,m){return(Array.isArray(o)||l(o))&&(d=n,n=o,o=void 0),a(m)&&(d=Rt),function(e,t,o,n,l){if(r(o)&&r(o.__ob__))return he();r(o)&&r(o.is)&&(t=o.is);if(!t)return he();0;Array.isArray(n)&&"function"==typeof n[0]&&((o=o||{}).scopedSlots={default:n[0]},n.length=0);l===Rt?n=dt(n):l===It&&(n=function(e){for(var t=0;t<e.length;t++)if(Array.isArray(e[t]))return Array.prototype.concat.apply([],e);return e}(n));var d,m;if("string"==typeof t){var f;m=e.$vnode&&e.$vnode.ns||R.getTagNamespace(t),d=R.isReservedTag(t)?new pe(R.parsePlatformTagName(t),o,n,void 0,void 0,e):o&&o.pre||!r(f=Ne(e.$options,"components",t))?new pe(t,o,n,void 0,void 0,e):Nt(f,o,e,n,t)}else d=Nt(t,o,e,n);return Array.isArray(d)?d:r(d)?(r(m)&&function e(t,o,n){t.ns=o;"foreignObject"===t.tag&&(o=void 0,n=!0);if(r(t.children))for(var l=0,s=t.children.length;l<s;l++){var d=t.children[l];r(d.tag)&&(i(d.ns)||a(n)&&"svg"!==d.tag)&&e(d,o,n)}}(d,m),r(o)&&function(e){s(e.style)&&nt(e.style);s(e.class)&&nt(e.class)}(o),d):he()}(e,t,o,n,d)}var Ut,Gt=null;function Kt(e,t){return(e.__esModule||se&&"Module"===e[Symbol.toStringTag])&&(e=e.default),s(e)?t.extend(e):e}function Wt(e){return e.isComment&&e.asyncFactory}function Vt(e){if(Array.isArray(e))for(var t=0;t<e.length;t++){var o=e[t];if(r(o)&&(r(o.componentOptions)||Wt(o)))return o}}function Ht(e,t){Ut.$on(e,t)}function Yt(e,t){Ut.$off(e,t)}function Qt(e,t){var o=Ut;return function n(){var i=t.apply(null,arguments);null!==i&&o.$off(e,n)}}function Zt(e,t,o){Ut=e,at(t,o||{},Ht,Yt,Qt,e),Ut=void 0}var Jt=null;function Xt(e){var t=Jt;return Jt=e,function(){Jt=t}}function $t(e){for(;e&&(e=e.$parent);)if(e._inactive)return!0;return!1}function eo(e,t){if(t){if(e._directInactive=!1,$t(e))return}else if(e._directInactive)return;if(e._inactive||null===e._inactive){e._inactive=!1;for(var o=0;o<e.$children.length;o++)eo(e.$children[o]);to(e,"activated")}}function to(e,t){ce();var o=e.$options[t],n=t+" hook";if(o)for(var i=0,r=o.length;i<r;i++)Ge(o[i],e,null,e,n);e._hasHookEvent&&e.$emit("hook:"+t),ge()}var oo=[],no=[],io={},ro=!1,ao=!1,lo=0;var so=0,mo=Date.now;if(V&&!Z){var fo=window.performance;fo&&"function"==typeof fo.now&&mo()>document.createEvent("Event").timeStamp&&(mo=function(){return fo.now()})}function _o(){var e,t;for(so=mo(),ao=!0,oo.sort((function(e,t){return e.id-t.id})),lo=0;lo<oo.length;lo++)(e=oo[lo]).before&&e.before(),t=e.id,io[t]=null,e.run();var o=no.slice(),n=oo.slice();lo=oo.length=no.length=0,io={},ro=ao=!1,function(e){for(var t=0;t<e.length;t++)e[t]._inactive=!0,eo(e[t],!0)}(o),function(e){var t=e.length;for(;t--;){var o=e[t],n=o.vm;n._watcher===o&&n._isMounted&&!n._isDestroyed&&to(n,"updated")}}(n),re&&R.devtools&&re.emit("flush")}var co=0,go=function(e,t,o,n,i){this.vm=e,i&&(e._watcher=this),e._watchers.push(this),n?(this.deep=!!n.deep,this.user=!!n.user,this.lazy=!!n.lazy,this.sync=!!n.sync,this.before=n.before):this.deep=this.user=this.lazy=this.sync=!1,this.cb=o,this.id=++co,this.active=!0,this.dirty=this.lazy,this.deps=[],this.newDeps=[],this.depIds=new le,this.newDepIds=new le,this.expression="","function"==typeof t?this.getter=t:(this.getter=function(e){if(!G.test(e)){var t=e.split(".");return function(e){for(var o=0;o<t.length;o++){if(!e)return;e=e[t[o]]}return e}}}(t),this.getter||(this.getter=T)),this.value=this.lazy?void 0:this.get()};go.prototype.get=function(){var e;ce(this);var t=this.vm;try{e=this.getter.call(t,t)}catch(e){if(!this.user)throw e;Ue(e,t,'getter for watcher "'+this.expression+'"')}finally{this.deep&&nt(e),ge(),this.cleanupDeps()}return e},go.prototype.addDep=function(e){var t=e.id;this.newDepIds.has(t)||(this.newDepIds.add(t),this.newDeps.push(e),this.depIds.has(t)||e.addSub(this))},go.prototype.cleanupDeps=function(){for(var e=this.deps.length;e--;){var t=this.deps[e];this.newDepIds.has(t.id)||t.removeSub(this)}var o=this.depIds;this.depIds=this.newDepIds,this.newDepIds=o,this.newDepIds.clear(),o=this.deps,this.deps=this.newDeps,this.newDeps=o,this.newDeps.length=0},go.prototype.update=function(){this.lazy?this.dirty=!0:this.sync?this.run():function(e){var t=e.id;if(null==io[t]){if(io[t]=!0,ao){for(var o=oo.length-1;o>lo&&oo[o].id>e.id;)o--;oo.splice(o+1,0,e)}else oo.push(e);ro||(ro=!0,tt(_o))}}(this)},go.prototype.run=function(){if(this.active){var e=this.get();if(e!==this.value||s(e)||this.deep){var t=this.value;if(this.value=e,this.user)try{this.cb.call(this.vm,e,t)}catch(e){Ue(e,this.vm,'callback for watcher "'+this.expression+'"')}else this.cb.call(this.vm,e,t)}}},go.prototype.evaluate=function(){this.value=this.get(),this.dirty=!1},go.prototype.depend=function(){for(var e=this.deps.length;e--;)this.deps[e].depend()},go.prototype.teardown=function(){if(this.active){this.vm._isBeingDestroyed||b(this.vm._watchers,this);for(var e=this.deps.length;e--;)this.deps[e].removeSub(this);this.active=!1}};var po={enumerable:!0,configurable:!0,get:T,set:T};function uo(e,t,o){po.get=function(){return this[t][o]},po.set=function(e){this[t][o]=e},Object.defineProperty(e,o,po)}function ho(e){e._watchers=[];var t=e.$options;t.props&&function(e,t){var o=e.$options.propsData||{},n=e._props={},i=e.$options._propKeys=[];e.$parent&&ke(!1);var r=function(r){i.push(r);var a=Pe(r,t,o,e);Ee(n,r,a),r in e||uo(e,"_props",r)};for(var a in t)r(a);ke(!0)}(e,t.props),t.methods&&function(e,t){e.$options.props;for(var o in t)e[o]="function"!=typeof t[o]?T:E(t[o],e)}(e,t.methods),t.data?function(e){var t=e.$options.data;m(t=e._data="function"==typeof t?function(e,t){ce();try{return e.call(t,t)}catch(e){return Ue(e,t,"data()"),{}}finally{ge()}}(t,e):t||{})||(t={});var o=Object.keys(t),n=e.$options.props,i=(e.$options.methods,o.length);for(;i--;){var r=o[i];0,n&&y(n,r)||(a=void 0,36!==(a=(r+"").charCodeAt(0))&&95!==a&&uo(e,"_data",r))}var a;Ce(t,!0)}(e):Ce(e._data={},!0),t.computed&&function(e,t){var o=e._computedWatchers=Object.create(null),n=ie();for(var i in t){var r=t[i],a="function"==typeof r?r:r.get;0,n||(o[i]=new go(e,a||T,T,bo)),i in e||xo(e,i,r)}}(e,t.computed),t.watch&&t.watch!==te&&function(e,t){for(var o in t){var n=t[o];if(Array.isArray(n))for(var i=0;i<n.length;i++)vo(e,o,n[i]);else vo(e,o,n)}}(e,t.watch)}var bo={lazy:!0};function xo(e,t,o){var n=!ie();"function"==typeof o?(po.get=n?yo(t):wo(o),po.set=T):(po.get=o.get?n&&!1!==o.cache?yo(t):wo(o.get):T,po.set=o.set||T),Object.defineProperty(e,t,po)}function yo(e){return function(){var t=this._computedWatchers&&this._computedWatchers[e];if(t)return t.dirty&&t.evaluate(),fe.target&&t.depend(),t.value}}function wo(e){return function(){return e.call(this,this)}}function vo(e,t,o,n){return m(o)&&(n=o,o=o.handler),"string"==typeof o&&(o=e[o]),e.$watch(t,o,n)}var Fo=0;function ko(e){var t=e.options;if(e.super){var o=ko(e.super);if(o!==e.superOptions){e.superOptions=o;var n=function(e){var t,o=e.options,n=e.sealedOptions;for(var i in o)o[i]!==n[i]&&(t||(t={}),t[i]=o[i]);return t}(e);n&&A(e.extendOptions,n),(t=e.options=Oe(o,e.extendOptions)).name&&(t.components[t.name]=e)}}return t}function jo(e){this._init(e)}function Co(e){e.cid=0;var t=1;e.extend=function(e){e=e||{};var o=this,n=o.cid,i=e._Ctor||(e._Ctor={});if(i[n])return i[n];var r=e.name||o.options.name;var a=function(e){this._init(e)};return(a.prototype=Object.create(o.prototype)).constructor=a,a.cid=t++,a.options=Oe(o.options,e),a.super=o,a.options.props&&function(e){var t=e.options.props;for(var o in t)uo(e.prototype,"_props",o)}(a),a.options.computed&&function(e){var t=e.options.computed;for(var o in t)xo(e.prototype,o,t[o])}(a),a.extend=o.extend,a.mixin=o.mixin,a.use=o.use,P.forEach((function(e){a[e]=o[e]})),r&&(a.options.components[r]=a),a.superOptions=o.options,a.extendOptions=e,a.sealedOptions=A({},a.options),i[n]=a,a}}function Eo(e){return e&&(e.Ctor.options.name||e.tag)}function Do(e,t){return Array.isArray(e)?e.indexOf(t)>-1:"string"==typeof e?e.split(",").indexOf(t)>-1:!!f(e)&&e.test(t)}function Ao(e,t){var o=e.cache,n=e.keys,i=e._vnode;for(var r in o){var a=o[r];if(a){var l=Eo(a.componentOptions);l&&!t(l)&&So(o,r,n,i)}}}function So(e,t,o,n){var i=e[t];!i||n&&i.tag===n.tag||i.componentInstance.$destroy(),e[t]=null,b(o,t)}!function(e){e.prototype._init=function(e){var t=this;t._uid=Fo++,t._isVue=!0,e&&e._isComponent?function(e,t){var o=e.$options=Object.create(e.constructor.options),n=t._parentVnode;o.parent=t.parent,o._parentVnode=n;var i=n.componentOptions;o.propsData=i.propsData,o._parentListeners=i.listeners,o._renderChildren=i.children,o._componentTag=i.tag,t.render&&(o.render=t.render,o.staticRenderFns=t.staticRenderFns)}(t,e):t.$options=Oe(ko(t.constructor),e||{},t),t._renderProxy=t,t._self=t,function(e){var t=e.$options,o=t.parent;if(o&&!t.abstract){for(;o.$options.abstract&&o.$parent;)o=o.$parent;o.$children.push(e)}e.$parent=o,e.$root=o?o.$root:e,e.$children=[],e.$refs={},e._watcher=null,e._inactive=null,e._directInactive=!1,e._isMounted=!1,e._isDestroyed=!1,e._isBeingDestroyed=!1}(t),function(e){e._events=Object.create(null),e._hasHookEvent=!1;var t=e.$options._parentListeners;t&&Zt(e,t)}(t),function(e){e._vnode=null,e._staticTrees=null;var t=e.$options,o=e.$vnode=t._parentVnode,i=o&&o.context;e.$slots=_t(t._renderChildren,i),e.$scopedSlots=n,e._c=function(t,o,n,i){return Lt(e,t,o,n,i,!1)},e.$createElement=function(t,o,n,i){return Lt(e,t,o,n,i,!0)};var r=o&&o.data;Ee(e,"$attrs",r&&r.attrs||n,null,!0),Ee(e,"$listeners",t._parentListeners||n,null,!0)}(t),to(t,"beforeCreate"),function(e){var t=ft(e.$options.inject,e);t&&(ke(!1),Object.keys(t).forEach((function(o){Ee(e,o,t[o])})),ke(!0))}(t),ho(t),function(e){var t=e.$options.provide;t&&(e._provided="function"==typeof t?t.call(e):t)}(t),to(t,"created"),t.$options.el&&t.$mount(t.$options.el)}}(jo),function(e){var t={get:function(){return this._data}},o={get:function(){return this._props}};Object.defineProperty(e.prototype,"$data",t),Object.defineProperty(e.prototype,"$props",o),e.prototype.$set=De,e.prototype.$delete=Ae,e.prototype.$watch=function(e,t,o){if(m(t))return vo(this,e,t,o);(o=o||{}).user=!0;var n=new go(this,e,t,o);if(o.immediate)try{t.call(this,n.value)}catch(e){Ue(e,this,'callback for immediate watcher "'+n.expression+'"')}return function(){n.teardown()}}}(jo),function(e){var t=/^hook:/;e.prototype.$on=function(e,o){var n=this;if(Array.isArray(e))for(var i=0,r=e.length;i<r;i++)n.$on(e[i],o);else(n._events[e]||(n._events[e]=[])).push(o),t.test(e)&&(n._hasHookEvent=!0);return n},e.prototype.$once=function(e,t){var o=this;function n(){o.$off(e,n),t.apply(o,arguments)}return n.fn=t,o.$on(e,n),o},e.prototype.$off=function(e,t){var o=this;if(!arguments.length)return o._events=Object.create(null),o;if(Array.isArray(e)){for(var n=0,i=e.length;n<i;n++)o.$off(e[n],t);return o}var r,a=o._events[e];if(!a)return o;if(!t)return o._events[e]=null,o;for(var l=a.length;l--;)if((r=a[l])===t||r.fn===t){a.splice(l,1);break}return o},e.prototype.$emit=function(e){var t=this,o=t._events[e];if(o){o=o.length>1?D(o):o;for(var n=D(arguments,1),i='event handler for "'+e+'"',r=0,a=o.length;r<a;r++)Ge(o[r],t,n,t,i)}return t}}(jo),function(e){e.prototype._update=function(e,t){var o=this,n=o.$el,i=o._vnode,r=Xt(o);o._vnode=e,o.$el=i?o.__patch__(i,e):o.__patch__(o.$el,e,t,!1),r(),n&&(n.__vue__=null),o.$el&&(o.$el.__vue__=o),o.$vnode&&o.$parent&&o.$vnode===o.$parent._vnode&&(o.$parent.$el=o.$el)},e.prototype.$forceUpdate=function(){this._watcher&&this._watcher.update()},e.prototype.$destroy=function(){var e=this;if(!e._isBeingDestroyed){to(e,"beforeDestroy"),e._isBeingDestroyed=!0;var t=e.$parent;!t||t._isBeingDestroyed||e.$options.abstract||b(t.$children,e),e._watcher&&e._watcher.teardown();for(var o=e._watchers.length;o--;)e._watchers[o].teardown();e._data.__ob__&&e._data.__ob__.vmCount--,e._isDestroyed=!0,e.__patch__(e._vnode,null),to(e,"destroyed"),e.$off(),e.$el&&(e.$el.__vue__=null),e.$vnode&&(e.$vnode.parent=null)}}}(jo),function(e){Tt(e.prototype),e.prototype.$nextTick=function(e){return tt(e,this)},e.prototype._render=function(){var e,t=this,o=t.$options,n=o.render,i=o._parentVnode;i&&(t.$scopedSlots=gt(i.data.scopedSlots,t.$slots,t.$scopedSlots)),t.$vnode=i;try{Gt=t,e=n.call(t._renderProxy,t.$createElement)}catch(o){Ue(o,t,"render"),e=t._vnode}finally{Gt=null}return Array.isArray(e)&&1===e.length&&(e=e[0]),e instanceof pe||(e=he()),e.parent=i,e}}(jo);var To=[String,RegExp,Array],Mo={KeepAlive:{name:"keep-alive",abstract:!0,props:{include:To,exclude:To,max:[String,Number]},created:function(){this.cache=Object.create(null),this.keys=[]},destroyed:function(){for(var e in this.cache)So(this.cache,e,this.keys)},mounted:function(){var e=this;this.$watch("include",(function(t){Ao(e,(function(e){return Do(t,e)}))})),this.$watch("exclude",(function(t){Ao(e,(function(e){return!Do(t,e)}))}))},render:function(){var e=this.$slots.default,t=Vt(e),o=t&&t.componentOptions;if(o){var n=Eo(o),i=this.include,r=this.exclude;if(i&&(!n||!Do(i,n))||r&&n&&Do(r,n))return t;var a=this.cache,l=this.keys,s=null==t.key?o.Ctor.cid+(o.tag?"::"+o.tag:""):t.key;a[s]?(t.componentInstance=a[s].componentInstance,b(l,s),l.push(s)):(a[s]=t,l.push(s),this.max&&l.length>parseInt(this.max)&&So(a,l[0],l,this._vnode)),t.data.keepAlive=!0}return t||e&&e[0]}}};!function(e){var t={get:function(){return R}};Object.defineProperty(e,"config",t),e.util={warn:de,extend:A,mergeOptions:Oe,defineReactive:Ee},e.set=De,e.delete=Ae,e.nextTick=tt,e.observable=function(e){return Ce(e),e},e.options=Object.create(null),P.forEach((function(t){e.options[t+"s"]=Object.create(null)})),e.options._base=e,A(e.options.components,Mo),function(e){e.use=function(e){var t=this._installedPlugins||(this._installedPlugins=[]);if(t.indexOf(e)>-1)return this;var o=D(arguments,1);return o.unshift(this),"function"==typeof e.install?e.install.apply(e,o):"function"==typeof e&&e.apply(null,o),t.push(e),this}}(e),function(e){e.mixin=function(e){return this.options=Oe(this.options,e),this}}(e),Co(e),function(e){P.forEach((function(t){e[t]=function(e,o){return o?("component"===t&&m(o)&&(o.name=o.name||e,o=this.options._base.extend(o)),"directive"===t&&"function"==typeof o&&(o={bind:o,update:o}),this.options[t+"s"][e]=o,o):this.options[t+"s"][e]}}))}(e)}(jo),Object.defineProperty(jo.prototype,"$isServer",{get:ie}),Object.defineProperty(jo.prototype,"$ssrContext",{get:function(){return this.$vnode&&this.$vnode.ssrContext}}),Object.defineProperty(jo,"FunctionalRenderContext",{value:Mt}),jo.version="2.6.10";var qo=u("style,class"),zo=u("input,textarea,option,select,progress"),Bo=u("contenteditable,draggable,spellcheck"),Oo=u("events,caret,typing,plaintext-only"),No=function(e,t){return Uo(t)||"false"===t?"false":"contenteditable"===e&&Oo(t)?t:"true"},Po=u("allowfullscreen,async,autofocus,autoplay,checked,compact,controls,declare,default,defaultchecked,defaultmuted,defaultselected,defer,disabled,enabled,formnovalidate,hidden,indeterminate,inert,ismap,itemscope,loop,multiple,muted,nohref,noresize,noshade,novalidate,nowrap,open,pauseonexit,readonly,required,reversed,scoped,seamless,selected,sortable,translate,truespeed,typemustmatch,visible"),Io="http://www.w3.org/1999/xlink",Ro=function(e){return":"===e.charAt(5)&&"xlink"===e.slice(0,5)},Lo=function(e){return Ro(e)?e.slice(6,e.length):""},Uo=function(e){return null==e||!1===e};function Go(e){for(var t=e.data,o=e,n=e;r(n.componentInstance);)(n=n.componentInstance._vnode)&&n.data&&(t=Ko(n.data,t));for(;r(o=o.parent);)o&&o.data&&(t=Ko(t,o.data));return function(e,t){if(r(e)||r(t))return Wo(e,Vo(t));return""}(t.staticClass,t.class)}function Ko(e,t){return{staticClass:Wo(e.staticClass,t.staticClass),class:r(e.class)?[e.class,t.class]:t.class}}function Wo(e,t){return e?t?e+" "+t:e:t||""}function Vo(e){return Array.isArray(e)?function(e){for(var t,o="",n=0,i=e.length;n<i;n++)r(t=Vo(e[n]))&&""!==t&&(o&&(o+=" "),o+=t);return o}(e):s(e)?function(e){var t="";for(var o in e)e[o]&&(t&&(t+=" "),t+=o);return t}(e):"string"==typeof e?e:""}var Ho={svg:"http://www.w3.org/2000/svg",math:"http://www.w3.org/1998/Math/MathML"},Yo=u("html,body,base,head,link,meta,style,title,address,article,aside,footer,header,h1,h2,h3,h4,h5,h6,hgroup,nav,section,div,dd,dl,dt,figcaption,figure,picture,hr,img,li,main,ol,p,pre,ul,a,b,abbr,bdi,bdo,br,cite,code,data,dfn,em,i,kbd,mark,q,rp,rt,rtc,ruby,s,samp,small,span,strong,sub,sup,time,u,var,wbr,area,audio,map,track,video,embed,object,param,source,canvas,script,noscript,del,ins,caption,col,colgroup,table,thead,tbody,td,th,tr,button,datalist,fieldset,form,input,label,legend,meter,optgroup,option,output,progress,select,textarea,details,dialog,menu,menuitem,summary,content,element,shadow,template,blockquote,iframe,tfoot"),Qo=u("svg,animate,circle,clippath,cursor,defs,desc,ellipse,filter,font-face,foreignObject,g,glyph,image,line,marker,mask,missing-glyph,path,pattern,polygon,polyline,rect,switch,symbol,text,textpath,tspan,use,view",!0),Zo=function(e){return Yo(e)||Qo(e)};var Jo=Object.create(null);var Xo=u("text,number,password,search,email,tel,url");var $o=Object.freeze({createElement:function(e,t){var o=document.createElement(e);return"select"!==e?o:(t.data&&t.data.attrs&&void 0!==t.data.attrs.multiple&&o.setAttribute("multiple","multiple"),o)},createElementNS:function(e,t){return document.createElementNS(Ho[e],t)},createTextNode:function(e){return document.createTextNode(e)},createComment:function(e){return document.createComment(e)},insertBefore:function(e,t,o){e.insertBefore(t,o)},removeChild:function(e,t){e.removeChild(t)},appendChild:function(e,t){e.appendChild(t)},parentNode:function(e){return e.parentNode},nextSibling:function(e){return e.nextSibling},tagName:function(e){return e.tagName},setTextContent:function(e,t){e.textContent=t},setStyleScope:function(e,t){e.setAttribute(t,"")}}),en={create:function(e,t){tn(t)},update:function(e,t){e.data.ref!==t.data.ref&&(tn(e,!0),tn(t))},destroy:function(e){tn(e,!0)}};function tn(e,t){var o=e.data.ref;if(r(o)){var n=e.context,i=e.componentInstance||e.elm,a=n.$refs;t?Array.isArray(a[o])?b(a[o],i):a[o]===i&&(a[o]=void 0):e.data.refInFor?Array.isArray(a[o])?a[o].indexOf(i)<0&&a[o].push(i):a[o]=[i]:a[o]=i}}var on=new pe("",{},[]),nn=["create","activate","update","remove","destroy"];function rn(e,t){return e.key===t.key&&(e.tag===t.tag&&e.isComment===t.isComment&&r(e.data)===r(t.data)&&function(e,t){if("input"!==e.tag)return!0;var o,n=r(o=e.data)&&r(o=o.attrs)&&o.type,i=r(o=t.data)&&r(o=o.attrs)&&o.type;return n===i||Xo(n)&&Xo(i)}(e,t)||a(e.isAsyncPlaceholder)&&e.asyncFactory===t.asyncFactory&&i(t.asyncFactory.error))}function an(e,t,o){var n,i,a={};for(n=t;n<=o;++n)r(i=e[n].key)&&(a[i]=n);return a}var ln={create:sn,update:sn,destroy:function(e){sn(e,on)}};function sn(e,t){(e.data.directives||t.data.directives)&&function(e,t){var o,n,i,r=e===on,a=t===on,l=mn(e.data.directives,e.context),s=mn(t.data.directives,t.context),d=[],m=[];for(o in s)n=l[o],i=s[o],n?(i.oldValue=n.value,i.oldArg=n.arg,_n(i,"update",t,e),i.def&&i.def.componentUpdated&&m.push(i)):(_n(i,"bind",t,e),i.def&&i.def.inserted&&d.push(i));if(d.length){var f=function(){for(var o=0;o<d.length;o++)_n(d[o],"inserted",t,e)};r?lt(t,"insert",f):f()}m.length&&lt(t,"postpatch",(function(){for(var o=0;o<m.length;o++)_n(m[o],"componentUpdated",t,e)}));if(!r)for(o in l)s[o]||_n(l[o],"unbind",e,e,a)}(e,t)}var dn=Object.create(null);function mn(e,t){var o,n,i=Object.create(null);if(!e)return i;for(o=0;o<e.length;o++)(n=e[o]).modifiers||(n.modifiers=dn),i[fn(n)]=n,n.def=Ne(t.$options,"directives",n.name);return i}function fn(e){return e.rawName||e.name+"."+Object.keys(e.modifiers||{}).join(".")}function _n(e,t,o,n,i){var r=e.def&&e.def[t];if(r)try{r(o.elm,e,o,n,i)}catch(n){Ue(n,o.context,"directive "+e.name+" "+t+" hook")}}var cn=[en,ln];function gn(e,t){var o=t.componentOptions;if(!(r(o)&&!1===o.Ctor.options.inheritAttrs||i(e.data.attrs)&&i(t.data.attrs))){var n,a,l=t.elm,s=e.data.attrs||{},d=t.data.attrs||{};for(n in r(d.__ob__)&&(d=t.data.attrs=A({},d)),d)a=d[n],s[n]!==a&&pn(l,n,a);for(n in(Z||X)&&d.value!==s.value&&pn(l,"value",d.value),s)i(d[n])&&(Ro(n)?l.removeAttributeNS(Io,Lo(n)):Bo(n)||l.removeAttribute(n))}}function pn(e,t,o){e.tagName.indexOf("-")>-1?un(e,t,o):Po(t)?Uo(o)?e.removeAttribute(t):(o="allowfullscreen"===t&&"EMBED"===e.tagName?"true":t,e.setAttribute(t,o)):Bo(t)?e.setAttribute(t,No(t,o)):Ro(t)?Uo(o)?e.removeAttributeNS(Io,Lo(t)):e.setAttributeNS(Io,t,o):un(e,t,o)}function un(e,t,o){if(Uo(o))e.removeAttribute(t);else{if(Z&&!J&&"TEXTAREA"===e.tagName&&"placeholder"===t&&""!==o&&!e.__ieph){var n=function(t){t.stopImmediatePropagation(),e.removeEventListener("input",n)};e.addEventListener("input",n),e.__ieph=!0}e.setAttribute(t,o)}}var hn={create:gn,update:gn};function bn(e,t){var o=t.elm,n=t.data,a=e.data;if(!(i(n.staticClass)&&i(n.class)&&(i(a)||i(a.staticClass)&&i(a.class)))){var l=Go(t),s=o._transitionClasses;r(s)&&(l=Wo(l,Vo(s))),l!==o._prevClass&&(o.setAttribute("class",l),o._prevClass=l)}}var xn,yn={create:bn,update:bn},wn="__r",vn="__c";function Fn(e,t,o){var n=xn;return function i(){var r=t.apply(null,arguments);null!==r&&Cn(e,i,o,n)}}var kn=He&&!(ee&&Number(ee[1])<=53);function jn(e,t,o,n){if(kn){var i=so,r=t;t=r._wrapper=function(e){if(e.target===e.currentTarget||e.timeStamp>=i||e.timeStamp<=0||e.target.ownerDocument!==document)return r.apply(this,arguments)}}xn.addEventListener(e,t,oe?{capture:o,passive:n}:o)}function Cn(e,t,o,n){(n||xn).removeEventListener(e,t._wrapper||t,o)}function En(e,t){if(!i(e.data.on)||!i(t.data.on)){var o=t.data.on||{},n=e.data.on||{};xn=t.elm,function(e){if(r(e[wn])){var t=Z?"change":"input";e[t]=[].concat(e[wn],e[t]||[]),delete e[wn]}r(e[vn])&&(e.change=[].concat(e[vn],e.change||[]),delete e[vn])}(o),at(o,n,jn,Cn,Fn,t.context),xn=void 0}}var Dn,An={create:En,update:En};function Sn(e,t){if(!i(e.data.domProps)||!i(t.data.domProps)){var o,n,a=t.elm,l=e.data.domProps||{},s=t.data.domProps||{};for(o in r(s.__ob__)&&(s=t.data.domProps=A({},s)),l)o in s||(a[o]="");for(o in s){if(n=s[o],"textContent"===o||"innerHTML"===o){if(t.children&&(t.children.length=0),n===l[o])continue;1===a.childNodes.length&&a.removeChild(a.childNodes[0])}if("value"===o&&"PROGRESS"!==a.tagName){a._value=n;var d=i(n)?"":String(n);Tn(a,d)&&(a.value=d)}else if("innerHTML"===o&&Qo(a.tagName)&&i(a.innerHTML)){(Dn=Dn||document.createElement("div")).innerHTML="<svg>"+n+"</svg>";for(var m=Dn.firstChild;a.firstChild;)a.removeChild(a.firstChild);for(;m.firstChild;)a.appendChild(m.firstChild)}else if(n!==l[o])try{a[o]=n}catch(e){}}}}function Tn(e,t){return!e.composing&&("OPTION"===e.tagName||function(e,t){var o=!0;try{o=document.activeElement!==e}catch(e){}return o&&e.value!==t}(e,t)||function(e,t){var o=e.value,n=e._vModifiers;if(r(n)){if(n.number)return p(o)!==p(t);if(n.trim)return o.trim()!==t.trim()}return o!==t}(e,t))}var Mn={create:Sn,update:Sn},qn=w((function(e){var t={},o=/:(.+)/;return e.split(/;(?![^(]*\))/g).forEach((function(e){if(e){var n=e.split(o);n.length>1&&(t[n[0].trim()]=n[1].trim())}})),t}));function zn(e){var t=Bn(e.style);return e.staticStyle?A(e.staticStyle,t):t}function Bn(e){return Array.isArray(e)?S(e):"string"==typeof e?qn(e):e}var On,Nn=/^--/,Pn=/\s*!important$/,In=function(e,t,o){if(Nn.test(t))e.style.setProperty(t,o);else if(Pn.test(o))e.style.setProperty(C(t),o.replace(Pn,""),"important");else{var n=Ln(t);if(Array.isArray(o))for(var i=0,r=o.length;i<r;i++)e.style[n]=o[i];else e.style[n]=o}},Rn=["Webkit","Moz","ms"],Ln=w((function(e){if(On=On||document.createElement("div").style,"filter"!==(e=F(e))&&e in On)return e;for(var t=e.charAt(0).toUpperCase()+e.slice(1),o=0;o<Rn.length;o++){var n=Rn[o]+t;if(n in On)return n}}));function Un(e,t){var o=t.data,n=e.data;if(!(i(o.staticStyle)&&i(o.style)&&i(n.staticStyle)&&i(n.style))){var a,l,s=t.elm,d=n.staticStyle,m=n.normalizedStyle||n.style||{},f=d||m,_=Bn(t.data.style)||{};t.data.normalizedStyle=r(_.__ob__)?A({},_):_;var c=function(e,t){var o,n={};if(t)for(var i=e;i.componentInstance;)(i=i.componentInstance._vnode)&&i.data&&(o=zn(i.data))&&A(n,o);(o=zn(e.data))&&A(n,o);for(var r=e;r=r.parent;)r.data&&(o=zn(r.data))&&A(n,o);return n}(t,!0);for(l in f)i(c[l])&&In(s,l,"");for(l in c)(a=c[l])!==f[l]&&In(s,l,null==a?"":a)}}var Gn={create:Un,update:Un},Kn=/\s+/;function Wn(e,t){if(t&&(t=t.trim()))if(e.classList)t.indexOf(" ")>-1?t.split(Kn).forEach((function(t){return e.classList.add(t)})):e.classList.add(t);else{var o=" "+(e.getAttribute("class")||"")+" ";o.indexOf(" "+t+" ")<0&&e.setAttribute("class",(o+t).trim())}}function Vn(e,t){if(t&&(t=t.trim()))if(e.classList)t.indexOf(" ")>-1?t.split(Kn).forEach((function(t){return e.classList.remove(t)})):e.classList.remove(t),e.classList.length||e.removeAttribute("class");else{for(var o=" "+(e.getAttribute("class")||"")+" ",n=" "+t+" ";o.indexOf(n)>=0;)o=o.replace(n," ");(o=o.trim())?e.setAttribute("class",o):e.removeAttribute("class")}}function Hn(e){if(e){if("object"==typeof e){var t={};return!1!==e.css&&A(t,Yn(e.name||"v")),A(t,e),t}return"string"==typeof e?Yn(e):void 0}}var Yn=w((function(e){return{enterClass:e+"-enter",enterToClass:e+"-enter-to",enterActiveClass:e+"-enter-active",leaveClass:e+"-leave",leaveToClass:e+"-leave-to",leaveActiveClass:e+"-leave-active"}})),Qn=V&&!J,Zn="transition",Jn="animation",Xn="transition",$n="transitionend",ei="animation",ti="animationend";Qn&&(void 0===window.ontransitionend&&void 0!==window.onwebkittransitionend&&(Xn="WebkitTransition",$n="webkitTransitionEnd"),void 0===window.onanimationend&&void 0!==window.onwebkitanimationend&&(ei="WebkitAnimation",ti="webkitAnimationEnd"));var oi=V?window.requestAnimationFrame?window.requestAnimationFrame.bind(window):setTimeout:function(e){return e()};function ni(e){oi((function(){oi(e)}))}function ii(e,t){var o=e._transitionClasses||(e._transitionClasses=[]);o.indexOf(t)<0&&(o.push(t),Wn(e,t))}function ri(e,t){e._transitionClasses&&b(e._transitionClasses,t),Vn(e,t)}function ai(e,t,o){var n=si(e,t),i=n.type,r=n.timeout,a=n.propCount;if(!i)return o();var l=i===Zn?$n:ti,s=0,d=function(){e.removeEventListener(l,m),o()},m=function(t){t.target===e&&++s>=a&&d()};setTimeout((function(){s<a&&d()}),r+1),e.addEventListener(l,m)}var li=/\b(transform|all)(,|$)/;function si(e,t){var o,n=window.getComputedStyle(e),i=(n[Xn+"Delay"]||"").split(", "),r=(n[Xn+"Duration"]||"").split(", "),a=di(i,r),l=(n[ei+"Delay"]||"").split(", "),s=(n[ei+"Duration"]||"").split(", "),d=di(l,s),m=0,f=0;return t===Zn?a>0&&(o=Zn,m=a,f=r.length):t===Jn?d>0&&(o=Jn,m=d,f=s.length):f=(o=(m=Math.max(a,d))>0?a>d?Zn:Jn:null)?o===Zn?r.length:s.length:0,{type:o,timeout:m,propCount:f,hasTransform:o===Zn&&li.test(n[Xn+"Property"])}}function di(e,t){for(;e.length<t.length;)e=e.concat(e);return Math.max.apply(null,t.map((function(t,o){return mi(t)+mi(e[o])})))}function mi(e){return 1e3*Number(e.slice(0,-1).replace(",","."))}function fi(e,t){var o=e.elm;r(o._leaveCb)&&(o._leaveCb.cancelled=!0,o._leaveCb());var n=Hn(e.data.transition);if(!i(n)&&!r(o._enterCb)&&1===o.nodeType){for(var a=n.css,l=n.type,d=n.enterClass,m=n.enterToClass,f=n.enterActiveClass,_=n.appearClass,c=n.appearToClass,g=n.appearActiveClass,u=n.beforeEnter,h=n.enter,b=n.afterEnter,x=n.enterCancelled,y=n.beforeAppear,w=n.appear,v=n.afterAppear,F=n.appearCancelled,k=n.duration,j=Jt,C=Jt.$vnode;C&&C.parent;)j=C.context,C=C.parent;var E=!j._isMounted||!e.isRootInsert;if(!E||w||""===w){var D=E&&_?_:d,A=E&&g?g:f,S=E&&c?c:m,T=E&&y||u,M=E&&"function"==typeof w?w:h,q=E&&v||b,z=E&&F||x,B=p(s(k)?k.enter:k);0;var N=!1!==a&&!J,P=gi(M),I=o._enterCb=O((function(){N&&(ri(o,S),ri(o,A)),I.cancelled?(N&&ri(o,D),z&&z(o)):q&&q(o),o._enterCb=null}));e.data.show||lt(e,"insert",(function(){var t=o.parentNode,n=t&&t._pending&&t._pending[e.key];n&&n.tag===e.tag&&n.elm._leaveCb&&n.elm._leaveCb(),M&&M(o,I)})),T&&T(o),N&&(ii(o,D),ii(o,A),ni((function(){ri(o,D),I.cancelled||(ii(o,S),P||(ci(B)?setTimeout(I,B):ai(o,l,I)))}))),e.data.show&&(t&&t(),M&&M(o,I)),N||P||I()}}}function _i(e,t){var o=e.elm;r(o._enterCb)&&(o._enterCb.cancelled=!0,o._enterCb());var n=Hn(e.data.transition);if(i(n)||1!==o.nodeType)return t();if(!r(o._leaveCb)){var a=n.css,l=n.type,d=n.leaveClass,m=n.leaveToClass,f=n.leaveActiveClass,_=n.beforeLeave,c=n.leave,g=n.afterLeave,u=n.leaveCancelled,h=n.delayLeave,b=n.duration,x=!1!==a&&!J,y=gi(c),w=p(s(b)?b.leave:b);0;var v=o._leaveCb=O((function(){o.parentNode&&o.parentNode._pending&&(o.parentNode._pending[e.key]=null),x&&(ri(o,m),ri(o,f)),v.cancelled?(x&&ri(o,d),u&&u(o)):(t(),g&&g(o)),o._leaveCb=null}));h?h(F):F()}function F(){v.cancelled||(!e.data.show&&o.parentNode&&((o.parentNode._pending||(o.parentNode._pending={}))[e.key]=e),_&&_(o),x&&(ii(o,d),ii(o,f),ni((function(){ri(o,d),v.cancelled||(ii(o,m),y||(ci(w)?setTimeout(v,w):ai(o,l,v)))}))),c&&c(o,v),x||y||v())}}function ci(e){return"number"==typeof e&&!isNaN(e)}function gi(e){if(i(e))return!1;var t=e.fns;return r(t)?gi(Array.isArray(t)?t[0]:t):(e._length||e.length)>1}function pi(e,t){!0!==t.data.show&&fi(t)}var ui=function(e){var t,o,n={},s=e.modules,d=e.nodeOps;for(t=0;t<nn.length;++t)for(n[nn[t]]=[],o=0;o<s.length;++o)r(s[o][nn[t]])&&n[nn[t]].push(s[o][nn[t]]);function m(e){var t=d.parentNode(e);r(t)&&d.removeChild(t,e)}function f(e,t,o,i,l,s,m){if(r(e.elm)&&r(s)&&(e=s[m]=xe(e)),e.isRootInsert=!l,!function(e,t,o,i){var l=e.data;if(r(l)){var s=r(e.componentInstance)&&l.keepAlive;if(r(l=l.hook)&&r(l=l.init)&&l(e,!1),r(e.componentInstance))return _(e,t),c(o,e.elm,i),a(s)&&function(e,t,o,i){var a,l=e;for(;l.componentInstance;)if(l=l.componentInstance._vnode,r(a=l.data)&&r(a=a.transition)){for(a=0;a<n.activate.length;++a)n.activate[a](on,l);t.push(l);break}c(o,e.elm,i)}(e,t,o,i),!0}}(e,t,o,i)){var f=e.data,p=e.children,u=e.tag;r(u)?(e.elm=e.ns?d.createElementNS(e.ns,u):d.createElement(u,e),b(e),g(e,p,t),r(f)&&h(e,t),c(o,e.elm,i)):a(e.isComment)?(e.elm=d.createComment(e.text),c(o,e.elm,i)):(e.elm=d.createTextNode(e.text),c(o,e.elm,i))}}function _(e,t){r(e.data.pendingInsert)&&(t.push.apply(t,e.data.pendingInsert),e.data.pendingInsert=null),e.elm=e.componentInstance.$el,p(e)?(h(e,t),b(e)):(tn(e),t.push(e))}function c(e,t,o){r(e)&&(r(o)?d.parentNode(o)===e&&d.insertBefore(e,t,o):d.appendChild(e,t))}function g(e,t,o){if(Array.isArray(t)){0;for(var n=0;n<t.length;++n)f(t[n],o,e.elm,null,!0,t,n)}else l(e.text)&&d.appendChild(e.elm,d.createTextNode(String(e.text)))}function p(e){for(;e.componentInstance;)e=e.componentInstance._vnode;return r(e.tag)}function h(e,o){for(var i=0;i<n.create.length;++i)n.create[i](on,e);r(t=e.data.hook)&&(r(t.create)&&t.create(on,e),r(t.insert)&&o.push(e))}function b(e){var t;if(r(t=e.fnScopeId))d.setStyleScope(e.elm,t);else for(var o=e;o;)r(t=o.context)&&r(t=t.$options._scopeId)&&d.setStyleScope(e.elm,t),o=o.parent;r(t=Jt)&&t!==e.context&&t!==e.fnContext&&r(t=t.$options._scopeId)&&d.setStyleScope(e.elm,t)}function x(e,t,o,n,i,r){for(;n<=i;++n)f(o[n],r,e,t,!1,o,n)}function y(e){var t,o,i=e.data;if(r(i))for(r(t=i.hook)&&r(t=t.destroy)&&t(e),t=0;t<n.destroy.length;++t)n.destroy[t](e);if(r(t=e.children))for(o=0;o<e.children.length;++o)y(e.children[o])}function w(e,t,o,n){for(;o<=n;++o){var i=t[o];r(i)&&(r(i.tag)?(v(i),y(i)):m(i.elm))}}function v(e,t){if(r(t)||r(e.data)){var o,i=n.remove.length+1;for(r(t)?t.listeners+=i:t=function(e,t){function o(){0==--o.listeners&&m(e)}return o.listeners=t,o}(e.elm,i),r(o=e.componentInstance)&&r(o=o._vnode)&&r(o.data)&&v(o,t),o=0;o<n.remove.length;++o)n.remove[o](e,t);r(o=e.data.hook)&&r(o=o.remove)?o(e,t):t()}else m(e.elm)}function F(e,t,o,n){for(var i=o;i<n;i++){var a=t[i];if(r(a)&&rn(e,a))return i}}function k(e,t,o,l,s,m){if(e!==t){r(t.elm)&&r(l)&&(t=l[s]=xe(t));var _=t.elm=e.elm;if(a(e.isAsyncPlaceholder))r(t.asyncFactory.resolved)?E(e.elm,t,o):t.isAsyncPlaceholder=!0;else if(a(t.isStatic)&&a(e.isStatic)&&t.key===e.key&&(a(t.isCloned)||a(t.isOnce)))t.componentInstance=e.componentInstance;else{var c,g=t.data;r(g)&&r(c=g.hook)&&r(c=c.prepatch)&&c(e,t);var u=e.children,h=t.children;if(r(g)&&p(t)){for(c=0;c<n.update.length;++c)n.update[c](e,t);r(c=g.hook)&&r(c=c.update)&&c(e,t)}i(t.text)?r(u)&&r(h)?u!==h&&function(e,t,o,n,a){var l,s,m,_=0,c=0,g=t.length-1,p=t[0],u=t[g],h=o.length-1,b=o[0],y=o[h],v=!a;for(0;_<=g&&c<=h;)i(p)?p=t[++_]:i(u)?u=t[--g]:rn(p,b)?(k(p,b,n,o,c),p=t[++_],b=o[++c]):rn(u,y)?(k(u,y,n,o,h),u=t[--g],y=o[--h]):rn(p,y)?(k(p,y,n,o,h),v&&d.insertBefore(e,p.elm,d.nextSibling(u.elm)),p=t[++_],y=o[--h]):rn(u,b)?(k(u,b,n,o,c),v&&d.insertBefore(e,u.elm,p.elm),u=t[--g],b=o[++c]):(i(l)&&(l=an(t,_,g)),i(s=r(b.key)?l[b.key]:F(b,t,_,g))?f(b,n,e,p.elm,!1,o,c):rn(m=t[s],b)?(k(m,b,n,o,c),t[s]=void 0,v&&d.insertBefore(e,m.elm,p.elm)):f(b,n,e,p.elm,!1,o,c),b=o[++c]);_>g?x(e,i(o[h+1])?null:o[h+1].elm,o,c,h,n):c>h&&w(0,t,_,g)}(_,u,h,o,m):r(h)?(r(e.text)&&d.setTextContent(_,""),x(_,null,h,0,h.length-1,o)):r(u)?w(0,u,0,u.length-1):r(e.text)&&d.setTextContent(_,""):e.text!==t.text&&d.setTextContent(_,t.text),r(g)&&r(c=g.hook)&&r(c=c.postpatch)&&c(e,t)}}}function j(e,t,o){if(a(o)&&r(e.parent))e.parent.data.pendingInsert=t;else for(var n=0;n<t.length;++n)t[n].data.hook.insert(t[n])}var C=u("attrs,class,staticClass,staticStyle,key");function E(e,t,o,n){var i,l=t.tag,s=t.data,d=t.children;if(n=n||s&&s.pre,t.elm=e,a(t.isComment)&&r(t.asyncFactory))return t.isAsyncPlaceholder=!0,!0;if(r(s)&&(r(i=s.hook)&&r(i=i.init)&&i(t,!0),r(i=t.componentInstance)))return _(t,o),!0;if(r(l)){if(r(d))if(e.hasChildNodes())if(r(i=s)&&r(i=i.domProps)&&r(i=i.innerHTML)){if(i!==e.innerHTML)return!1}else{for(var m=!0,f=e.firstChild,c=0;c<d.length;c++){if(!f||!E(f,d[c],o,n)){m=!1;break}f=f.nextSibling}if(!m||f)return!1}else g(t,d,o);if(r(s)){var p=!1;for(var u in s)if(!C(u)){p=!0,h(t,o);break}!p&&s.class&&nt(s.class)}}else e.data!==t.text&&(e.data=t.text);return!0}return function(e,t,o,l){if(!i(t)){var s,m=!1,_=[];if(i(e))m=!0,f(t,_);else{var c=r(e.nodeType);if(!c&&rn(e,t))k(e,t,_,null,null,l);else{if(c){if(1===e.nodeType&&e.hasAttribute(N)&&(e.removeAttribute(N),o=!0),a(o)&&E(e,t,_))return j(t,_,!0),e;s=e,e=new pe(d.tagName(s).toLowerCase(),{},[],void 0,s)}var g=e.elm,u=d.parentNode(g);if(f(t,_,g._leaveCb?null:u,d.nextSibling(g)),r(t.parent))for(var h=t.parent,b=p(t);h;){for(var x=0;x<n.destroy.length;++x)n.destroy[x](h);if(h.elm=t.elm,b){for(var v=0;v<n.create.length;++v)n.create[v](on,h);var F=h.data.hook.insert;if(F.merged)for(var C=1;C<F.fns.length;C++)F.fns[C]()}else tn(h);h=h.parent}r(u)?w(0,[e],0,0):r(e.tag)&&y(e)}}return j(t,_,m),t.elm}r(e)&&y(e)}}({nodeOps:$o,modules:[hn,yn,An,Mn,Gn,V?{create:pi,activate:pi,remove:function(e,t){!0!==e.data.show?_i(e,t):t()}}:{}].concat(cn)});J&&document.addEventListener("selectionchange",(function(){var e=document.activeElement;e&&e.vmodel&&ki(e,"input")}));var hi={inserted:function(e,t,o,n){"select"===o.tag?(n.elm&&!n.elm._vOptions?lt(o,"postpatch",(function(){hi.componentUpdated(e,t,o)})):bi(e,t,o.context),e._vOptions=[].map.call(e.options,wi)):("textarea"===o.tag||Xo(e.type))&&(e._vModifiers=t.modifiers,t.modifiers.lazy||(e.addEventListener("compositionstart",vi),e.addEventListener("compositionend",Fi),e.addEventListener("change",Fi),J&&(e.vmodel=!0)))},componentUpdated:function(e,t,o){if("select"===o.tag){bi(e,t,o.context);var n=e._vOptions,i=e._vOptions=[].map.call(e.options,wi);if(i.some((function(e,t){return!z(e,n[t])})))(e.multiple?t.value.some((function(e){return yi(e,i)})):t.value!==t.oldValue&&yi(t.value,i))&&ki(e,"change")}}};function bi(e,t,o){xi(e,t,o),(Z||X)&&setTimeout((function(){xi(e,t,o)}),0)}function xi(e,t,o){var n=t.value,i=e.multiple;if(!i||Array.isArray(n)){for(var r,a,l=0,s=e.options.length;l<s;l++)if(a=e.options[l],i)r=B(n,wi(a))>-1,a.selected!==r&&(a.selected=r);else if(z(wi(a),n))return void(e.selectedIndex!==l&&(e.selectedIndex=l));i||(e.selectedIndex=-1)}}function yi(e,t){return t.every((function(t){return!z(t,e)}))}function wi(e){return"_value"in e?e._value:e.value}function vi(e){e.target.composing=!0}function Fi(e){e.target.composing&&(e.target.composing=!1,ki(e.target,"input"))}function ki(e,t){var o=document.createEvent("HTMLEvents");o.initEvent(t,!0,!0),e.dispatchEvent(o)}function ji(e){return!e.componentInstance||e.data&&e.data.transition?e:ji(e.componentInstance._vnode)}var Ci={model:hi,show:{bind:function(e,t,o){var n=t.value,i=(o=ji(o)).data&&o.data.transition,r=e.__vOriginalDisplay="none"===e.style.display?"":e.style.display;n&&i?(o.data.show=!0,fi(o,(function(){e.style.display=r}))):e.style.display=n?r:"none"},update:function(e,t,o){var n=t.value;!n!=!t.oldValue&&((o=ji(o)).data&&o.data.transition?(o.data.show=!0,n?fi(o,(function(){e.style.display=e.__vOriginalDisplay})):_i(o,(function(){e.style.display="none"}))):e.style.display=n?e.__vOriginalDisplay:"none")},unbind:function(e,t,o,n,i){i||(e.style.display=e.__vOriginalDisplay)}}},Ei={name:String,appear:Boolean,css:Boolean,mode:String,type:String,enterClass:String,leaveClass:String,enterToClass:String,leaveToClass:String,enterActiveClass:String,leaveActiveClass:String,appearClass:String,appearActiveClass:String,appearToClass:String,duration:[Number,String,Object]};function Di(e){var t=e&&e.componentOptions;return t&&t.Ctor.options.abstract?Di(Vt(t.children)):e}function Ai(e){var t={},o=e.$options;for(var n in o.propsData)t[n]=e[n];var i=o._parentListeners;for(var r in i)t[F(r)]=i[r];return t}function Si(e,t){if(/\d-keep-alive$/.test(t.tag))return e("keep-alive",{props:t.componentOptions.propsData})}var Ti=function(e){return e.tag||Wt(e)},Mi=function(e){return"show"===e.name},qi={name:"transition",props:Ei,abstract:!0,render:function(e){var t=this,o=this.$slots.default;if(o&&(o=o.filter(Ti)).length){0;var n=this.mode;0;var i=o[0];if(function(e){for(;e=e.parent;)if(e.data.transition)return!0}(this.$vnode))return i;var r=Di(i);if(!r)return i;if(this._leaving)return Si(e,i);var a="__transition-"+this._uid+"-";r.key=null==r.key?r.isComment?a+"comment":a+r.tag:l(r.key)?0===String(r.key).indexOf(a)?r.key:a+r.key:r.key;var s=(r.data||(r.data={})).transition=Ai(this),d=this._vnode,m=Di(d);if(r.data.directives&&r.data.directives.some(Mi)&&(r.data.show=!0),m&&m.data&&!function(e,t){return t.key===e.key&&t.tag===e.tag}(r,m)&&!Wt(m)&&(!m.componentInstance||!m.componentInstance._vnode.isComment)){var f=m.data.transition=A({},s);if("out-in"===n)return this._leaving=!0,lt(f,"afterLeave",(function(){t._leaving=!1,t.$forceUpdate()})),Si(e,i);if("in-out"===n){if(Wt(r))return d;var _,c=function(){_()};lt(s,"afterEnter",c),lt(s,"enterCancelled",c),lt(f,"delayLeave",(function(e){_=e}))}}return i}}},zi=A({tag:String,moveClass:String},Ei);function Bi(e){e.elm._moveCb&&e.elm._moveCb(),e.elm._enterCb&&e.elm._enterCb()}function Oi(e){e.data.newPos=e.elm.getBoundingClientRect()}function Ni(e){var t=e.data.pos,o=e.data.newPos,n=t.left-o.left,i=t.top-o.top;if(n||i){e.data.moved=!0;var r=e.elm.style;r.transform=r.WebkitTransform="translate("+n+"px,"+i+"px)",r.transitionDuration="0s"}}delete zi.mode;var Pi={Transition:qi,TransitionGroup:{props:zi,beforeMount:function(){var e=this,t=this._update;this._update=function(o,n){var i=Xt(e);e.__patch__(e._vnode,e.kept,!1,!0),e._vnode=e.kept,i(),t.call(e,o,n)}},render:function(e){for(var t=this.tag||this.$vnode.data.tag||"span",o=Object.create(null),n=this.prevChildren=this.children,i=this.$slots.default||[],r=this.children=[],a=Ai(this),l=0;l<i.length;l++){var s=i[l];if(s.tag)if(null!=s.key&&0!==String(s.key).indexOf("__vlist"))r.push(s),o[s.key]=s,(s.data||(s.data={})).transition=a;else;}if(n){for(var d=[],m=[],f=0;f<n.length;f++){var _=n[f];_.data.transition=a,_.data.pos=_.elm.getBoundingClientRect(),o[_.key]?d.push(_):m.push(_)}this.kept=e(t,null,d),this.removed=m}return e(t,null,r)},updated:function(){var e=this.prevChildren,t=this.moveClass||(this.name||"v")+"-move";e.length&&this.hasMove(e[0].elm,t)&&(e.forEach(Bi),e.forEach(Oi),e.forEach(Ni),this._reflow=document.body.offsetHeight,e.forEach((function(e){if(e.data.moved){var o=e.elm,n=o.style;ii(o,t),n.transform=n.WebkitTransform=n.transitionDuration="",o.addEventListener($n,o._moveCb=function e(n){n&&n.target!==o||n&&!/transform$/.test(n.propertyName)||(o.removeEventListener($n,e),o._moveCb=null,ri(o,t))})}})))},methods:{hasMove:function(e,t){if(!Qn)return!1;if(this._hasMove)return this._hasMove;var o=e.cloneNode();e._transitionClasses&&e._transitionClasses.forEach((function(e){Vn(o,e)})),Wn(o,t),o.style.display="none",this.$el.appendChild(o);var n=si(o);return this.$el.removeChild(o),this._hasMove=n.hasTransform}}}};jo.config.mustUseProp=function(e,t,o){return"value"===o&&zo(e)&&"button"!==t||"selected"===o&&"option"===e||"checked"===o&&"input"===e||"muted"===o&&"video"===e},jo.config.isReservedTag=Zo,jo.config.isReservedAttr=qo,jo.config.getTagNamespace=function(e){return Qo(e)?"svg":"math"===e?"math":void 0},jo.config.isUnknownElement=function(e){if(!V)return!0;if(Zo(e))return!1;if(e=e.toLowerCase(),null!=Jo[e])return Jo[e];var t=document.createElement(e);return e.indexOf("-")>-1?Jo[e]=t.constructor===window.HTMLUnknownElement||t.constructor===window.HTMLElement:Jo[e]=/HTMLUnknownElement/.test(t.toString())},A(jo.options.directives,Ci),A(jo.options.components,Pi),jo.prototype.__patch__=V?ui:T,jo.prototype.$mount=function(e,t){return function(e,t,o){var n;return e.$el=t,e.$options.render||(e.$options.render=he),to(e,"beforeMount"),n=function(){e._update(e._render(),o)},new go(e,n,T,{before:function(){e._isMounted&&!e._isDestroyed&&to(e,"beforeUpdate")}},!0),o=!1,null==e.$vnode&&(e._isMounted=!0,to(e,"mounted")),e}(this,e=e&&V?function(e){if("string"==typeof e){var t=document.querySelector(e);return t||document.createElement("div")}return e}(e):void 0,t)},V&&setTimeout((function(){R.devtools&&re&&re.emit("init",jo)}),0),t.a=jo}).call(this,o(7),o(60).setImmediate)},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var n=o(119),i=(0,n.withParams)({type:"required"},n.req);t.default=i},function(e,t){var o;o=function(){return this}();try{o=o||new Function("return this")()}catch(e){"object"==typeof window&&(o=window)}e.exports=o},function(e,t,o){"use strict";var n=o(124),i=o(125),r=o(126),a=o(47),l=o(127),s=o(129);e.exports=g,g.escape=function(e){return g(e,{escapeOnly:!0,useNamedReferences:!0})};var d={}.hasOwnProperty,m=function(){var e,t={};for(e in n)t[n[e]]=e;return t}(),f=h(['"',"'","<",">","&","`"]),_=/[\uD800-\uDBFF][\uDC00-\uDFFF]/g,c=/[\x01-\t\x0B\f\x0E-\x1F\x7F\x81\x8D\x8F\x90\x9D\xA0-\uFFFF]/g;function g(e,t){var o=t||{},n=o.subset,r=n?h(n):f,a=o.escapeOnly,g=o.omitOptionalSemicolons;return e=e.replace(r,b),n||a?e:e.replace(_,(function(e,t,o){return p(1024*(e.charCodeAt(0)-55296)+e.charCodeAt(1)-56320+65536,o.charAt(t+2),g)})).replace(c,b);function b(e,t,n){return function(e,t,o){var n,r,a,f,_=o.useShortestReferences,c=o.omitOptionalSemicolons;(_||o.useNamedReferences)&&d.call(m,e)&&(n=function(e,t,o,n){var r="&"+e;if(o&&d.call(i,e)&&-1===s.indexOf(e)&&(!n||t&&"="!==t&&!l(t)))return r;return r+";"}(m[e],t,c,o.attribute));!_&&n||(r=e.charCodeAt(0),a=p(r,t,c),_&&(f=u(r,t,c)).length<a.length&&(a=f));if(n&&(!_||n.length<a.length))return n;return a}(e,n.charAt(t+1),o)}}function p(e,t,o){var n="&#x"+e.toString(16).toUpperCase();return o&&t&&!r(t)?n:n+";"}function u(e,t,o){var n="&#"+String(e);return o&&t&&!a(t)?n:n+";"}function h(e){return new RegExp("["+e.join("")+"]","g")}},function(e,t,o){var n,i,r,a,l;n=o(63),i=o(39).utf8,r=o(64),a=o(39).bin,(l=function(e,t){e.constructor==String?e=t&&"binary"===t.encoding?a.stringToBytes(e):i.stringToBytes(e):r(e)?e=Array.prototype.slice.call(e,0):Array.isArray(e)||(e=e.toString());for(var o=n.bytesToWords(e),s=8*e.length,d=1732584193,m=-271733879,f=-1732584194,_=271733878,c=0;c<o.length;c++)o[c]=16711935&(o[c]<<8|o[c]>>>24)|4278255360&(o[c]<<24|o[c]>>>8);o[s>>>5]|=128<<s%32,o[14+(s+64>>>9<<4)]=s;var g=l._ff,p=l._gg,u=l._hh,h=l._ii;for(c=0;c<o.length;c+=16){var b=d,x=m,y=f,w=_;d=g(d,m,f,_,o[c+0],7,-680876936),_=g(_,d,m,f,o[c+1],12,-389564586),f=g(f,_,d,m,o[c+2],17,606105819),m=g(m,f,_,d,o[c+3],22,-1044525330),d=g(d,m,f,_,o[c+4],7,-176418897),_=g(_,d,m,f,o[c+5],12,1200080426),f=g(f,_,d,m,o[c+6],17,-1473231341),m=g(m,f,_,d,o[c+7],22,-45705983),d=g(d,m,f,_,o[c+8],7,1770035416),_=g(_,d,m,f,o[c+9],12,-1958414417),f=g(f,_,d,m,o[c+10],17,-42063),m=g(m,f,_,d,o[c+11],22,-1990404162),d=g(d,m,f,_,o[c+12],7,1804603682),_=g(_,d,m,f,o[c+13],12,-40341101),f=g(f,_,d,m,o[c+14],17,-1502002290),d=p(d,m=g(m,f,_,d,o[c+15],22,1236535329),f,_,o[c+1],5,-165796510),_=p(_,d,m,f,o[c+6],9,-1069501632),f=p(f,_,d,m,o[c+11],14,643717713),m=p(m,f,_,d,o[c+0],20,-373897302),d=p(d,m,f,_,o[c+5],5,-701558691),_=p(_,d,m,f,o[c+10],9,38016083),f=p(f,_,d,m,o[c+15],14,-660478335),m=p(m,f,_,d,o[c+4],20,-405537848),d=p(d,m,f,_,o[c+9],5,568446438),_=p(_,d,m,f,o[c+14],9,-1019803690),f=p(f,_,d,m,o[c+3],14,-187363961),m=p(m,f,_,d,o[c+8],20,1163531501),d=p(d,m,f,_,o[c+13],5,-1444681467),_=p(_,d,m,f,o[c+2],9,-51403784),f=p(f,_,d,m,o[c+7],14,1735328473),d=u(d,m=p(m,f,_,d,o[c+12],20,-1926607734),f,_,o[c+5],4,-378558),_=u(_,d,m,f,o[c+8],11,-2022574463),f=u(f,_,d,m,o[c+11],16,1839030562),m=u(m,f,_,d,o[c+14],23,-35309556),d=u(d,m,f,_,o[c+1],4,-1530992060),_=u(_,d,m,f,o[c+4],11,1272893353),f=u(f,_,d,m,o[c+7],16,-155497632),m=u(m,f,_,d,o[c+10],23,-1094730640),d=u(d,m,f,_,o[c+13],4,681279174),_=u(_,d,m,f,o[c+0],11,-358537222),f=u(f,_,d,m,o[c+3],16,-722521979),m=u(m,f,_,d,o[c+6],23,76029189),d=u(d,m,f,_,o[c+9],4,-640364487),_=u(_,d,m,f,o[c+12],11,-421815835),f=u(f,_,d,m,o[c+15],16,530742520),d=h(d,m=u(m,f,_,d,o[c+2],23,-995338651),f,_,o[c+0],6,-198630844),_=h(_,d,m,f,o[c+7],10,1126891415),f=h(f,_,d,m,o[c+14],15,-1416354905),m=h(m,f,_,d,o[c+5],21,-57434055),d=h(d,m,f,_,o[c+12],6,1700485571),_=h(_,d,m,f,o[c+3],10,-1894986606),f=h(f,_,d,m,o[c+10],15,-1051523),m=h(m,f,_,d,o[c+1],21,-2054922799),d=h(d,m,f,_,o[c+8],6,1873313359),_=h(_,d,m,f,o[c+15],10,-30611744),f=h(f,_,d,m,o[c+6],15,-1560198380),m=h(m,f,_,d,o[c+13],21,1309151649),d=h(d,m,f,_,o[c+4],6,-145523070),_=h(_,d,m,f,o[c+11],10,-1120210379),f=h(f,_,d,m,o[c+2],15,718787259),m=h(m,f,_,d,o[c+9],21,-343485551),d=d+b>>>0,m=m+x>>>0,f=f+y>>>0,_=_+w>>>0}return n.endian([d,m,f,_])})._ff=function(e,t,o,n,i,r,a){var l=e+(t&o|~t&n)+(i>>>0)+a;return(l<<r|l>>>32-r)+t},l._gg=function(e,t,o,n,i,r,a){var l=e+(t&n|o&~n)+(i>>>0)+a;return(l<<r|l>>>32-r)+t},l._hh=function(e,t,o,n,i,r,a){var l=e+(t^o^n)+(i>>>0)+a;return(l<<r|l>>>32-r)+t},l._ii=function(e,t,o,n,i,r,a){var l=e+(o^(t|~n))+(i>>>0)+a;return(l<<r|l>>>32-r)+t},l._blocksize=16,l._digestsize=16,e.exports=function(e,t){if(null==e)throw new Error("Illegal argument "+e);var o=n.wordsToBytes(l(e,t));return t&&t.asBytes?o:t&&t.asString?a.bytesToString(o):n.bytesToHex(o)}},function(e,t,o){"use strict";(function(e){var n=t;function i(e,t,o){for(var n=Object.keys(t),i=0;i<n.length;++i)void 0!==e[n[i]]&&o||(e[n[i]]=t[n[i]]);return e}function r(e){function t(e,o){if(!(this instanceof t))return new t(e,o);Object.defineProperty(this,"message",{get:function(){return e}}),Error.captureStackTrace?Error.captureStackTrace(this,t):Object.defineProperty(this,"stack",{value:(new Error).stack||""}),o&&i(this,o)}return(t.prototype=Object.create(Error.prototype)).constructor=t,Object.defineProperty(t.prototype,"name",{get:function(){return e}}),t.prototype.toString=function(){return this.name+": "+this.message},t}n.asPromise=o(66),n.base64=o(67),n.EventEmitter=o(68),n.float=o(69),n.inquire=o(70),n.utf8=o(71),n.pool=o(72),n.LongBits=o(73),n.global="undefined"!=typeof window&&window||void 0!==e&&e||"undefined"!=typeof self&&self||this,n.emptyArray=Object.freeze?Object.freeze([]):[],n.emptyObject=Object.freeze?Object.freeze({}):{},n.isNode=Boolean(n.global.process&&n.global.process.versions&&n.global.process.versions.node),n.isInteger=Number.isInteger||function(e){return"number"==typeof e&&isFinite(e)&&Math.floor(e)===e},n.isString=function(e){return"string"==typeof e||e instanceof String},n.isObject=function(e){return e&&"object"==typeof e},n.isset=n.isSet=function(e,t){var o=e[t];return!(null==o||!e.hasOwnProperty(t))&&("object"!=typeof o||(Array.isArray(o)?o.length:Object.keys(o).length)>0)},n.Buffer=function(){try{var e=n.inquire("buffer").Buffer;return e.prototype.utf8Write?e:null}catch(e){return null}}(),n._Buffer_from=null,n._Buffer_allocUnsafe=null,n.newBuffer=function(e){return"number"==typeof e?n.Buffer?n._Buffer_allocUnsafe(e):new n.Array(e):n.Buffer?n._Buffer_from(e):"undefined"==typeof Uint8Array?e:new Uint8Array(e)},n.Array="undefined"!=typeof Uint8Array?Uint8Array:Array,n.Long=n.global.dcodeIO&&n.global.dcodeIO.Long||n.global.Long||n.inquire("long"),n.key2Re=/^true|false|0|1$/,n.key32Re=/^-?(?:0|[1-9][0-9]*)$/,n.key64Re=/^(?:[\\x00-\\xff]{8}|-?(?:0|[1-9][0-9]*))$/,n.longToHash=function(e){return e?n.LongBits.from(e).toHash():n.LongBits.zeroHash},n.longFromHash=function(e,t){var o=n.LongBits.fromHash(e);return n.Long?n.Long.fromBits(o.lo,o.hi,t):o.toNumber(Boolean(t))},n.merge=i,n.lcFirst=function(e){return e.charAt(0).toLowerCase()+e.substring(1)},n.newError=r,n.ProtocolError=r("ProtocolError"),n.oneOfGetter=function(e){for(var t={},o=0;o<e.length;++o)t[e[o]]=1;return function(){for(var e=Object.keys(this),o=e.length-1;o>-1;--o)if(1===t[e[o]]&&void 0!==this[e[o]]&&null!==this[e[o]])return e[o]}},n.oneOfSetter=function(e){return function(t){for(var o=0;o<e.length;++o)e[o]!==t&&delete this[e[o]]}},n.toJSONOptions={longs:String,enums:String,bytes:String,json:!0},n._configure=function(){var e=n.Buffer;e?(n._Buffer_from=e.from!==Uint8Array.from&&e.from||function(t,o){return new e(t,o)},n._Buffer_allocUnsafe=e.allocUnsafe||function(t){return new e(t)}):n._Buffer_from=n._Buffer_allocUnsafe=null}}).call(this,o(7))},function(e,t,o){e.exports=function(e){var t={};function o(n){if(t[n])return t[n].exports;var i=t[n]={i:n,l:!1,exports:{}};return e[n].call(i.exports,i,i.exports,o),i.l=!0,i.exports}return o.m=e,o.c=t,o.d=function(e,t,n){o.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:n})},o.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},o.t=function(e,t){if(1&t&&(e=o(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var n=Object.create(null);if(o.r(n),Object.defineProperty(n,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var i in e)o.d(n,i,function(t){return e[t]}.bind(null,i));return n},o.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return o.d(t,"a",t),t},o.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},o.p="",o(o.s=90)}({17:function(e,t,o){"use strict";t.__esModule=!0,t.default=void 0;var n=o(18),i=function(){function e(){}return e.getFirstMatch=function(e,t){var o=t.match(e);return o&&o.length>0&&o[1]||""},e.getSecondMatch=function(e,t){var o=t.match(e);return o&&o.length>1&&o[2]||""},e.matchAndReturnConst=function(e,t,o){if(e.test(t))return o},e.getWindowsVersionName=function(e){switch(e){case"NT":return"NT";case"XP":return"XP";case"NT 5.0":return"2000";case"NT 5.1":return"XP";case"NT 5.2":return"2003";case"NT 6.0":return"Vista";case"NT 6.1":return"7";case"NT 6.2":return"8";case"NT 6.3":return"8.1";case"NT 10.0":return"10";default:return}},e.getMacOSVersionName=function(e){var t=e.split(".").splice(0,2).map((function(e){return parseInt(e,10)||0}));if(t.push(0),10===t[0])switch(t[1]){case 5:return"Leopard";case 6:return"Snow Leopard";case 7:return"Lion";case 8:return"Mountain Lion";case 9:return"Mavericks";case 10:return"Yosemite";case 11:return"El Capitan";case 12:return"Sierra";case 13:return"High Sierra";case 14:return"Mojave";case 15:return"Catalina";default:return}},e.getAndroidVersionName=function(e){var t=e.split(".").splice(0,2).map((function(e){return parseInt(e,10)||0}));if(t.push(0),!(1===t[0]&&t[1]<5))return 1===t[0]&&t[1]<6?"Cupcake":1===t[0]&&t[1]>=6?"Donut":2===t[0]&&t[1]<2?"Eclair":2===t[0]&&2===t[1]?"Froyo":2===t[0]&&t[1]>2?"Gingerbread":3===t[0]?"Honeycomb":4===t[0]&&t[1]<1?"Ice Cream Sandwich":4===t[0]&&t[1]<4?"Jelly Bean":4===t[0]&&t[1]>=4?"KitKat":5===t[0]?"Lollipop":6===t[0]?"Marshmallow":7===t[0]?"Nougat":8===t[0]?"Oreo":9===t[0]?"Pie":void 0},e.getVersionPrecision=function(e){return e.split(".").length},e.compareVersions=function(t,o,n){void 0===n&&(n=!1);var i=e.getVersionPrecision(t),r=e.getVersionPrecision(o),a=Math.max(i,r),l=0,s=e.map([t,o],(function(t){var o=a-e.getVersionPrecision(t),n=t+new Array(o+1).join(".0");return e.map(n.split("."),(function(e){return new Array(20-e.length).join("0")+e})).reverse()}));for(n&&(l=a-Math.min(i,r)),a-=1;a>=l;){if(s[0][a]>s[1][a])return 1;if(s[0][a]===s[1][a]){if(a===l)return 0;a-=1}else if(s[0][a]<s[1][a])return-1}},e.map=function(e,t){var o,n=[];if(Array.prototype.map)return Array.prototype.map.call(e,t);for(o=0;o<e.length;o+=1)n.push(t(e[o]));return n},e.getBrowserAlias=function(e){return n.BROWSER_ALIASES_MAP[e]},e.getBrowserTypeByAlias=function(e){return n.BROWSER_MAP[e]||""},e}();t.default=i,e.exports=t.default},18:function(e,t,o){"use strict";t.__esModule=!0,t.ENGINE_MAP=t.OS_MAP=t.PLATFORMS_MAP=t.BROWSER_MAP=t.BROWSER_ALIASES_MAP=void 0,t.BROWSER_ALIASES_MAP={"Amazon Silk":"amazon_silk","Android Browser":"android",Bada:"bada",BlackBerry:"blackberry",Chrome:"chrome",Chromium:"chromium",Epiphany:"epiphany",Firefox:"firefox",Focus:"focus",Generic:"generic","Google Search":"google_search",Googlebot:"googlebot","Internet Explorer":"ie","K-Meleon":"k_meleon",Maxthon:"maxthon","Microsoft Edge":"edge","MZ Browser":"mz","NAVER Whale Browser":"naver",Opera:"opera","Opera Coast":"opera_coast",PhantomJS:"phantomjs",Puffin:"puffin",QupZilla:"qupzilla",QQ:"qq",QQLite:"qqlite",Safari:"safari",Sailfish:"sailfish","Samsung Internet for Android":"samsung_internet",SeaMonkey:"seamonkey",Sleipnir:"sleipnir",Swing:"swing",Tizen:"tizen","UC Browser":"uc",Vivaldi:"vivaldi","WebOS Browser":"webos",WeChat:"wechat","Yandex Browser":"yandex",Roku:"roku"},t.BROWSER_MAP={amazon_silk:"Amazon Silk",android:"Android Browser",bada:"Bada",blackberry:"BlackBerry",chrome:"Chrome",chromium:"Chromium",epiphany:"Epiphany",firefox:"Firefox",focus:"Focus",generic:"Generic",googlebot:"Googlebot",google_search:"Google Search",ie:"Internet Explorer",k_meleon:"K-Meleon",maxthon:"Maxthon",edge:"Microsoft Edge",mz:"MZ Browser",naver:"NAVER Whale Browser",opera:"Opera",opera_coast:"Opera Coast",phantomjs:"PhantomJS",puffin:"Puffin",qupzilla:"QupZilla",qq:"QQ Browser",qqlite:"QQ Browser Lite",safari:"Safari",sailfish:"Sailfish",samsung_internet:"Samsung Internet for Android",seamonkey:"SeaMonkey",sleipnir:"Sleipnir",swing:"Swing",tizen:"Tizen",uc:"UC Browser",vivaldi:"Vivaldi",webos:"WebOS Browser",wechat:"WeChat",yandex:"Yandex Browser"},t.PLATFORMS_MAP={tablet:"tablet",mobile:"mobile",desktop:"desktop",tv:"tv"},t.OS_MAP={WindowsPhone:"Windows Phone",Windows:"Windows",MacOS:"macOS",iOS:"iOS",Android:"Android",WebOS:"WebOS",BlackBerry:"BlackBerry",Bada:"Bada",Tizen:"Tizen",Linux:"Linux",ChromeOS:"Chrome OS",PlayStation4:"PlayStation 4",Roku:"Roku"},t.ENGINE_MAP={EdgeHTML:"EdgeHTML",Blink:"Blink",Trident:"Trident",Presto:"Presto",Gecko:"Gecko",WebKit:"WebKit"}},90:function(e,t,o){"use strict";t.__esModule=!0,t.default=void 0;var n,i=(n=o(91))&&n.__esModule?n:{default:n},r=o(18);function a(e,t){for(var o=0;o<t.length;o++){var n=t[o];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}var l=function(){function e(){}var t,o;return e.getParser=function(e,t){if(void 0===t&&(t=!1),"string"!=typeof e)throw new Error("UserAgent should be a string");return new i.default(e,t)},e.parse=function(e){return new i.default(e).getResult()},t=e,(o=[{key:"BROWSER_MAP",get:function(){return r.BROWSER_MAP}},{key:"ENGINE_MAP",get:function(){return r.ENGINE_MAP}},{key:"OS_MAP",get:function(){return r.OS_MAP}},{key:"PLATFORMS_MAP",get:function(){return r.PLATFORMS_MAP}}])&&a(t,o),e}();t.default=l,e.exports=t.default},91:function(e,t,o){"use strict";t.__esModule=!0,t.default=void 0;var n=s(o(92)),i=s(o(93)),r=s(o(94)),a=s(o(95)),l=s(o(17));function s(e){return e&&e.__esModule?e:{default:e}}var d=function(){function e(e,t){if(void 0===t&&(t=!1),null==e||""===e)throw new Error("UserAgent parameter can't be empty");this._ua=e,this.parsedResult={},!0!==t&&this.parse()}var t=e.prototype;return t.getUA=function(){return this._ua},t.test=function(e){return e.test(this._ua)},t.parseBrowser=function(){var e=this;this.parsedResult.browser={};var t=n.default.find((function(t){if("function"==typeof t.test)return t.test(e);if(t.test instanceof Array)return t.test.some((function(t){return e.test(t)}));throw new Error("Browser's test function is not valid")}));return t&&(this.parsedResult.browser=t.describe(this.getUA())),this.parsedResult.browser},t.getBrowser=function(){return this.parsedResult.browser?this.parsedResult.browser:this.parseBrowser()},t.getBrowserName=function(e){return e?String(this.getBrowser().name).toLowerCase()||"":this.getBrowser().name||""},t.getBrowserVersion=function(){return this.getBrowser().version},t.getOS=function(){return this.parsedResult.os?this.parsedResult.os:this.parseOS()},t.parseOS=function(){var e=this;this.parsedResult.os={};var t=i.default.find((function(t){if("function"==typeof t.test)return t.test(e);if(t.test instanceof Array)return t.test.some((function(t){return e.test(t)}));throw new Error("Browser's test function is not valid")}));return t&&(this.parsedResult.os=t.describe(this.getUA())),this.parsedResult.os},t.getOSName=function(e){var t=this.getOS().name;return e?String(t).toLowerCase()||"":t||""},t.getOSVersion=function(){return this.getOS().version},t.getPlatform=function(){return this.parsedResult.platform?this.parsedResult.platform:this.parsePlatform()},t.getPlatformType=function(e){void 0===e&&(e=!1);var t=this.getPlatform().type;return e?String(t).toLowerCase()||"":t||""},t.parsePlatform=function(){var e=this;this.parsedResult.platform={};var t=r.default.find((function(t){if("function"==typeof t.test)return t.test(e);if(t.test instanceof Array)return t.test.some((function(t){return e.test(t)}));throw new Error("Browser's test function is not valid")}));return t&&(this.parsedResult.platform=t.describe(this.getUA())),this.parsedResult.platform},t.getEngine=function(){return this.parsedResult.engine?this.parsedResult.engine:this.parseEngine()},t.getEngineName=function(e){return e?String(this.getEngine().name).toLowerCase()||"":this.getEngine().name||""},t.parseEngine=function(){var e=this;this.parsedResult.engine={};var t=a.default.find((function(t){if("function"==typeof t.test)return t.test(e);if(t.test instanceof Array)return t.test.some((function(t){return e.test(t)}));throw new Error("Browser's test function is not valid")}));return t&&(this.parsedResult.engine=t.describe(this.getUA())),this.parsedResult.engine},t.parse=function(){return this.parseBrowser(),this.parseOS(),this.parsePlatform(),this.parseEngine(),this},t.getResult=function(){return Object.assign({},this.parsedResult)},t.satisfies=function(e){var t=this,o={},n=0,i={},r=0;if(Object.keys(e).forEach((function(t){var a=e[t];"string"==typeof a?(i[t]=a,r+=1):"object"==typeof a&&(o[t]=a,n+=1)})),n>0){var a=Object.keys(o),l=a.find((function(e){return t.isOS(e)}));if(l){var s=this.satisfies(o[l]);if(void 0!==s)return s}var d=a.find((function(e){return t.isPlatform(e)}));if(d){var m=this.satisfies(o[d]);if(void 0!==m)return m}}if(r>0){var f=Object.keys(i).find((function(e){return t.isBrowser(e,!0)}));if(void 0!==f)return this.compareVersion(i[f])}},t.isBrowser=function(e,t){void 0===t&&(t=!1);var o=this.getBrowserName().toLowerCase(),n=e.toLowerCase(),i=l.default.getBrowserTypeByAlias(n);return t&&i&&(n=i.toLowerCase()),n===o},t.compareVersion=function(e){var t=[0],o=e,n=!1,i=this.getBrowserVersion();if("string"==typeof i)return">"===e[0]||"<"===e[0]?(o=e.substr(1),"="===e[1]?(n=!0,o=e.substr(2)):t=[],">"===e[0]?t.push(1):t.push(-1)):"="===e[0]?o=e.substr(1):"~"===e[0]&&(n=!0,o=e.substr(1)),t.indexOf(l.default.compareVersions(i,o,n))>-1},t.isOS=function(e){return this.getOSName(!0)===String(e).toLowerCase()},t.isPlatform=function(e){return this.getPlatformType(!0)===String(e).toLowerCase()},t.isEngine=function(e){return this.getEngineName(!0)===String(e).toLowerCase()},t.is=function(e){return this.isBrowser(e)||this.isOS(e)||this.isPlatform(e)},t.some=function(e){var t=this;return void 0===e&&(e=[]),e.some((function(e){return t.is(e)}))},e}();t.default=d,e.exports=t.default},92:function(e,t,o){"use strict";t.__esModule=!0,t.default=void 0;var n,i=(n=o(17))&&n.__esModule?n:{default:n},r=/version\/(\d+(\.?_?\d+)+)/i,a=[{test:[/googlebot/i],describe:function(e){var t={name:"Googlebot"},o=i.default.getFirstMatch(/googlebot\/(\d+(\.\d+))/i,e)||i.default.getFirstMatch(r,e);return o&&(t.version=o),t}},{test:[/opera/i],describe:function(e){var t={name:"Opera"},o=i.default.getFirstMatch(r,e)||i.default.getFirstMatch(/(?:opera)[\s/](\d+(\.?_?\d+)+)/i,e);return o&&(t.version=o),t}},{test:[/opr\/|opios/i],describe:function(e){var t={name:"Opera"},o=i.default.getFirstMatch(/(?:opr|opios)[\s/](\S+)/i,e)||i.default.getFirstMatch(r,e);return o&&(t.version=o),t}},{test:[/SamsungBrowser/i],describe:function(e){var t={name:"Samsung Internet for Android"},o=i.default.getFirstMatch(r,e)||i.default.getFirstMatch(/(?:SamsungBrowser)[\s/](\d+(\.?_?\d+)+)/i,e);return o&&(t.version=o),t}},{test:[/Whale/i],describe:function(e){var t={name:"NAVER Whale Browser"},o=i.default.getFirstMatch(r,e)||i.default.getFirstMatch(/(?:whale)[\s/](\d+(?:\.\d+)+)/i,e);return o&&(t.version=o),t}},{test:[/MZBrowser/i],describe:function(e){var t={name:"MZ Browser"},o=i.default.getFirstMatch(/(?:MZBrowser)[\s/](\d+(?:\.\d+)+)/i,e)||i.default.getFirstMatch(r,e);return o&&(t.version=o),t}},{test:[/focus/i],describe:function(e){var t={name:"Focus"},o=i.default.getFirstMatch(/(?:focus)[\s/](\d+(?:\.\d+)+)/i,e)||i.default.getFirstMatch(r,e);return o&&(t.version=o),t}},{test:[/swing/i],describe:function(e){var t={name:"Swing"},o=i.default.getFirstMatch(/(?:swing)[\s/](\d+(?:\.\d+)+)/i,e)||i.default.getFirstMatch(r,e);return o&&(t.version=o),t}},{test:[/coast/i],describe:function(e){var t={name:"Opera Coast"},o=i.default.getFirstMatch(r,e)||i.default.getFirstMatch(/(?:coast)[\s/](\d+(\.?_?\d+)+)/i,e);return o&&(t.version=o),t}},{test:[/yabrowser/i],describe:function(e){var t={name:"Yandex Browser"},o=i.default.getFirstMatch(/(?:yabrowser)[\s/](\d+(\.?_?\d+)+)/i,e)||i.default.getFirstMatch(r,e);return o&&(t.version=o),t}},{test:[/ucbrowser/i],describe:function(e){var t={name:"UC Browser"},o=i.default.getFirstMatch(r,e)||i.default.getFirstMatch(/(?:ucbrowser)[\s/](\d+(\.?_?\d+)+)/i,e);return o&&(t.version=o),t}},{test:[/Maxthon|mxios/i],describe:function(e){var t={name:"Maxthon"},o=i.default.getFirstMatch(r,e)||i.default.getFirstMatch(/(?:Maxthon|mxios)[\s/](\d+(\.?_?\d+)+)/i,e);return o&&(t.version=o),t}},{test:[/epiphany/i],describe:function(e){var t={name:"Epiphany"},o=i.default.getFirstMatch(r,e)||i.default.getFirstMatch(/(?:epiphany)[\s/](\d+(\.?_?\d+)+)/i,e);return o&&(t.version=o),t}},{test:[/puffin/i],describe:function(e){var t={name:"Puffin"},o=i.default.getFirstMatch(r,e)||i.default.getFirstMatch(/(?:puffin)[\s/](\d+(\.?_?\d+)+)/i,e);return o&&(t.version=o),t}},{test:[/sleipnir/i],describe:function(e){var t={name:"Sleipnir"},o=i.default.getFirstMatch(r,e)||i.default.getFirstMatch(/(?:sleipnir)[\s/](\d+(\.?_?\d+)+)/i,e);return o&&(t.version=o),t}},{test:[/k-meleon/i],describe:function(e){var t={name:"K-Meleon"},o=i.default.getFirstMatch(r,e)||i.default.getFirstMatch(/(?:k-meleon)[\s/](\d+(\.?_?\d+)+)/i,e);return o&&(t.version=o),t}},{test:[/micromessenger/i],describe:function(e){var t={name:"WeChat"},o=i.default.getFirstMatch(/(?:micromessenger)[\s/](\d+(\.?_?\d+)+)/i,e)||i.default.getFirstMatch(r,e);return o&&(t.version=o),t}},{test:[/qqbrowser/i],describe:function(e){var t={name:/qqbrowserlite/i.test(e)?"QQ Browser Lite":"QQ Browser"},o=i.default.getFirstMatch(/(?:qqbrowserlite|qqbrowser)[/](\d+(\.?_?\d+)+)/i,e)||i.default.getFirstMatch(r,e);return o&&(t.version=o),t}},{test:[/msie|trident/i],describe:function(e){var t={name:"Internet Explorer"},o=i.default.getFirstMatch(/(?:msie |rv:)(\d+(\.?_?\d+)+)/i,e);return o&&(t.version=o),t}},{test:[/\sedg\//i],describe:function(e){var t={name:"Microsoft Edge"},o=i.default.getFirstMatch(/\sedg\/(\d+(\.?_?\d+)+)/i,e);return o&&(t.version=o),t}},{test:[/edg([ea]|ios)/i],describe:function(e){var t={name:"Microsoft Edge"},o=i.default.getSecondMatch(/edg([ea]|ios)\/(\d+(\.?_?\d+)+)/i,e);return o&&(t.version=o),t}},{test:[/vivaldi/i],describe:function(e){var t={name:"Vivaldi"},o=i.default.getFirstMatch(/vivaldi\/(\d+(\.?_?\d+)+)/i,e);return o&&(t.version=o),t}},{test:[/seamonkey/i],describe:function(e){var t={name:"SeaMonkey"},o=i.default.getFirstMatch(/seamonkey\/(\d+(\.?_?\d+)+)/i,e);return o&&(t.version=o),t}},{test:[/sailfish/i],describe:function(e){var t={name:"Sailfish"},o=i.default.getFirstMatch(/sailfish\s?browser\/(\d+(\.\d+)?)/i,e);return o&&(t.version=o),t}},{test:[/silk/i],describe:function(e){var t={name:"Amazon Silk"},o=i.default.getFirstMatch(/silk\/(\d+(\.?_?\d+)+)/i,e);return o&&(t.version=o),t}},{test:[/phantom/i],describe:function(e){var t={name:"PhantomJS"},o=i.default.getFirstMatch(/phantomjs\/(\d+(\.?_?\d+)+)/i,e);return o&&(t.version=o),t}},{test:[/slimerjs/i],describe:function(e){var t={name:"SlimerJS"},o=i.default.getFirstMatch(/slimerjs\/(\d+(\.?_?\d+)+)/i,e);return o&&(t.version=o),t}},{test:[/blackberry|\bbb\d+/i,/rim\stablet/i],describe:function(e){var t={name:"BlackBerry"},o=i.default.getFirstMatch(r,e)||i.default.getFirstMatch(/blackberry[\d]+\/(\d+(\.?_?\d+)+)/i,e);return o&&(t.version=o),t}},{test:[/(web|hpw)[o0]s/i],describe:function(e){var t={name:"WebOS Browser"},o=i.default.getFirstMatch(r,e)||i.default.getFirstMatch(/w(?:eb)?[o0]sbrowser\/(\d+(\.?_?\d+)+)/i,e);return o&&(t.version=o),t}},{test:[/bada/i],describe:function(e){var t={name:"Bada"},o=i.default.getFirstMatch(/dolfin\/(\d+(\.?_?\d+)+)/i,e);return o&&(t.version=o),t}},{test:[/tizen/i],describe:function(e){var t={name:"Tizen"},o=i.default.getFirstMatch(/(?:tizen\s?)?browser\/(\d+(\.?_?\d+)+)/i,e)||i.default.getFirstMatch(r,e);return o&&(t.version=o),t}},{test:[/qupzilla/i],describe:function(e){var t={name:"QupZilla"},o=i.default.getFirstMatch(/(?:qupzilla)[\s/](\d+(\.?_?\d+)+)/i,e)||i.default.getFirstMatch(r,e);return o&&(t.version=o),t}},{test:[/firefox|iceweasel|fxios/i],describe:function(e){var t={name:"Firefox"},o=i.default.getFirstMatch(/(?:firefox|iceweasel|fxios)[\s/](\d+(\.?_?\d+)+)/i,e);return o&&(t.version=o),t}},{test:[/chromium/i],describe:function(e){var t={name:"Chromium"},o=i.default.getFirstMatch(/(?:chromium)[\s/](\d+(\.?_?\d+)+)/i,e)||i.default.getFirstMatch(r,e);return o&&(t.version=o),t}},{test:[/chrome|crios|crmo/i],describe:function(e){var t={name:"Chrome"},o=i.default.getFirstMatch(/(?:chrome|crios|crmo)\/(\d+(\.?_?\d+)+)/i,e);return o&&(t.version=o),t}},{test:[/GSA/i],describe:function(e){var t={name:"Google Search"},o=i.default.getFirstMatch(/(?:GSA)\/(\d+(\.?_?\d+)+)/i,e);return o&&(t.version=o),t}},{test:function(e){var t=!e.test(/like android/i),o=e.test(/android/i);return t&&o},describe:function(e){var t={name:"Android Browser"},o=i.default.getFirstMatch(r,e);return o&&(t.version=o),t}},{test:[/playstation 4/i],describe:function(e){var t={name:"PlayStation 4"},o=i.default.getFirstMatch(r,e);return o&&(t.version=o),t}},{test:[/safari|applewebkit/i],describe:function(e){var t={name:"Safari"},o=i.default.getFirstMatch(r,e);return o&&(t.version=o),t}},{test:[/.*/i],describe:function(e){var t=-1!==e.search("\\(")?/^(.*)\/(.*)[ \t]\((.*)/:/^(.*)\/(.*) /;return{name:i.default.getFirstMatch(t,e),version:i.default.getSecondMatch(t,e)}}}];t.default=a,e.exports=t.default},93:function(e,t,o){"use strict";t.__esModule=!0,t.default=void 0;var n,i=(n=o(17))&&n.__esModule?n:{default:n},r=o(18),a=[{test:[/Roku\/DVP/],describe:function(e){var t=i.default.getFirstMatch(/Roku\/DVP-(\d+\.\d+)/i,e);return{name:r.OS_MAP.Roku,version:t}}},{test:[/windows phone/i],describe:function(e){var t=i.default.getFirstMatch(/windows phone (?:os)?\s?(\d+(\.\d+)*)/i,e);return{name:r.OS_MAP.WindowsPhone,version:t}}},{test:[/windows/i],describe:function(e){var t=i.default.getFirstMatch(/Windows ((NT|XP)( \d\d?.\d)?)/i,e),o=i.default.getWindowsVersionName(t);return{name:r.OS_MAP.Windows,version:t,versionName:o}}},{test:[/macintosh/i],describe:function(e){var t=i.default.getFirstMatch(/mac os x (\d+(\.?_?\d+)+)/i,e).replace(/[_\s]/g,"."),o=i.default.getMacOSVersionName(t),n={name:r.OS_MAP.MacOS,version:t};return o&&(n.versionName=o),n}},{test:[/(ipod|iphone|ipad)/i],describe:function(e){var t=i.default.getFirstMatch(/os (\d+([_\s]\d+)*) like mac os x/i,e).replace(/[_\s]/g,".");return{name:r.OS_MAP.iOS,version:t}}},{test:function(e){var t=!e.test(/like android/i),o=e.test(/android/i);return t&&o},describe:function(e){var t=i.default.getFirstMatch(/android[\s/-](\d+(\.\d+)*)/i,e),o=i.default.getAndroidVersionName(t),n={name:r.OS_MAP.Android,version:t};return o&&(n.versionName=o),n}},{test:[/(web|hpw)[o0]s/i],describe:function(e){var t=i.default.getFirstMatch(/(?:web|hpw)[o0]s\/(\d+(\.\d+)*)/i,e),o={name:r.OS_MAP.WebOS};return t&&t.length&&(o.version=t),o}},{test:[/blackberry|\bbb\d+/i,/rim\stablet/i],describe:function(e){var t=i.default.getFirstMatch(/rim\stablet\sos\s(\d+(\.\d+)*)/i,e)||i.default.getFirstMatch(/blackberry\d+\/(\d+([_\s]\d+)*)/i,e)||i.default.getFirstMatch(/\bbb(\d+)/i,e);return{name:r.OS_MAP.BlackBerry,version:t}}},{test:[/bada/i],describe:function(e){var t=i.default.getFirstMatch(/bada\/(\d+(\.\d+)*)/i,e);return{name:r.OS_MAP.Bada,version:t}}},{test:[/tizen/i],describe:function(e){var t=i.default.getFirstMatch(/tizen[/\s](\d+(\.\d+)*)/i,e);return{name:r.OS_MAP.Tizen,version:t}}},{test:[/linux/i],describe:function(){return{name:r.OS_MAP.Linux}}},{test:[/CrOS/],describe:function(){return{name:r.OS_MAP.ChromeOS}}},{test:[/PlayStation 4/],describe:function(e){var t=i.default.getFirstMatch(/PlayStation 4[/\s](\d+(\.\d+)*)/i,e);return{name:r.OS_MAP.PlayStation4,version:t}}}];t.default=a,e.exports=t.default},94:function(e,t,o){"use strict";t.__esModule=!0,t.default=void 0;var n,i=(n=o(17))&&n.__esModule?n:{default:n},r=o(18),a=[{test:[/googlebot/i],describe:function(){return{type:"bot",vendor:"Google"}}},{test:[/huawei/i],describe:function(e){var t=i.default.getFirstMatch(/(can-l01)/i,e)&&"Nova",o={type:r.PLATFORMS_MAP.mobile,vendor:"Huawei"};return t&&(o.model=t),o}},{test:[/nexus\s*(?:7|8|9|10).*/i],describe:function(){return{type:r.PLATFORMS_MAP.tablet,vendor:"Nexus"}}},{test:[/ipad/i],describe:function(){return{type:r.PLATFORMS_MAP.tablet,vendor:"Apple",model:"iPad"}}},{test:[/kftt build/i],describe:function(){return{type:r.PLATFORMS_MAP.tablet,vendor:"Amazon",model:"Kindle Fire HD 7"}}},{test:[/silk/i],describe:function(){return{type:r.PLATFORMS_MAP.tablet,vendor:"Amazon"}}},{test:[/tablet(?! pc)/i],describe:function(){return{type:r.PLATFORMS_MAP.tablet}}},{test:function(e){var t=e.test(/ipod|iphone/i),o=e.test(/like (ipod|iphone)/i);return t&&!o},describe:function(e){var t=i.default.getFirstMatch(/(ipod|iphone)/i,e);return{type:r.PLATFORMS_MAP.mobile,vendor:"Apple",model:t}}},{test:[/nexus\s*[0-6].*/i,/galaxy nexus/i],describe:function(){return{type:r.PLATFORMS_MAP.mobile,vendor:"Nexus"}}},{test:[/[^-]mobi/i],describe:function(){return{type:r.PLATFORMS_MAP.mobile}}},{test:function(e){return"blackberry"===e.getBrowserName(!0)},describe:function(){return{type:r.PLATFORMS_MAP.mobile,vendor:"BlackBerry"}}},{test:function(e){return"bada"===e.getBrowserName(!0)},describe:function(){return{type:r.PLATFORMS_MAP.mobile}}},{test:function(e){return"windows phone"===e.getBrowserName()},describe:function(){return{type:r.PLATFORMS_MAP.mobile,vendor:"Microsoft"}}},{test:function(e){var t=Number(String(e.getOSVersion()).split(".")[0]);return"android"===e.getOSName(!0)&&t>=3},describe:function(){return{type:r.PLATFORMS_MAP.tablet}}},{test:function(e){return"android"===e.getOSName(!0)},describe:function(){return{type:r.PLATFORMS_MAP.mobile}}},{test:function(e){return"macos"===e.getOSName(!0)},describe:function(){return{type:r.PLATFORMS_MAP.desktop,vendor:"Apple"}}},{test:function(e){return"windows"===e.getOSName(!0)},describe:function(){return{type:r.PLATFORMS_MAP.desktop}}},{test:function(e){return"linux"===e.getOSName(!0)},describe:function(){return{type:r.PLATFORMS_MAP.desktop}}},{test:function(e){return"playstation 4"===e.getOSName(!0)},describe:function(){return{type:r.PLATFORMS_MAP.tv}}},{test:function(e){return"roku"===e.getOSName(!0)},describe:function(){return{type:r.PLATFORMS_MAP.tv}}}];t.default=a,e.exports=t.default},95:function(e,t,o){"use strict";t.__esModule=!0,t.default=void 0;var n,i=(n=o(17))&&n.__esModule?n:{default:n},r=o(18),a=[{test:function(e){return"microsoft edge"===e.getBrowserName(!0)},describe:function(e){if(/\sedg\//i.test(e))return{name:r.ENGINE_MAP.Blink};var t=i.default.getFirstMatch(/edge\/(\d+(\.?_?\d+)+)/i,e);return{name:r.ENGINE_MAP.EdgeHTML,version:t}}},{test:[/trident/i],describe:function(e){var t={name:r.ENGINE_MAP.Trident},o=i.default.getFirstMatch(/trident\/(\d+(\.?_?\d+)+)/i,e);return o&&(t.version=o),t}},{test:function(e){return e.test(/presto/i)},describe:function(e){var t={name:r.ENGINE_MAP.Presto},o=i.default.getFirstMatch(/presto\/(\d+(\.?_?\d+)+)/i,e);return o&&(t.version=o),t}},{test:function(e){var t=e.test(/gecko/i),o=e.test(/like gecko/i);return t&&!o},describe:function(e){var t={name:r.ENGINE_MAP.Gecko},o=i.default.getFirstMatch(/gecko\/(\d+(\.?_?\d+)+)/i,e);return o&&(t.version=o),t}},{test:[/(apple)?webkit\/537\.36/i],describe:function(){return{name:r.ENGINE_MAP.Blink}}},{test:[/(apple)?webkit/i],describe:function(e){var t={name:r.ENGINE_MAP.WebKit},o=i.default.getFirstMatch(/webkit\/(\d+(\.?_?\d+)+)/i,e);return o&&(t.version=o),t}}];t.default=a,e.exports=t.default}})},function(e,t,o){"use strict";e.exports=o(65)},function(e,t,o){var n=o(102);"string"==typeof n&&(n=[[e.i,n,""]]),n.locals&&(e.exports=n.locals);var i=o(1).default;e.exports.__inject__=function(e){i("4464014f",n,e)}},function(e,t,o){var n=o(104);"string"==typeof n&&(n=[[e.i,n,""]]),n.locals&&(e.exports=n.locals);var i=o(1).default;e.exports.__inject__=function(e){i("1f609eec",n,e)}},function(e,t,o){var n=o(106);"string"==typeof n&&(n=[[e.i,n,""]]),n.locals&&(e.exports=n.locals);var i=o(1).default;e.exports.__inject__=function(e){i("369c3aea",n,e)}},function(e,t,o){var n=o(108);"string"==typeof n&&(n=[[e.i,n,""]]),n.locals&&(e.exports=n.locals);var i=o(1).default;e.exports.__inject__=function(e){i("48f7b5a5",n,e)}},function(e,t,o){var n=o(110);"string"==typeof n&&(n=[[e.i,n,""]]),n.locals&&(e.exports=n.locals);var i=o(1).default;e.exports.__inject__=function(e){i("7a0a8e89",n,e)}},function(e,t,o){var n=o(111);"string"==typeof n&&(n=[[e.i,n,""]]),n.locals&&(e.exports=n.locals);var i=o(1).default;e.exports.__inject__=function(e){i("73451fe6",n,e)}},function(e,t,o){var n=o(113);"string"==typeof n&&(n=[[e.i,n,""]]),n.locals&&(e.exports=n.locals);var i=o(1).default;e.exports.__inject__=function(e){i("17694448",n,e)}},function(e,t,o){var n=o(115);"string"==typeof n&&(n=[[e.i,n,""]]),n.locals&&(e.exports=n.locals);var i=o(1).default;e.exports.__inject__=function(e){i("5bd8624a",n,e)}},function(e,t,o){var n=o(117);"string"==typeof n&&(n=[[e.i,n,""]]),n.locals&&(e.exports=n.locals);var i=o(1).default;e.exports.__inject__=function(e){i("635bb418",n,e)}},function(e,t,o){var n=o(123);"string"==typeof n&&(n=[[e.i,n,""]]),n.locals&&(e.exports=n.locals);var i=o(1).default;e.exports.__inject__=function(e){i("a7787088",n,e)}},function(e,t,o){var n=o(132);"string"==typeof n&&(n=[[e.i,n,""]]),n.locals&&(e.exports=n.locals);var i=o(1).default;e.exports.__inject__=function(e){i("23708ece",n,e)}},function(e,t,o){var n=o(134);"string"==typeof n&&(n=[[e.i,n,""]]),n.locals&&(e.exports=n.locals);var i=o(1).default;e.exports.__inject__=function(e){i("acfc5118",n,e)}},function(e,t,o){var n=o(136);"string"==typeof n&&(n=[[e.i,n,""]]),n.locals&&(e.exports=n.locals);var i=o(1).default;e.exports.__inject__=function(e){i("1305f53a",n,e)}},function(e,t,o){var n=o(138);"string"==typeof n&&(n=[[e.i,n,""]]),n.locals&&(e.exports=n.locals);var i=o(1).default;e.exports.__inject__=function(e){i("91f4a714",n,e)}},function(e,t,o){var n=o(140);"string"==typeof n&&(n=[[e.i,n,""]]),n.locals&&(e.exports=n.locals);var i=o(1).default;e.exports.__inject__=function(e){i("4198683c",n,e)}},function(e,t,o){var n=o(142);"string"==typeof n&&(n=[[e.i,n,""]]),n.locals&&(e.exports=n.locals);var i=o(1).default;e.exports.__inject__=function(e){i("1d719c0c",n,e)}},function(e,t,o){var n=o(144);"string"==typeof n&&(n=[[e.i,n,""]]),n.locals&&(e.exports=n.locals);var i=o(1).default;e.exports.__inject__=function(e){i("3bc564ae",n,e)}},function(e,t,o){var n=o(146);"string"==typeof n&&(n=[[e.i,n,""]]),n.locals&&(e.exports=n.locals);var i=o(1).default;e.exports.__inject__=function(e){i("1a82fb20",n,e)}},function(e,t,o){var n=o(148);"string"==typeof n&&(n=[[e.i,n,""]]),n.locals&&(e.exports=n.locals);var i=o(1).default;e.exports.__inject__=function(e){i("745b40d0",n,e)}},function(e,t,o){var n=o(150);"string"==typeof n&&(n=[[e.i,n,""]]),n.locals&&(e.exports=n.locals);var i=o(1).default;e.exports.__inject__=function(e){i("ee9d2de0",n,e)}},function(e,t){e.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAOEAAADhCAMAAAAJbSJIAAAANlBMVEXz9Pa5vsq2u8jN0dnV2N/o6u7FydPi5Onw8fS+ws3f4ee6v8v29/jY2+Hu7/Ly9PbJztbQ1dxJagBAAAAC60lEQVR4nO3b2ZaCMBREUQbDJOP//2wbEGVIFCHKTa+zH7uVRVmBBJQgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMCpdOzvQQqaq2KmuSrOzQ02lSeRem8rpsQq/ozg72Kj4UkAxEev8awnzs7P1yiIadsfpQXjfZCHhUCzbfmeurdNz6bDRsBWRsB+k0cXxdHjpa0wkTBn3hKnjzRZyEgYk3IeEv2RKWCt1cN9EJ0zjfm7Mq/rAVgUnbLpwnK/zA2tnuQmzJHquuqJq91blJuwmAW8rHbV3q2ITFrOAt7Xz3l2UmrBMlpcHe9fOUhOqRYVhFO/cqtSEy0H6bh/tJ1uhCctqlTB/NSnG9pOt1ISXjxLq825laVFowo9GaRPrF9talJqw3n6macaZ09yi1ISG2cLyriwePwxzi1ITru4s2naxma59TC2KTRjE83FqmQ6yeDaUDS3KTRhMV96h5TTSLD4HQ4uCE9bxePUU5pYL/3mD5o9CcMKgTONc39NNLrV5iK4aNLUoOWHQ38RQtW3nsm6db92i8ISvGBtct+hvwqyzBFxE9DehrcHlQPU1YWNvcNGirwlfNThv0ZOE9eJG1OsGZy36kVBdczU9e7RvAz5b9CFhqfIwSp4XwG+OwUWLPiRUV/33Z4tbGtTvGK635CfUDfb/SO5rt20N9t8m65fLT9g3GD5abDY2qC+lvEg4NjhEvLW4tUFvEj4a7OXq3TzoW8Jpg0PEzfk8SThv8EMeJFw1+O8SHmrQg4QHG/Qg4cEGxSc83KD4hIcblJ6w3L508TXh+vtDEpLw3GwDEpKQhOdznVD2fRr9tdpRw/1HqQndIeEvkXCXUlDC+1NBndsnge/fwyVnp9PGH3p95dm1WMKza4/fI37j+UPXR/c+2X9/hjQI0uO3LsyuMioM9A8Sjy/W1iIhY7Sn2tzpUahdWyXiNDNSxcWtSlCBAAAAAAAAAAAAAAAAAAAAAAAAAAAAwCn+AEXGNosxDBhFAAAAAElFTkSuQmCC"},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.Vuelidate=j,Object.defineProperty(t,"withParams",{enumerable:!0,get:function(){return i.withParams}}),t.default=t.validationMixin=void 0;var n=o(118),i=o(46);function r(e){return function(e){if(Array.isArray(e)){for(var t=0,o=new Array(e.length);t<e.length;t++)o[t]=e[t];return o}}(e)||function(e){if(Symbol.iterator in Object(e)||"[object Arguments]"===Object.prototype.toString.call(e))return Array.from(e)}(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance")}()}function a(e){for(var t=1;t<arguments.length;t++){var o=null!=arguments[t]?arguments[t]:{},n=Object.keys(o);"function"==typeof Object.getOwnPropertySymbols&&(n=n.concat(Object.getOwnPropertySymbols(o).filter((function(e){return Object.getOwnPropertyDescriptor(o,e).enumerable})))),n.forEach((function(t){l(e,t,o[t])}))}return e}function l(e,t,o){return t in e?Object.defineProperty(e,t,{value:o,enumerable:!0,configurable:!0,writable:!0}):e[t]=o,e}function s(e){return(s="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}var d=function(){return null},m=function(e,t,o){return e.reduce((function(e,n){return e[o?o(n):n]=t(n),e}),{})};function f(e){return"function"==typeof e}function _(e){return null!==e&&("object"===s(e)||f(e))}var c=function(e,t,o,n){if("function"==typeof o)return o.call(e,t,n);o=Array.isArray(o)?o:o.split(".");for(var i=0;i<o.length;i++){if(!t||"object"!==s(t))return n;t=t[o[i]]}return void 0===t?n:t},g="__isVuelidateAsyncVm";var p={$invalid:function(){var e=this,t=this.proxy;return this.nestedKeys.some((function(t){return e.refProxy(t).$invalid}))||this.ruleKeys.some((function(e){return!t[e]}))},$dirty:function(){var e=this;return!!this.dirty||0!==this.nestedKeys.length&&this.nestedKeys.every((function(t){return e.refProxy(t).$dirty}))},$anyDirty:function(){var e=this;return!!this.dirty||0!==this.nestedKeys.length&&this.nestedKeys.some((function(t){return e.refProxy(t).$anyDirty}))},$error:function(){return this.$dirty&&!this.$pending&&this.$invalid},$anyError:function(){return this.$anyDirty&&!this.$pending&&this.$invalid},$pending:function(){var e=this;return this.ruleKeys.some((function(t){return e.getRef(t).$pending}))||this.nestedKeys.some((function(t){return e.refProxy(t).$pending}))},$params:function(){var e=this,t=this.validations;return a({},m(this.nestedKeys,(function(e){return t[e]&&t[e].$params||null})),m(this.ruleKeys,(function(t){return e.getRef(t).$params})))}};function u(e){this.dirty=e;var t=this.proxy,o=e?"$touch":"$reset";this.nestedKeys.forEach((function(e){t[e][o]()}))}var h={$touch:function(){u.call(this,!0)},$reset:function(){u.call(this,!1)},$flattenParams:function(){var e=this.proxy,t=[];for(var o in this.$params)if(this.isNested(o)){for(var n=e[o].$flattenParams(),i=0;i<n.length;i++)n[i].path.unshift(o);t=t.concat(n)}else t.push({path:[],name:o,params:this.$params[o]});return t}},b=Object.keys(p),x=Object.keys(h),y=null,w=function(e){if(y)return y;var t=e.extend({computed:{refs:function(){var e=this._vval;this._vval=this.children,(0,n.patchChildren)(e,this._vval);var t={};return this._vval.forEach((function(e){t[e.key]=e.vm})),t}},beforeCreate:function(){this._vval=null},beforeDestroy:function(){this._vval&&((0,n.patchChildren)(this._vval),this._vval=null)},methods:{getModel:function(){return this.lazyModel?this.lazyModel(this.prop):this.model},getModelKey:function(e){var t=this.getModel();if(t)return t[e]},hasIter:function(){return!1}}}),o=t.extend({data:function(){return{rule:null,lazyModel:null,model:null,lazyParentModel:null,rootModel:null}},methods:{runRule:function(t){var o=this.getModel();(0,i.pushParams)();var n,r=this.rule.call(this.rootModel,o,t),a=_(n=r)&&f(n.then)?function(e,t){var o=new e({data:{p:!0,v:!1}});return t.then((function(e){o.p=!1,o.v=e}),(function(e){throw o.p=!1,o.v=!1,e})),o[g]=!0,o}(e,r):r,l=(0,i.popParams)();return{output:a,params:l&&l.$sub?l.$sub.length>1?l:l.$sub[0]:null}}},computed:{run:function(){var e=this,t=this.lazyParentModel();if(Array.isArray(t)&&t.__ob__){var o=t.__ob__.dep;o.depend();var n=o.constructor.target;if(!this._indirectWatcher){var i=n.constructor;this._indirectWatcher=new i(this,(function(){return e.runRule(t)}),null,{lazy:!0})}var r=this.getModel();if(!this._indirectWatcher.dirty&&this._lastModel===r)return this._indirectWatcher.depend(),n.value;this._lastModel=r,this._indirectWatcher.evaluate(),this._indirectWatcher.depend()}else this._indirectWatcher&&(this._indirectWatcher.teardown(),this._indirectWatcher=null);return this._indirectWatcher?this._indirectWatcher.value:this.runRule(t)},$params:function(){return this.run.params},proxy:function(){var e=this.run.output;return e[g]?!!e.v:!!e},$pending:function(){var e=this.run.output;return!!e[g]&&e.p}},destroyed:function(){this._indirectWatcher&&(this._indirectWatcher.teardown(),this._indirectWatcher=null)}}),l=t.extend({data:function(){return{dirty:!1,validations:null,lazyModel:null,model:null,prop:null,lazyParentModel:null,rootModel:null}},methods:a({},h,{refProxy:function(e){return this.getRef(e).proxy},getRef:function(e){return this.refs[e]},isNested:function(e){return"function"!=typeof this.validations[e]}}),computed:a({},p,{nestedKeys:function(){return this.keys.filter(this.isNested)},ruleKeys:function(){var e=this;return this.keys.filter((function(t){return!e.isNested(t)}))},keys:function(){return Object.keys(this.validations).filter((function(e){return"$params"!==e}))},proxy:function(){var e=this,t=m(this.keys,(function(t){return{enumerable:!0,configurable:!0,get:function(){return e.refProxy(t)}}})),o=m(b,(function(t){return{enumerable:!0,configurable:!0,get:function(){return e[t]}}})),n=m(x,(function(t){return{enumerable:!1,configurable:!0,get:function(){return e[t]}}})),i=this.hasIter()?{$iter:{enumerable:!0,value:Object.defineProperties({},a({},t))}}:{};return Object.defineProperties({},a({},t,i,{$model:{enumerable:!0,get:function(){var t=e.lazyParentModel();return null!=t?t[e.prop]:null},set:function(t){var o=e.lazyParentModel();null!=o&&(o[e.prop]=t,e.$touch())}}},o,n))},children:function(){var e=this;return r(this.nestedKeys.map((function(t){return w(e,t)}))).concat(r(this.ruleKeys.map((function(t){return v(e,t)})))).filter(Boolean)}})}),s=l.extend({methods:{isNested:function(e){return void 0!==this.validations[e]()},getRef:function(e){var t=this;return{get proxy(){return t.validations[e]()||!1}}}}}),u=l.extend({computed:{keys:function(){var e=this.getModel();return _(e)?Object.keys(e):[]},tracker:function(){var e=this,t=this.validations.$trackBy;return t?function(o){return"".concat(c(e.rootModel,e.getModelKey(o),t))}:function(e){return"".concat(e)}},getModelLazy:function(){var e=this;return function(){return e.getModel()}},children:function(){var e=this,t=this.validations,o=this.getModel(),i=a({},t);delete i.$trackBy;var r={};return this.keys.map((function(t){var a=e.tracker(t);return r.hasOwnProperty(a)?null:(r[a]=!0,(0,n.h)(l,a,{validations:i,prop:t,lazyParentModel:e.getModelLazy,model:o[t],rootModel:e.rootModel}))})).filter(Boolean)}},methods:{isNested:function(){return!0},getRef:function(e){return this.refs[this.tracker(e)]},hasIter:function(){return!0}}}),w=function(e,t){if("$each"===t)return(0,n.h)(u,t,{validations:e.validations[t],lazyParentModel:e.lazyParentModel,prop:t,lazyModel:e.getModel,rootModel:e.rootModel});var o=e.validations[t];if(Array.isArray(o)){var i=e.rootModel,r=m(o,(function(e){return function(){return c(i,i.$v,e)}}),(function(e){return Array.isArray(e)?e.join("."):e}));return(0,n.h)(s,t,{validations:r,lazyParentModel:d,prop:t,lazyModel:d,rootModel:i})}return(0,n.h)(l,t,{validations:o,lazyParentModel:e.getModel,prop:t,lazyModel:e.getModelKey,rootModel:e.rootModel})},v=function(e,t){return(0,n.h)(o,t,{rule:e.validations[t],lazyParentModel:e.lazyParentModel,lazyModel:e.getModel,rootModel:e.rootModel})};return y={VBase:t,Validation:l}},v=null;var F=function(e,t){var o=function(e){if(v)return v;for(var t=e.constructor;t.super;)t=t.super;return v=t,t}(e),i=w(o),r=i.Validation;return new(0,i.VBase)({computed:{children:function(){var o="function"==typeof t?t.call(e):t;return[(0,n.h)(r,"$v",{validations:o,lazyParentModel:d,prop:"$v",model:e,rootModel:e})]}}})},k={data:function(){var e=this.$options.validations;return e&&(this._vuelidate=F(this,e)),{}},beforeCreate:function(){var e=this.$options;e.validations&&(e.computed||(e.computed={}),e.computed.$v||(e.computed.$v=function(){return this._vuelidate?this._vuelidate.refs.$v.proxy:null}))},beforeDestroy:function(){this._vuelidate&&(this._vuelidate.$destroy(),this._vuelidate=null)}};function j(e){e.mixin(k)}t.validationMixin=k;var C=j;t.default=C},function(e,t,o){var n=o(81).Symbol;e.exports=n},function(e){e.exports=JSON.parse('{"Auth":{"Submit":"Iniciar chat","Name":"Nome","Email":"Email","NameRequired":"Nome é obrigatório","EmailRequired":"Email é obrigatório","EnterValidEmail":"Email inválido","FieldValidation":"Campo obrigatório","OfflineSubmit":"Enviar","CloseButton":"Fechar","PhoneText":"Telefone","EnterValidPhone":"Número de telefone inválido","EnterValidName":"Caracteres permitidos: A-Z a-z 0-9 espaço _ -","MaxCharactersReached":"Número máximo de caracteres atingido"},"Chat":{"TypeYourMessage":"Escreva sua mensagem..."},"MessageBox":{"Ok":"Ok","TryAgain":"Tente novamente"},"Inputs":{"InviteMessage":"Olá! Como podemos te ajudar hoje?","EndingMessage":"Sua sessão terminou. Por favor, sinta-se à vontade para nos contatar novamente!","NotAllowedError":"Permitir acesso ao microfone pelo seu navegador","NotFoundError":"Microfone não encontrado","ServiceUnavailable":"Serviço indisponível","UnavailableMessage":"Não existem Agentes disponíveis no momento. Por favor complete o formulário abaixo e entraremos em contato brevemente","OperatorName":"Suporte","WindowTitle":"Live Chat & Talk","CallTitle":"Entre em contato","PoweredBy":"Fornecidos por 3CX","OfflineMessageSent":"Sua mensagem foi enviada. Entraremos em contato em breve por meio do email fornecido. Obrigado e até logo!","InvalidIdErrorMessage":"ID inválido. Entre em contato com o administrador do site. O ID deve corresponder ao apelido usado no Click2Talk","IsTyping":"Digitando...","NewMessageTitleNotification":"Nova mensagem recebida!","ChatIsDisabled":"Chat is not available at the moment."}}')},function(e,t,o){"use strict";o.r(t);var n=o(18),i=o.n(n);for(var r in n)"default"!==r&&function(e){o.d(t,e,(function(){return n[e]}))}(r);t.default=i.a},function(e,t){e.exports="data:image/png;base64,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"},function(e,t){var o={utf8:{stringToBytes:function(e){return o.bin.stringToBytes(unescape(encodeURIComponent(e)))},bytesToString:function(e){return decodeURIComponent(escape(o.bin.bytesToString(e)))}},bin:{stringToBytes:function(e){for(var t=[],o=0;o<e.length;o++)t.push(255&e.charCodeAt(o));return t},bytesToString:function(e){for(var t=[],o=0;o<e.length;o++)t.push(String.fromCharCode(e[o]));return t.join("")}}};e.exports=o},function(e,t,o){"use strict";e.exports=f;var n,i=o(10),r=i.LongBits,a=i.base64,l=i.utf8;function s(e,t,o){this.fn=e,this.len=t,this.next=void 0,this.val=o}function d(){}function m(e){this.head=e.head,this.tail=e.tail,this.len=e.len,this.next=e.states}function f(){this.len=0,this.head=new s(d,0,0),this.tail=this.head,this.states=null}function _(e,t,o){t[o]=255&e}function c(e,t){this.len=e,this.next=void 0,this.val=t}function g(e,t,o){for(;e.hi;)t[o++]=127&e.lo|128,e.lo=(e.lo>>>7|e.hi<<25)>>>0,e.hi>>>=7;for(;e.lo>127;)t[o++]=127&e.lo|128,e.lo=e.lo>>>7;t[o++]=e.lo}function p(e,t,o){t[o]=255&e,t[o+1]=e>>>8&255,t[o+2]=e>>>16&255,t[o+3]=e>>>24}f.create=i.Buffer?function(){return(f.create=function(){return new n})()}:function(){return new f},f.alloc=function(e){return new i.Array(e)},i.Array!==Array&&(f.alloc=i.pool(f.alloc,i.Array.prototype.subarray)),f.prototype._push=function(e,t,o){return this.tail=this.tail.next=new s(e,t,o),this.len+=t,this},c.prototype=Object.create(s.prototype),c.prototype.fn=function(e,t,o){for(;e>127;)t[o++]=127&e|128,e>>>=7;t[o]=e},f.prototype.uint32=function(e){return this.len+=(this.tail=this.tail.next=new c((e>>>=0)<128?1:e<16384?2:e<2097152?3:e<268435456?4:5,e)).len,this},f.prototype.int32=function(e){return e<0?this._push(g,10,r.fromNumber(e)):this.uint32(e)},f.prototype.sint32=function(e){return this.uint32((e<<1^e>>31)>>>0)},f.prototype.uint64=function(e){var t=r.from(e);return this._push(g,t.length(),t)},f.prototype.int64=f.prototype.uint64,f.prototype.sint64=function(e){var t=r.from(e).zzEncode();return this._push(g,t.length(),t)},f.prototype.bool=function(e){return this._push(_,1,e?1:0)},f.prototype.fixed32=function(e){return this._push(p,4,e>>>0)},f.prototype.sfixed32=f.prototype.fixed32,f.prototype.fixed64=function(e){var t=r.from(e);return this._push(p,4,t.lo)._push(p,4,t.hi)},f.prototype.sfixed64=f.prototype.fixed64,f.prototype.float=function(e){return this._push(i.float.writeFloatLE,4,e)},f.prototype.double=function(e){return this._push(i.float.writeDoubleLE,8,e)};var u=i.Array.prototype.set?function(e,t,o){t.set(e,o)}:function(e,t,o){for(var n=0;n<e.length;++n)t[o+n]=e[n]};f.prototype.bytes=function(e){var t=e.length>>>0;if(!t)return this._push(_,1,0);if(i.isString(e)){var o=f.alloc(t=a.length(e));a.decode(e,o,0),e=o}return this.uint32(t)._push(u,t,e)},f.prototype.string=function(e){var t=l.length(e);return t?this.uint32(t)._push(l.write,t,e):this._push(_,1,0)},f.prototype.fork=function(){return this.states=new m(this),this.head=this.tail=new s(d,0,0),this.len=0,this},f.prototype.reset=function(){return this.states?(this.head=this.states.head,this.tail=this.states.tail,this.len=this.states.len,this.states=this.states.next):(this.head=this.tail=new s(d,0,0),this.len=0),this},f.prototype.ldelim=function(){var e=this.head,t=this.tail,o=this.len;return this.reset().uint32(o),o&&(this.tail.next=e.next,this.tail=t,this.len+=o),this},f.prototype.finish=function(){for(var e=this.head.next,t=this.constructor.alloc(this.len),o=0;e;)e.fn(e.val,t,o),o+=e.len,e=e.next;return t},f._configure=function(e){n=e}},function(e,t,o){"use strict";e.exports=s;var n,i=o(10),r=i.LongBits,a=i.utf8;function l(e,t){return RangeError("index out of range: "+e.pos+" + "+(t||1)+" > "+e.len)}function s(e){this.buf=e,this.pos=0,this.len=e.length}var d,m="undefined"!=typeof Uint8Array?function(e){if(e instanceof Uint8Array||Array.isArray(e))return new s(e);throw Error("illegal buffer")}:function(e){if(Array.isArray(e))return new s(e);throw Error("illegal buffer")};function f(){var e=new r(0,0),t=0;if(!(this.len-this.pos>4)){for(;t<3;++t){if(this.pos>=this.len)throw l(this);if(e.lo=(e.lo|(127&this.buf[this.pos])<<7*t)>>>0,this.buf[this.pos++]<128)return e}return e.lo=(e.lo|(127&this.buf[this.pos++])<<7*t)>>>0,e}for(;t<4;++t)if(e.lo=(e.lo|(127&this.buf[this.pos])<<7*t)>>>0,this.buf[this.pos++]<128)return e;if(e.lo=(e.lo|(127&this.buf[this.pos])<<28)>>>0,e.hi=(e.hi|(127&this.buf[this.pos])>>4)>>>0,this.buf[this.pos++]<128)return e;if(t=0,this.len-this.pos>4){for(;t<5;++t)if(e.hi=(e.hi|(127&this.buf[this.pos])<<7*t+3)>>>0,this.buf[this.pos++]<128)return e}else for(;t<5;++t){if(this.pos>=this.len)throw l(this);if(e.hi=(e.hi|(127&this.buf[this.pos])<<7*t+3)>>>0,this.buf[this.pos++]<128)return e}throw Error("invalid varint encoding")}function _(e,t){return(e[t-4]|e[t-3]<<8|e[t-2]<<16|e[t-1]<<24)>>>0}function c(){if(this.pos+8>this.len)throw l(this,8);return new r(_(this.buf,this.pos+=4),_(this.buf,this.pos+=4))}s.create=i.Buffer?function(e){return(s.create=function(e){return i.Buffer.isBuffer(e)?new n(e):m(e)})(e)}:m,s.prototype._slice=i.Array.prototype.subarray||i.Array.prototype.slice,s.prototype.uint32=(d=4294967295,function(){if(d=(127&this.buf[this.pos])>>>0,this.buf[this.pos++]<128)return d;if(d=(d|(127&this.buf[this.pos])<<7)>>>0,this.buf[this.pos++]<128)return d;if(d=(d|(127&this.buf[this.pos])<<14)>>>0,this.buf[this.pos++]<128)return d;if(d=(d|(127&this.buf[this.pos])<<21)>>>0,this.buf[this.pos++]<128)return d;if(d=(d|(15&this.buf[this.pos])<<28)>>>0,this.buf[this.pos++]<128)return d;if((this.pos+=5)>this.len)throw this.pos=this.len,l(this,10);return d}),s.prototype.int32=function(){return 0|this.uint32()},s.prototype.sint32=function(){var e=this.uint32();return e>>>1^-(1&e)|0},s.prototype.bool=function(){return 0!==this.uint32()},s.prototype.fixed32=function(){if(this.pos+4>this.len)throw l(this,4);return _(this.buf,this.pos+=4)},s.prototype.sfixed32=function(){if(this.pos+4>this.len)throw l(this,4);return 0|_(this.buf,this.pos+=4)},s.prototype.float=function(){if(this.pos+4>this.len)throw l(this,4);var e=i.float.readFloatLE(this.buf,this.pos);return this.pos+=4,e},s.prototype.double=function(){if(this.pos+8>this.len)throw l(this,4);var e=i.float.readDoubleLE(this.buf,this.pos);return this.pos+=8,e},s.prototype.bytes=function(){var e=this.uint32(),t=this.pos,o=this.pos+e;if(o>this.len)throw l(this,e);return this.pos+=e,Array.isArray(this.buf)?this.buf.slice(t,o):t===o?new this.buf.constructor(0):this._slice.call(this.buf,t,o)},s.prototype.string=function(){var e=this.bytes();return a.read(e,0,e.length)},s.prototype.skip=function(e){if("number"==typeof e){if(this.pos+e>this.len)throw l(this,e);this.pos+=e}else do{if(this.pos>=this.len)throw l(this)}while(128&this.buf[this.pos++]);return this},s.prototype.skipType=function(e){switch(e){case 0:this.skip();break;case 1:this.skip(8);break;case 2:this.skip(this.uint32());break;case 3:for(;4!=(e=7&this.uint32());)this.skipType(e);break;case 5:this.skip(4);break;default:throw Error("invalid wire type "+e+" at offset "+this.pos)}return this},s._configure=function(e){n=e;var t=i.Long?"toLong":"toNumber";i.merge(s.prototype,{int64:function(){return f.call(this)[t](!1)},uint64:function(){return f.call(this)[t](!0)},sint64:function(){return f.call(this).zzDecode()[t](!1)},fixed64:function(){return c.call(this)[t](!0)},sfixed64:function(){return c.call(this)[t](!1)}})}},function(e,t,o){var n=o(35),i=o(83),r=o(84),a=o(43),l=1/0,s=n?n.prototype:void 0,d=s?s.toString:void 0;e.exports=function e(t){if("string"==typeof t)return t;if(r(t))return i(t,e)+"";if(a(t))return d?d.call(t):"";var o=t+"";return"0"==o&&1/t==-l?"-0":o}},function(e,t,o){var n=o(85),i=o(88),r="[object Symbol]";e.exports=function(e){return"symbol"==typeof e||i(e)&&n(e)==r}},function(e){e.exports=JSON.parse('{"Auth":{"Submit":"开始聊天","Name":"姓名","Email":"邮箱","NameRequired":"姓名为必填项","EmailRequired":"邮箱为必填项","EnterValidEmail":"无效的邮箱","FieldValidation":"必填字段","OfflineSubmit":"提交","CloseButton":"关闭","PhoneText":"电话","EnterValidPhone":"无效的电话号码","EnterValidName":"允许的字符:A-Z a-z 0-9空格 _ -","MaxCharactersReached":"已达到最大字符限制"},"Chat":{"TypeYourMessage":"输入您的消息..."},"MessageBox":{"Ok":"OK","TryAgain":"再次尝试"},"Inputs":{"InviteMessage":"您好!请问有什么可以帮到您的?","EndingMessage":"您的会话结束了。请随时与我们联系!","NotAllowedError":"允许通过浏览器访问麦克风","NotFoundError":"未发现麦克风","ServiceUnavailable":"服务不可用","UnavailableMessage":"目前没有可用的座席。请填写下面的表格,我们会尽快与您联系","OperatorName":"支持","WindowTitle":"在线聊天和通话","CallTitle":"致电我们","PoweredBy":"由3CX提供支持","OfflineMessageSent":"您的消息已送达。我们将尽快通过您提供的电子邮件地址与您联系。谢谢,再见!","InvalidIdErrorMessage":"无效的ID。联系网站管理员。ID必须与Click2Talk友好名称匹配","IsTyping":"正在输入...","NewMessageTitleNotification":"收到新消息!","ChatIsDisabled":"Chat is not available at the moment."}}')},function(e,t){e.exports="data:audio/mpeg;base64,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mtCFf///+xDECgBDOAMQoARAAK+AYbQQiAD61IBU+IIABAwJJ4C+6z6nt1df9V3/Y5q+GOxYGSfc02ppIotcSnTL6Kf8ypaqhQ8NSpRGAg232gAAeed/7+R65f6//r/6/1P95TOa31IHZqRzGf/7EMQQgEcBeQughHfAWIBi/ACIAJEEwMqqOLQ3Nhzatfn/89ZFOVmOme49BwAAAIABwAr/T/t///////1////s9NXD6z2i+4MAADYQepbrKt9AwO3+//+Q/6H2f2MDh8DcUiu7//RZ//sQxBKABNgBEaCEQAB2gGK8AIgAWBQhWAFVgXABkACQu1P3btP//9b6v9n+3////1Y24sofjceADAAAAUDLFbHf/t///+n/c30oU78y///6bY/WW0CWTeJzzRdPqKa9vRGo/uXogFf/+xDEGYBDwAEToIRNwMKAYbQAiAD7dhqlSiRURsQoQFDh1iiKtu2qy3psGPiMdB1d/////////9+7////8XQ7NCODsi3fIgIMW5aVVKfbv3MbXGfqUijZ2al/v/pez7t5N3R/1rUxxv/7EMQbgAHEAxQAAEAAq4AiPBCJuIkT9troEdupAAB3end/+vR6kK4v1//yqf/n/84sd++B75tuI/7qRZnmXff//8z6syv7gy2m6GAQhABTLattTruc//////6v6933I//05oyqgAQA//sQxCiABmlxDaCEV8hngGKugCAAAAAFgbaCSAI5ruwExMaa5/OHQUHgca/fjQxxItIXcvktX85DmIp9Hv2e7lOb2W/0Xe5b+z/T/aAAA1SAgAAYOh0ZwKEIxKMTbuMIANNcWjNDBcT/+xDEKwAHTFcfWaGAAL4E59M6EABdOgBUQInjACIuttE414QGl5HaUwAAKgAwDACxGCSYbgjpiEDRmZIQ6fDVTZwkFQmK4MKYqAbphChjGEmCQYJ4ORgIAQLljMVER3IVxe70gBxAwP/7EMQfggdkISUd4QAg3wPlNb9wRNJpughATDhwy2DML5ZA2xvfTMcBMQhpOhMhnJQFxYJRe+7X1zDO6N+//6v9X/9Vv+3/1dgxsOMyBTVyQ8JrMk9Lw+Aejzn3EnMSAD43E7MlQTCD//sQxA+C