diff -Nru kemoticons-5.18.0/.arcconfig kemoticons-5.44.0/.arcconfig --- kemoticons-5.18.0/.arcconfig 1970-01-01 00:00:00.000000000 +0000 +++ kemoticons-5.44.0/.arcconfig 2018-03-03 09:52:23.000000000 +0000 @@ -0,0 +1,3 @@ +{ + "phabricator.uri" : "https://phabricator.kde.org/" +} diff -Nru kemoticons-5.18.0/autotests/autotestbase.h kemoticons-5.44.0/autotests/autotestbase.h --- kemoticons-5.18.0/autotests/autotestbase.h 1970-01-01 00:00:00.000000000 +0000 +++ kemoticons-5.44.0/autotests/autotestbase.h 2018-03-03 09:52:23.000000000 +0000 @@ -0,0 +1,47 @@ +/* + Test base class + + Copyright (c) 2004 by Richard Smith + Copyright (c) 2005 by Duncan Mac-Vicar + Copyright (c) 2014 by Alex Merry + + Kopete (c) 2002-2005 by the Kopete developers + + ************************************************************************* + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + ************************************************************************* +*/ + +#ifndef AUTOTESTBASE_H +#define AUTOTESTBASE_H + +#include +#include +#include + +static bool copyTheme(const QString &dir, const QDir &baseThemeDir, const QString &themeName) +{ + QDir sourceThemeDir(dir); + if (!sourceThemeDir.exists()) { + return false; + } + QDir themeDir(baseThemeDir.absolutePath() + QLatin1Char('/') + themeName); + themeDir.removeRecursively(); + themeDir.mkpath(QStringLiteral(".")); + + foreach (const QString &fileName, sourceThemeDir.entryList(QDir::Files)) { + if (!QFile::copy(sourceThemeDir.filePath(fileName), + themeDir.filePath(fileName))) { + qWarning() << "couldn't copy" << dir << "/" << fileName; + return false; + } + } + return true; +} + +#endif // AUTOTESTBASE_H diff -Nru kemoticons-5.18.0/autotests/CMakeLists.txt kemoticons-5.44.0/autotests/CMakeLists.txt --- kemoticons-5.18.0/autotests/CMakeLists.txt 2016-01-01 19:55:29.000000000 +0000 +++ kemoticons-5.44.0/autotests/CMakeLists.txt 2018-03-03 09:52:23.000000000 +0000 @@ -9,6 +9,3 @@ kemoticons_unit_test(kemoticontest) kemoticons_unit_test(ktexttohtmlplugintest ../src/integrationplugin/ktexttohtml.cpp) -target_compile_definitions(kemoticons-kemoticontest PRIVATE - LOCAL_THEMES_DIR="${KEmoticons_SOURCE_DIR}/themes") - Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/autotests/default-testtheme/angry.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/autotests/default-testtheme/angry.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/autotests/default-testtheme/confused.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/autotests/default-testtheme/confused.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/autotests/default-testtheme/dog.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/autotests/default-testtheme/dog.png differ diff -Nru kemoticons-5.18.0/autotests/default-testtheme/emoticons.xml kemoticons-5.44.0/autotests/default-testtheme/emoticons.xml --- kemoticons-5.18.0/autotests/default-testtheme/emoticons.xml 1970-01-01 00:00:00.000000000 +0000 +++ kemoticons-5.44.0/autotests/default-testtheme/emoticons.xml 2018-03-03 09:52:23.000000000 +0000 @@ -0,0 +1,24 @@ + + + + :) + :-) + + + :p + :P + + + :-( + :( + + + :s + + + (&) + + + >:( + + Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/autotests/default-testtheme/sad.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/autotests/default-testtheme/sad.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/autotests/default-testtheme/smile.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/autotests/default-testtheme/smile.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/autotests/default-testtheme/tongue.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/autotests/default-testtheme/tongue.png differ diff -Nru kemoticons-5.18.0/autotests/kemoticontest.cpp kemoticons-5.44.0/autotests/kemoticontest.cpp --- kemoticons-5.18.0/autotests/kemoticontest.cpp 2016-01-01 19:55:29.000000000 +0000 +++ kemoticons-5.44.0/autotests/kemoticontest.cpp 2018-03-03 09:52:23.000000000 +0000 @@ -17,6 +17,8 @@ ************************************************************************* */ +#include "autotestbase.h" + #include #include #include @@ -26,7 +28,7 @@ #include -static const char * default_theme = "Glass"; +static const char * default_theme = "__woopwoop__"; /* There are three sets of tests, the Kopete 0.7 baseline with tests that were @@ -42,41 +44,18 @@ { Q_OBJECT -private: - bool copyTheme(const QString &dir, const QDir &baseThemeDir, const QString &themeName) - { - QDir sourceThemeDir(dir); - if (!sourceThemeDir.exists()) { - return false; - } - QDir themeDir(baseThemeDir.absolutePath() + '/' + themeName); - themeDir.removeRecursively(); - themeDir.mkpath(QStringLiteral(".")); - - foreach (const QString &fileName, sourceThemeDir.entryList(QDir::Files)) { - if (!QFile::copy(sourceThemeDir.filePath(fileName), - themeDir.filePath(fileName))) { - qWarning() << "couldn't copy" << dir << "/" << fileName; - return false; - } - } - return true; - } - private Q_SLOTS: void initTestCase() { QStandardPaths::setTestModeEnabled(true); - QString dataPath = QStandardPaths::writableLocation(QStandardPaths::GenericDataLocation); + cleanupTestCase(); + QString dataPath = QStandardPaths::writableLocation(QStandardPaths::GenericDataLocation); QString destThemePath = dataPath + QLatin1String("/emoticons/"); + QVERIFY(QDir().mkpath(destThemePath)); + const QString destPath = destThemePath + QString::fromLatin1(default_theme); QDir themeDir(destThemePath); - if (themeDir.exists()) { - QVERIFY(themeDir.removeRecursively()); - } - QVERIFY(themeDir.mkpath(QStringLiteral("."))); - - QVERIFY(copyTheme(QFile::decodeName(LOCAL_THEMES_DIR) + QLatin1String("/") + default_theme, themeDir, default_theme)); + QVERIFY(copyTheme(QFINDTESTDATA("default-testtheme"), themeDir, QString::fromLatin1(default_theme))); // check it can actually be found themePath = QStandardPaths::locate( @@ -84,6 +63,7 @@ QStringLiteral("emoticons/"), QStandardPaths::LocateDirectory); QVERIFY2(!themePath.isEmpty(), qPrintable(themePath)); + QCOMPARE(themePath, destThemePath); // also copy the xmpp theme QVERIFY(copyTheme(QFINDTESTDATA("xmpp-testtheme"), themeDir, QStringLiteral("xmpp-testtheme"))); @@ -93,8 +73,8 @@ { QString dataPath = QStandardPaths::writableLocation(QStandardPaths::GenericDataLocation); const QString themePath = dataPath + QLatin1String("/emoticons/"); - QDir themeDir(themePath); - QVERIFY(themeDir.removeRecursively()); + QVERIFY(QDir(themePath + QString::fromLatin1(default_theme)).removeRecursively()); + QVERIFY(QDir(themePath + QStringLiteral("xmpp-testtheme")).removeRecursively()); } void testEmoticonParser_data() @@ -113,10 +93,10 @@ QString outputFileName = fileName; outputFileName.replace(QStringLiteral("input"), QStringLiteral("output")); const QString baseName = fileName.section(QLatin1Char('-'), 0, 0); - QTest::newRow(qPrintable(fileName.left(fileName.lastIndexOf('.')))) + QTest::newRow(qPrintable(fileName.left(fileName.lastIndexOf(QLatin1Char('.'))))) << basePath + QLatin1Char('/') + fileName << basePath + QLatin1Char('/') + outputFileName - << (baseName == QLatin1String("xmpp") ? "xmpp-testtheme" : default_theme) + << (baseName == QLatin1String("xmpp") ? QStringLiteral("xmpp-testtheme") : QString::fromLatin1(default_theme)) << (baseName == QLatin1String("broken")); } } @@ -143,7 +123,7 @@ QString result = emo.parseEmoticons(inputData, KEmoticonsTheme::RelaxedParse | KEmoticonsTheme::SkipHTML); - result.replace(themePath + themeName + '/', QString()); + result.replace(QStringLiteral("file://") + themePath + themeName + QLatin1Char('/'), QString()); if (xfail) { QEXPECT_FAIL("", "Checking known-broken testcase", Continue); @@ -156,6 +136,38 @@ } } + void testPreferredSizes_data() + { + QTest::addColumn("themeName"); + + QString basePath = QFINDTESTDATA("emoticon-parser-testcases"); + QVERIFY(!basePath.isEmpty()); + QDir testCasesDir(basePath); + + QStringList inputFileNames = testCasesDir.entryList(QStringList(QStringLiteral("*.input"))); + Q_FOREACH (const QString &fileName, inputFileNames) { + QString outputFileName = fileName; + outputFileName.replace(QStringLiteral("input"), QStringLiteral("output")); + const QString baseName = fileName.section(QLatin1Char('-'), 0, 0); + QTest::newRow(qPrintable(fileName.left(fileName.lastIndexOf(QLatin1Char('.'))))) + << (baseName == QLatin1String("xmpp") ? QStringLiteral("xmpp-testtheme") : QString::fromLatin1(default_theme)); + } + } + + void testPreferredSizes() + { + QFETCH(QString, themeName); + KEmoticons kemoticons; + kemoticons.setPreferredEmoticonSize(QSize(99, 77)); + + KEmoticonsTheme theme = kemoticons.theme(themeName); + + const QString parsed = theme.parseEmoticons(QStringLiteral(":)")); + + QVERIFY(parsed.contains(QStringLiteral("width=\"99\""))); + QVERIFY(parsed.contains(QStringLiteral("height=\"77\""))); + } + private: QString themePath; }; diff -Nru kemoticons-5.18.0/autotests/ktexttohtmlplugintest.cpp kemoticons-5.44.0/autotests/ktexttohtmlplugintest.cpp --- kemoticons-5.18.0/autotests/ktexttohtmlplugintest.cpp 2016-01-01 19:55:29.000000000 +0000 +++ kemoticons-5.44.0/autotests/ktexttohtmlplugintest.cpp 2018-03-03 09:52:23.000000000 +0000 @@ -17,6 +17,8 @@ * */ +#include "autotestbase.h" + #include #include #include @@ -44,14 +46,24 @@ void KTextToHTMLPluginTest::initTestCase() { - KEmoticons::setTheme(QStringLiteral("Glass")); - mEmoticonsThemePath = QStandardPaths::locate(QStandardPaths::GenericDataLocation, QStringLiteral("emoticons/Glass"), QStandardPaths::LocateDirectory); + QStandardPaths::setTestModeEnabled(true); + QString dataPath = QStandardPaths::writableLocation(QStandardPaths::GenericDataLocation); + QString destThemePath = dataPath + QLatin1String("/emoticons/"); + QVERIFY(QDir().mkpath(destThemePath)); + mEmoticonsThemePath = destThemePath + QStringLiteral("default-testtheme"); + if (QFileInfo::exists(mEmoticonsThemePath)) { + QVERIFY(QDir(mEmoticonsThemePath).removeRecursively()); + } + QDir themeDir(destThemePath); + QVERIFY(copyTheme(QFINDTESTDATA("default-testtheme"), themeDir, QStringLiteral("default-testtheme"))); + + KEmoticons::setTheme(QStringLiteral("default-testtheme")); QVERIFY(!mEmoticonsThemePath.isEmpty()); } QString KTextToHTMLPluginTest::htmlForSmiley(const QString &emoticon, const QString &name) const { - return QString("\"%1\"") + return QStringLiteral("\"%1\"") .arg(emoticon, mEmoticonsThemePath, name); @@ -69,12 +81,12 @@ QTest::newRow("simple") << "Hello :-)" << false << QStringList() - << QString("Hello %1").arg(htmlForSmiley(QStringLiteral(":-)"), QStringLiteral("smile"))); + << QStringLiteral("Hello %1").arg(htmlForSmiley(QStringLiteral(":-)"), QStringLiteral("smile"))); QTest::newRow("between strings") << "Hello :-) How are you?" << false << QStringList() - << QString("Hello %1 How are you?").arg(htmlForSmiley(QStringLiteral(":-)"), QStringLiteral("smile"))); + << QStringLiteral("Hello %1 How are you?").arg(htmlForSmiley(QStringLiteral(":-)"), QStringLiteral("smile"))); QTest::newRow("excluded") << "Bye :-(" @@ -84,7 +96,7 @@ QTest::newRow("don't mix in HTML") << ":(" << false << QStringList() - << QString("%1").arg(htmlForSmiley(QStringLiteral(":("), QStringLiteral("sad"))); + << QStringLiteral("%1").arg(htmlForSmiley(QStringLiteral(":("), QStringLiteral("sad"))); QTest::newRow("strict parsing of smileys without space") << "Very happy! :-):-)" @@ -94,7 +106,7 @@ QTest::newRow("nonstrict parsing of smileys without space") << "Very happy! :-):-)" << false << QStringList() - << QString("Very happy! %1%1").arg(htmlForSmiley(QStringLiteral(":-)"), QStringLiteral("smile"))); + << QStringLiteral("Very happy! %1%1").arg(htmlForSmiley(QStringLiteral(":-)"), QStringLiteral("smile"))); QTest::newRow("smiley in HTML") << "" diff -Nru kemoticons-5.18.0/CMakeLists.txt kemoticons-5.44.0/CMakeLists.txt --- kemoticons-5.18.0/CMakeLists.txt 2016-01-01 19:55:29.000000000 +0000 +++ kemoticons-5.44.0/CMakeLists.txt 2018-03-03 09:52:23.000000000 +0000 @@ -1,32 +1,36 @@ -cmake_minimum_required(VERSION 2.8.12) +cmake_minimum_required(VERSION 3.0) -project(KEmoticons) +set(KF5_VERSION "5.44.0") # handled by release scripts +set(KF5_DEP_VERSION "5.44.0") # handled by release scripts +project(KEmoticons VERSION ${KF5_VERSION}) include(FeatureSummary) -find_package(ECM 5.18.0 NO_MODULE) +find_package(ECM 5.44.0 NO_MODULE) set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake Modules." URL "https://projects.kde.org/projects/kdesupport/extra-cmake-modules") feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND FATAL_ON_MISSING_REQUIRED_PACKAGES) set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} ${ECM_KDE_MODULE_DIR} ${CMAKE_CURRENT_SOURCE_DIR}/cmake) -set(REQUIRED_QT_VERSION 5.3.0) -find_package(Qt5 ${REQUIRED_QT_VERSION} CONFIG REQUIRED Gui) +set(REQUIRED_QT_VERSION 5.7.0) +find_package(Qt5 ${REQUIRED_QT_VERSION} CONFIG REQUIRED Gui DBus) include(KDEInstallDirs) -include(KDEFrameworkCompilerSettings) +include(KDEFrameworkCompilerSettings NO_POLICY_SCOPE) include(KDECMakeSettings) include(GenerateExportHeader) include(ECMSetupVersion) include(ECMGenerateHeaders) -include(ECMPackageConfigHelpers) +include(ECMAddQch) +include(CMakePackageConfigHelpers) -set(KF5_VERSION "5.18.0") # handled by release scripts -set(KF5_DEP_VERSION "5.18.0") # handled by release scripts -ecm_setup_version(${KF5_VERSION} VARIABLE_PREFIX KEMOTICONS +option(BUILD_QCH "Build API documentation in QCH format (for e.g. Qt Assistant, Qt Creator & KDevelop)" OFF) +add_feature_info(QCH ${BUILD_QCH} "API documentation in QCH format (for e.g. Qt Assistant, Qt Creator & KDevelop)") + +ecm_setup_version(PROJECT VARIABLE_PREFIX KEMOTICONS VERSION_HEADER "${CMAKE_CURRENT_BINARY_DIR}/kemoticons_version.h" PACKAGE_VERSION_FILE "${CMAKE_CURRENT_BINARY_DIR}/KF5EmoticonsConfigVersion.cmake" SOVERSION 5) @@ -42,7 +46,6 @@ # the strings throughout this library are used to search ressources # so they don't need translations -remove_definitions(-DQT_NO_CAST_FROM_ASCII) add_subdirectory(src) add_subdirectory(themes) @@ -52,9 +55,19 @@ # create a Config.cmake and a ConfigVersion.cmake file and install them set(CMAKECONFIG_INSTALL_DIR "${KDE_INSTALL_CMAKEPACKAGEDIR}/KF5Emoticons") +if (BUILD_QCH) + ecm_install_qch_export( + TARGETS KF5Emoticons_QCH + FILE KF5EmoticonsQchTargets.cmake + DESTINATION "${CMAKECONFIG_INSTALL_DIR}" + COMPONENT Devel + ) + set(PACKAGE_INCLUDE_QCHTARGETS "include(\"\${CMAKE_CURRENT_LIST_DIR}/KF5EmoticonsQchTargets.cmake\")") +endif() + install(EXPORT KF5EmoticonsTargets DESTINATION "${CMAKECONFIG_INSTALL_DIR}" FILE KF5EmoticonsTargets.cmake NAMESPACE KF5:: ) -ecm_configure_package_config_file("${CMAKE_CURRENT_SOURCE_DIR}/KF5EmoticonsConfig.cmake.in" +configure_package_config_file("${CMAKE_CURRENT_SOURCE_DIR}/KF5EmoticonsConfig.cmake.in" "${CMAKE_CURRENT_BINARY_DIR}/KF5EmoticonsConfig.cmake" INSTALL_DESTINATION ${CMAKECONFIG_INSTALL_DIR} ) @@ -65,7 +78,5 @@ COMPONENT Devel ) -if ("${CMAKE_BINARY_DIR}" STREQUAL "${CMAKE_CURRENT_BINARY_DIR}") - feature_summary(WHAT ALL FATAL_ON_MISSING_REQUIRED_PACKAGES) -endif() +feature_summary(WHAT ALL FATAL_ON_MISSING_REQUIRED_PACKAGES) diff -Nru kemoticons-5.18.0/COPYING.CC-BY kemoticons-5.44.0/COPYING.CC-BY --- kemoticons-5.18.0/COPYING.CC-BY 1970-01-01 00:00:00.000000000 +0000 +++ kemoticons-5.44.0/COPYING.CC-BY 2018-03-03 09:52:23.000000000 +0000 @@ -0,0 +1,396 @@ +Attribution 4.0 International + +======================================================================= + +Creative Commons Corporation ("Creative Commons") is not a law firm and +does not provide legal services or legal advice. Distribution of +Creative Commons public licenses does not create a lawyer-client or +other relationship. Creative Commons makes its licenses and related +information available on an "as-is" basis. Creative Commons gives no +warranties regarding its licenses, any material licensed under their +terms and conditions, or any related information. Creative Commons +disclaims all liability for damages resulting from their use to the +fullest extent possible. + +Using Creative Commons Public Licenses + +Creative Commons public licenses provide a standard set of terms and +conditions that creators and other rights holders may use to share +original works of authorship and other material subject to copyright +and certain other rights specified in the public license below. The +following considerations are for informational purposes only, are not +exhaustive, and do not form part of our licenses. + + Considerations for licensors: Our public licenses are + intended for use by those authorized to give the public + permission to use material in ways otherwise restricted by + copyright and certain other rights. Our licenses are + irrevocable. Licensors should read and understand the terms + and conditions of the license they choose before applying it. + Licensors should also secure all rights necessary before + applying our licenses so that the public can reuse the + material as expected. Licensors should clearly mark any + material not subject to the license. This includes other CC- + licensed material, or material used under an exception or + limitation to copyright. More considerations for licensors: + wiki.creativecommons.org/Considerations_for_licensors + + Considerations for the public: By using one of our public + licenses, a licensor grants the public permission to use the + licensed material under specified terms and conditions. If + the licensor's permission is not necessary for any reason--for + example, because of any applicable exception or limitation to + copyright--then that use is not regulated by the license. Our + licenses grant only permissions under copyright and certain + other rights that a licensor has authority to grant. Use of + the licensed material may still be restricted for other + reasons, including because others have copyright or other + rights in the material. A licensor may make special requests, + such as asking that all changes be marked or described. + Although not required by our licenses, you are encouraged to + respect those requests where reasonable. More_considerations + for the public: + wiki.creativecommons.org/Considerations_for_licensees + +======================================================================= + +Creative Commons Attribution 4.0 International Public License + +By exercising the Licensed Rights (defined below), You accept and agree +to be bound by the terms and conditions of this Creative Commons +Attribution 4.0 International Public License ("Public License"). To the +extent this Public License may be interpreted as a contract, You are +granted the Licensed Rights in consideration of Your acceptance of +these terms and conditions, and the Licensor grants You such rights in +consideration of benefits the Licensor receives from making the +Licensed Material available under these terms and conditions. + + +Section 1 -- Definitions. + + a. Adapted Material means material subject to Copyright and Similar + Rights that is derived from or based upon the Licensed Material + and in which the Licensed Material is translated, altered, + arranged, transformed, or otherwise modified in a manner requiring + permission under the Copyright and Similar Rights held by the + Licensor. For purposes of this Public License, where the Licensed + Material is a musical work, performance, or sound recording, + Adapted Material is always produced where the Licensed Material is + synched in timed relation with a moving image. + + b. Adapter's License means the license You apply to Your Copyright + and Similar Rights in Your contributions to Adapted Material in + accordance with the terms and conditions of this Public License. + + c. Copyright and Similar Rights means copyright and/or similar rights + closely related to copyright including, without limitation, + performance, broadcast, sound recording, and Sui Generis Database + Rights, without regard to how the rights are labeled or + categorized. For purposes of this Public License, the rights + specified in Section 2(b)(1)-(2) are not Copyright and Similar + Rights. + + d. Effective Technological Measures means those measures that, in the + absence of proper authority, may not be circumvented under laws + fulfilling obligations under Article 11 of the WIPO Copyright + Treaty adopted on December 20, 1996, and/or similar international + agreements. + + e. Exceptions and Limitations means fair use, fair dealing, and/or + any other exception or limitation to Copyright and Similar Rights + that applies to Your use of the Licensed Material. + + f. Licensed Material means the artistic or literary work, database, + or other material to which the Licensor applied this Public + License. + + g. Licensed Rights means the rights granted to You subject to the + terms and conditions of this Public License, which are limited to + all Copyright and Similar Rights that apply to Your use of the + Licensed Material and that the Licensor has authority to license. + + h. Licensor means the individual(s) or entity(ies) granting rights + under this Public License. + + i. Share means to provide material to the public by any means or + process that requires permission under the Licensed Rights, such + as reproduction, public display, public performance, distribution, + dissemination, communication, or importation, and to make material + available to the public including in ways that members of the + public may access the material from a place and at a time + individually chosen by them. + + j. Sui Generis Database Rights means rights other than copyright + resulting from Directive 96/9/EC of the European Parliament and of + the Council of 11 March 1996 on the legal protection of databases, + as amended and/or succeeded, as well as other essentially + equivalent rights anywhere in the world. + + k. You means the individual or entity exercising the Licensed Rights + under this Public License. Your has a corresponding meaning. + + +Section 2 -- Scope. + + a. License grant. + + 1. Subject to the terms and conditions of this Public License, + the Licensor hereby grants You a worldwide, royalty-free, + non-sublicensable, non-exclusive, irrevocable license to + exercise the Licensed Rights in the Licensed Material to: + + a. reproduce and Share the Licensed Material, in whole or + in part; and + + b. produce, reproduce, and Share Adapted Material. + + 2. Exceptions and Limitations. For the avoidance of doubt, where + Exceptions and Limitations apply to Your use, this Public + License does not apply, and You do not need to comply with + its terms and conditions. + + 3. Term. The term of this Public License is specified in Section + 6(a). + + 4. Media and formats; technical modifications allowed. The + Licensor authorizes You to exercise the Licensed Rights in + all media and formats whether now known or hereafter created, + and to make technical modifications necessary to do so. The + Licensor waives and/or agrees not to assert any right or + authority to forbid You from making technical modifications + necessary to exercise the Licensed Rights, including + technical modifications necessary to circumvent Effective + Technological Measures. For purposes of this Public License, + simply making modifications authorized by this Section 2(a) + (4) never produces Adapted Material. + + 5. Downstream recipients. + + a. Offer from the Licensor -- Licensed Material. Every + recipient of the Licensed Material automatically + receives an offer from the Licensor to exercise the + Licensed Rights under the terms and conditions of this + Public License. + + b. No downstream restrictions. You may not offer or impose + any additional or different terms or conditions on, or + apply any Effective Technological Measures to, the + Licensed Material if doing so restricts exercise of the + Licensed Rights by any recipient of the Licensed + Material. + + 6. No endorsement. Nothing in this Public License constitutes or + may be construed as permission to assert or imply that You + are, or that Your use of the Licensed Material is, connected + with, or sponsored, endorsed, or granted official status by, + the Licensor or others designated to receive attribution as + provided in Section 3(a)(1)(A)(i). + + b. Other rights. + + 1. Moral rights, such as the right of integrity, are not + licensed under this Public License, nor are publicity, + privacy, and/or other similar personality rights; however, to + the extent possible, the Licensor waives and/or agrees not to + assert any such rights held by the Licensor to the limited + extent necessary to allow You to exercise the Licensed + Rights, but not otherwise. + + 2. Patent and trademark rights are not licensed under this + Public License. + + 3. To the extent possible, the Licensor waives any right to + collect royalties from You for the exercise of the Licensed + Rights, whether directly or through a collecting society + under any voluntary or waivable statutory or compulsory + licensing scheme. In all other cases the Licensor expressly + reserves any right to collect such royalties. + + +Section 3 -- License Conditions. + +Your exercise of the Licensed Rights is expressly made subject to the +following conditions. + + a. Attribution. + + 1. If You Share the Licensed Material (including in modified + form), You must: + + a. retain the following if it is supplied by the Licensor + with the Licensed Material: + + i. identification of the creator(s) of the Licensed + Material and any others designated to receive + attribution, in any reasonable manner requested by + the Licensor (including by pseudonym if + designated); + + ii. a copyright notice; + + iii. a notice that refers to this Public License; + + iv. a notice that refers to the disclaimer of + warranties; + + v. a URI or hyperlink to the Licensed Material to the + extent reasonably practicable; + + b. indicate if You modified the Licensed Material and + retain an indication of any previous modifications; and + + c. indicate the Licensed Material is licensed under this + Public License, and include the text of, or the URI or + hyperlink to, this Public License. + + 2. You may satisfy the conditions in Section 3(a)(1) in any + reasonable manner based on the medium, means, and context in + which You Share the Licensed Material. For example, it may be + reasonable to satisfy the conditions by providing a URI or + hyperlink to a resource that includes the required + information. + + 3. If requested by the Licensor, You must remove any of the + information required by Section 3(a)(1)(A) to the extent + reasonably practicable. + + 4. If You Share Adapted Material You produce, the Adapter's + License You apply must not prevent recipients of the Adapted + Material from complying with this Public License. + + +Section 4 -- Sui Generis Database Rights. + +Where the Licensed Rights include Sui Generis Database Rights that +apply to Your use of the Licensed Material: + + a. for the avoidance of doubt, Section 2(a)(1) grants You the right + to extract, reuse, reproduce, and Share all or a substantial + portion of the contents of the database; + + b. if You include all or a substantial portion of the database + contents in a database in which You have Sui Generis Database + Rights, then the database in which You have Sui Generis Database + Rights (but not its individual contents) is Adapted Material; and + + c. You must comply with the conditions in Section 3(a) if You Share + all or a substantial portion of the contents of the database. + +For the avoidance of doubt, this Section 4 supplements and does not +replace Your obligations under this Public License where the Licensed +Rights include other Copyright and Similar Rights. + + +Section 5 -- Disclaimer of Warranties and Limitation of Liability. + + a. UNLESS OTHERWISE SEPARATELY UNDERTAKEN BY THE LICENSOR, TO THE + EXTENT POSSIBLE, THE LICENSOR OFFERS THE LICENSED MATERIAL AS-IS + AND AS-AVAILABLE, AND MAKES NO REPRESENTATIONS OR WARRANTIES OF + ANY KIND CONCERNING THE LICENSED MATERIAL, WHETHER EXPRESS, + IMPLIED, STATUTORY, OR OTHER. THIS INCLUDES, WITHOUT LIMITATION, + WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR + PURPOSE, NON-INFRINGEMENT, ABSENCE OF LATENT OR OTHER DEFECTS, + ACCURACY, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT + KNOWN OR DISCOVERABLE. WHERE DISCLAIMERS OF WARRANTIES ARE NOT + ALLOWED IN FULL OR IN PART, THIS DISCLAIMER MAY NOT APPLY TO YOU. + + b. TO THE EXTENT POSSIBLE, IN NO EVENT WILL THE LICENSOR BE LIABLE + TO YOU ON ANY LEGAL THEORY (INCLUDING, WITHOUT LIMITATION, + NEGLIGENCE) OR OTHERWISE FOR ANY DIRECT, SPECIAL, INDIRECT, + INCIDENTAL, CONSEQUENTIAL, PUNITIVE, EXEMPLARY, OR OTHER LOSSES, + COSTS, EXPENSES, OR DAMAGES ARISING OUT OF THIS PUBLIC LICENSE OR + USE OF THE LICENSED MATERIAL, EVEN IF THE LICENSOR HAS BEEN + ADVISED OF THE POSSIBILITY OF SUCH LOSSES, COSTS, EXPENSES, OR + DAMAGES. WHERE A LIMITATION OF LIABILITY IS NOT ALLOWED IN FULL OR + IN PART, THIS LIMITATION MAY NOT APPLY TO YOU. + + c. The disclaimer of warranties and limitation of liability provided + above shall be interpreted in a manner that, to the extent + possible, most closely approximates an absolute disclaimer and + waiver of all liability. + + +Section 6 -- Term and Termination. + + a. This Public License applies for the term of the Copyright and + Similar Rights licensed here. However, if You fail to comply with + this Public License, then Your rights under this Public License + terminate automatically. + + b. Where Your right to use the Licensed Material has terminated under + Section 6(a), it reinstates: + + 1. automatically as of the date the violation is cured, provided + it is cured within 30 days of Your discovery of the + violation; or + + 2. upon express reinstatement by the Licensor. + + For the avoidance of doubt, this Section 6(b) does not affect any + right the Licensor may have to seek remedies for Your violations + of this Public License. + + c. For the avoidance of doubt, the Licensor may also offer the + Licensed Material under separate terms or conditions or stop + distributing the Licensed Material at any time; however, doing so + will not terminate this Public License. + + d. Sections 1, 5, 6, 7, and 8 survive termination of this Public + License. + + +Section 7 -- Other Terms and Conditions. + + a. The Licensor shall not be bound by any additional or different + terms or conditions communicated by You unless expressly agreed. + + b. Any arrangements, understandings, or agreements regarding the + Licensed Material not stated herein are separate from and + independent of the terms and conditions of this Public License. + + +Section 8 -- Interpretation. + + a. For the avoidance of doubt, this Public License does not, and + shall not be interpreted to, reduce, limit, restrict, or impose + conditions on any use of the Licensed Material that could lawfully + be made without permission under this Public License. + + b. To the extent possible, if any provision of this Public License is + deemed unenforceable, it shall be automatically reformed to the + minimum extent necessary to make it enforceable. If the provision + cannot be reformed, it shall be severed from this Public License + without affecting the enforceability of the remaining terms and + conditions. + + c. No term or condition of this Public License will be waived and no + failure to comply consented to unless expressly agreed to by the + Licensor. + + d. Nothing in this Public License constitutes or may be interpreted + as a limitation upon, or waiver of, any privileges and immunities + that apply to the Licensor or You, including from the legal + processes of any jurisdiction or authority. + + +======================================================================= + +Creative Commons is not a party to its public +licenses. Notwithstanding, Creative Commons may elect to apply one of +its public licenses to material it publishes and in those instances +will be considered the “Licensor.” The text of the Creative Commons +public licenses is dedicated to the public domain under the CC0 Public +Domain Dedication. Except for the limited purpose of indicating that +material is shared under a Creative Commons public license or as +otherwise permitted by the Creative Commons policies published at +creativecommons.org/policies, Creative Commons does not authorize the +use of the trademark "Creative Commons" or any other trademark or logo +of Creative Commons without its prior written consent including, +without limitation, in connection with any unauthorized modifications +to any of its public licenses or any other arrangements, +understandings, or agreements concerning use of licensed material. For +the avoidance of doubt, this paragraph does not form part of the +public licenses. + +Creative Commons may be contacted at creativecommons.org. + diff -Nru kemoticons-5.18.0/debian/changelog kemoticons-5.44.0/debian/changelog --- kemoticons-5.18.0/debian/changelog 2016-03-07 22:20:49.000000000 +0000 +++ kemoticons-5.44.0/debian/changelog 2019-12-13 04:26:13.000000000 +0000 @@ -1,3 +1,216 @@ +kemoticons (5.44.0-0ubuntu1~16.04.sav0) xenial; urgency=medium + + * Backport to Xenial + + -- Rob Savoury Thu, 12 Dec 2019 20:26:13 -0800 + +kemoticons (5.44.0-0ubuntu1) bionic; urgency=medium + + * New upstream release (5.44.0) + + -- Rik Mills Mon, 12 Mar 2018 19:57:18 +0000 + +kemoticons (5.43.0-0ubuntu1) bionic; urgency=medium + + * New upstream release (5.43.0) + + -- Rik Mills Sun, 11 Feb 2018 11:14:57 +0000 + +kemoticons (5.42.0-0ubuntu1) bionic; urgency=medium + + * New upstream release (5.42.0) + + -- Rik Mills Fri, 26 Jan 2018 22:21:05 +0000 + +kemoticons (5.41.0-0ubuntu1) bionic; urgency=medium + + [ Rik Mills ] + * Update symbols after fix of incorrectly leaked private symbols + + [ Walter Lapchynski ] + * New upstream release (5.41.0) + + -- Walter Lapchynski Sun, 10 Dec 2017 22:04:53 -0600 + +kemoticons (5.40.0-0ubuntu1) bionic; urgency=medium + + * New upstream release (5.39.0) + * New upstream release (5.40.0) + + -- Rik Mills Fri, 24 Nov 2017 17:16:06 +0000 + +kemoticons (5.38.0-0ubuntu1) artful; urgency=low + + * New upstream release (5.38.0) + + -- Rik Mills Mon, 11 Sep 2017 13:15:14 +0100 + +kemoticons (5.37.0-0ubuntu1) artful; urgency=low + + * New upstream release (5.37.0) + + -- Rik Mills Sat, 12 Aug 2017 18:51:16 +0100 + +kemoticons (5.36.0-0ubuntu1) artful; urgency=low + + * New upstream release (5.36.0) + + -- José Manuel Santamaría Lema Tue, 11 Jul 2017 23:55:44 +0100 + +kemoticons (5.35.0-0ubuntu1) artful; urgency=low + + * New upstream release (5.35.0) + + -- José Manuel Santamaría Lema Mon, 12 Jun 2017 23:01:27 +0100 + +kemoticons (5.34.0-0ubuntu1) artful; urgency=low + + * New upstream release (5.34.0) + + -- José Manuel Santamaría Lema Mon, 15 May 2017 21:29:16 +0100 + +kemoticons (5.33.0-0ubuntu1) artful; urgency=low + + * New upstream release (5.33.0) + + -- José Manuel Santamaría Lema Sat, 29 Apr 2017 18:11:25 +0100 + +kemoticons (5.31.0-0ubuntu1) zesty; urgency=medium + + * Pass '-fno-keep-inline-functions' to gcc in the acc test in order to + avoid possible spurious test failures. + * New upstream release (5.31.0) + + -- José Manuel Santamaría Lema Tue, 14 Feb 2017 22:53:55 +0000 + +kemoticons (5.30.0-0ubuntu1) zesty; urgency=low + + * New upstream release (5.30.0) + + -- Rik Mills Wed, 01 Feb 2017 18:37:52 +0000 + +kemoticons (5.28.0-0ubuntu1) zesty; urgency=low + + [ Rik Mills ] + * New upstream release (5.27.0) + * Merge with debian/master + + [ José Manuel Santamaría Lema ] + * Update Vcs-Git field to use https:// instead of git:// + * New upstream release (5.28.0) + + -- José Manuel Santamaría Lema Mon, 05 Dec 2016 20:20:40 +0000 + +kemoticons (5.27.0-1) unstable; urgency=medium + + [ Automatic packaging ] + * Update build-deps and deps with the info from cmake + + [ Maximiliano Curia ] + * New upstream release (5.27) + * Bump group breaks (5.27) + + -- Maximiliano Curia Sat, 15 Oct 2016 17:02:50 +0200 + +kemoticons (5.26.0-1) unstable; urgency=medium + + [ Automatic packaging ] + * Update build-deps and deps with the info from cmake + + [ Maximiliano Curia ] + * Bump group breaks (5.26) + * Replace dbus-launch with dbus-run-session in tests + + -- Maximiliano Curia Thu, 29 Sep 2016 12:00:55 +0200 + +kemoticons (5.26.0-0ubuntu1) yakkety; urgency=low + + * New upstream release (5.26.0) + + -- Rik Mills Thu, 22 Sep 2016 13:44:22 +0100 + +kemoticons (5.25.0-1) unstable; urgency=medium + + [ Automatic packaging ] + * Update build-deps and deps with the info from cmake + + [ Maximiliano Curia ] + * Bump group breaks (5.25) + + -- Maximiliano Curia Sat, 20 Aug 2016 09:58:23 +0200 + +kemoticons (5.24.0-0ubuntu1) yakkety; urgency=medium + + * New upstream release (5.24.0) + + -- Philip Muškovac Tue, 26 Jul 2016 08:40:30 +0000 + +kemoticons (5.23.0-1) unstable; urgency=medium + + [ Automatic packaging ] + * Update build-deps and deps with the info from cmake + * Update symbols files. + + -- Maximiliano Curia Sun, 19 Jun 2016 18:43:48 +0200 + +kemoticons (5.23.0-0ubuntu1) yakkety; urgency=medium + + * Refreshing symbols + * New upstream release (5.23.0) + + -- Clive Johnston Mon, 11 Jul 2016 22:11:43 +0200 + +kemoticons (5.22.0-1) unstable; urgency=medium + + [ Automatic packaging ] + * Update build-deps and deps with the info from cmake + + -- Maximiliano Curia Thu, 19 May 2016 17:22:27 +0200 + +kemoticons (5.22.0-0ubuntu1) yakkety; urgency=medium + + [ Scarlett Clark ] + * New upstream release. + * Debian merge: No remaining changes. + + [ Philip Muškovac ] + * Update the Vcs URLs now that the repositories are hosted on + Launchpad + * Don't complain about the symbol dependency + + [ Clive Johnston ] + * New upstream release + + -- Clive Johnston Tue, 17 May 2016 16:20:28 -0700 + +kemoticons (5.21.0-1) experimental; urgency=medium + + [ Maximiliano Curia ] + * Replace the "Historical name" ddeb-migration by its "Modern, clearer" replacement dbgsym-migration. + * Add upstream metadata (DEP-12) + * debian/control: Update Vcs-Browser and Vcs-Git fields + * Update acc test script + * uscan no longer supports more than one main upstream tarball being listed + + [ Automatic packaging ] + * Update build-deps and deps with the info from cmake + * Bump Standards-Version to 3.9.8 + + -- Maximiliano Curia Tue, 10 May 2016 14:38:02 +0200 + +kemoticons (5.19.0-1) experimental; urgency=medium + + * New upstream release (5.19.0). + + -- Maximiliano Curia Sat, 13 Feb 2016 15:16:19 +0100 + +kemoticons (5.18.0-1) experimental; urgency=medium + + * New upstream release (5.17.0). + * New upstream release (5.18.0). + + -- Maximiliano Curia Wed, 27 Jan 2016 13:34:05 +0100 + kemoticons (5.18.0-0ubuntu1) xenial; urgency=medium [ Scarlett Clark ] @@ -6,7 +219,14 @@ [ Philip Muškovac ] * New upstream release - -- Philip Muškovac Mon, 07 Mar 2016 23:20:49 +0100 + -- Philip Muškovac Wed, 06 Jan 2016 15:00:44 +0100 + +kemoticons (5.16.0-2) unstable; urgency=medium + + * Add libkf5emoticons-bin to libkf5emoticons5.symbols dependency list + * Add myself to uploaders + + -- Diane Trout Sat, 05 Dec 2015 11:28:07 -0800 kemoticons (5.16.0-1) unstable; urgency=medium diff -Nru kemoticons-5.18.0/debian/control kemoticons-5.44.0/debian/control --- kemoticons-5.18.0/debian/control 2016-03-07 22:20:49.000000000 +0000 +++ kemoticons-5.44.0/debian/control 2018-03-12 19:57:18.000000000 +0000 @@ -2,38 +2,20 @@ Section: libs Priority: optional Maintainer: Debian/Kubuntu Qt/KDE Maintainers -Uploaders: Maximiliano Curia +Uploaders: Maximiliano Curia , Diane Trout Build-Depends: cmake (>= 2.8.12), debhelper (>= 9), - extra-cmake-modules (>= 5.18.0~), - libkf5archive-dev (>= 5.18.0~), - libkf5config-dev (>= 5.18.0~), - libkf5coreaddons-dev (>= 5.18.0~), - libkf5service-dev (>= 5.18.0~), + extra-cmake-modules (>= 5.44.0~), + libkf5archive-dev (>= 5.44.0~), + libkf5config-dev (>= 5.44.0~), + libkf5coreaddons-dev (>= 5.44.0~), + libkf5service-dev (>= 5.44.0~), pkg-kde-tools (>= 0.15.15ubuntu1~), - qtbase5-dev (>= 5.4) -Standards-Version: 3.9.6 + qtbase5-dev (>= 5.6.1~) +Standards-Version: 3.9.8 Homepage: https://projects.kde.org/projects/frameworks/kemoticons -Vcs-Browser: http://anonscm.debian.org/cgit/pkg-kde/frameworks/kemoticons.git -Vcs-Git: git://anonscm.debian.org/pkg-kde/frameworks/kemoticons.git - -Package: libkf5emoticons-dev -Section: libdevel -Architecture: any -Depends: libkf5archive-dev (>= 5.16.0~), - libkf5emoticons5 (= ${binary:Version}), - libkf5service-dev (>= 5.16.0~), - qtbase5-dev (>= 5.4), - ${misc:Depends} -Breaks: libkf5emoticons-bin (<< 5.12.0~) -Replaces: libkf5emoticons-bin (<< 5.12.0~) -Description: Support for emoticons and emoticons themes. - This class can be used to retrieve, install, - create emoticons theme. It can also be used to - set the emoticon theme and the parse mode in the - config file. - . - Contains development files for kemoticons. +Vcs-Browser: https://code.launchpad.net/~kubuntu-packagers/kubuntu-packaging/+git/kemoticons +Vcs-Git: https://git.launchpad.net/~kubuntu-packagers/kubuntu-packaging/+git/kemoticons Package: libkf5emoticons-bin Architecture: any @@ -62,30 +44,33 @@ . This package contains the data files. -Package: libkf5emoticons5 +Package: libkf5emoticons-dev Architecture: any -Multi-Arch: same -Depends: libkf5emoticons-data (= ${source:Version}), - ${misc:Depends}, - ${shlibs:Depends} -Recommends: libkf5emoticons-bin (= ${binary:Version}) +Section: libdevel +Depends: libkf5archive-dev (>= 5.44.0~), + libkf5emoticons5 (= ${binary:Version}), + libkf5service-dev (>= 5.44.0~), + qtbase5-dev (>= 5.6.1~), + ${misc:Depends} +Breaks: libkf5emoticons-bin (<< 5.12.0~) +Replaces: libkf5emoticons-bin (<< 5.12.0~) Description: Support for emoticons and emoticons themes. This class can be used to retrieve, install, create emoticons theme. It can also be used to set the emoticon theme and the parse mode in the config file. + . + Contains development files for kemoticons. -Package: libkf5emoticons5-dbg -Priority: extra -Section: debug +Package: libkf5emoticons5 Architecture: any Multi-Arch: same -Depends: libkf5emoticons5 (= ${binary:Version}), ${misc:Depends} +Depends: libkf5emoticons-data (= ${source:Version}), + ${misc:Depends}, + ${shlibs:Depends}, Recommends: libkf5emoticons-bin (= ${binary:Version}) -Description: Support for emoticons and emoticons themes +Description: Support for emoticons and emoticons themes. This class can be used to retrieve, install, create emoticons theme. It can also be used to set the emoticon theme and the parse mode in the config file. - . - Contains debug symbols for kemoticons. diff -Nru kemoticons-5.18.0/debian/libkf5emoticons5.lintian-overrides kemoticons-5.44.0/debian/libkf5emoticons5.lintian-overrides --- kemoticons-5.18.0/debian/libkf5emoticons5.lintian-overrides 1970-01-01 00:00:00.000000000 +0000 +++ kemoticons-5.44.0/debian/libkf5emoticons5.lintian-overrides 2018-03-12 19:57:18.000000000 +0000 @@ -0,0 +1 @@ +libkf5emoticons5: symbols-declares-dependency-on-other-package libkf5emoticons-bin diff -Nru kemoticons-5.18.0/debian/libkf5emoticons5.symbols kemoticons-5.44.0/debian/libkf5emoticons5.symbols --- kemoticons-5.18.0/debian/libkf5emoticons5.symbols 2016-03-07 22:20:49.000000000 +0000 +++ kemoticons-5.44.0/debian/libkf5emoticons5.symbols 2018-03-12 19:57:18.000000000 +0000 @@ -1,11 +1,12 @@ -# SymbolsHelper-Confirmed: 4.96.0 amd64 -libKF5Emoticons.so.5 libkf5emoticons5 #MINVER# +# SymbolsHelper-Confirmed: 5.40.0+git20171106 amd64 +libKF5Emoticons.so.5 libkf5emoticons5 #MINVER#, libkf5emoticons-bin _ZN10KEmoticons11qt_metacallEN11QMetaObject4CallEiPPv@Base 4.96.0 _ZN10KEmoticons11qt_metacastEPKc@Base 4.96.0 _ZN10KEmoticons12installThemeERK7QString@Base 4.96.0 _ZN10KEmoticons12setParseModeE6QFlagsIN15KEmoticonsTheme13ParseModeEnumEE@Base 4.96.0 _ZN10KEmoticons16currentThemeNameEv@Base 4.96.0 _ZN10KEmoticons16staticMetaObjectE@Base 4.96.0 + _ZN10KEmoticons24setPreferredEmoticonSizeERK5QSize@Base 5.23.0 _ZN10KEmoticons8newThemeERK7QStringRK28QExplicitlySharedDataPointerI8KServiceE@Base 4.96.0 _ZN10KEmoticons8setThemeERK15KEmoticonsTheme@Base 4.96.0 _ZN10KEmoticons8setThemeERK7QString@Base 4.96.0 @@ -19,10 +20,6 @@ _ZN15KEmoticonsTheme11addEmoticonERK7QStringS2_N18KEmoticonsProvider17AddEmoticonOptionE@Base 4.96.0 _ZN15KEmoticonsTheme12setThemeNameERK7QString@Base 4.96.0 _ZN15KEmoticonsTheme14removeEmoticonERK7QString@Base 4.96.0 - _ZN15KEmoticonsTheme19KEmoticonsThemeDataC1Ev@Base 4.96.0 - _ZN15KEmoticonsTheme19KEmoticonsThemeDataC2Ev@Base 4.96.0 - _ZN15KEmoticonsTheme19KEmoticonsThemeDataD1Ev@Base 4.96.0 - _ZN15KEmoticonsTheme19KEmoticonsThemeDataD2Ev@Base 4.96.0 _ZN15KEmoticonsTheme4saveEv@Base 4.96.0 _ZN15KEmoticonsTheme9createNewEv@Base 4.96.0 _ZN15KEmoticonsTheme9loadThemeERK7QString@Base 4.96.0 @@ -50,6 +47,7 @@ _ZN18KEmoticonsProvider17clearEmoticonsMapEv@Base 4.96.0 _ZN18KEmoticonsProvider18removeEmoticonsMapE7QString@Base 4.96.0 _ZN18KEmoticonsProvider19removeEmoticonIndexERK7QStringRK11QStringList@Base 4.96.0 + _ZN18KEmoticonsProvider24setPreferredEmoticonSizeERK5QSize@Base 5.23.0 _ZN18KEmoticonsProvider4saveEv@Base 4.96.0 _ZN18KEmoticonsProvider9createNewEv@Base 4.96.0 _ZN18KEmoticonsProviderC1EP7QObject@Base 4.96.0 @@ -58,6 +56,7 @@ _ZN18KEmoticonsProviderD1Ev@Base 4.96.0 _ZN18KEmoticonsProviderD2Ev@Base 4.96.0 _ZNK10KEmoticons10metaObjectEv@Base 4.96.0 + _ZNK10KEmoticons21preferredEmoticonSizeEv@Base 5.23.0 _ZNK10KEmoticons5themeERK7QString@Base 4.96.0 _ZNK10KEmoticons5themeEv@Base 4.96.0 _ZNK15KEmoticonsTheme12emoticonsMapEv@Base 4.96.0 @@ -70,6 +69,7 @@ _ZNK18KEmoticonsProvider10metaObjectEv@Base 4.96.0 _ZNK18KEmoticonsProvider12emoticonsMapEv@Base 4.96.0 _ZNK18KEmoticonsProvider14emoticonsIndexEv@Base 4.96.0 + _ZNK18KEmoticonsProvider21preferredEmoticonSizeEv@Base 5.23.0 _ZNK18KEmoticonsProvider8fileNameEv@Base 4.96.0 _ZNK18KEmoticonsProvider9themeNameEv@Base 4.96.0 _ZNK18KEmoticonsProvider9themePathEv@Base 4.96.0 diff -Nru kemoticons-5.18.0/debian/libkf5emoticons-dev.acc.in kemoticons-5.44.0/debian/libkf5emoticons-dev.acc.in --- kemoticons-5.18.0/debian/libkf5emoticons-dev.acc.in 2016-03-07 22:20:49.000000000 +0000 +++ kemoticons-5.44.0/debian/libkf5emoticons-dev.acc.in 2018-03-12 19:57:18.000000000 +0000 @@ -1,4 +1,4 @@ - + @@ -17,6 +17,7 @@ -fPIC -std=c++11 + -fno-keep-inline-functions - + \ No newline at end of file diff -Nru kemoticons-5.18.0/debian/rules kemoticons-5.44.0/debian/rules --- kemoticons-5.18.0/debian/rules 2016-03-07 22:20:49.000000000 +0000 +++ kemoticons-5.44.0/debian/rules 2018-03-12 19:57:18.000000000 +0000 @@ -4,7 +4,7 @@ include /usr/share/pkg-kde-tools/qt-kde-team/3/debian-qt-kde.mk override_dh_strip: - $(overridden_command) --dbg-package=libkf5emoticons5-dbg + $(overridden_command) --dbgsym-migration='libkf5emoticons5-dbg (<= 5.19.0-1~~)' override_dh_auto_test: # Disable dh_auto_test at build time diff -Nru kemoticons-5.18.0/debian/tests/acc kemoticons-5.44.0/debian/tests/acc --- kemoticons-5.18.0/debian/tests/acc 2016-03-07 22:20:49.000000000 +0000 +++ kemoticons-5.44.0/debian/tests/acc 2018-03-12 19:57:18.000000000 +0000 @@ -8,4 +8,11 @@ "${in_file}" > "${out_file}" done +DH_VERBOSE=1 + dh_acc +ret=$? +if [ 0 -ne $ret ]; then + cp -r logs "${ADT_ARTIFACTS}"/acc.logs +fi +exit $ret diff -Nru kemoticons-5.18.0/debian/tests/control kemoticons-5.44.0/debian/tests/control --- kemoticons-5.18.0/debian/tests/control 2016-03-07 22:20:49.000000000 +0000 +++ kemoticons-5.44.0/debian/tests/control 2018-03-12 19:57:18.000000000 +0000 @@ -1,6 +1,6 @@ Tests: testsuite Depends: @, @builddeps@, build-essential, - xvfb, xauth, dbus-x11, openbox, + xvfb, xauth, dbus (>= 1.8), openbox, kded5, kinit, libkf5service-bin Restrictions: build-needed diff -Nru kemoticons-5.18.0/debian/tests/testsuite kemoticons-5.44.0/debian/tests/testsuite --- kemoticons-5.18.0/debian/tests/testsuite 2016-03-07 22:20:49.000000000 +0000 +++ kemoticons-5.44.0/debian/tests/testsuite 2018-03-12 19:57:18.000000000 +0000 @@ -3,7 +3,7 @@ [ -e debian/tests.home ] || mkdir debian/tests.home export HOME="$(pwd)/debian/tests.home" xvfb-run -a --server-args="-screen 0 1024x768x24+32" \ - dbus-launch --exit-with-session debian/tests/testsuite.xsession + dbus-run-session -- debian/tests/testsuite.xsession ret=$? rm -rf debian/tests.home exit $ret diff -Nru kemoticons-5.18.0/debian/upstream/metadata kemoticons-5.44.0/debian/upstream/metadata --- kemoticons-5.18.0/debian/upstream/metadata 1970-01-01 00:00:00.000000000 +0000 +++ kemoticons-5.44.0/debian/upstream/metadata 2018-03-12 19:57:18.000000000 +0000 @@ -0,0 +1,7 @@ +Name: kemoticons +Changelog: https://quickgit.kde.org/?p=kemoticons.git&a=log +Contact: kde-frameworks-devel@kde.org +Donation: https://www.kde.org/community/donations/index.php +Repository: https://anongit.kde.org/kemoticons.git +Repository-Browse: https://quickgit.kde.org/?p=kemoticons.git +Security-Contact: security@kde.org diff -Nru kemoticons-5.18.0/debian/watch kemoticons-5.44.0/debian/watch --- kemoticons-5.18.0/debian/watch 2016-03-07 22:20:49.000000000 +0000 +++ kemoticons-5.44.0/debian/watch 2018-03-12 19:57:18.000000000 +0000 @@ -1,3 +1,2 @@ version=3 -http://download.kde.org/unstable/frameworks/([\d.]+)/kemoticons-([\d.]+)\.tar\.xz http://download.kde.org/stable/frameworks/([\d.]+)/kemoticons-([\d.]+)\.tar\.xz diff -Nru kemoticons-5.18.0/KF5EmoticonsConfig.cmake.in kemoticons-5.44.0/KF5EmoticonsConfig.cmake.in --- kemoticons-5.18.0/KF5EmoticonsConfig.cmake.in 2016-01-01 19:55:29.000000000 +0000 +++ kemoticons-5.44.0/KF5EmoticonsConfig.cmake.in 2018-03-03 09:52:23.000000000 +0000 @@ -1,7 +1,9 @@ @PACKAGE_INIT@ +include(CMakeFindDependencyMacro) find_dependency(Qt5Gui @REQUIRED_QT_VERSION@) find_dependency(KF5Service "@KF5_DEP_VERSION@") include("${CMAKE_CURRENT_LIST_DIR}/KF5EmoticonsTargets.cmake") +@PACKAGE_INCLUDE_QCHTARGETS@ diff -Nru kemoticons-5.18.0/metainfo.yaml kemoticons-5.44.0/metainfo.yaml --- kemoticons-5.18.0/metainfo.yaml 2016-01-01 19:55:29.000000000 +0000 +++ kemoticons-5.44.0/metainfo.yaml 2018-03-03 09:52:23.000000000 +0000 @@ -3,7 +3,10 @@ tier: 3 type: functional platforms: - - name: All + - name: Linux + - name: FreeBSD + - name: Windows + - name: MacOSX portingAid: false deprecated: false release: true @@ -11,3 +14,7 @@ - qmake: KEmoticons cmake: "KF5::Emoticons" cmakename: KF5Emoticons + +public_lib: true +group: Frameworks +subgroup: Tier 3 diff -Nru kemoticons-5.18.0/.reviewboardrc kemoticons-5.44.0/.reviewboardrc --- kemoticons-5.18.0/.reviewboardrc 2016-01-01 19:55:29.000000000 +0000 +++ kemoticons-5.44.0/.reviewboardrc 1970-01-01 00:00:00.000000000 +0000 @@ -1,4 +0,0 @@ -REVIEWBOARD_URL = "https://git.reviewboard.kde.org" -REPOSITORY = 'git://anongit.kde.org/kemoticons' -BRANCH = 'master' -TARGET_GROUPS = 'kdeframeworks' diff -Nru kemoticons-5.18.0/src/core/CMakeLists.txt kemoticons-5.44.0/src/core/CMakeLists.txt --- kemoticons-5.18.0/src/core/CMakeLists.txt 2016-01-01 19:55:29.000000000 +0000 +++ kemoticons-5.44.0/src/core/CMakeLists.txt 2018-03-03 09:52:23.000000000 +0000 @@ -4,6 +4,7 @@ kemoticons.cpp kemoticonstheme.cpp kemoticonsprovider.cpp + kemoticonsglobal.cpp ) add_library(KF5Emoticons ${kemoticons_LIB_SRCS}) @@ -18,6 +19,7 @@ KF5::Service # for KService::Ptr, KServiceTypeTrader PRIVATE KF5::Archive # for KTar, KZip + Qt5::DBus ) set_target_properties(KF5Emoticons PROPERTIES @@ -47,6 +49,29 @@ COMPONENT Devel ) +if(BUILD_QCH) + ecm_add_qch( + KF5Emoticons_QCH + NAME KEmoticons + BASE_NAME KF5Emoticons + VERSION ${KF5_VERSION} + ORG_DOMAIN org.kde + SOURCES # using only public headers, to cover only public API + ${KEmoticons_HEADERS} + MD_MAINPAGE "${CMAKE_SOURCE_DIR}/README.md" + LINK_QCHS + Qt5Gui_QCH + KF5Service_QCH + BLANK_MACROS + KEMOTICONS_EXPORT + KEMOTICONS_DEPRECATED + KEMOTICONS_DEPRECATED_EXPORT + TAGFILE_INSTALL_DESTINATION ${KDE_INSTALL_QTQCHDIR} + QCH_INSTALL_DESTINATION ${KDE_INSTALL_QTQCHDIR} + COMPONENT Devel + ) +endif() + include(ECMGeneratePriFile) ecm_generate_pri_file(BASE_NAME KEmoticons LIB_NAME KF5Emoticons DEPS "widgets KService" FILENAME_VAR PRI_FILENAME INCLUDE_INSTALL_DIR ${KDE_INSTALL_INCLUDEDIR_KF5}/KEmoticons) install(FILES ${PRI_FILENAME} DESTINATION ${ECM_MKSPECS_INSTALL_DIR}) diff -Nru kemoticons-5.18.0/src/core/kemoticons.cpp kemoticons-5.44.0/src/core/kemoticons.cpp --- kemoticons-5.18.0/src/core/kemoticons.cpp 2016-01-01 19:55:29.000000000 +0000 +++ kemoticons-5.44.0/src/core/kemoticons.cpp 2018-03-03 09:52:23.000000000 +0000 @@ -18,6 +18,7 @@ **********************************************************************************/ #include "kemoticons.h" +#include "kemoticonsglobal_p.h" #include "kemoticonsprovider.h" #include @@ -28,24 +29,30 @@ #include #include +#include #include #include #include #include +Q_GLOBAL_STATIC(KEmoticonsGlobal, s_global) + class KEmoticonsPrivate { public: KEmoticonsPrivate(KEmoticons *parent); ~KEmoticonsPrivate(); void loadServiceList(); + KEmoticonsProvider *loadProvider(const KPluginMetaData &plugin); KEmoticonsProvider *loadProvider(const KService::Ptr &service); KEmoticonsTheme loadTheme(const QString &name); - QList m_loaded; + QList m_oldStylePlugins; + QVector m_plugins; QHash m_themes; QFileSystemWatcher m_fileWatcher; KEmoticons *q; + QSize m_preferredSize; //private slots void changeTheme(const QString &path); @@ -60,16 +67,32 @@ { } -bool priorityLessThan(const KService::Ptr &s1, const KService::Ptr &s2) +static bool priorityLessThan(const KService::Ptr &s1, const KService::Ptr &s2) { return (s1->property(QStringLiteral("X-KDE-Priority")).toInt() > s2->property(QStringLiteral("X-KDE-Priority")).toInt()); } void KEmoticonsPrivate::loadServiceList() { - QString constraint("(exist Library)"); - m_loaded = KServiceTypeTrader::self()->query(QStringLiteral("KEmoticons"), constraint); - qSort(m_loaded.begin(), m_loaded.end(), priorityLessThan); + const QString constraint(QStringLiteral("(exist Library)")); + m_oldStylePlugins = KServiceTypeTrader::self()->query(QStringLiteral("KEmoticons"), constraint); + qSort(m_oldStylePlugins.begin(), m_oldStylePlugins.end(), priorityLessThan); + + m_plugins = KPluginLoader::findPlugins(QStringLiteral("kf5/emoticonsthemes")); + std::sort(m_plugins.begin(), m_plugins.end(), [](const KPluginMetaData &s1, const KPluginMetaData &s2) { + return s1.rawData().value(QStringLiteral("X-KDE-Priority")).toInt() > s2.rawData().value(QStringLiteral("X-KDE-Priority")).toInt(); + }); +} + +KEmoticonsProvider *KEmoticonsPrivate::loadProvider(const KPluginMetaData &plugin) +{ + KPluginFactory *factory = qobject_cast(plugin.instantiate()); + if (!factory) { + qWarning() << "Invalid plugin factory for" << plugin.fileName(); + return nullptr; + } + KEmoticonsProvider *provider = factory->create(nullptr); + return provider; } KEmoticonsProvider *KEmoticonsPrivate::loadProvider(const KService::Ptr &service) @@ -77,16 +100,16 @@ KPluginFactory *factory = KPluginLoader(service->library()).factory(); if (!factory) { qWarning() << "Invalid plugin factory for" << service->library(); - return 0; + return nullptr; } - KEmoticonsProvider *provider = factory->create(0); + KEmoticonsProvider *provider = factory->create(nullptr); return provider; } void KEmoticonsPrivate::changeTheme(const QString &path) { - QFileInfo info(path); - QString name = info.dir().dirName(); + const QFileInfo info(path); + const QString name = info.dir().dirName(); if (m_themes.contains(name)) { loadTheme(name); @@ -95,18 +118,38 @@ KEmoticonsTheme KEmoticonsPrivate::loadTheme(const QString &name) { - const int numberOfTheme = m_loaded.size(); - for (int i = 0; i < numberOfTheme; ++i) { - const QString fName = m_loaded.at(i)->property(QStringLiteral("X-KDE-EmoticonsFileName")).toString(); - const QString path = QStandardPaths::locate(QStandardPaths::GenericDataLocation, "emoticons/" + name + '/' + fName); + const auto registerProvider = [this](const QString &name, const QString &path, KEmoticonsProvider *provider) { + if (m_preferredSize.isValid()) { + provider->setPreferredEmoticonSize(m_preferredSize); + } + KEmoticonsTheme theme(provider); + provider->loadTheme(path); + m_themes.insert(name, theme); + m_fileWatcher.addPath(path); + return theme; + }; + + for (const KPluginMetaData &plugin : qAsConst(m_plugins)) { + const QString fName = plugin.rawData().value(QStringLiteral("X-KDE-EmoticonsFileName")).toString(); + const QString path = QStandardPaths::locate(QStandardPaths::GenericDataLocation, QStringLiteral("emoticons/") + name + QLatin1Char('/') + fName); if (QFile::exists(path)) { - KEmoticonsProvider *provider = loadProvider(m_loaded.at(i)); - KEmoticonsTheme theme(provider); - provider->loadTheme(path); - m_themes.insert(name, theme); - m_fileWatcher.addPath(path); - return theme; + KEmoticonsProvider *provider = loadProvider(plugin); + if (provider) { + return registerProvider(name, path, provider); + } + } + } + // KF6: remove support for old plugins + for (const KService::Ptr &service : qAsConst(m_oldStylePlugins)) { + const QString fName = service->property(QStringLiteral("X-KDE-EmoticonsFileName")).toString(); + const QString path = QStandardPaths::locate(QStandardPaths::GenericDataLocation, QStringLiteral("emoticons/") + name + QLatin1Char('/') + fName); + + if (QFile::exists(path)) { + KEmoticonsProvider *provider = loadProvider(service); + if (provider) { + return registerProvider(name, path, provider); + } } } return KEmoticonsTheme(); @@ -130,8 +173,9 @@ KEmoticonsTheme KEmoticons::theme(const QString &name) const { - if (d->m_themes.contains(name)) { - return d->m_themes.value(name); + KEmoticonsTheme theme = d->m_themes.value(name); + if (!theme.isNull()) { + return theme; } return d->loadTheme(name); @@ -139,15 +183,14 @@ QString KEmoticons::currentThemeName() { - KConfigGroup config(KSharedConfig::openConfig(QStringLiteral("kdeglobals")), "Emoticons"); - QString name = config.readEntry("emoticonsTheme", "Breeze"); - return name; + return s_global()->m_themeName; } QStringList KEmoticons::themeList() { - QStringList ls; const QStringList themeDirs = QStandardPaths::locateAll(QStandardPaths::GenericDataLocation, QStringLiteral("emoticons"), QStandardPaths::LocateDirectory); + QStringList ls; + ls.reserve(themeDirs.count()); for (int i = 0; i < themeDirs.count(); ++i) { QDir themeQDir(themeDirs[i]); @@ -165,30 +208,41 @@ void KEmoticons::setTheme(const QString &theme) { - KConfigGroup config(KSharedConfig::openConfig(QStringLiteral("kdeglobals")), "Emoticons"); - config.writeEntry("emoticonsTheme", theme); - config.sync(); + s_global()->setThemeName(theme); +} + +KEmoticonsTheme::ParseMode KEmoticons::parseMode() +{ + return s_global()->m_parseMode; +} + +void KEmoticons::setParseMode(KEmoticonsTheme::ParseMode mode) +{ + s_global()->setParseMode(mode); } KEmoticonsTheme KEmoticons::newTheme(const QString &name, const KService::Ptr &service) { KEmoticonsProvider *provider = d->loadProvider(service); - KEmoticonsTheme theme(provider); - theme.setThemeName(name); + if (provider) { + KEmoticonsTheme theme(provider); + theme.setThemeName(name); - provider->newTheme(); + provider->newTheme(); - return theme; + return theme; + } + return KEmoticonsTheme(); } QStringList KEmoticons::installTheme(const QString &archiveName) { QStringList foundThemes; - KArchiveEntry *currentEntry = 0L; - KArchiveDirectory *currentDir = 0L; - KArchive *archive = 0L; + KArchiveEntry *currentEntry = nullptr; + KArchiveDirectory *currentDir = nullptr; + KArchive *archive = nullptr; - QString localThemesDir(QStandardPaths::writableLocation(QStandardPaths::GenericDataLocation) + "/emoticons"); + const QString localThemesDir(QStandardPaths::writableLocation(QStandardPaths::GenericDataLocation) + QStringLiteral("/emoticons")); if (localThemesDir.isEmpty()) { qCritical() << "Could not find a suitable place in which to install the emoticon theme"; @@ -233,10 +287,15 @@ if (currentEntry->isDirectory()) { currentDir = dynamic_cast(currentEntry); - for (int i = 0; i < d->m_loaded.size(); ++i) { - QString fName = d->m_loaded.at(i)->property(QStringLiteral("X-KDE-EmoticonsFileName")).toString(); - - if (currentDir && currentDir->entry(fName) != NULL) { + for (const KPluginMetaData &plugin : qAsConst(d->m_plugins)) { + const QString fName = plugin.rawData().value(QStringLiteral("X-KDE-EmoticonsFileName")).toString(); + if (currentDir && currentDir->entry(fName) != nullptr) { + foundThemes.append(currentDir->name()); + } + } + for (const KService::Ptr &service : qAsConst(d->m_oldStylePlugins)) { + const QString fName = service->property(QStringLiteral("X-KDE-EmoticonsFileName")).toString(); + if (currentDir && currentDir->entry(fName) != nullptr) { foundThemes.append(currentDir->name()); } } @@ -254,7 +313,7 @@ const QString &theme = foundThemes[themeIndex]; currentEntry = const_cast(rootDir->entry(theme)); - if (currentEntry == 0) { + if (currentEntry == nullptr) { // qDebug() << "couldn't get next archive entry"; continue; } @@ -262,7 +321,7 @@ if (currentEntry->isDirectory()) { currentDir = dynamic_cast(currentEntry); - if (currentDir == 0) { + if (currentDir == nullptr) { // qDebug() << "couldn't cast archive entry to KArchiveDirectory"; continue; } @@ -277,18 +336,14 @@ return foundThemes; } -void KEmoticons::setParseMode(KEmoticonsTheme::ParseMode mode) +void KEmoticons::setPreferredEmoticonSize(const QSize &size) { - KConfigGroup config(KSharedConfig::openConfig(QStringLiteral("kdeglobals")), "Emoticons"); - config.writeEntry("parseMode", int(mode)); - config.sync(); + d->m_preferredSize = size; } -KEmoticonsTheme::ParseMode KEmoticons::parseMode() +QSize KEmoticons::preferredEmoticonSize() const { - KConfigGroup config(KSharedConfig::openConfig(QStringLiteral("kdeglobals")), "Emoticons"); - return (KEmoticonsTheme::ParseMode) config.readEntry("parseMode", int(KEmoticonsTheme::RelaxedParse)); + return d->m_preferredSize; } #include "moc_kemoticons.cpp" - diff -Nru kemoticons-5.18.0/src/core/kemoticonsglobal.cpp kemoticons-5.44.0/src/core/kemoticonsglobal.cpp --- kemoticons-5.18.0/src/core/kemoticonsglobal.cpp 1970-01-01 00:00:00.000000000 +0000 +++ kemoticons-5.44.0/src/core/kemoticonsglobal.cpp 2018-03-03 09:52:23.000000000 +0000 @@ -0,0 +1,82 @@ +/********************************************************************************** + * Copyright (C) 2017 David Faure * + * * + * This library is free software; you can redistribute it and/or * + * modify it under the terms of the GNU Lesser General Public * + * License as published by the Free Software Foundation; either * + * version 2.1 of the License, or (at your option) any later version. * + * * + * This library is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * + * Lesser General Public License for more details. * + * * + * You should have received a copy of the GNU Lesser General Public * + * License along with this library. If not, see .* + * * + **********************************************************************************/ + +#include "kemoticonsglobal_p.h" +#include +#include +#include +#include +#include + +static const char s_dbusPath[] = "/KEmoticons"; +static const char s_dbusInterface[] = "org.kde.kf5.KEmoticons"; +static const char s_themeChangedSignal[] = "emoticonsThemeChanged"; +static const char s_parseModeChangedSignal[] = "emoticonsParseModeChanged"; + +KEmoticonsGlobal::KEmoticonsGlobal() +{ + KConfigGroup config(KSharedConfig::openConfig(), "Emoticons"); + m_themeName = config.readEntry("emoticonsTheme", "Breeze"); + m_parseMode = static_cast(config.readEntry("parseMode", int(KEmoticonsTheme::RelaxedParse))); + + QDBusConnection dbus = QDBusConnection::sessionBus(); + dbus.connect(QString(), QString::fromLatin1(s_dbusPath), QString::fromLatin1(s_dbusInterface), QString::fromLatin1(s_themeChangedSignal), this, SLOT(slotEmoticonsThemeChanged(QString))); + dbus.connect(QString(), QString::fromLatin1(s_dbusPath), QString::fromLatin1(s_dbusInterface), QString::fromLatin1(s_parseModeChangedSignal), this, SLOT(slotEmoticonsParseModeChanged(int))); +} + +void KEmoticonsGlobal::setThemeName(const QString &name) +{ + m_themeName = name; + + KConfigGroup config(KSharedConfig::openConfig(), "Emoticons"); + config.writeEntry("emoticonsTheme", m_themeName, KConfigBase::Persistent | KConfigBase::Global); + config.sync(); + + // Inform running apps + QDBusMessage message = QDBusMessage::createSignal(QString::fromLatin1(s_dbusPath), QString::fromLatin1(s_dbusInterface), QString::fromLatin1(s_themeChangedSignal)); + message << name; + if (!QDBusConnection::sessionBus().send(message)) { + qWarning() << "Error sending dbus signal" << s_themeChangedSignal; + } +} + +void KEmoticonsGlobal::setParseMode(KEmoticonsTheme::ParseMode mode) +{ + m_parseMode = mode; + + KConfigGroup config(KSharedConfig::openConfig(), "Emoticons"); + config.writeEntry("parseMode", static_cast(mode), KConfigBase::Persistent | KConfigBase::Global); + config.sync(); + + // Inform running apps + QDBusMessage message = QDBusMessage::createSignal(QString::fromLatin1(s_dbusPath), QString::fromLatin1(s_dbusInterface), QString::fromLatin1(s_parseModeChangedSignal)); + message << static_cast(mode); + if (!QDBusConnection::sessionBus().send(message)) { + qWarning() << "Error sending dbus signal" << s_parseModeChangedSignal; + } +} + +void KEmoticonsGlobal::slotEmoticonsThemeChanged(const QString &name) +{ + m_themeName = name; +} + +void KEmoticonsGlobal::slotEmoticonsParseModeChanged(int mode) +{ + m_parseMode = static_cast(mode); +} diff -Nru kemoticons-5.18.0/src/core/kemoticonsglobal_p.h kemoticons-5.44.0/src/core/kemoticonsglobal_p.h --- kemoticons-5.18.0/src/core/kemoticonsglobal_p.h 1970-01-01 00:00:00.000000000 +0000 +++ kemoticons-5.44.0/src/core/kemoticonsglobal_p.h 2018-03-03 09:52:23.000000000 +0000 @@ -0,0 +1,43 @@ +/********************************************************************************** + * Copyright (C) 2017 David Faure * + * * + * This library is free software; you can redistribute it and/or * + * modify it under the terms of the GNU Lesser General Public * + * License as published by the Free Software Foundation; either * + * version 2.1 of the License, or (at your option) any later version. * + * * + * This library is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * + * Lesser General Public License for more details. * + * * + * You should have received a copy of the GNU Lesser General Public * + * License along with this library. If not, see .* + * * + **********************************************************************************/ + +#ifndef KEMOTICONSGLOBAL_P_H +#define KEMOTICONSGLOBAL_P_H + +#include +#include "kemoticonstheme.h" + +class KEmoticonsGlobal : public QObject +{ + Q_OBJECT +public: + KEmoticonsGlobal(); + + QString m_themeName; + KEmoticonsTheme::ParseMode m_parseMode; + + void setThemeName(const QString &name); + void setParseMode(KEmoticonsTheme::ParseMode mode); + +private Q_SLOTS: + void slotEmoticonsThemeChanged(const QString &name); + void slotEmoticonsParseModeChanged(int mode); + +}; + +#endif // KEMOTICONSGLOBAL_P_H diff -Nru kemoticons-5.18.0/src/core/kemoticons.h kemoticons-5.44.0/src/core/kemoticons.h --- kemoticons-5.18.0/src/core/kemoticons.h 2016-01-01 19:55:29.000000000 +0000 +++ kemoticons-5.44.0/src/core/kemoticons.h 2018-03-03 09:52:23.000000000 +0000 @@ -124,6 +124,25 @@ */ static KEmoticonsTheme::ParseMode parseMode(); + /** + * If a preferred size is set, all parsed emoticons will be + * returned with the @p size + * + * @param size The desired QSize of parsed emoticons + * @since 5.23 + */ + void setPreferredEmoticonSize(const QSize &size); + + /** + * Returns size in which parsed emoticons will be returned. + * + * If the QSize returned is not valid (isValid() == false), + * then the default will be used, that is the actual file size. + * + * @since 5.23 + */ + QSize preferredEmoticonSize() const; + private: /** * Private implementation class diff -Nru kemoticons-5.18.0/src/core/kemoticonsprovider.cpp kemoticons-5.44.0/src/core/kemoticonsprovider.cpp --- kemoticons-5.18.0/src/core/kemoticonsprovider.cpp 2016-01-01 19:55:29.000000000 +0000 +++ kemoticons-5.44.0/src/core/kemoticonsprovider.cpp 2018-03-03 09:52:23.000000000 +0000 @@ -19,8 +19,8 @@ #include "kemoticonsprovider.h" #include "kemoticons.h" -#include -#include +#include +#include #include #include #include @@ -34,6 +34,7 @@ QString m_themePath; QHash m_emoticonsMap; QHash > m_emoticonsIndex; + QSize m_preferredSize; }; KEmoticonsProviderPrivate::KEmoticonsProviderPrivate() @@ -139,7 +140,7 @@ void KEmoticonsProvider::addIndexItem(const QString &path, const QStringList &emoList) { - foreach (const QString &s, emoList) { + for (const QString &s : emoList) { KEmoticonsProvider::Emoticon e; QPixmap p; @@ -147,7 +148,11 @@ e.picPath = path; p.load(path); - e.picHTMLCode = QString("\"%1\"").arg(escaped).arg(path).arg(p.width()).arg(p.height()); + const bool hasPreferredSize = d->m_preferredSize.isValid(); + const int preferredHeight = hasPreferredSize ? d->m_preferredSize.height() : p.height(); + const int preferredWidth = hasPreferredSize ? d->m_preferredSize.width() : p.width(); + + e.picHTMLCode = QStringLiteral("\"%1\"").arg(escaped, path, QString::number(preferredWidth), QString::number(preferredHeight)); e.matchTextEscaped = escaped; e.matchText = s; @@ -191,3 +196,12 @@ } } +void KEmoticonsProvider::setPreferredEmoticonSize(const QSize &size) +{ + d->m_preferredSize = size; +} + +QSize KEmoticonsProvider::preferredEmoticonSize() const +{ + return d->m_preferredSize; +} diff -Nru kemoticons-5.18.0/src/core/kemoticonsprovider.h kemoticons-5.44.0/src/core/kemoticonsprovider.h --- kemoticons-5.18.0/src/core/kemoticonsprovider.h 2016-01-01 19:55:29.000000000 +0000 +++ kemoticons-5.44.0/src/core/kemoticonsprovider.h 2018-03-03 09:52:23.000000000 +0000 @@ -58,7 +58,7 @@ /** * Default constructor */ - explicit KEmoticonsProvider(QObject *parent = 0); + explicit KEmoticonsProvider(QObject *parent = nullptr); /** * Destructor @@ -150,6 +150,25 @@ */ virtual void newTheme() = 0; + /** + * If a preferred size is set, all parsed emoticons will be + * returned with the @p size + * + * @param size The desired QSize of parsed emoticons + * @since 5.23 + */ + void setPreferredEmoticonSize(const QSize &size); + + /** + * Returns size in which parsed emoticons will be returned. + * + * If the QSize returned is not valid (isValid() == false), + * then the default will be used, that is the actual file size. + * + * @since 5.23 + */ + QSize preferredEmoticonSize() const; + protected: /** * Sets the theme inside the directory @p path @@ -185,6 +204,7 @@ * @since 5.0 * @see emoticonsMap() */ + //FIXME kf6: use const'ref here void addMapItem(QString key, QStringList value); /** diff -Nru kemoticons-5.18.0/src/core/kemoticonstheme.cpp kemoticons-5.44.0/src/core/kemoticonstheme.cpp --- kemoticons-5.18.0/src/core/kemoticonstheme.cpp 2016-01-01 19:55:29.000000000 +0000 +++ kemoticons-5.44.0/src/core/kemoticonstheme.cpp 2018-03-03 09:52:23.000000000 +0000 @@ -24,17 +24,16 @@ #include -class KEmoticonsTheme::KEmoticonsThemeData : public QSharedData +class Q_DECL_HIDDEN KEmoticonsTheme::KEmoticonsThemeData : public QSharedData { public: KEmoticonsThemeData(); ~KEmoticonsThemeData(); - KEmoticonsProvider *provider; + KEmoticonsProvider *provider = nullptr; }; KEmoticonsTheme::KEmoticonsThemeData::KEmoticonsThemeData() { - provider = 0; } KEmoticonsTheme::KEmoticonsThemeData::~KEmoticonsThemeData() @@ -205,7 +204,7 @@ /* previous char, in the firs iteration assume that it is space since we want * to let emoticons at the beginning, the very first previous QChar must be a space. */ - QChar p = ' '; + QChar p = QLatin1Char(' '); QChar c; /* current char */ QChar n; @@ -227,19 +226,19 @@ if (mode & SkipHTML) { // Shall we skip HTML ? if (!inHTMLTag) { // Are we already in an HTML tag ? - if (c == '<') { // If not check if are going into one + if (c == QLatin1Char('<')) { // If not check if are going into one inHTMLTag = true; // If we are, change the state to inHTML p = c; continue; } } else { // We are already in a HTML tag - if (c == '>') { // Check if it ends + if (c == QLatin1Char('>')) { // Check if it ends inHTMLTag = false; // If so, change the state - if (p == 'a') { + if (p == QLatin1Char('a')) { inHTMLLink = false; } - } else if (c == 'a' && p == '<') { // check if we just entered an achor tag + } else if (c == QLatin1Char('a') && p == QLatin1Char('<')) { // check if we just entered an achor tag inHTMLLink = true; // don't put smileys in urls } p = c; @@ -247,7 +246,7 @@ } if (!inHTMLEntity) { // are we - if (c == '&') { + if (c == QLatin1Char('&')) { inHTMLEntity = true; } } @@ -258,7 +257,7 @@ continue; } - if ((mode & StrictParse) && !p.isSpace() && p != '>') { // '>' may mark the end of an html tag + if ((mode & StrictParse) && !p.isSpace() && p != QLatin1Char('>')) { // '>' may mark the end of an html tag p = c; continue; } /* strict requires space before the emoticon */ @@ -271,7 +270,8 @@ qSort(emoticonList.begin(), emoticonList.end(), EmoticonCompare); } bool found = false; - for (it = emoticonList.constBegin(); it != emoticonList.constEnd(); ++it) { + QList::const_iterator end = emoticonList.constEnd(); + for (it = emoticonList.constBegin(); it != end; ++it) { // If this is an HTML, then search for the HTML form of the emoticon. // For instance >o) needle = (mode & SkipHTML) ? (*it).matchTextEscaped : (*it).matchText; @@ -281,7 +281,7 @@ if (message.length() > pos + needle.length()) { n = message[pos + needle.length()]; //
marks the end of a line - if (n != '<' && !n.isSpace() && !n.isNull() && n != '&') { + if (n != QLatin1Char('<') && !n.isSpace() && !n.isNull() && n != QLatin1Char('&')) { break; } } @@ -302,7 +302,7 @@ if (!found) { if (inHTMLEntity) { // If we are in an HTML entitiy such as > - int htmlEnd = message.indexOf(';', pos); + int htmlEnd = message.indexOf(QLatin1Char(';'), pos); // Search for where it ends if (htmlEnd == -1) { // Apparently this HTML entity isn't ended, something is wrong, try skip the '&' diff -Nru kemoticons-5.18.0/src/providers/adium/adium_emoticons.cpp kemoticons-5.44.0/src/providers/adium/adium_emoticons.cpp --- kemoticons-5.18.0/src/providers/adium/adium_emoticons.cpp 2016-01-01 19:55:29.000000000 +0000 +++ kemoticons-5.44.0/src/providers/adium/adium_emoticons.cpp 2018-03-03 09:52:23.000000000 +0000 @@ -18,15 +18,15 @@ #include "adium_emoticons.h" -#include -#include -#include -#include +#include +#include +#include +#include #include #include -K_PLUGIN_FACTORY(AdiumEmoticonsFactory, registerPlugin();) +K_PLUGIN_FACTORY_WITH_JSON(AdiumEmoticonsFactory, "emoticonstheme_adium.json", registerPlugin();) AdiumEmoticons::AdiumEmoticons(QObject *parent, const QVariantList &args) : KEmoticonsProvider(parent) @@ -36,14 +36,14 @@ bool AdiumEmoticons::removeEmoticon(const QString &emo) { - QString emoticon = QFileInfo(emoticonsMap().key(emo.split(' '))).fileName(); + const QString emoticon = QFileInfo(emoticonsMap().key(emo.split(QLatin1Char(' ')))).fileName(); QDomElement fce = m_themeXml.firstChildElement(QStringLiteral("plist")).firstChildElement(QStringLiteral("dict")).firstChildElement(QStringLiteral("dict")); if (fce.isNull()) { return false; } - QDomNodeList nl = fce.childNodes(); + const QDomNodeList nl = fce.childNodes(); for (int i = 0; i < nl.length(); i++) { QDomElement de = nl.item(i).toElement(); if (!de.isNull() && de.tagName() == QLatin1String("key") && (de.text() == emoticon)) { @@ -53,8 +53,8 @@ } fce.removeChild(de); - removeMapItem(emoticonsMap().key(emo.split(' '))); - removeIndexItem(emoticon, emo.split(' ')); + removeMapItem(emoticonsMap().key(emo.split(QLatin1Char(' ')))); + removeIndexItem(emoticon, emo.split(QLatin1Char(' '))); return true; } } @@ -71,7 +71,7 @@ } } - const QStringList splitted = text.split(' '); + const QStringList splitted = text.split(QLatin1Char(' ')); QDomElement fce = m_themeXml.firstChildElement(QStringLiteral("plist")).firstChildElement(QStringLiteral("dict")).firstChildElement(QStringLiteral("dict")); if (fce.isNull()) { @@ -116,7 +116,7 @@ void AdiumEmoticons::saveTheme() { - QFile fp(themePath() + '/' + fileName()); + QFile fp(themePath() + QLatin1Char('/') + fileName()); if (!fp.exists()) { qWarning() << fp.fileName() << "doesn't exist!"; @@ -166,7 +166,7 @@ return false; } - QDomNodeList nl = fce.childNodes(); + const QDomNodeList nl = fce.childNodes(); clearEmoticonsMap(); QString name; @@ -174,11 +174,11 @@ QDomElement de = nl.item(i).toElement(); if (!de.isNull() && de.tagName() == QLatin1String("key")) { - name = QStandardPaths::locate(QStandardPaths::GenericDataLocation, "emoticons/" + themeName() + '/' + de.text()); + name = QStandardPaths::locate(QStandardPaths::GenericDataLocation, QStringLiteral("emoticons/") + themeName() + QLatin1Char('/') + de.text()); continue; } else if (!de.isNull() && de.tagName() == QLatin1String("dict")) { QDomElement arr = de.firstChildElement(QStringLiteral("array")); - QDomNodeList snl = arr.childNodes(); + const QDomNodeList snl = arr.childNodes(); QStringList sl; for (int k = 0; k < snl.length(); k++) { @@ -201,10 +201,10 @@ void AdiumEmoticons::newTheme() { - QString path = QStandardPaths::writableLocation(QStandardPaths::GenericDataLocation) + "/emoticons/" + themeName(); + QString path = QStandardPaths::writableLocation(QStandardPaths::GenericDataLocation) + QStringLiteral("/emoticons/") + themeName(); QDir().mkpath(path); - QFile fp(path + '/' + "Emoticons.plist"); + QFile fp(path + QLatin1Char('/') + QStringLiteral("Emoticons.plist")); if (!fp.open(QIODevice::WriteOnly)) { qWarning() << fp.fileName() << "can't open WriteOnly!"; diff -Nru kemoticons-5.18.0/src/providers/adium/CMakeLists.txt kemoticons-5.44.0/src/providers/adium/CMakeLists.txt --- kemoticons-5.18.0/src/providers/adium/CMakeLists.txt 2016-01-01 19:55:29.000000000 +0000 +++ kemoticons-5.44.0/src/providers/adium/CMakeLists.txt 2018-03-03 09:52:23.000000000 +0000 @@ -2,7 +2,7 @@ ########### next target ############### set(adiumemoticons_SRCS adium_emoticons.cpp) -add_library(emoticonstheme_adium MODULE ${adiumemoticons_SRCS}) +kcoreaddons_add_plugin(emoticonstheme_adium INSTALL_NAMESPACE kf5/emoticonsthemes JSON emoticonstheme_adium.json SOURCES ${adiumemoticons_SRCS}) find_package(Qt5Xml REQUIRED) target_link_libraries(emoticonstheme_adium @@ -16,10 +16,7 @@ set_target_properties(emoticonstheme_adium PROPERTIES OUTPUT_NAME "adium" ) -install( - TARGETS emoticonstheme_adium - DESTINATION ${KDE_INSTALL_PLUGINDIR}/kf5/emoticonsthemes -) +# KF6: remove install( FILES emoticonstheme_adium.desktop DESTINATION ${KDE_INSTALL_KSERVICES5DIR} diff -Nru kemoticons-5.18.0/src/providers/adium/emoticonstheme_adium.desktop kemoticons-5.44.0/src/providers/adium/emoticonstheme_adium.desktop --- kemoticons-5.18.0/src/providers/adium/emoticonstheme_adium.desktop 2016-01-01 19:55:29.000000000 +0000 +++ kemoticons-5.44.0/src/providers/adium/emoticonstheme_adium.desktop 2018-03-03 09:52:23.000000000 +0000 @@ -1,9 +1,9 @@ [Desktop Entry] Type=Service Name=Adium Emoticons Theme -Name[ar]=سمة ابتسامات Adium +Name[ar]=سمة ابتسامات «آديُم» Name[as]=Adium Emoticons থিম -Name[ast]=Tema de fustaxes Adium +Name[ast]=Tema de fustaxes d'Adium Name[be@latin]=Matyŭ smajlikaŭ dla „Adium” Name[bg]=Тема с емоции Adium Name[bn]=অ্যাডিয়াম ইমোট-আইকন থীম @@ -81,9 +81,9 @@ Name[zh_CN]=Adium 表情主题 Name[zh_TW]=Adium 表情圖示主題 Comment=Library to use Adium emoticons theme -Comment[ar]=مكتبة لاستخدام سمة ابتسامات Adium +Comment[ar]=مكتبة لاستخدام سمة ابتسامات «آديُم» Comment[as]=Adium emoticons থিম ব্যৱহাৰ কৰা লাইব্ৰেৰী -Comment[ast]=Bibilioteca pa usar el tema de fustaxes Adium +Comment[ast]=Biblioteca pa usar el tema de fustaxes d'Adium Comment[be@latin]=Biblijateka dla matyvaŭ smajlikaŭ „Adium” Comment[bg]=Библиотека за темата с емоции Adium Comment[bn]=অ্যাডিয়াম ইমোট-আইকন থীম ব্যবহার করার লাইব্রেরী diff -Nru kemoticons-5.18.0/src/providers/adium/emoticonstheme_adium.json kemoticons-5.44.0/src/providers/adium/emoticonstheme_adium.json --- kemoticons-5.18.0/src/providers/adium/emoticonstheme_adium.json 1970-01-01 00:00:00.000000000 +0000 +++ kemoticons-5.44.0/src/providers/adium/emoticonstheme_adium.json 2018-03-03 09:52:23.000000000 +0000 @@ -0,0 +1,8 @@ +{ + "KPlugin": { + "ServiceTypes": [ "KEmoticons" ] + }, + "X-KDE-Priority": 8, + "X-KDE-EmoticonsFileName": "Emoticons.plist" +} + diff -Nru kemoticons-5.18.0/src/providers/kde/CMakeLists.txt kemoticons-5.44.0/src/providers/kde/CMakeLists.txt --- kemoticons-5.18.0/src/providers/kde/CMakeLists.txt 2016-01-01 19:55:29.000000000 +0000 +++ kemoticons-5.44.0/src/providers/kde/CMakeLists.txt 2018-03-03 09:52:23.000000000 +0000 @@ -2,7 +2,7 @@ ########### next target ############### set(kdeemoticons_SRCS kde_emoticons.cpp) -add_library(emoticonstheme_kde MODULE ${kdeemoticons_SRCS}) +kcoreaddons_add_plugin(emoticonstheme_kde INSTALL_NAMESPACE kf5/emoticonsthemes JSON emoticonstheme_kde.json SOURCES ${kdeemoticons_SRCS}) find_package(Qt5Xml REQUIRED) target_link_libraries(emoticonstheme_kde @@ -15,10 +15,8 @@ set_target_properties(emoticonstheme_kde PROPERTIES OUTPUT_NAME "kde" ) -install( - TARGETS emoticonstheme_kde - DESTINATION ${KDE_INSTALL_PLUGINDIR}/kf5/emoticonsthemes -) + +# KF6: remove install( FILES emoticonstheme_kde.desktop DESTINATION ${KDE_INSTALL_KSERVICES5DIR} diff -Nru kemoticons-5.18.0/src/providers/kde/emoticonstheme_kde.desktop kemoticons-5.44.0/src/providers/kde/emoticonstheme_kde.desktop --- kemoticons-5.18.0/src/providers/kde/emoticonstheme_kde.desktop 2016-01-01 19:55:29.000000000 +0000 +++ kemoticons-5.44.0/src/providers/kde/emoticonstheme_kde.desktop 2018-03-03 09:52:23.000000000 +0000 @@ -1,8 +1,8 @@ [Desktop Entry] Type=Service Name=KDE Emoticons Theme -Name[ar]=سمة ابتسامات كدي -Name[ast]=Tema de fustaxes KDE +Name[ar]=سمة ابتسامات «كدي» +Name[ast]=Tema de fustaxes de KDE Name[bg]=Тема с емоции KDE Name[bn]=কে.ডি.ই. ইমোট-আইকনস থীম Name[bs]=KDE‑ova tema emotikona @@ -70,9 +70,9 @@ Name[zh_CN]=KDE 表情主题 Name[zh_TW]=KDE 表情圖示主題 Comment=Library to use KDE emoticons theme -Comment[ar]=مكتبة لاستخدام سمة ابتسامات كدي +Comment[ar]=مكتبة لاستخدام سمة ابتسامات «كدي» Comment[as]=KDE emoticons থিম ব্যৱহাৰ কৰা লাইব্ৰেৰী -Comment[ast]=Biblioteca pa usar el tema de fustaxes KDE +Comment[ast]=Biblioteca pa usar el tema de fustaxes de KDE Comment[be@latin]=Biblijateka dla matyvaŭ smajlikaŭ „KDE” Comment[bg]=Библиотека за тема с емоции KDE Comment[bn]=কে-ডি-ই ইমোট-আইকন থীম ব্যবহার করার লাইব্রেরী diff -Nru kemoticons-5.18.0/src/providers/kde/emoticonstheme_kde.json kemoticons-5.44.0/src/providers/kde/emoticonstheme_kde.json --- kemoticons-5.18.0/src/providers/kde/emoticonstheme_kde.json 1970-01-01 00:00:00.000000000 +0000 +++ kemoticons-5.44.0/src/providers/kde/emoticonstheme_kde.json 2018-03-03 09:52:23.000000000 +0000 @@ -0,0 +1,8 @@ +{ + "KPlugin": { + "ServiceTypes": [ "KEmoticons" ] + }, + "X-KDE-Priority": 10, + "X-KDE-EmoticonsFileName": "emoticons.xml" +} + diff -Nru kemoticons-5.18.0/src/providers/kde/kde_emoticons.cpp kemoticons-5.44.0/src/providers/kde/kde_emoticons.cpp --- kemoticons-5.18.0/src/providers/kde/kde_emoticons.cpp 2016-01-01 19:55:29.000000000 +0000 +++ kemoticons-5.44.0/src/providers/kde/kde_emoticons.cpp 2018-03-03 09:52:23.000000000 +0000 @@ -18,16 +18,16 @@ #include "kde_emoticons.h" -#include -#include -#include -#include -#include +#include +#include +#include +#include +#include #include #include -K_PLUGIN_FACTORY(KdeEmoticonsFactory, registerPlugin();) +K_PLUGIN_FACTORY_WITH_JSON(KdeEmoticonsFactory, "emoticonstheme_kde.json", registerPlugin();) KdeEmoticons::KdeEmoticons(QObject *parent, const QVariantList &args) : KEmoticonsProvider(parent) @@ -37,7 +37,7 @@ bool KdeEmoticons::removeEmoticon(const QString &emo) { - QString emoticon = QFileInfo(emoticonsMap().key(emo.split(' '))).fileName(); + const QString emoticon = QFileInfo(emoticonsMap().key(emo.split(QLatin1Char(' ')))).fileName(); QDomElement fce = m_themeXml.firstChildElement(QStringLiteral("messaging-emoticon-map")); if (fce.isNull()) { @@ -49,8 +49,8 @@ QDomElement de = nl.item(i).toElement(); if (!de.isNull() && de.tagName() == QLatin1String("emoticon") && (de.attribute(QStringLiteral("file")) == emoticon || de.attribute(QStringLiteral("file")) == QFileInfo(emoticon).baseName())) { fce.removeChild(de); - removeMapItem(emoticonsMap().key(emo.split(' '))); - removeIndexItem(emoticon, emo.split(' ')); + removeMapItem(emoticonsMap().key(emo.split(QLatin1Char(' ')))); + removeIndexItem(emoticon, emo.split(QLatin1Char(' '))); return true; } } @@ -67,7 +67,7 @@ } } - const QStringList splitted = text.split(' '); + const QStringList splitted = text.split(QLatin1Char(' ')); QDomElement fce = m_themeXml.firstChildElement(QStringLiteral("messaging-emoticon-map")); if (fce.isNull()) { @@ -92,7 +92,7 @@ void KdeEmoticons::saveTheme() { - QFile fp(themePath() + '/' + fileName()); + QFile fp(themePath() + QLatin1Char('/') + fileName()); if (!fp.exists()) { qWarning() << fp.fileName() << "doesn't exist!"; @@ -142,7 +142,7 @@ return false; } - QDomNodeList nl = fce.childNodes(); + const QDomNodeList nl = fce.childNodes(); clearEmoticonsMap(); @@ -161,13 +161,15 @@ } } - QString emo = QStandardPaths::locate(QStandardPaths::GenericDataLocation, "emoticons/" + themeName() + '/' + de.attribute(QStringLiteral("file"))); + QString emo = QStandardPaths::locate(QStandardPaths::GenericDataLocation, QStringLiteral("emoticons/") + themeName() + QLatin1Char('/') + de.attribute(QStringLiteral("file"))); if (emo.isEmpty()) { QList ext = QImageReader::supportedImageFormats(); for (int j = 0; j < ext.size(); ++j) { - emo = QStandardPaths::locate(QStandardPaths::GenericDataLocation, "emoticons/" + themeName() + '/' + de.attribute(QStringLiteral("file")) + '.' + ext.at(j)); + emo = QStandardPaths::locate(QStandardPaths::GenericDataLocation, QStringLiteral("emoticons/") + + themeName() + QLatin1Char('/') + de.attribute(QStringLiteral("file")) + + QLatin1Char('.') + QString::fromLatin1(ext.at(j))); if (!emo.isEmpty()) { break; } @@ -188,10 +190,10 @@ void KdeEmoticons::newTheme() { - QString path = QStandardPaths::writableLocation(QStandardPaths::GenericDataLocation) + "/emoticons/" + themeName(); + const QString path = QStandardPaths::writableLocation(QStandardPaths::GenericDataLocation) + QStringLiteral("/emoticons/") + themeName(); QDir().mkpath(path); - QFile fp(path + '/' + "emoticons.xml"); + QFile fp(path + QLatin1Char('/') + QStringLiteral("emoticons.xml")); if (!fp.open(QIODevice::WriteOnly)) { qWarning() << fp.fileName() << "can't open WriteOnly!"; diff -Nru kemoticons-5.18.0/src/providers/pidgin/CMakeLists.txt kemoticons-5.44.0/src/providers/pidgin/CMakeLists.txt --- kemoticons-5.18.0/src/providers/pidgin/CMakeLists.txt 2016-01-01 19:55:29.000000000 +0000 +++ kemoticons-5.44.0/src/providers/pidgin/CMakeLists.txt 2018-03-03 09:52:23.000000000 +0000 @@ -2,7 +2,7 @@ ########### next target ############### set(pidginemoticons_SRCS pidgin_emoticons.cpp) -add_library(emoticonstheme_pidgin MODULE ${pidginemoticons_SRCS}) +kcoreaddons_add_plugin(emoticonstheme_pidgin INSTALL_NAMESPACE kf5/emoticonsthemes JSON emoticonstheme_pidgin.json SOURCES ${pidginemoticons_SRCS}) target_link_libraries(emoticonstheme_pidgin PRIVATE KF5::Emoticons) @@ -11,10 +11,7 @@ set_target_properties(emoticonstheme_pidgin PROPERTIES OUTPUT_NAME "pidgin" ) -install( - TARGETS emoticonstheme_pidgin - DESTINATION ${KDE_INSTALL_PLUGINDIR}/kf5/emoticonsthemes -) +# KF6: remove install( FILES emoticonstheme_pidgin.desktop DESTINATION ${KDE_INSTALL_KSERVICES5DIR} diff -Nru kemoticons-5.18.0/src/providers/pidgin/emoticonstheme_pidgin.desktop kemoticons-5.44.0/src/providers/pidgin/emoticonstheme_pidgin.desktop --- kemoticons-5.18.0/src/providers/pidgin/emoticonstheme_pidgin.desktop 2016-01-01 19:55:29.000000000 +0000 +++ kemoticons-5.44.0/src/providers/pidgin/emoticonstheme_pidgin.desktop 2018-03-03 09:52:23.000000000 +0000 @@ -1,9 +1,9 @@ [Desktop Entry] Type=Service Name=Pidgin Emoticons Theme -Name[ar]=سمة ابتسامات Pidgin +Name[ar]=سمة ابتسامات «بدجن» Name[as]=Pidgin Emoticons থিম -Name[ast]=Tema de fustaxes Pidgin +Name[ast]=Tema de fustaxes de Pidgin Name[be@latin]=Matyŭ smajlikaŭ dla „Pidgin” Name[bg]=Тема с емоции Pidgin Name[bn]=পিজিন ইমোট-আইকন থীম @@ -83,9 +83,9 @@ Name[zh_CN]=Pidgin 表情主题 Name[zh_TW]=Pidgin 表情圖示主題 Comment=Library to use Pidgin emoticons theme -Comment[ar]=مكتبة لاستخدام سمة ابتسامات Pidgin +Comment[ar]=مكتبة لاستخدام سمة ابتسامات «بدجن» Comment[as]=Pidgin Emoticons থিম ব্যৱহাৰ কৰা লাইব্ৰেৰী -Comment[ast]=Biblioteca pa usar el tema de fustaxes Pidgin +Comment[ast]=Biblioteca pa usar el tema de fustaxes de Pidgin Comment[be@latin]=Biblijateka dla matyvaŭ smajlikaŭ „Pidgin” Comment[bg]=Библиотека за темата с емоции Pidgin Comment[bn]=পিজিন ইমোট-আইকন থীম ব্যবহার করার লাইব্রেরী diff -Nru kemoticons-5.18.0/src/providers/pidgin/emoticonstheme_pidgin.json kemoticons-5.44.0/src/providers/pidgin/emoticonstheme_pidgin.json --- kemoticons-5.18.0/src/providers/pidgin/emoticonstheme_pidgin.json 1970-01-01 00:00:00.000000000 +0000 +++ kemoticons-5.44.0/src/providers/pidgin/emoticonstheme_pidgin.json 2018-03-03 09:52:23.000000000 +0000 @@ -0,0 +1,8 @@ +{ + "KPlugin": { + "ServiceTypes": [ "KEmoticons" ] + }, + "X-KDE-Priority": 7, + "X-KDE-EmoticonsFileName": "theme" +} + diff -Nru kemoticons-5.18.0/src/providers/pidgin/pidgin_emoticons.cpp kemoticons-5.44.0/src/providers/pidgin/pidgin_emoticons.cpp --- kemoticons-5.18.0/src/providers/pidgin/pidgin_emoticons.cpp 2016-01-01 19:55:29.000000000 +0000 +++ kemoticons-5.44.0/src/providers/pidgin/pidgin_emoticons.cpp 2018-03-03 09:52:23.000000000 +0000 @@ -19,15 +19,15 @@ #include "pidgin_emoticons.h" #include "kemoticonsprovider.h" -#include -#include -#include -#include -#include +#include +#include +#include +#include +#include #include -K_PLUGIN_FACTORY(PidginEmoticonsFactory, registerPlugin();) +K_PLUGIN_FACTORY_WITH_JSON(PidginEmoticonsFactory, "emoticonstheme_pidgin.json", registerPlugin();) PidginEmoticons::PidginEmoticons(QObject *parent, const QVariantList &args) : KEmoticonsProvider(parent) @@ -37,17 +37,17 @@ bool PidginEmoticons::removeEmoticon(const QString &emo) { - QString emoticon = QFileInfo(emoticonsMap().key(emo.split(' '))).fileName(); + QString emoticon = QFileInfo(emoticonsMap().key(emo.split(QLatin1Char(' ')))).fileName(); bool start = false; for (int i = 0; i < m_text.size(); ++i) { QString line = m_text.at(i); - if (line.startsWith('#') || line.isEmpty()) { + if (line.startsWith(QLatin1Char('#')) || line.isEmpty()) { continue; } - QRegExp re("^\\[(.*)\\]$"); + QRegExp re(QStringLiteral("^\\[(.*)\\]$")); int pos = re.indexIn(line.trimmed()); if (pos > -1) { if (!re.cap(1).compare(QStringLiteral("default"), Qt::CaseInsensitive)) { @@ -62,7 +62,7 @@ continue; } - QStringList splitted = line.split(' '); + const QStringList splitted = line.split(QLatin1Char(' ')); QString emoName; if (splitted.at(0) == QLatin1String("!")) { @@ -73,7 +73,7 @@ if (emoName == emoticon) { m_text.removeAt(i); - removeIndexItem(emoticon, emo.split(' ')); + removeIndexItem(emoticon, emo.split(QLatin1Char(' '))); return true; } } @@ -91,14 +91,14 @@ } } - const QStringList splitted = text.split(' '); - int i = m_text.indexOf(QRegExp("^\\[default\\]$", Qt::CaseInsensitive)); + const QStringList splitted = text.split(QLatin1Char(' ')); + int i = m_text.indexOf(QRegExp(QStringLiteral("^\\[default\\]$"), Qt::CaseInsensitive)); if (i == -1) { return false; } - QString emoticon = QString("%1 %2").arg(QFileInfo(emo).fileName(), + const QString emoticon = QStringLiteral("%1 %2").arg(QFileInfo(emo).fileName(), text); m_text.insert(i + 1, emoticon); @@ -109,7 +109,7 @@ void PidginEmoticons::saveTheme() { - QFile fp(themePath() + '/' + fileName()); + QFile fp(themePath() + QLatin1Char('/') + fileName()); if (!fp.exists()) { qWarning() << fp.fileName() << "doesn't exist!"; @@ -123,10 +123,10 @@ QTextStream emoStream(&fp); - if (m_text.indexOf(QRegExp("^Icon=.*", Qt::CaseInsensitive)) == -1) { - int i = m_text.indexOf(QRegExp("^Description=.*", Qt::CaseInsensitive)); + if (m_text.indexOf(QRegExp(QStringLiteral("^Icon=.*"), Qt::CaseInsensitive)) == -1) { + int i = m_text.indexOf(QRegExp(QStringLiteral("^Description=.*"), Qt::CaseInsensitive)); QString file = QFileInfo(emoticonsMap().keys().value(0)).fileName(); - m_text.insert(i + 1, "Icon=" + file); + m_text.insert(i + 1, QStringLiteral("Icon=") + file); } emoStream << m_text.join(QStringLiteral("\n")); @@ -155,11 +155,11 @@ QString line = str.readLine(); m_text << line; - if (line.startsWith('#') || line.isEmpty()) { + if (line.startsWith(QLatin1Char('#')) || line.isEmpty()) { continue; } - QRegExp re("^\\[(.*)\\]$"); + QRegExp re(QStringLiteral("^\\[(.*)\\]$")); int pos = re.indexIn(line.trimmed()); if (pos > -1) { if (!re.cap(1).compare(QStringLiteral("default"), Qt::CaseInsensitive)) { @@ -174,7 +174,7 @@ continue; } - QStringList splitted = line.split(QRegExp("\\s+")); + QStringList splitted = line.split(QRegExp(QStringLiteral("\\s+"))); QString emo; int i = 1; if (splitted.at(0) == QLatin1String("!")) { @@ -183,7 +183,7 @@ } else { emo = splitted.at(0); } - emo = QStandardPaths::locate(QStandardPaths::GenericDataLocation, "emoticons/" + themeName() + '/' + emo); + emo = QStandardPaths::locate(QStandardPaths::GenericDataLocation, QStringLiteral("emoticons/") + themeName() + QLatin1Char('/') + emo); QStringList sl; for (; i < splitted.size(); ++i) { @@ -203,10 +203,10 @@ void PidginEmoticons::newTheme() { - QString path = QStandardPaths::writableLocation(QStandardPaths::GenericDataLocation) + "/emoticons/" + themeName(); + QString path = QStandardPaths::writableLocation(QStandardPaths::GenericDataLocation) + QStringLiteral("/emoticons/") + themeName(); QDir().mkpath(path); - QFile fp(path + '/' + "theme"); + QFile fp(path + QLatin1Char('/') + QStringLiteral("theme")); if (!fp.open(QIODevice::WriteOnly)) { qWarning() << fp.fileName() << "can't open WriteOnly!"; @@ -216,8 +216,8 @@ QTextStream out(&fp); out.setCodec("UTF-8"); - out << "Name=" + themeName() << endl; - out << "Description=" + themeName() << endl; + out << QStringLiteral("Name=") + themeName() << endl; + out << QStringLiteral("Description=") + themeName() << endl; out << "Author=" << endl; out << endl; out << "[default]" << endl; diff -Nru kemoticons-5.18.0/src/providers/xmpp/CMakeLists.txt kemoticons-5.44.0/src/providers/xmpp/CMakeLists.txt --- kemoticons-5.18.0/src/providers/xmpp/CMakeLists.txt 2016-01-01 19:55:29.000000000 +0000 +++ kemoticons-5.44.0/src/providers/xmpp/CMakeLists.txt 2018-03-03 09:52:23.000000000 +0000 @@ -2,7 +2,7 @@ ########### next target ############### set(xmppemoticons_SRCS xmpp_emoticons.cpp) -add_library(emoticonstheme_xmpp MODULE ${xmppemoticons_SRCS}) +kcoreaddons_add_plugin(emoticonstheme_xmpp INSTALL_NAMESPACE kf5/emoticonsthemes JSON emoticonstheme_xmpp.json SOURCES ${xmppemoticons_SRCS}) find_package(Qt5Xml REQUIRED) target_link_libraries(emoticonstheme_xmpp @@ -16,10 +16,8 @@ set_target_properties(emoticonstheme_xmpp PROPERTIES OUTPUT_NAME "xmpp" ) -install( - TARGETS emoticonstheme_xmpp - DESTINATION ${KDE_INSTALL_PLUGINDIR}/kf5/emoticonsthemes -) + +# KF6: remove install( FILES emoticonstheme_xmpp.desktop DESTINATION ${KDE_INSTALL_KSERVICES5DIR} diff -Nru kemoticons-5.18.0/src/providers/xmpp/emoticonstheme_xmpp.desktop kemoticons-5.44.0/src/providers/xmpp/emoticonstheme_xmpp.desktop --- kemoticons-5.18.0/src/providers/xmpp/emoticonstheme_xmpp.desktop 2016-01-01 19:55:29.000000000 +0000 +++ kemoticons-5.44.0/src/providers/xmpp/emoticonstheme_xmpp.desktop 2018-03-03 09:52:23.000000000 +0000 @@ -1,9 +1,9 @@ [Desktop Entry] Type=Service Name=XMPP Emoticons Theme -Name[ar]=سمة ابتسامات XMPP +Name[ar]=سمة ابتسامات «XMPP» Name[as]=XMPP Emoticons থিম -Name[ast]=Tema de fustaxes XMPP +Name[ast]=Tema de fustaxes de XMPP Name[be@latin]=Matyŭ smajlikaŭ dla „XMPP” Name[bg]=Тема с емоции XMPP Name[bn]=এক্স-এম-পি-পি ইমোট-আইকন থীম @@ -82,9 +82,9 @@ Name[zh_CN]=XMPP 表情主题 Name[zh_TW]=XMPP 表情圖示主題 Comment=Library to use XMPP emoticons theme -Comment[ar]=مكتبة لاستخدام سمة ابتسامات XMPP +Comment[ar]=مكتبة لاستخدام سمة ابتسامات «XMPP» Comment[as]=XMPP Emoticons থিম ব্যৱহাৰ কৰা লাইব্ৰেৰী -Comment[ast]=Biblioteca pa usar el tema de fustaxes XMPP +Comment[ast]=Biblioteca pa usar el tema de fustaxes de XMPP Comment[be@latin]=Biblijateka dla matyvaŭ smajlikaŭ „XMPP” Comment[bg]=Библиотека за темата с емоции XMPP Comment[bn]=এক্স-এম-পি-পি ইমোট-আইকন থীম ব্যবহার করার লাইব্রেরী diff -Nru kemoticons-5.18.0/src/providers/xmpp/emoticonstheme_xmpp.json kemoticons-5.44.0/src/providers/xmpp/emoticonstheme_xmpp.json --- kemoticons-5.18.0/src/providers/xmpp/emoticonstheme_xmpp.json 1970-01-01 00:00:00.000000000 +0000 +++ kemoticons-5.44.0/src/providers/xmpp/emoticonstheme_xmpp.json 2018-03-03 09:52:23.000000000 +0000 @@ -0,0 +1,8 @@ +{ + "KPlugin": { + "ServiceTypes": [ "KEmoticons" ] + }, + "X-KDE-Priority": 9, + "X-KDE-EmoticonsFileName": "icondef.xml" +} + diff -Nru kemoticons-5.18.0/src/providers/xmpp/xmpp_emoticons.cpp kemoticons-5.44.0/src/providers/xmpp/xmpp_emoticons.cpp --- kemoticons-5.18.0/src/providers/xmpp/xmpp_emoticons.cpp 2016-01-01 19:55:29.000000000 +0000 +++ kemoticons-5.44.0/src/providers/xmpp/xmpp_emoticons.cpp 2018-03-03 09:52:23.000000000 +0000 @@ -18,17 +18,17 @@ #include "xmpp_emoticons.h" -#include -#include -#include -#include -#include +#include +#include +#include +#include +#include #include #include #include -K_PLUGIN_FACTORY(XmppEmoticonsFactory, registerPlugin();) +K_PLUGIN_FACTORY_WITH_JSON(XmppEmoticonsFactory, "emoticonstheme_xmpp.json", registerPlugin();) XmppEmoticons::XmppEmoticons(QObject *parent, const QVariantList &args) : KEmoticonsProvider(parent) @@ -38,28 +38,26 @@ bool XmppEmoticons::removeEmoticon(const QString &emo) { - QString emoticon = QFileInfo(emoticonsMap().key(emo.split(' '))).fileName(); + const QString emoticon = QFileInfo(emoticonsMap().key(emo.split(QLatin1Char(' ')))).fileName(); QDomElement fce = m_themeXml.firstChildElement(QStringLiteral("icondef")); if (fce.isNull()) { return false; } - QDomNodeList nl = fce.childNodes(); + const QDomNodeList nl = fce.childNodes(); for (int i = 0; i < nl.length(); i++) { QDomElement de = nl.item(i).toElement(); if (!de.isNull() && de.tagName() == QLatin1String("icon")) { QDomNodeList snl = de.childNodes(); - QStringList sl; - QStringList mime; for (int k = 0; k < snl.length(); k++) { QDomElement sde = snl.item(k).toElement(); if (!sde.isNull() && sde.tagName() == QLatin1String("object") && sde.text() == emoticon) { fce.removeChild(de); - removeMapItem(emoticonsMap().key(emo.split(' '))); - removeIndexItem(emoticon, emo.split(' ')); + removeMapItem(emoticonsMap().key(emo.split(QLatin1Char(' ')))); + removeIndexItem(emoticon, emo.split(QLatin1Char(' '))); return true; } } @@ -78,7 +76,7 @@ } } - const QStringList splitted = text.split(' '); + const QStringList splitted = text.split(QLatin1Char(' ')); QDomElement fce = m_themeXml.firstChildElement(QStringLiteral("icondef")); if (fce.isNull()) { @@ -91,7 +89,7 @@ for (constIterator = splitted.begin(); constIterator != splitted.end(); ++constIterator) { QDomElement emotext = m_themeXml.createElement(QStringLiteral("text")); - QDomText txt = m_themeXml.createTextNode((*constIterator).trimmed()); + const QDomText txt = m_themeXml.createTextNode((*constIterator).trimmed()); emotext.appendChild(txt); emoticon.appendChild(emotext); } @@ -100,7 +98,7 @@ QMimeDatabase db; QMimeType mime = db.mimeTypeForFile(emo, QMimeDatabase::MatchExtension); emoElement.setAttribute(QStringLiteral("mime"), mime.name()); - QDomText txt = m_themeXml.createTextNode(QFileInfo(emo).fileName()); + const QDomText txt = m_themeXml.createTextNode(QFileInfo(emo).fileName()); emoElement.appendChild(txt); emoticon.appendChild(emoElement); @@ -112,7 +110,7 @@ void XmppEmoticons::saveTheme() { - QFile fp(themePath() + '/' + fileName()); + QFile fp(themePath() + QLatin1Char('/') + fileName()); if (!fp.exists()) { qWarning() << fp.fileName() << "doesn't exist!"; @@ -162,7 +160,7 @@ return false; } - QDomNodeList nl = fce.childNodes(); + const QDomNodeList nl = fce.childNodes(); clearEmoticonsMap(); @@ -186,7 +184,7 @@ } } - emo = QStandardPaths::locate(QStandardPaths::GenericDataLocation, "emoticons/" + themeName() + '/' + emo); + emo = QStandardPaths::locate(QStandardPaths::GenericDataLocation, QStringLiteral("emoticons/") + themeName() + QLatin1Char('/') + emo); if (emo.isEmpty()) { continue; @@ -202,10 +200,10 @@ void XmppEmoticons::newTheme() { - QString path = QStandardPaths::writableLocation(QStandardPaths::GenericDataLocation) + "/emoticons/" + themeName(); + const QString path = QStandardPaths::writableLocation(QStandardPaths::GenericDataLocation) + QStringLiteral("/emoticons/") + themeName(); QDir().mkpath(path); - QFile fp(path + '/' + "icondef.xml"); + QFile fp(path + QLatin1Char('/') + QStringLiteral("icondef.xml")); if (!fp.open(QIODevice::WriteOnly)) { qWarning() << fp.fileName() << "can't open WriteOnly!"; diff -Nru kemoticons-5.18.0/tests/main.cpp kemoticons-5.44.0/tests/main.cpp --- kemoticons-5.18.0/tests/main.cpp 2016-01-01 19:55:29.000000000 +0000 +++ kemoticons-5.44.0/tests/main.cpp 2018-03-03 09:52:23.000000000 +0000 @@ -50,9 +50,9 @@ lineEdit = new QLineEdit; label = new QLabel; QLabel *explanation = new QLabel; - explanation->setText("Please enter text with emoticons. They will be parsed, " + explanation->setText(QStringLiteral("Please enter text with emoticons. They will be parsed, " "except :-) and :) which are excluded. " - "Emoticon theme can be chosen from the combo box."); + "Emoticon theme can be chosen from the combo box.")); explanation->setWordWrap(true); comboBox = new QComboBox; diff -Nru kemoticons-5.18.0/themes/CMakeLists.txt kemoticons-5.44.0/themes/CMakeLists.txt --- kemoticons-5.18.0/themes/CMakeLists.txt 2016-01-01 19:55:29.000000000 +0000 +++ kemoticons-5.44.0/themes/CMakeLists.txt 2018-03-03 09:52:23.000000000 +0000 @@ -1,6 +1,6 @@ install( DIRECTORY - Glass Breeze + Breeze Konqi EmojiOne DESTINATION ${KDE_INSTALL_DATAROOTDIR}/emoticons/ FILES_MATCHING Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/0023-20e3.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/0023-20e3.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/002a-20e3.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/002a-20e3.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/0030-20e3.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/0030-20e3.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/0031-20e3.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/0031-20e3.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/0032-20e3.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/0032-20e3.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/0033-20e3.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/0033-20e3.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/0034-20e3.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/0034-20e3.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/0035-20e3.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/0035-20e3.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/0036-20e3.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/0036-20e3.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/0037-20e3.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/0037-20e3.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/0038-20e3.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/0038-20e3.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/0039-20e3.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/0039-20e3.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/00a9.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/00a9.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/00ae.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/00ae.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f004.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f004.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f0cf.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f0cf.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f170.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f170.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f171.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f171.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f17e.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f17e.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f17f.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f17f.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f18e.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f18e.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f191.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f191.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f192.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f192.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f193.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f193.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f194.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f194.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f195.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f195.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f196.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f196.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f197.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f197.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f198.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f198.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f199.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f199.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f19a.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f19a.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1e6-1f1e8.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1e6-1f1e8.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1e6-1f1e9.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1e6-1f1e9.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1e6-1f1ea.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1e6-1f1ea.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1e6-1f1eb.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1e6-1f1eb.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1e6-1f1ec.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1e6-1f1ec.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1e6-1f1ee.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1e6-1f1ee.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1e6-1f1f1.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1e6-1f1f1.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1e6-1f1f2.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1e6-1f1f2.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1e6-1f1f4.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1e6-1f1f4.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1e6-1f1f6.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1e6-1f1f6.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1e6-1f1f7.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1e6-1f1f7.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1e6-1f1f8.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1e6-1f1f8.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1e6-1f1f9.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1e6-1f1f9.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1e6-1f1fa.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1e6-1f1fa.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1e6-1f1fc.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1e6-1f1fc.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1e6-1f1fd.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1e6-1f1fd.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1e6-1f1ff.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1e6-1f1ff.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1e7-1f1e6.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1e7-1f1e6.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1e7-1f1e7.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1e7-1f1e7.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1e7-1f1e9.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1e7-1f1e9.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1e7-1f1ea.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1e7-1f1ea.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1e7-1f1eb.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1e7-1f1eb.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1e7-1f1ec.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1e7-1f1ec.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1e7-1f1ed.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1e7-1f1ed.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1e7-1f1ee.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1e7-1f1ee.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1e7-1f1ef.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1e7-1f1ef.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1e7-1f1f1.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1e7-1f1f1.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1e7-1f1f2.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1e7-1f1f2.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1e7-1f1f3.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1e7-1f1f3.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1e7-1f1f4.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1e7-1f1f4.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1e7-1f1f6.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1e7-1f1f6.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1e7-1f1f7.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1e7-1f1f7.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1e7-1f1f8.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1e7-1f1f8.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1e7-1f1f9.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1e7-1f1f9.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1e7-1f1fb.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1e7-1f1fb.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1e7-1f1fc.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1e7-1f1fc.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1e7-1f1fe.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1e7-1f1fe.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1e7-1f1ff.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1e7-1f1ff.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1e8-1f1e6.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1e8-1f1e6.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1e8-1f1e8.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1e8-1f1e8.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1e8-1f1e9.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1e8-1f1e9.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1e8-1f1eb.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1e8-1f1eb.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1e8-1f1ec.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1e8-1f1ec.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1e8-1f1ed.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1e8-1f1ed.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1e8-1f1ee.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1e8-1f1ee.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1e8-1f1f0.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1e8-1f1f0.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1e8-1f1f1.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1e8-1f1f1.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1e8-1f1f2.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1e8-1f1f2.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1e8-1f1f3.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1e8-1f1f3.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1e8-1f1f4.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1e8-1f1f4.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1e8-1f1f5.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1e8-1f1f5.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1e8-1f1f7.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1e8-1f1f7.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1e8-1f1fa.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1e8-1f1fa.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1e8-1f1fb.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1e8-1f1fb.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1e8-1f1fc.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1e8-1f1fc.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1e8-1f1fd.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1e8-1f1fd.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1e8-1f1fe.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1e8-1f1fe.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1e8-1f1ff.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1e8-1f1ff.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1e9-1f1ea.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1e9-1f1ea.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1e9-1f1ec.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1e9-1f1ec.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1e9-1f1ef.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1e9-1f1ef.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1e9-1f1f0.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1e9-1f1f0.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1e9-1f1f2.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1e9-1f1f2.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1e9-1f1f4.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1e9-1f1f4.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1e9-1f1ff.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1e9-1f1ff.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1ea-1f1e6.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1ea-1f1e6.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1ea-1f1e8.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1ea-1f1e8.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1ea-1f1ea.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1ea-1f1ea.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1ea-1f1ec.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1ea-1f1ec.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1ea-1f1ed.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1ea-1f1ed.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1ea-1f1f7.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1ea-1f1f7.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1ea-1f1f8.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1ea-1f1f8.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1ea-1f1f9.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1ea-1f1f9.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1ea-1f1fa.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1ea-1f1fa.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1eb-1f1ee.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1eb-1f1ee.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1eb-1f1ef.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1eb-1f1ef.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1eb-1f1f0.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1eb-1f1f0.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1eb-1f1f2.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1eb-1f1f2.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1eb-1f1f4.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1eb-1f1f4.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1eb-1f1f7.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1eb-1f1f7.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1ec-1f1e6.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1ec-1f1e6.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1ec-1f1e7.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1ec-1f1e7.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1ec-1f1e9.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1ec-1f1e9.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1ec-1f1ea.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1ec-1f1ea.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1ec-1f1eb.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1ec-1f1eb.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1ec-1f1ec.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1ec-1f1ec.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1ec-1f1ed.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1ec-1f1ed.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1ec-1f1ee.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1ec-1f1ee.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1ec-1f1f1.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1ec-1f1f1.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1ec-1f1f2.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1ec-1f1f2.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1ec-1f1f3.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1ec-1f1f3.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1ec-1f1f5.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1ec-1f1f5.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1ec-1f1f6.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1ec-1f1f6.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1ec-1f1f7.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1ec-1f1f7.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1ec-1f1f8.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1ec-1f1f8.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1ec-1f1f9.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1ec-1f1f9.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1ec-1f1fa.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1ec-1f1fa.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1ec-1f1fc.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1ec-1f1fc.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1ec-1f1fe.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1ec-1f1fe.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1ed-1f1f0.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1ed-1f1f0.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1ed-1f1f2.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1ed-1f1f2.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1ed-1f1f3.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1ed-1f1f3.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1ed-1f1f7.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1ed-1f1f7.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1ed-1f1f9.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1ed-1f1f9.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1ed-1f1fa.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1ed-1f1fa.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1ee-1f1e8.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1ee-1f1e8.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1ee-1f1e9.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1ee-1f1e9.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1ee-1f1ea.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1ee-1f1ea.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1ee-1f1f1.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1ee-1f1f1.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1ee-1f1f2.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1ee-1f1f2.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1ee-1f1f3.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1ee-1f1f3.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1ee-1f1f4.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1ee-1f1f4.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1ee-1f1f6.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1ee-1f1f6.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1ee-1f1f7.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1ee-1f1f7.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1ee-1f1f8.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1ee-1f1f8.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1ee-1f1f9.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1ee-1f1f9.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1ef-1f1ea.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1ef-1f1ea.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1ef-1f1f2.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1ef-1f1f2.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1ef-1f1f4.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1ef-1f1f4.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1ef-1f1f5.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1ef-1f1f5.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1f0-1f1ea.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1f0-1f1ea.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1f0-1f1ec.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1f0-1f1ec.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1f0-1f1ed.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1f0-1f1ed.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1f0-1f1ee.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1f0-1f1ee.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1f0-1f1f2.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1f0-1f1f2.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1f0-1f1f3.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1f0-1f1f3.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1f0-1f1f5.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1f0-1f1f5.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1f0-1f1f7.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1f0-1f1f7.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1f0-1f1fc.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1f0-1f1fc.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1f0-1f1fe.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1f0-1f1fe.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1f0-1f1ff.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1f0-1f1ff.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1f1-1f1e6.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1f1-1f1e6.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1f1-1f1e7.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1f1-1f1e7.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1f1-1f1e8.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1f1-1f1e8.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1f1-1f1ee.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1f1-1f1ee.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1f1-1f1f0.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1f1-1f1f0.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1f1-1f1f7.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1f1-1f1f7.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1f1-1f1f8.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1f1-1f1f8.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1f1-1f1f9.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1f1-1f1f9.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1f1-1f1fa.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1f1-1f1fa.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1f1-1f1fb.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1f1-1f1fb.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1f1-1f1fe.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1f1-1f1fe.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1f2-1f1e6.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1f2-1f1e6.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1f2-1f1e8.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1f2-1f1e8.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1f2-1f1e9.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1f2-1f1e9.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1f2-1f1ea.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1f2-1f1ea.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1f2-1f1eb.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1f2-1f1eb.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1f2-1f1ec.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1f2-1f1ec.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1f2-1f1ed.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1f2-1f1ed.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1f2-1f1f0.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1f2-1f1f0.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1f2-1f1f1.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1f2-1f1f1.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1f2-1f1f2.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1f2-1f1f2.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1f2-1f1f3.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1f2-1f1f3.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1f2-1f1f4.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1f2-1f1f4.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1f2-1f1f5.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1f2-1f1f5.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1f2-1f1f6.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1f2-1f1f6.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1f2-1f1f7.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1f2-1f1f7.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1f2-1f1f8.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1f2-1f1f8.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1f2-1f1f9.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1f2-1f1f9.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1f2-1f1fa.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1f2-1f1fa.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1f2-1f1fb.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1f2-1f1fb.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1f2-1f1fc.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1f2-1f1fc.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1f2-1f1fd.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1f2-1f1fd.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1f2-1f1fe.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1f2-1f1fe.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1f2-1f1ff.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1f2-1f1ff.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1f3-1f1e6.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1f3-1f1e6.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1f3-1f1e8.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1f3-1f1e8.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1f3-1f1ea.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1f3-1f1ea.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1f3-1f1eb.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1f3-1f1eb.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1f3-1f1ec.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1f3-1f1ec.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1f3-1f1ee.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1f3-1f1ee.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1f3-1f1f1.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1f3-1f1f1.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1f3-1f1f4.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1f3-1f1f4.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1f3-1f1f5.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1f3-1f1f5.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1f3-1f1f7.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1f3-1f1f7.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1f3-1f1fa.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1f3-1f1fa.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1f3-1f1ff.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1f3-1f1ff.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1f4-1f1f2.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1f4-1f1f2.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1f5-1f1e6.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1f5-1f1e6.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1f5-1f1ea.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1f5-1f1ea.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1f5-1f1eb.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1f5-1f1eb.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1f5-1f1ec.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1f5-1f1ec.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1f5-1f1ed.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1f5-1f1ed.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1f5-1f1f0.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1f5-1f1f0.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1f5-1f1f1.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1f5-1f1f1.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1f5-1f1f2.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1f5-1f1f2.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1f5-1f1f3.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1f5-1f1f3.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1f5-1f1f7.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1f5-1f1f7.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1f5-1f1f8.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1f5-1f1f8.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1f5-1f1f9.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1f5-1f1f9.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1f5-1f1fc.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1f5-1f1fc.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1f5-1f1fe.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1f5-1f1fe.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1f6-1f1e6.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1f6-1f1e6.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1f7-1f1ea.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1f7-1f1ea.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1f7-1f1f4.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1f7-1f1f4.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1f7-1f1f8.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1f7-1f1f8.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1f7-1f1fa.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1f7-1f1fa.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1f7-1f1fc.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1f7-1f1fc.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1f8-1f1e6.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1f8-1f1e6.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1f8-1f1e7.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1f8-1f1e7.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1f8-1f1e8.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1f8-1f1e8.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1f8-1f1e9.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1f8-1f1e9.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1f8-1f1ea.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1f8-1f1ea.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1f8-1f1ec.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1f8-1f1ec.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1f8-1f1ed.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1f8-1f1ed.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1f8-1f1ee.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1f8-1f1ee.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1f8-1f1ef.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1f8-1f1ef.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1f8-1f1f0.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1f8-1f1f0.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1f8-1f1f1.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1f8-1f1f1.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1f8-1f1f2.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1f8-1f1f2.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1f8-1f1f3.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1f8-1f1f3.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1f8-1f1f4.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1f8-1f1f4.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1f8-1f1f7.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1f8-1f1f7.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1f8-1f1f8.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1f8-1f1f8.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1f8-1f1f9.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1f8-1f1f9.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1f8-1f1fb.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1f8-1f1fb.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1f8-1f1fd.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1f8-1f1fd.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1f8-1f1fe.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1f8-1f1fe.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1f8-1f1ff.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1f8-1f1ff.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1f9-1f1e6.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1f9-1f1e6.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1f9-1f1e8.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1f9-1f1e8.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1f9-1f1e9.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1f9-1f1e9.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1f9-1f1eb.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1f9-1f1eb.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1f9-1f1ec.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1f9-1f1ec.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1f9-1f1ed.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1f9-1f1ed.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1f9-1f1ef.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1f9-1f1ef.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1f9-1f1f0.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1f9-1f1f0.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1f9-1f1f1.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1f9-1f1f1.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1f9-1f1f2.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1f9-1f1f2.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1f9-1f1f3.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1f9-1f1f3.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1f9-1f1f4.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1f9-1f1f4.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1f9-1f1f7.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1f9-1f1f7.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1f9-1f1f9.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1f9-1f1f9.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1f9-1f1fb.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1f9-1f1fb.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1f9-1f1fc.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1f9-1f1fc.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1f9-1f1ff.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1f9-1f1ff.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1fa-1f1e6.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1fa-1f1e6.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1fa-1f1ec.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1fa-1f1ec.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1fa-1f1f2.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1fa-1f1f2.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1fa-1f1f8.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1fa-1f1f8.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1fa-1f1fe.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1fa-1f1fe.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1fa-1f1ff.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1fa-1f1ff.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1fb-1f1e6.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1fb-1f1e6.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1fb-1f1e8.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1fb-1f1e8.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1fb-1f1ea.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1fb-1f1ea.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1fb-1f1ec.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1fb-1f1ec.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1fb-1f1ee.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1fb-1f1ee.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1fb-1f1f3.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1fb-1f1f3.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1fb-1f1fa.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1fb-1f1fa.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1fc-1f1eb.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1fc-1f1eb.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1fc-1f1f8.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1fc-1f1f8.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1fd-1f1f0.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1fd-1f1f0.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1fe-1f1ea.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1fe-1f1ea.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1fe-1f1f9.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1fe-1f1f9.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1ff-1f1e6.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1ff-1f1e6.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1ff-1f1f2.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1ff-1f1f2.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f1ff-1f1fc.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f1ff-1f1fc.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f201.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f201.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f202.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f202.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f21a.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f21a.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f22f.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f22f.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f232.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f232.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f233.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f233.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f234.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f234.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f235.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f235.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f236.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f236.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f237.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f237.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f238.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f238.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f239.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f239.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f23a.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f23a.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f250.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f250.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f251.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f251.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f300.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f300.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f301.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f301.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f302.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f302.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f303.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f303.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f304.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f304.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f305.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f305.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f306.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f306.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f307.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f307.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f308.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f308.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f309.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f309.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f30a.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f30a.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f30b.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f30b.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f30c.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f30c.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f30d.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f30d.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f30e.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f30e.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f30f.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f30f.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f310.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f310.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f311.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f311.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f312.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f312.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f313.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f313.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f314.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f314.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f315.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f315.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f316.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f316.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f317.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f317.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f318.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f318.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f319.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f319.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f31a.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f31a.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f31b.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f31b.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f31c.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f31c.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f31d.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f31d.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f31e.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f31e.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f31f.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f31f.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f320.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f320.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f321.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f321.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f324.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f324.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f325.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f325.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f326.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f326.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f327.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f327.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f328.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f328.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f329.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f329.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f32a.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f32a.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f32b.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f32b.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f32c.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f32c.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f32d.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f32d.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f32e.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f32e.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f32f.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f32f.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f330.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f330.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f331.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f331.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f332.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f332.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f333.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f333.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f334.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f334.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f335.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f335.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f336.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f336.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f337.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f337.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f338.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f338.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f339.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f339.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f33a.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f33a.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f33b.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f33b.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f33c.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f33c.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f33d.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f33d.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f33e.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f33e.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f33f.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f33f.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f340.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f340.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f341.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f341.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f342.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f342.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f343.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f343.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f344.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f344.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f345.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f345.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f346.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f346.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f347.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f347.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f348.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f348.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f349.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f349.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f34a.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f34a.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f34b.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f34b.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f34c.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f34c.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f34d.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f34d.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f34e.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f34e.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f34f.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f34f.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f350.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f350.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f351.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f351.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f352.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f352.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f353.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f353.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f354.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f354.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f355.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f355.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f356.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f356.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f357.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f357.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f358.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f358.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f359.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f359.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f35a.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f35a.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f35b.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f35b.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f35c.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f35c.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f35d.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f35d.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f35e.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f35e.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f35f.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f35f.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f360.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f360.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f361.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f361.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f362.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f362.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f363.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f363.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f364.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f364.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f365.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f365.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f366.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f366.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f367.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f367.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f368.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f368.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f369.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f369.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f36a.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f36a.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f36b.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f36b.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f36c.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f36c.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f36d.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f36d.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f36e.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f36e.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f36f.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f36f.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f370.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f370.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f371.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f371.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f372.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f372.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f373.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f373.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f374.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f374.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f375.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f375.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f376.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f376.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f377.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f377.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f378.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f378.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f379.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f379.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f37a.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f37a.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f37b.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f37b.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f37c.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f37c.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f37d.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f37d.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f37e.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f37e.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f37f.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f37f.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f380.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f380.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f381.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f381.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f382.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f382.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f383.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f383.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f384.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f384.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f385-1f3fb.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f385-1f3fb.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f385-1f3fc.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f385-1f3fc.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f385-1f3fd.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f385-1f3fd.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f385-1f3fe.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f385-1f3fe.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f385-1f3ff.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f385-1f3ff.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f385.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f385.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f386.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f386.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f387.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f387.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f388.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f388.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f389.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f389.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f38a.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f38a.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f38b.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f38b.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f38c.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f38c.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f38d.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f38d.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f38e.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f38e.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f38f.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f38f.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f390.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f390.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f391.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f391.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f392.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f392.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f393.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f393.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f396.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f396.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f397.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f397.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f399.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f399.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f39a.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f39a.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f39b.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f39b.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f39e.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f39e.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f39f.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f39f.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f3a0.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f3a0.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f3a1.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f3a1.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f3a2.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f3a2.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f3a3.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f3a3.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f3a4.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f3a4.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f3a5.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f3a5.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f3a6.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f3a6.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f3a7.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f3a7.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f3a8.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f3a8.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f3a9.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f3a9.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f3aa.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f3aa.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f3ab.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f3ab.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f3ac.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f3ac.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f3ad.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f3ad.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f3ae.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f3ae.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f3af.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f3af.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f3b0.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f3b0.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f3b1.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f3b1.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f3b2.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f3b2.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f3b3.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f3b3.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f3b4.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f3b4.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f3b5.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f3b5.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f3b6.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f3b6.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f3b7.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f3b7.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f3b8.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f3b8.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f3b9.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f3b9.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f3ba.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f3ba.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f3bb.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f3bb.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f3bc.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f3bc.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f3bd.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f3bd.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f3be.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f3be.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f3bf.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f3bf.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f3c0.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f3c0.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f3c1.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f3c1.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f3c2.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f3c2.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f3c3-1f3fb.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f3c3-1f3fb.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f3c3-1f3fc.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f3c3-1f3fc.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f3c3-1f3fd.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f3c3-1f3fd.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f3c3-1f3fe.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f3c3-1f3fe.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f3c3-1f3ff.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f3c3-1f3ff.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f3c3.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f3c3.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f3c4-1f3fb.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f3c4-1f3fb.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f3c4-1f3fc.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f3c4-1f3fc.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f3c4-1f3fd.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f3c4-1f3fd.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f3c4-1f3fe.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f3c4-1f3fe.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f3c4-1f3ff.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f3c4-1f3ff.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f3c4.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f3c4.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f3c5.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f3c5.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f3c6.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f3c6.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f3c7-1f3fb.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f3c7-1f3fb.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f3c7-1f3fc.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f3c7-1f3fc.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f3c7-1f3fd.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f3c7-1f3fd.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f3c7-1f3fe.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f3c7-1f3fe.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f3c7-1f3ff.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f3c7-1f3ff.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f3c7.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f3c7.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f3c8.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f3c8.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f3c9.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f3c9.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f3ca-1f3fb.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f3ca-1f3fb.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f3ca-1f3fc.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f3ca-1f3fc.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f3ca-1f3fd.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f3ca-1f3fd.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f3ca-1f3fe.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f3ca-1f3fe.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f3ca-1f3ff.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f3ca-1f3ff.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f3ca.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f3ca.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f3cb-1f3fb.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f3cb-1f3fb.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f3cb-1f3fc.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f3cb-1f3fc.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f3cb-1f3fd.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f3cb-1f3fd.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f3cb-1f3fe.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f3cb-1f3fe.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f3cb-1f3ff.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f3cb-1f3ff.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f3cb.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f3cb.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f3cc.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f3cc.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f3cd.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f3cd.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f3ce.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f3ce.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f3cf.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f3cf.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f3d0.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f3d0.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f3d1.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f3d1.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f3d2.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f3d2.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f3d3.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f3d3.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f3d4.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f3d4.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f3d5.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f3d5.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f3d6.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f3d6.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f3d7.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f3d7.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f3d8.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f3d8.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f3d9.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f3d9.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f3da.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f3da.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f3db.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f3db.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f3dc.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f3dc.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f3dd.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f3dd.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f3de.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f3de.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f3df.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f3df.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f3e0.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f3e0.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f3e1.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f3e1.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f3e2.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f3e2.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f3e3.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f3e3.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f3e4.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f3e4.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f3e5.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f3e5.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f3e6.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f3e6.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f3e7.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f3e7.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f3e8.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f3e8.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f3e9.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f3e9.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f3ea.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f3ea.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f3eb.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f3eb.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f3ec.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f3ec.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f3ed.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f3ed.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f3ee.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f3ee.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f3ef.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f3ef.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f3f0.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f3f0.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f3f3.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f3f3.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f3f4.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f3f4.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f3f5.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f3f5.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f3f7.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f3f7.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f3f8.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f3f8.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f3f9.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f3f9.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f3fa.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f3fa.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f3fb.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f3fb.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f3fc.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f3fc.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f3fd.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f3fd.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f3fe.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f3fe.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f3ff.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f3ff.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f400.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f400.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f401.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f401.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f402.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f402.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f403.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f403.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f404.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f404.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f405.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f405.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f406.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f406.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f407.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f407.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f408.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f408.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f409.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f409.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f40a.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f40a.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f40b.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f40b.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f40c.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f40c.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f40d.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f40d.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f40e.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f40e.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f40f.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f40f.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f410.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f410.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f411.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f411.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f412.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f412.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f413.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f413.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f414.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f414.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f415.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f415.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f416.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f416.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f417.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f417.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f418.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f418.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f419.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f419.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f41a.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f41a.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f41b.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f41b.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f41c.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f41c.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f41d.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f41d.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f41e.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f41e.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f41f.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f41f.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f420.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f420.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f421.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f421.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f422.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f422.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f423.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f423.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f424.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f424.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f425.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f425.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f426.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f426.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f427.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f427.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f428.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f428.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f429.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f429.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f42a.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f42a.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f42b.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f42b.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f42c.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f42c.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f42d.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f42d.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f42e.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f42e.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f42f.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f42f.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f430.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f430.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f431.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f431.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f432.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f432.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f433.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f433.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f434.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f434.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f435.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f435.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f436.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f436.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f437.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f437.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f438.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f438.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f439.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f439.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f43a.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f43a.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f43b.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f43b.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f43c.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f43c.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f43d.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f43d.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f43e.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f43e.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f43f.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f43f.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f440.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f440.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f441-1f5e8.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f441-1f5e8.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f441.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f441.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f442-1f3fb.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f442-1f3fb.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f442-1f3fc.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f442-1f3fc.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f442-1f3fd.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f442-1f3fd.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f442-1f3fe.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f442-1f3fe.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f442-1f3ff.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f442-1f3ff.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f442.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f442.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f443-1f3fb.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f443-1f3fb.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f443-1f3fc.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f443-1f3fc.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f443-1f3fd.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f443-1f3fd.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f443-1f3fe.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f443-1f3fe.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f443-1f3ff.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f443-1f3ff.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f443.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f443.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f444.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f444.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f445.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f445.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f446-1f3fb.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f446-1f3fb.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f446-1f3fc.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f446-1f3fc.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f446-1f3fd.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f446-1f3fd.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f446-1f3fe.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f446-1f3fe.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f446-1f3ff.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f446-1f3ff.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f446.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f446.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f447-1f3fb.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f447-1f3fb.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f447-1f3fc.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f447-1f3fc.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f447-1f3fd.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f447-1f3fd.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f447-1f3fe.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f447-1f3fe.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f447-1f3ff.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f447-1f3ff.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f447.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f447.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f448-1f3fb.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f448-1f3fb.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f448-1f3fc.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f448-1f3fc.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f448-1f3fd.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f448-1f3fd.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f448-1f3fe.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f448-1f3fe.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f448-1f3ff.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f448-1f3ff.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f448.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f448.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f449-1f3fb.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f449-1f3fb.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f449-1f3fc.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f449-1f3fc.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f449-1f3fd.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f449-1f3fd.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f449-1f3fe.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f449-1f3fe.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f449-1f3ff.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f449-1f3ff.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f449.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f449.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f44a-1f3fb.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f44a-1f3fb.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f44a-1f3fc.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f44a-1f3fc.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f44a-1f3fd.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f44a-1f3fd.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f44a-1f3fe.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f44a-1f3fe.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f44a-1f3ff.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f44a-1f3ff.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f44a.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f44a.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f44b-1f3fb.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f44b-1f3fb.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f44b-1f3fc.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f44b-1f3fc.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f44b-1f3fd.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f44b-1f3fd.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f44b-1f3fe.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f44b-1f3fe.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f44b-1f3ff.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f44b-1f3ff.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f44b.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f44b.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f44c-1f3fb.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f44c-1f3fb.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f44c-1f3fc.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f44c-1f3fc.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f44c-1f3fd.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f44c-1f3fd.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f44c-1f3fe.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f44c-1f3fe.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f44c-1f3ff.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f44c-1f3ff.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f44c.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f44c.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f44d-1f3fb.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f44d-1f3fb.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f44d-1f3fc.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f44d-1f3fc.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f44d-1f3fd.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f44d-1f3fd.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f44d-1f3fe.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f44d-1f3fe.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f44d-1f3ff.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f44d-1f3ff.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f44d.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f44d.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f44e-1f3fb.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f44e-1f3fb.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f44e-1f3fc.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f44e-1f3fc.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f44e-1f3fd.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f44e-1f3fd.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f44e-1f3fe.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f44e-1f3fe.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f44e-1f3ff.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f44e-1f3ff.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f44e.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f44e.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f44f-1f3fb.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f44f-1f3fb.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f44f-1f3fc.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f44f-1f3fc.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f44f-1f3fd.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f44f-1f3fd.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f44f-1f3fe.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f44f-1f3fe.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f44f-1f3ff.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f44f-1f3ff.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f44f.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f44f.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f450-1f3fb.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f450-1f3fb.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f450-1f3fc.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f450-1f3fc.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f450-1f3fd.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f450-1f3fd.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f450-1f3fe.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f450-1f3fe.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f450-1f3ff.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f450-1f3ff.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f450.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f450.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f451.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f451.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f452.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f452.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f453.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f453.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f454.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f454.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f455.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f455.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f456.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f456.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f457.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f457.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f458.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f458.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f459.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f459.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f45a.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f45a.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f45b.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f45b.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f45c.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f45c.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f45d.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f45d.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f45e.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f45e.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f45f.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f45f.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f460.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f460.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f461.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f461.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f462.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f462.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f463.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f463.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f464.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f464.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f465.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f465.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f466-1f3fb.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f466-1f3fb.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f466-1f3fc.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f466-1f3fc.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f466-1f3fd.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f466-1f3fd.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f466-1f3fe.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f466-1f3fe.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f466-1f3ff.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f466-1f3ff.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f466.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f466.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f467-1f3fb.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f467-1f3fb.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f467-1f3fc.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f467-1f3fc.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f467-1f3fd.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f467-1f3fd.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f467-1f3fe.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f467-1f3fe.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f467-1f3ff.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f467-1f3ff.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f467.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f467.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f468-1f3fb.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f468-1f3fb.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f468-1f3fc.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f468-1f3fc.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f468-1f3fd.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f468-1f3fd.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f468-1f3fe.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f468-1f3fe.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f468-1f3ff.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f468-1f3ff.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f468-1f468-1f466-1f466.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f468-1f468-1f466-1f466.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f468-1f468-1f466.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f468-1f468-1f466.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f468-1f468-1f467-1f466.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f468-1f468-1f467-1f466.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f468-1f468-1f467-1f467.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f468-1f468-1f467-1f467.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f468-1f468-1f467.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f468-1f468-1f467.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f468-1f469-1f466-1f466.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f468-1f469-1f466-1f466.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f468-1f469-1f467-1f466.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f468-1f469-1f467-1f466.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f468-1f469-1f467-1f467.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f468-1f469-1f467-1f467.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f468-1f469-1f467.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f468-1f469-1f467.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f468-2764-1f468.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f468-2764-1f468.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f468-2764-1f48b-1f468.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f468-2764-1f48b-1f468.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f468.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f468.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f469-1f3fb.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f469-1f3fb.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f469-1f3fc.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f469-1f3fc.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f469-1f3fd.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f469-1f3fd.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f469-1f3fe.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f469-1f3fe.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f469-1f3ff.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f469-1f3ff.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f469-1f469-1f466-1f466.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f469-1f469-1f466-1f466.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f469-1f469-1f466.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f469-1f469-1f466.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f469-1f469-1f467-1f466.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f469-1f469-1f467-1f466.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f469-1f469-1f467-1f467.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f469-1f469-1f467-1f467.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f469-1f469-1f467.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f469-1f469-1f467.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f469-2764-1f469.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f469-2764-1f469.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f469-2764-1f48b-1f469.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f469-2764-1f48b-1f469.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f469.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f469.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f46a.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f46a.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f46b.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f46b.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f46c.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f46c.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f46d.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f46d.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f46e-1f3fb.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f46e-1f3fb.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f46e-1f3fc.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f46e-1f3fc.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f46e-1f3fd.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f46e-1f3fd.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f46e-1f3fe.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f46e-1f3fe.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f46e-1f3ff.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f46e-1f3ff.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f46e.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f46e.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f46f.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f46f.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f470-1f3fb.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f470-1f3fb.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f470-1f3fc.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f470-1f3fc.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f470-1f3fd.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f470-1f3fd.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f470-1f3fe.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f470-1f3fe.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f470-1f3ff.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f470-1f3ff.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f470.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f470.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f471-1f3fb.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f471-1f3fb.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f471-1f3fc.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f471-1f3fc.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f471-1f3fd.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f471-1f3fd.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f471-1f3fe.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f471-1f3fe.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f471-1f3ff.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f471-1f3ff.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f471.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f471.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f472-1f3fb.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f472-1f3fb.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f472-1f3fc.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f472-1f3fc.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f472-1f3fd.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f472-1f3fd.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f472-1f3fe.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f472-1f3fe.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f472-1f3ff.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f472-1f3ff.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f472.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f472.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f473-1f3fb.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f473-1f3fb.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f473-1f3fc.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f473-1f3fc.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f473-1f3fd.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f473-1f3fd.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f473-1f3fe.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f473-1f3fe.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f473-1f3ff.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f473-1f3ff.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f473.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f473.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f474-1f3fb.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f474-1f3fb.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f474-1f3fc.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f474-1f3fc.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f474-1f3fd.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f474-1f3fd.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f474-1f3fe.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f474-1f3fe.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f474-1f3ff.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f474-1f3ff.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f474.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f474.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f475-1f3fb.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f475-1f3fb.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f475-1f3fc.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f475-1f3fc.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f475-1f3fd.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f475-1f3fd.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f475-1f3fe.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f475-1f3fe.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f475-1f3ff.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f475-1f3ff.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f475.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f475.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f476-1f3fb.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f476-1f3fb.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f476-1f3fc.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f476-1f3fc.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f476-1f3fd.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f476-1f3fd.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f476-1f3fe.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f476-1f3fe.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f476-1f3ff.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f476-1f3ff.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f476.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f476.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f477-1f3fb.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f477-1f3fb.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f477-1f3fc.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f477-1f3fc.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f477-1f3fd.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f477-1f3fd.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f477-1f3fe.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f477-1f3fe.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f477-1f3ff.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f477-1f3ff.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f477.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f477.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f478-1f3fb.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f478-1f3fb.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f478-1f3fc.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f478-1f3fc.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f478-1f3fd.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f478-1f3fd.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f478-1f3fe.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f478-1f3fe.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f478-1f3ff.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f478-1f3ff.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f478.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f478.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f479.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f479.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f47a.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f47a.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f47b.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f47b.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f47c-1f3fb.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f47c-1f3fb.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f47c-1f3fc.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f47c-1f3fc.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f47c-1f3fd.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f47c-1f3fd.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f47c-1f3fe.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f47c-1f3fe.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f47c-1f3ff.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f47c-1f3ff.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f47c.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f47c.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f47d.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f47d.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f47e.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f47e.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f47f.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f47f.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f480.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f480.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f481-1f3fb.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f481-1f3fb.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f481-1f3fc.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f481-1f3fc.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f481-1f3fd.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f481-1f3fd.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f481-1f3fe.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f481-1f3fe.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f481-1f3ff.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f481-1f3ff.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f481.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f481.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f482-1f3fb.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f482-1f3fb.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f482-1f3fc.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f482-1f3fc.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f482-1f3fd.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f482-1f3fd.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f482-1f3fe.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f482-1f3fe.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f482-1f3ff.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f482-1f3ff.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f482.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f482.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f483-1f3fb.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f483-1f3fb.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f483-1f3fc.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f483-1f3fc.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f483-1f3fd.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f483-1f3fd.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f483-1f3fe.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f483-1f3fe.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f483-1f3ff.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f483-1f3ff.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f483.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f483.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f484.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f484.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f485-1f3fb.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f485-1f3fb.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f485-1f3fc.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f485-1f3fc.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f485-1f3fd.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f485-1f3fd.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f485-1f3fe.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f485-1f3fe.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f485-1f3ff.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f485-1f3ff.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f485.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f485.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f486-1f3fb.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f486-1f3fb.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f486-1f3fc.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f486-1f3fc.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f486-1f3fd.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f486-1f3fd.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f486-1f3fe.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f486-1f3fe.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f486-1f3ff.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f486-1f3ff.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f486.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f486.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f487-1f3fb.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f487-1f3fb.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f487-1f3fc.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f487-1f3fc.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f487-1f3fd.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f487-1f3fd.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f487-1f3fe.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f487-1f3fe.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f487-1f3ff.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f487-1f3ff.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f487.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f487.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f488.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f488.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f489.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f489.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f48a.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f48a.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f48b.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f48b.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f48c.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f48c.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f48d.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f48d.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f48e.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f48e.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f48f.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f48f.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f490.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f490.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f491.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f491.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f492.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f492.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f493.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f493.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f494.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f494.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f495.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f495.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f496.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f496.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f497.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f497.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f498.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f498.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f499.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f499.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f49a.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f49a.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f49b.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f49b.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f49c.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f49c.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f49d.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f49d.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f49e.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f49e.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f49f.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f49f.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f4a0.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f4a0.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f4a1.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f4a1.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f4a2.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f4a2.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f4a3.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f4a3.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f4a4.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f4a4.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f4a5.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f4a5.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f4a6.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f4a6.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f4a7.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f4a7.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f4a8.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f4a8.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f4a9.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f4a9.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f4aa-1f3fb.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f4aa-1f3fb.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f4aa-1f3fc.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f4aa-1f3fc.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f4aa-1f3fd.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f4aa-1f3fd.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f4aa-1f3fe.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f4aa-1f3fe.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f4aa-1f3ff.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f4aa-1f3ff.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f4aa.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f4aa.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f4ab.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f4ab.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f4ac.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f4ac.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f4ad.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f4ad.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f4ae.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f4ae.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f4af.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f4af.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f4b0.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f4b0.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f4b1.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f4b1.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f4b2.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f4b2.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f4b3.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f4b3.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f4b4.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f4b4.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f4b5.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f4b5.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f4b6.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f4b6.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f4b7.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f4b7.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f4b8.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f4b8.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f4b9.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f4b9.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f4ba.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f4ba.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f4bb.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f4bb.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f4bc.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f4bc.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f4bd.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f4bd.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f4be.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f4be.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f4bf.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f4bf.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f4c0.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f4c0.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f4c1.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f4c1.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f4c2.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f4c2.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f4c3.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f4c3.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f4c4.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f4c4.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f4c5.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f4c5.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f4c6.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f4c6.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f4c7.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f4c7.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f4c8.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f4c8.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f4c9.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f4c9.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f4ca.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f4ca.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f4cb.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f4cb.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f4cc.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f4cc.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f4cd.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f4cd.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f4ce.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f4ce.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f4cf.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f4cf.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f4d0.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f4d0.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f4d1.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f4d1.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f4d2.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f4d2.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f4d3.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f4d3.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f4d4.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f4d4.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f4d5.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f4d5.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f4d6.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f4d6.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f4d7.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f4d7.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f4d8.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f4d8.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f4d9.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f4d9.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f4da.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f4da.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f4db.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f4db.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f4dc.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f4dc.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f4dd.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f4dd.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f4de.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f4de.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f4df.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f4df.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f4e0.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f4e0.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f4e1.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f4e1.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f4e2.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f4e2.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f4e3.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f4e3.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f4e4.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f4e4.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f4e5.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f4e5.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f4e6.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f4e6.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f4e7.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f4e7.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f4e8.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f4e8.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f4e9.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f4e9.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f4ea.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f4ea.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f4eb.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f4eb.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f4ec.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f4ec.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f4ed.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f4ed.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f4ee.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f4ee.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f4ef.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f4ef.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f4f0.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f4f0.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f4f1.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f4f1.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f4f2.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f4f2.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f4f3.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f4f3.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f4f4.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f4f4.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f4f5.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f4f5.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f4f6.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f4f6.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f4f7.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f4f7.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f4f8.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f4f8.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f4f9.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f4f9.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f4fa.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f4fa.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f4fb.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f4fb.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f4fc.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f4fc.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f4fd.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f4fd.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f4ff.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f4ff.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f500.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f500.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f501.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f501.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f502.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f502.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f503.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f503.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f504.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f504.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f505.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f505.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f506.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f506.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f507.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f507.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f508.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f508.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f509.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f509.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f50a.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f50a.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f50b.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f50b.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f50c.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f50c.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f50d.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f50d.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f50e.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f50e.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f50f.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f50f.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f510.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f510.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f511.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f511.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f512.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f512.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f513.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f513.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f514.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f514.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f515.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f515.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f516.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f516.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f517.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f517.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f518.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f518.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f519.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f519.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f51a.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f51a.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f51b.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f51b.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f51c.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f51c.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f51d.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f51d.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f51e.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f51e.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f51f.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f51f.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f520.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f520.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f521.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f521.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f522.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f522.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f523.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f523.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f524.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f524.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f525.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f525.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f526.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f526.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f527.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f527.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f528.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f528.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f529.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f529.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f52a.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f52a.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f52b.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f52b.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f52c.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f52c.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f52d.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f52d.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f52e.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f52e.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f52f.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f52f.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f530.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f530.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f531.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f531.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f532.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f532.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f533.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f533.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f534.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f534.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f535.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f535.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f536.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f536.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f537.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f537.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f538.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f538.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f539.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f539.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f53a.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f53a.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f53b.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f53b.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f53c.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f53c.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f53d.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f53d.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f549.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f549.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f54a.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f54a.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f54b.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f54b.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f54c.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f54c.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f54d.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f54d.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f54e.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f54e.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f550.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f550.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f551.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f551.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f552.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f552.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f553.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f553.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f554.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f554.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f555.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f555.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f556.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f556.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f557.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f557.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f558.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f558.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f559.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f559.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f55a.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f55a.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f55b.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f55b.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f55c.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f55c.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f55d.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f55d.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f55e.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f55e.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f55f.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f55f.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f560.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f560.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f561.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f561.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f562.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f562.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f563.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f563.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f564.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f564.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f565.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f565.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f566.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f566.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f567.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f567.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f56f.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f56f.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f570.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f570.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f573.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f573.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f574.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f574.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f575-1f3fb.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f575-1f3fb.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f575-1f3fc.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f575-1f3fc.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f575-1f3fd.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f575-1f3fd.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f575-1f3fe.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f575-1f3fe.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f575-1f3ff.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f575-1f3ff.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f575.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f575.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f576.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f576.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f577.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f577.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f578.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f578.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f579.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f579.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f587.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f587.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f58a.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f58a.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f58b.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f58b.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f58c.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f58c.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f58d.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f58d.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f590-1f3fb.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f590-1f3fb.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f590-1f3fc.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f590-1f3fc.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f590-1f3fd.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f590-1f3fd.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f590-1f3fe.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f590-1f3fe.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f590-1f3ff.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f590-1f3ff.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f590.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f590.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f595-1f3fb.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f595-1f3fb.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f595-1f3fc.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f595-1f3fc.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f595-1f3fd.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f595-1f3fd.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f595-1f3fe.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f595-1f3fe.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f595-1f3ff.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f595-1f3ff.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f595.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f595.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f596-1f3fb.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f596-1f3fb.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f596-1f3fc.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f596-1f3fc.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f596-1f3fd.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f596-1f3fd.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f596-1f3fe.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f596-1f3fe.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f596-1f3ff.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f596-1f3ff.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f596.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f596.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f5a5.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f5a5.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f5a8.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f5a8.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f5b1.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f5b1.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f5b2.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f5b2.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f5bc.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f5bc.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f5c2.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f5c2.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f5c3.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f5c3.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f5c4.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f5c4.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f5d1.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f5d1.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f5d2.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f5d2.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f5d3.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f5d3.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f5dc.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f5dc.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f5dd.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f5dd.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f5de.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f5de.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f5e1.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f5e1.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f5e3.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f5e3.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f5ef.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f5ef.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f5f3.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f5f3.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f5fa.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f5fa.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f5fb.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f5fb.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f5fc.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f5fc.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f5fd.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f5fd.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f5fe.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f5fe.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f5ff.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f5ff.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f600.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f600.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f601.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f601.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f602.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f602.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f603.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f603.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f604.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f604.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f605.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f605.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f606.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f606.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f607.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f607.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f608.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f608.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f609.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f609.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f60a.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f60a.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f60b.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f60b.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f60c.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f60c.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f60d.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f60d.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f60e.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f60e.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f60f.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f60f.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f610.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f610.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f611.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f611.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f612.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f612.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f613.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f613.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f614.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f614.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f615.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f615.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f616.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f616.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f617.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f617.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f618.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f618.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f619.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f619.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f61a.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f61a.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f61b.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f61b.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f61c.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f61c.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f61d.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f61d.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f61e.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f61e.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f61f.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f61f.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f620.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f620.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f621.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f621.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f622.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f622.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f623.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f623.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f624.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f624.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f625.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f625.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f626.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f626.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f627.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f627.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f628.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f628.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f629.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f629.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f62a.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f62a.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f62b.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f62b.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f62c.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f62c.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f62d.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f62d.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f62e.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f62e.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f62f.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f62f.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f630.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f630.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f631.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f631.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f632.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f632.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f633.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f633.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f634.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f634.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f635.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f635.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f636.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f636.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f637.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f637.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f638.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f638.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f639.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f639.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f63a.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f63a.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f63b.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f63b.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f63c.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f63c.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f63d.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f63d.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f63e.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f63e.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f63f.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f63f.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f640.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f640.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f641.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f641.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f642.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f642.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f643.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f643.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f644.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f644.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f645-1f3fb.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f645-1f3fb.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f645-1f3fc.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f645-1f3fc.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f645-1f3fd.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f645-1f3fd.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f645-1f3fe.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f645-1f3fe.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f645-1f3ff.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f645-1f3ff.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f645.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f645.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f646-1f3fb.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f646-1f3fb.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f646-1f3fc.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f646-1f3fc.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f646-1f3fd.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f646-1f3fd.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f646-1f3fe.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f646-1f3fe.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f646-1f3ff.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f646-1f3ff.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f646.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f646.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f647-1f3fb.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f647-1f3fb.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f647-1f3fc.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f647-1f3fc.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f647-1f3fd.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f647-1f3fd.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f647-1f3fe.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f647-1f3fe.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f647-1f3ff.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f647-1f3ff.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f647.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f647.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f648.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f648.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f649.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f649.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f64a.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f64a.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f64b-1f3fb.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f64b-1f3fb.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f64b-1f3fc.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f64b-1f3fc.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f64b-1f3fd.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f64b-1f3fd.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f64b-1f3fe.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f64b-1f3fe.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f64b-1f3ff.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f64b-1f3ff.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f64b.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f64b.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f64c-1f3fb.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f64c-1f3fb.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f64c-1f3fc.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f64c-1f3fc.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f64c-1f3fd.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f64c-1f3fd.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f64c-1f3fe.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f64c-1f3fe.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f64c-1f3ff.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f64c-1f3ff.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f64c.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f64c.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f64d-1f3fb.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f64d-1f3fb.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f64d-1f3fc.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f64d-1f3fc.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f64d-1f3fd.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f64d-1f3fd.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f64d-1f3fe.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f64d-1f3fe.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f64d-1f3ff.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f64d-1f3ff.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f64d.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f64d.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f64e-1f3fb.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f64e-1f3fb.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f64e-1f3fc.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f64e-1f3fc.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f64e-1f3fd.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f64e-1f3fd.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f64e-1f3fe.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f64e-1f3fe.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f64e-1f3ff.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f64e-1f3ff.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f64e.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f64e.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f64f-1f3fb.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f64f-1f3fb.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f64f-1f3fc.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f64f-1f3fc.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f64f-1f3fd.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f64f-1f3fd.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f64f-1f3fe.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f64f-1f3fe.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f64f-1f3ff.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f64f-1f3ff.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f64f.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f64f.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f680.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f680.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f681.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f681.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f682.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f682.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f683.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f683.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f684.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f684.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f685.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f685.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f686.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f686.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f687.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f687.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f688.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f688.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f689.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f689.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f68a.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f68a.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f68b.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f68b.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f68c.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f68c.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f68d.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f68d.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f68e.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f68e.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f68f.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f68f.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f690.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f690.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f691.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f691.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f692.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f692.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f693.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f693.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f694.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f694.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f695.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f695.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f696.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f696.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f697.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f697.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f698.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f698.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f699.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f699.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f69a.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f69a.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f69b.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f69b.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f69c.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f69c.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f69d.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f69d.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f69e.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f69e.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f69f.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f69f.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f6a0.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f6a0.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f6a1.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f6a1.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f6a2.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f6a2.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f6a3-1f3fb.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f6a3-1f3fb.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f6a3-1f3fc.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f6a3-1f3fc.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f6a3-1f3fd.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f6a3-1f3fd.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f6a3-1f3fe.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f6a3-1f3fe.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f6a3-1f3ff.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f6a3-1f3ff.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f6a3.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f6a3.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f6a4.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f6a4.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f6a5.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f6a5.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f6a6.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f6a6.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f6a7.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f6a7.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f6a8.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f6a8.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f6a9.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f6a9.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f6aa.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f6aa.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f6ab.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f6ab.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f6ac.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f6ac.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f6ad.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f6ad.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f6ae.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f6ae.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f6af.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f6af.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f6b0.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f6b0.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f6b1.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f6b1.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f6b2.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f6b2.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f6b3.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f6b3.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f6b4-1f3fb.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f6b4-1f3fb.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f6b4-1f3fc.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f6b4-1f3fc.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f6b4-1f3fd.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f6b4-1f3fd.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f6b4-1f3fe.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f6b4-1f3fe.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f6b4-1f3ff.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f6b4-1f3ff.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f6b4.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f6b4.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f6b5-1f3fb.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f6b5-1f3fb.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f6b5-1f3fc.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f6b5-1f3fc.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f6b5-1f3fd.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f6b5-1f3fd.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f6b5-1f3fe.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f6b5-1f3fe.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f6b5-1f3ff.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f6b5-1f3ff.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f6b5.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f6b5.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f6b6-1f3fb.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f6b6-1f3fb.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f6b6-1f3fc.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f6b6-1f3fc.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f6b6-1f3fd.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f6b6-1f3fd.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f6b6-1f3fe.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f6b6-1f3fe.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f6b6-1f3ff.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f6b6-1f3ff.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f6b6.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f6b6.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f6b7.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f6b7.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f6b8.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f6b8.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f6b9.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f6b9.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f6ba.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f6ba.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f6bb.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f6bb.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f6bc.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f6bc.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f6bd.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f6bd.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f6be.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f6be.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f6bf.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f6bf.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f6c0-1f3fb.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f6c0-1f3fb.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f6c0-1f3fc.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f6c0-1f3fc.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f6c0-1f3fd.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f6c0-1f3fd.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f6c0-1f3fe.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f6c0-1f3fe.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f6c0-1f3ff.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f6c0-1f3ff.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f6c0.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f6c0.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f6c1.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f6c1.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f6c2.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f6c2.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f6c3.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f6c3.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f6c4.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f6c4.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f6c5.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f6c5.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f6cb.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f6cb.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f6cc.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f6cc.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f6cd.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f6cd.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f6ce.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f6ce.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f6cf.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f6cf.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f6d0.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f6d0.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f6e0.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f6e0.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f6e1.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f6e1.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f6e2.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f6e2.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f6e3.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f6e3.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f6e4.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f6e4.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f6e5.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f6e5.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f6e9.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f6e9.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f6eb.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f6eb.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f6ec.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f6ec.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f6f0.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f6f0.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f6f3.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f6f3.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f910.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f910.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f911.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f911.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f912.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f912.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f913.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f913.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f914.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f914.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f915.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f915.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f916.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f916.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f917.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f917.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f918-1f3fb.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f918-1f3fb.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f918-1f3fc.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f918-1f3fc.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f918-1f3fd.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f918-1f3fd.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f918-1f3fe.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f918-1f3fe.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f918-1f3ff.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f918-1f3ff.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f918.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f918.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f980.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f980.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f981.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f981.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f982.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f982.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f983.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f983.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f984.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f984.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/1f9c0.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/1f9c0.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/203c.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/203c.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/2049.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/2049.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/2122.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/2122.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/2139.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/2139.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/2194.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/2194.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/2195.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/2195.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/2196.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/2196.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/2197.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/2197.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/2198.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/2198.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/2199.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/2199.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/21a9.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/21a9.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/21aa.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/21aa.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/231a.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/231a.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/231b.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/231b.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/2328.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/2328.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/23e9.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/23e9.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/23ea.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/23ea.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/23eb.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/23eb.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/23ec.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/23ec.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/23ed.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/23ed.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/23ee.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/23ee.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/23ef.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/23ef.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/23f0.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/23f0.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/23f1.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/23f1.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/23f2.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/23f2.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/23f3.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/23f3.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/23f8.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/23f8.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/23f9.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/23f9.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/23fa.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/23fa.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/24c2.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/24c2.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/25aa.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/25aa.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/25ab.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/25ab.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/25b6.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/25b6.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/25c0.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/25c0.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/25fb.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/25fb.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/25fc.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/25fc.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/25fd.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/25fd.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/25fe.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/25fe.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/2600.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/2600.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/2601.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/2601.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/2602.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/2602.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/2603.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/2603.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/2604.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/2604.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/260e.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/260e.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/2611.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/2611.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/2614.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/2614.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/2615.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/2615.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/2618.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/2618.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/261d-1f3fb.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/261d-1f3fb.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/261d-1f3fc.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/261d-1f3fc.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/261d-1f3fd.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/261d-1f3fd.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/261d-1f3fe.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/261d-1f3fe.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/261d-1f3ff.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/261d-1f3ff.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/261d.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/261d.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/2620.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/2620.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/2622.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/2622.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/2623.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/2623.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/2626.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/2626.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/262a.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/262a.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/262e.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/262e.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/262f.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/262f.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/2638.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/2638.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/2639.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/2639.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/263a.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/263a.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/2648.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/2648.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/2649.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/2649.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/264a.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/264a.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/264b.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/264b.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/264c.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/264c.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/264d.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/264d.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/264e.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/264e.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/264f.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/264f.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/2650.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/2650.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/2651.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/2651.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/2652.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/2652.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/2653.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/2653.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/2660.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/2660.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/2663.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/2663.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/2665.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/2665.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/2666.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/2666.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/2668.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/2668.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/267b.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/267b.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/267f.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/267f.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/2692.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/2692.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/2693.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/2693.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/2694.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/2694.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/2696.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/2696.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/2697.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/2697.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/2699.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/2699.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/269b.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/269b.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/269c.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/269c.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/26a0.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/26a0.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/26a1.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/26a1.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/26aa.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/26aa.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/26ab.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/26ab.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/26b0.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/26b0.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/26b1.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/26b1.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/26bd.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/26bd.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/26be.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/26be.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/26c4.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/26c4.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/26c5.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/26c5.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/26c8.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/26c8.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/26ce.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/26ce.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/26cf.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/26cf.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/26d1.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/26d1.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/26d3.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/26d3.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/26d4.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/26d4.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/26e9.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/26e9.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/26ea.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/26ea.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/26f0.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/26f0.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/26f1.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/26f1.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/26f2.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/26f2.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/26f3.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/26f3.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/26f4.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/26f4.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/26f5.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/26f5.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/26f7.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/26f7.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/26f8.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/26f8.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/26f9-1f3fb.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/26f9-1f3fb.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/26f9-1f3fc.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/26f9-1f3fc.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/26f9-1f3fd.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/26f9-1f3fd.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/26f9-1f3fe.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/26f9-1f3fe.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/26f9-1f3ff.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/26f9-1f3ff.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/26f9.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/26f9.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/26fa.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/26fa.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/26fd.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/26fd.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/2702.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/2702.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/2705.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/2705.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/2708.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/2708.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/2709.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/2709.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/270a-1f3fb.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/270a-1f3fb.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/270a-1f3fc.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/270a-1f3fc.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/270a-1f3fd.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/270a-1f3fd.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/270a-1f3fe.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/270a-1f3fe.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/270a-1f3ff.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/270a-1f3ff.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/270a.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/270a.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/270b-1f3fb.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/270b-1f3fb.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/270b-1f3fc.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/270b-1f3fc.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/270b-1f3fd.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/270b-1f3fd.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/270b-1f3fe.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/270b-1f3fe.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/270b-1f3ff.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/270b-1f3ff.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/270b.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/270b.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/270c-1f3fb.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/270c-1f3fb.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/270c-1f3fc.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/270c-1f3fc.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/270c-1f3fd.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/270c-1f3fd.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/270c-1f3fe.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/270c-1f3fe.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/270c-1f3ff.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/270c-1f3ff.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/270c.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/270c.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/270d-1f3fb.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/270d-1f3fb.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/270d-1f3fc.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/270d-1f3fc.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/270d-1f3fd.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/270d-1f3fd.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/270d-1f3fe.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/270d-1f3fe.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/270d-1f3ff.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/270d-1f3ff.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/270d.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/270d.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/270f.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/270f.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/2712.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/2712.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/2714.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/2714.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/2716.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/2716.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/271d.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/271d.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/2721.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/2721.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/2728.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/2728.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/2733.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/2733.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/2734.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/2734.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/2744.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/2744.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/2747.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/2747.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/274c.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/274c.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/274e.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/274e.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/2753.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/2753.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/2754.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/2754.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/2755.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/2755.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/2757.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/2757.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/2763.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/2763.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/2764.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/2764.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/2795.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/2795.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/2796.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/2796.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/2797.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/2797.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/27a1.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/27a1.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/27b0.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/27b0.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/27bf.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/27bf.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/2934.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/2934.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/2935.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/2935.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/2b05.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/2b05.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/2b06.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/2b06.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/2b07.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/2b07.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/2b1b.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/2b1b.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/2b1c.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/2b1c.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/2b50.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/2b50.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/2b55.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/2b55.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/3030.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/3030.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/303d.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/303d.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/3297.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/3297.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/EmojiOne/3299.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/EmojiOne/3299.png differ diff -Nru kemoticons-5.18.0/themes/EmojiOne/_emoji_mappings.txt kemoticons-5.44.0/themes/EmojiOne/_emoji_mappings.txt --- kemoticons-5.18.0/themes/EmojiOne/_emoji_mappings.txt 1970-01-01 00:00:00.000000000 +0000 +++ kemoticons-5.44.0/themes/EmojiOne/_emoji_mappings.txt 2018-03-03 09:52:23.000000000 +0000 @@ -0,0 +1,4871 @@ +U+1F600 +😀 + +U+1F601 +😁 + +U+1F602 +😂 + +U+1F603 +😃 + +U+1F604 +😄 + +U+1F605 +😅 + +U+1F606 +😆 + +U+1F609 +😉 + +U+1F60A +😊 + +U+1F60B +😋 + +U+1F60E +😎 + +U+1F60D +😍 + +U+1F618 +😘 + +U+1F617 +😗 + +U+1F619 +😙 + +U+1F61A +😚 + +U+263A +☺️ + +U+1F642 +🙂 + +U+1F917 +🤗 + +U+1F607 +😇 + +U+1F913 +🤓 + +U+1F914 +🤔 + +U+1F610 +😐 + +U+1F611 +😑 + +U+1F636 +😶 + +U+1F644 +🙄 + +U+1F60F +😏 + +U+1F623 +😣 + +U+1F625 +😥 + +U+1F62E +😮 + +U+1F910 +🤐 + +U+1F62F +😯 + +U+1F62A +😪 + +U+1F62B +😫 + +U+1F634 +😴 + +U+1F60C +😌 + +U+1F61B +😛 + +U+1F61C +😜 + +U+1F61D +😝 + +U+1F612 +😒 + +U+1F613 +😓 + +U+1F614 +😔 + +U+1F615 +😕 + +U+1F643 +🙃 + +U+1F911 +🤑 + +U+1F632 +😲 + +U+1F637 +😷 + +U+1F912 +🤒 + +U+1F915 +🤕 + +U+2639 +☹️ + +U+1F641 +🙁 + +U+1F616 +😖 + +U+1F61E +😞 + +U+1F61F +😟 + +U+1F624 +😤 + +U+1F622 +😢 + +U+1F62D +😭 + +U+1F626 +😦 + +U+1F627 +😧 + +U+1F628 +😨 + +U+1F629 +😩 + +U+1F62C +😬 + +U+1F630 +😰 + +U+1F631 +😱 + +U+1F633 +😳 + +U+1F635 +😵 + +U+1F621 +😡 + +U+1F620 +😠 + +U+1F608 +😈 + +U+1F47F +👿 + +U+1F479 +👹 + +U+1F47A +👺 + +U+1F480 +💀 + +U+2620 +☠️ + +U+1F47B +👻 + +U+1F47D +👽 + +U+1F47E +👾 + +U+1F916 +🤖 + +U+1F4A9 +💩 + +U+1F63A +😺 + +U+1F638 +😸 + +U+1F639 +😹 + +U+1F63B +😻 + +U+1F63C +😼 + +U+1F63D +😽 + +U+1F640 +🙀 + +U+1F63F +😿 + +U+1F63E +😾 + +U+1F648 +🙈 + +U+1F649 +🙉 + +U+1F64A +🙊 + +U+1F466 +👦 + +U+1F466 U+1F3FB +👦🏻 + +U+1F466 U+1F3FC +👦🏼 + +U+1F466 U+1F3FD +👦🏽 + +U+1F466 U+1F3FE +👦🏾 + +U+1F466 U+1F3FF +👦🏿 + +U+1F467 +👧 + +U+1F467 U+1F3FB +👧🏻 + +U+1F467 U+1F3FC +👧🏼 + +U+1F467 U+1F3FD +👧🏽 + +U+1F467 U+1F3FE +👧🏾 + +U+1F467 U+1F3FF +👧🏿 + +U+1F468 +👨 + +U+1F468 U+1F3FB +👨🏻 + +U+1F468 U+1F3FC +👨🏼 + +U+1F468 U+1F3FD +👨🏽 + +U+1F468 U+1F3FE +👨🏾 + +U+1F468 U+1F3FF +👨🏿 + +U+1F469 +👩 + +U+1F469 U+1F3FB +👩🏻 + +U+1F469 U+1F3FC +👩🏼 + +U+1F469 U+1F3FD +👩🏽 + +U+1F469 U+1F3FE +👩🏾 + +U+1F469 U+1F3FF +👩🏿 + +U+1F474 +👴 + +U+1F474 U+1F3FB +👴🏻 + +U+1F474 U+1F3FC +👴🏼 + +U+1F474 U+1F3FD +👴🏽 + +U+1F474 U+1F3FE +👴🏾 + +U+1F474 U+1F3FF +👴🏿 + +U+1F475 +👵 + +U+1F475 U+1F3FB +👵🏻 + +U+1F475 U+1F3FC +👵🏼 + +U+1F475 U+1F3FD +👵🏽 + +U+1F475 U+1F3FE +👵🏾 + +U+1F475 U+1F3FF +👵🏿 + +U+1F476 +👶 + +U+1F476 U+1F3FB +👶🏻 + +U+1F476 U+1F3FC +👶🏼 + +U+1F476 U+1F3FD +👶🏽 + +U+1F476 U+1F3FE +👶🏾 + +U+1F476 U+1F3FF +👶🏿 + +U+1F471 +👱 + +U+1F471 U+1F3FB +👱🏻 + +U+1F471 U+1F3FC +👱🏼 + +U+1F471 U+1F3FD +👱🏽 + +U+1F471 U+1F3FE +👱🏾 + +U+1F471 U+1F3FF +👱🏿 + +U+1F46E +👮 + +U+1F46E U+1F3FB +👮🏻 + +U+1F46E U+1F3FC +👮🏼 + +U+1F46E U+1F3FD +👮🏽 + +U+1F46E U+1F3FE +👮🏾 + +U+1F46E U+1F3FF +👮🏿 + +U+1F472 +👲 + +U+1F472 U+1F3FB +👲🏻 + +U+1F472 U+1F3FC +👲🏼 + +U+1F472 U+1F3FD +👲🏽 + +U+1F472 U+1F3FE +👲🏾 + +U+1F472 U+1F3FF +👲🏿 + +U+1F473 +👳 + +U+1F473 U+1F3FB +👳🏻 + +U+1F473 U+1F3FC +👳🏼 + +U+1F473 U+1F3FD +👳🏽 + +U+1F473 U+1F3FE +👳🏾 + +U+1F473 U+1F3FF +👳🏿 + +U+1F477 +👷 + +U+1F477 U+1F3FB +👷🏻 + +U+1F477 U+1F3FC +👷🏼 + +U+1F477 U+1F3FD +👷🏽 + +U+1F477 U+1F3FE +👷🏾 + +U+1F477 U+1F3FF +👷🏿 + +U+26D1 +⛑️ + +U+1F478 +👸 + +U+1F478 U+1F3FB +👸🏻 + +U+1F478 U+1F3FC +👸🏼 + +U+1F478 U+1F3FD +👸🏽 + +U+1F478 U+1F3FE +👸🏾 + +U+1F478 U+1F3FF +👸🏿 + +U+1F482 +💂 + +U+1F482 U+1F3FB +💂🏻 + +U+1F482 U+1F3FC +💂🏼 + +U+1F482 U+1F3FD +💂🏽 + +U+1F482 U+1F3FE +💂🏾 + +U+1F482 U+1F3FF +💂🏿 + +U+1F575 +🕵️ + +U+1F575 U+1F3FB +🕵️🏻 + +U+1F575 U+1F3FC +🕵️🏼 + +U+1F575 U+1F3FD +🕵️🏽 + +U+1F575 U+1F3FE +🕵️🏾 + +U+1F575 U+1F3FF +🕵️🏿 + +U+1F385 +🎅 + +U+1F385 U+1F3FB +🎅🏻 + +U+1F385 U+1F3FC +🎅🏼 + +U+1F385 U+1F3FD +🎅🏽 + +U+1F385 U+1F3FE +🎅🏾 + +U+1F385 U+1F3FF +🎅🏿 + +U+1F470 +👰 + +U+1F470 U+1F3FB +👰🏻 + +U+1F470 U+1F3FC +👰🏼 + +U+1F470 U+1F3FD +👰🏽 + +U+1F470 U+1F3FE +👰🏾 + +U+1F470 U+1F3FF +👰🏿 + +U+1F47C +👼 + +U+1F47C U+1F3FB +👼🏻 + +U+1F47C U+1F3FC +👼🏼 + +U+1F47C U+1F3FD +👼🏽 + +U+1F47C U+1F3FE +👼🏾 + +U+1F47C U+1F3FF +👼🏿 + +U+1F486 +💆 + +U+1F486 U+1F3FB +💆🏻 + +U+1F486 U+1F3FC +💆🏼 + +U+1F486 U+1F3FD +💆🏽 + +U+1F486 U+1F3FE +💆🏾 + +U+1F486 U+1F3FF +💆🏿 + +U+1F487 +💇 + +U+1F487 U+1F3FB +💇🏻 + +U+1F487 U+1F3FC +💇🏼 + +U+1F487 U+1F3FD +💇🏽 + +U+1F487 U+1F3FE +💇🏾 + +U+1F487 U+1F3FF +💇🏿 + +U+1F64D +🙍 + +U+1F64D U+1F3FB +🙍🏻 + +U+1F64D U+1F3FC +🙍🏼 + +U+1F64D U+1F3FD +🙍🏽 + +U+1F64D U+1F3FE +🙍🏾 + +U+1F64D U+1F3FF +🙍🏿 + +U+1F64E +🙎 + +U+1F64E U+1F3FB +🙎🏻 + +U+1F64E U+1F3FC +🙎🏼 + +U+1F64E U+1F3FD +🙎🏽 + +U+1F64E U+1F3FE +🙎🏾 + +U+1F64E U+1F3FF +🙎🏿 + +U+1F645 +🙅 + +U+1F645 U+1F3FB +🙅🏻 + +U+1F645 U+1F3FC +🙅🏼 + +U+1F645 U+1F3FD +🙅🏽 + +U+1F645 U+1F3FE +🙅🏾 + +U+1F645 U+1F3FF +🙅🏿 + +U+1F646 +🙆 + +U+1F646 U+1F3FB +🙆🏻 + +U+1F646 U+1F3FC +🙆🏼 + +U+1F646 U+1F3FD +🙆🏽 + +U+1F646 U+1F3FE +🙆🏾 + +U+1F646 U+1F3FF +🙆🏿 + +U+1F481 +💁 + +U+1F481 U+1F3FB +💁🏻 + +U+1F481 U+1F3FC +💁🏼 + +U+1F481 U+1F3FD +💁🏽 + +U+1F481 U+1F3FE +💁🏾 + +U+1F481 U+1F3FF +💁🏿 + +U+1F64B +🙋 + +U+1F64B U+1F3FB +🙋🏻 + +U+1F64B U+1F3FC +🙋🏼 + +U+1F64B U+1F3FD +🙋🏽 + +U+1F64B U+1F3FE +🙋🏾 + +U+1F64B U+1F3FF +🙋🏿 + +U+1F647 +🙇 + +U+1F647 U+1F3FB +🙇🏻 + +U+1F647 U+1F3FC +🙇🏼 + +U+1F647 U+1F3FD +🙇🏽 + +U+1F647 U+1F3FE +🙇🏾 + +U+1F647 U+1F3FF +🙇🏿 + +U+1F64C +🙌 + +U+1F64C U+1F3FB +🙌🏻 + +U+1F64C U+1F3FC +🙌🏼 + +U+1F64C U+1F3FD +🙌🏽 + +U+1F64C U+1F3FE +🙌🏾 + +U+1F64C U+1F3FF +🙌🏿 + +U+1F64F +🙏 + +U+1F64F U+1F3FB +🙏🏻 + +U+1F64F U+1F3FC +🙏🏼 + +U+1F64F U+1F3FD +🙏🏽 + +U+1F64F U+1F3FE +🙏🏾 + +U+1F64F U+1F3FF +🙏🏿 + +U+1F5E3 +🗣️ + +U+1F464 +👤 + +U+1F465 +👥 + +U+1F6B6 +🚶 + +U+1F6B6 U+1F3FB +🚶🏻 + +U+1F6B6 U+1F3FC +🚶🏼 + +U+1F6B6 U+1F3FD +🚶🏽 + +U+1F6B6 U+1F3FE +🚶🏾 + +U+1F6B6 U+1F3FF +🚶🏿 + +U+1F3C3 +🏃 + +U+1F3C3 U+1F3FB +🏃🏻 + +U+1F3C3 U+1F3FC +🏃🏼 + +U+1F3C3 U+1F3FD +🏃🏽 + +U+1F3C3 U+1F3FE +🏃🏾 + +U+1F3C3 U+1F3FF +🏃🏿 + +U+1F46F +👯 + +U+1F483 +💃 + +U+1F483 U+1F3FB +💃🏻 + +U+1F483 U+1F3FC +💃🏼 + +U+1F483 U+1F3FD +💃🏽 + +U+1F483 U+1F3FE +💃🏾 + +U+1F483 U+1F3FF +💃🏿 + +U+1F574 +🕴️ + +U+1F46B +👫 + +U+1F46C +👬 + +U+1F46D +👭 + +U+1F48F +💏 + +U+1F469 U+200D U+2764 U+FE0F U+200D U+1F48B U+200D U+1F468 +👩‍❤️‍💋‍👨 + +U+1F468 U+200D U+2764 U+FE0F U+200D U+1F48B U+200D U+1F468 +👨‍❤️‍💋‍👨 + +U+1F469 U+200D U+2764 U+FE0F U+200D U+1F48B U+200D U+1F469 +👩‍❤️‍💋‍👩 + +U+1F491 +💑 + +U+1F469 U+200D U+2764 U+FE0F U+200D U+1F468 +👩‍❤️‍👨 + +U+1F468 U+200D U+2764 U+FE0F U+200D U+1F468 +👨‍❤️‍👨 + +U+1F469 U+200D U+2764 U+FE0F U+200D U+1F469 +👩‍❤️‍👩 + +U+1F46A +👪 + +U+1F468 U+200D U+1F469 U+200D U+1F466 +👨‍👩‍👦 + +U+1F468 U+200D U+1F469 U+200D U+1F467 +👨‍👩‍👧 + +U+1F468 U+200D U+1F469 U+200D U+1F467 U+200D U+1F466 +👨‍👩‍👧‍👦 + +U+1F468 U+200D U+1F469 U+200D U+1F466 U+200D U+1F466 +👨‍👩‍👦‍👦 + +U+1F468 U+200D U+1F469 U+200D U+1F467 U+200D U+1F467 +👨‍👩‍👧‍👧 + +U+1F468 U+200D U+1F468 U+200D U+1F466 +👨‍👨‍👦 + +U+1F468 U+200D U+1F468 U+200D U+1F467 +👨‍👨‍👧 + +U+1F468 U+200D U+1F468 U+200D U+1F467 U+200D U+1F466 +👨‍👨‍👧‍👦 + +U+1F468 U+200D U+1F468 U+200D U+1F466 U+200D U+1F466 +👨‍👨‍👦‍👦 + +U+1F468 U+200D U+1F468 U+200D U+1F467 U+200D U+1F467 +👨‍👨‍👧‍👧 + +U+1F469 U+200D U+1F469 U+200D U+1F466 +👩‍👩‍👦 + +U+1F469 U+200D U+1F469 U+200D U+1F467 +👩‍👩‍👧 + +U+1F469 U+200D U+1F469 U+200D U+1F467 U+200D U+1F466 +👩‍👩‍👧‍👦 + +U+1F469 U+200D U+1F469 U+200D U+1F466 U+200D U+1F466 +👩‍👩‍👦‍👦 + +U+1F469 U+200D U+1F469 U+200D U+1F467 U+200D U+1F467 +👩‍👩‍👧‍👧 + +U+1F3FB +🏻 + +U+1F3FC +🏼 + +U+1F3FD +🏽 + +U+1F3FE +🏾 + +U+1F3FF +🏿 + +U+1F4AA +💪 + +U+1F4AA U+1F3FB +💪🏻 + +U+1F4AA U+1F3FC +💪🏼 + +U+1F4AA U+1F3FD +💪🏽 + +U+1F4AA U+1F3FE +💪🏾 + +U+1F4AA U+1F3FF +💪🏿 + +U+1F448 +👈 + +U+1F448 U+1F3FB +👈🏻 + +U+1F448 U+1F3FC +👈🏼 + +U+1F448 U+1F3FD +👈🏽 + +U+1F448 U+1F3FE +👈🏾 + +U+1F448 U+1F3FF +👈🏿 + +U+1F449 +👉 + +U+1F449 U+1F3FB +👉🏻 + +U+1F449 U+1F3FC +👉🏼 + +U+1F449 U+1F3FD +👉🏽 + +U+1F449 U+1F3FE +👉🏾 + +U+1F449 U+1F3FF +👉🏿 + +U+261D +☝️ + +U+261D U+1F3FB +☝️🏻 + +U+261D U+1F3FC +☝️🏼 + +U+261D U+1F3FD +☝️🏽 + +U+261D U+1F3FE +☝️🏾 + +U+261D U+1F3FF +☝️🏿 + +U+1F446 +👆 + +U+1F446 U+1F3FB +👆🏻 + +U+1F446 U+1F3FC +👆🏼 + +U+1F446 U+1F3FD +👆🏽 + +U+1F446 U+1F3FE +👆🏾 + +U+1F446 U+1F3FF +👆🏿 + +U+1F595 +🖕 + +U+1F595 U+1F3FB +🖕🏻 + +U+1F595 U+1F3FC +🖕🏼 + +U+1F595 U+1F3FD +🖕🏽 + +U+1F595 U+1F3FE +🖕🏾 + +U+1F595 U+1F3FF +🖕🏿 + +U+1F447 +👇 + +U+1F447 U+1F3FB +👇🏻 + +U+1F447 U+1F3FC +👇🏼 + +U+1F447 U+1F3FD +👇🏽 + +U+1F447 U+1F3FE +👇🏾 + +U+1F447 U+1F3FF +👇🏿 + +U+270C +✌️ + +U+270C U+1F3FB +✌️🏻 + +U+270C U+1F3FC +✌️🏼 + +U+270C U+1F3FD +✌️🏽 + +U+270C U+1F3FE +✌️🏾 + +U+270C U+1F3FF +✌️🏿 + +U+1F596 +🖖 + +U+1F596 U+1F3FB +🖖🏻 + +U+1F596 U+1F3FC +🖖🏼 + +U+1F596 U+1F3FD +🖖🏽 + +U+1F596 U+1F3FE +🖖🏾 + +U+1F596 U+1F3FF +🖖🏿 + +U+1F918 +🤘 + +U+1F918 U+1F3FB +🤘🏻 + +U+1F918 U+1F3FC +🤘🏼 + +U+1F918 U+1F3FD +🤘🏽 + +U+1F918 U+1F3FE +🤘🏾 + +U+1F918 U+1F3FF +🤘🏿 + +U+1F590 +🖐️ + +U+1F590 U+1F3FB +🖐️🏻 + +U+1F590 U+1F3FC +🖐️🏼 + +U+1F590 U+1F3FD +🖐️🏽 + +U+1F590 U+1F3FE +🖐️🏾 + +U+1F590 U+1F3FF +🖐️🏿 + +U+270B +✋ + +U+270B U+1F3FB +✋🏻 + +U+270B U+1F3FC +✋🏼 + +U+270B U+1F3FD +✋🏽 + +U+270B U+1F3FE +✋🏾 + +U+270B U+1F3FF +✋🏿 + +U+1F44C +👌 + +U+1F44C U+1F3FB +👌🏻 + +U+1F44C U+1F3FC +👌🏼 + +U+1F44C U+1F3FD +👌🏽 + +U+1F44C U+1F3FE +👌🏾 + +U+1F44C U+1F3FF +👌🏿 + +U+1F44D +👍 + +U+1F44D U+1F3FB +👍🏻 + +U+1F44D U+1F3FC +👍🏼 + +U+1F44D U+1F3FD +👍🏽 + +U+1F44D U+1F3FE +👍🏾 + +U+1F44D U+1F3FF +👍🏿 + +U+1F44E +👎 + +U+1F44E U+1F3FB +👎🏻 + +U+1F44E U+1F3FC +👎🏼 + +U+1F44E U+1F3FD +👎🏽 + +U+1F44E U+1F3FE +👎🏾 + +U+1F44E U+1F3FF +👎🏿 + +U+270A +✊ + +U+270A U+1F3FB +✊🏻 + +U+270A U+1F3FC +✊🏼 + +U+270A U+1F3FD +✊🏽 + +U+270A U+1F3FE +✊🏾 + +U+270A U+1F3FF +✊🏿 + +U+1F44A +👊 + +U+1F44A U+1F3FB +👊🏻 + +U+1F44A U+1F3FC +👊🏼 + +U+1F44A U+1F3FD +👊🏽 + +U+1F44A U+1F3FE +👊🏾 + +U+1F44A U+1F3FF +👊🏿 + +U+1F44B +👋 + +U+1F44B U+1F3FB +👋🏻 + +U+1F44B U+1F3FC +👋🏼 + +U+1F44B U+1F3FD +👋🏽 + +U+1F44B U+1F3FE +👋🏾 + +U+1F44B U+1F3FF +👋🏿 + +U+1F44F +👏 + +U+1F44F U+1F3FB +👏🏻 + +U+1F44F U+1F3FC +👏🏼 + +U+1F44F U+1F3FD +👏🏽 + +U+1F44F U+1F3FE +👏🏾 + +U+1F44F U+1F3FF +👏🏿 + +U+1F450 +👐 + +U+1F450 U+1F3FB +👐🏻 + +U+1F450 U+1F3FC +👐🏼 + +U+1F450 U+1F3FD +👐🏽 + +U+1F450 U+1F3FE +👐🏾 + +U+1F450 U+1F3FF +👐🏿 + +U+270D +✍️ + +U+270D U+1F3FB +✍️🏻 + +U+270D U+1F3FC +✍️🏼 + +U+270D U+1F3FD +✍️🏽 + +U+270D U+1F3FE +✍️🏾 + +U+270D U+1F3FF +✍️🏿 + +U+1F485 +💅 + +U+1F485 U+1F3FB +💅🏻 + +U+1F485 U+1F3FC +💅🏼 + +U+1F485 U+1F3FD +💅🏽 + +U+1F485 U+1F3FE +💅🏾 + +U+1F485 U+1F3FF +💅🏿 + +U+1F442 +👂 + +U+1F442 U+1F3FB +👂🏻 + +U+1F442 U+1F3FC +👂🏼 + +U+1F442 U+1F3FD +👂🏽 + +U+1F442 U+1F3FE +👂🏾 + +U+1F442 U+1F3FF +👂🏿 + +U+1F443 +👃 + +U+1F443 U+1F3FB +👃🏻 + +U+1F443 U+1F3FC +👃🏼 + +U+1F443 U+1F3FD +👃🏽 + +U+1F443 U+1F3FE +👃🏾 + +U+1F443 U+1F3FF +👃🏿 + +U+1F463 +👣 + +U+1F440 +👀 + +U+1F441 +👁️ + +U+1F441 U+FE0F U+200D U+1F5E8 U+FE0F +👁️‍🗨 + +U+1F445 +👅 + +U+1F444 +👄 + +U+1F48B +💋 + +U+1F498 +💘 + +U+2764 +❤️ + +U+1F493 +💓 + +U+1F494 +💔 + +U+1F495 +💕 + +U+1F496 +💖 + +U+1F497 +💗 + +U+1F499 +💙 + +U+1F49A +💚 + +U+1F49B +💛 + +U+1F49C +💜 + +U+1F49D +💝 + +U+1F49E +💞 + +U+1F49F +💟 + +U+2763 +❣️ + +U+1F48C +💌 + +U+1F4A4 +💤 + +U+1F4A2 +💢 + +U+1F4A3 +💣 + +U+1F4A5 +💥 + +U+1F4A6 +💦 + +U+1F4A8 +💨 + +U+1F4AB +💫 + +U+1F4AC +💬 + +U+1F5E8 +🗨️ + +U+1F5EF +🗯️ + +U+1F4AD +💭 + +U+1F573 +🕳️ + +U+1F453 +👓 + +U+1F576 +🕶️ + +U+1F454 +👔 + +U+1F455 +👕 + +U+1F456 +👖 + +U+1F457 +👗 + +U+1F458 +👘 + +U+1F459 +👙 + +U+1F45A +👚 + +U+1F45B +👛 + +U+1F45C +👜 + +U+1F45D +👝 + +U+1F6CD +🛍️ + +U+1F392 +🎒 + +U+1F45E +👞 + +U+1F45F +👟 + +U+1F460 +👠 + +U+1F461 +👡 + +U+1F462 +👢 + +U+1F451 +👑 + +U+1F452 +👒 + +U+1F3A9 +🎩 + +U+1F393 +🎓 + +U+1F4FF +📿 + +U+1F484 +💄 + +U+1F48D +💍 + +U+1F48E +💎 + +U+1F435 +🐵 + +U+1F412 +🐒 + +U+1F436 +🐶 + +U+1F415 +🐕 + +U+1F429 +🐩 + +U+1F43A +🐺 + +U+1F431 +🐱 + +U+1F408 +🐈 + +U+1F981 +🦁 + +U+1F42F +🐯 + +U+1F405 +🐅 + +U+1F406 +🐆 + +U+1F434 +🐴 + +U+1F40E +🐎 + +U+1F984 +🦄 + +U+1F42E +🐮 + +U+1F402 +🐂 + +U+1F403 +🐃 + +U+1F404 +🐄 + +U+1F437 +🐷 + +U+1F416 +🐖 + +U+1F417 +🐗 + +U+1F43D +🐽 + +U+1F40F +🐏 + +U+1F411 +🐑 + +U+1F410 +🐐 + +U+1F42A +🐪 + +U+1F42B +🐫 + +U+1F418 +🐘 + +U+1F42D +🐭 + +U+1F401 +🐁 + +U+1F400 +🐀 + +U+1F439 +🐹 + +U+1F430 +🐰 + +U+1F407 +🐇 + +U+1F43F +🐿️ + +U+1F43B +🐻 + +U+1F428 +🐨 + +U+1F43C +🐼 + +U+1F43E +🐾 + +U+1F983 +🦃 + +U+1F414 +🐔 + +U+1F413 +🐓 + +U+1F423 +🐣 + +U+1F424 +🐤 + +U+1F425 +🐥 + +U+1F426 +🐦 + +U+1F427 +🐧 + +U+1F54A +🕊️ + +U+1F438 +🐸 + +U+1F40A +🐊 + +U+1F422 +🐢 + +U+1F40D +🐍 + +U+1F432 +🐲 + +U+1F409 +🐉 + +U+1F433 +🐳 + +U+1F40B +🐋 + +U+1F42C +🐬 + +U+1F41F +🐟 + +U+1F420 +🐠 + +U+1F421 +🐡 + +U+1F419 +🐙 + +U+1F41A +🐚 + +U+1F980 +🦀 + +U+1F40C +🐌 + +U+1F41B +🐛 + +U+1F41C +🐜 + +U+1F41D +🐝 + +U+1F41E +🐞 + +U+1F577 +🕷️ + +U+1F578 +🕸️ + +U+1F982 +🦂 + +U+1F490 +💐 + +U+1F338 +🌸 + +U+1F4AE +💮 + +U+1F3F5 +🏵️ + +U+1F339 +🌹 + +U+1F33A +🌺 + +U+1F33B +🌻 + +U+1F33C +🌼 + +U+1F337 +🌷 + +U+1F331 +🌱 + +U+1F332 +🌲 + +U+1F333 +🌳 + +U+1F334 +🌴 + +U+1F335 +🌵 + +U+1F33E +🌾 + +U+1F33F +🌿 + +U+2618 +☘️ + +U+1F340 +🍀 + +U+1F341 +🍁 + +U+1F342 +🍂 + +U+1F343 +🍃 + +U+1F347 +🍇 + +U+1F348 +🍈 + +U+1F349 +🍉 + +U+1F34A +🍊 + +U+1F34B +🍋 + +U+1F34C +🍌 + +U+1F34D +🍍 + +U+1F34E +🍎 + +U+1F34F +🍏 + +U+1F350 +🍐 + +U+1F351 +🍑 + +U+1F352 +🍒 + +U+1F353 +🍓 + +U+1F345 +🍅 + +U+1F346 +🍆 + +U+1F33D +🌽 + +U+1F336 +🌶️ + +U+1F344 +🍄 + +U+1F330 +🌰 + +U+1F35E +🍞 + +U+1F9C0 +🧀 + +U+1F356 +🍖 + +U+1F357 +🍗 + +U+1F354 +🍔 + +U+1F35F +🍟 + +U+1F355 +🍕 + +U+1F32D +🌭 + +U+1F32E +🌮 + +U+1F32F +🌯 + +U+1F373 +🍳 + +U+1F372 +🍲 + +U+1F37F +🍿 + +U+1F371 +🍱 + +U+1F358 +🍘 + +U+1F359 +🍙 + +U+1F35A +🍚 + +U+1F35B +🍛 + +U+1F35C +🍜 + +U+1F35D +🍝 + +U+1F360 +🍠 + +U+1F362 +🍢 + +U+1F363 +🍣 + +U+1F364 +🍤 + +U+1F365 +🍥 + +U+1F361 +🍡 + +U+1F366 +🍦 + +U+1F367 +🍧 + +U+1F368 +🍨 + +U+1F369 +🍩 + +U+1F36A +🍪 + +U+1F382 +🎂 + +U+1F370 +🍰 + +U+1F36B +🍫 + +U+1F36C +🍬 + +U+1F36D +🍭 + +U+1F36E +🍮 + +U+1F36F +🍯 + +U+1F37C +🍼 + +U+2615 +☕️ + +U+1F375 +🍵 + +U+1F376 +🍶 + +U+1F37E +🍾 + +U+1F377 +🍷 + +U+1F378 +🍸 + +U+1F379 +🍹 + +U+1F37A +🍺 + +U+1F37B +🍻 + +U+1F37D +🍽️ + +U+1F374 +🍴 + +U+1F52A +🔪 + +U+1F3FA +🏺 + +U+1F30D +🌍 + +U+1F30E +🌎 + +U+1F30F +🌏 + +U+1F310 +🌐 + +U+1F5FA +🗺️ + +U+1F5FE +🗾 + +U+1F3D4 +🏔️ + +U+26F0 +⛰️ + +U+1F30B +🌋 + +U+1F5FB +🗻 + +U+1F3D5 +🏕️ + +U+1F3D6 +🏖️ + +U+1F3DC +🏜️ + +U+1F3DD +🏝️ + +U+1F3DE +🏞️ + +U+1F3DF +🏟️ + +U+1F3DB +🏛️ + +U+1F3D7 +🏗️ + +U+1F3D8 +🏘️ + +U+1F3D9 +🏙️ + +U+1F3DA +🏚️ + +U+1F3E0 +🏠 + +U+1F3E1 +🏡 + +U+1F3E2 +🏢 + +U+1F3E3 +🏣 + +U+1F3E4 +🏤 + +U+1F3E5 +🏥 + +U+1F3E6 +🏦 + +U+1F3E8 +🏨 + +U+1F3E9 +🏩 + +U+1F3EA +🏪 + +U+1F3EB +🏫 + +U+1F3EC +🏬 + +U+1F3ED +🏭 + +U+1F3EF +🏯 + +U+1F3F0 +🏰 + +U+1F492 +💒 + +U+1F5FC +🗼 + +U+1F5FD +🗽 + +U+26EA +⛪️ + +U+1F54C +🕌 + +U+1F54D +🕍 + +U+26E9 +⛩️ + +U+1F54B +🕋 + +U+26F2 +⛲️ + +U+26FA +⛺️ + +U+1F301 +🌁 + +U+1F303 +🌃 + +U+1F304 +🌄 + +U+1F305 +🌅 + +U+1F306 +🌆 + +U+1F307 +🌇 + +U+1F309 +🌉 + +U+2668 +♨️ + +U+1F30C +🌌 + +U+1F3A0 +🎠 + +U+1F3A1 +🎡 + +U+1F3A2 +🎢 + +U+1F488 +💈 + +U+1F3AA +🎪 + +U+1F3AD +🎭 + +U+1F5BC +🖼️ + +U+1F3A8 +🎨 + +U+1F3B0 +🎰 + +U+1F682 +🚂 + +U+1F683 +🚃 + +U+1F684 +🚄 + +U+1F685 +🚅 + +U+1F686 +🚆 + +U+1F687 +🚇 + +U+1F688 +🚈 + +U+1F689 +🚉 + +U+1F68A +🚊 + +U+1F69D +🚝 + +U+1F69E +🚞 + +U+1F68B +🚋 + +U+1F68C +🚌 + +U+1F68D +🚍 + +U+1F68E +🚎 + +U+1F68F +🚏 + +U+1F690 +🚐 + +U+1F691 +🚑 + +U+1F692 +🚒 + +U+1F693 +🚓 + +U+1F694 +🚔 + +U+1F695 +🚕 + +U+1F696 +🚖 + +U+1F697 +🚗 + +U+1F698 +🚘 + +U+1F699 +🚙 + +U+1F69A +🚚 + +U+1F69B +🚛 + +U+1F69C +🚜 + +U+1F6B2 +🚲 + +U+26FD +⛽️ + +U+1F6E3 +🛣️ + +U+1F6E4 +🛤️ + +U+1F6A8 +🚨 + +U+1F6A5 +🚥 + +U+1F6A6 +🚦 + +U+1F6A7 +🚧 + +U+2693 +⚓️ + +U+26F5 +⛵️ + +U+1F6A3 +🚣 + +U+1F6A3 U+1F3FB +🚣🏻 + +U+1F6A3 U+1F3FC +🚣🏼 + +U+1F6A3 U+1F3FD +🚣🏽 + +U+1F6A3 U+1F3FE +🚣🏾 + +U+1F6A3 U+1F3FF +🚣🏿 + +U+1F6A4 +🚤 + +U+1F6F3 +🛳️ + +U+26F4 +⛴️ + +U+1F6E5 +🛥️ + +U+1F6A2 +🚢 + +U+2708 +✈️ + +U+1F6E9 +🛩️ + +U+1F6EB +🛫 + +U+1F6EC +🛬 + +U+1F4BA +💺 + +U+1F681 +🚁 + +U+1F69F +🚟 + +U+1F6A0 +🚠 + +U+1F6A1 +🚡 + +U+1F680 +🚀 + +U+1F6F0 +🛰️ + +U+1F6CE +🛎️ + +U+1F6AA +🚪 + +U+1F6CC +🛌 + +U+1F6CF +🛏️ + +U+1F6CB +🛋️ + +U+1F6BD +🚽 + +U+1F6BF +🚿 + +U+1F6C0 +🛀 + +U+1F6C0 U+1F3FB +🛀🏻 + +U+1F6C0 U+1F3FC +🛀🏼 + +U+1F6C0 U+1F3FD +🛀🏽 + +U+1F6C0 U+1F3FE +🛀🏾 + +U+1F6C0 U+1F3FF +🛀🏿 + +U+1F6C1 +🛁 + +U+231B +⌛️ + +U+23F3 +⏳ + +U+231A +⌚️ + +U+23F0 +⏰ + +U+23F1 +⏱️ + +U+23F2 +⏲️ + +U+1F570 +🕰️ + +U+1F55B +🕛 + +U+1F567 +🕧 + +U+1F550 +🕐 + +U+1F55C +🕜 + +U+1F551 +🕑 + +U+1F55D +🕝 + +U+1F552 +🕒 + +U+1F55E +🕞 + +U+1F553 +🕓 + +U+1F55F +🕟 + +U+1F554 +🕔 + +U+1F560 +🕠 + +U+1F555 +🕕 + +U+1F561 +🕡 + +U+1F556 +🕖 + +U+1F562 +🕢 + +U+1F557 +🕗 + +U+1F563 +🕣 + +U+1F558 +🕘 + +U+1F564 +🕤 + +U+1F559 +🕙 + +U+1F565 +🕥 + +U+1F55A +🕚 + +U+1F566 +🕦 + +U+1F311 +🌑 + +U+1F312 +🌒 + +U+1F313 +🌓 + +U+1F314 +🌔 + +U+1F315 +🌕 + +U+1F316 +🌖 + +U+1F317 +🌗 + +U+1F318 +🌘 + +U+1F319 +🌙 + +U+1F31A +🌚 + +U+1F31B +🌛 + +U+1F31C +🌜 + +U+1F321 +🌡️ + +U+2600 +☀️ + +U+1F31D +🌝 + +U+1F31E +🌞 + +U+2B50 +⭐️ + +U+1F31F +🌟 + +U+1F320 +🌠 + +U+2601 +☁️ + +U+26C5 +⛅️ + +U+26C8 +⛈️ + +U+1F324 +🌤️ + +U+1F325 +🌥️ + +U+1F326 +🌦️ + +U+1F327 +🌧️ + +U+1F328 +🌨️ + +U+1F329 +🌩️ + +U+1F32A +🌪️ + +U+1F32B +🌫️ + +U+1F32C +🌬️ + +U+1F300 +🌀 + +U+1F308 +🌈 + +U+1F302 +🌂 + +U+2602 +☂️ + +U+2614 +☔️ + +U+26F1 +⛱️ + +U+26A1 +⚡️ + +U+2744 +❄️ + +U+2603 +☃️ + +U+26C4 +⛄️ + +U+2604 +☄️ + +U+1F525 +🔥 + +U+1F4A7 +💧 + +U+1F30A +🌊 + +U+1F383 +🎃 + +U+1F384 +🎄 + +U+1F386 +🎆 + +U+1F387 +🎇 + +U+2728 +✨ + +U+1F388 +🎈 + +U+1F389 +🎉 + +U+1F38A +🎊 + +U+1F38B +🎋 + +U+1F38D +🎍 + +U+1F38E +🎎 + +U+1F38F +🎏 + +U+1F390 +🎐 + +U+1F391 +🎑 + +U+1F380 +🎀 + +U+1F381 +🎁 + +U+1F397 +🎗️ + +U+1F39F +🎟️ + +U+1F3AB +🎫 + +U+1F396 +🎖️ + +U+1F3C6 +🏆 + +U+1F3C5 +🏅 + +U+26BD +⚽️ + +U+26BE +⚾️ + +U+1F3C0 +🏀 + +U+1F3D0 +🏐 + +U+1F3C8 +🏈 + +U+1F3C9 +🏉 + +U+1F3BE +🎾 + +U+1F3B1 +🎱 + +U+1F3B3 +🎳 + +U+1F3CF +🏏 + +U+1F3D1 +🏑 + +U+1F3D2 +🏒 + +U+1F3D3 +🏓 + +U+1F3F8 +🏸 + +U+26F3 +⛳️ + +U+1F3CC +🏌️ + +U+26F8 +⛸️ + +U+1F3A3 +🎣 + +U+1F3BD +🎽 + +U+1F3BF +🎿 + +U+26F7 +⛷️ + +U+1F3C2 +🏂 + +U+1F3C4 +🏄 + +U+1F3C4 U+1F3FB +🏄🏻 + +U+1F3C4 U+1F3FC +🏄🏼 + +U+1F3C4 U+1F3FD +🏄🏽 + +U+1F3C4 U+1F3FE +🏄🏾 + +U+1F3C4 U+1F3FF +🏄🏿 + +U+1F3C7 +🏇 + +U+1F3CA +🏊 + +U+1F3CA U+1F3FB +🏊🏻 + +U+1F3CA U+1F3FC +🏊🏼 + +U+1F3CA U+1F3FD +🏊🏽 + +U+1F3CA U+1F3FE +🏊🏾 + +U+1F3CA U+1F3FF +🏊🏿 + +U+26F9 +⛹️ + +U+26F9 U+1F3FB +⛹️🏻 + +U+26F9 U+1F3FC +⛹️🏼 + +U+26F9 U+1F3FD +⛹️🏽 + +U+26F9 U+1F3FE +⛹️🏾 + +U+26F9 U+1F3FF +⛹️🏿 + +U+1F3CB +🏋️ + +U+1F3CB U+1F3FB +🏋️🏻 + +U+1F3CB U+1F3FC +🏋️🏼 + +U+1F3CB U+1F3FD +🏋️🏽 + +U+1F3CB U+1F3FE +🏋️🏾 + +U+1F3CB U+1F3FF +🏋️🏿 + +U+1F6B4 +🚴 + +U+1F6B4 U+1F3FB +🚴🏻 + +U+1F6B4 U+1F3FC +🚴🏼 + +U+1F6B4 U+1F3FD +🚴🏽 + +U+1F6B4 U+1F3FE +🚴🏾 + +U+1F6B4 U+1F3FF +🚴🏿 + +U+1F6B5 +🚵 + +U+1F6B5 U+1F3FB +🚵🏻 + +U+1F6B5 U+1F3FC +🚵🏼 + +U+1F6B5 U+1F3FD +🚵🏽 + +U+1F6B5 U+1F3FE +🚵🏾 + +U+1F6B5 U+1F3FF +🚵🏿 + +U+1F3CE +🏎️ + +U+1F3CD +🏍️ + +U+1F3AF +🎯 + +U+1F3AE +🎮 + +U+1F579 +🕹️ + +U+1F3B2 +🎲 + +U+2660 +♠️ + +U+2665 +♥️ + +U+2666 +♦️ + +U+2663 +♣️ + +U+1F0CF +🃏 + +U+1F004 +🀄️ + +U+1F3B4 +🎴 + +U+1F507 +🔇 + +U+1F508 +🔈 + +U+1F509 +🔉 + +U+1F50A +🔊 + +U+1F4E2 +📢 + +U+1F4E3 +📣 + +U+1F4EF +📯 + +U+1F514 +🔔 + +U+1F515 +🔕 + +U+1F3BC +🎼 + +U+1F3B5 +🎵 + +U+1F3B6 +🎶 + +U+1F399 +🎙️ + +U+1F39A +🎚️ + +U+1F39B +🎛️ + +U+1F3A4 +🎤 + +U+1F3A7 +🎧 + +U+1F4FB +📻 + +U+1F3B7 +🎷 + +U+1F3B8 +🎸 + +U+1F3B9 +🎹 + +U+1F3BA +🎺 + +U+1F3BB +🎻 + +U+1F4F1 +📱 + +U+1F4F2 +📲 + +U+260E +☎️ + +U+1F4DE +📞 + +U+1F4DF +📟 + +U+1F4E0 +📠 + +U+1F50B +🔋 + +U+1F50C +🔌 + +U+1F4BB +💻 + +U+1F5A5 +🖥️ + +U+1F5A8 +🖨️ + +U+2328 +⌨️ + +U+1F5B1 +🖱️ + +U+1F5B2 +🖲️ + +U+1F4BD +💽 + +U+1F4BE +💾 + +U+1F4BF +💿 + +U+1F4C0 +📀 + +U+1F3A5 +🎥 + +U+1F39E +🎞️ + +U+1F4FD +📽️ + +U+1F3AC +🎬 + +U+1F4FA +📺 + +U+1F4F7 +📷 + +U+1F4F8 +📸 + +U+1F4F9 +📹 + +U+1F4FC +📼 + +U+1F50D +🔍 + +U+1F50E +🔎 + +U+1F52C +🔬 + +U+1F52D +🔭 + +U+1F4E1 +📡 + +U+1F56F +🕯️ + +U+1F4A1 +💡 + +U+1F526 +🔦 + +U+1F3EE +🏮 + +U+1F4D4 +📔 + +U+1F4D5 +📕 + +U+1F4D6 +📖 + +U+1F4D7 +📗 + +U+1F4D8 +📘 + +U+1F4D9 +📙 + +U+1F4DA +📚 + +U+1F4D3 +📓 + +U+1F4D2 +📒 + +U+1F4C3 +📃 + +U+1F4DC +📜 + +U+1F4C4 +📄 + +U+1F4F0 +📰 + +U+1F5DE +🗞️ + +U+1F4D1 +📑 + +U+1F516 +🔖 + +U+1F3F7 +🏷️ + +U+1F4B0 +💰 + +U+1F4B4 +💴 + +U+1F4B5 +💵 + +U+1F4B6 +💶 + +U+1F4B7 +💷 + +U+1F4B8 +💸 + +U+1F4B3 +💳 + +U+1F4B9 +💹 + +U+1F4B1 +💱 + +U+1F4B2 +💲 + +U+2709 +✉️ + +U+1F4E7 +📧 + +U+1F4E8 +📨 + +U+1F4E9 +📩 + +U+1F4E4 +📤 + +U+1F4E5 +📥 + +U+1F4E6 +📦 + +U+1F4EB +📫 + +U+1F4EA +📪 + +U+1F4EC +📬 + +U+1F4ED +📭 + +U+1F4EE +📮 + +U+1F5F3 +🗳️ + +U+270F +✏️ + +U+2712 +✒️ + +U+1F58B +🖋️ + +U+1F58A +🖊️ + +U+1F58C +🖌️ + +U+1F58D +🖍️ + +U+1F4DD +📝 + +U+1F4BC +💼 + +U+1F4C1 +📁 + +U+1F4C2 +📂 + +U+1F5C2 +🗂️ + +U+1F4C5 +📅 + +U+1F4C6 +📆 + +U+1F5D2 +🗒️ + +U+1F5D3 +🗓️ + +U+1F4C7 +📇 + +U+1F4C8 +📈 + +U+1F4C9 +📉 + +U+1F4CA +📊 + +U+1F4CB +📋 + +U+1F4CC +📌 + +U+1F4CD +📍 + +U+1F4CE +📎 + +U+1F587 +🖇️ + +U+1F4CF +📏 + +U+1F4D0 +📐 + +U+2702 +✂️ + +U+1F5C3 +🗃️ + +U+1F5C4 +🗄️ + +U+1F5D1 +🗑️ + +U+1F512 +🔒 + +U+1F513 +🔓 + +U+1F50F +🔏 + +U+1F510 +🔐 + +U+1F511 +🔑 + +U+1F5DD +🗝️ + +U+1F528 +🔨 + +U+26CF +⛏️ + +U+2692 +⚒️ + +U+1F6E0 +🛠️ + +U+1F5E1 +🗡️ + +U+2694 +⚔️ + +U+1F52B +🔫 + +U+1F3F9 +🏹 + +U+1F6E1 +🛡️ + +U+1F527 +🔧 + +U+1F529 +🔩 + +U+2699 +⚙️ + +U+1F5DC +🗜️ + +U+2697 +⚗️ + +U+2696 +⚖️ + +U+1F517 +🔗 + +U+26D3 +⛓️ + +U+1F489 +💉 + +U+1F48A +💊 + +U+1F6AC +🚬 + +U+26B0 +⚰️ + +U+26B1 +⚱️ + +U+1F5FF +🗿 + +U+1F6E2 +🛢️ + +U+1F52E +🔮 + +U+1F3E7 +🏧 + +U+1F6AE +🚮 + +U+1F6B0 +🚰 + +U+267F +♿️ + +U+1F6B9 +🚹 + +U+1F6BA +🚺 + +U+1F6BB +🚻 + +U+1F6BC +🚼 + +U+1F6BE +🚾 + +U+1F6C2 +🛂 + +U+1F6C3 +🛃 + +U+1F6C4 +🛄 + +U+1F6C5 +🛅 + +U+26A0 +⚠️ + +U+1F6B8 +🚸 + +U+26D4 +⛔️ + +U+1F6AB +🚫 + +U+1F6B3 +🚳 + +U+1F6AD +🚭 + +U+1F6AF +🚯 + +U+1F6B1 +🚱 + +U+1F6B7 +🚷 + +U+1F4F5 +📵 + +U+1F51E +🔞 + +U+2622 +☢️ + +U+2623 +☣️ + +U+2B06 +⬆️ + +U+2197 +↗️ + +U+27A1 +➡️ + +U+2198 +↘️ + +U+2B07 +⬇️ + +U+2199 +↙️ + +U+2B05 +⬅️ + +U+2196 +↖️ + +U+2195 +↕️ + +U+2194 +↔️ + +U+21A9 +↩️ + +U+21AA +↪️ + +U+2934 +⤴️ + +U+2935 +⤵️ + +U+1F503 +🔃 + +U+1F504 +🔄 + +U+1F519 +🔙 + +U+1F51A +🔚 + +U+1F51B +🔛 + +U+1F51C +🔜 + +U+1F51D +🔝 + +U+1F6D0 +🛐 + +U+269B +⚛️ + +U+1F549 +🕉️ + +U+2721 +✡️ + +U+2638 +☸️ + +U+262F +☯️ + +U+271D +✝️ + +U+2626 +☦️ + +U+262A +☪️ + +U+262E +☮️ + +U+1F54E +🕎 + +U+1F52F +🔯 + +U+267B +♻️ + +U+1F4DB +📛 + +U+269C +⚜️ + +U+1F530 +🔰 + +U+1F531 +🔱 + +U+2B55 +⭕️ + +U+2705 +✅ + +U+2611 +☑️ + +U+2714 +✔️ + +U+2716 +✖️ + +U+274C +❌ + +U+274E +❎ + +U+2795 +➕ + +U+2796 +➖ + +U+2797 +➗ + +U+27B0 +➰ + +U+27BF +➿ + +U+303D +〽️ + +U+2733 +✳️ + +U+2734 +✴️ + +U+2747 +❇️ + +U+203C +‼️ + +U+2049 +⁉️ + +U+2753 +❓ + +U+2754 +❔ + +U+2755 +❕ + +U+2757 +❗️ + +U+3030 +〰️ + +U+00A9 +©️ + +U+00AE +®️ + +U+2122 +™️ + +U+2648 +♈️ + +U+2649 +♉️ + +U+264A +♊️ + +U+264B +♋️ + +U+264C +♌️ + +U+264D +♍️ + +U+264E +♎️ + +U+264F +♏️ + +U+2650 +♐️ + +U+2651 +♑️ + +U+2652 +♒️ + +U+2653 +♓️ + +U+26CE +⛎ + +U+1F500 +🔀 + +U+1F501 +🔁 + +U+1F502 +🔂 + +U+25B6 +▶️ + +U+23E9 +⏩ + +U+23ED +⏭️ + +U+23EF +⏯️ + +U+25C0 +◀️ + +U+23EA +⏪ + +U+23EE +⏮️ + +U+1F53C +🔼 + +U+23EB +⏫ + +U+1F53D +🔽 + +U+23EC +⏬ + +U+23F8 +⏸️ + +U+23F9 +⏹️ + +U+23FA +⏺️ + +U+23CF +⏏️ + +U+1F3A6 +🎦 + +U+1F505 +🔅 + +U+1F506 +🔆 + +U+1F4F6 +📶 + +U+1F4F3 +📳 + +U+1F4F4 +📴 + +U+0023 U+FE0F U+20E3 +#️⃣ + +U+002A U+FE0F U+20E3 +*️⃣ + +U+0030 U+FE0F U+20E3 +0️⃣ + +U+0031 U+FE0F U+20E3 +1️⃣ + +U+0032 U+FE0F U+20E3 +2️⃣ + +U+0033 U+FE0F U+20E3 +3️⃣ + +U+0034 U+FE0F U+20E3 +4️⃣ + +U+0035 U+FE0F U+20E3 +5️⃣ + +U+0036 U+FE0F U+20E3 +6️⃣ + +U+0037 U+FE0F U+20E3 +7️⃣ + +U+0038 U+FE0F U+20E3 +8️⃣ + +U+0039 U+FE0F U+20E3 +9️⃣ + +U+1F51F +🔟 + +U+1F4AF +💯 + +U+1F520 +🔠 + +U+1F521 +🔡 + +U+1F522 +🔢 + +U+1F523 +🔣 + +U+1F524 +🔤 + +U+1F170 +🅰️ + +U+1F18E +🆎 + +U+1F171 +🅱️ + +U+1F191 +🆑 + +U+1F192 +🆒 + +U+1F193 +🆓 + +U+2139 +ℹ️ + +U+1F194 +🆔 + +U+24C2 +Ⓜ️ + +U+1F195 +🆕 + +U+1F196 +🆖 + +U+1F17E +🅾️ + +U+1F197 +🆗 + +U+1F17F +🅿️ + +U+1F198 +🆘 + +U+1F199 +🆙 + +U+1F19A +🆚 + +U+1F201 +🈁 + +U+1F202 +🈂️ + +U+1F237 +🈷️ + +U+1F236 +🈶 + +U+1F22F +🈯️ + +U+1F250 +🉐 + +U+1F239 +🈹 + +U+1F21A +🈚️ + +U+1F232 +🈲 + +U+1F251 +🉑 + +U+1F238 +🈸 + +U+1F234 +🈴 + +U+1F233 +🈳 + +U+3297 +㊗️ + +U+3299 +㊙️ + +U+1F23A +🈺 + +U+1F235 +🈵 + +U+25AA +▪️ + +U+25AB +▫️ + +U+25FB +◻️ + +U+25FC +◼️ + +U+25FD +◽️ + +U+25FE +◾️ + +U+2B1B +⬛️ + +U+2B1C +⬜️ + +U+1F536 +🔶 + +U+1F537 +🔷 + +U+1F538 +🔸 + +U+1F539 +🔹 + +U+1F53A +🔺 + +U+1F53B +🔻 + +U+1F4A0 +💠 + +U+1F518 +🔘 + +U+1F532 +🔲 + +U+1F533 +🔳 + +U+26AA +⚪️ + +U+26AB +⚫️ + +U+1F534 +🔴 + +U+1F535 +🔵 + +U+1F3C1 +🏁 + +U+1F6A9 +🚩 + +U+1F38C +🎌 + +U+1F3F4 +🏴 + +U+1F3F3 +🏳️ + +U+1F1E6 U+1F1E8 +🇦🇨 + +U+1F1E6 U+1F1E9 +🇦🇩 + +U+1F1E6 U+1F1EA +🇦🇪 + +U+1F1E6 U+1F1EB +🇦🇫 + +U+1F1E6 U+1F1EC +🇦🇬 + +U+1F1E6 U+1F1EE +🇦🇮 + +U+1F1E6 U+1F1F1 +🇦🇱 + +U+1F1E6 U+1F1F2 +🇦🇲 + +U+1F1E6 U+1F1F4 +🇦🇴 + +U+1F1E6 U+1F1F6 +🇦🇶 + +U+1F1E6 U+1F1F7 +🇦🇷 + +U+1F1E6 U+1F1F8 +🇦🇸 + +U+1F1E6 U+1F1F9 +🇦🇹 + +U+1F1E6 U+1F1FA +🇦🇺 + +U+1F1E6 U+1F1FC +🇦🇼 + +U+1F1E6 U+1F1FD +🇦🇽 + +U+1F1E6 U+1F1FF +🇦🇿 + +U+1F1E7 U+1F1E6 +🇧🇦 + +U+1F1E7 U+1F1E7 +🇧🇧 + +U+1F1E7 U+1F1E9 +🇧🇩 + +U+1F1E7 U+1F1EA +🇧🇪 + +U+1F1E7 U+1F1EB +🇧🇫 + +U+1F1E7 U+1F1EC +🇧🇬 + +U+1F1E7 U+1F1ED +🇧🇭 + +U+1F1E7 U+1F1EE +🇧🇮 + +U+1F1E7 U+1F1EF +🇧🇯 + +U+1F1E7 U+1F1F1 +🇧🇱 + +U+1F1E7 U+1F1F2 +🇧🇲 + +U+1F1E7 U+1F1F3 +🇧🇳 + +U+1F1E7 U+1F1F4 +🇧🇴 + +U+1F1E7 U+1F1F6 +🇧🇶 + +U+1F1E7 U+1F1F7 +🇧🇷 + +U+1F1E7 U+1F1F8 +🇧🇸 + +U+1F1E7 U+1F1F9 +🇧🇹 + +U+1F1E7 U+1F1FB +🇧🇻 + +U+1F1E7 U+1F1FC +🇧🇼 + +U+1F1E7 U+1F1FE +🇧🇾 + +U+1F1E7 U+1F1FF +🇧🇿 + +U+1F1E8 U+1F1E6 +🇨🇦 + +U+1F1E8 U+1F1E8 +🇨🇨 + +U+1F1E8 U+1F1E9 +🇨🇩 + +U+1F1E8 U+1F1EB +🇨🇫 + +U+1F1E8 U+1F1EC +🇨🇬 + +U+1F1E8 U+1F1ED +🇨🇭 + +U+1F1E8 U+1F1EE +🇨🇮 + +U+1F1E8 U+1F1F0 +🇨🇰 + +U+1F1E8 U+1F1F1 +🇨🇱 + +U+1F1E8 U+1F1F2 +🇨🇲 + +U+1F1E8 U+1F1F3 +🇨🇳 + +U+1F1E8 U+1F1F4 +🇨🇴 + +U+1F1E8 U+1F1F5 +🇨🇵 + +U+1F1E8 U+1F1F7 +🇨🇷 + +U+1F1E8 U+1F1FA +🇨🇺 + +U+1F1E8 U+1F1FB +🇨🇻 + +U+1F1E8 U+1F1FC +🇨🇼 + +U+1F1E8 U+1F1FD +🇨🇽 + +U+1F1E8 U+1F1FE +🇨🇾 + +U+1F1E8 U+1F1FF +🇨🇿 + +U+1F1E9 U+1F1EA +🇩🇪 + +U+1F1E9 U+1F1EC +🇩🇬 + +U+1F1E9 U+1F1EF +🇩🇯 + +U+1F1E9 U+1F1F0 +🇩🇰 + +U+1F1E9 U+1F1F2 +🇩🇲 + +U+1F1E9 U+1F1F4 +🇩🇴 + +U+1F1E9 U+1F1FF +🇩🇿 + +U+1F1EA U+1F1E6 +🇪🇦 + +U+1F1EA U+1F1E8 +🇪🇨 + +U+1F1EA U+1F1EA +🇪🇪 + +U+1F1EA U+1F1EC +🇪🇬 + +U+1F1EA U+1F1ED +🇪🇭 + +U+1F1EA U+1F1F7 +🇪🇷 + +U+1F1EA U+1F1F8 +🇪🇸 + +U+1F1EA U+1F1F9 +🇪🇹 + +U+1F1EA U+1F1FA +🇪🇺 + +U+1F1EB U+1F1EE +🇫🇮 + +U+1F1EB U+1F1EF +🇫🇯 + +U+1F1EB U+1F1F0 +🇫🇰 + +U+1F1EB U+1F1F2 +🇫🇲 + +U+1F1EB U+1F1F4 +🇫🇴 + +U+1F1EB U+1F1F7 +🇫🇷 + +U+1F1EC U+1F1E6 +🇬🇦 + +U+1F1EC U+1F1E7 +🇬🇧 + +U+1F1EC U+1F1E9 +🇬🇩 + +U+1F1EC U+1F1EA +🇬🇪 + +U+1F1EC U+1F1EB +🇬🇫 + +U+1F1EC U+1F1EC +🇬🇬 + +U+1F1EC U+1F1ED +🇬🇭 + +U+1F1EC U+1F1EE +🇬🇮 + +U+1F1EC U+1F1F1 +🇬🇱 + +U+1F1EC U+1F1F2 +🇬🇲 + +U+1F1EC U+1F1F3 +🇬🇳 + +U+1F1EC U+1F1F5 +🇬🇵 + +U+1F1EC U+1F1F6 +🇬🇶 + +U+1F1EC U+1F1F7 +🇬🇷 + +U+1F1EC U+1F1F8 +🇬🇸 + +U+1F1EC U+1F1F9 +🇬🇹 + +U+1F1EC U+1F1FA +🇬🇺 + +U+1F1EC U+1F1FC +🇬🇼 + +U+1F1EC U+1F1FE +🇬🇾 + +U+1F1ED U+1F1F0 +🇭🇰 + +U+1F1ED U+1F1F2 +🇭🇲 + +U+1F1ED U+1F1F3 +🇭🇳 + +U+1F1ED U+1F1F7 +🇭🇷 + +U+1F1ED U+1F1F9 +🇭🇹 + +U+1F1ED U+1F1FA +🇭🇺 + +U+1F1EE U+1F1E8 +🇮🇨 + +U+1F1EE U+1F1E9 +🇮🇩 + +U+1F1EE U+1F1EA +🇮🇪 + +U+1F1EE U+1F1F1 +🇮🇱 + +U+1F1EE U+1F1F2 +🇮🇲 + +U+1F1EE U+1F1F3 +🇮🇳 + +U+1F1EE U+1F1F4 +🇮🇴 + +U+1F1EE U+1F1F6 +🇮🇶 + +U+1F1EE U+1F1F7 +🇮🇷 + +U+1F1EE U+1F1F8 +🇮🇸 + +U+1F1EE U+1F1F9 +🇮🇹 + +U+1F1EF U+1F1EA +🇯🇪 + +U+1F1EF U+1F1F2 +🇯🇲 + +U+1F1EF U+1F1F4 +🇯🇴 + +U+1F1EF U+1F1F5 +🇯🇵 + +U+1F1F0 U+1F1EA +🇰🇪 + +U+1F1F0 U+1F1EC +🇰🇬 + +U+1F1F0 U+1F1ED +🇰🇭 + +U+1F1F0 U+1F1EE +🇰🇮 + +U+1F1F0 U+1F1F2 +🇰🇲 + +U+1F1F0 U+1F1F3 +🇰🇳 + +U+1F1F0 U+1F1F5 +🇰🇵 + +U+1F1F0 U+1F1F7 +🇰🇷 + +U+1F1F0 U+1F1FC +🇰🇼 + +U+1F1F0 U+1F1FE +🇰🇾 + +U+1F1F0 U+1F1FF +🇰🇿 + +U+1F1F1 U+1F1E6 +🇱🇦 + +U+1F1F1 U+1F1E7 +🇱🇧 + +U+1F1F1 U+1F1E8 +🇱🇨 + +U+1F1F1 U+1F1EE +🇱🇮 + +U+1F1F1 U+1F1F0 +🇱🇰 + +U+1F1F1 U+1F1F7 +🇱🇷 + +U+1F1F1 U+1F1F8 +🇱🇸 + +U+1F1F1 U+1F1F9 +🇱🇹 + +U+1F1F1 U+1F1FA +🇱🇺 + +U+1F1F1 U+1F1FB +🇱🇻 + +U+1F1F1 U+1F1FE +🇱🇾 + +U+1F1F2 U+1F1E6 +🇲🇦 + +U+1F1F2 U+1F1E8 +🇲🇨 + +U+1F1F2 U+1F1E9 +🇲🇩 + +U+1F1F2 U+1F1EA +🇲🇪 + +U+1F1F2 U+1F1EB +🇲🇫 + +U+1F1F2 U+1F1EC +🇲🇬 + +U+1F1F2 U+1F1ED +🇲🇭 + +U+1F1F2 U+1F1F0 +🇲🇰 + +U+1F1F2 U+1F1F1 +🇲🇱 + +U+1F1F2 U+1F1F2 +🇲🇲 + +U+1F1F2 U+1F1F3 +🇲🇳 + +U+1F1F2 U+1F1F4 +🇲🇴 + +U+1F1F2 U+1F1F5 +🇲🇵 + +U+1F1F2 U+1F1F6 +🇲🇶 + +U+1F1F2 U+1F1F7 +🇲🇷 + +U+1F1F2 U+1F1F8 +🇲🇸 + +U+1F1F2 U+1F1F9 +🇲🇹 + +U+1F1F2 U+1F1FA +🇲🇺 + +U+1F1F2 U+1F1FB +🇲🇻 + +U+1F1F2 U+1F1FC +🇲🇼 + +U+1F1F2 U+1F1FD +🇲🇽 + +U+1F1F2 U+1F1FE +🇲🇾 + +U+1F1F2 U+1F1FF +🇲🇿 + +U+1F1F3 U+1F1E6 +🇳🇦 + +U+1F1F3 U+1F1E8 +🇳🇨 + +U+1F1F3 U+1F1EA +🇳🇪 + +U+1F1F3 U+1F1EB +🇳🇫 + +U+1F1F3 U+1F1EC +🇳🇬 + +U+1F1F3 U+1F1EE +🇳🇮 + +U+1F1F3 U+1F1F1 +🇳🇱 + +U+1F1F3 U+1F1F4 +🇳🇴 + +U+1F1F3 U+1F1F5 +🇳🇵 + +U+1F1F3 U+1F1F7 +🇳🇷 + +U+1F1F3 U+1F1FA +🇳🇺 + +U+1F1F3 U+1F1FF +🇳🇿 + +U+1F1F4 U+1F1F2 +🇴🇲 + +U+1F1F5 U+1F1E6 +🇵🇦 + +U+1F1F5 U+1F1EA +🇵🇪 + +U+1F1F5 U+1F1EB +🇵🇫 + +U+1F1F5 U+1F1EC +🇵🇬 + +U+1F1F5 U+1F1ED +🇵🇭 + +U+1F1F5 U+1F1F0 +🇵🇰 + +U+1F1F5 U+1F1F1 +🇵🇱 + +U+1F1F5 U+1F1F2 +🇵🇲 + +U+1F1F5 U+1F1F3 +🇵🇳 + +U+1F1F5 U+1F1F7 +🇵🇷 + +U+1F1F5 U+1F1F8 +🇵🇸 + +U+1F1F5 U+1F1F9 +🇵🇹 + +U+1F1F5 U+1F1FC +🇵🇼 + +U+1F1F5 U+1F1FE +🇵🇾 + +U+1F1F6 U+1F1E6 +🇶🇦 + +U+1F1F7 U+1F1EA +🇷🇪 + +U+1F1F7 U+1F1F4 +🇷🇴 + +U+1F1F7 U+1F1F8 +🇷🇸 + +U+1F1F7 U+1F1FA +🇷🇺 + +U+1F1F7 U+1F1FC +🇷🇼 + +U+1F1F8 U+1F1E6 +🇸🇦 + +U+1F1F8 U+1F1E7 +🇸🇧 + +U+1F1F8 U+1F1E8 +🇸🇨 + +U+1F1F8 U+1F1E9 +🇸🇩 + +U+1F1F8 U+1F1EA +🇸🇪 + +U+1F1F8 U+1F1EC +🇸🇬 + +U+1F1F8 U+1F1ED +🇸🇭 + +U+1F1F8 U+1F1EE +🇸🇮 + +U+1F1F8 U+1F1EF +🇸🇯 + +U+1F1F8 U+1F1F0 +🇸🇰 + +U+1F1F8 U+1F1F1 +🇸🇱 + +U+1F1F8 U+1F1F2 +🇸🇲 + +U+1F1F8 U+1F1F3 +🇸🇳 + +U+1F1F8 U+1F1F4 +🇸🇴 + +U+1F1F8 U+1F1F7 +🇸🇷 + +U+1F1F8 U+1F1F8 +🇸🇸 + +U+1F1F8 U+1F1F9 +🇸🇹 + +U+1F1F8 U+1F1FB +🇸🇻 + +U+1F1F8 U+1F1FD +🇸🇽 + +U+1F1F8 U+1F1FE +🇸🇾 + +U+1F1F8 U+1F1FF +🇸🇿 + +U+1F1F9 U+1F1E6 +🇹🇦 + +U+1F1F9 U+1F1E8 +🇹🇨 + +U+1F1F9 U+1F1E9 +🇹🇩 + +U+1F1F9 U+1F1EB +🇹🇫 + +U+1F1F9 U+1F1EC +🇹🇬 + +U+1F1F9 U+1F1ED +🇹🇭 + +U+1F1F9 U+1F1EF +🇹🇯 + +U+1F1F9 U+1F1F0 +🇹🇰 + +U+1F1F9 U+1F1F1 +🇹🇱 + +U+1F1F9 U+1F1F2 +🇹🇲 + +U+1F1F9 U+1F1F3 +🇹🇳 + +U+1F1F9 U+1F1F4 +🇹🇴 + +U+1F1F9 U+1F1F7 +🇹🇷 + +U+1F1F9 U+1F1F9 +🇹🇹 + +U+1F1F9 U+1F1FB +🇹🇻 + +U+1F1F9 U+1F1FC +🇹🇼 + +U+1F1F9 U+1F1FF +🇹🇿 + +U+1F1FA U+1F1E6 +🇺🇦 + +U+1F1FA U+1F1EC +🇺🇬 + +U+1F1FA U+1F1F2 +🇺🇲 + +U+1F1FA U+1F1F8 +🇺🇸 + +U+1F1FA U+1F1FE +🇺🇾 + +U+1F1FA U+1F1FF +🇺🇿 + +U+1F1FB U+1F1E6 +🇻🇦 + +U+1F1FB U+1F1E8 +🇻🇨 + +U+1F1FB U+1F1EA +🇻🇪 + +U+1F1FB U+1F1EC +🇻🇬 + +U+1F1FB U+1F1EE +🇻🇮 + +U+1F1FB U+1F1F3 +🇻🇳 + +U+1F1FB U+1F1FA +🇻🇺 + +U+1F1FC U+1F1EB +🇼🇫 + +U+1F1FC U+1F1F8 +🇼🇸 + +U+1F1FD U+1F1F0 +🇽🇰 + +U+1F1FE U+1F1EA +🇾🇪 + +U+1F1FE U+1F1F9 +🇾🇹 + +U+1F1FF U+1F1E6 +🇿🇦 + +U+1F1FF U+1F1F2 +🇿🇲 + +U+1F1FF U+1F1FC +🇿🇼 diff -Nru kemoticons-5.18.0/themes/EmojiOne/emoticons.xml kemoticons-5.44.0/themes/EmojiOne/emoticons.xml --- kemoticons-5.18.0/themes/EmojiOne/emoticons.xml 1970-01-01 00:00:00.000000000 +0000 +++ kemoticons-5.44.0/themes/EmojiOne/emoticons.xml 2018-03-03 09:52:23.000000000 +0000 @@ -0,0 +1,7002 @@ + + + + :hash: + + + :asterisk: + :keycap_asterisk: + + + :zero: + + + :one: + + + :two: + + + :three: + + + :four: + + + :five: + + + :six: + + + :seven: + + + :eight: + + + :nine: + + + © + :copyright: + + + ® + :registered: + + + 🀄 + :mahjong: + + + 🃏 + :black_joker: + + + 🅰 + :a: + + + 🅱 + :b: + + + 🅾 + :o2: + + + 🅿 + :parking: + + + 🆎 + :ab: + + + 🆑 + :cl: + + + 🆒 + :cool: + + + 🆓 + :free: + + + 🆔 + :id: + + + 🆕 + :new: + + + 🆖 + :ng: + + + 🆗 + :ok: + + + 🆘 + :sos: + + + 🆙 + :up: + + + 🆚 + :vs: + + + 🇦🇨 + :flag_ac: + :ac: + + + 🇦🇩 + :flag_ad: + :ad: + + + 🇦🇪 + :flag_ae: + :ae: + + + 🇦🇫 + :flag_af: + :af: + + + 🇦🇬 + :flag_ag: + :ag: + + + 🇦🇮 + :flag_ai: + :ai: + + + 🇦🇱 + :flag_al: + :al: + + + 🇦🇲 + :flag_am: + :am: + + + 🇦🇴 + :flag_ao: + :ao: + + + 🇦🇶 + :flag_aq: + :aq: + + + 🇦🇷 + :flag_ar: + :ar: + + + 🇦🇸 + :flag_as: + :as: + + + 🇦🇹 + :flag_at: + :at: + + + 🇦🇺 + :flag_au: + :au: + + + 🇦🇼 + :flag_aw: + :aw: + + + 🇦🇽 + :flag_ax: + :ax: + + + 🇦🇿 + :flag_az: + :az: + + + 🇧🇦 + :flag_ba: + :ba: + + + 🇧🇧 + :flag_bb: + :bb: + + + 🇧🇩 + :flag_bd: + :bd: + + + 🇧🇪 + :flag_be: + :be: + + + 🇧🇫 + :flag_bf: + :bf: + + + 🇧🇬 + :flag_bg: + :bg: + + + 🇧🇭 + :flag_bh: + :bh: + + + 🇧🇮 + :flag_bi: + :bi: + + + 🇧🇯 + :flag_bj: + :bj: + + + 🇧🇱 + :flag_bl: + :bl: + + + 🇧🇲 + :flag_bm: + :bm: + + + 🇧🇳 + :flag_bn: + :bn: + + + 🇧🇴 + :flag_bo: + :bo: + + + 🇧🇶 + :flag_bq: + :bq: + + + 🇧🇷 + :flag_br: + :br: + + + 🇧🇸 + :flag_bs: + :bs: + + + 🇧🇹 + :flag_bt: + :bt: + + + 🇧🇻 + :flag_bv: + :bv: + + + 🇧🇼 + :flag_bw: + :bw: + + + 🇧🇾 + :flag_by: + :by: + + + 🇧🇿 + :flag_bz: + :bz: + + + 🇨🇦 + :flag_ca: + :ca: + + + 🇨🇨 + :flag_cc: + :cc: + + + 🇨🇩 + :flag_cd: + :congo: + + + 🇨🇫 + :flag_cf: + :cf: + + + 🇨🇬 + :flag_cg: + :cg: + + + 🇨🇭 + :flag_ch: + :ch: + + + 🇨🇮 + :flag_ci: + :ci: + + + 🇨🇰 + :flag_ck: + :ck: + + + 🇨🇱 + :flag_cl: + :chile: + + + 🇨🇲 + :flag_cm: + :cm: + + + 🇨🇳 + :flag_cn: + :cn: + + + 🇨🇴 + :flag_co: + :co: + + + 🇨🇵 + :flag_cp: + :cp: + + + 🇨🇷 + :flag_cr: + :cr: + + + 🇨🇺 + :flag_cu: + :cu: + + + 🇨🇻 + :flag_cv: + :cv: + + + 🇨🇼 + :flag_cw: + :cw: + + + 🇨🇽 + :flag_cx: + :cx: + + + 🇨🇾 + :flag_cy: + :cy: + + + 🇨🇿 + :flag_cz: + :cz: + + + 🇩🇪 + :flag_de: + :de: + + + 🇩🇬 + :flag_dg: + :dg: + + + 🇩🇯 + :flag_dj: + :dj: + + + 🇩🇰 + :flag_dk: + :dk: + + + 🇩🇲 + :flag_dm: + :dm: + + + 🇩🇴 + :flag_do: + :do: + + + 🇩🇿 + :flag_dz: + :dz: + + + 🇪🇦 + :flag_ea: + :ea: + + + 🇪🇨 + :flag_ec: + :ec: + + + 🇪🇪 + :flag_ee: + :ee: + + + 🇪🇬 + :flag_eg: + :eg: + + + 🇪🇭 + :flag_eh: + :eh: + + + 🇪🇷 + :flag_er: + :er: + + + 🇪🇸 + :flag_es: + :es: + + + 🇪🇹 + :flag_et: + :et: + + + 🇪🇺 + :flag_eu: + :eu: + + + 🇫🇮 + :flag_fi: + :fi: + + + 🇫🇯 + :flag_fj: + :fj: + + + 🇫🇰 + :flag_fk: + :fk: + + + 🇫🇲 + :flag_fm: + :fm: + + + 🇫🇴 + :flag_fo: + :fo: + + + 🇫🇷 + :flag_fr: + :fr: + + + 🇬🇦 + :flag_ga: + :ga: + + + 🇬🇧 + :flag_gb: + :gb: + + + 🇬🇩 + :flag_gd: + :gd: + + + 🇬🇪 + :flag_ge: + :ge: + + + 🇬🇫 + :flag_gf: + :gf: + + + 🇬🇬 + :flag_gg: + :gg: + + + 🇬🇭 + :flag_gh: + :gh: + + + 🇬🇮 + :flag_gi: + :gi: + + + 🇬🇱 + :flag_gl: + :gl: + + + 🇬🇲 + :flag_gm: + :gm: + + + 🇬🇳 + :flag_gn: + :gn: + + + 🇬🇵 + :flag_gp: + :gp: + + + 🇬🇶 + :flag_gq: + :gq: + + + 🇬🇷 + :flag_gr: + :gr: + + + 🇬🇸 + :flag_gs: + :gs: + + + 🇬🇹 + :flag_gt: + :gt: + + + 🇬🇺 + :flag_gu: + :gu: + + + 🇬🇼 + :flag_gw: + :gw: + + + 🇬🇾 + :flag_gy: + :gy: + + + 🇭🇰 + :flag_hk: + :hk: + + + 🇭🇲 + :flag_hm: + :hm: + + + 🇭🇳 + :flag_hn: + :hn: + + + 🇭🇷 + :flag_hr: + :hr: + + + 🇭🇹 + :flag_ht: + :ht: + + + 🇭🇺 + :flag_hu: + :hu: + + + 🇮🇨 + :flag_ic: + :ic: + + + 🇮🇩 + :flag_id: + :indonesia: + + + 🇮🇪 + :flag_ie: + :ie: + + + 🇮🇱 + :flag_il: + :il: + + + 🇮🇲 + :flag_im: + :im: + + + 🇮🇳 + :flag_in: + :in: + + + 🇮🇴 + :flag_io: + :io: + + + 🇮🇶 + :flag_iq: + :iq: + + + 🇮🇷 + :flag_ir: + :ir: + + + 🇮🇸 + :flag_is: + :is: + + + 🇮🇹 + :flag_it: + :it: + + + 🇯🇪 + :flag_je: + :je: + + + 🇯🇲 + :flag_jm: + :jm: + + + 🇯🇴 + :flag_jo: + :jo: + + + 🇯🇵 + :flag_jp: + :jp: + + + 🇰🇪 + :flag_ke: + :ke: + + + 🇰🇬 + :flag_kg: + :kg: + + + 🇰🇭 + :flag_kh: + :kh: + + + 🇰🇮 + :flag_ki: + :ki: + + + 🇰🇲 + :flag_km: + :km: + + + 🇰🇳 + :flag_kn: + :kn: + + + 🇰🇵 + :flag_kp: + :kp: + + + 🇰🇷 + :flag_kr: + :kr: + + + 🇰🇼 + :flag_kw: + :kw: + + + 🇰🇾 + :flag_ky: + :ky: + + + 🇰🇿 + :flag_kz: + :kz: + + + 🇱🇦 + :flag_la: + :la: + + + 🇱🇧 + :flag_lb: + :lb: + + + 🇱🇨 + :flag_lc: + :lc: + + + 🇱🇮 + :flag_li: + :li: + + + 🇱🇰 + :flag_lk: + :lk: + + + 🇱🇷 + :flag_lr: + :lr: + + + 🇱🇸 + :flag_ls: + :ls: + + + 🇱🇹 + :flag_lt: + :lt: + + + 🇱🇺 + :flag_lu: + :lu: + + + 🇱🇻 + :flag_lv: + :lv: + + + 🇱🇾 + :flag_ly: + :ly: + + + 🇲🇦 + :flag_ma: + :ma: + + + 🇲🇨 + :flag_mc: + :mc: + + + 🇲🇩 + :flag_md: + :md: + + + 🇲🇪 + :flag_me: + :me: + + + 🇲🇫 + :flag_mf: + :mf: + + + 🇲🇬 + :flag_mg: + :mg: + + + 🇲🇭 + :flag_mh: + :mh: + + + 🇲🇰 + :flag_mk: + :mk: + + + 🇲🇱 + :flag_ml: + :ml: + + + 🇲🇲 + :flag_mm: + :mm: + + + 🇲🇳 + :flag_mn: + :mn: + + + 🇲🇴 + :flag_mo: + :mo: + + + 🇲🇵 + :flag_mp: + :mp: + + + 🇲🇶 + :flag_mq: + :mq: + + + 🇲🇷 + :flag_mr: + :mr: + + + 🇲🇸 + :flag_ms: + :ms: + + + 🇲🇹 + :flag_mt: + :mt: + + + 🇲🇺 + :flag_mu: + :mu: + + + 🇲🇻 + :flag_mv: + :mv: + + + 🇲🇼 + :flag_mw: + :mw: + + + 🇲🇽 + :flag_mx: + :mx: + + + 🇲🇾 + :flag_my: + :my: + + + 🇲🇿 + :flag_mz: + :mz: + + + 🇳🇦 + :flag_na: + :na: + + + 🇳🇨 + :flag_nc: + :nc: + + + 🇳🇪 + :flag_ne: + :ne: + + + 🇳🇫 + :flag_nf: + :nf: + + + 🇳🇬 + :flag_ng: + :nigeria: + + + 🇳🇮 + :flag_ni: + :ni: + + + 🇳🇱 + :flag_nl: + :nl: + + + 🇳🇴 + :flag_no: + :no: + + + 🇳🇵 + :flag_np: + :np: + + + 🇳🇷 + :flag_nr: + :nr: + + + 🇳🇺 + :flag_nu: + :nu: + + + 🇳🇿 + :flag_nz: + :nz: + + + 🇴🇲 + :flag_om: + :om: + + + 🇵🇦 + :flag_pa: + :pa: + + + 🇵🇪 + :flag_pe: + :pe: + + + 🇵🇫 + :flag_pf: + :pf: + + + 🇵🇬 + :flag_pg: + :pg: + + + 🇵🇭 + :flag_ph: + :ph: + + + 🇵🇰 + :flag_pk: + :pk: + + + 🇵🇱 + :flag_pl: + :pl: + + + 🇵🇲 + :flag_pm: + :pm: + + + 🇵🇳 + :flag_pn: + :pn: + + + 🇵🇷 + :flag_pr: + :pr: + + + 🇵🇸 + :flag_ps: + :ps: + + + 🇵🇹 + :flag_pt: + :pt: + + + 🇵🇼 + :flag_pw: + :pw: + + + 🇵🇾 + :flag_py: + :py: + + + 🇶🇦 + :flag_qa: + :qa: + + + 🇷🇪 + :flag_re: + :re: + + + 🇷🇴 + :flag_ro: + :ro: + + + 🇷🇸 + :flag_rs: + :rs: + + + 🇷🇺 + :flag_ru: + :ru: + + + 🇷🇼 + :flag_rw: + :rw: + + + 🇸🇦 + :flag_sa: + :saudiarabia: + :saudi: + + + 🇸🇧 + :flag_sb: + :sb: + + + 🇸🇨 + :flag_sc: + :sc: + + + 🇸🇩 + :flag_sd: + :sd: + + + 🇸🇪 + :flag_se: + :se: + + + 🇸🇬 + :flag_sg: + :sg: + + + 🇸🇭 + :flag_sh: + :sh: + + + 🇸🇮 + :flag_si: + :si: + + + 🇸🇯 + :flag_sj: + :sj: + + + 🇸🇰 + :flag_sk: + :sk: + + + 🇸🇱 + :flag_sl: + :sl: + + + 🇸🇲 + :flag_sm: + :sm: + + + 🇸🇳 + :flag_sn: + :sn: + + + 🇸🇴 + :flag_so: + :so: + + + 🇸🇷 + :flag_sr: + :sr: + + + 🇸🇸 + :flag_ss: + :ss: + + + 🇸🇹 + :flag_st: + :st: + + + 🇸🇻 + :flag_sv: + :sv: + + + 🇸🇽 + :flag_sx: + :sx: + + + 🇸🇾 + :flag_sy: + :sy: + + + 🇸🇿 + :flag_sz: + :sz: + + + 🇹🇦 + :flag_ta: + :ta: + + + 🇹🇨 + :flag_tc: + :tc: + + + 🇹🇩 + :flag_td: + :td: + + + 🇹🇫 + :flag_tf: + :tf: + + + 🇹🇬 + :flag_tg: + :tg: + + + 🇹🇭 + :flag_th: + :th: + + + 🇹🇯 + :flag_tj: + :tj: + + + 🇹🇰 + :flag_tk: + :tk: + + + 🇹🇱 + :flag_tl: + :tl: + + + 🇹🇲 + :flag_tm: + :turkmenistan: + + + 🇹🇳 + :flag_tn: + :tn: + + + 🇹🇴 + :flag_to: + :to: + + + 🇹🇷 + :flag_tr: + :tr: + + + 🇹🇹 + :flag_tt: + :tt: + + + 🇹🇻 + :flag_tv: + :tuvalu: + + + 🇹🇼 + :flag_tw: + :tw: + + + 🇹🇿 + :flag_tz: + :tz: + + + 🇺🇦 + :flag_ua: + :ua: + + + 🇺🇬 + :flag_ug: + :ug: + + + 🇺🇲 + :flag_um: + :um: + + + 🇺🇸 + :flag_us: + :us: + + + 🇺🇾 + :flag_uy: + :uy: + + + 🇺🇿 + :flag_uz: + :uz: + + + 🇻🇦 + :flag_va: + :va: + + + 🇻🇨 + :flag_vc: + :vc: + + + 🇻🇪 + :flag_ve: + :ve: + + + 🇻🇬 + :flag_vg: + :vg: + + + 🇻🇮 + :flag_vi: + :vi: + + + 🇻🇳 + :flag_vn: + :vn: + + + 🇻🇺 + :flag_vu: + :vu: + + + 🇼🇫 + :flag_wf: + :wf: + + + 🇼🇸 + :flag_ws: + :ws: + + + 🇽🇰 + :flag_xk: + :xk: + + + 🇾🇪 + :flag_ye: + :ye: + + + 🇾🇹 + :flag_yt: + :yt: + + + 🇿🇦 + :flag_za: + :za: + + + 🇿🇲 + :flag_zm: + :zm: + + + 🇿🇼 + :flag_zw: + :zw: + + + 🈁 + :koko: + + + 🈂 + :sa: + + + 🈚 + :u7121: + + + 🈯 + :u6307: + + + 🈲 + :u7981: + + + 🈳 + :u7a7a: + + + 🈴 + :u5408: + + + 🈵 + :u6e80: + + + 🈶 + :u6709: + + + 🈷 + :u6708: + + + 🈸 + :u7533: + + + 🈹 + :u5272: + + + 🈺 + :u55b6: + + + 🉐 + :ideograph_advantage: + + + 🉑 + :accept: + + + 🌀 + :cyclone: + + + 🌁 + :foggy: + + + 🌂 + :closed_umbrella: + + + 🌃 + :night_with_stars: + + + 🌄 + :sunrise_over_mountains: + + + 🌅 + :sunrise: + + + 🌆 + :city_dusk: + + + 🌇 + :city_sunset: + :city_sunrise: + + + 🌈 + :rainbow: + + + 🌉 + :bridge_at_night: + + + 🌊 + :ocean: + + + 🌋 + :volcano: + + + 🌌 + :milky_way: + + + 🌍 + :earth_africa: + + + 🌎 + :earth_americas: + + + 🌏 + :earth_asia: + + + 🌐 + :globe_with_meridians: + + + 🌑 + :new_moon: + + + 🌒 + :waxing_crescent_moon: + + + 🌓 + :first_quarter_moon: + + + 🌔 + :waxing_gibbous_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: + + + 🌝 + :full_moon_with_face: + + + 🌞 + :sun_with_face: + + + 🌟 + :star2: + + + 🌠 + :stars: + + + 🌡 + :thermometer: + + + 🌤 + :white_sun_small_cloud: + :white_sun_with_small_cloud: + + + 🌥 + :white_sun_cloud: + :white_sun_behind_cloud: + + + 🌦 + :white_sun_rain_cloud: + :white_sun_behind_cloud_with_rain: + + + 🌧 + :cloud_rain: + :cloud_with_rain: + + + 🌨 + :cloud_snow: + :cloud_with_snow: + + + 🌩 + :cloud_lightning: + :cloud_with_lightning: + + + 🌪 + :cloud_tornado: + :cloud_with_tornado: + + + 🌫 + :fog: + + + 🌬 + :wind_blowing_face: + + + 🌭 + :hotdog: + :hot_dog: + + + 🌮 + :taco: + + + 🌯 + :burrito: + + + 🌰 + :chestnut: + + + 🌱 + :seedling: + + + 🌲 + :evergreen_tree: + + + 🌳 + :deciduous_tree: + + + 🌴 + :palm_tree: + + + 🌵 + :cactus: + + + 🌶 + :hot_pepper: + + + 🌷 + :tulip: + + + 🌸 + :cherry_blossom: + + + 🌹 + :rose: + + + 🌺 + :hibiscus: + + + 🌻 + :sunflower: + + + 🌼 + :blossom: + + + 🌽 + :corn: + + + 🌾 + :ear_of_rice: + + + 🌿 + :herb: + + + 🍀 + :four_leaf_clover: + + + 🍁 + :maple_leaf: + + + 🍂 + :fallen_leaf: + + + 🍃 + :leaves: + + + 🍄 + :mushroom: + + + 🍅 + :tomato: + + + 🍆 + :eggplant: + + + 🍇 + :grapes: + + + 🍈 + :melon: + + + 🍉 + :watermelon: + + + 🍊 + :tangerine: + + + 🍋 + :lemon: + + + 🍌 + :banana: + + + 🍍 + :pineapple: + + + 🍎 + :apple: + + + 🍏 + :green_apple: + + + 🍐 + :pear: + + + 🍑 + :peach: + + + 🍒 + :cherries: + + + 🍓 + :strawberry: + + + 🍔 + :hamburger: + + + 🍕 + :pizza: + + + 🍖 + :meat_on_bone: + + + 🍗 + :poultry_leg: + + + 🍘 + :rice_cracker: + + + 🍙 + :rice_ball: + + + 🍚 + :rice: + + + 🍛 + :curry: + + + 🍜 + :ramen: + + + 🍝 + :spaghetti: + + + 🍞 + :bread: + + + 🍟 + :fries: + + + 🍠 + :sweet_potato: + + + 🍡 + :dango: + + + 🍢 + :oden: + + + 🍣 + :sushi: + + + 🍤 + :fried_shrimp: + + + 🍥 + :fish_cake: + + + 🍦 + :icecream: + + + 🍧 + :shaved_ice: + + + 🍨 + :ice_cream: + + + 🍩 + :doughnut: + + + 🍪 + :cookie: + + + 🍫 + :chocolate_bar: + + + 🍬 + :candy: + + + 🍭 + :lollipop: + + + 🍮 + :custard: + + + 🍯 + :honey_pot: + + + 🍰 + :cake: + + + 🍱 + :bento: + + + 🍲 + :stew: + + + 🍳 + :egg: + + + 🍴 + :fork_and_knife: + + + 🍵 + :tea: + + + 🍶 + :sake: + + + 🍷 + :wine_glass: + + + 🍸 + :cocktail: + (D) + (d) + + + 🍹 + :tropical_drink: + + + 🍺 + :beer: + (B) + (b) + + + 🍻 + :beers: + + + 🍼 + :baby_bottle: + + + 🍽 + :fork_knife_plate: + :fork_and_knife_with_plate: + + + 🍾 + :champagne: + :bottle_with_popping_cork: + + + 🍿 + :popcorn: + + + 🎀 + :ribbon: + + + 🎁 + :gift: + + + 🎂 + :birthday: + (^) + + + 🎃 + :jack_o_lantern: + + + 🎄 + :christmas_tree: + + + 🎅🏻 + :santa_tone1: + + + 🎅🏼 + :santa_tone2: + + + 🎅🏽 + :santa_tone3: + + + 🎅🏾 + :santa_tone4: + + + 🎅🏿 + :santa_tone5: + + + 🎅 + :santa: + + + 🎆 + :fireworks: + + + 🎇 + :sparkler: + + + 🎈 + :balloon: + + + 🎉 + :tada: + + + 🎊 + :confetti_ball: + + + 🎋 + :tanabata_tree: + + + 🎌 + :crossed_flags: + + + 🎍 + :bamboo: + + + 🎎 + :dolls: + + + 🎏 + :flags: + + + 🎐 + :wind_chime: + + + 🎑 + :rice_scene: + + + 🎒 + :school_satchel: + + + 🎓 + :mortar_board: + + + 🎖 + :military_medal: + + + 🎗 + :reminder_ribbon: + + + 🎙 + :microphone2: + :studio_microphone: + + + 🎚 + :level_slider: + + + 🎛 + :control_knobs: + + + 🎞 + :film_frames: + + + 🎟 + :tickets: + :admission_tickets: + + + 🎠 + :carousel_horse: + + + 🎡 + :ferris_wheel: + + + 🎢 + :roller_coaster: + + + 🎣 + :fishing_pole_and_fish: + + + 🎤 + :microphone: + + + 🎥 + :movie_camera: + + + 🎦 + :cinema: + + + 🎧 + :headphones: + + + 🎨 + :art: + + + 🎩 + :tophat: + + + 🎪 + :circus_tent: + + + 🎫 + :ticket: + + + 🎬 + :clapper: + + + 🎭 + :performing_arts: + + + 🎮 + :video_game: + + + 🎯 + :dart: + + + 🎰 + :slot_machine: + + + 🎱 + :8ball: + + + 🎲 + :game_die: + + + 🎳 + :bowling: + + + 🎴 + :flower_playing_cards: + + + 🎵 + :musical_note: + + + 🎶 + :notes: + + + 🎷 + :saxophone: + + + 🎸 + :guitar: + + + 🎹 + :musical_keyboard: + + + 🎺 + :trumpet: + + + 🎻 + :violin: + + + 🎼 + :musical_score: + + + 🎽 + :running_shirt_with_sash: + + + 🎾 + :tennis: + + + 🎿 + :ski: + + + 🏀 + :basketball: + + + 🏁 + :checkered_flag: + + + 🏂 + :snowboarder: + + + 🏃🏻 + :runner_tone1: + + + 🏃🏼 + :runner_tone2: + + + 🏃🏽 + :runner_tone3: + + + 🏃🏾 + :runner_tone4: + + + 🏃🏿 + :runner_tone5: + + + 🏃 + :runner: + + + 🏄🏻 + :surfer_tone1: + + + 🏄🏼 + :surfer_tone2: + + + 🏄🏽 + :surfer_tone3: + + + 🏄🏾 + :surfer_tone4: + + + 🏄🏿 + :surfer_tone5: + + + 🏄 + :surfer: + + + 🏅 + :medal: + :sports_medal: + + + 🏆 + :trophy: + + + 🏇🏻 + :horse_racing_tone1: + + + 🏇🏼 + :horse_racing_tone2: + + + 🏇🏽 + :horse_racing_tone3: + + + 🏇🏾 + :horse_racing_tone4: + + + 🏇🏿 + :horse_racing_tone5: + + + 🏇 + :horse_racing: + + + 🏈 + :football: + + + 🏉 + :rugby_football: + + + 🏊🏻 + :swimmer_tone1: + + + 🏊🏼 + :swimmer_tone2: + + + 🏊🏽 + :swimmer_tone3: + + + 🏊🏾 + :swimmer_tone4: + + + 🏊🏿 + :swimmer_tone5: + + + 🏊 + :swimmer: + + + 🏋🏻 + :lifter_tone1: + :weight_lifter_tone1: + + + 🏋🏼 + :lifter_tone2: + :weight_lifter_tone2: + + + 🏋🏽 + :lifter_tone3: + :weight_lifter_tone3: + + + 🏋🏾 + :lifter_tone4: + :weight_lifter_tone4: + + + 🏋🏿 + :lifter_tone5: + :weight_lifter_tone5: + + + 🏋 + :lifter: + :weight_lifter: + + + 🏌 + :golfer: + + + 🏍 + :motorcycle: + :racing_motorcycle: + + + 🏎 + :race_car: + :racing_car: + + + 🏏 + :cricket: + :cricket_bat_ball: + + + 🏐 + :volleyball: + + + 🏑 + :field_hockey: + + + 🏒 + :hockey: + + + 🏓 + :ping_pong: + :table_tennis: + + + 🏔 + :mountain_snow: + :snow_capped_mountain: + + + 🏕 + :camping: + + + 🏖 + :beach: + :beach_with_umbrella: + + + 🏗 + :construction_site: + :building_construction: + + + 🏘 + :homes: + :house_buildings: + + + 🏙 + :cityscape: + + + 🏚 + :house_abandoned: + :derelict_house_building: + + + 🏛 + :classical_building: + + + 🏜 + :desert: + + + 🏝 + :island: + :desert_island: + + + 🏞 + :park: + :national_park: + + + 🏟 + :stadium: + + + 🏠 + :house: + + + 🏡 + :house_with_garden: + + + 🏢 + :office: + + + 🏣 + :post_office: + + + 🏤 + :european_post_office: + + + 🏥 + :hospital: + + + 🏦 + :bank: + + + 🏧 + :atm: + + + 🏨 + :hotel: + + + 🏩 + :love_hotel: + + + 🏪 + :convenience_store: + + + 🏫 + :school: + + + 🏬 + :department_store: + + + 🏭 + :factory: + + + 🏮 + :izakaya_lantern: + + + 🏯 + :japanese_castle: + + + 🏰 + :european_castle: + + + 🏳 + :flag_white: + :waving_white_flag: + + + 🏴 + :flag_black: + :waving_black_flag: + + + 🏵 + :rosette: + + + 🏷 + :label: + + + 🏸 + :badminton: + + + 🏹 + :bow_and_arrow: + :archery: + + + 🏺 + :amphora: + + + 🏻 + :tone1: + + + 🏼 + :tone2: + + + 🏽 + :tone3: + + + 🏾 + :tone4: + + + 🏿 + :tone5: + + + 🐀 + :rat: + + + 🐁 + :mouse2: + + + 🐂 + :ox: + + + 🐃 + :water_buffalo: + + + 🐄 + :cow2: + + + 🐅 + :tiger2: + + + 🐆 + :leopard: + + + 🐇 + :rabbit2: + + + 🐈 + :cat2: + + + 🐉 + :dragon: + + + 🐊 + :crocodile: + + + 🐋 + :whale2: + + + 🐌 + :snail: + + + 🐍 + :snake: + + + 🐎 + :racehorse: + + + 🐏 + :ram: + + + 🐐 + :goat: + + + 🐑 + :sheep: + + + 🐒 + :monkey: + + + 🐓 + :rooster: + + + 🐔 + :chicken: + + + 🐕 + :dog2: + + + 🐖 + :pig2: + + + 🐗 + :boar: + + + 🐘 + :elephant: + + + 🐙 + :octopus: + + + 🐚 + :shell: + + + 🐛 + :bug: + + + 🐜 + :ant: + + + 🐝 + :bee: + + + 🐞 + :beetle: + + + 🐟 + :fish: + + + 🐠 + :tropical_fish: + + + 🐡 + :blowfish: + + + 🐢 + :turtle: + + + 🐣 + :hatching_chick: + + + 🐤 + :baby_chick: + + + 🐥 + :hatched_chick: + + + 🐦 + :bird: + + + 🐧 + :penguin: + + + 🐨 + :koala: + + + 🐩 + :poodle: + + + 🐪 + :dromedary_camel: + + + 🐫 + :camel: + + + 🐬 + :dolphin: + + + 🐭 + :mouse: + + + 🐮 + :cow: + + + 🐯 + :tiger: + + + 🐰 + :rabbit: + + + 🐱 + :cat: + + + 🐲 + :dragon_face: + + + 🐳 + :whale: + + + 🐴 + :horse: + + + 🐵 + :monkey_face: + + + 🐶 + :dog: + + + 🐷 + :pig: + + + 🐸 + :frog: + + + 🐹 + :hamster: + + + 🐺 + :wolf: + + + 🐻 + :bear: + + + 🐼 + :panda_face: + + + 🐽 + :pig_nose: + + + 🐾 + :feet: + :paw_prints: + + + 🐿 + :chipmunk: + + + 👀 + :eyes: + + + 👁🗨 + :eye_in_speech_bubble: + + + 👁 + :eye: + + + 👂🏻 + :ear_tone1: + + + 👂🏼 + :ear_tone2: + + + 👂🏽 + :ear_tone3: + + + 👂🏾 + :ear_tone4: + + + 👂🏿 + :ear_tone5: + + + 👂 + :ear: + + + 👃🏻 + :nose_tone1: + + + 👃🏼 + :nose_tone2: + + + 👃🏽 + :nose_tone3: + + + 👃🏾 + :nose_tone4: + + + 👃🏿 + :nose_tone5: + + + 👃 + :nose: + + + 👄 + :lips: + + + 👅 + :tongue: + + + 👆🏻 + :point_up_2_tone1: + + + 👆🏼 + :point_up_2_tone2: + + + 👆🏽 + :point_up_2_tone3: + + + 👆🏾 + :point_up_2_tone4: + + + 👆🏿 + :point_up_2_tone5: + + + 👆 + :point_up_2: + + + 👇🏻 + :point_down_tone1: + + + 👇🏼 + :point_down_tone2: + + + 👇🏽 + :point_down_tone3: + + + 👇🏾 + :point_down_tone4: + + + 👇🏿 + :point_down_tone5: + + + 👇 + :point_down: + + + 👈🏻 + :point_left_tone1: + + + 👈🏼 + :point_left_tone2: + + + 👈🏽 + :point_left_tone3: + + + 👈🏾 + :point_left_tone4: + + + 👈🏿 + :point_left_tone5: + + + 👈 + :point_left: + + + 👉🏻 + :point_right_tone1: + + + 👉🏼 + :point_right_tone2: + + + 👉🏽 + :point_right_tone3: + + + 👉🏾 + :point_right_tone4: + + + 👉🏿 + :point_right_tone5: + + + 👉 + :point_right: + + + 👊🏻 + :punch_tone1: + + + 👊🏼 + :punch_tone2: + + + 👊🏽 + :punch_tone3: + + + 👊🏾 + :punch_tone4: + + + 👊🏿 + :punch_tone5: + + + 👊 + :punch: + + + 👋🏻 + :wave_tone1: + + + 👋🏼 + :wave_tone2: + + + 👋🏽 + :wave_tone3: + + + 👋🏾 + :wave_tone4: + + + 👋🏿 + :wave_tone5: + + + 👋 + :wave: + + + 👌🏻 + :ok_hand_tone1: + + + 👌🏼 + :ok_hand_tone2: + + + 👌🏽 + :ok_hand_tone3: + + + 👌🏾 + :ok_hand_tone4: + + + 👌🏿 + :ok_hand_tone5: + + + 👌 + :ok_hand: + + + 👍🏻 + :thumbsup_tone1: + :+1_tone1: + :thumbup_tone1: + + + 👍🏼 + :thumbsup_tone2: + :+1_tone2: + :thumbup_tone2: + + + 👍🏽 + :thumbsup_tone3: + :+1_tone3: + :thumbup_tone3: + + + 👍🏾 + :thumbsup_tone4: + :+1_tone4: + :thumbup_tone4: + + + 👍🏿 + :thumbsup_tone5: + :+1_tone5: + :thumbup_tone5: + + + 👍 + :thumbsup: + :+1: + :thumbup: + + + 👎🏻 + :thumbsdown_tone1: + :-1_tone1: + :thumbdown_tone1: + + + 👎🏼 + :thumbsdown_tone2: + :-1_tone2: + :thumbdown_tone2: + + + 👎🏽 + :thumbsdown_tone3: + :-1_tone3: + :thumbdown_tone3: + + + 👎🏾 + :thumbsdown_tone4: + :-1_tone4: + :thumbdown_tone4: + + + 👎🏿 + :thumbsdown_tone5: + :-1_tone5: + :thumbdown_tone5: + + + 👎 + :thumbsdown: + :-1: + :thumbdown: + + + 👏🏻 + :clap_tone1: + + + 👏🏼 + :clap_tone2: + + + 👏🏽 + :clap_tone3: + + + 👏🏾 + :clap_tone4: + + + 👏🏿 + :clap_tone5: + + + 👏 + :clap: + + + 👐🏻 + :open_hands_tone1: + + + 👐🏼 + :open_hands_tone2: + + + 👐🏽 + :open_hands_tone3: + + + 👐🏾 + :open_hands_tone4: + + + 👐🏿 + :open_hands_tone5: + + + 👐 + :open_hands: + + + 👑 + :crown: + + + 👒 + :womans_hat: + + + 👓 + :eyeglasses: + + + 👔 + :necktie: + + + 👕 + :shirt: + + + 👖 + :jeans: + + + 👗 + :dress: + + + 👘 + :kimono: + + + 👙 + :bikini: + + + 👚 + :womans_clothes: + + + 👛 + :purse: + + + 👜 + :handbag: + + + 👝 + :pouch: + + + 👞 + :mans_shoe: + + + 👟 + :athletic_shoe: + + + 👠 + :high_heel: + + + 👡 + :sandal: + + + 👢 + :boot: + + + 👣 + :footprints: + + + 👤 + :bust_in_silhouette: + + + 👥 + :busts_in_silhouette: + + + 👦🏻 + :boy_tone1: + + + 👦🏼 + :boy_tone2: + + + 👦🏽 + :boy_tone3: + + + 👦🏾 + :boy_tone4: + + + 👦🏿 + :boy_tone5: + + + 👦 + :boy: + + + 👧🏻 + :girl_tone1: + + + 👧🏼 + :girl_tone2: + + + 👧🏽 + :girl_tone3: + + + 👧🏾 + :girl_tone4: + + + 👧🏿 + :girl_tone5: + + + 👧 + :girl: + + + 👨🏻 + :man_tone1: + + + 👨🏼 + :man_tone2: + + + 👨🏽 + :man_tone3: + + + 👨🏾 + :man_tone4: + + + 👨🏿 + :man_tone5: + + + :family_mmbb: + + + :family_mmb: + + + :family_mmgb: + + + :family_mmgg: + + + :family_mmg: + + + :family_mwbb: + + + :family_mwgb: + + + :family_mwgg: + + + :family_mwg: + + + :couple_mm: + :couple_with_heart_mm: + + + :kiss_mm: + :couplekiss_mm: + + + 👨 + :man: + + + 👩🏻 + :woman_tone1: + + + 👩🏼 + :woman_tone2: + + + 👩🏽 + :woman_tone3: + + + 👩🏾 + :woman_tone4: + + + 👩🏿 + :woman_tone5: + + + :family_wwbb: + + + :family_wwb: + + + :family_wwgb: + + + :family_wwgg: + + + :family_wwg: + + + :couple_ww: + :couple_with_heart_ww: + + + :kiss_ww: + :couplekiss_ww: + + + 👩 + :woman: + + + 👪 + :family: + + + 👫 + :couple: + + + 👬 + :two_men_holding_hands: + + + 👭 + :two_women_holding_hands: + + + 👮🏻 + :cop_tone1: + + + 👮🏼 + :cop_tone2: + + + 👮🏽 + :cop_tone3: + + + 👮🏾 + :cop_tone4: + + + 👮🏿 + :cop_tone5: + + + 👮 + :cop: + + + 👯 + :dancers: + + + 👰🏻 + :bride_with_veil_tone1: + + + 👰🏼 + :bride_with_veil_tone2: + + + 👰🏽 + :bride_with_veil_tone3: + + + 👰🏾 + :bride_with_veil_tone4: + + + 👰🏿 + :bride_with_veil_tone5: + + + 👰 + :bride_with_veil: + + + 👱🏻 + :person_with_blond_hair_tone1: + + + 👱🏼 + :person_with_blond_hair_tone2: + + + 👱🏽 + :person_with_blond_hair_tone3: + + + 👱🏾 + :person_with_blond_hair_tone4: + + + 👱🏿 + :person_with_blond_hair_tone5: + + + 👱 + :person_with_blond_hair: + + + 👲🏻 + :man_with_gua_pi_mao_tone1: + + + 👲🏼 + :man_with_gua_pi_mao_tone2: + + + 👲🏽 + :man_with_gua_pi_mao_tone3: + + + 👲🏾 + :man_with_gua_pi_mao_tone4: + + + 👲🏿 + :man_with_gua_pi_mao_tone5: + + + 👲 + :man_with_gua_pi_mao: + + + 👳🏻 + :man_with_turban_tone1: + + + 👳🏼 + :man_with_turban_tone2: + + + 👳🏽 + :man_with_turban_tone3: + + + 👳🏾 + :man_with_turban_tone4: + + + 👳🏿 + :man_with_turban_tone5: + + + 👳 + :man_with_turban: + + + 👴🏻 + :older_man_tone1: + + + 👴🏼 + :older_man_tone2: + + + 👴🏽 + :older_man_tone3: + + + 👴🏾 + :older_man_tone4: + + + 👴🏿 + :older_man_tone5: + + + 👴 + :older_man: + + + 👵🏻 + :older_woman_tone1: + :grandma_tone1: + + + 👵🏼 + :older_woman_tone2: + :grandma_tone2: + + + 👵🏽 + :older_woman_tone3: + :grandma_tone3: + + + 👵🏾 + :older_woman_tone4: + :grandma_tone4: + + + 👵🏿 + :older_woman_tone5: + :grandma_tone5: + + + 👵 + :older_woman: + :grandma: + + + 👶🏻 + :baby_tone1: + + + 👶🏼 + :baby_tone2: + + + 👶🏽 + :baby_tone3: + + + 👶🏾 + :baby_tone4: + + + 👶🏿 + :baby_tone5: + + + 👶 + :baby: + + + 👷🏻 + :construction_worker_tone1: + + + 👷🏼 + :construction_worker_tone2: + + + 👷🏽 + :construction_worker_tone3: + + + 👷🏾 + :construction_worker_tone4: + + + 👷🏿 + :construction_worker_tone5: + + + 👷 + :construction_worker: + + + 👸🏻 + :princess_tone1: + + + 👸🏼 + :princess_tone2: + + + 👸🏽 + :princess_tone3: + + + 👸🏾 + :princess_tone4: + + + 👸🏿 + :princess_tone5: + + + 👸 + :princess: + + + 👹 + :japanese_ogre: + + + 👺 + :japanese_goblin: + + + 👻 + :ghost: + + + 👼🏻 + :angel_tone1: + + + 👼🏼 + :angel_tone2: + + + 👼🏽 + :angel_tone3: + + + 👼🏾 + :angel_tone4: + + + 👼🏿 + :angel_tone5: + + + 👼 + :angel: + + + 👽 + :alien: + + + 👾 + :space_invader: + + + 👿 + :imp: + + + 💀 + :skull: + :skeleton: + + + 💁🏻 + :information_desk_person_tone1: + + + 💁🏼 + :information_desk_person_tone2: + + + 💁🏽 + :information_desk_person_tone3: + + + 💁🏾 + :information_desk_person_tone4: + + + 💁🏿 + :information_desk_person_tone5: + + + 💁 + :information_desk_person: + + + 💂🏻 + :guardsman_tone1: + + + 💂🏼 + :guardsman_tone2: + + + 💂🏽 + :guardsman_tone3: + + + 💂🏾 + :guardsman_tone4: + + + 💂🏿 + :guardsman_tone5: + + + 💂 + :guardsman: + + + 💃🏻 + :dancer_tone1: + + + 💃🏼 + :dancer_tone2: + + + 💃🏽 + :dancer_tone3: + + + 💃🏾 + :dancer_tone4: + + + 💃🏿 + :dancer_tone5: + + + 💃 + :dancer: + + + 💄 + :lipstick: + + + 💅🏻 + :nail_care_tone1: + + + 💅🏼 + :nail_care_tone2: + + + 💅🏽 + :nail_care_tone3: + + + 💅🏾 + :nail_care_tone4: + + + 💅🏿 + :nail_care_tone5: + + + 💅 + :nail_care: + + + 💆🏻 + :massage_tone1: + + + 💆🏼 + :massage_tone2: + + + 💆🏽 + :massage_tone3: + + + 💆🏾 + :massage_tone4: + + + 💆🏿 + :massage_tone5: + + + 💆 + :massage: + + + 💇🏻 + :haircut_tone1: + + + 💇🏼 + :haircut_tone2: + + + 💇🏽 + :haircut_tone3: + + + 💇🏾 + :haircut_tone4: + + + 💇🏿 + :haircut_tone5: + + + 💇 + :haircut: + + + 💈 + :barber: + + + 💉 + :syringe: + + + 💊 + :pill: + + + 💋 + :kiss: + + + 💌 + :love_letter: + + + 💍 + :ring: + + + 💎 + :gem: + + + 💏 + :couplekiss: + + + 💐 + :bouquet: + + + 💑 + :couple_with_heart: + + + 💒 + :wedding: + + + 💓 + :heartbeat: + + + 💔 + :broken_heart: + + + 💕 + :two_hearts: + + + 💖 + :sparkling_heart: + + + 💗 + :heartpulse: + + + 💘 + :cupid: + + + 💙 + :blue_heart: + + + 💚 + :green_heart: + + + 💛 + :yellow_heart: + + + 💜 + :purple_heart: + + + 💝 + :gift_heart: + + + 💞 + :revolving_hearts: + + + 💟 + :heart_decoration: + + + 💠 + :diamond_shape_with_a_dot_inside: + + + 💡 + :bulb: + + + 💢 + :anger: + + + 💣 + :bomb: + + + 💤 + :zzz: + + + 💥 + :boom: + + + 💦 + :sweat_drops: + + + 💧 + :droplet: + + + 💨 + :dash: + + + 💩 + :poop: + :shit: + :hankey: + :poo: + + + 💪🏻 + :muscle_tone1: + + + 💪🏼 + :muscle_tone2: + + + 💪🏽 + :muscle_tone3: + + + 💪🏾 + :muscle_tone4: + + + 💪🏿 + :muscle_tone5: + + + 💪 + :muscle: + + + 💫 + :dizzy: + + + 💬 + :speech_balloon: + + + 💭 + :thought_balloon: + + + 💮 + :white_flower: + + + 💯 + :100: + + + 💰 + :moneybag: + + + 💱 + :currency_exchange: + + + 💲 + :heavy_dollar_sign: + + + 💳 + :credit_card: + + + 💴 + :yen: + + + 💵 + :dollar: + + + 💶 + :euro: + + + 💷 + :pound: + + + 💸 + :money_with_wings: + + + 💹 + :chart: + + + 💺 + :seat: + + + 💻 + :computer: + + + 💼 + :briefcase: + + + 💽 + :minidisc: + + + 💾 + :floppy_disk: + + + 💿 + :cd: + + + 📀 + :dvd: + + + 📁 + :file_folder: + + + 📂 + :open_file_folder: + + + 📃 + :page_with_curl: + + + 📄 + :page_facing_up: + + + 📅 + :date: + + + 📆 + :calendar: + + + 📇 + :card_index: + + + 📈 + :chart_with_upwards_trend: + + + 📉 + :chart_with_downwards_trend: + + + 📊 + :bar_chart: + + + 📋 + :clipboard: + + + 📌 + :pushpin: + + + 📍 + :round_pushpin: + + + 📎 + :paperclip: + + + 📏 + :straight_ruler: + + + 📐 + :triangular_ruler: + + + 📑 + :bookmark_tabs: + + + 📒 + :ledger: + + + 📓 + :notebook: + + + 📔 + :notebook_with_decorative_cover: + + + 📕 + :closed_book: + + + 📖 + :book: + + + 📗 + :green_book: + + + 📘 + :blue_book: + + + 📙 + :orange_book: + + + 📚 + :books: + + + 📛 + :name_badge: + + + 📜 + :scroll: + + + 📝 + :pencil: + + + 📞 + :telephone_receiver: + + + 📟 + :pager: + + + 📠 + :fax: + + + 📡 + :satellite: + + + 📢 + :loudspeaker: + + + 📣 + :mega: + + + 📤 + :outbox_tray: + + + 📥 + :inbox_tray: + + + 📦 + :package: + + + 📧 + :e-mail: + :email: + + + 📨 + :incoming_envelope: + + + 📩 + :envelope_with_arrow: + + + 📪 + :mailbox_closed: + + + 📫 + :mailbox: + + + 📬 + :mailbox_with_mail: + + + 📭 + :mailbox_with_no_mail: + + + 📮 + :postbox: + + + 📯 + :postal_horn: + + + 📰 + :newspaper: + + + 📱 + :iphone: + + + 📲 + :calling: + + + 📳 + :vibration_mode: + + + 📴 + :mobile_phone_off: + + + 📵 + :no_mobile_phones: + + + 📶 + :signal_strength: + + + 📷 + :camera: + + + 📸 + :camera_with_flash: + + + 📹 + :video_camera: + + + 📺 + :tv: + + + 📻 + :radio: + + + 📼 + :vhs: + + + 📽 + :projector: + :film_projector: + + + 📿 + :prayer_beads: + + + 🔀 + :twisted_rightwards_arrows: + + + 🔁 + :repeat: + + + 🔂 + :repeat_one: + + + 🔃 + :arrows_clockwise: + + + 🔄 + :arrows_counterclockwise: + + + 🔅 + :low_brightness: + + + 🔆 + :high_brightness: + + + 🔇 + :mute: + + + 🔈 + :speaker: + + + 🔉 + :sound: + + + 🔊 + :loud_sound: + + + 🔋 + :battery: + + + 🔌 + :electric_plug: + + + 🔍 + :mag: + + + 🔎 + :mag_right: + + + 🔏 + :lock_with_ink_pen: + + + 🔐 + :closed_lock_with_key: + + + 🔑 + :key: + + + 🔒 + :lock: + + + 🔓 + :unlock: + + + 🔔 + :bell: + + + 🔕 + :no_bell: + + + 🔖 + :bookmark: + + + 🔗 + :link: + + + 🔘 + :radio_button: + + + 🔙 + :back: + + + 🔚 + :end: + + + 🔛 + :on: + + + 🔜 + :soon: + + + 🔝 + :top: + + + 🔞 + :underage: + + + 🔟 + :ten: + + + 🔠 + :capital_abcd: + + + 🔡 + :abcd: + + + 🔢 + :1234: + + + 🔣 + :symbols: + + + 🔤 + :abc: + + + 🔥 + :fire: + :flame: + + + 🔦 + :flashlight: + + + 🔧 + :wrench: + + + 🔨 + :hammer: + + + 🔩 + :nut_and_bolt: + + + 🔪 + :knife: + + + 🔫 + :gun: + + + 🔬 + :microscope: + + + 🔭 + :telescope: + + + 🔮 + :crystal_ball: + + + 🔯 + :six_pointed_star: + + + 🔰 + :beginner: + + + 🔱 + :trident: + + + 🔲 + :black_square_button: + + + 🔳 + :white_square_button: + + + 🔴 + :red_circle: + + + 🔵 + :large_blue_circle: + + + 🔶 + :large_orange_diamond: + + + 🔷 + :large_blue_diamond: + + + 🔸 + :small_orange_diamond: + + + 🔹 + :small_blue_diamond: + + + 🔺 + :small_red_triangle: + + + 🔻 + :small_red_triangle_down: + + + 🔼 + :arrow_up_small: + + + 🔽 + :arrow_down_small: + + + 🕉 + :om_symbol: + + + 🕊 + :dove: + :dove_of_peace: + + + 🕋 + :kaaba: + + + 🕌 + :mosque: + + + 🕍 + :synagogue: + + + 🕎 + :menorah: + + + 🕐 + :clock1: + + + 🕑 + :clock2: + + + 🕒 + :clock3: + + + 🕓 + :clock4: + + + 🕔 + :clock5: + + + 🕕 + :clock6: + + + 🕖 + :clock7: + + + 🕗 + :clock8: + + + 🕘 + :clock9: + + + 🕙 + :clock10: + + + 🕚 + :clock11: + + + 🕛 + :clock12: + + + 🕜 + :clock130: + + + 🕝 + :clock230: + + + 🕞 + :clock330: + + + 🕟 + :clock430: + + + 🕠 + :clock530: + + + 🕡 + :clock630: + + + 🕢 + :clock730: + + + 🕣 + :clock830: + + + 🕤 + :clock930: + + + 🕥 + :clock1030: + + + 🕦 + :clock1130: + + + 🕧 + :clock1230: + + + 🕯 + :candle: + + + 🕰 + :clock: + :mantlepiece_clock: + + + 🕳 + :hole: + + + 🕴 + :levitate: + :man_in_business_suit_levitating: + + + 🕵🏻 + :spy_tone1: + :sleuth_or_spy_tone1: + + + 🕵🏼 + :spy_tone2: + :sleuth_or_spy_tone2: + + + 🕵🏽 + :spy_tone3: + :sleuth_or_spy_tone3: + + + 🕵🏾 + :spy_tone4: + :sleuth_or_spy_tone4: + + + 🕵🏿 + :spy_tone5: + :sleuth_or_spy_tone5: + + + 🕵 + :spy: + :sleuth_or_spy: + + + 🕶 + :dark_sunglasses: + + + 🕷 + :spider: + + + 🕸 + :spider_web: + + + 🕹 + :joystick: + + + 🖇 + :paperclips: + :linked_paperclips: + + + 🖊 + :pen_ballpoint: + :lower_left_ballpoint_pen: + + + 🖋 + :pen_fountain: + :lower_left_fountain_pen: + + + 🖌 + :paintbrush: + :lower_left_paintbrush: + + + 🖍 + :crayon: + :lower_left_crayon: + + + 🖐🏻 + :hand_splayed_tone1: + :raised_hand_with_fingers_splayed_tone1: + + + 🖐🏼 + :hand_splayed_tone2: + :raised_hand_with_fingers_splayed_tone2: + + + 🖐🏽 + :hand_splayed_tone3: + :raised_hand_with_fingers_splayed_tone3: + + + 🖐🏾 + :hand_splayed_tone4: + :raised_hand_with_fingers_splayed_tone4: + + + 🖐🏿 + :hand_splayed_tone5: + :raised_hand_with_fingers_splayed_tone5: + + + 🖐 + :hand_splayed: + :raised_hand_with_fingers_splayed: + + + 🖕🏻 + :middle_finger_tone1: + :reversed_hand_with_middle_finger_extended_tone1: + + + 🖕🏼 + :middle_finger_tone2: + :reversed_hand_with_middle_finger_extended_tone2: + + + 🖕🏽 + :middle_finger_tone3: + :reversed_hand_with_middle_finger_extended_tone3: + + + 🖕🏾 + :middle_finger_tone4: + :reversed_hand_with_middle_finger_extended_tone4: + + + 🖕🏿 + :middle_finger_tone5: + :reversed_hand_with_middle_finger_extended_tone5: + + + 🖕 + :middle_finger: + :reversed_hand_with_middle_finger_extended: + + + 🖖🏻 + :vulcan_tone1: + :raised_hand_with_part_between_middle_and_ring_fingers_tone1: + + + 🖖🏼 + :vulcan_tone2: + :raised_hand_with_part_between_middle_and_ring_fingers_tone2: + + + 🖖🏽 + :vulcan_tone3: + :raised_hand_with_part_between_middle_and_ring_fingers_tone3: + + + 🖖🏾 + :vulcan_tone4: + :raised_hand_with_part_between_middle_and_ring_fingers_tone4: + + + 🖖🏿 + :vulcan_tone5: + :raised_hand_with_part_between_middle_and_ring_fingers_tone5: + + + 🖖 + :vulcan: + :raised_hand_with_part_between_middle_and_ring_fingers: + + + 🖥 + :desktop: + :desktop_computer: + + + 🖨 + :printer: + + + 🖱 + :mouse_three_button: + :three_button_mouse: + + + 🖲 + :trackball: + + + 🖼 + :frame_photo: + :frame_with_picture: + + + 🗂 + :dividers: + :card_index_dividers: + + + 🗃 + :card_box: + :card_file_box: + + + 🗄 + :file_cabinet: + + + 🗑 + :wastebasket: + + + 🗒 + :notepad_spiral: + :spiral_note_pad: + + + 🗓 + :calendar_spiral: + :spiral_calendar_pad: + + + 🗜 + :compression: + + + 🗝 + :key2: + :old_key: + + + 🗞 + :newspaper2: + :rolled_up_newspaper: + + + 🗡 + :dagger: + :dagger_knife: + + + 🗣 + :speaking_head: + :speaking_head_in_silhouette: + + + 🗯 + :anger_right: + :right_anger_bubble: + + + 🗳 + :ballot_box: + :ballot_box_with_ballot: + + + 🗺 + :map: + :world_map: + + + 🗻 + :mount_fuji: + + + 🗼 + :tokyo_tower: + + + 🗽 + :statue_of_liberty: + + + 🗾 + :japan: + + + 🗿 + :moyai: + + + 😀 + :grinning: + + + 😁 + :grin: + + + 😂 + :joy: + + + 😃 + :smiley: + + + 😄 + :smile: + :D + :-)) + :|)) + :-D + + + 😅 + :sweat_smile: + + + 😆 + :laughing: + :satisfied: + XD + :)) + :'D + =^D + + + 😇 + :innocent: + + + 😈 + :smiling_imp: + >:) + }:-) + 3:) + (6) + ]:-> + + + 😉 + :wink: + ;) + ;-) + + + 😊 + :blush: + + + 😋 + :yum: + + + 😌 + :relieved: + + + 😍 + :heart_eyes: + + + 😎 + :sunglasses: + B-) + B) + (H) + (h) + 8-) + 8) + B| + B-| + + + 😏 + :smirk: + + + 😐 + :neutral_face: + :-| + + + 😑 + :expressionless: + + + 😒 + :unamused: + + + 😓 + :sweat: + :-$ + :-[ + + + 😔 + :pensive: + + + 😕 + :confused: + :-S + :S + :-s + :s + O.o + =? + O.o? + :-Q + :-/ + :/ + (@_@) + ,':( + + + 😖 + :confounded: + + + 😗 + :kissing: + + + 😘 + :kissing_heart: + :-* + :-)* + :* + = # + ;-(!) + :*) + (K) + (k) + + + 😙 + :kissing_smiling_eyes: + + + 😚 + :kissing_closed_eyes: + + + 😛 + :stuck_out_tongue: + + + 😜 + :stuck_out_tongue_winking_eye: + + + 😝 + :stuck_out_tongue_closed_eyes: + :-t + :-P + :P + :-p + :p + + + 😞 + :disappointed: + + + 😟 + :worried: + + + 😠 + :angry: + + + 😡 + :rage: + + + 😢 + :cry: + :'( + :'-( + ;-( + ;( + :_( + T_T + ;_; + QQ + :"-( + ='( + 8:::( + i_i + :*( + :(( + + + 😣 + :persevere: + + + 😤 + :triumph: + + + 😥 + :disappointed_relieved: + + + 😦 + :frowning: + + + 😧 + :anguished: + + + 😨 + :fearful: + + + 😩 + :weary: + + + 😪 + :sleepy: + + + 😫 + :tired_face: + (:| + |-O + + + 😬 + :grimacing: + + + 😭 + :sob: + + + 😮 + :open_mouth: + :O + :o + :-O + :-o + + + 😯 + :hushed: + + + 😰 + :cold_sweat: + + + 😱 + :scream: + + + 😲 + :astonished: + + + 😳 + :flushed: + + + 😴 + :sleeping: + -_- + Z_Z + (-_o)zzZ + + + 😵 + :dizzy_face: + + + 😶 + :no_mouth: + + + 😷 + :mask: + + + 😸 + :smile_cat: + + + 😹 + :joy_cat: + + + 😺 + :smiley_cat: + + + 😻 + :heart_eyes_cat: + + + 😼 + :smirk_cat: + + + 😽 + :kissing_cat: + + + 😾 + :pouting_cat: + + + 😿 + :crying_cat_face: + + + 🙀 + :scream_cat: + + + 🙁 + :slight_frown: + :slightly_frowning_face: + + + 🙂 + :slight_smile: + :slightly_smiling_face: + :-) + :) + + + 🙃 + :upside_down: + :upside_down_face: + + + 🙄 + :rolling_eyes: + :face_with_rolling_eyes: + + + 🙅🏻 + :no_good_tone1: + + + 🙅🏼 + :no_good_tone2: + + + 🙅🏽 + :no_good_tone3: + + + 🙅🏾 + :no_good_tone4: + + + 🙅🏿 + :no_good_tone5: + + + 🙅 + :no_good: + + + 🙆🏻 + :ok_woman_tone1: + + + 🙆🏼 + :ok_woman_tone2: + + + 🙆🏽 + :ok_woman_tone3: + + + 🙆🏾 + :ok_woman_tone4: + + + 🙆🏿 + :ok_woman_tone5: + + + 🙆 + :ok_woman: + + + 🙇🏻 + :bow_tone1: + + + 🙇🏼 + :bow_tone2: + + + 🙇🏽 + :bow_tone3: + + + 🙇🏾 + :bow_tone4: + + + 🙇🏿 + :bow_tone5: + + + 🙇 + :bow: + + + 🙈 + :see_no_evil: + + + 🙉 + :hear_no_evil: + + + 🙊 + :speak_no_evil: + + + 🙋🏻 + :raising_hand_tone1: + + + 🙋🏼 + :raising_hand_tone2: + + + 🙋🏽 + :raising_hand_tone3: + + + 🙋🏾 + :raising_hand_tone4: + + + 🙋🏿 + :raising_hand_tone5: + + + 🙋 + :raising_hand: + + + 🙌🏻 + :raised_hands_tone1: + + + 🙌🏼 + :raised_hands_tone2: + + + 🙌🏽 + :raised_hands_tone3: + + + 🙌🏾 + :raised_hands_tone4: + + + 🙌🏿 + :raised_hands_tone5: + + + 🙌 + :raised_hands: + + + 🙍🏻 + :person_frowning_tone1: + + + 🙍🏼 + :person_frowning_tone2: + + + 🙍🏽 + :person_frowning_tone3: + + + 🙍🏾 + :person_frowning_tone4: + + + 🙍🏿 + :person_frowning_tone5: + + + 🙍 + :person_frowning: + + + 🙎🏻 + :person_with_pouting_face_tone1: + + + 🙎🏼 + :person_with_pouting_face_tone2: + + + 🙎🏽 + :person_with_pouting_face_tone3: + + + 🙎🏾 + :person_with_pouting_face_tone4: + + + 🙎🏿 + :person_with_pouting_face_tone5: + + + 🙎 + :person_with_pouting_face: + + + 🙏🏻 + :pray_tone1: + + + 🙏🏼 + :pray_tone2: + + + 🙏🏽 + :pray_tone3: + + + 🙏🏾 + :pray_tone4: + + + 🙏🏿 + :pray_tone5: + + + 🙏 + :pray: + + + 🚀 + :rocket: + + + 🚁 + :helicopter: + + + 🚂 + :steam_locomotive: + + + 🚃 + :railway_car: + + + 🚄 + :bullettrain_side: + + + 🚅 + :bullettrain_front: + + + 🚆 + :train2: + + + 🚇 + :metro: + + + 🚈 + :light_rail: + + + 🚉 + :station: + + + 🚊 + :tram: + + + 🚋 + :train: + + + 🚌 + :bus: + + + 🚍 + :oncoming_bus: + + + 🚎 + :trolleybus: + + + 🚏 + :busstop: + + + 🚐 + :minibus: + + + 🚑 + :ambulance: + + + 🚒 + :fire_engine: + + + 🚓 + :police_car: + + + 🚔 + :oncoming_police_car: + + + 🚕 + :taxi: + + + 🚖 + :oncoming_taxi: + + + 🚗 + :red_car: + + + 🚘 + :oncoming_automobile: + + + 🚙 + :blue_car: + + + 🚚 + :truck: + + + 🚛 + :articulated_lorry: + + + 🚜 + :tractor: + + + 🚝 + :monorail: + + + 🚞 + :mountain_railway: + + + 🚟 + :suspension_railway: + + + 🚠 + :mountain_cableway: + + + 🚡 + :aerial_tramway: + + + 🚢 + :ship: + + + 🚣🏻 + :rowboat_tone1: + + + 🚣🏼 + :rowboat_tone2: + + + 🚣🏽 + :rowboat_tone3: + + + 🚣🏾 + :rowboat_tone4: + + + 🚣🏿 + :rowboat_tone5: + + + 🚣 + :rowboat: + + + 🚤 + :speedboat: + + + 🚥 + :traffic_light: + + + 🚦 + :vertical_traffic_light: + + + 🚧 + :construction: + + + 🚨 + :rotating_light: + + + 🚩 + :triangular_flag_on_post: + + + 🚪 + :door: + + + 🚫 + :no_entry_sign: + + + 🚬 + :smoking: + + + 🚭 + :no_smoking: + + + 🚮 + :put_litter_in_its_place: + + + 🚯 + :do_not_litter: + + + 🚰 + :potable_water: + + + 🚱 + :non-potable_water: + + + 🚲 + :bike: + + + 🚳 + :no_bicycles: + + + 🚴🏻 + :bicyclist_tone1: + + + 🚴🏼 + :bicyclist_tone2: + + + 🚴🏽 + :bicyclist_tone3: + + + 🚴🏾 + :bicyclist_tone4: + + + 🚴🏿 + :bicyclist_tone5: + + + 🚴 + :bicyclist: + + + 🚵🏻 + :mountain_bicyclist_tone1: + + + 🚵🏼 + :mountain_bicyclist_tone2: + + + 🚵🏽 + :mountain_bicyclist_tone3: + + + 🚵🏾 + :mountain_bicyclist_tone4: + + + 🚵🏿 + :mountain_bicyclist_tone5: + + + 🚵 + :mountain_bicyclist: + + + 🚶🏻 + :walking_tone1: + + + 🚶🏼 + :walking_tone2: + + + 🚶🏽 + :walking_tone3: + + + 🚶🏾 + :walking_tone4: + + + 🚶🏿 + :walking_tone5: + + + 🚶 + :walking: + + + 🚷 + :no_pedestrians: + + + 🚸 + :children_crossing: + + + 🚹 + :mens: + + + 🚺 + :womens: + + + 🚻 + :restroom: + + + 🚼 + :baby_symbol: + + + 🚽 + :toilet: + + + 🚾 + :wc: + + + 🚿 + :shower: + + + 🛀🏻 + :bath_tone1: + + + 🛀🏼 + :bath_tone2: + + + 🛀🏽 + :bath_tone3: + + + 🛀🏾 + :bath_tone4: + + + 🛀🏿 + :bath_tone5: + + + 🛀 + :bath: + + + 🛁 + :bathtub: + + + 🛂 + :passport_control: + + + 🛃 + :customs: + + + 🛄 + :baggage_claim: + + + 🛅 + :left_luggage: + + + 🛋 + :couch: + :couch_and_lamp: + + + 🛌 + :sleeping_accommodation: + + + 🛍 + :shopping_bags: + + + 🛎 + :bellhop: + :bellhop_bell: + + + 🛏 + :bed: + + + 🛐 + :place_of_worship: + :worship_symbol: + + + 🛠 + :tools: + :hammer_and_wrench: + + + 🛡 + :shield: + + + 🛢 + :oil: + :oil_drum: + + + 🛣 + :motorway: + + + 🛤 + :railway_track: + :railroad_track: + + + 🛥 + :motorboat: + + + 🛩 + :airplane_small: + :small_airplane: + + + 🛫 + :airplane_departure: + + + 🛬 + :airplane_arriving: + + + 🛰 + :satellite_orbital: + + + 🛳 + :cruise_ship: + :passenger_ship: + + + 🤐 + :zipper_mouth: + :zipper_mouth_face: + :X + :-X + :-x + :x + + + 🤑 + :money_mouth: + :money_mouth_face: + + + 🤒 + :thermometer_face: + :face_with_thermometer: + + + 🤓 + :nerd: + :nerd_face: + + + 🤔 + :thinking: + :thinking_face: + + + 🤕 + :head_bandage: + :face_with_head_bandage: + + + 🤖 + :robot: + :robot_face: + + + 🤗 + :hugging: + :hugging_face: + + + 🤘🏻 + :metal_tone1: + :sign_of_the_horns_tone1: + + + 🤘🏼 + :metal_tone2: + :sign_of_the_horns_tone2: + + + 🤘🏽 + :metal_tone3: + :sign_of_the_horns_tone3: + + + 🤘🏾 + :metal_tone4: + :sign_of_the_horns_tone4: + + + 🤘🏿 + :metal_tone5: + :sign_of_the_horns_tone5: + + + 🤘 + :metal: + :sign_of_the_horns: + + + 🦀 + :crab: + + + 🦁 + :lion_face: + :lion: + + + 🦂 + :scorpion: + + + 🦃 + :turkey: + + + 🦄 + :unicorn: + :unicorn_face: + + + 🧀 + :cheese: + :cheese_wedge: + + + + :bangbang: + + + + :interrobang: + + + + :tm: + + + + :information_source: + + + + :left_right_arrow: + + + + :arrow_up_down: + + + + :arrow_upper_left: + + + + :arrow_upper_right: + + + + :arrow_lower_right: + + + + :arrow_lower_left: + + + + :leftwards_arrow_with_hook: + + + + :arrow_right_hook: + + + + :watch: + + + + :hourglass: + + + + :keyboard: + + + + :fast_forward: + + + + :rewind: + + + + :arrow_double_up: + + + + :arrow_double_down: + + + + :track_next: + :next_track: + + + + :track_previous: + :previous_track: + + + + :play_pause: + + + + :alarm_clock: + + + + :stopwatch: + + + + :timer: + :timer_clock: + + + + :hourglass_flowing_sand: + + + + :pause_button: + :double_vertical_bar: + + + + :stop_button: + + + + :record_button: + + + + :m: + + + + :black_small_square: + + + + :white_small_square: + + + + :arrow_forward: + + + + :arrow_backward: + + + + :white_medium_square: + + + + :black_medium_square: + + + + :white_medium_small_square: + + + + :black_medium_small_square: + + + + :sunny: + + + + :cloud: + + + + :umbrella2: + + + + :snowman2: + + + + :comet: + + + + :telephone: + + + + :ballot_box_with_check: + + + + :umbrella: + + + + :coffee: + + + + :shamrock: + + + ☝🏻 + :point_up_tone1: + + + ☝🏼 + :point_up_tone2: + + + ☝🏽 + :point_up_tone3: + + + ☝🏾 + :point_up_tone4: + + + ☝🏿 + :point_up_tone5: + + + + :point_up: + + + + :skull_crossbones: + :skull_and_crossbones: + + + + :radioactive: + :radioactive_sign: + + + + :biohazard: + :biohazard_sign: + + + + :orthodox_cross: + + + + :star_and_crescent: + + + + :peace: + :peace_symbol: + + + + :yin_yang: + + + + :wheel_of_dharma: + + + + :frowning2: + :white_frowning_face: + ☹️ + :-( + =( + :( + T.T + t.t + =[ + :c + :C + D: + D= + Y_Y + y_y + + + + :relaxed: + ☺️ + + + + :aries: + + + + :taurus: + + + + :gemini: + + + + :cancer: + + + + :leo: + + + + :virgo: + + + + :libra: + + + + :scorpius: + + + + :sagittarius: + + + + :capricorn: + + + + :aquarius: + + + + :pisces: + + + + :spades: + + + + :clubs: + + + + :hearts: + + + + :diamonds: + + + + :hotsprings: + + + + :recycle: + + + + :wheelchair: + + + + :hammer_pick: + :hammer_and_pick: + + + + :anchor: + + + + :crossed_swords: + + + + :scales: + + + + :alembic: + + + + :gear: + + + + :atom: + :atom_symbol: + + + + :fleur-de-lis: + + + + :warning: + + + + :zap: + + + + :white_circle: + + + + :black_circle: + + + + :coffin: + + + + :urn: + :funeral_urn: + + + + :soccer: + + + + :baseball: + + + + :snowman: + + + + :partly_sunny: + + + + :thunder_cloud_rain: + :thunder_cloud_and_rain: + + + + :ophiuchus: + + + + :pick: + + + + :helmet_with_cross: + :helmet_with_white_cross: + + + + :chains: + + + + :no_entry: + + + + :shinto_shrine: + + + + :church: + + + + :mountain: + + + + :beach_umbrella: + :umbrella_on_ground: + + + + :fountain: + + + + :golf: + + + + :ferry: + + + + :sailboat: + + + + :skier: + + + + :ice_skate: + + + ⛹🏻 + :basketball_player_tone1: + :person_with_ball_tone1: + + + ⛹🏼 + :basketball_player_tone2: + :person_with_ball_tone2: + + + ⛹🏽 + :basketball_player_tone3: + :person_with_ball_tone3: + + + ⛹🏾 + :basketball_player_tone4: + :person_with_ball_tone4: + + + ⛹🏿 + :basketball_player_tone5: + :person_with_ball_tone5: + + + + :basketball_player: + :person_with_ball: + + + + :tent: + + + + :fuelpump: + + + + :scissors: + + + + :white_check_mark: + + + + :airplane: + + + + :envelope: + + + ✊🏻 + :fist_tone1: + + + ✊🏼 + :fist_tone2: + + + ✊🏽 + :fist_tone3: + + + ✊🏾 + :fist_tone4: + + + ✊🏿 + :fist_tone5: + + + + :fist: + + + ✋🏻 + :raised_hand_tone1: + + + ✋🏼 + :raised_hand_tone2: + + + ✋🏽 + :raised_hand_tone3: + + + ✋🏾 + :raised_hand_tone4: + + + ✋🏿 + :raised_hand_tone5: + + + + :raised_hand: + + + ✌🏻 + :v_tone1: + + + ✌🏼 + :v_tone2: + + + ✌🏽 + :v_tone3: + + + ✌🏾 + :v_tone4: + + + ✌🏿 + :v_tone5: + + + + :v: + + + ✍🏻 + :writing_hand_tone1: + + + ✍🏼 + :writing_hand_tone2: + + + ✍🏽 + :writing_hand_tone3: + + + ✍🏾 + :writing_hand_tone4: + + + ✍🏿 + :writing_hand_tone5: + + + + :writing_hand: + + + + :pencil2: + + + + :black_nib: + + + + :heavy_check_mark: + + + + :heavy_multiplication_x: + + + + :cross: + :latin_cross: + + + + :star_of_david: + + + + :sparkles: + + + + :eight_spoked_asterisk: + + + + :eight_pointed_black_star: + + + + :snowflake: + + + + :sparkle: + + + + :x: + + + + :negative_squared_cross_mark: + + + + :question: + + + + :grey_question: + + + + :grey_exclamation: + + + + :exclamation: + + + + :heart_exclamation: + :heavy_heart_exclamation_mark_ornament: + + + + :heart: + + + + :heavy_plus_sign: + + + + :heavy_minus_sign: + + + + :heavy_division_sign: + + + + :arrow_right: + + + + :curly_loop: + + + + :loop: + + + + :arrow_heading_up: + + + + :arrow_heading_down: + + + + :arrow_left: + + + + :arrow_up: + + + + :arrow_down: + + + + :black_large_square: + + + + :white_large_square: + + + + :star: + + + + :o: + + + + :wavy_dash: + + + + :part_alternation_mark: + + + + :congratulations: + + + + :secret: + + Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/Glass/angry.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/Glass/angry.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/Glass/bat.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/Glass/bat.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/Glass/beer.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/Glass/beer.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/Glass/biggrin.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/Glass/biggrin.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/Glass/cake.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/Glass/cake.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/Glass/camera.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/Glass/camera.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/Glass/cat.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/Glass/cat.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/Glass/clock.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/Glass/clock.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/Glass/cocktail.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/Glass/cocktail.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/Glass/confused.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/Glass/confused.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/Glass/cry.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/Glass/cry.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/Glass/cup.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/Glass/cup.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/Glass/dog.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/Glass/dog.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/Glass/email.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/Glass/email.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/Glass/embarassed.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/Glass/embarassed.png differ diff -Nru kemoticons-5.18.0/themes/Glass/emoticons.xml kemoticons-5.44.0/themes/Glass/emoticons.xml --- kemoticons-5.18.0/themes/Glass/emoticons.xml 2016-01-01 19:55:29.000000000 +0000 +++ kemoticons-5.44.0/themes/Glass/emoticons.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,283 +0,0 @@ - - - - - :-@ - :@ - >:-( - >:( - 😠 - - - - :-[ - :[ - - - - (B) - (b) - 🍺 - - - - (^) - 🎂 - 🍰 - - - - (P) - (p) - 📷 - - - - (@) - 🐈 - - - - (O) - (o) - 🕐 - 🕑 - 🕒 - 🕓 - 🕔 - 🕕 - 🕖 - 🕗 - 🕘 - 🕙 - 🕚 - 🕛 - 🕜 - 🕝 - 🕞 - 🕟 - 🕠 - 🕡 - 🕢 - 🕣 - 🕤 - 🕥 - 🕦 - 🕧 - - - - (D) - (d) - 🍸 - 🍹 - - - - :-S - :S - :-s - :s - 😕 - - - - :'( - :'-( - ;-( - ;( - 😢 - 😭 - 😿 - - - - (C) - (c) - 🍵 - - - - - (&) - 🐶 - 🐕 - - - - :-$ - :$ - 😓 - 😰 - - - - (E) - (e) - 📧 - - - - (~) - 😨 - - - - 😇 - - - - (K) - (k) - :-X - :X - :-x - :x - 😗 - 😙 - 😘 - 😚 - 😽 - 💋 - 💏 - - - - (I) - (i) - 💡 - - - - (L) - (l) - 😍 - 😻 - 💓 - 💕 - 💖 - 💗 - 💘 - 💙 - 💚 - 💛 - 💜 - 💝 - 💞 - - - - (8) - 🎵 - 🎶 - - - - :-O - :O - :-o - :o - 😮 - - - - (T) - (t) - - 📞 - 📱 - - - - (G) - (g) - 🎁 - - - - (F) - (f) - 🌹 - - - - :-( - :( - 😞 - - - - (H) - (h) - 8-) - 8) - 😎 - - - - :-) - :) - :o) - - 😊 - - - - (*) - - - 🌟 - - - - :-D - :D - 😸 - 😁 - 😂 - 😃 - 😄 - 😀 - - - - (N) - (n) - 👎 - - - - (Y) - (y) - 👍 - - - - :-P - :P - :-p - :p - 😝 - 👅 - 😛 - - - - (U) - (u) - 💔 - - - - (W) - (w) - - - - ;-) - ;) - 😉 - 😜 - - - Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/Glass/film.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/Glass/film.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/Glass/foot_in_mouth.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/Glass/foot_in_mouth.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/Glass/innocent.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/Glass/innocent.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/Glass/kiss.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/Glass/kiss.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/Glass/lightbulb.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/Glass/lightbulb.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/Glass/love.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/Glass/love.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/Glass/note.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/Glass/note.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/Glass/oh.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/Glass/oh.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/Glass/omg.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/Glass/omg.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/Glass/phone.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/Glass/phone.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/Glass/present.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/Glass/present.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/Glass/rose.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/Glass/rose.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/Glass/sad.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/Glass/sad.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/Glass/shade.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/Glass/shade.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/Glass/sleep.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/Glass/sleep.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/Glass/smile.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/Glass/smile.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/Glass/star.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/Glass/star.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/Glass/teeth.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/Glass/teeth.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/Glass/thumbs_down.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/Glass/thumbs_down.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/Glass/thumbs_up.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/Glass/thumbs_up.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/Glass/tongue.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/Glass/tongue.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/Glass/undecided.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/Glass/undecided.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/Glass/unhappy.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/Glass/unhappy.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/Glass/unlove.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/Glass/unlove.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/Glass/wilted_rose.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/Glass/wilted_rose.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/Glass/wink.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/Glass/wink.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/Konqi/blue-heart.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/Konqi/blue-heart.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/Konqi/blue-heart.svgz and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/Konqi/blue-heart.svgz differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/Konqi/double-heart.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/Konqi/double-heart.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/Konqi/double-heart.svgz and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/Konqi/double-heart.svgz differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/Konqi/drink-beer.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/Konqi/drink-beer.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/Konqi/drink-beer.svgz and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/Konqi/drink-beer.svgz differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/Konqi/drink-martini.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/Konqi/drink-martini.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/Konqi/drink-martini.svgz and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/Konqi/drink-martini.svgz differ diff -Nru kemoticons-5.18.0/themes/Konqi/emoticons.xml kemoticons-5.44.0/themes/Konqi/emoticons.xml --- kemoticons-5.18.0/themes/Konqi/emoticons.xml 1970-01-01 00:00:00.000000000 +0000 +++ kemoticons-5.44.0/themes/Konqi/emoticons.xml 2018-03-03 09:52:23.000000000 +0000 @@ -0,0 +1,225 @@ + + + + O:) + O-) + O; + O:-) + 0:-) + 0=) + 0:) + 0;) + ^j^ + (a) + 😇 + + + X-( + :-@ + :@devilish + >:( + >:-( + -_-+ + >-( + :-|| + + + :-S + :S + :-s + :s + O.o + =? + O.o? + :-Q + :-/ + (@_@) + ,':( + 😕 + + + B-) + (H) + (h) + 8-) + 8) + + + :'( + :'-( + ;-( + ;( + 😢 + 😭 + 😿 + :_( + T_T + ;_; + QQ + :"-( + ='( + 8:::( + i_i + :*( + :(( + + + >:) + }:-) + 3:) + (6) + ]:-> + + + :-* + :-)* + :* + = # + ;-(!) + :*) + (K) + (k) + 😗 + 😙 + 😘 + 😚 + 😽 + 💋 + 💏 + + + :)) + :'D + =^D + XD + + + QK + Qx + + + P) + Qx + + + :-| + + + :X + :-X + :-x + :x + + + :-( + =( + :( + T.T + t.t + =[ + :c + :C + D: + D= + Y_Y + y_y + 😞 + + + :-)) + :|)) + :-D + :D + 😸 + 😁 + 😂 + 😃 + 😄 + 😀 + + + :-) + :) + + 😊 + + + :-O + :O + :-o + :o + 😮 + + + ;-) + ;) + 😉 + 😜 + + + (:| + |-O + + + (B) + (b) + 🍺 + + + (^) + 🎂 + 🍰 + + + (D) + (d) + 🍸 + 🍹 + + + :o) + *<:o) + <|:^0| + *<:^) + *:oP + *:oB + (c:>* + <]:o){ + *:o) + + + 😍 + 😻 + + + -_- + Z_Z + (-_o)zzZ + <-.-> + 😴 + + + <3 + (L) + (l) + 💙 + + + 💚 + + + 💛 + + + 💜 + + + 💕 + + + 💖 + + + 😨 + + Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/Konqi/face-angel.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/Konqi/face-angel.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/Konqi/face-angel.svgz and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/Konqi/face-angel.svgz differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/Konqi/face-angry.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/Konqi/face-angry.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/Konqi/face-angry.svgz and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/Konqi/face-angry.svgz differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/Konqi/face-clown.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/Konqi/face-clown.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/Konqi/face-clown.svgz and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/Konqi/face-clown.svgz differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/Konqi/face-confused.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/Konqi/face-confused.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/Konqi/face-confused.svgz and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/Konqi/face-confused.svgz differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/Konqi/face-cool.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/Konqi/face-cool.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/Konqi/face-cool.svgz and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/Konqi/face-cool.svgz differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/Konqi/face-crying.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/Konqi/face-crying.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/Konqi/face-crying.svgz and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/Konqi/face-crying.svgz differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/Konqi/face-devilish.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/Konqi/face-devilish.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/Konqi/face-devilish.svgz and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/Konqi/face-devilish.svgz differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/Konqi/face-fearful.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/Konqi/face-fearful.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/Konqi/face-fearful.svgz and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/Konqi/face-fearful.svgz differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/Konqi/face-in-love.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/Konqi/face-in-love.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/Konqi/face-in-love.svgz and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/Konqi/face-in-love.svgz differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/Konqi/face-kiss.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/Konqi/face-kiss.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/Konqi/face-kiss.svgz and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/Konqi/face-kiss.svgz differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/Konqi/face-laughing.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/Konqi/face-laughing.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/Konqi/face-laughing.svgz and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/Konqi/face-laughing.svgz differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/Konqi/face-ninja.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/Konqi/face-ninja.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/Konqi/face-ninja.svgz and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/Konqi/face-ninja.svgz differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/Konqi/face-pirate.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/Konqi/face-pirate.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/Konqi/face-pirate.svgz and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/Konqi/face-pirate.svgz differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/Konqi/face-plain.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/Konqi/face-plain.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/Konqi/face-plain.svgz and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/Konqi/face-plain.svgz differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/Konqi/face-quiet.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/Konqi/face-quiet.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/Konqi/face-quiet.svgz and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/Konqi/face-quiet.svgz differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/Konqi/face-sad.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/Konqi/face-sad.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/Konqi/face-sad.svgz and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/Konqi/face-sad.svgz differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/Konqi/face-sleeping.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/Konqi/face-sleeping.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/Konqi/face-sleeping.svgz and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/Konqi/face-sleeping.svgz differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/Konqi/face-smile-big.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/Konqi/face-smile-big.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/Konqi/face-smile-big.svgz and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/Konqi/face-smile-big.svgz differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/Konqi/face-smile.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/Konqi/face-smile.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/Konqi/face-smile.svgz and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/Konqi/face-smile.svgz differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/Konqi/face-surprise.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/Konqi/face-surprise.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/Konqi/face-surprise.svgz and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/Konqi/face-surprise.svgz differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/Konqi/face-wink.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/Konqi/face-wink.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/Konqi/face-wink.svgz and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/Konqi/face-wink.svgz differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/Konqi/face-yawn.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/Konqi/face-yawn.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/Konqi/face-yawn.svgz and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/Konqi/face-yawn.svgz differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/Konqi/food-cake.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/Konqi/food-cake.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/Konqi/food-cake.svgz and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/Konqi/food-cake.svgz differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/Konqi/red-heart.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/Konqi/red-heart.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/Konqi/red-heart.svgz and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/Konqi/red-heart.svgz differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/Konqi/shine-heart.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/Konqi/shine-heart.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/Konqi/shine-heart.svgz and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/Konqi/shine-heart.svgz differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/Konqi/yellow-heart.png and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/Konqi/yellow-heart.png differ Binary files /tmp/tmpxKa3Vr/Qz7nYXlgaJ/kemoticons-5.18.0/themes/Konqi/yellow-heart.svgz and /tmp/tmpxKa3Vr/H10dAIrRKH/kemoticons-5.44.0/themes/Konqi/yellow-heart.svgz differ